.btn {
  border-width: 2px;
}
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: #ffffff !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: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !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: #545454 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #808080 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #fb0707 !important;
  border-color: #fb0707 !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: #a90303 !important;
  border-color: #a90303 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #a90303 !important;
  border-color: #a90303 !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: #ffffff;
  color: #ffffff;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #d4d4d4 !important;
  background-color: transparent!important;
  border-color: #d4d4d4 !important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #fb0707;
  color: #fb0707;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #a90303 !important;
  background-color: transparent!important;
  border-color: #a90303 !important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #fb0707 !important;
  border-color: #fb0707 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #47b5ed;
  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: #148cca !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: #40b0bf;
  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: #2a747e !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: #ffe161;
  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: #ffd10a !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: #ff9966;
  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: #ff5f0f !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: #232323;
  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: #000000 !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: #fafafa;
  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: #cfcfcf !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: #ffffff !important;
}
.text-secondary {
  color: #fb0707 !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: #cccccc !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #9a0202 !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) {
  transition: 0.2s;
  position: relative;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0 1.2em;
}
.nav-tabs .nav-link.active {
  color: #ffffff;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #8c8c8c;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #ffffff;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a0d8df;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
#scrollToTop a {
  border-radius: 100px;
}
.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: #ffffff !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: #ffffff;
}
/* Forms */
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #ffffff;
  color: #000000;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #ffffff;
}
.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: #ffffff;
  border-bottom-color: #ffffff;
}
.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: #000000 !important;
  background-color: #ffffff !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #fb0707 !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='%23ffffff' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-vaiEwwVbtN {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-vaiEwwVbtN nav.navbar {
  position: fixed;
}
.cid-vaiEwwVbtN .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vaiEwwVbtN .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-vaiEwwVbtN .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-vaiEwwVbtN .dropdown-item:hover,
.cid-vaiEwwVbtN .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-vaiEwwVbtN .dropdown-item:hover span {
  color: white;
}
.cid-vaiEwwVbtN .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vaiEwwVbtN .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vaiEwwVbtN .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vaiEwwVbtN .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vaiEwwVbtN .nav-link {
  position: relative;
}
.cid-vaiEwwVbtN .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-vaiEwwVbtN .container {
    flex-wrap: wrap;
  }
}
.cid-vaiEwwVbtN .container-fluid {
  flex-wrap: nowrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-vaiEwwVbtN .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-vaiEwwVbtN .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vaiEwwVbtN .dropdown-menu,
.cid-vaiEwwVbtN .navbar.opened {
  background: #ff0000 !important;
}
.cid-vaiEwwVbtN .nav-item:focus,
.cid-vaiEwwVbtN .nav-link:focus {
  outline: none;
}
.cid-vaiEwwVbtN .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vaiEwwVbtN .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vaiEwwVbtN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vaiEwwVbtN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vaiEwwVbtN .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vaiEwwVbtN .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vaiEwwVbtN .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ff0000;
}
.cid-vaiEwwVbtN .navbar.opened {
  transition: all 0.3s;
}
.cid-vaiEwwVbtN .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vaiEwwVbtN .navbar .navbar-logo img {
  width: auto;
}
.cid-vaiEwwVbtN .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vaiEwwVbtN .navbar.collapsed {
  justify-content: center;
}
.cid-vaiEwwVbtN .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vaiEwwVbtN .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vaiEwwVbtN .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-vaiEwwVbtN .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vaiEwwVbtN .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vaiEwwVbtN .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-vaiEwwVbtN .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vaiEwwVbtN .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vaiEwwVbtN .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vaiEwwVbtN .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vaiEwwVbtN .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vaiEwwVbtN .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vaiEwwVbtN .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vaiEwwVbtN .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-vaiEwwVbtN .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vaiEwwVbtN .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vaiEwwVbtN .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vaiEwwVbtN .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vaiEwwVbtN .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vaiEwwVbtN .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-vaiEwwVbtN .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-vaiEwwVbtN .navbar.navbar-short {
  min-height: 60px;
}
.cid-vaiEwwVbtN .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vaiEwwVbtN .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-vaiEwwVbtN .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-vaiEwwVbtN .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vaiEwwVbtN .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vaiEwwVbtN .dropdown-item.active,
.cid-vaiEwwVbtN .dropdown-item:active {
  background-color: transparent;
}
.cid-vaiEwwVbtN .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vaiEwwVbtN .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vaiEwwVbtN .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vaiEwwVbtN .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ff0000;
}
.cid-vaiEwwVbtN .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vaiEwwVbtN .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vaiEwwVbtN ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vaiEwwVbtN .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vaiEwwVbtN button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-vaiEwwVbtN button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-vaiEwwVbtN button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vaiEwwVbtN button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vaiEwwVbtN button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vaiEwwVbtN button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vaiEwwVbtN nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vaiEwwVbtN nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vaiEwwVbtN nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vaiEwwVbtN nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vaiEwwVbtN .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-vaiEwwVbtN a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vaiEwwVbtN .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-vaiEwwVbtN .navbar {
    height: 70px;
  }
  .cid-vaiEwwVbtN .navbar.opened {
    height: auto;
  }
  .cid-vaiEwwVbtN .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vaiGyNEGkI {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-vaiGyNEGkI .banner {
  z-index: 10;
  height: 499px;
}
.cid-vaiGyNEGkI .banner-wrapper {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}
.cid-vaiGyNEGkI .bg-banner {
  padding: 15px;
  height: auto!important;
  position: relative;
}
.cid-vaiGyNEGkI .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-vaiGyNEGkI .bg-banner h1 {
  margin: 0 !important;
}
.cid-vaiGyNEGkI .banner h1 {
  font-weight: 700!important;
  font-size: 40px;
}
.cid-vaiGyNEGkI .banner h1:last-child {
  margin: 0;
}
.cid-vaiGyNEGkI H1 {
  color: #ffffff;
}
.cid-vaiGyNEGkI .mbr-text {
  color: #ffffff;
  text-align: justify;
}
.cid-vaiHtA3NZ2 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-vaiHtA3NZ2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vaiHtA3NZ2 .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-vaiHtA3NZ2 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-vaiHtA3NZ2 .row {
  flex-direction: row-reverse;
}
.cid-vaiHtA3NZ2 img {
  width: 100%;
}
.cid-vaiHCg0cSY {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-vaiHCg0cSY .banner {
  z-index: 10;
  height: 499px;
}
.cid-vaiHCg0cSY .banner-wrapper {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}
.cid-vaiHCg0cSY .bg-banner {
  padding: 15px;
  height: auto!important;
  position: relative;
}
.cid-vaiHCg0cSY .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-vaiHCg0cSY .bg-banner h1 {
  margin: 0 !important;
}
.cid-vaiHCg0cSY .banner h1 {
  font-weight: 700!important;
  font-size: 40px;
}
.cid-vaiHCg0cSY .banner h1:last-child {
  margin: 0;
}
.cid-vaiHCg0cSY H1 {
  color: #ffffff;
}
.cid-vaiHCg0cSY .mbr-text {
  color: #ffffff;
  text-align: justify;
}
.cid-vaiHvyWzlQ {
  padding-top: 30px;
  padding-bottom: 95px;
  background-image: url("../../../assets/images/capture20de28099c3a9cran202026-01-2820075230-751x403.jpeg");
}
.cid-vaiHvyWzlQ svg {
  overflow: hidden;
  vertical-align: middle;
  position: absolute;
  bottom: 0;
}
.cid-vaiHvyWzlQ .wave {
  fill: #fc0404;
}
.cid-vaiHvyWzlQ H3 {
  text-align: justify;
  color: #ffffff;
}
.cid-vaiHvyWzlQ H1 {
  color: #ffe885;
  text-align: justify;
}
.cid-vaiHvyWzlQ .mbr-text,
.cid-vaiHvyWzlQ .mbr-section-btn {
  text-align: left;
}
.cid-vaiEyVkOmk {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-vaiEyVkOmk .banner {
  z-index: 10;
  height: 499px;
}
.cid-vaiEyVkOmk .banner-wrapper {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}
.cid-vaiEyVkOmk .bg-banner {
  padding: 15px;
  height: auto!important;
  position: relative;
}
.cid-vaiEyVkOmk .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-vaiEyVkOmk .bg-banner h1 {
  margin: 0 !important;
}
.cid-vaiEyVkOmk .banner h1 {
  font-weight: 700!important;
  font-size: 40px;
}
.cid-vaiEyVkOmk .banner h1:last-child {
  margin: 0;
}
.cid-vaiEyVkOmk H1 {
  color: #ffffff;
}
.cid-vaiEyVkOmk .mbr-text {
  color: #ffffff;
  text-align: justify;
}
.cid-vaGSenBGHX {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/capture-dcran-2026-1.jpg");
}
.cid-vaGSenBGHX .mbr-fallback-image.disabled {
  display: none;
}
.cid-vaGSenBGHX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vaGSenBGHX .mbr-iconfont {
  display: block;
  font-size: 4rem;
  color: #ffffff;
  margin-bottom: 2rem;
}
.cid-vaGSenBGHX .item-wrapper {
  min-height: 220px;
  transition: all 0.3s;
  border-radius: 4px;
  padding: 1rem;
  background: #232323;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-vaGSenBGHX .card-title,
.cid-vaGSenBGHX .card-box {
  color: #ffffff;
}
.cid-vaGSqgpVmO {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/capture-dcran-2026-1.jpg");
}
.cid-vaGSqgpVmO .mbr-fallback-image.disabled {
  display: none;
}
.cid-vaGSqgpVmO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vaGSqgpVmO .mbr-iconfont {
  display: block;
  font-size: 4rem;
  color: #ffffff;
  margin-bottom: 2rem;
}
.cid-vaGSqgpVmO .item-wrapper {
  min-height: 220px;
  transition: all 0.3s;
  border-radius: 4px;
  padding: 1rem;
  background: #232323;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-vaGSqgpVmO .card-title,
.cid-vaGSqgpVmO .card-box {
  color: #ffffff;
}
.cid-vaiFzuuzJh {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-vaiFzuuzJh .banner {
  z-index: 10;
  height: 499px;
}
.cid-vaiFzuuzJh .banner-wrapper {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}
.cid-vaiFzuuzJh .bg-banner {
  padding: 15px;
  height: auto!important;
  position: relative;
}
.cid-vaiFzuuzJh .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-vaiFzuuzJh .bg-banner h1 {
  margin: 0 !important;
}
.cid-vaiFzuuzJh .banner h1 {
  font-weight: 700!important;
  font-size: 40px;
}
.cid-vaiFzuuzJh .banner h1:last-child {
  margin: 0;
}
.cid-vaiFzuuzJh H1 {
  color: #ffffff;
}
.cid-vaiFzuuzJh .mbr-text {
  color: #ffffff;
  text-align: justify;
}
.cid-uWDUAmQUwG {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/capture-dcran-2026-01-28.jpg");
}
.cid-uWDUAmQUwG .mbr-fallback-image.disabled {
  display: none;
}
.cid-uWDUAmQUwG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uWDUAmQUwG .bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-uWDUAmQUwG .bg-facebook:hover {
  background: #0b60cb;
}
.cid-uWDUAmQUwG .bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-uWDUAmQUwG .bg-twitter:hover {
  background: #0c85d0;
}
.cid-uWDUAmQUwG .bg-youtube {
  background: #ff0000;
  color: #ffffff;
}
.cid-uWDUAmQUwG .bg-youtube:hover {
  background: #cc0000;
}
.cid-uWDUAmQUwG .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-uWDUAmQUwG [class^="socicon-"]:before,
.cid-uWDUAmQUwG [class*=" socicon-"]:before {
  line-height: 55px;
  padding: .6rem;
}
.cid-uWDUAmQUwG .mbr-section-title,
.cid-uWDUAmQUwG .social-list {
  color: #ffffff;
}
.cid-vaiFJMUzLr {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-vaiFJMUzLr .banner {
  z-index: 10;
  height: 499px;
}
.cid-vaiFJMUzLr .banner-wrapper {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}
.cid-vaiFJMUzLr .bg-banner {
  padding: 15px;
  height: auto!important;
  position: relative;
}
.cid-vaiFJMUzLr .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-vaiFJMUzLr .bg-banner h1 {
  margin: 0 !important;
}
.cid-vaiFJMUzLr .banner h1 {
  font-weight: 700!important;
  font-size: 40px;
}
.cid-vaiFJMUzLr .banner h1:last-child {
  margin: 0;
}
.cid-vaiFJMUzLr H1 {
  color: #ffffff;
}
.cid-vaiFJMUzLr .mbr-text {
  color: #ffffff;
  text-align: justify;
}
.cid-vaiH07m0n6 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-vaiPVy8WZe {
  background-color: #fc0404;
}
.cid-vaiPVy8WZe .top {
  fill: #000000;
}
.cid-vaiHausMPw {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-vaiHausMPw .banner {
  z-index: 10;
  height: 499px;
}
.cid-vaiHausMPw .banner-wrapper {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}
.cid-vaiHausMPw .bg-banner {
  padding: 15px;
  height: auto!important;
  position: relative;
}
.cid-vaiHausMPw .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-vaiHausMPw .bg-banner h1 {
  margin: 0 !important;
}
.cid-vaiHausMPw .banner h1 {
  font-weight: 700!important;
  font-size: 40px;
}
.cid-vaiHausMPw .banner h1:last-child {
  margin: 0;
}
.cid-vaiHausMPw H1 {
  color: #ffffff;
}
.cid-vaiHausMPw .mbr-text {
  color: #ffffff;
  text-align: justify;
}
.cid-vaiH4BNhSg {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-vaiH4BNhSg .banner {
  z-index: 10;
  height: 499px;
}
.cid-vaiH4BNhSg .banner-wrapper {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}
.cid-vaiH4BNhSg .bg-banner {
  padding: 15px;
  height: auto!important;
  position: relative;
}
.cid-vaiH4BNhSg .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-vaiH4BNhSg .bg-banner h1 {
  margin: 0 !important;
}
.cid-vaiH4BNhSg .banner h1 {
  font-weight: 700!important;
  font-size: 40px;
}
.cid-vaiH4BNhSg .banner h1:last-child {
  margin: 0;
}
.cid-vaiH4BNhSg H1 {
  color: #ffffff;
}
.cid-vaiH4BNhSg .mbr-text {
  color: #ffffff;
  text-align: right;
}
.cid-S7F6e1RXZs {
  padding-top: 15px;
  padding-bottom: 15px;
  background: linear-gradient(0deg, #fb0707, #fb0707);
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 20;
}
.cid-vaiEwwVbtN {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-vaiEwwVbtN nav.navbar {
  position: fixed;
}
.cid-vaiEwwVbtN .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vaiEwwVbtN .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-vaiEwwVbtN .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-vaiEwwVbtN .dropdown-item:hover,
.cid-vaiEwwVbtN .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-vaiEwwVbtN .dropdown-item:hover span {
  color: white;
}
.cid-vaiEwwVbtN .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vaiEwwVbtN .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vaiEwwVbtN .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vaiEwwVbtN .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vaiEwwVbtN .nav-link {
  position: relative;
}
.cid-vaiEwwVbtN .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-vaiEwwVbtN .container {
    flex-wrap: wrap;
  }
}
.cid-vaiEwwVbtN .container-fluid {
  flex-wrap: nowrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-vaiEwwVbtN .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-vaiEwwVbtN .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vaiEwwVbtN .dropdown-menu,
.cid-vaiEwwVbtN .navbar.opened {
  background: #ff0000 !important;
}
.cid-vaiEwwVbtN .nav-item:focus,
.cid-vaiEwwVbtN .nav-link:focus {
  outline: none;
}
.cid-vaiEwwVbtN .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vaiEwwVbtN .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vaiEwwVbtN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vaiEwwVbtN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vaiEwwVbtN .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vaiEwwVbtN .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vaiEwwVbtN .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ff0000;
}
.cid-vaiEwwVbtN .navbar.opened {
  transition: all 0.3s;
}
.cid-vaiEwwVbtN .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vaiEwwVbtN .navbar .navbar-logo img {
  width: auto;
}
.cid-vaiEwwVbtN .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vaiEwwVbtN .navbar.collapsed {
  justify-content: center;
}
.cid-vaiEwwVbtN .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vaiEwwVbtN .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vaiEwwVbtN .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-vaiEwwVbtN .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vaiEwwVbtN .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vaiEwwVbtN .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-vaiEwwVbtN .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vaiEwwVbtN .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vaiEwwVbtN .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vaiEwwVbtN .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vaiEwwVbtN .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vaiEwwVbtN .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vaiEwwVbtN .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vaiEwwVbtN .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-vaiEwwVbtN .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vaiEwwVbtN .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vaiEwwVbtN .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vaiEwwVbtN .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vaiEwwVbtN .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vaiEwwVbtN .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-vaiEwwVbtN .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-vaiEwwVbtN .navbar.navbar-short {
  min-height: 60px;
}
.cid-vaiEwwVbtN .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vaiEwwVbtN .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-vaiEwwVbtN .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-vaiEwwVbtN .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vaiEwwVbtN .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vaiEwwVbtN .dropdown-item.active,
.cid-vaiEwwVbtN .dropdown-item:active {
  background-color: transparent;
}
.cid-vaiEwwVbtN .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vaiEwwVbtN .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vaiEwwVbtN .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vaiEwwVbtN .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ff0000;
}
.cid-vaiEwwVbtN .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vaiEwwVbtN .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vaiEwwVbtN ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vaiEwwVbtN .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vaiEwwVbtN button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-vaiEwwVbtN button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-vaiEwwVbtN button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vaiEwwVbtN button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vaiEwwVbtN button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vaiEwwVbtN button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vaiEwwVbtN nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vaiEwwVbtN nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vaiEwwVbtN nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vaiEwwVbtN nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vaiEwwVbtN .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-vaiEwwVbtN a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vaiEwwVbtN .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-vaiEwwVbtN .navbar {
    height: 70px;
  }
  .cid-vaiEwwVbtN .navbar.opened {
    height: auto;
  }
  .cid-vaiEwwVbtN .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uWPW1vWrsZ {
  padding-top: 10rem;
  padding-bottom: 2rem;
  background-color: #ef4cf3;
}
.cid-uWEcCFRDe6 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uWEcCFRDe6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uWEcCFRDe6 .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-uWEcCFRDe6 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uWEcCFRDe6 .row {
  flex-direction: row-reverse;
}
.cid-uWEcCFRDe6 img {
  width: 100%;
}
.cid-uWEcCG423n {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #232323;
}
.cid-uWEcCG423n .mbr-fallback-image.disabled {
  display: none;
}
.cid-uWEcCG423n .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uWEcCG423n .item-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-uWEcCG423n .item-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uWEcCG423n .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-uWEcCG423n .card-title {
  color: #ffffff;
  text-align: justify;
}
.cid-uWEcCGg9I2 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #f900ff;
}
.cid-uWEcCGrXak {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uWEcCGrXak .mbr-fallback-image.disabled {
  display: none;
}
.cid-uWEcCGrXak .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uWEcCGrXak .timeline-element {
  position: relative;
}
.cid-uWEcCGrXak .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uWEcCGrXak .iconBackground {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #6592e6;
  top: 30px;
  margin-left: -9px;
  padding: 0;
}
@media (max-width: 767px) {
  .cid-uWEcCGrXak .iconBackground {
    left: 15px;
  }
}
@media (min-width: 768px) {
  .cid-uWEcCGrXak .iconBackground {
    left: 50%;
  }
}
.cid-uWEcCGrXak .row {
  flex-direction: row-reverse;
}
.cid-uWEcCGrXak .row:after {
  content: "";
  position: absolute;
  background-color: #6592e6;
  width: 2px;
  top: 50px;
  height: calc(100% - 10px);
}
@media (max-width: 767px) {
  .cid-uWEcCGrXak .row:after {
    left: 15px;
  }
}
@media (min-width: 768px) {
  .cid-uWEcCGrXak .row:after {
    left: 50%;
  }
}
.cid-uWEcCGrXak .row:nth-child(even) .mbr-timeline-date {
  text-align: right;
}
@media (max-width: 767px) {
  .cid-uWEcCGrXak .row:nth-child(even) {
    flex-direction: column-reverse;
  }
}
@media (max-width: 767px) {
  .cid-uWEcCGrXak .timeline-date-wrapper,
  .cid-uWEcCGrXak .timeline-text-wrapper {
    padding: 0rem;
    padding-left: 2rem;
  }
  .cid-uWEcCGrXak .mbr-timeline-date {
    text-align: left !important;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uWEcCGrXak .timeline-date-wrapper,
  .cid-uWEcCGrXak .timeline-text-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uWEcCGrXak .timeline-date-wrapper,
  .cid-uWEcCGrXak .timeline-text-wrapper {
    padding: 2rem;
  }
}
.cid-uWEcCHa85g {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #f900ff;
}
.cid-uWEcCHyRkq {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-uWEcCHyRkq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uWEcCHyRkq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uWEcCHyRkq .bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-uWEcCHyRkq .bg-facebook:hover {
  background: #0b60cb;
}
.cid-uWEcCHyRkq .bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-uWEcCHyRkq .bg-twitter:hover {
  background: #0c85d0;
}
.cid-uWEcCHyRkq .bg-youtube {
  background: #ff0000;
  color: #ffffff;
}
.cid-uWEcCHyRkq .bg-youtube:hover {
  background: #cc0000;
}
.cid-uWEcCHyRkq .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-uWEcCHyRkq [class^="socicon-"]:before,
.cid-uWEcCHyRkq [class*=" socicon-"]:before {
  line-height: 55px;
  padding: .6rem;
}
.cid-uWEcCHyRkq .mbr-section-title,
.cid-uWEcCHyRkq .social-list {
  color: #ffffff;
}
.cid-uWEcCHU8nD {
  padding-top: 10rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/cool-music-wallpaper-hd-wallpapers-630446878.jpg");
}
.cid-vaiEwwVbtN {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-vaiEwwVbtN nav.navbar {
  position: fixed;
}
.cid-vaiEwwVbtN .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vaiEwwVbtN .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-vaiEwwVbtN .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-vaiEwwVbtN .dropdown-item:hover,
.cid-vaiEwwVbtN .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-vaiEwwVbtN .dropdown-item:hover span {
  color: white;
}
.cid-vaiEwwVbtN .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vaiEwwVbtN .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vaiEwwVbtN .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vaiEwwVbtN .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vaiEwwVbtN .nav-link {
  position: relative;
}
.cid-vaiEwwVbtN .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-vaiEwwVbtN .container {
    flex-wrap: wrap;
  }
}
.cid-vaiEwwVbtN .container-fluid {
  flex-wrap: nowrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-vaiEwwVbtN .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-vaiEwwVbtN .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vaiEwwVbtN .dropdown-menu,
.cid-vaiEwwVbtN .navbar.opened {
  background: #ff0000 !important;
}
.cid-vaiEwwVbtN .nav-item:focus,
.cid-vaiEwwVbtN .nav-link:focus {
  outline: none;
}
.cid-vaiEwwVbtN .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vaiEwwVbtN .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vaiEwwVbtN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vaiEwwVbtN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vaiEwwVbtN .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vaiEwwVbtN .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vaiEwwVbtN .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ff0000;
}
.cid-vaiEwwVbtN .navbar.opened {
  transition: all 0.3s;
}
.cid-vaiEwwVbtN .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vaiEwwVbtN .navbar .navbar-logo img {
  width: auto;
}
.cid-vaiEwwVbtN .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vaiEwwVbtN .navbar.collapsed {
  justify-content: center;
}
.cid-vaiEwwVbtN .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vaiEwwVbtN .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vaiEwwVbtN .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-vaiEwwVbtN .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vaiEwwVbtN .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vaiEwwVbtN .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-vaiEwwVbtN .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vaiEwwVbtN .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vaiEwwVbtN .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vaiEwwVbtN .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vaiEwwVbtN .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vaiEwwVbtN .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vaiEwwVbtN .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vaiEwwVbtN .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-vaiEwwVbtN .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vaiEwwVbtN .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vaiEwwVbtN .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vaiEwwVbtN .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vaiEwwVbtN .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vaiEwwVbtN .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-vaiEwwVbtN .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-vaiEwwVbtN .navbar.navbar-short {
  min-height: 60px;
}
.cid-vaiEwwVbtN .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vaiEwwVbtN .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-vaiEwwVbtN .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-vaiEwwVbtN .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vaiEwwVbtN .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vaiEwwVbtN .dropdown-item.active,
.cid-vaiEwwVbtN .dropdown-item:active {
  background-color: transparent;
}
.cid-vaiEwwVbtN .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vaiEwwVbtN .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vaiEwwVbtN .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vaiEwwVbtN .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ff0000;
}
.cid-vaiEwwVbtN .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vaiEwwVbtN .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vaiEwwVbtN ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vaiEwwVbtN .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vaiEwwVbtN button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-vaiEwwVbtN button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-vaiEwwVbtN button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vaiEwwVbtN button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vaiEwwVbtN button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vaiEwwVbtN button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vaiEwwVbtN nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vaiEwwVbtN nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vaiEwwVbtN nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vaiEwwVbtN nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vaiEwwVbtN .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-vaiEwwVbtN a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vaiEwwVbtN .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-vaiEwwVbtN .navbar {
    height: 70px;
  }
  .cid-vaiEwwVbtN .navbar.opened {
    height: auto;
  }
  .cid-vaiEwwVbtN .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uWPX45U5jl {
  padding-top: 10rem;
  padding-bottom: 2rem;
  background-color: #ef4cf3;
}
.cid-uWEcN3SG4t {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uWEcN3SG4t .mbr-fallback-image.disabled {
  display: none;
}
.cid-uWEcN3SG4t .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-uWEcN3SG4t .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uWEcN3SG4t .row {
  flex-direction: row-reverse;
}
.cid-uWEcN3SG4t img {
  width: 100%;
}
.cid-uXz5HFen89 {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #232323;
}
.cid-uXz5HFen89 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uXz5HFen89 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uXz5HFen89 .item-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-uXz5HFen89 .item-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uXz5HFen89 .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-uXz5HFen89 .card-title {
  color: #ffffff;
  text-align: justify;
}
.cid-uWEd4iIoJs {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #f900ff;
}
.cid-uWEcN4nWFH {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uWEcN4nWFH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uWEcN4nWFH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uWEcN4nWFH .timeline-element {
  position: relative;
}
.cid-uWEcN4nWFH .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uWEcN4nWFH .iconBackground {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #6592e6;
  top: 30px;
  margin-left: -9px;
  padding: 0;
}
@media (max-width: 767px) {
  .cid-uWEcN4nWFH .iconBackground {
    left: 15px;
  }
}
@media (min-width: 768px) {
  .cid-uWEcN4nWFH .iconBackground {
    left: 50%;
  }
}
.cid-uWEcN4nWFH .row {
  flex-direction: row-reverse;
}
.cid-uWEcN4nWFH .row:after {
  content: "";
  position: absolute;
  background-color: #6592e6;
  width: 2px;
  top: 50px;
  height: calc(100% - 10px);
}
@media (max-width: 767px) {
  .cid-uWEcN4nWFH .row:after {
    left: 15px;
  }
}
@media (min-width: 768px) {
  .cid-uWEcN4nWFH .row:after {
    left: 50%;
  }
}
.cid-uWEcN4nWFH .row:nth-child(even) .mbr-timeline-date {
  text-align: right;
}
@media (max-width: 767px) {
  .cid-uWEcN4nWFH .row:nth-child(even) {
    flex-direction: column-reverse;
  }
}
@media (max-width: 767px) {
  .cid-uWEcN4nWFH .timeline-date-wrapper,
  .cid-uWEcN4nWFH .timeline-text-wrapper {
    padding: 0rem;
    padding-left: 2rem;
  }
  .cid-uWEcN4nWFH .mbr-timeline-date {
    text-align: left !important;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uWEcN4nWFH .timeline-date-wrapper,
  .cid-uWEcN4nWFH .timeline-text-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uWEcN4nWFH .timeline-date-wrapper,
  .cid-uWEcN4nWFH .timeline-text-wrapper {
    padding: 2rem;
  }
}
.cid-uWEd5Odn1y {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #f900ff;
}
.cid-uWEcN5kZ9R {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-uWEcN5kZ9R .mbr-fallback-image.disabled {
  display: none;
}
.cid-uWEcN5kZ9R .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uWEcN5kZ9R .bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-uWEcN5kZ9R .bg-facebook:hover {
  background: #0b60cb;
}
.cid-uWEcN5kZ9R .bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-uWEcN5kZ9R .bg-twitter:hover {
  background: #0c85d0;
}
.cid-uWEcN5kZ9R .bg-youtube {
  background: #ff0000;
  color: #ffffff;
}
.cid-uWEcN5kZ9R .bg-youtube:hover {
  background: #cc0000;
}
.cid-uWEcN5kZ9R .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-uWEcN5kZ9R [class^="socicon-"]:before,
.cid-uWEcN5kZ9R [class*=" socicon-"]:before {
  line-height: 55px;
  padding: .6rem;
}
.cid-uWEcN5kZ9R .mbr-section-title,
.cid-uWEcN5kZ9R .social-list {
  color: #ffffff;
}
.cid-uWEcN5Cnoy {
  padding-top: 10rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/cool-music-wallpaper-hd-wallpapers-630446878.jpg");
}
.cid-vaiEwwVbtN {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-vaiEwwVbtN nav.navbar {
  position: fixed;
}
.cid-vaiEwwVbtN .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vaiEwwVbtN .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-vaiEwwVbtN .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-vaiEwwVbtN .dropdown-item:hover,
.cid-vaiEwwVbtN .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-vaiEwwVbtN .dropdown-item:hover span {
  color: white;
}
.cid-vaiEwwVbtN .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vaiEwwVbtN .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vaiEwwVbtN .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vaiEwwVbtN .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vaiEwwVbtN .nav-link {
  position: relative;
}
.cid-vaiEwwVbtN .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-vaiEwwVbtN .container {
    flex-wrap: wrap;
  }
}
.cid-vaiEwwVbtN .container-fluid {
  flex-wrap: nowrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-vaiEwwVbtN .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-vaiEwwVbtN .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vaiEwwVbtN .dropdown-menu,
.cid-vaiEwwVbtN .navbar.opened {
  background: #ff0000 !important;
}
.cid-vaiEwwVbtN .nav-item:focus,
.cid-vaiEwwVbtN .nav-link:focus {
  outline: none;
}
.cid-vaiEwwVbtN .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vaiEwwVbtN .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vaiEwwVbtN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vaiEwwVbtN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vaiEwwVbtN .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vaiEwwVbtN .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vaiEwwVbtN .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ff0000;
}
.cid-vaiEwwVbtN .navbar.opened {
  transition: all 0.3s;
}
.cid-vaiEwwVbtN .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vaiEwwVbtN .navbar .navbar-logo img {
  width: auto;
}
.cid-vaiEwwVbtN .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vaiEwwVbtN .navbar.collapsed {
  justify-content: center;
}
.cid-vaiEwwVbtN .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vaiEwwVbtN .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vaiEwwVbtN .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-vaiEwwVbtN .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vaiEwwVbtN .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vaiEwwVbtN .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-vaiEwwVbtN .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vaiEwwVbtN .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vaiEwwVbtN .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vaiEwwVbtN .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vaiEwwVbtN .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vaiEwwVbtN .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vaiEwwVbtN .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vaiEwwVbtN .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-vaiEwwVbtN .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vaiEwwVbtN .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vaiEwwVbtN .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vaiEwwVbtN .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vaiEwwVbtN .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vaiEwwVbtN .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-vaiEwwVbtN .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-vaiEwwVbtN .navbar.navbar-short {
  min-height: 60px;
}
.cid-vaiEwwVbtN .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vaiEwwVbtN .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-vaiEwwVbtN .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-vaiEwwVbtN .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vaiEwwVbtN .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vaiEwwVbtN .dropdown-item.active,
.cid-vaiEwwVbtN .dropdown-item:active {
  background-color: transparent;
}
.cid-vaiEwwVbtN .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vaiEwwVbtN .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vaiEwwVbtN .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vaiEwwVbtN .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ff0000;
}
.cid-vaiEwwVbtN .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vaiEwwVbtN .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vaiEwwVbtN ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vaiEwwVbtN .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vaiEwwVbtN button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-vaiEwwVbtN button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-vaiEwwVbtN button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vaiEwwVbtN button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vaiEwwVbtN button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vaiEwwVbtN button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vaiEwwVbtN nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vaiEwwVbtN nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vaiEwwVbtN nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vaiEwwVbtN nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vaiEwwVbtN .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-vaiEwwVbtN a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vaiEwwVbtN .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-vaiEwwVbtN .navbar {
    height: 70px;
  }
  .cid-vaiEwwVbtN .navbar.opened {
    height: auto;
  }
  .cid-vaiEwwVbtN .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uWPXghODRP {
  padding-top: 10rem;
  padding-bottom: 2rem;
  background-color: #ef4cf3;
}
.cid-uWEe9OsnxI {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uWEe9OsnxI .mbr-fallback-image.disabled {
  display: none;
}
.cid-uWEe9OsnxI .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-uWEe9OsnxI .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uWEe9OsnxI .row {
  flex-direction: row-reverse;
}
.cid-uWEe9OsnxI img {
  width: 100%;
}
.cid-uWEe9OE7V1 {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #232323;
}
.cid-uWEe9OE7V1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uWEe9OE7V1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uWEe9OE7V1 .item-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-uWEe9OE7V1 .item-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uWEe9OE7V1 .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-uWEe9OE7V1 .card-title {
  color: #ffffff;
  text-align: justify;
}
.cid-uWEewmNJD3 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #f900ff;
}
.cid-uWEe9P05sW {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uWEe9P05sW .mbr-fallback-image.disabled {
  display: none;
}
.cid-uWEe9P05sW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uWEe9P05sW .timeline-element {
  position: relative;
}
.cid-uWEe9P05sW .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uWEe9P05sW .iconBackground {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #6592e6;
  top: 30px;
  margin-left: -9px;
  padding: 0;
}
@media (max-width: 767px) {
  .cid-uWEe9P05sW .iconBackground {
    left: 15px;
  }
}
@media (min-width: 768px) {
  .cid-uWEe9P05sW .iconBackground {
    left: 50%;
  }
}
.cid-uWEe9P05sW .row {
  flex-direction: row-reverse;
}
.cid-uWEe9P05sW .row:after {
  content: "";
  position: absolute;
  background-color: #6592e6;
  width: 2px;
  top: 50px;
  height: calc(100% - 10px);
}
@media (max-width: 767px) {
  .cid-uWEe9P05sW .row:after {
    left: 15px;
  }
}
@media (min-width: 768px) {
  .cid-uWEe9P05sW .row:after {
    left: 50%;
  }
}
.cid-uWEe9P05sW .row:nth-child(even) .mbr-timeline-date {
  text-align: right;
}
@media (max-width: 767px) {
  .cid-uWEe9P05sW .row:nth-child(even) {
    flex-direction: column-reverse;
  }
}
@media (max-width: 767px) {
  .cid-uWEe9P05sW .timeline-date-wrapper,
  .cid-uWEe9P05sW .timeline-text-wrapper {
    padding: 0rem;
    padding-left: 2rem;
  }
  .cid-uWEe9P05sW .mbr-timeline-date {
    text-align: left !important;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uWEe9P05sW .timeline-date-wrapper,
  .cid-uWEe9P05sW .timeline-text-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uWEe9P05sW .timeline-date-wrapper,
  .cid-uWEe9P05sW .timeline-text-wrapper {
    padding: 2rem;
  }
}
.cid-uWEetFTAhw {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #f900ff;
}
.cid-uWEe9Q2LEJ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-uWEe9Q2LEJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uWEe9Q2LEJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uWEe9Q2LEJ .bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-uWEe9Q2LEJ .bg-facebook:hover {
  background: #0b60cb;
}
.cid-uWEe9Q2LEJ .bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-uWEe9Q2LEJ .bg-twitter:hover {
  background: #0c85d0;
}
.cid-uWEe9Q2LEJ .bg-youtube {
  background: #ff0000;
  color: #ffffff;
}
.cid-uWEe9Q2LEJ .bg-youtube:hover {
  background: #cc0000;
}
.cid-uWEe9Q2LEJ .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-uWEe9Q2LEJ [class^="socicon-"]:before,
.cid-uWEe9Q2LEJ [class*=" socicon-"]:before {
  line-height: 55px;
  padding: .6rem;
}
.cid-uWEe9Q2LEJ .mbr-section-title,
.cid-uWEe9Q2LEJ .social-list {
  color: #ffffff;
}
.cid-uWEe9Ql44y {
  padding-top: 10rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/cool-music-wallpaper-hd-wallpapers-630446878.jpg");
}
.cid-vaiEwwVbtN {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-vaiEwwVbtN nav.navbar {
  position: fixed;
}
.cid-vaiEwwVbtN .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vaiEwwVbtN .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-vaiEwwVbtN .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-vaiEwwVbtN .dropdown-item:hover,
.cid-vaiEwwVbtN .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-vaiEwwVbtN .dropdown-item:hover span {
  color: white;
}
.cid-vaiEwwVbtN .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vaiEwwVbtN .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vaiEwwVbtN .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vaiEwwVbtN .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vaiEwwVbtN .nav-link {
  position: relative;
}
.cid-vaiEwwVbtN .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-vaiEwwVbtN .container {
    flex-wrap: wrap;
  }
}
.cid-vaiEwwVbtN .container-fluid {
  flex-wrap: nowrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-vaiEwwVbtN .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-vaiEwwVbtN .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vaiEwwVbtN .dropdown-menu,
.cid-vaiEwwVbtN .navbar.opened {
  background: #ff0000 !important;
}
.cid-vaiEwwVbtN .nav-item:focus,
.cid-vaiEwwVbtN .nav-link:focus {
  outline: none;
}
.cid-vaiEwwVbtN .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vaiEwwVbtN .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vaiEwwVbtN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vaiEwwVbtN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vaiEwwVbtN .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vaiEwwVbtN .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vaiEwwVbtN .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ff0000;
}
.cid-vaiEwwVbtN .navbar.opened {
  transition: all 0.3s;
}
.cid-vaiEwwVbtN .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vaiEwwVbtN .navbar .navbar-logo img {
  width: auto;
}
.cid-vaiEwwVbtN .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vaiEwwVbtN .navbar.collapsed {
  justify-content: center;
}
.cid-vaiEwwVbtN .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vaiEwwVbtN .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vaiEwwVbtN .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-vaiEwwVbtN .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vaiEwwVbtN .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vaiEwwVbtN .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-vaiEwwVbtN .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vaiEwwVbtN .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vaiEwwVbtN .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vaiEwwVbtN .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vaiEwwVbtN .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vaiEwwVbtN .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vaiEwwVbtN .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vaiEwwVbtN .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-vaiEwwVbtN .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vaiEwwVbtN .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vaiEwwVbtN .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vaiEwwVbtN .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vaiEwwVbtN .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vaiEwwVbtN .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-vaiEwwVbtN .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-vaiEwwVbtN .navbar.navbar-short {
  min-height: 60px;
}
.cid-vaiEwwVbtN .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vaiEwwVbtN .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-vaiEwwVbtN .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-vaiEwwVbtN .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vaiEwwVbtN .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vaiEwwVbtN .dropdown-item.active,
.cid-vaiEwwVbtN .dropdown-item:active {
  background-color: transparent;
}
.cid-vaiEwwVbtN .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vaiEwwVbtN .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vaiEwwVbtN .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vaiEwwVbtN .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ff0000;
}
.cid-vaiEwwVbtN .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vaiEwwVbtN .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vaiEwwVbtN ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vaiEwwVbtN .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vaiEwwVbtN button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-vaiEwwVbtN button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-vaiEwwVbtN button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vaiEwwVbtN button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vaiEwwVbtN button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vaiEwwVbtN button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vaiEwwVbtN nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vaiEwwVbtN nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vaiEwwVbtN nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vaiEwwVbtN nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vaiEwwVbtN .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-vaiEwwVbtN a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vaiEwwVbtN .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-vaiEwwVbtN .navbar {
    height: 70px;
  }
  .cid-vaiEwwVbtN .navbar.opened {
    height: auto;
  }
  .cid-vaiEwwVbtN .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uWPXqN5Xky {
  padding-top: 10rem;
  padding-bottom: 2rem;
  background-color: #ef4cf3;
}
.cid-uWEgTElHSH {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uWEgTElHSH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uWEgTElHSH .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-uWEgTElHSH .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uWEgTElHSH .row {
  flex-direction: row-reverse;
}
.cid-uWEgTElHSH img {
  width: 100%;
}
.cid-uWEgTExIF5 {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #232323;
}
.cid-uWEgTExIF5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uWEgTExIF5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uWEgTExIF5 .item-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-uWEgTExIF5 .item-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uWEgTExIF5 .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-uWEgTExIF5 .card-title {
  color: #ffffff;
  text-align: justify;
}
.cid-uWEgTEKUok {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #f900ff;
}
.cid-uWEgTETVNB {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uWEgTETVNB .mbr-fallback-image.disabled {
  display: none;
}
.cid-uWEgTETVNB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uWEgTETVNB .timeline-element {
  position: relative;
}
.cid-uWEgTETVNB .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uWEgTETVNB .iconBackground {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #6592e6;
  top: 30px;
  margin-left: -9px;
  padding: 0;
}
@media (max-width: 767px) {
  .cid-uWEgTETVNB .iconBackground {
    left: 15px;
  }
}
@media (min-width: 768px) {
  .cid-uWEgTETVNB .iconBackground {
    left: 50%;
  }
}
.cid-uWEgTETVNB .row {
  flex-direction: row-reverse;
}
.cid-uWEgTETVNB .row:after {
  content: "";
  position: absolute;
  background-color: #6592e6;
  width: 2px;
  top: 50px;
  height: calc(100% - 10px);
}
@media (max-width: 767px) {
  .cid-uWEgTETVNB .row:after {
    left: 15px;
  }
}
@media (min-width: 768px) {
  .cid-uWEgTETVNB .row:after {
    left: 50%;
  }
}
.cid-uWEgTETVNB .row:nth-child(even) .mbr-timeline-date {
  text-align: right;
}
@media (max-width: 767px) {
  .cid-uWEgTETVNB .row:nth-child(even) {
    flex-direction: column-reverse;
  }
}
@media (max-width: 767px) {
  .cid-uWEgTETVNB .timeline-date-wrapper,
  .cid-uWEgTETVNB .timeline-text-wrapper {
    padding: 0rem;
    padding-left: 2rem;
  }
  .cid-uWEgTETVNB .mbr-timeline-date {
    text-align: left !important;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uWEgTETVNB .timeline-date-wrapper,
  .cid-uWEgTETVNB .timeline-text-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uWEgTETVNB .timeline-date-wrapper,
  .cid-uWEgTETVNB .timeline-text-wrapper {
    padding: 2rem;
  }
}
.cid-uWEgTFv8JJ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #f900ff;
}
.cid-uWEgTFOx0L {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-uWEgTFOx0L .mbr-fallback-image.disabled {
  display: none;
}
.cid-uWEgTFOx0L .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uWEgTFOx0L .bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-uWEgTFOx0L .bg-facebook:hover {
  background: #0b60cb;
}
.cid-uWEgTFOx0L .bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-uWEgTFOx0L .bg-twitter:hover {
  background: #0c85d0;
}
.cid-uWEgTFOx0L .bg-youtube {
  background: #ff0000;
  color: #ffffff;
}
.cid-uWEgTFOx0L .bg-youtube:hover {
  background: #cc0000;
}
.cid-uWEgTFOx0L .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-uWEgTFOx0L [class^="socicon-"]:before,
.cid-uWEgTFOx0L [class*=" socicon-"]:before {
  line-height: 55px;
  padding: .6rem;
}
.cid-uWEgTFOx0L .mbr-section-title,
.cid-uWEgTFOx0L .social-list {
  color: #ffffff;
}
.cid-uWEgTG5R9Q {
  padding-top: 10rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/cool-music-wallpaper-hd-wallpapers-630446878.jpg");
}
.cid-vaiEwwVbtN {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-vaiEwwVbtN nav.navbar {
  position: fixed;
}
.cid-vaiEwwVbtN .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vaiEwwVbtN .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-vaiEwwVbtN .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-vaiEwwVbtN .dropdown-item:hover,
.cid-vaiEwwVbtN .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-vaiEwwVbtN .dropdown-item:hover span {
  color: white;
}
.cid-vaiEwwVbtN .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vaiEwwVbtN .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vaiEwwVbtN .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vaiEwwVbtN .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vaiEwwVbtN .nav-link {
  position: relative;
}
.cid-vaiEwwVbtN .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-vaiEwwVbtN .container {
    flex-wrap: wrap;
  }
}
.cid-vaiEwwVbtN .container-fluid {
  flex-wrap: nowrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-vaiEwwVbtN .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-vaiEwwVbtN .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vaiEwwVbtN .dropdown-menu,
.cid-vaiEwwVbtN .navbar.opened {
  background: #ff0000 !important;
}
.cid-vaiEwwVbtN .nav-item:focus,
.cid-vaiEwwVbtN .nav-link:focus {
  outline: none;
}
.cid-vaiEwwVbtN .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vaiEwwVbtN .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vaiEwwVbtN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vaiEwwVbtN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vaiEwwVbtN .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vaiEwwVbtN .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vaiEwwVbtN .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ff0000;
}
.cid-vaiEwwVbtN .navbar.opened {
  transition: all 0.3s;
}
.cid-vaiEwwVbtN .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vaiEwwVbtN .navbar .navbar-logo img {
  width: auto;
}
.cid-vaiEwwVbtN .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vaiEwwVbtN .navbar.collapsed {
  justify-content: center;
}
.cid-vaiEwwVbtN .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vaiEwwVbtN .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vaiEwwVbtN .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-vaiEwwVbtN .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vaiEwwVbtN .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vaiEwwVbtN .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-vaiEwwVbtN .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vaiEwwVbtN .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vaiEwwVbtN .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vaiEwwVbtN .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vaiEwwVbtN .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vaiEwwVbtN .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vaiEwwVbtN .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vaiEwwVbtN .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-vaiEwwVbtN .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vaiEwwVbtN .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vaiEwwVbtN .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vaiEwwVbtN .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vaiEwwVbtN .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vaiEwwVbtN .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-vaiEwwVbtN .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-vaiEwwVbtN .navbar.navbar-short {
  min-height: 60px;
}
.cid-vaiEwwVbtN .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vaiEwwVbtN .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-vaiEwwVbtN .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-vaiEwwVbtN .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vaiEwwVbtN .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vaiEwwVbtN .dropdown-item.active,
.cid-vaiEwwVbtN .dropdown-item:active {
  background-color: transparent;
}
.cid-vaiEwwVbtN .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vaiEwwVbtN .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vaiEwwVbtN .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vaiEwwVbtN .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ff0000;
}
.cid-vaiEwwVbtN .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vaiEwwVbtN .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vaiEwwVbtN ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vaiEwwVbtN .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vaiEwwVbtN button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-vaiEwwVbtN button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-vaiEwwVbtN button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vaiEwwVbtN button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vaiEwwVbtN button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vaiEwwVbtN button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vaiEwwVbtN nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vaiEwwVbtN nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vaiEwwVbtN nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vaiEwwVbtN nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vaiEwwVbtN .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-vaiEwwVbtN a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vaiEwwVbtN .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-vaiEwwVbtN .navbar {
    height: 70px;
  }
  .cid-vaiEwwVbtN .navbar.opened {
    height: auto;
  }
  .cid-vaiEwwVbtN .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uWPXBhglvB {
  padding-top: 10rem;
  padding-bottom: 2rem;
  background-color: #f900ff;
}
.cid-uWEkQMQEdc {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uWEkQMQEdc .mbr-fallback-image.disabled {
  display: none;
}
.cid-uWEkQMQEdc .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-uWEkQMQEdc .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uWEkQMQEdc .row {
  flex-direction: row-reverse;
}
.cid-uWEkQMQEdc img {
  width: 100%;
}
.cid-uWEkQMZB95 {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #232323;
}
.cid-uWEkQMZB95 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uWEkQMZB95 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uWEkQMZB95 .item-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-uWEkQMZB95 .item-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uWEkQMZB95 .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-uWEkQMZB95 .card-title {
  color: #ffffff;
  text-align: justify;
}
.cid-uWEkQNa71E {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #f900ff;
}
.cid-uWEkQNinsB {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uWEkQNinsB .mbr-fallback-image.disabled {
  display: none;
}
.cid-uWEkQNinsB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uWEkQNinsB .timeline-element {
  position: relative;
}
.cid-uWEkQNinsB .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uWEkQNinsB .iconBackground {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #6592e6;
  top: 30px;
  margin-left: -9px;
  padding: 0;
}
@media (max-width: 767px) {
  .cid-uWEkQNinsB .iconBackground {
    left: 15px;
  }
}
@media (min-width: 768px) {
  .cid-uWEkQNinsB .iconBackground {
    left: 50%;
  }
}
.cid-uWEkQNinsB .row {
  flex-direction: row-reverse;
}
.cid-uWEkQNinsB .row:after {
  content: "";
  position: absolute;
  background-color: #6592e6;
  width: 2px;
  top: 50px;
  height: calc(100% - 10px);
}
@media (max-width: 767px) {
  .cid-uWEkQNinsB .row:after {
    left: 15px;
  }
}
@media (min-width: 768px) {
  .cid-uWEkQNinsB .row:after {
    left: 50%;
  }
}
.cid-uWEkQNinsB .row:nth-child(even) .mbr-timeline-date {
  text-align: right;
}
@media (max-width: 767px) {
  .cid-uWEkQNinsB .row:nth-child(even) {
    flex-direction: column-reverse;
  }
}
@media (max-width: 767px) {
  .cid-uWEkQNinsB .timeline-date-wrapper,
  .cid-uWEkQNinsB .timeline-text-wrapper {
    padding: 0rem;
    padding-left: 2rem;
  }
  .cid-uWEkQNinsB .mbr-timeline-date {
    text-align: left !important;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uWEkQNinsB .timeline-date-wrapper,
  .cid-uWEkQNinsB .timeline-text-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uWEkQNinsB .timeline-date-wrapper,
  .cid-uWEkQNinsB .timeline-text-wrapper {
    padding: 2rem;
  }
}
.cid-uWEkQNYp0a {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #f900ff;
}
.cid-uWEkQOkPJK {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-uWEkQOkPJK .mbr-fallback-image.disabled {
  display: none;
}
.cid-uWEkQOkPJK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uWEkQOkPJK .bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-uWEkQOkPJK .bg-facebook:hover {
  background: #0b60cb;
}
.cid-uWEkQOkPJK .bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-uWEkQOkPJK .bg-twitter:hover {
  background: #0c85d0;
}
.cid-uWEkQOkPJK .bg-youtube {
  background: #ff0000;
  color: #ffffff;
}
.cid-uWEkQOkPJK .bg-youtube:hover {
  background: #cc0000;
}
.cid-uWEkQOkPJK .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-uWEkQOkPJK [class^="socicon-"]:before,
.cid-uWEkQOkPJK [class*=" socicon-"]:before {
  line-height: 55px;
  padding: .6rem;
}
.cid-uWEkQOkPJK .mbr-section-title,
.cid-uWEkQOkPJK .social-list {
  color: #ffffff;
}
.cid-uWEkQOBs2H {
  padding-top: 10rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/cool-music-wallpaper-hd-wallpapers-630446878.jpg");
}
.cid-vaiEwwVbtN {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-vaiEwwVbtN nav.navbar {
  position: fixed;
}
.cid-vaiEwwVbtN .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vaiEwwVbtN .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-vaiEwwVbtN .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-vaiEwwVbtN .dropdown-item:hover,
.cid-vaiEwwVbtN .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-vaiEwwVbtN .dropdown-item:hover span {
  color: white;
}
.cid-vaiEwwVbtN .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vaiEwwVbtN .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vaiEwwVbtN .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vaiEwwVbtN .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vaiEwwVbtN .nav-link {
  position: relative;
}
.cid-vaiEwwVbtN .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-vaiEwwVbtN .container {
    flex-wrap: wrap;
  }
}
.cid-vaiEwwVbtN .container-fluid {
  flex-wrap: nowrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-vaiEwwVbtN .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-vaiEwwVbtN .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vaiEwwVbtN .dropdown-menu,
.cid-vaiEwwVbtN .navbar.opened {
  background: #ff0000 !important;
}
.cid-vaiEwwVbtN .nav-item:focus,
.cid-vaiEwwVbtN .nav-link:focus {
  outline: none;
}
.cid-vaiEwwVbtN .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vaiEwwVbtN .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vaiEwwVbtN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vaiEwwVbtN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vaiEwwVbtN .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vaiEwwVbtN .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vaiEwwVbtN .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ff0000;
}
.cid-vaiEwwVbtN .navbar.opened {
  transition: all 0.3s;
}
.cid-vaiEwwVbtN .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vaiEwwVbtN .navbar .navbar-logo img {
  width: auto;
}
.cid-vaiEwwVbtN .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vaiEwwVbtN .navbar.collapsed {
  justify-content: center;
}
.cid-vaiEwwVbtN .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vaiEwwVbtN .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vaiEwwVbtN .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-vaiEwwVbtN .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vaiEwwVbtN .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vaiEwwVbtN .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-vaiEwwVbtN .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vaiEwwVbtN .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vaiEwwVbtN .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vaiEwwVbtN .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vaiEwwVbtN .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vaiEwwVbtN .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vaiEwwVbtN .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vaiEwwVbtN .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-vaiEwwVbtN .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vaiEwwVbtN .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vaiEwwVbtN .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vaiEwwVbtN .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vaiEwwVbtN .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vaiEwwVbtN .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-vaiEwwVbtN .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-vaiEwwVbtN .navbar.navbar-short {
  min-height: 60px;
}
.cid-vaiEwwVbtN .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vaiEwwVbtN .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-vaiEwwVbtN .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-vaiEwwVbtN .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vaiEwwVbtN .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vaiEwwVbtN .dropdown-item.active,
.cid-vaiEwwVbtN .dropdown-item:active {
  background-color: transparent;
}
.cid-vaiEwwVbtN .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vaiEwwVbtN .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vaiEwwVbtN .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vaiEwwVbtN .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ff0000;
}
.cid-vaiEwwVbtN .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vaiEwwVbtN .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vaiEwwVbtN ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vaiEwwVbtN .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vaiEwwVbtN button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-vaiEwwVbtN button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-vaiEwwVbtN button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vaiEwwVbtN button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vaiEwwVbtN button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vaiEwwVbtN button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vaiEwwVbtN nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vaiEwwVbtN nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vaiEwwVbtN nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vaiEwwVbtN nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vaiEwwVbtN .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-vaiEwwVbtN a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vaiEwwVbtN .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-vaiEwwVbtN .navbar {
    height: 70px;
  }
  .cid-vaiEwwVbtN .navbar.opened {
    height: auto;
  }
  .cid-vaiEwwVbtN .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uWPXIRIdCG {
  padding-top: 10rem;
  padding-bottom: 2rem;
  background-color: #f900ff;
}
.cid-uWEn8ehPTK {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uWEn8ehPTK .mbr-fallback-image.disabled {
  display: none;
}
.cid-uWEn8ehPTK .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-uWEn8ehPTK .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uWEn8ehPTK .row {
  flex-direction: row-reverse;
}
.cid-uWEn8ehPTK img {
  width: 100%;
}
.cid-uWEn8esZHo {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #232323;
}
.cid-uWEn8esZHo .mbr-fallback-image.disabled {
  display: none;
}
.cid-uWEn8esZHo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uWEn8esZHo .item-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-uWEn8esZHo .item-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uWEn8esZHo .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-uWEn8esZHo .card-title {
  color: #ffffff;
  text-align: justify;
}
.cid-uWEn8eCxFW {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #f900ff;
}
.cid-uWEn8eMTfn {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uWEn8eMTfn .mbr-fallback-image.disabled {
  display: none;
}
.cid-uWEn8eMTfn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uWEn8eMTfn .timeline-element {
  position: relative;
}
.cid-uWEn8eMTfn .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uWEn8eMTfn .iconBackground {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #6592e6;
  top: 30px;
  margin-left: -9px;
  padding: 0;
}
@media (max-width: 767px) {
  .cid-uWEn8eMTfn .iconBackground {
    left: 15px;
  }
}
@media (min-width: 768px) {
  .cid-uWEn8eMTfn .iconBackground {
    left: 50%;
  }
}
.cid-uWEn8eMTfn .row {
  flex-direction: row-reverse;
}
.cid-uWEn8eMTfn .row:after {
  content: "";
  position: absolute;
  background-color: #6592e6;
  width: 2px;
  top: 50px;
  height: calc(100% - 10px);
}
@media (max-width: 767px) {
  .cid-uWEn8eMTfn .row:after {
    left: 15px;
  }
}
@media (min-width: 768px) {
  .cid-uWEn8eMTfn .row:after {
    left: 50%;
  }
}
.cid-uWEn8eMTfn .row:nth-child(even) .mbr-timeline-date {
  text-align: right;
}
@media (max-width: 767px) {
  .cid-uWEn8eMTfn .row:nth-child(even) {
    flex-direction: column-reverse;
  }
}
@media (max-width: 767px) {
  .cid-uWEn8eMTfn .timeline-date-wrapper,
  .cid-uWEn8eMTfn .timeline-text-wrapper {
    padding: 0rem;
    padding-left: 2rem;
  }
  .cid-uWEn8eMTfn .mbr-timeline-date {
    text-align: left !important;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uWEn8eMTfn .timeline-date-wrapper,
  .cid-uWEn8eMTfn .timeline-text-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uWEn8eMTfn .timeline-date-wrapper,
  .cid-uWEn8eMTfn .timeline-text-wrapper {
    padding: 2rem;
  }
}
.cid-uWEn8fqGjF {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #f900ff;
}
.cid-uWEn8fQ3gO {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-uWEn8fQ3gO .mbr-fallback-image.disabled {
  display: none;
}
.cid-uWEn8fQ3gO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uWEn8fQ3gO .bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-uWEn8fQ3gO .bg-facebook:hover {
  background: #0b60cb;
}
.cid-uWEn8fQ3gO .bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-uWEn8fQ3gO .bg-twitter:hover {
  background: #0c85d0;
}
.cid-uWEn8fQ3gO .bg-youtube {
  background: #ff0000;
  color: #ffffff;
}
.cid-uWEn8fQ3gO .bg-youtube:hover {
  background: #cc0000;
}
.cid-uWEn8fQ3gO .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-uWEn8fQ3gO [class^="socicon-"]:before,
.cid-uWEn8fQ3gO [class*=" socicon-"]:before {
  line-height: 55px;
  padding: .6rem;
}
.cid-uWEn8fQ3gO .mbr-section-title,
.cid-uWEn8fQ3gO .social-list {
  color: #ffffff;
}
.cid-uWEn8g9R71 {
  padding-top: 10rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/cool-music-wallpaper-hd-wallpapers-630446878.jpg");
}
.cid-vaiEwwVbtN {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-vaiEwwVbtN nav.navbar {
  position: fixed;
}
.cid-vaiEwwVbtN .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vaiEwwVbtN .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-vaiEwwVbtN .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-vaiEwwVbtN .dropdown-item:hover,
.cid-vaiEwwVbtN .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-vaiEwwVbtN .dropdown-item:hover span {
  color: white;
}
.cid-vaiEwwVbtN .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vaiEwwVbtN .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vaiEwwVbtN .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vaiEwwVbtN .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vaiEwwVbtN .nav-link {
  position: relative;
}
.cid-vaiEwwVbtN .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-vaiEwwVbtN .container {
    flex-wrap: wrap;
  }
}
.cid-vaiEwwVbtN .container-fluid {
  flex-wrap: nowrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-vaiEwwVbtN .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-vaiEwwVbtN .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vaiEwwVbtN .dropdown-menu,
.cid-vaiEwwVbtN .navbar.opened {
  background: #ff0000 !important;
}
.cid-vaiEwwVbtN .nav-item:focus,
.cid-vaiEwwVbtN .nav-link:focus {
  outline: none;
}
.cid-vaiEwwVbtN .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vaiEwwVbtN .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vaiEwwVbtN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vaiEwwVbtN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vaiEwwVbtN .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vaiEwwVbtN .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vaiEwwVbtN .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ff0000;
}
.cid-vaiEwwVbtN .navbar.opened {
  transition: all 0.3s;
}
.cid-vaiEwwVbtN .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vaiEwwVbtN .navbar .navbar-logo img {
  width: auto;
}
.cid-vaiEwwVbtN .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vaiEwwVbtN .navbar.collapsed {
  justify-content: center;
}
.cid-vaiEwwVbtN .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vaiEwwVbtN .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vaiEwwVbtN .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-vaiEwwVbtN .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vaiEwwVbtN .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vaiEwwVbtN .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-vaiEwwVbtN .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vaiEwwVbtN .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vaiEwwVbtN .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vaiEwwVbtN .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vaiEwwVbtN .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vaiEwwVbtN .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vaiEwwVbtN .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vaiEwwVbtN .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-vaiEwwVbtN .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vaiEwwVbtN .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vaiEwwVbtN .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vaiEwwVbtN .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vaiEwwVbtN .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vaiEwwVbtN .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-vaiEwwVbtN .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-vaiEwwVbtN .navbar.navbar-short {
  min-height: 60px;
}
.cid-vaiEwwVbtN .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vaiEwwVbtN .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-vaiEwwVbtN .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-vaiEwwVbtN .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vaiEwwVbtN .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vaiEwwVbtN .dropdown-item.active,
.cid-vaiEwwVbtN .dropdown-item:active {
  background-color: transparent;
}
.cid-vaiEwwVbtN .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vaiEwwVbtN .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vaiEwwVbtN .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vaiEwwVbtN .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ff0000;
}
.cid-vaiEwwVbtN .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vaiEwwVbtN .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vaiEwwVbtN ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vaiEwwVbtN .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vaiEwwVbtN button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-vaiEwwVbtN button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-vaiEwwVbtN button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vaiEwwVbtN button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vaiEwwVbtN button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vaiEwwVbtN button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vaiEwwVbtN nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vaiEwwVbtN nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vaiEwwVbtN nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vaiEwwVbtN nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vaiEwwVbtN .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-vaiEwwVbtN a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vaiEwwVbtN .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-vaiEwwVbtN .navbar {
    height: 70px;
  }
  .cid-vaiEwwVbtN .navbar.opened {
    height: auto;
  }
  .cid-vaiEwwVbtN .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uWPXR7cOW9 {
  padding-top: 10rem;
  padding-bottom: 2rem;
  background-color: #f900ff;
}
.cid-uWEoqlmZYI {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uWEoqlmZYI .mbr-fallback-image.disabled {
  display: none;
}
.cid-uWEoqlmZYI .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-uWEoqlmZYI .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uWEoqlmZYI .row {
  flex-direction: row-reverse;
}
.cid-uWEoqlmZYI img {
  width: 100%;
}
.cid-uWEoqlBLOm {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #232323;
}
.cid-uWEoqlBLOm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uWEoqlBLOm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uWEoqlBLOm .item-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-uWEoqlBLOm .item-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uWEoqlBLOm .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-uWEoqlBLOm .card-title {
  color: #ffffff;
  text-align: justify;
}
.cid-uWEoqlR1Oj {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #f900ff;
}
.cid-uWEoqm0tR6 {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uWEoqm0tR6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uWEoqm0tR6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uWEoqm0tR6 .timeline-element {
  position: relative;
}
.cid-uWEoqm0tR6 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uWEoqm0tR6 .iconBackground {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #6592e6;
  top: 30px;
  margin-left: -9px;
  padding: 0;
}
@media (max-width: 767px) {
  .cid-uWEoqm0tR6 .iconBackground {
    left: 15px;
  }
}
@media (min-width: 768px) {
  .cid-uWEoqm0tR6 .iconBackground {
    left: 50%;
  }
}
.cid-uWEoqm0tR6 .row {
  flex-direction: row-reverse;
}
.cid-uWEoqm0tR6 .row:after {
  content: "";
  position: absolute;
  background-color: #6592e6;
  width: 2px;
  top: 50px;
  height: calc(100% - 10px);
}
@media (max-width: 767px) {
  .cid-uWEoqm0tR6 .row:after {
    left: 15px;
  }
}
@media (min-width: 768px) {
  .cid-uWEoqm0tR6 .row:after {
    left: 50%;
  }
}
.cid-uWEoqm0tR6 .row:nth-child(even) .mbr-timeline-date {
  text-align: right;
}
@media (max-width: 767px) {
  .cid-uWEoqm0tR6 .row:nth-child(even) {
    flex-direction: column-reverse;
  }
}
@media (max-width: 767px) {
  .cid-uWEoqm0tR6 .timeline-date-wrapper,
  .cid-uWEoqm0tR6 .timeline-text-wrapper {
    padding: 0rem;
    padding-left: 2rem;
  }
  .cid-uWEoqm0tR6 .mbr-timeline-date {
    text-align: left !important;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uWEoqm0tR6 .timeline-date-wrapper,
  .cid-uWEoqm0tR6 .timeline-text-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uWEoqm0tR6 .timeline-date-wrapper,
  .cid-uWEoqm0tR6 .timeline-text-wrapper {
    padding: 2rem;
  }
}
.cid-uWEoqmFAvD {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #f900ff;
}
.cid-uWEoqn0v38 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-uWEoqn0v38 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uWEoqn0v38 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uWEoqn0v38 .bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-uWEoqn0v38 .bg-facebook:hover {
  background: #0b60cb;
}
.cid-uWEoqn0v38 .bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-uWEoqn0v38 .bg-twitter:hover {
  background: #0c85d0;
}
.cid-uWEoqn0v38 .bg-youtube {
  background: #ff0000;
  color: #ffffff;
}
.cid-uWEoqn0v38 .bg-youtube:hover {
  background: #cc0000;
}
.cid-uWEoqn0v38 .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-uWEoqn0v38 [class^="socicon-"]:before,
.cid-uWEoqn0v38 [class*=" socicon-"]:before {
  line-height: 55px;
  padding: .6rem;
}
.cid-uWEoqn0v38 .mbr-section-title,
.cid-uWEoqn0v38 .social-list {
  color: #ffffff;
}
.cid-uWEoqniFi8 {
  padding-top: 10rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/cool-music-wallpaper-hd-wallpapers-630446878.jpg");
}
.cid-vaiEwwVbtN {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-vaiEwwVbtN nav.navbar {
  position: fixed;
}
.cid-vaiEwwVbtN .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vaiEwwVbtN .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-vaiEwwVbtN .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-vaiEwwVbtN .dropdown-item:hover,
.cid-vaiEwwVbtN .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-vaiEwwVbtN .dropdown-item:hover span {
  color: white;
}
.cid-vaiEwwVbtN .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vaiEwwVbtN .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vaiEwwVbtN .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vaiEwwVbtN .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vaiEwwVbtN .nav-link {
  position: relative;
}
.cid-vaiEwwVbtN .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-vaiEwwVbtN .container {
    flex-wrap: wrap;
  }
}
.cid-vaiEwwVbtN .container-fluid {
  flex-wrap: nowrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-vaiEwwVbtN .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-vaiEwwVbtN .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vaiEwwVbtN .dropdown-menu,
.cid-vaiEwwVbtN .navbar.opened {
  background: #ff0000 !important;
}
.cid-vaiEwwVbtN .nav-item:focus,
.cid-vaiEwwVbtN .nav-link:focus {
  outline: none;
}
.cid-vaiEwwVbtN .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vaiEwwVbtN .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vaiEwwVbtN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vaiEwwVbtN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vaiEwwVbtN .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vaiEwwVbtN .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vaiEwwVbtN .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ff0000;
}
.cid-vaiEwwVbtN .navbar.opened {
  transition: all 0.3s;
}
.cid-vaiEwwVbtN .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vaiEwwVbtN .navbar .navbar-logo img {
  width: auto;
}
.cid-vaiEwwVbtN .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vaiEwwVbtN .navbar.collapsed {
  justify-content: center;
}
.cid-vaiEwwVbtN .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vaiEwwVbtN .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vaiEwwVbtN .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-vaiEwwVbtN .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vaiEwwVbtN .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vaiEwwVbtN .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-vaiEwwVbtN .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vaiEwwVbtN .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vaiEwwVbtN .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vaiEwwVbtN .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vaiEwwVbtN .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vaiEwwVbtN .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vaiEwwVbtN .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vaiEwwVbtN .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-vaiEwwVbtN .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vaiEwwVbtN .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vaiEwwVbtN .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vaiEwwVbtN .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vaiEwwVbtN .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vaiEwwVbtN .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-vaiEwwVbtN .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-vaiEwwVbtN .navbar.navbar-short {
  min-height: 60px;
}
.cid-vaiEwwVbtN .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vaiEwwVbtN .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-vaiEwwVbtN .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-vaiEwwVbtN .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vaiEwwVbtN .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vaiEwwVbtN .dropdown-item.active,
.cid-vaiEwwVbtN .dropdown-item:active {
  background-color: transparent;
}
.cid-vaiEwwVbtN .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vaiEwwVbtN .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vaiEwwVbtN .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vaiEwwVbtN .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ff0000;
}
.cid-vaiEwwVbtN .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vaiEwwVbtN .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vaiEwwVbtN ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vaiEwwVbtN .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vaiEwwVbtN button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-vaiEwwVbtN button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-vaiEwwVbtN button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vaiEwwVbtN button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vaiEwwVbtN button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vaiEwwVbtN button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vaiEwwVbtN nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vaiEwwVbtN nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vaiEwwVbtN nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vaiEwwVbtN nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vaiEwwVbtN .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-vaiEwwVbtN a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vaiEwwVbtN .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-vaiEwwVbtN .navbar {
    height: 70px;
  }
  .cid-vaiEwwVbtN .navbar.opened {
    height: auto;
  }
  .cid-vaiEwwVbtN .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vaiJjMMILN {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-vaiJjMMILN .banner {
  z-index: 10;
  height: 499px;
}
.cid-vaiJjMMILN .banner-wrapper {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}
.cid-vaiJjMMILN .bg-banner {
  padding: 15px;
  height: auto!important;
  position: relative;
}
.cid-vaiJjMMILN .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-vaiJjMMILN .bg-banner h1 {
  margin: 0 !important;
}
.cid-vaiJjMMILN .banner h1 {
  font-weight: 700!important;
  font-size: 40px;
}
.cid-vaiJjMMILN .banner h1:last-child {
  margin: 0;
}
.cid-vaiJjMMILN H1 {
  color: #ffffff;
}
.cid-vaiJjMMILN .mbr-text {
  color: #ffffff;
  text-align: justify;
}
.cid-vaiJ4fL1ik {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-vaiJ4fL1ik .mbr-fallback-image.disabled {
  display: none;
}
.cid-vaiJ4fL1ik .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-vaiJ4fL1ik .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-vaiJ4fL1ik .row {
  flex-direction: row-reverse;
}
.cid-vaiJ4fL1ik img {
  width: 100%;
}
.cid-vaiJngZ8zP {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-vaiJngZ8zP .banner {
  z-index: 10;
  height: 499px;
}
.cid-vaiJngZ8zP .banner-wrapper {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}
.cid-vaiJngZ8zP .bg-banner {
  padding: 15px;
  height: auto!important;
  position: relative;
}
.cid-vaiJngZ8zP .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-vaiJngZ8zP .bg-banner h1 {
  margin: 0 !important;
}
.cid-vaiJngZ8zP .banner h1 {
  font-weight: 700!important;
  font-size: 40px;
}
.cid-vaiJngZ8zP .banner h1:last-child {
  margin: 0;
}
.cid-vaiJngZ8zP H1 {
  color: #ffffff;
}
.cid-vaiJngZ8zP .mbr-text {
  color: #ffffff;
  text-align: justify;
}
.cid-uWPZ5o6ytD {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-vaiJvkFNu6 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-vaiJvkFNu6 .banner {
  z-index: 10;
  height: 499px;
}
.cid-vaiJvkFNu6 .banner-wrapper {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}
.cid-vaiJvkFNu6 .bg-banner {
  padding: 15px;
  height: auto!important;
  position: relative;
}
.cid-vaiJvkFNu6 .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-vaiJvkFNu6 .bg-banner h1 {
  margin: 0 !important;
}
.cid-vaiJvkFNu6 .banner h1 {
  font-weight: 700!important;
  font-size: 40px;
}
.cid-vaiJvkFNu6 .banner h1:last-child {
  margin: 0;
}
.cid-vaiJvkFNu6 H1 {
  color: #ffffff;
}
.cid-vaiJvkFNu6 .mbr-text {
  color: #ffffff;
  text-align: justify;
}
.cid-uWPZ5oweYP {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uWPZ5oCU7o {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uWPZ5oCU7o .mbr-fallback-image.disabled {
  display: none;
}
.cid-uWPZ5oCU7o .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uWPZ5oCU7o .timeline-element {
  position: relative;
}
.cid-uWPZ5oCU7o .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uWPZ5oCU7o .iconBackground {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #fb0707;
  top: 30px;
  margin-left: -9px;
  padding: 0;
}
@media (max-width: 767px) {
  .cid-uWPZ5oCU7o .iconBackground {
    left: 15px;
  }
}
@media (min-width: 768px) {
  .cid-uWPZ5oCU7o .iconBackground {
    left: 50%;
  }
}
.cid-uWPZ5oCU7o .row {
  flex-direction: row-reverse;
}
.cid-uWPZ5oCU7o .row:after {
  content: "";
  position: absolute;
  background-color: #fb0707;
  width: 2px;
  top: 50px;
  height: calc(100% - 10px);
}
@media (max-width: 767px) {
  .cid-uWPZ5oCU7o .row:after {
    left: 15px;
  }
}
@media (min-width: 768px) {
  .cid-uWPZ5oCU7o .row:after {
    left: 50%;
  }
}
.cid-uWPZ5oCU7o .row:nth-child(even) .mbr-timeline-date {
  text-align: right;
}
@media (max-width: 767px) {
  .cid-uWPZ5oCU7o .row:nth-child(even) {
    flex-direction: column-reverse;
  }
}
@media (max-width: 767px) {
  .cid-uWPZ5oCU7o .timeline-date-wrapper,
  .cid-uWPZ5oCU7o .timeline-text-wrapper {
    padding: 0rem;
    padding-left: 2rem;
  }
  .cid-uWPZ5oCU7o .mbr-timeline-date {
    text-align: left !important;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uWPZ5oCU7o .timeline-date-wrapper,
  .cid-uWPZ5oCU7o .timeline-text-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uWPZ5oCU7o .timeline-date-wrapper,
  .cid-uWPZ5oCU7o .timeline-text-wrapper {
    padding: 2rem;
  }
}
.cid-uWPZ5oCU7o .mbr-section-title {
  color: #232323;
}
.cid-uWPZ5pfXGt {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-vaiKtw1mw9 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-vaiKtw1mw9 .banner {
  z-index: 10;
  height: 499px;
}
.cid-vaiKtw1mw9 .banner-wrapper {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}
.cid-vaiKtw1mw9 .bg-banner {
  padding: 15px;
  height: auto!important;
  position: relative;
}
.cid-vaiKtw1mw9 .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-vaiKtw1mw9 .bg-banner h1 {
  margin: 0 !important;
}
.cid-vaiKtw1mw9 .banner h1 {
  font-weight: 700!important;
  font-size: 40px;
}
.cid-vaiKtw1mw9 .banner h1:last-child {
  margin: 0;
}
.cid-vaiKtw1mw9 H1 {
  color: #ffffff;
}
.cid-vaiKtw1mw9 .mbr-text {
  color: #ffffff;
  text-align: justify;
}
.cid-uWPZ5pxDHE {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/capture-dcran-2026-01-28.jpg");
}
.cid-uWPZ5pxDHE .mbr-fallback-image.disabled {
  display: none;
}
.cid-uWPZ5pxDHE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uWPZ5pxDHE .bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-uWPZ5pxDHE .bg-facebook:hover {
  background: #0b60cb;
}
.cid-uWPZ5pxDHE .bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-uWPZ5pxDHE .bg-twitter:hover {
  background: #0c85d0;
}
.cid-uWPZ5pxDHE .bg-youtube {
  background: #ff0000;
  color: #ffffff;
}
.cid-uWPZ5pxDHE .bg-youtube:hover {
  background: #cc0000;
}
.cid-uWPZ5pxDHE .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-uWPZ5pxDHE [class^="socicon-"]:before,
.cid-uWPZ5pxDHE [class*=" socicon-"]:before {
  line-height: 55px;
  padding: .6rem;
}
.cid-uWPZ5pxDHE .mbr-section-title,
.cid-uWPZ5pxDHE .social-list {
  color: #ffffff;
}
.cid-vaiKudQuHv {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-vaiKudQuHv .banner {
  z-index: 10;
  height: 499px;
}
.cid-vaiKudQuHv .banner-wrapper {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}
.cid-vaiKudQuHv .bg-banner {
  padding: 15px;
  height: auto!important;
  position: relative;
}
.cid-vaiKudQuHv .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-vaiKudQuHv .bg-banner h1 {
  margin: 0 !important;
}
.cid-vaiKudQuHv .banner h1 {
  font-weight: 700!important;
  font-size: 40px;
}
.cid-vaiKudQuHv .banner h1:last-child {
  margin: 0;
}
.cid-vaiKudQuHv H1 {
  color: #ffffff;
}
.cid-vaiKudQuHv .mbr-text {
  color: #ffffff;
  text-align: justify;
}
.cid-vaHh5R3fwm {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-vaHmku4wFL {
  background-color: #ff9966;
}
.cid-vaHmku4wFL .top {
  fill: #000000;
}
.cid-vaHmlhaExp {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-vaHmlhaExp .banner {
  z-index: 10;
  height: 499px;
}
.cid-vaHmlhaExp .banner-wrapper {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}
.cid-vaHmlhaExp .bg-banner {
  padding: 15px;
  height: auto!important;
  position: relative;
}
.cid-vaHmlhaExp .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-vaHmlhaExp .bg-banner h1 {
  margin: 0 !important;
}
.cid-vaHmlhaExp .banner h1 {
  font-weight: 700!important;
  font-size: 40px;
}
.cid-vaHmlhaExp .banner h1:last-child {
  margin: 0;
}
.cid-vaHmlhaExp H1 {
  color: #ffffff;
}
.cid-vaHmlhaExp .mbr-text {
  color: #ffffff;
  text-align: justify;
}
.cid-vaHmlZ4gJe {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-vaHmlZ4gJe .banner {
  z-index: 10;
  height: 499px;
}
.cid-vaHmlZ4gJe .banner-wrapper {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}
.cid-vaHmlZ4gJe .bg-banner {
  padding: 15px;
  height: auto!important;
  position: relative;
}
.cid-vaHmlZ4gJe .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-vaHmlZ4gJe .bg-banner h1 {
  margin: 0 !important;
}
.cid-vaHmlZ4gJe .banner h1 {
  font-weight: 700!important;
  font-size: 40px;
}
.cid-vaHmlZ4gJe .banner h1:last-child {
  margin: 0;
}
.cid-vaHmlZ4gJe H1 {
  color: #ffffff;
}
.cid-vaHmlZ4gJe .mbr-text {
  color: #ffffff;
  text-align: right;
}
.cid-j0gH8A8sVQ {
  padding-top: 15px;
  padding-bottom: 15px;
  background: linear-gradient(0deg, #fb0707, #fb0707);
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 20;
}
.cid-vaiEwwVbtN {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-vaiEwwVbtN nav.navbar {
  position: fixed;
}
.cid-vaiEwwVbtN .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vaiEwwVbtN .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-vaiEwwVbtN .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-vaiEwwVbtN .dropdown-item:hover,
.cid-vaiEwwVbtN .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-vaiEwwVbtN .dropdown-item:hover span {
  color: white;
}
.cid-vaiEwwVbtN .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vaiEwwVbtN .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vaiEwwVbtN .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vaiEwwVbtN .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vaiEwwVbtN .nav-link {
  position: relative;
}
.cid-vaiEwwVbtN .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-vaiEwwVbtN .container {
    flex-wrap: wrap;
  }
}
.cid-vaiEwwVbtN .container-fluid {
  flex-wrap: nowrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-vaiEwwVbtN .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-vaiEwwVbtN .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vaiEwwVbtN .dropdown-menu,
.cid-vaiEwwVbtN .navbar.opened {
  background: #ff0000 !important;
}
.cid-vaiEwwVbtN .nav-item:focus,
.cid-vaiEwwVbtN .nav-link:focus {
  outline: none;
}
.cid-vaiEwwVbtN .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vaiEwwVbtN .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vaiEwwVbtN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vaiEwwVbtN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vaiEwwVbtN .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vaiEwwVbtN .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vaiEwwVbtN .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ff0000;
}
.cid-vaiEwwVbtN .navbar.opened {
  transition: all 0.3s;
}
.cid-vaiEwwVbtN .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vaiEwwVbtN .navbar .navbar-logo img {
  width: auto;
}
.cid-vaiEwwVbtN .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vaiEwwVbtN .navbar.collapsed {
  justify-content: center;
}
.cid-vaiEwwVbtN .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vaiEwwVbtN .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vaiEwwVbtN .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-vaiEwwVbtN .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vaiEwwVbtN .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vaiEwwVbtN .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-vaiEwwVbtN .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vaiEwwVbtN .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vaiEwwVbtN .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vaiEwwVbtN .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vaiEwwVbtN .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vaiEwwVbtN .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vaiEwwVbtN .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vaiEwwVbtN .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-vaiEwwVbtN .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vaiEwwVbtN .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vaiEwwVbtN .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vaiEwwVbtN .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vaiEwwVbtN .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vaiEwwVbtN .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-vaiEwwVbtN .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-vaiEwwVbtN .navbar.navbar-short {
  min-height: 60px;
}
.cid-vaiEwwVbtN .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vaiEwwVbtN .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-vaiEwwVbtN .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-vaiEwwVbtN .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vaiEwwVbtN .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vaiEwwVbtN .dropdown-item.active,
.cid-vaiEwwVbtN .dropdown-item:active {
  background-color: transparent;
}
.cid-vaiEwwVbtN .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vaiEwwVbtN .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vaiEwwVbtN .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vaiEwwVbtN .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ff0000;
}
.cid-vaiEwwVbtN .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vaiEwwVbtN .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vaiEwwVbtN ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vaiEwwVbtN .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vaiEwwVbtN button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-vaiEwwVbtN button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-vaiEwwVbtN button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vaiEwwVbtN button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vaiEwwVbtN button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vaiEwwVbtN button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vaiEwwVbtN nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vaiEwwVbtN nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vaiEwwVbtN nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vaiEwwVbtN nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vaiEwwVbtN .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-vaiEwwVbtN a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vaiEwwVbtN .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-vaiEwwVbtN .navbar {
    height: 70px;
  }
  .cid-vaiEwwVbtN .navbar.opened {
    height: auto;
  }
  .cid-vaiEwwVbtN .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vaHtfHHqXF {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-vaHtfHHqXF .banner {
  z-index: 10;
  height: 499px;
}
.cid-vaHtfHHqXF .banner-wrapper {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}
.cid-vaHtfHHqXF .bg-banner {
  padding: 15px;
  height: auto!important;
  position: relative;
}
.cid-vaHtfHHqXF .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-vaHtfHHqXF .bg-banner h1 {
  margin: 0 !important;
}
.cid-vaHtfHHqXF .banner h1 {
  font-weight: 700!important;
  font-size: 40px;
}
.cid-vaHtfHHqXF .banner h1:last-child {
  margin: 0;
}
.cid-vaHtfHHqXF H1 {
  color: #ffffff;
}
.cid-vaHtfHHqXF .mbr-text {
  color: #ffffff;
  text-align: justify;
}
.cid-vaHtgFvcH5 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-vaHtgFvcH5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vaHtgFvcH5 .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-vaHtgFvcH5 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-vaHtgFvcH5 .row {
  flex-direction: row-reverse;
}
.cid-vaHtgFvcH5 img {
  width: 100%;
}
.cid-vaHthiAU0T {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-vaHthiAU0T .banner {
  z-index: 10;
  height: 499px;
}
.cid-vaHthiAU0T .banner-wrapper {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}
.cid-vaHthiAU0T .bg-banner {
  padding: 15px;
  height: auto!important;
  position: relative;
}
.cid-vaHthiAU0T .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-vaHthiAU0T .bg-banner h1 {
  margin: 0 !important;
}
.cid-vaHthiAU0T .banner h1 {
  font-weight: 700!important;
  font-size: 40px;
}
.cid-vaHthiAU0T .banner h1:last-child {
  margin: 0;
}
.cid-vaHthiAU0T H1 {
  color: #ffffff;
}
.cid-vaHthiAU0T .mbr-text {
  color: #ffffff;
  text-align: justify;
}
.cid-vaHti2Rdh1 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-vaHtiDAQEp {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-vaHtiDAQEp .banner {
  z-index: 10;
  height: 499px;
}
.cid-vaHtiDAQEp .banner-wrapper {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}
.cid-vaHtiDAQEp .bg-banner {
  padding: 15px;
  height: auto!important;
  position: relative;
}
.cid-vaHtiDAQEp .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-vaHtiDAQEp .bg-banner h1 {
  margin: 0 !important;
}
.cid-vaHtiDAQEp .banner h1 {
  font-weight: 700!important;
  font-size: 40px;
}
.cid-vaHtiDAQEp .banner h1:last-child {
  margin: 0;
}
.cid-vaHtiDAQEp H1 {
  color: #ffffff;
}
.cid-vaHtiDAQEp .mbr-text {
  color: #ffffff;
  text-align: justify;
}
.cid-uWQ1J98kuA {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-uWQ1J9foJS {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uWQ1J9foJS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uWQ1J9foJS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uWQ1J9foJS .timeline-element {
  position: relative;
}
.cid-uWQ1J9foJS .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uWQ1J9foJS .iconBackground {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #6592e6;
  top: 30px;
  margin-left: -9px;
  padding: 0;
}
@media (max-width: 767px) {
  .cid-uWQ1J9foJS .iconBackground {
    left: 15px;
  }
}
@media (min-width: 768px) {
  .cid-uWQ1J9foJS .iconBackground {
    left: 50%;
  }
}
.cid-uWQ1J9foJS .row {
  flex-direction: row-reverse;
}
.cid-uWQ1J9foJS .row:after {
  content: "";
  position: absolute;
  background-color: #6592e6;
  width: 2px;
  top: 50px;
  height: calc(100% - 10px);
}
@media (max-width: 767px) {
  .cid-uWQ1J9foJS .row:after {
    left: 15px;
  }
}
@media (min-width: 768px) {
  .cid-uWQ1J9foJS .row:after {
    left: 50%;
  }
}
.cid-uWQ1J9foJS .row:nth-child(even) .mbr-timeline-date {
  text-align: right;
}
@media (max-width: 767px) {
  .cid-uWQ1J9foJS .row:nth-child(even) {
    flex-direction: column-reverse;
  }
}
@media (max-width: 767px) {
  .cid-uWQ1J9foJS .timeline-date-wrapper,
  .cid-uWQ1J9foJS .timeline-text-wrapper {
    padding: 0rem;
    padding-left: 2rem;
  }
  .cid-uWQ1J9foJS .mbr-timeline-date {
    text-align: left !important;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uWQ1J9foJS .timeline-date-wrapper,
  .cid-uWQ1J9foJS .timeline-text-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uWQ1J9foJS .timeline-date-wrapper,
  .cid-uWQ1J9foJS .timeline-text-wrapper {
    padding: 2rem;
  }
}
.cid-vaHtOWS2Oi {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-vaHu5QTwEN {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-vaHu5QTwEN .banner {
  z-index: 10;
  height: 499px;
}
.cid-vaHu5QTwEN .banner-wrapper {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}
.cid-vaHu5QTwEN .bg-banner {
  padding: 15px;
  height: auto!important;
  position: relative;
}
.cid-vaHu5QTwEN .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-vaHu5QTwEN .bg-banner h1 {
  margin: 0 !important;
}
.cid-vaHu5QTwEN .banner h1 {
  font-weight: 700!important;
  font-size: 40px;
}
.cid-vaHu5QTwEN .banner h1:last-child {
  margin: 0;
}
.cid-vaHu5QTwEN H1 {
  color: #ffffff;
}
.cid-vaHu5QTwEN .mbr-text {
  color: #ffffff;
  text-align: justify;
}
.cid-vaHu6QW9rB {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/capture-dcran-2026-01-28.jpg");
}
.cid-vaHu6QW9rB .mbr-fallback-image.disabled {
  display: none;
}
.cid-vaHu6QW9rB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vaHu6QW9rB .bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-vaHu6QW9rB .bg-facebook:hover {
  background: #0b60cb;
}
.cid-vaHu6QW9rB .bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-vaHu6QW9rB .bg-twitter:hover {
  background: #0c85d0;
}
.cid-vaHu6QW9rB .bg-youtube {
  background: #ff0000;
  color: #ffffff;
}
.cid-vaHu6QW9rB .bg-youtube:hover {
  background: #cc0000;
}
.cid-vaHu6QW9rB .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-vaHu6QW9rB [class^="socicon-"]:before,
.cid-vaHu6QW9rB [class*=" socicon-"]:before {
  line-height: 55px;
  padding: .6rem;
}
.cid-vaHu6QW9rB .mbr-section-title,
.cid-vaHu6QW9rB .social-list {
  color: #ffffff;
}
.cid-vaHu7sEKuF {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-vaHu7sEKuF .banner {
  z-index: 10;
  height: 499px;
}
.cid-vaHu7sEKuF .banner-wrapper {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}
.cid-vaHu7sEKuF .bg-banner {
  padding: 15px;
  height: auto!important;
  position: relative;
}
.cid-vaHu7sEKuF .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-vaHu7sEKuF .bg-banner h1 {
  margin: 0 !important;
}
.cid-vaHu7sEKuF .banner h1 {
  font-weight: 700!important;
  font-size: 40px;
}
.cid-vaHu7sEKuF .banner h1:last-child {
  margin: 0;
}
.cid-vaHu7sEKuF H1 {
  color: #ffffff;
}
.cid-vaHu7sEKuF .mbr-text {
  color: #ffffff;
  text-align: justify;
}
.cid-vaHu7ZKNdr {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-vaHu98Fddu {
  background-color: #ff9966;
}
.cid-vaHu98Fddu .top {
  fill: #000000;
}
.cid-vaHueLhnUO {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-vaHueLhnUO .banner {
  z-index: 10;
  height: 499px;
}
.cid-vaHueLhnUO .banner-wrapper {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}
.cid-vaHueLhnUO .bg-banner {
  padding: 15px;
  height: auto!important;
  position: relative;
}
.cid-vaHueLhnUO .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-vaHueLhnUO .bg-banner h1 {
  margin: 0 !important;
}
.cid-vaHueLhnUO .banner h1 {
  font-weight: 700!important;
  font-size: 40px;
}
.cid-vaHueLhnUO .banner h1:last-child {
  margin: 0;
}
.cid-vaHueLhnUO H1 {
  color: #ffffff;
}
.cid-vaHueLhnUO .mbr-text {
  color: #ffffff;
  text-align: justify;
}
.cid-vaHuaZeRkq {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-vaHuaZeRkq .banner {
  z-index: 10;
  height: 499px;
}
.cid-vaHuaZeRkq .banner-wrapper {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}
.cid-vaHuaZeRkq .bg-banner {
  padding: 15px;
  height: auto!important;
  position: relative;
}
.cid-vaHuaZeRkq .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-vaHuaZeRkq .bg-banner h1 {
  margin: 0 !important;
}
.cid-vaHuaZeRkq .banner h1 {
  font-weight: 700!important;
  font-size: 40px;
}
.cid-vaHuaZeRkq .banner h1:last-child {
  margin: 0;
}
.cid-vaHuaZeRkq H1 {
  color: #ffffff;
}
.cid-vaHuaZeRkq .mbr-text {
  color: #ffffff;
  text-align: right;
}
.cid-BPIyJ1Skwi {
  padding-top: 15px;
  padding-bottom: 15px;
  background: linear-gradient(0deg, #fb0707, #fb0707);
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 20;
}
.cid-vaiEwwVbtN {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-vaiEwwVbtN nav.navbar {
  position: fixed;
}
.cid-vaiEwwVbtN .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vaiEwwVbtN .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-vaiEwwVbtN .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-vaiEwwVbtN .dropdown-item:hover,
.cid-vaiEwwVbtN .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-vaiEwwVbtN .dropdown-item:hover span {
  color: white;
}
.cid-vaiEwwVbtN .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vaiEwwVbtN .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vaiEwwVbtN .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vaiEwwVbtN .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vaiEwwVbtN .nav-link {
  position: relative;
}
.cid-vaiEwwVbtN .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-vaiEwwVbtN .container {
    flex-wrap: wrap;
  }
}
.cid-vaiEwwVbtN .container-fluid {
  flex-wrap: nowrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-vaiEwwVbtN .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-vaiEwwVbtN .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vaiEwwVbtN .dropdown-menu,
.cid-vaiEwwVbtN .navbar.opened {
  background: #ff0000 !important;
}
.cid-vaiEwwVbtN .nav-item:focus,
.cid-vaiEwwVbtN .nav-link:focus {
  outline: none;
}
.cid-vaiEwwVbtN .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vaiEwwVbtN .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vaiEwwVbtN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vaiEwwVbtN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vaiEwwVbtN .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vaiEwwVbtN .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vaiEwwVbtN .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ff0000;
}
.cid-vaiEwwVbtN .navbar.opened {
  transition: all 0.3s;
}
.cid-vaiEwwVbtN .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vaiEwwVbtN .navbar .navbar-logo img {
  width: auto;
}
.cid-vaiEwwVbtN .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vaiEwwVbtN .navbar.collapsed {
  justify-content: center;
}
.cid-vaiEwwVbtN .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vaiEwwVbtN .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vaiEwwVbtN .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-vaiEwwVbtN .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vaiEwwVbtN .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vaiEwwVbtN .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-vaiEwwVbtN .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vaiEwwVbtN .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vaiEwwVbtN .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vaiEwwVbtN .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vaiEwwVbtN .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vaiEwwVbtN .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vaiEwwVbtN .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vaiEwwVbtN .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-vaiEwwVbtN .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vaiEwwVbtN .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vaiEwwVbtN .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vaiEwwVbtN .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vaiEwwVbtN .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vaiEwwVbtN .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-vaiEwwVbtN .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-vaiEwwVbtN .navbar.navbar-short {
  min-height: 60px;
}
.cid-vaiEwwVbtN .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vaiEwwVbtN .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-vaiEwwVbtN .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-vaiEwwVbtN .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vaiEwwVbtN .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vaiEwwVbtN .dropdown-item.active,
.cid-vaiEwwVbtN .dropdown-item:active {
  background-color: transparent;
}
.cid-vaiEwwVbtN .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vaiEwwVbtN .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vaiEwwVbtN .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vaiEwwVbtN .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ff0000;
}
.cid-vaiEwwVbtN .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vaiEwwVbtN .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vaiEwwVbtN ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vaiEwwVbtN .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vaiEwwVbtN button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-vaiEwwVbtN button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-vaiEwwVbtN button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vaiEwwVbtN button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vaiEwwVbtN button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vaiEwwVbtN button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vaiEwwVbtN nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vaiEwwVbtN nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vaiEwwVbtN nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vaiEwwVbtN nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vaiEwwVbtN .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-vaiEwwVbtN a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vaiEwwVbtN .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-vaiEwwVbtN .navbar {
    height: 70px;
  }
  .cid-vaiEwwVbtN .navbar.opened {
    height: auto;
  }
  .cid-vaiEwwVbtN .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vaL6bVeb28 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-vaL6bVeb28 .banner {
  z-index: 10;
  height: 499px;
}
.cid-vaL6bVeb28 .banner-wrapper {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}
.cid-vaL6bVeb28 .bg-banner {
  padding: 15px;
  height: auto!important;
  position: relative;
}
.cid-vaL6bVeb28 .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-vaL6bVeb28 .bg-banner h1 {
  margin: 0 !important;
}
.cid-vaL6bVeb28 .banner h1 {
  font-weight: 700!important;
  font-size: 40px;
}
.cid-vaL6bVeb28 .banner h1:last-child {
  margin: 0;
}
.cid-vaL6bVeb28 H1 {
  color: #ffffff;
}
.cid-vaL6bVeb28 .mbr-text {
  color: #ffffff;
  text-align: justify;
}
.cid-uWQ53SvSZ3 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uWQ53SvSZ3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uWQ53SvSZ3 .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-uWQ53SvSZ3 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uWQ53SvSZ3 .row {
  flex-direction: row-reverse;
}
.cid-uWQ53SvSZ3 img {
  width: 100%;
}
.cid-vaL6d66hyK {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-vaL6d66hyK .banner {
  z-index: 10;
  height: 499px;
}
.cid-vaL6d66hyK .banner-wrapper {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}
.cid-vaL6d66hyK .bg-banner {
  padding: 15px;
  height: auto!important;
  position: relative;
}
.cid-vaL6d66hyK .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-vaL6d66hyK .bg-banner h1 {
  margin: 0 !important;
}
.cid-vaL6d66hyK .banner h1 {
  font-weight: 700!important;
  font-size: 40px;
}
.cid-vaL6d66hyK .banner h1:last-child {
  margin: 0;
}
.cid-vaL6d66hyK H1 {
  color: #ffffff;
}
.cid-vaL6d66hyK .mbr-text {
  color: #ffffff;
  text-align: justify;
}
.cid-vaL6e9KL8e {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-vaL6gJq9fq {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-vaL6gJq9fq .banner {
  z-index: 10;
  height: 499px;
}
.cid-vaL6gJq9fq .banner-wrapper {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}
.cid-vaL6gJq9fq .bg-banner {
  padding: 15px;
  height: auto!important;
  position: relative;
}
.cid-vaL6gJq9fq .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-vaL6gJq9fq .bg-banner h1 {
  margin: 0 !important;
}
.cid-vaL6gJq9fq .banner h1 {
  font-weight: 700!important;
  font-size: 40px;
}
.cid-vaL6gJq9fq .banner h1:last-child {
  margin: 0;
}
.cid-vaL6gJq9fq H1 {
  color: #ffffff;
}
.cid-vaL6gJq9fq .mbr-text {
  color: #ffffff;
  text-align: justify;
}
.cid-vaL6hlBgc5 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uWQ53TA8DA {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uWQ53TA8DA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uWQ53TA8DA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uWQ53TA8DA .timeline-element {
  position: relative;
}
.cid-uWQ53TA8DA .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uWQ53TA8DA .iconBackground {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #6592e6;
  top: 30px;
  margin-left: -9px;
  padding: 0;
}
@media (max-width: 767px) {
  .cid-uWQ53TA8DA .iconBackground {
    left: 15px;
  }
}
@media (min-width: 768px) {
  .cid-uWQ53TA8DA .iconBackground {
    left: 50%;
  }
}
.cid-uWQ53TA8DA .row {
  flex-direction: row-reverse;
}
.cid-uWQ53TA8DA .row:after {
  content: "";
  position: absolute;
  background-color: #6592e6;
  width: 2px;
  top: 50px;
  height: calc(100% - 10px);
}
@media (max-width: 767px) {
  .cid-uWQ53TA8DA .row:after {
    left: 15px;
  }
}
@media (min-width: 768px) {
  .cid-uWQ53TA8DA .row:after {
    left: 50%;
  }
}
.cid-uWQ53TA8DA .row:nth-child(even) .mbr-timeline-date {
  text-align: right;
}
@media (max-width: 767px) {
  .cid-uWQ53TA8DA .row:nth-child(even) {
    flex-direction: column-reverse;
  }
}
@media (max-width: 767px) {
  .cid-uWQ53TA8DA .timeline-date-wrapper,
  .cid-uWQ53TA8DA .timeline-text-wrapper {
    padding: 0rem;
    padding-left: 2rem;
  }
  .cid-uWQ53TA8DA .mbr-timeline-date {
    text-align: left !important;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uWQ53TA8DA .timeline-date-wrapper,
  .cid-uWQ53TA8DA .timeline-text-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uWQ53TA8DA .timeline-date-wrapper,
  .cid-uWQ53TA8DA .timeline-text-wrapper {
    padding: 2rem;
  }
}
.cid-vaL6jK7fOP {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-vaL6CAGqRS {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-vaL6CAGqRS .banner {
  z-index: 10;
  height: 499px;
}
.cid-vaL6CAGqRS .banner-wrapper {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}
.cid-vaL6CAGqRS .bg-banner {
  padding: 15px;
  height: auto!important;
  position: relative;
}
.cid-vaL6CAGqRS .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-vaL6CAGqRS .bg-banner h1 {
  margin: 0 !important;
}
.cid-vaL6CAGqRS .banner h1 {
  font-weight: 700!important;
  font-size: 40px;
}
.cid-vaL6CAGqRS .banner h1:last-child {
  margin: 0;
}
.cid-vaL6CAGqRS H1 {
  color: #ffffff;
}
.cid-vaL6CAGqRS .mbr-text {
  color: #ffffff;
  text-align: justify;
}
.cid-vaL6DfTQvY {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/capture-dcran-2026-01-28.jpg");
}
.cid-vaL6DfTQvY .mbr-fallback-image.disabled {
  display: none;
}
.cid-vaL6DfTQvY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vaL6DfTQvY .bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-vaL6DfTQvY .bg-facebook:hover {
  background: #0b60cb;
}
.cid-vaL6DfTQvY .bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-vaL6DfTQvY .bg-twitter:hover {
  background: #0c85d0;
}
.cid-vaL6DfTQvY .bg-youtube {
  background: #ff0000;
  color: #ffffff;
}
.cid-vaL6DfTQvY .bg-youtube:hover {
  background: #cc0000;
}
.cid-vaL6DfTQvY .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-vaL6DfTQvY [class^="socicon-"]:before,
.cid-vaL6DfTQvY [class*=" socicon-"]:before {
  line-height: 55px;
  padding: .6rem;
}
.cid-vaL6DfTQvY .mbr-section-title,
.cid-vaL6DfTQvY .social-list {
  color: #ffffff;
}
.cid-vaL6E2yIBd {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-vaL6E2yIBd .banner {
  z-index: 10;
  height: 499px;
}
.cid-vaL6E2yIBd .banner-wrapper {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}
.cid-vaL6E2yIBd .bg-banner {
  padding: 15px;
  height: auto!important;
  position: relative;
}
.cid-vaL6E2yIBd .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-vaL6E2yIBd .bg-banner h1 {
  margin: 0 !important;
}
.cid-vaL6E2yIBd .banner h1 {
  font-weight: 700!important;
  font-size: 40px;
}
.cid-vaL6E2yIBd .banner h1:last-child {
  margin: 0;
}
.cid-vaL6E2yIBd H1 {
  color: #ffffff;
}
.cid-vaL6E2yIBd .mbr-text {
  color: #ffffff;
  text-align: justify;
}
.cid-vaL6EAUSi2 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-vaL6FhMdC2 {
  background-color: #ff9966;
}
.cid-vaL6FhMdC2 .top {
  fill: #000000;
}
.cid-vaL6FR7a0x {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-vaL6FR7a0x .banner {
  z-index: 10;
  height: 499px;
}
.cid-vaL6FR7a0x .banner-wrapper {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}
.cid-vaL6FR7a0x .bg-banner {
  padding: 15px;
  height: auto!important;
  position: relative;
}
.cid-vaL6FR7a0x .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-vaL6FR7a0x .bg-banner h1 {
  margin: 0 !important;
}
.cid-vaL6FR7a0x .banner h1 {
  font-weight: 700!important;
  font-size: 40px;
}
.cid-vaL6FR7a0x .banner h1:last-child {
  margin: 0;
}
.cid-vaL6FR7a0x H1 {
  color: #ffffff;
}
.cid-vaL6FR7a0x .mbr-text {
  color: #ffffff;
  text-align: justify;
}
.cid-vaL6GmSIlb {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-vaL6GmSIlb .banner {
  z-index: 10;
  height: 499px;
}
.cid-vaL6GmSIlb .banner-wrapper {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}
.cid-vaL6GmSIlb .bg-banner {
  padding: 15px;
  height: auto!important;
  position: relative;
}
.cid-vaL6GmSIlb .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-vaL6GmSIlb .bg-banner h1 {
  margin: 0 !important;
}
.cid-vaL6GmSIlb .banner h1 {
  font-weight: 700!important;
  font-size: 40px;
}
.cid-vaL6GmSIlb .banner h1:last-child {
  margin: 0;
}
.cid-vaL6GmSIlb H1 {
  color: #ffffff;
}
.cid-vaL6GmSIlb .mbr-text {
  color: #ffffff;
  text-align: right;
}
.cid-7t51esmO1Y {
  padding-top: 15px;
  padding-bottom: 15px;
  background: linear-gradient(0deg, #fb0707, #fb0707);
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 20;
}
.cid-vaiEwwVbtN {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-vaiEwwVbtN nav.navbar {
  position: fixed;
}
.cid-vaiEwwVbtN .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vaiEwwVbtN .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-vaiEwwVbtN .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-vaiEwwVbtN .dropdown-item:hover,
.cid-vaiEwwVbtN .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-vaiEwwVbtN .dropdown-item:hover span {
  color: white;
}
.cid-vaiEwwVbtN .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vaiEwwVbtN .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vaiEwwVbtN .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vaiEwwVbtN .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vaiEwwVbtN .nav-link {
  position: relative;
}
.cid-vaiEwwVbtN .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-vaiEwwVbtN .container {
    flex-wrap: wrap;
  }
}
.cid-vaiEwwVbtN .container-fluid {
  flex-wrap: nowrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-vaiEwwVbtN .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-vaiEwwVbtN .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vaiEwwVbtN .dropdown-menu,
.cid-vaiEwwVbtN .navbar.opened {
  background: #ff0000 !important;
}
.cid-vaiEwwVbtN .nav-item:focus,
.cid-vaiEwwVbtN .nav-link:focus {
  outline: none;
}
.cid-vaiEwwVbtN .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vaiEwwVbtN .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vaiEwwVbtN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vaiEwwVbtN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vaiEwwVbtN .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vaiEwwVbtN .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vaiEwwVbtN .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ff0000;
}
.cid-vaiEwwVbtN .navbar.opened {
  transition: all 0.3s;
}
.cid-vaiEwwVbtN .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vaiEwwVbtN .navbar .navbar-logo img {
  width: auto;
}
.cid-vaiEwwVbtN .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vaiEwwVbtN .navbar.collapsed {
  justify-content: center;
}
.cid-vaiEwwVbtN .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vaiEwwVbtN .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vaiEwwVbtN .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-vaiEwwVbtN .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vaiEwwVbtN .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vaiEwwVbtN .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-vaiEwwVbtN .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vaiEwwVbtN .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vaiEwwVbtN .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vaiEwwVbtN .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vaiEwwVbtN .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vaiEwwVbtN .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vaiEwwVbtN .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vaiEwwVbtN .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-vaiEwwVbtN .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vaiEwwVbtN .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vaiEwwVbtN .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vaiEwwVbtN .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vaiEwwVbtN .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vaiEwwVbtN .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-vaiEwwVbtN .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-vaiEwwVbtN .navbar.navbar-short {
  min-height: 60px;
}
.cid-vaiEwwVbtN .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vaiEwwVbtN .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-vaiEwwVbtN .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-vaiEwwVbtN .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vaiEwwVbtN .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vaiEwwVbtN .dropdown-item.active,
.cid-vaiEwwVbtN .dropdown-item:active {
  background-color: transparent;
}
.cid-vaiEwwVbtN .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vaiEwwVbtN .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vaiEwwVbtN .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vaiEwwVbtN .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ff0000;
}
.cid-vaiEwwVbtN .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vaiEwwVbtN .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vaiEwwVbtN ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vaiEwwVbtN .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vaiEwwVbtN button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-vaiEwwVbtN button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-vaiEwwVbtN button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vaiEwwVbtN button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vaiEwwVbtN button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vaiEwwVbtN button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vaiEwwVbtN nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vaiEwwVbtN nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vaiEwwVbtN nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vaiEwwVbtN nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vaiEwwVbtN .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-vaiEwwVbtN a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vaiEwwVbtN .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-vaiEwwVbtN .navbar {
    height: 70px;
  }
  .cid-vaiEwwVbtN .navbar.opened {
    height: auto;
  }
  .cid-vaiEwwVbtN .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vaL7ev9kRT {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-vaL7ev9kRT .banner {
  z-index: 10;
  height: 499px;
}
.cid-vaL7ev9kRT .banner-wrapper {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}
.cid-vaL7ev9kRT .bg-banner {
  padding: 15px;
  height: auto!important;
  position: relative;
}
.cid-vaL7ev9kRT .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-vaL7ev9kRT .bg-banner h1 {
  margin: 0 !important;
}
.cid-vaL7ev9kRT .banner h1 {
  font-weight: 700!important;
  font-size: 40px;
}
.cid-vaL7ev9kRT .banner h1:last-child {
  margin: 0;
}
.cid-vaL7ev9kRT H1 {
  color: #ffffff;
}
.cid-vaL7ev9kRT .mbr-text {
  color: #ffffff;
  text-align: justify;
}
.cid-uWQ6UpTC7I {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uWQ6UpTC7I .mbr-fallback-image.disabled {
  display: none;
}
.cid-uWQ6UpTC7I .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-uWQ6UpTC7I .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uWQ6UpTC7I .row {
  flex-direction: row-reverse;
}
.cid-uWQ6UpTC7I img {
  width: 100%;
}
.cid-vaL7fmGJs1 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-vaL7fmGJs1 .banner {
  z-index: 10;
  height: 499px;
}
.cid-vaL7fmGJs1 .banner-wrapper {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}
.cid-vaL7fmGJs1 .bg-banner {
  padding: 15px;
  height: auto!important;
  position: relative;
}
.cid-vaL7fmGJs1 .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-vaL7fmGJs1 .bg-banner h1 {
  margin: 0 !important;
}
.cid-vaL7fmGJs1 .banner h1 {
  font-weight: 700!important;
  font-size: 40px;
}
.cid-vaL7fmGJs1 .banner h1:last-child {
  margin: 0;
}
.cid-vaL7fmGJs1 H1 {
  color: #ffffff;
}
.cid-vaL7fmGJs1 .mbr-text {
  color: #ffffff;
  text-align: justify;
}
.cid-vaL7gvMBBv {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-vaL7hzEyab {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-vaL7hzEyab .banner {
  z-index: 10;
  height: 499px;
}
.cid-vaL7hzEyab .banner-wrapper {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}
.cid-vaL7hzEyab .bg-banner {
  padding: 15px;
  height: auto!important;
  position: relative;
}
.cid-vaL7hzEyab .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-vaL7hzEyab .bg-banner h1 {
  margin: 0 !important;
}
.cid-vaL7hzEyab .banner h1 {
  font-weight: 700!important;
  font-size: 40px;
}
.cid-vaL7hzEyab .banner h1:last-child {
  margin: 0;
}
.cid-vaL7hzEyab H1 {
  color: #ffffff;
}
.cid-vaL7hzEyab .mbr-text {
  color: #ffffff;
  text-align: justify;
}
.cid-vaL7iec10g {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uWQ6Uqolyj {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uWQ6Uqolyj .mbr-fallback-image.disabled {
  display: none;
}
.cid-uWQ6Uqolyj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uWQ6Uqolyj .timeline-element {
  position: relative;
}
.cid-uWQ6Uqolyj .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uWQ6Uqolyj .iconBackground {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #6592e6;
  top: 30px;
  margin-left: -9px;
  padding: 0;
}
@media (max-width: 767px) {
  .cid-uWQ6Uqolyj .iconBackground {
    left: 15px;
  }
}
@media (min-width: 768px) {
  .cid-uWQ6Uqolyj .iconBackground {
    left: 50%;
  }
}
.cid-uWQ6Uqolyj .row {
  flex-direction: row-reverse;
}
.cid-uWQ6Uqolyj .row:after {
  content: "";
  position: absolute;
  background-color: #6592e6;
  width: 2px;
  top: 50px;
  height: calc(100% - 10px);
}
@media (max-width: 767px) {
  .cid-uWQ6Uqolyj .row:after {
    left: 15px;
  }
}
@media (min-width: 768px) {
  .cid-uWQ6Uqolyj .row:after {
    left: 50%;
  }
}
.cid-uWQ6Uqolyj .row:nth-child(even) .mbr-timeline-date {
  text-align: right;
}
@media (max-width: 767px) {
  .cid-uWQ6Uqolyj .row:nth-child(even) {
    flex-direction: column-reverse;
  }
}
@media (max-width: 767px) {
  .cid-uWQ6Uqolyj .timeline-date-wrapper,
  .cid-uWQ6Uqolyj .timeline-text-wrapper {
    padding: 0rem;
    padding-left: 2rem;
  }
  .cid-uWQ6Uqolyj .mbr-timeline-date {
    text-align: left !important;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uWQ6Uqolyj .timeline-date-wrapper,
  .cid-uWQ6Uqolyj .timeline-text-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uWQ6Uqolyj .timeline-date-wrapper,
  .cid-uWQ6Uqolyj .timeline-text-wrapper {
    padding: 2rem;
  }
}
.cid-vaL7tXkYmV {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-vaL7K5jfNp {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-vaL7K5jfNp .banner {
  z-index: 10;
  height: 499px;
}
.cid-vaL7K5jfNp .banner-wrapper {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}
.cid-vaL7K5jfNp .bg-banner {
  padding: 15px;
  height: auto!important;
  position: relative;
}
.cid-vaL7K5jfNp .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-vaL7K5jfNp .bg-banner h1 {
  margin: 0 !important;
}
.cid-vaL7K5jfNp .banner h1 {
  font-weight: 700!important;
  font-size: 40px;
}
.cid-vaL7K5jfNp .banner h1:last-child {
  margin: 0;
}
.cid-vaL7K5jfNp H1 {
  color: #ffffff;
}
.cid-vaL7K5jfNp .mbr-text {
  color: #ffffff;
  text-align: justify;
}
.cid-vaL7L7WjSW {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/capture-dcran-2026-01-28.jpg");
}
.cid-vaL7L7WjSW .mbr-fallback-image.disabled {
  display: none;
}
.cid-vaL7L7WjSW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vaL7L7WjSW .bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-vaL7L7WjSW .bg-facebook:hover {
  background: #0b60cb;
}
.cid-vaL7L7WjSW .bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-vaL7L7WjSW .bg-twitter:hover {
  background: #0c85d0;
}
.cid-vaL7L7WjSW .bg-youtube {
  background: #ff0000;
  color: #ffffff;
}
.cid-vaL7L7WjSW .bg-youtube:hover {
  background: #cc0000;
}
.cid-vaL7L7WjSW .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-vaL7L7WjSW [class^="socicon-"]:before,
.cid-vaL7L7WjSW [class*=" socicon-"]:before {
  line-height: 55px;
  padding: .6rem;
}
.cid-vaL7L7WjSW .mbr-section-title,
.cid-vaL7L7WjSW .social-list {
  color: #ffffff;
}
.cid-vaL7LLdfuS {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-vaL7LLdfuS .banner {
  z-index: 10;
  height: 499px;
}
.cid-vaL7LLdfuS .banner-wrapper {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}
.cid-vaL7LLdfuS .bg-banner {
  padding: 15px;
  height: auto!important;
  position: relative;
}
.cid-vaL7LLdfuS .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-vaL7LLdfuS .bg-banner h1 {
  margin: 0 !important;
}
.cid-vaL7LLdfuS .banner h1 {
  font-weight: 700!important;
  font-size: 40px;
}
.cid-vaL7LLdfuS .banner h1:last-child {
  margin: 0;
}
.cid-vaL7LLdfuS H1 {
  color: #ffffff;
}
.cid-vaL7LLdfuS .mbr-text {
  color: #ffffff;
  text-align: justify;
}
.cid-vaL7MTLYRI {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-vaL7NPHyxy {
  background-color: #ff9966;
}
.cid-vaL7NPHyxy .top {
  fill: #000000;
}
.cid-vaL7OvxJij {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-vaL7OvxJij .banner {
  z-index: 10;
  height: 499px;
}
.cid-vaL7OvxJij .banner-wrapper {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}
.cid-vaL7OvxJij .bg-banner {
  padding: 15px;
  height: auto!important;
  position: relative;
}
.cid-vaL7OvxJij .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-vaL7OvxJij .bg-banner h1 {
  margin: 0 !important;
}
.cid-vaL7OvxJij .banner h1 {
  font-weight: 700!important;
  font-size: 40px;
}
.cid-vaL7OvxJij .banner h1:last-child {
  margin: 0;
}
.cid-vaL7OvxJij H1 {
  color: #ffffff;
}
.cid-vaL7OvxJij .mbr-text {
  color: #ffffff;
  text-align: justify;
}
.cid-vaL7ParlOg {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-vaL7ParlOg .banner {
  z-index: 10;
  height: 499px;
}
.cid-vaL7ParlOg .banner-wrapper {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}
.cid-vaL7ParlOg .bg-banner {
  padding: 15px;
  height: auto!important;
  position: relative;
}
.cid-vaL7ParlOg .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-vaL7ParlOg .bg-banner h1 {
  margin: 0 !important;
}
.cid-vaL7ParlOg .banner h1 {
  font-weight: 700!important;
  font-size: 40px;
}
.cid-vaL7ParlOg .banner h1:last-child {
  margin: 0;
}
.cid-vaL7ParlOg H1 {
  color: #ffffff;
}
.cid-vaL7ParlOg .mbr-text {
  color: #ffffff;
  text-align: right;
}
.cid-E61OdoAWNq {
  padding-top: 15px;
  padding-bottom: 15px;
  background: linear-gradient(0deg, #fb0707, #fb0707);
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 20;
}
.cid-vaiEwwVbtN {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-vaiEwwVbtN nav.navbar {
  position: fixed;
}
.cid-vaiEwwVbtN .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vaiEwwVbtN .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-vaiEwwVbtN .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-vaiEwwVbtN .dropdown-item:hover,
.cid-vaiEwwVbtN .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-vaiEwwVbtN .dropdown-item:hover span {
  color: white;
}
.cid-vaiEwwVbtN .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vaiEwwVbtN .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vaiEwwVbtN .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vaiEwwVbtN .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vaiEwwVbtN .nav-link {
  position: relative;
}
.cid-vaiEwwVbtN .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-vaiEwwVbtN .container {
    flex-wrap: wrap;
  }
}
.cid-vaiEwwVbtN .container-fluid {
  flex-wrap: nowrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-vaiEwwVbtN .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-vaiEwwVbtN .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vaiEwwVbtN .dropdown-menu,
.cid-vaiEwwVbtN .navbar.opened {
  background: #ff0000 !important;
}
.cid-vaiEwwVbtN .nav-item:focus,
.cid-vaiEwwVbtN .nav-link:focus {
  outline: none;
}
.cid-vaiEwwVbtN .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vaiEwwVbtN .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vaiEwwVbtN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vaiEwwVbtN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vaiEwwVbtN .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vaiEwwVbtN .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vaiEwwVbtN .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ff0000;
}
.cid-vaiEwwVbtN .navbar.opened {
  transition: all 0.3s;
}
.cid-vaiEwwVbtN .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vaiEwwVbtN .navbar .navbar-logo img {
  width: auto;
}
.cid-vaiEwwVbtN .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vaiEwwVbtN .navbar.collapsed {
  justify-content: center;
}
.cid-vaiEwwVbtN .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vaiEwwVbtN .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vaiEwwVbtN .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-vaiEwwVbtN .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vaiEwwVbtN .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vaiEwwVbtN .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-vaiEwwVbtN .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vaiEwwVbtN .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vaiEwwVbtN .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vaiEwwVbtN .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vaiEwwVbtN .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vaiEwwVbtN .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vaiEwwVbtN .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vaiEwwVbtN .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-vaiEwwVbtN .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vaiEwwVbtN .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vaiEwwVbtN .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vaiEwwVbtN .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vaiEwwVbtN .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vaiEwwVbtN .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-vaiEwwVbtN .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-vaiEwwVbtN .navbar.navbar-short {
  min-height: 60px;
}
.cid-vaiEwwVbtN .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vaiEwwVbtN .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-vaiEwwVbtN .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-vaiEwwVbtN .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vaiEwwVbtN .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vaiEwwVbtN .dropdown-item.active,
.cid-vaiEwwVbtN .dropdown-item:active {
  background-color: transparent;
}
.cid-vaiEwwVbtN .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vaiEwwVbtN .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vaiEwwVbtN .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vaiEwwVbtN .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ff0000;
}
.cid-vaiEwwVbtN .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vaiEwwVbtN .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vaiEwwVbtN ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vaiEwwVbtN .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vaiEwwVbtN button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-vaiEwwVbtN button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-vaiEwwVbtN button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vaiEwwVbtN button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vaiEwwVbtN button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vaiEwwVbtN button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vaiEwwVbtN nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vaiEwwVbtN nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vaiEwwVbtN nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vaiEwwVbtN nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vaiEwwVbtN .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-vaiEwwVbtN a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vaiEwwVbtN .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-vaiEwwVbtN .navbar {
    height: 70px;
  }
  .cid-vaiEwwVbtN .navbar.opened {
    height: auto;
  }
  .cid-vaiEwwVbtN .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vaL8Bz1HaO {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-vaL8Bz1HaO .banner {
  z-index: 10;
  height: 499px;
}
.cid-vaL8Bz1HaO .banner-wrapper {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}
.cid-vaL8Bz1HaO .bg-banner {
  padding: 15px;
  height: auto!important;
  position: relative;
}
.cid-vaL8Bz1HaO .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-vaL8Bz1HaO .bg-banner h1 {
  margin: 0 !important;
}
.cid-vaL8Bz1HaO .banner h1 {
  font-weight: 700!important;
  font-size: 40px;
}
.cid-vaL8Bz1HaO .banner h1:last-child {
  margin: 0;
}
.cid-vaL8Bz1HaO H1 {
  color: #ffffff;
}
.cid-vaL8Bz1HaO .mbr-text {
  color: #ffffff;
  text-align: justify;
}
.cid-uWQaHf8a0E {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uWQaHf8a0E .mbr-fallback-image.disabled {
  display: none;
}
.cid-uWQaHf8a0E .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-uWQaHf8a0E .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uWQaHf8a0E .row {
  flex-direction: row-reverse;
}
.cid-uWQaHf8a0E img {
  width: 100%;
}
.cid-vaL8D6vths {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-vaL8D6vths .banner {
  z-index: 10;
  height: 499px;
}
.cid-vaL8D6vths .banner-wrapper {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}
.cid-vaL8D6vths .bg-banner {
  padding: 15px;
  height: auto!important;
  position: relative;
}
.cid-vaL8D6vths .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-vaL8D6vths .bg-banner h1 {
  margin: 0 !important;
}
.cid-vaL8D6vths .banner h1 {
  font-weight: 700!important;
  font-size: 40px;
}
.cid-vaL8D6vths .banner h1:last-child {
  margin: 0;
}
.cid-vaL8D6vths H1 {
  color: #ffffff;
}
.cid-vaL8D6vths .mbr-text {
  color: #ffffff;
  text-align: justify;
}
.cid-vaL8DZLgSJ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-vaL8JVQqon {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-vaL8JVQqon .banner {
  z-index: 10;
  height: 499px;
}
.cid-vaL8JVQqon .banner-wrapper {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}
.cid-vaL8JVQqon .bg-banner {
  padding: 15px;
  height: auto!important;
  position: relative;
}
.cid-vaL8JVQqon .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-vaL8JVQqon .bg-banner h1 {
  margin: 0 !important;
}
.cid-vaL8JVQqon .banner h1 {
  font-weight: 700!important;
  font-size: 40px;
}
.cid-vaL8JVQqon .banner h1:last-child {
  margin: 0;
}
.cid-vaL8JVQqon H1 {
  color: #ffffff;
}
.cid-vaL8JVQqon .mbr-text {
  color: #ffffff;
  text-align: justify;
}
.cid-vaL8KxCctd {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uWQaHfBdWx {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uWQaHfBdWx .mbr-fallback-image.disabled {
  display: none;
}
.cid-uWQaHfBdWx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uWQaHfBdWx .timeline-element {
  position: relative;
}
.cid-uWQaHfBdWx .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uWQaHfBdWx .iconBackground {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #6592e6;
  top: 30px;
  margin-left: -9px;
  padding: 0;
}
@media (max-width: 767px) {
  .cid-uWQaHfBdWx .iconBackground {
    left: 15px;
  }
}
@media (min-width: 768px) {
  .cid-uWQaHfBdWx .iconBackground {
    left: 50%;
  }
}
.cid-uWQaHfBdWx .row {
  flex-direction: row-reverse;
}
.cid-uWQaHfBdWx .row:after {
  content: "";
  position: absolute;
  background-color: #6592e6;
  width: 2px;
  top: 50px;
  height: calc(100% - 10px);
}
@media (max-width: 767px) {
  .cid-uWQaHfBdWx .row:after {
    left: 15px;
  }
}
@media (min-width: 768px) {
  .cid-uWQaHfBdWx .row:after {
    left: 50%;
  }
}
.cid-uWQaHfBdWx .row:nth-child(even) .mbr-timeline-date {
  text-align: right;
}
@media (max-width: 767px) {
  .cid-uWQaHfBdWx .row:nth-child(even) {
    flex-direction: column-reverse;
  }
}
@media (max-width: 767px) {
  .cid-uWQaHfBdWx .timeline-date-wrapper,
  .cid-uWQaHfBdWx .timeline-text-wrapper {
    padding: 0rem;
    padding-left: 2rem;
  }
  .cid-uWQaHfBdWx .mbr-timeline-date {
    text-align: left !important;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uWQaHfBdWx .timeline-date-wrapper,
  .cid-uWQaHfBdWx .timeline-text-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uWQaHfBdWx .timeline-date-wrapper,
  .cid-uWQaHfBdWx .timeline-text-wrapper {
    padding: 2rem;
  }
}
.cid-vaL8LU1f57 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-vaL8MNpARy {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-vaL8MNpARy .banner {
  z-index: 10;
  height: 499px;
}
.cid-vaL8MNpARy .banner-wrapper {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}
.cid-vaL8MNpARy .bg-banner {
  padding: 15px;
  height: auto!important;
  position: relative;
}
.cid-vaL8MNpARy .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-vaL8MNpARy .bg-banner h1 {
  margin: 0 !important;
}
.cid-vaL8MNpARy .banner h1 {
  font-weight: 700!important;
  font-size: 40px;
}
.cid-vaL8MNpARy .banner h1:last-child {
  margin: 0;
}
.cid-vaL8MNpARy H1 {
  color: #ffffff;
}
.cid-vaL8MNpARy .mbr-text {
  color: #ffffff;
  text-align: justify;
}
.cid-vaL8NB3R1T {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/capture-dcran-2026-01-28.jpg");
}
.cid-vaL8NB3R1T .mbr-fallback-image.disabled {
  display: none;
}
.cid-vaL8NB3R1T .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vaL8NB3R1T .bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-vaL8NB3R1T .bg-facebook:hover {
  background: #0b60cb;
}
.cid-vaL8NB3R1T .bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-vaL8NB3R1T .bg-twitter:hover {
  background: #0c85d0;
}
.cid-vaL8NB3R1T .bg-youtube {
  background: #ff0000;
  color: #ffffff;
}
.cid-vaL8NB3R1T .bg-youtube:hover {
  background: #cc0000;
}
.cid-vaL8NB3R1T .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-vaL8NB3R1T [class^="socicon-"]:before,
.cid-vaL8NB3R1T [class*=" socicon-"]:before {
  line-height: 55px;
  padding: .6rem;
}
.cid-vaL8NB3R1T .mbr-section-title,
.cid-vaL8NB3R1T .social-list {
  color: #ffffff;
}
.cid-vaL8Og9SOm {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-vaL8Og9SOm .banner {
  z-index: 10;
  height: 499px;
}
.cid-vaL8Og9SOm .banner-wrapper {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}
.cid-vaL8Og9SOm .bg-banner {
  padding: 15px;
  height: auto!important;
  position: relative;
}
.cid-vaL8Og9SOm .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-vaL8Og9SOm .bg-banner h1 {
  margin: 0 !important;
}
.cid-vaL8Og9SOm .banner h1 {
  font-weight: 700!important;
  font-size: 40px;
}
.cid-vaL8Og9SOm .banner h1:last-child {
  margin: 0;
}
.cid-vaL8Og9SOm H1 {
  color: #ffffff;
}
.cid-vaL8Og9SOm .mbr-text {
  color: #ffffff;
  text-align: justify;
}
.cid-vaL8OT5YR8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-vaL8PDtbQM {
  background-color: #ff9966;
}
.cid-vaL8PDtbQM .top {
  fill: #000000;
}
.cid-vaL8QeIU6h {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-vaL8QeIU6h .banner {
  z-index: 10;
  height: 499px;
}
.cid-vaL8QeIU6h .banner-wrapper {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}
.cid-vaL8QeIU6h .bg-banner {
  padding: 15px;
  height: auto!important;
  position: relative;
}
.cid-vaL8QeIU6h .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-vaL8QeIU6h .bg-banner h1 {
  margin: 0 !important;
}
.cid-vaL8QeIU6h .banner h1 {
  font-weight: 700!important;
  font-size: 40px;
}
.cid-vaL8QeIU6h .banner h1:last-child {
  margin: 0;
}
.cid-vaL8QeIU6h H1 {
  color: #ffffff;
}
.cid-vaL8QeIU6h .mbr-text {
  color: #ffffff;
  text-align: justify;
}
.cid-vaL8QY7rgg {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-vaL8QY7rgg .banner {
  z-index: 10;
  height: 499px;
}
.cid-vaL8QY7rgg .banner-wrapper {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}
.cid-vaL8QY7rgg .bg-banner {
  padding: 15px;
  height: auto!important;
  position: relative;
}
.cid-vaL8QY7rgg .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-vaL8QY7rgg .bg-banner h1 {
  margin: 0 !important;
}
.cid-vaL8QY7rgg .banner h1 {
  font-weight: 700!important;
  font-size: 40px;
}
.cid-vaL8QY7rgg .banner h1:last-child {
  margin: 0;
}
.cid-vaL8QY7rgg H1 {
  color: #ffffff;
}
.cid-vaL8QY7rgg .mbr-text {
  color: #ffffff;
  text-align: right;
}
.cid-L1bxvrtLRK {
  padding-top: 15px;
  padding-bottom: 15px;
  background: linear-gradient(0deg, #fb0707, #fb0707);
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 20;
}
.cid-vaiEwwVbtN {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-vaiEwwVbtN nav.navbar {
  position: fixed;
}
.cid-vaiEwwVbtN .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vaiEwwVbtN .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-vaiEwwVbtN .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-vaiEwwVbtN .dropdown-item:hover,
.cid-vaiEwwVbtN .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-vaiEwwVbtN .dropdown-item:hover span {
  color: white;
}
.cid-vaiEwwVbtN .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vaiEwwVbtN .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vaiEwwVbtN .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vaiEwwVbtN .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vaiEwwVbtN .nav-link {
  position: relative;
}
.cid-vaiEwwVbtN .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-vaiEwwVbtN .container {
    flex-wrap: wrap;
  }
}
.cid-vaiEwwVbtN .container-fluid {
  flex-wrap: nowrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-vaiEwwVbtN .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-vaiEwwVbtN .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vaiEwwVbtN .dropdown-menu,
.cid-vaiEwwVbtN .navbar.opened {
  background: #ff0000 !important;
}
.cid-vaiEwwVbtN .nav-item:focus,
.cid-vaiEwwVbtN .nav-link:focus {
  outline: none;
}
.cid-vaiEwwVbtN .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vaiEwwVbtN .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vaiEwwVbtN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vaiEwwVbtN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vaiEwwVbtN .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vaiEwwVbtN .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vaiEwwVbtN .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ff0000;
}
.cid-vaiEwwVbtN .navbar.opened {
  transition: all 0.3s;
}
.cid-vaiEwwVbtN .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vaiEwwVbtN .navbar .navbar-logo img {
  width: auto;
}
.cid-vaiEwwVbtN .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vaiEwwVbtN .navbar.collapsed {
  justify-content: center;
}
.cid-vaiEwwVbtN .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vaiEwwVbtN .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vaiEwwVbtN .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-vaiEwwVbtN .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vaiEwwVbtN .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vaiEwwVbtN .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-vaiEwwVbtN .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vaiEwwVbtN .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vaiEwwVbtN .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vaiEwwVbtN .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vaiEwwVbtN .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vaiEwwVbtN .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vaiEwwVbtN .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vaiEwwVbtN .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-vaiEwwVbtN .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vaiEwwVbtN .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vaiEwwVbtN .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vaiEwwVbtN .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vaiEwwVbtN .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vaiEwwVbtN .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-vaiEwwVbtN .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-vaiEwwVbtN .navbar.navbar-short {
  min-height: 60px;
}
.cid-vaiEwwVbtN .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vaiEwwVbtN .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-vaiEwwVbtN .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-vaiEwwVbtN .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vaiEwwVbtN .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vaiEwwVbtN .dropdown-item.active,
.cid-vaiEwwVbtN .dropdown-item:active {
  background-color: transparent;
}
.cid-vaiEwwVbtN .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vaiEwwVbtN .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vaiEwwVbtN .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vaiEwwVbtN .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ff0000;
}
.cid-vaiEwwVbtN .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vaiEwwVbtN .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vaiEwwVbtN ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vaiEwwVbtN .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vaiEwwVbtN button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-vaiEwwVbtN button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-vaiEwwVbtN button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vaiEwwVbtN button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vaiEwwVbtN button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vaiEwwVbtN button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vaiEwwVbtN nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vaiEwwVbtN nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vaiEwwVbtN nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vaiEwwVbtN nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vaiEwwVbtN .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-vaiEwwVbtN a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vaiEwwVbtN .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-vaiEwwVbtN .navbar {
    height: 70px;
  }
  .cid-vaiEwwVbtN .navbar.opened {
    height: auto;
  }
  .cid-vaiEwwVbtN .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vaL9FOGCRv {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-vaL9FOGCRv .banner {
  z-index: 10;
  height: 499px;
}
.cid-vaL9FOGCRv .banner-wrapper {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}
.cid-vaL9FOGCRv .bg-banner {
  padding: 15px;
  height: auto!important;
  position: relative;
}
.cid-vaL9FOGCRv .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-vaL9FOGCRv .bg-banner h1 {
  margin: 0 !important;
}
.cid-vaL9FOGCRv .banner h1 {
  font-weight: 700!important;
  font-size: 40px;
}
.cid-vaL9FOGCRv .banner h1:last-child {
  margin: 0;
}
.cid-vaL9FOGCRv H1 {
  color: #ffffff;
}
.cid-vaL9FOGCRv .mbr-text {
  color: #ffffff;
  text-align: justify;
}
.cid-uWQcWKDzHG {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uWQcWKDzHG .mbr-fallback-image.disabled {
  display: none;
}
.cid-uWQcWKDzHG .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-uWQcWKDzHG .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uWQcWKDzHG .row {
  flex-direction: row-reverse;
}
.cid-uWQcWKDzHG img {
  width: 100%;
}
.cid-vaL9Gst05x {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-vaL9Gst05x .banner {
  z-index: 10;
  height: 499px;
}
.cid-vaL9Gst05x .banner-wrapper {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}
.cid-vaL9Gst05x .bg-banner {
  padding: 15px;
  height: auto!important;
  position: relative;
}
.cid-vaL9Gst05x .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-vaL9Gst05x .bg-banner h1 {
  margin: 0 !important;
}
.cid-vaL9Gst05x .banner h1 {
  font-weight: 700!important;
  font-size: 40px;
}
.cid-vaL9Gst05x .banner h1:last-child {
  margin: 0;
}
.cid-vaL9Gst05x H1 {
  color: #ffffff;
}
.cid-vaL9Gst05x .mbr-text {
  color: #ffffff;
  text-align: justify;
}
.cid-vaL9H3105w {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-vaL9HYqakv {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-vaL9HYqakv .banner {
  z-index: 10;
  height: 499px;
}
.cid-vaL9HYqakv .banner-wrapper {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}
.cid-vaL9HYqakv .bg-banner {
  padding: 15px;
  height: auto!important;
  position: relative;
}
.cid-vaL9HYqakv .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-vaL9HYqakv .bg-banner h1 {
  margin: 0 !important;
}
.cid-vaL9HYqakv .banner h1 {
  font-weight: 700!important;
  font-size: 40px;
}
.cid-vaL9HYqakv .banner h1:last-child {
  margin: 0;
}
.cid-vaL9HYqakv H1 {
  color: #ffffff;
}
.cid-vaL9HYqakv .mbr-text {
  color: #ffffff;
  text-align: justify;
}
.cid-vaL9IDh4tq {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uWQcWL6ZBX {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uWQcWL6ZBX .mbr-fallback-image.disabled {
  display: none;
}
.cid-uWQcWL6ZBX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uWQcWL6ZBX .timeline-element {
  position: relative;
}
.cid-uWQcWL6ZBX .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uWQcWL6ZBX .iconBackground {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #6592e6;
  top: 30px;
  margin-left: -9px;
  padding: 0;
}
@media (max-width: 767px) {
  .cid-uWQcWL6ZBX .iconBackground {
    left: 15px;
  }
}
@media (min-width: 768px) {
  .cid-uWQcWL6ZBX .iconBackground {
    left: 50%;
  }
}
.cid-uWQcWL6ZBX .row {
  flex-direction: row-reverse;
}
.cid-uWQcWL6ZBX .row:after {
  content: "";
  position: absolute;
  background-color: #6592e6;
  width: 2px;
  top: 50px;
  height: calc(100% - 10px);
}
@media (max-width: 767px) {
  .cid-uWQcWL6ZBX .row:after {
    left: 15px;
  }
}
@media (min-width: 768px) {
  .cid-uWQcWL6ZBX .row:after {
    left: 50%;
  }
}
.cid-uWQcWL6ZBX .row:nth-child(even) .mbr-timeline-date {
  text-align: right;
}
@media (max-width: 767px) {
  .cid-uWQcWL6ZBX .row:nth-child(even) {
    flex-direction: column-reverse;
  }
}
@media (max-width: 767px) {
  .cid-uWQcWL6ZBX .timeline-date-wrapper,
  .cid-uWQcWL6ZBX .timeline-text-wrapper {
    padding: 0rem;
    padding-left: 2rem;
  }
  .cid-uWQcWL6ZBX .mbr-timeline-date {
    text-align: left !important;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uWQcWL6ZBX .timeline-date-wrapper,
  .cid-uWQcWL6ZBX .timeline-text-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uWQcWL6ZBX .timeline-date-wrapper,
  .cid-uWQcWL6ZBX .timeline-text-wrapper {
    padding: 2rem;
  }
}
.cid-vaL9ZgKROZ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-vaLa9xmBRP {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-vaLa9xmBRP .banner {
  z-index: 10;
  height: 499px;
}
.cid-vaLa9xmBRP .banner-wrapper {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}
.cid-vaLa9xmBRP .bg-banner {
  padding: 15px;
  height: auto!important;
  position: relative;
}
.cid-vaLa9xmBRP .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-vaLa9xmBRP .bg-banner h1 {
  margin: 0 !important;
}
.cid-vaLa9xmBRP .banner h1 {
  font-weight: 700!important;
  font-size: 40px;
}
.cid-vaLa9xmBRP .banner h1:last-child {
  margin: 0;
}
.cid-vaLa9xmBRP H1 {
  color: #ffffff;
}
.cid-vaLa9xmBRP .mbr-text {
  color: #ffffff;
  text-align: justify;
}
.cid-vaLaai7W34 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/capture-dcran-2026-01-28.jpg");
}
.cid-vaLaai7W34 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vaLaai7W34 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vaLaai7W34 .bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-vaLaai7W34 .bg-facebook:hover {
  background: #0b60cb;
}
.cid-vaLaai7W34 .bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-vaLaai7W34 .bg-twitter:hover {
  background: #0c85d0;
}
.cid-vaLaai7W34 .bg-youtube {
  background: #ff0000;
  color: #ffffff;
}
.cid-vaLaai7W34 .bg-youtube:hover {
  background: #cc0000;
}
.cid-vaLaai7W34 .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-vaLaai7W34 [class^="socicon-"]:before,
.cid-vaLaai7W34 [class*=" socicon-"]:before {
  line-height: 55px;
  padding: .6rem;
}
.cid-vaLaai7W34 .mbr-section-title,
.cid-vaLaai7W34 .social-list {
  color: #ffffff;
}
.cid-vaLaaVNlx3 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-vaLaaVNlx3 .banner {
  z-index: 10;
  height: 499px;
}
.cid-vaLaaVNlx3 .banner-wrapper {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}
.cid-vaLaaVNlx3 .bg-banner {
  padding: 15px;
  height: auto!important;
  position: relative;
}
.cid-vaLaaVNlx3 .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-vaLaaVNlx3 .bg-banner h1 {
  margin: 0 !important;
}
.cid-vaLaaVNlx3 .banner h1 {
  font-weight: 700!important;
  font-size: 40px;
}
.cid-vaLaaVNlx3 .banner h1:last-child {
  margin: 0;
}
.cid-vaLaaVNlx3 H1 {
  color: #ffffff;
}
.cid-vaLaaVNlx3 .mbr-text {
  color: #ffffff;
  text-align: justify;
}
.cid-vaLabVFzQC {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-vaLacCapWw {
  background-color: #ff9966;
}
.cid-vaLacCapWw .top {
  fill: #000000;
}
.cid-vaLadkoJpu {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-vaLadkoJpu .banner {
  z-index: 10;
  height: 499px;
}
.cid-vaLadkoJpu .banner-wrapper {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}
.cid-vaLadkoJpu .bg-banner {
  padding: 15px;
  height: auto!important;
  position: relative;
}
.cid-vaLadkoJpu .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-vaLadkoJpu .bg-banner h1 {
  margin: 0 !important;
}
.cid-vaLadkoJpu .banner h1 {
  font-weight: 700!important;
  font-size: 40px;
}
.cid-vaLadkoJpu .banner h1:last-child {
  margin: 0;
}
.cid-vaLadkoJpu H1 {
  color: #ffffff;
}
.cid-vaLadkoJpu .mbr-text {
  color: #ffffff;
  text-align: justify;
}
.cid-vaLadWqdiG {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-vaLadWqdiG .banner {
  z-index: 10;
  height: 499px;
}
.cid-vaLadWqdiG .banner-wrapper {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}
.cid-vaLadWqdiG .bg-banner {
  padding: 15px;
  height: auto!important;
  position: relative;
}
.cid-vaLadWqdiG .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-vaLadWqdiG .bg-banner h1 {
  margin: 0 !important;
}
.cid-vaLadWqdiG .banner h1 {
  font-weight: 700!important;
  font-size: 40px;
}
.cid-vaLadWqdiG .banner h1:last-child {
  margin: 0;
}
.cid-vaLadWqdiG H1 {
  color: #ffffff;
}
.cid-vaLadWqdiG .mbr-text {
  color: #ffffff;
  text-align: right;
}
.cid-qsbqfA0Dl5 {
  padding-top: 15px;
  padding-bottom: 15px;
  background: linear-gradient(0deg, #fb0707, #fb0707);
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 20;
}
.cid-vaiEwwVbtN {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-vaiEwwVbtN nav.navbar {
  position: fixed;
}
.cid-vaiEwwVbtN .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vaiEwwVbtN .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-vaiEwwVbtN .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-vaiEwwVbtN .dropdown-item:hover,
.cid-vaiEwwVbtN .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-vaiEwwVbtN .dropdown-item:hover span {
  color: white;
}
.cid-vaiEwwVbtN .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vaiEwwVbtN .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vaiEwwVbtN .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vaiEwwVbtN .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vaiEwwVbtN .nav-link {
  position: relative;
}
.cid-vaiEwwVbtN .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-vaiEwwVbtN .container {
    flex-wrap: wrap;
  }
}
.cid-vaiEwwVbtN .container-fluid {
  flex-wrap: nowrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-vaiEwwVbtN .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-vaiEwwVbtN .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vaiEwwVbtN .dropdown-menu,
.cid-vaiEwwVbtN .navbar.opened {
  background: #ff0000 !important;
}
.cid-vaiEwwVbtN .nav-item:focus,
.cid-vaiEwwVbtN .nav-link:focus {
  outline: none;
}
.cid-vaiEwwVbtN .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vaiEwwVbtN .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vaiEwwVbtN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vaiEwwVbtN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vaiEwwVbtN .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vaiEwwVbtN .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vaiEwwVbtN .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ff0000;
}
.cid-vaiEwwVbtN .navbar.opened {
  transition: all 0.3s;
}
.cid-vaiEwwVbtN .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vaiEwwVbtN .navbar .navbar-logo img {
  width: auto;
}
.cid-vaiEwwVbtN .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vaiEwwVbtN .navbar.collapsed {
  justify-content: center;
}
.cid-vaiEwwVbtN .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vaiEwwVbtN .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vaiEwwVbtN .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-vaiEwwVbtN .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vaiEwwVbtN .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vaiEwwVbtN .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-vaiEwwVbtN .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vaiEwwVbtN .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vaiEwwVbtN .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vaiEwwVbtN .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vaiEwwVbtN .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vaiEwwVbtN .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vaiEwwVbtN .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vaiEwwVbtN .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-vaiEwwVbtN .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vaiEwwVbtN .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vaiEwwVbtN .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vaiEwwVbtN .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vaiEwwVbtN .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vaiEwwVbtN .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-vaiEwwVbtN .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-vaiEwwVbtN .navbar.navbar-short {
  min-height: 60px;
}
.cid-vaiEwwVbtN .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vaiEwwVbtN .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-vaiEwwVbtN .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-vaiEwwVbtN .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vaiEwwVbtN .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vaiEwwVbtN .dropdown-item.active,
.cid-vaiEwwVbtN .dropdown-item:active {
  background-color: transparent;
}
.cid-vaiEwwVbtN .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vaiEwwVbtN .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vaiEwwVbtN .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vaiEwwVbtN .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ff0000;
}
.cid-vaiEwwVbtN .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vaiEwwVbtN .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vaiEwwVbtN ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vaiEwwVbtN .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vaiEwwVbtN button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-vaiEwwVbtN button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-vaiEwwVbtN button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vaiEwwVbtN button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vaiEwwVbtN button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vaiEwwVbtN button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vaiEwwVbtN nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vaiEwwVbtN nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vaiEwwVbtN nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vaiEwwVbtN nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vaiEwwVbtN .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-vaiEwwVbtN a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vaiEwwVbtN .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-vaiEwwVbtN .navbar {
    height: 70px;
  }
  .cid-vaiEwwVbtN .navbar.opened {
    height: auto;
  }
  .cid-vaiEwwVbtN .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vaLaReoFwB {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-vaLaReoFwB .banner {
  z-index: 10;
  height: 499px;
}
.cid-vaLaReoFwB .banner-wrapper {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}
.cid-vaLaReoFwB .bg-banner {
  padding: 15px;
  height: auto!important;
  position: relative;
}
.cid-vaLaReoFwB .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-vaLaReoFwB .bg-banner h1 {
  margin: 0 !important;
}
.cid-vaLaReoFwB .banner h1 {
  font-weight: 700!important;
  font-size: 40px;
}
.cid-vaLaReoFwB .banner h1:last-child {
  margin: 0;
}
.cid-vaLaReoFwB H1 {
  color: #ffffff;
}
.cid-vaLaReoFwB .mbr-text {
  color: #ffffff;
  text-align: justify;
}
.cid-uWQgW8Jgm3 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uWQgW8Jgm3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uWQgW8Jgm3 .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-uWQgW8Jgm3 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uWQgW8Jgm3 .row {
  flex-direction: row-reverse;
}
.cid-uWQgW8Jgm3 img {
  width: 100%;
}
.cid-vaLaS09sbz {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-vaLaS09sbz .banner {
  z-index: 10;
  height: 499px;
}
.cid-vaLaS09sbz .banner-wrapper {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}
.cid-vaLaS09sbz .bg-banner {
  padding: 15px;
  height: auto!important;
  position: relative;
}
.cid-vaLaS09sbz .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-vaLaS09sbz .bg-banner h1 {
  margin: 0 !important;
}
.cid-vaLaS09sbz .banner h1 {
  font-weight: 700!important;
  font-size: 40px;
}
.cid-vaLaS09sbz .banner h1:last-child {
  margin: 0;
}
.cid-vaLaS09sbz H1 {
  color: #ffffff;
}
.cid-vaLaS09sbz .mbr-text {
  color: #ffffff;
  text-align: justify;
}
.cid-vaLaSW9skp {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-vaLaTuPRKy {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-vaLaTuPRKy .banner {
  z-index: 10;
  height: 499px;
}
.cid-vaLaTuPRKy .banner-wrapper {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}
.cid-vaLaTuPRKy .bg-banner {
  padding: 15px;
  height: auto!important;
  position: relative;
}
.cid-vaLaTuPRKy .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-vaLaTuPRKy .bg-banner h1 {
  margin: 0 !important;
}
.cid-vaLaTuPRKy .banner h1 {
  font-weight: 700!important;
  font-size: 40px;
}
.cid-vaLaTuPRKy .banner h1:last-child {
  margin: 0;
}
.cid-vaLaTuPRKy H1 {
  color: #ffffff;
}
.cid-vaLaTuPRKy .mbr-text {
  color: #ffffff;
  text-align: justify;
}
.cid-vaLaVbMNDO {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uWQgW9b0Bu {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uWQgW9b0Bu .mbr-fallback-image.disabled {
  display: none;
}
.cid-uWQgW9b0Bu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uWQgW9b0Bu .timeline-element {
  position: relative;
}
.cid-uWQgW9b0Bu .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uWQgW9b0Bu .iconBackground {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #6592e6;
  top: 30px;
  margin-left: -9px;
  padding: 0;
}
@media (max-width: 767px) {
  .cid-uWQgW9b0Bu .iconBackground {
    left: 15px;
  }
}
@media (min-width: 768px) {
  .cid-uWQgW9b0Bu .iconBackground {
    left: 50%;
  }
}
.cid-uWQgW9b0Bu .row {
  flex-direction: row-reverse;
}
.cid-uWQgW9b0Bu .row:after {
  content: "";
  position: absolute;
  background-color: #6592e6;
  width: 2px;
  top: 50px;
  height: calc(100% - 10px);
}
@media (max-width: 767px) {
  .cid-uWQgW9b0Bu .row:after {
    left: 15px;
  }
}
@media (min-width: 768px) {
  .cid-uWQgW9b0Bu .row:after {
    left: 50%;
  }
}
.cid-uWQgW9b0Bu .row:nth-child(even) .mbr-timeline-date {
  text-align: right;
}
@media (max-width: 767px) {
  .cid-uWQgW9b0Bu .row:nth-child(even) {
    flex-direction: column-reverse;
  }
}
@media (max-width: 767px) {
  .cid-uWQgW9b0Bu .timeline-date-wrapper,
  .cid-uWQgW9b0Bu .timeline-text-wrapper {
    padding: 0rem;
    padding-left: 2rem;
  }
  .cid-uWQgW9b0Bu .mbr-timeline-date {
    text-align: left !important;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uWQgW9b0Bu .timeline-date-wrapper,
  .cid-uWQgW9b0Bu .timeline-text-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uWQgW9b0Bu .timeline-date-wrapper,
  .cid-uWQgW9b0Bu .timeline-text-wrapper {
    padding: 2rem;
  }
}
.cid-vaLb6HEut1 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-vaLbg0Ak6N {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-vaLbg0Ak6N .banner {
  z-index: 10;
  height: 499px;
}
.cid-vaLbg0Ak6N .banner-wrapper {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}
.cid-vaLbg0Ak6N .bg-banner {
  padding: 15px;
  height: auto!important;
  position: relative;
}
.cid-vaLbg0Ak6N .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-vaLbg0Ak6N .bg-banner h1 {
  margin: 0 !important;
}
.cid-vaLbg0Ak6N .banner h1 {
  font-weight: 700!important;
  font-size: 40px;
}
.cid-vaLbg0Ak6N .banner h1:last-child {
  margin: 0;
}
.cid-vaLbg0Ak6N H1 {
  color: #ffffff;
}
.cid-vaLbg0Ak6N .mbr-text {
  color: #ffffff;
  text-align: justify;
}
.cid-vaLbgLWCPu {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/capture-dcran-2026-01-28.jpg");
}
.cid-vaLbgLWCPu .mbr-fallback-image.disabled {
  display: none;
}
.cid-vaLbgLWCPu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vaLbgLWCPu .bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-vaLbgLWCPu .bg-facebook:hover {
  background: #0b60cb;
}
.cid-vaLbgLWCPu .bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-vaLbgLWCPu .bg-twitter:hover {
  background: #0c85d0;
}
.cid-vaLbgLWCPu .bg-youtube {
  background: #ff0000;
  color: #ffffff;
}
.cid-vaLbgLWCPu .bg-youtube:hover {
  background: #cc0000;
}
.cid-vaLbgLWCPu .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-vaLbgLWCPu [class^="socicon-"]:before,
.cid-vaLbgLWCPu [class*=" socicon-"]:before {
  line-height: 55px;
  padding: .6rem;
}
.cid-vaLbgLWCPu .mbr-section-title,
.cid-vaLbgLWCPu .social-list {
  color: #ffffff;
}
.cid-vaLbhwPVBF {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-vaLbhwPVBF .banner {
  z-index: 10;
  height: 499px;
}
.cid-vaLbhwPVBF .banner-wrapper {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}
.cid-vaLbhwPVBF .bg-banner {
  padding: 15px;
  height: auto!important;
  position: relative;
}
.cid-vaLbhwPVBF .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-vaLbhwPVBF .bg-banner h1 {
  margin: 0 !important;
}
.cid-vaLbhwPVBF .banner h1 {
  font-weight: 700!important;
  font-size: 40px;
}
.cid-vaLbhwPVBF .banner h1:last-child {
  margin: 0;
}
.cid-vaLbhwPVBF H1 {
  color: #ffffff;
}
.cid-vaLbhwPVBF .mbr-text {
  color: #ffffff;
  text-align: justify;
}
.cid-vaLbiMTg5T {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-vaLbjrE9vk {
  background-color: #ff9966;
}
.cid-vaLbjrE9vk .top {
  fill: #000000;
}
.cid-vaLbk7D5dx {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-vaLbk7D5dx .banner {
  z-index: 10;
  height: 499px;
}
.cid-vaLbk7D5dx .banner-wrapper {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}
.cid-vaLbk7D5dx .bg-banner {
  padding: 15px;
  height: auto!important;
  position: relative;
}
.cid-vaLbk7D5dx .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-vaLbk7D5dx .bg-banner h1 {
  margin: 0 !important;
}
.cid-vaLbk7D5dx .banner h1 {
  font-weight: 700!important;
  font-size: 40px;
}
.cid-vaLbk7D5dx .banner h1:last-child {
  margin: 0;
}
.cid-vaLbk7D5dx H1 {
  color: #ffffff;
}
.cid-vaLbk7D5dx .mbr-text {
  color: #ffffff;
  text-align: justify;
}
.cid-vaLbkB3oBJ {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-vaLbkB3oBJ .banner {
  z-index: 10;
  height: 499px;
}
.cid-vaLbkB3oBJ .banner-wrapper {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}
.cid-vaLbkB3oBJ .bg-banner {
  padding: 15px;
  height: auto!important;
  position: relative;
}
.cid-vaLbkB3oBJ .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-vaLbkB3oBJ .bg-banner h1 {
  margin: 0 !important;
}
.cid-vaLbkB3oBJ .banner h1 {
  font-weight: 700!important;
  font-size: 40px;
}
.cid-vaLbkB3oBJ .banner h1:last-child {
  margin: 0;
}
.cid-vaLbkB3oBJ H1 {
  color: #ffffff;
}
.cid-vaLbkB3oBJ .mbr-text {
  color: #ffffff;
  text-align: right;
}
.cid-nw5FLaa7kq {
  padding-top: 15px;
  padding-bottom: 15px;
  background: linear-gradient(0deg, #fb0707, #fb0707);
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 20;
}
.cid-vaiEwwVbtN {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-vaiEwwVbtN nav.navbar {
  position: fixed;
}
.cid-vaiEwwVbtN .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vaiEwwVbtN .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-vaiEwwVbtN .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-vaiEwwVbtN .dropdown-item:hover,
.cid-vaiEwwVbtN .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-vaiEwwVbtN .dropdown-item:hover span {
  color: white;
}
.cid-vaiEwwVbtN .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vaiEwwVbtN .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vaiEwwVbtN .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vaiEwwVbtN .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vaiEwwVbtN .nav-link {
  position: relative;
}
.cid-vaiEwwVbtN .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-vaiEwwVbtN .container {
    flex-wrap: wrap;
  }
}
.cid-vaiEwwVbtN .container-fluid {
  flex-wrap: nowrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-vaiEwwVbtN .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-vaiEwwVbtN .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vaiEwwVbtN .dropdown-menu,
.cid-vaiEwwVbtN .navbar.opened {
  background: #ff0000 !important;
}
.cid-vaiEwwVbtN .nav-item:focus,
.cid-vaiEwwVbtN .nav-link:focus {
  outline: none;
}
.cid-vaiEwwVbtN .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vaiEwwVbtN .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vaiEwwVbtN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vaiEwwVbtN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vaiEwwVbtN .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vaiEwwVbtN .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vaiEwwVbtN .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ff0000;
}
.cid-vaiEwwVbtN .navbar.opened {
  transition: all 0.3s;
}
.cid-vaiEwwVbtN .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vaiEwwVbtN .navbar .navbar-logo img {
  width: auto;
}
.cid-vaiEwwVbtN .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vaiEwwVbtN .navbar.collapsed {
  justify-content: center;
}
.cid-vaiEwwVbtN .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vaiEwwVbtN .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vaiEwwVbtN .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-vaiEwwVbtN .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vaiEwwVbtN .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vaiEwwVbtN .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-vaiEwwVbtN .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vaiEwwVbtN .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vaiEwwVbtN .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vaiEwwVbtN .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vaiEwwVbtN .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vaiEwwVbtN .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vaiEwwVbtN .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vaiEwwVbtN .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-vaiEwwVbtN .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vaiEwwVbtN .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vaiEwwVbtN .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vaiEwwVbtN .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vaiEwwVbtN .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vaiEwwVbtN .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-vaiEwwVbtN .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-vaiEwwVbtN .navbar.navbar-short {
  min-height: 60px;
}
.cid-vaiEwwVbtN .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vaiEwwVbtN .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-vaiEwwVbtN .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-vaiEwwVbtN .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vaiEwwVbtN .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vaiEwwVbtN .dropdown-item.active,
.cid-vaiEwwVbtN .dropdown-item:active {
  background-color: transparent;
}
.cid-vaiEwwVbtN .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vaiEwwVbtN .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vaiEwwVbtN .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vaiEwwVbtN .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ff0000;
}
.cid-vaiEwwVbtN .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vaiEwwVbtN .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vaiEwwVbtN ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vaiEwwVbtN .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vaiEwwVbtN button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-vaiEwwVbtN button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-vaiEwwVbtN button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vaiEwwVbtN button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vaiEwwVbtN button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vaiEwwVbtN button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vaiEwwVbtN nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vaiEwwVbtN nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vaiEwwVbtN nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vaiEwwVbtN nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vaiEwwVbtN .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-vaiEwwVbtN a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vaiEwwVbtN .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-vaiEwwVbtN .navbar {
    height: 70px;
  }
  .cid-vaiEwwVbtN .navbar.opened {
    height: auto;
  }
  .cid-vaiEwwVbtN .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uXfV9dbdz0 {
  padding-top: 10rem;
  padding-bottom: 2rem;
  background-color: #6600ff;
}
.cid-uXfV9dp3mQ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uXfV9dp3mQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uXfV9dp3mQ .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-uXfV9dp3mQ .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uXfV9dp3mQ .row {
  flex-direction: row-reverse;
}
.cid-uXfV9dp3mQ img {
  width: 100%;
}
.cid-uXfV9dM5gh {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #232323;
}
.cid-uXfV9dM5gh .mbr-fallback-image.disabled {
  display: none;
}
.cid-uXfV9dM5gh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uXfV9dM5gh .item-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-uXfV9dM5gh .item-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uXfV9dM5gh .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-uXfV9dM5gh .card-title {
  color: #ffffff;
  text-align: justify;
}
.cid-uXfV9ewBTu {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #6600ff;
}
.cid-uXfV9eFmGh {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uXfV9eFmGh .mbr-fallback-image.disabled {
  display: none;
}
.cid-uXfV9eFmGh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uXfV9eFmGh .timeline-element {
  position: relative;
}
.cid-uXfV9eFmGh .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uXfV9eFmGh .iconBackground {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #6592e6;
  top: 30px;
  margin-left: -9px;
  padding: 0;
}
@media (max-width: 767px) {
  .cid-uXfV9eFmGh .iconBackground {
    left: 15px;
  }
}
@media (min-width: 768px) {
  .cid-uXfV9eFmGh .iconBackground {
    left: 50%;
  }
}
.cid-uXfV9eFmGh .row {
  flex-direction: row-reverse;
}
.cid-uXfV9eFmGh .row:after {
  content: "";
  position: absolute;
  background-color: #6592e6;
  width: 2px;
  top: 50px;
  height: calc(100% - 10px);
}
@media (max-width: 767px) {
  .cid-uXfV9eFmGh .row:after {
    left: 15px;
  }
}
@media (min-width: 768px) {
  .cid-uXfV9eFmGh .row:after {
    left: 50%;
  }
}
.cid-uXfV9eFmGh .row:nth-child(even) .mbr-timeline-date {
  text-align: right;
}
@media (max-width: 767px) {
  .cid-uXfV9eFmGh .row:nth-child(even) {
    flex-direction: column-reverse;
  }
}
@media (max-width: 767px) {
  .cid-uXfV9eFmGh .timeline-date-wrapper,
  .cid-uXfV9eFmGh .timeline-text-wrapper {
    padding: 0rem;
    padding-left: 2rem;
  }
  .cid-uXfV9eFmGh .mbr-timeline-date {
    text-align: left !important;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uXfV9eFmGh .timeline-date-wrapper,
  .cid-uXfV9eFmGh .timeline-text-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uXfV9eFmGh .timeline-date-wrapper,
  .cid-uXfV9eFmGh .timeline-text-wrapper {
    padding: 2rem;
  }
}
.cid-uXfV9fh5Fo {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #6600ff;
}
.cid-uXfV9fAyYn {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-uXfV9fAyYn .mbr-fallback-image.disabled {
  display: none;
}
.cid-uXfV9fAyYn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uXfV9fAyYn .bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-uXfV9fAyYn .bg-facebook:hover {
  background: #0b60cb;
}
.cid-uXfV9fAyYn .bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-uXfV9fAyYn .bg-twitter:hover {
  background: #0c85d0;
}
.cid-uXfV9fAyYn .bg-youtube {
  background: #ff0000;
  color: #ffffff;
}
.cid-uXfV9fAyYn .bg-youtube:hover {
  background: #cc0000;
}
.cid-uXfV9fAyYn .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-uXfV9fAyYn [class^="socicon-"]:before,
.cid-uXfV9fAyYn [class*=" socicon-"]:before {
  line-height: 55px;
  padding: .6rem;
}
.cid-uXfV9fAyYn .mbr-section-title,
.cid-uXfV9fAyYn .social-list {
  color: #ffffff;
}
.cid-uXfV9fT9Bc {
  padding-top: 10rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/cool-music-wallpaper-hd-wallpapers-630446878.jpg");
}
.cid-vaiEwwVbtN {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-vaiEwwVbtN nav.navbar {
  position: fixed;
}
.cid-vaiEwwVbtN .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vaiEwwVbtN .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-vaiEwwVbtN .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-vaiEwwVbtN .dropdown-item:hover,
.cid-vaiEwwVbtN .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-vaiEwwVbtN .dropdown-item:hover span {
  color: white;
}
.cid-vaiEwwVbtN .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vaiEwwVbtN .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vaiEwwVbtN .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vaiEwwVbtN .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vaiEwwVbtN .nav-link {
  position: relative;
}
.cid-vaiEwwVbtN .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-vaiEwwVbtN .container {
    flex-wrap: wrap;
  }
}
.cid-vaiEwwVbtN .container-fluid {
  flex-wrap: nowrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-vaiEwwVbtN .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-vaiEwwVbtN .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vaiEwwVbtN .dropdown-menu,
.cid-vaiEwwVbtN .navbar.opened {
  background: #ff0000 !important;
}
.cid-vaiEwwVbtN .nav-item:focus,
.cid-vaiEwwVbtN .nav-link:focus {
  outline: none;
}
.cid-vaiEwwVbtN .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vaiEwwVbtN .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vaiEwwVbtN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vaiEwwVbtN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vaiEwwVbtN .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vaiEwwVbtN .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vaiEwwVbtN .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ff0000;
}
.cid-vaiEwwVbtN .navbar.opened {
  transition: all 0.3s;
}
.cid-vaiEwwVbtN .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vaiEwwVbtN .navbar .navbar-logo img {
  width: auto;
}
.cid-vaiEwwVbtN .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vaiEwwVbtN .navbar.collapsed {
  justify-content: center;
}
.cid-vaiEwwVbtN .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vaiEwwVbtN .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vaiEwwVbtN .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-vaiEwwVbtN .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vaiEwwVbtN .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vaiEwwVbtN .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-vaiEwwVbtN .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vaiEwwVbtN .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vaiEwwVbtN .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vaiEwwVbtN .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vaiEwwVbtN .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vaiEwwVbtN .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vaiEwwVbtN .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vaiEwwVbtN .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-vaiEwwVbtN .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vaiEwwVbtN .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vaiEwwVbtN .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vaiEwwVbtN .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vaiEwwVbtN .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vaiEwwVbtN .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-vaiEwwVbtN .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-vaiEwwVbtN .navbar.navbar-short {
  min-height: 60px;
}
.cid-vaiEwwVbtN .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vaiEwwVbtN .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-vaiEwwVbtN .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-vaiEwwVbtN .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vaiEwwVbtN .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vaiEwwVbtN .dropdown-item.active,
.cid-vaiEwwVbtN .dropdown-item:active {
  background-color: transparent;
}
.cid-vaiEwwVbtN .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vaiEwwVbtN .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vaiEwwVbtN .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vaiEwwVbtN .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ff0000;
}
.cid-vaiEwwVbtN .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vaiEwwVbtN .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vaiEwwVbtN ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vaiEwwVbtN .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vaiEwwVbtN button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-vaiEwwVbtN button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-vaiEwwVbtN button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vaiEwwVbtN button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vaiEwwVbtN button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vaiEwwVbtN button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vaiEwwVbtN nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vaiEwwVbtN nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vaiEwwVbtN nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vaiEwwVbtN nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vaiEwwVbtN .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-vaiEwwVbtN a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vaiEwwVbtN .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-vaiEwwVbtN .navbar {
    height: 70px;
  }
  .cid-vaiEwwVbtN .navbar.opened {
    height: auto;
  }
  .cid-vaiEwwVbtN .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uXfXH2IIwb {
  padding-top: 10rem;
  padding-bottom: 2rem;
  background-color: #6600ff;
}
.cid-uXfXH2OULt {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uXfXH2OULt .mbr-fallback-image.disabled {
  display: none;
}
.cid-uXfXH2OULt .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-uXfXH2OULt .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uXfXH2OULt .row {
  flex-direction: row-reverse;
}
.cid-uXfXH2OULt img {
  width: 100%;
}
.cid-uXfXH2Z9iQ {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #232323;
}
.cid-uXfXH2Z9iQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uXfXH2Z9iQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uXfXH2Z9iQ .item-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-uXfXH2Z9iQ .item-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uXfXH2Z9iQ .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-uXfXH2Z9iQ .card-title {
  color: #ffffff;
  text-align: justify;
}
.cid-uXfXH39jsV {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #6600ff;
}
.cid-uXfXH3g5cq {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uXfXH3g5cq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uXfXH3g5cq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uXfXH3g5cq .timeline-element {
  position: relative;
}
.cid-uXfXH3g5cq .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uXfXH3g5cq .iconBackground {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #6592e6;
  top: 30px;
  margin-left: -9px;
  padding: 0;
}
@media (max-width: 767px) {
  .cid-uXfXH3g5cq .iconBackground {
    left: 15px;
  }
}
@media (min-width: 768px) {
  .cid-uXfXH3g5cq .iconBackground {
    left: 50%;
  }
}
.cid-uXfXH3g5cq .row {
  flex-direction: row-reverse;
}
.cid-uXfXH3g5cq .row:after {
  content: "";
  position: absolute;
  background-color: #6592e6;
  width: 2px;
  top: 50px;
  height: calc(100% - 10px);
}
@media (max-width: 767px) {
  .cid-uXfXH3g5cq .row:after {
    left: 15px;
  }
}
@media (min-width: 768px) {
  .cid-uXfXH3g5cq .row:after {
    left: 50%;
  }
}
.cid-uXfXH3g5cq .row:nth-child(even) .mbr-timeline-date {
  text-align: right;
}
@media (max-width: 767px) {
  .cid-uXfXH3g5cq .row:nth-child(even) {
    flex-direction: column-reverse;
  }
}
@media (max-width: 767px) {
  .cid-uXfXH3g5cq .timeline-date-wrapper,
  .cid-uXfXH3g5cq .timeline-text-wrapper {
    padding: 0rem;
    padding-left: 2rem;
  }
  .cid-uXfXH3g5cq .mbr-timeline-date {
    text-align: left !important;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uXfXH3g5cq .timeline-date-wrapper,
  .cid-uXfXH3g5cq .timeline-text-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uXfXH3g5cq .timeline-date-wrapper,
  .cid-uXfXH3g5cq .timeline-text-wrapper {
    padding: 2rem;
  }
}
.cid-uXfXH3QN66 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #6600ff;
}
.cid-uXfXH499PZ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-uXfXH499PZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uXfXH499PZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uXfXH499PZ .bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-uXfXH499PZ .bg-facebook:hover {
  background: #0b60cb;
}
.cid-uXfXH499PZ .bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-uXfXH499PZ .bg-twitter:hover {
  background: #0c85d0;
}
.cid-uXfXH499PZ .bg-youtube {
  background: #ff0000;
  color: #ffffff;
}
.cid-uXfXH499PZ .bg-youtube:hover {
  background: #cc0000;
}
.cid-uXfXH499PZ .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-uXfXH499PZ [class^="socicon-"]:before,
.cid-uXfXH499PZ [class*=" socicon-"]:before {
  line-height: 55px;
  padding: .6rem;
}
.cid-uXfXH499PZ .mbr-section-title,
.cid-uXfXH499PZ .social-list {
  color: #ffffff;
}
.cid-uXfXH4qLMb {
  padding-top: 10rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/cool-music-wallpaper-hd-wallpapers-630446878.jpg");
}
.cid-vaiEwwVbtN {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-vaiEwwVbtN nav.navbar {
  position: fixed;
}
.cid-vaiEwwVbtN .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vaiEwwVbtN .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-vaiEwwVbtN .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-vaiEwwVbtN .dropdown-item:hover,
.cid-vaiEwwVbtN .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-vaiEwwVbtN .dropdown-item:hover span {
  color: white;
}
.cid-vaiEwwVbtN .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vaiEwwVbtN .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vaiEwwVbtN .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vaiEwwVbtN .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vaiEwwVbtN .nav-link {
  position: relative;
}
.cid-vaiEwwVbtN .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-vaiEwwVbtN .container {
    flex-wrap: wrap;
  }
}
.cid-vaiEwwVbtN .container-fluid {
  flex-wrap: nowrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-vaiEwwVbtN .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-vaiEwwVbtN .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vaiEwwVbtN .dropdown-menu,
.cid-vaiEwwVbtN .navbar.opened {
  background: #ff0000 !important;
}
.cid-vaiEwwVbtN .nav-item:focus,
.cid-vaiEwwVbtN .nav-link:focus {
  outline: none;
}
.cid-vaiEwwVbtN .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vaiEwwVbtN .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vaiEwwVbtN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vaiEwwVbtN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vaiEwwVbtN .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vaiEwwVbtN .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vaiEwwVbtN .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ff0000;
}
.cid-vaiEwwVbtN .navbar.opened {
  transition: all 0.3s;
}
.cid-vaiEwwVbtN .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vaiEwwVbtN .navbar .navbar-logo img {
  width: auto;
}
.cid-vaiEwwVbtN .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vaiEwwVbtN .navbar.collapsed {
  justify-content: center;
}
.cid-vaiEwwVbtN .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vaiEwwVbtN .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vaiEwwVbtN .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-vaiEwwVbtN .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vaiEwwVbtN .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vaiEwwVbtN .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-vaiEwwVbtN .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vaiEwwVbtN .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vaiEwwVbtN .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vaiEwwVbtN .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vaiEwwVbtN .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vaiEwwVbtN .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vaiEwwVbtN .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vaiEwwVbtN .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-vaiEwwVbtN .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vaiEwwVbtN .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vaiEwwVbtN .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vaiEwwVbtN .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vaiEwwVbtN .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vaiEwwVbtN .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-vaiEwwVbtN .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-vaiEwwVbtN .navbar.navbar-short {
  min-height: 60px;
}
.cid-vaiEwwVbtN .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vaiEwwVbtN .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-vaiEwwVbtN .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-vaiEwwVbtN .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vaiEwwVbtN .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vaiEwwVbtN .dropdown-item.active,
.cid-vaiEwwVbtN .dropdown-item:active {
  background-color: transparent;
}
.cid-vaiEwwVbtN .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vaiEwwVbtN .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vaiEwwVbtN .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vaiEwwVbtN .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ff0000;
}
.cid-vaiEwwVbtN .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vaiEwwVbtN .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vaiEwwVbtN ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vaiEwwVbtN .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vaiEwwVbtN button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-vaiEwwVbtN button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-vaiEwwVbtN button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vaiEwwVbtN button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vaiEwwVbtN button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vaiEwwVbtN button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vaiEwwVbtN nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vaiEwwVbtN nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vaiEwwVbtN nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vaiEwwVbtN nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vaiEwwVbtN .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-vaiEwwVbtN a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vaiEwwVbtN .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-vaiEwwVbtN .navbar {
    height: 70px;
  }
  .cid-vaiEwwVbtN .navbar.opened {
    height: auto;
  }
  .cid-vaiEwwVbtN .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uXfZEUFfsa {
  padding-top: 10rem;
  padding-bottom: 2rem;
  background-color: #6600ff;
}
.cid-uXfZEUTXB8 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uXfZEUTXB8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uXfZEUTXB8 .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-uXfZEUTXB8 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uXfZEUTXB8 .row {
  flex-direction: row-reverse;
}
.cid-uXfZEUTXB8 img {
  width: 100%;
}
.cid-uXfZEVm97I {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #232323;
}
.cid-uXfZEVm97I .mbr-fallback-image.disabled {
  display: none;
}
.cid-uXfZEVm97I .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uXfZEVm97I .item-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-uXfZEVm97I .item-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uXfZEVm97I .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-uXfZEVm97I .card-title {
  color: #ffffff;
  text-align: justify;
}
.cid-uXfZEVJ2SQ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #6600ff;
}
.cid-uXfZEW2KiO {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uXfZEW2KiO .mbr-fallback-image.disabled {
  display: none;
}
.cid-uXfZEW2KiO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uXfZEW2KiO .timeline-element {
  position: relative;
}
.cid-uXfZEW2KiO .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uXfZEW2KiO .iconBackground {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #6592e6;
  top: 30px;
  margin-left: -9px;
  padding: 0;
}
@media (max-width: 767px) {
  .cid-uXfZEW2KiO .iconBackground {
    left: 15px;
  }
}
@media (min-width: 768px) {
  .cid-uXfZEW2KiO .iconBackground {
    left: 50%;
  }
}
.cid-uXfZEW2KiO .row {
  flex-direction: row-reverse;
}
.cid-uXfZEW2KiO .row:after {
  content: "";
  position: absolute;
  background-color: #6592e6;
  width: 2px;
  top: 50px;
  height: calc(100% - 10px);
}
@media (max-width: 767px) {
  .cid-uXfZEW2KiO .row:after {
    left: 15px;
  }
}
@media (min-width: 768px) {
  .cid-uXfZEW2KiO .row:after {
    left: 50%;
  }
}
.cid-uXfZEW2KiO .row:nth-child(even) .mbr-timeline-date {
  text-align: right;
}
@media (max-width: 767px) {
  .cid-uXfZEW2KiO .row:nth-child(even) {
    flex-direction: column-reverse;
  }
}
@media (max-width: 767px) {
  .cid-uXfZEW2KiO .timeline-date-wrapper,
  .cid-uXfZEW2KiO .timeline-text-wrapper {
    padding: 0rem;
    padding-left: 2rem;
  }
  .cid-uXfZEW2KiO .mbr-timeline-date {
    text-align: left !important;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uXfZEW2KiO .timeline-date-wrapper,
  .cid-uXfZEW2KiO .timeline-text-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uXfZEW2KiO .timeline-date-wrapper,
  .cid-uXfZEW2KiO .timeline-text-wrapper {
    padding: 2rem;
  }
}
.cid-uXfZEYB7M5 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #6600ff;
}
.cid-uXfZEYXnoZ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-uXfZEYXnoZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uXfZEYXnoZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uXfZEYXnoZ .bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-uXfZEYXnoZ .bg-facebook:hover {
  background: #0b60cb;
}
.cid-uXfZEYXnoZ .bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-uXfZEYXnoZ .bg-twitter:hover {
  background: #0c85d0;
}
.cid-uXfZEYXnoZ .bg-youtube {
  background: #ff0000;
  color: #ffffff;
}
.cid-uXfZEYXnoZ .bg-youtube:hover {
  background: #cc0000;
}
.cid-uXfZEYXnoZ .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-uXfZEYXnoZ [class^="socicon-"]:before,
.cid-uXfZEYXnoZ [class*=" socicon-"]:before {
  line-height: 55px;
  padding: .6rem;
}
.cid-uXfZEYXnoZ .mbr-section-title,
.cid-uXfZEYXnoZ .social-list {
  color: #ffffff;
}
.cid-uXfZEZk0M5 {
  padding-top: 10rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/cool-music-wallpaper-hd-wallpapers-630446878.jpg");
}
.cid-vaiEwwVbtN {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-vaiEwwVbtN nav.navbar {
  position: fixed;
}
.cid-vaiEwwVbtN .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vaiEwwVbtN .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-vaiEwwVbtN .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-vaiEwwVbtN .dropdown-item:hover,
.cid-vaiEwwVbtN .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-vaiEwwVbtN .dropdown-item:hover span {
  color: white;
}
.cid-vaiEwwVbtN .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vaiEwwVbtN .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vaiEwwVbtN .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vaiEwwVbtN .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vaiEwwVbtN .nav-link {
  position: relative;
}
.cid-vaiEwwVbtN .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-vaiEwwVbtN .container {
    flex-wrap: wrap;
  }
}
.cid-vaiEwwVbtN .container-fluid {
  flex-wrap: nowrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-vaiEwwVbtN .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-vaiEwwVbtN .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vaiEwwVbtN .dropdown-menu,
.cid-vaiEwwVbtN .navbar.opened {
  background: #ff0000 !important;
}
.cid-vaiEwwVbtN .nav-item:focus,
.cid-vaiEwwVbtN .nav-link:focus {
  outline: none;
}
.cid-vaiEwwVbtN .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vaiEwwVbtN .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vaiEwwVbtN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vaiEwwVbtN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vaiEwwVbtN .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vaiEwwVbtN .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vaiEwwVbtN .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ff0000;
}
.cid-vaiEwwVbtN .navbar.opened {
  transition: all 0.3s;
}
.cid-vaiEwwVbtN .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vaiEwwVbtN .navbar .navbar-logo img {
  width: auto;
}
.cid-vaiEwwVbtN .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vaiEwwVbtN .navbar.collapsed {
  justify-content: center;
}
.cid-vaiEwwVbtN .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vaiEwwVbtN .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vaiEwwVbtN .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-vaiEwwVbtN .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vaiEwwVbtN .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vaiEwwVbtN .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-vaiEwwVbtN .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vaiEwwVbtN .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vaiEwwVbtN .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vaiEwwVbtN .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vaiEwwVbtN .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vaiEwwVbtN .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vaiEwwVbtN .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vaiEwwVbtN .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-vaiEwwVbtN .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vaiEwwVbtN .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vaiEwwVbtN .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vaiEwwVbtN .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vaiEwwVbtN .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vaiEwwVbtN .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-vaiEwwVbtN .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-vaiEwwVbtN .navbar.navbar-short {
  min-height: 60px;
}
.cid-vaiEwwVbtN .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vaiEwwVbtN .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-vaiEwwVbtN .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-vaiEwwVbtN .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vaiEwwVbtN .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vaiEwwVbtN .dropdown-item.active,
.cid-vaiEwwVbtN .dropdown-item:active {
  background-color: transparent;
}
.cid-vaiEwwVbtN .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vaiEwwVbtN .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vaiEwwVbtN .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vaiEwwVbtN .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ff0000;
}
.cid-vaiEwwVbtN .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vaiEwwVbtN .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vaiEwwVbtN ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vaiEwwVbtN .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vaiEwwVbtN button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-vaiEwwVbtN button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-vaiEwwVbtN button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vaiEwwVbtN button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vaiEwwVbtN button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vaiEwwVbtN button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vaiEwwVbtN nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vaiEwwVbtN nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vaiEwwVbtN nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vaiEwwVbtN nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vaiEwwVbtN .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-vaiEwwVbtN a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vaiEwwVbtN .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-vaiEwwVbtN .navbar {
    height: 70px;
  }
  .cid-vaiEwwVbtN .navbar.opened {
    height: auto;
  }
  .cid-vaiEwwVbtN .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uXg42rkUt2 {
  padding-top: 10rem;
  padding-bottom: 2rem;
  background-color: #6600ff;
}
.cid-uXg42rrKdM {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uXg42rrKdM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uXg42rrKdM .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-uXg42rrKdM .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uXg42rrKdM .row {
  flex-direction: row-reverse;
}
.cid-uXg42rrKdM img {
  width: 100%;
}
.cid-uXg42rC5Mo {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #4f5153;
}
.cid-uXg42rC5Mo .mbr-fallback-image.disabled {
  display: none;
}
.cid-uXg42rC5Mo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uXg42rC5Mo .item-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-uXg42rC5Mo .item-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uXg42rC5Mo .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-uXg42rC5Mo .card-title {
  color: #ffffff;
  text-align: justify;
}
.cid-uXg42rR37b {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #6600ff;
}
.cid-uXg42rXlCF {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uXg42rXlCF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uXg42rXlCF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uXg42rXlCF .timeline-element {
  position: relative;
}
.cid-uXg42rXlCF .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uXg42rXlCF .iconBackground {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #6592e6;
  top: 30px;
  margin-left: -9px;
  padding: 0;
}
@media (max-width: 767px) {
  .cid-uXg42rXlCF .iconBackground {
    left: 15px;
  }
}
@media (min-width: 768px) {
  .cid-uXg42rXlCF .iconBackground {
    left: 50%;
  }
}
.cid-uXg42rXlCF .row {
  flex-direction: row-reverse;
}
.cid-uXg42rXlCF .row:after {
  content: "";
  position: absolute;
  background-color: #6592e6;
  width: 2px;
  top: 50px;
  height: calc(100% - 10px);
}
@media (max-width: 767px) {
  .cid-uXg42rXlCF .row:after {
    left: 15px;
  }
}
@media (min-width: 768px) {
  .cid-uXg42rXlCF .row:after {
    left: 50%;
  }
}
.cid-uXg42rXlCF .row:nth-child(even) .mbr-timeline-date {
  text-align: right;
}
@media (max-width: 767px) {
  .cid-uXg42rXlCF .row:nth-child(even) {
    flex-direction: column-reverse;
  }
}
@media (max-width: 767px) {
  .cid-uXg42rXlCF .timeline-date-wrapper,
  .cid-uXg42rXlCF .timeline-text-wrapper {
    padding: 0rem;
    padding-left: 2rem;
  }
  .cid-uXg42rXlCF .mbr-timeline-date {
    text-align: left !important;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uXg42rXlCF .timeline-date-wrapper,
  .cid-uXg42rXlCF .timeline-text-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uXg42rXlCF .timeline-date-wrapper,
  .cid-uXg42rXlCF .timeline-text-wrapper {
    padding: 2rem;
  }
}
.cid-uXg42sxvcI {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #6600ff;
}
.cid-uXg42sRFQB {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-uXg42sRFQB .mbr-fallback-image.disabled {
  display: none;
}
.cid-uXg42sRFQB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uXg42sRFQB .bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-uXg42sRFQB .bg-facebook:hover {
  background: #0b60cb;
}
.cid-uXg42sRFQB .bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-uXg42sRFQB .bg-twitter:hover {
  background: #0c85d0;
}
.cid-uXg42sRFQB .bg-youtube {
  background: #ff0000;
  color: #ffffff;
}
.cid-uXg42sRFQB .bg-youtube:hover {
  background: #cc0000;
}
.cid-uXg42sRFQB .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-uXg42sRFQB [class^="socicon-"]:before,
.cid-uXg42sRFQB [class*=" socicon-"]:before {
  line-height: 55px;
  padding: .6rem;
}
.cid-uXg42sRFQB .mbr-section-title,
.cid-uXg42sRFQB .social-list {
  color: #ffffff;
}
.cid-uXg42t9032 {
  padding-top: 10rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/cool-music-wallpaper-hd-wallpapers-630446878.jpg");
}
.cid-vaiEwwVbtN {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-vaiEwwVbtN nav.navbar {
  position: fixed;
}
.cid-vaiEwwVbtN .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vaiEwwVbtN .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-vaiEwwVbtN .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-vaiEwwVbtN .dropdown-item:hover,
.cid-vaiEwwVbtN .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-vaiEwwVbtN .dropdown-item:hover span {
  color: white;
}
.cid-vaiEwwVbtN .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vaiEwwVbtN .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vaiEwwVbtN .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vaiEwwVbtN .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vaiEwwVbtN .nav-link {
  position: relative;
}
.cid-vaiEwwVbtN .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-vaiEwwVbtN .container {
    flex-wrap: wrap;
  }
}
.cid-vaiEwwVbtN .container-fluid {
  flex-wrap: nowrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-vaiEwwVbtN .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-vaiEwwVbtN .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vaiEwwVbtN .dropdown-menu,
.cid-vaiEwwVbtN .navbar.opened {
  background: #ff0000 !important;
}
.cid-vaiEwwVbtN .nav-item:focus,
.cid-vaiEwwVbtN .nav-link:focus {
  outline: none;
}
.cid-vaiEwwVbtN .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vaiEwwVbtN .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vaiEwwVbtN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vaiEwwVbtN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vaiEwwVbtN .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vaiEwwVbtN .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vaiEwwVbtN .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ff0000;
}
.cid-vaiEwwVbtN .navbar.opened {
  transition: all 0.3s;
}
.cid-vaiEwwVbtN .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vaiEwwVbtN .navbar .navbar-logo img {
  width: auto;
}
.cid-vaiEwwVbtN .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vaiEwwVbtN .navbar.collapsed {
  justify-content: center;
}
.cid-vaiEwwVbtN .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vaiEwwVbtN .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vaiEwwVbtN .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-vaiEwwVbtN .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vaiEwwVbtN .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vaiEwwVbtN .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-vaiEwwVbtN .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vaiEwwVbtN .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vaiEwwVbtN .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vaiEwwVbtN .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vaiEwwVbtN .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vaiEwwVbtN .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vaiEwwVbtN .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vaiEwwVbtN .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-vaiEwwVbtN .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vaiEwwVbtN .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vaiEwwVbtN .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vaiEwwVbtN .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vaiEwwVbtN .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vaiEwwVbtN .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-vaiEwwVbtN .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-vaiEwwVbtN .navbar.navbar-short {
  min-height: 60px;
}
.cid-vaiEwwVbtN .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vaiEwwVbtN .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-vaiEwwVbtN .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-vaiEwwVbtN .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vaiEwwVbtN .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vaiEwwVbtN .dropdown-item.active,
.cid-vaiEwwVbtN .dropdown-item:active {
  background-color: transparent;
}
.cid-vaiEwwVbtN .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vaiEwwVbtN .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vaiEwwVbtN .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vaiEwwVbtN .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ff0000;
}
.cid-vaiEwwVbtN .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vaiEwwVbtN .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vaiEwwVbtN ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vaiEwwVbtN .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vaiEwwVbtN button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-vaiEwwVbtN button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-vaiEwwVbtN button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vaiEwwVbtN button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vaiEwwVbtN button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vaiEwwVbtN button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vaiEwwVbtN nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vaiEwwVbtN nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vaiEwwVbtN nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vaiEwwVbtN nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vaiEwwVbtN .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-vaiEwwVbtN a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vaiEwwVbtN .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-vaiEwwVbtN .navbar {
    height: 70px;
  }
  .cid-vaiEwwVbtN .navbar.opened {
    height: auto;
  }
  .cid-vaiEwwVbtN .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uXg71VMcbj {
  padding-top: 10rem;
  padding-bottom: 2rem;
  background-color: #6600ff;
}
.cid-uXg71VTOch {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uXg71VTOch .mbr-fallback-image.disabled {
  display: none;
}
.cid-uXg71VTOch .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-uXg71VTOch .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uXg71VTOch .row {
  flex-direction: row-reverse;
}
.cid-uXg71VTOch img {
  width: 100%;
}
.cid-uXg71W4o33 {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #232323;
}
.cid-uXg71W4o33 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uXg71W4o33 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uXg71W4o33 .item-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-uXg71W4o33 .item-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uXg71W4o33 .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-uXg71W4o33 .card-title {
  color: #ffffff;
  text-align: justify;
}
.cid-uXg71WfDbJ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #6600ff;
}
.cid-uXg71Wm1rr {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uXg71Wm1rr .mbr-fallback-image.disabled {
  display: none;
}
.cid-uXg71Wm1rr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uXg71Wm1rr .timeline-element {
  position: relative;
}
.cid-uXg71Wm1rr .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uXg71Wm1rr .iconBackground {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #6592e6;
  top: 30px;
  margin-left: -9px;
  padding: 0;
}
@media (max-width: 767px) {
  .cid-uXg71Wm1rr .iconBackground {
    left: 15px;
  }
}
@media (min-width: 768px) {
  .cid-uXg71Wm1rr .iconBackground {
    left: 50%;
  }
}
.cid-uXg71Wm1rr .row {
  flex-direction: row-reverse;
}
.cid-uXg71Wm1rr .row:after {
  content: "";
  position: absolute;
  background-color: #6592e6;
  width: 2px;
  top: 50px;
  height: calc(100% - 10px);
}
@media (max-width: 767px) {
  .cid-uXg71Wm1rr .row:after {
    left: 15px;
  }
}
@media (min-width: 768px) {
  .cid-uXg71Wm1rr .row:after {
    left: 50%;
  }
}
.cid-uXg71Wm1rr .row:nth-child(even) .mbr-timeline-date {
  text-align: right;
}
@media (max-width: 767px) {
  .cid-uXg71Wm1rr .row:nth-child(even) {
    flex-direction: column-reverse;
  }
}
@media (max-width: 767px) {
  .cid-uXg71Wm1rr .timeline-date-wrapper,
  .cid-uXg71Wm1rr .timeline-text-wrapper {
    padding: 0rem;
    padding-left: 2rem;
  }
  .cid-uXg71Wm1rr .mbr-timeline-date {
    text-align: left !important;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uXg71Wm1rr .timeline-date-wrapper,
  .cid-uXg71Wm1rr .timeline-text-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uXg71Wm1rr .timeline-date-wrapper,
  .cid-uXg71Wm1rr .timeline-text-wrapper {
    padding: 2rem;
  }
}
.cid-uXg71WVRrn {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #6600ff;
}
.cid-uXg71XeVso {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-uXg71XeVso .mbr-fallback-image.disabled {
  display: none;
}
.cid-uXg71XeVso .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uXg71XeVso .bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-uXg71XeVso .bg-facebook:hover {
  background: #0b60cb;
}
.cid-uXg71XeVso .bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-uXg71XeVso .bg-twitter:hover {
  background: #0c85d0;
}
.cid-uXg71XeVso .bg-youtube {
  background: #ff0000;
  color: #ffffff;
}
.cid-uXg71XeVso .bg-youtube:hover {
  background: #cc0000;
}
.cid-uXg71XeVso .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-uXg71XeVso [class^="socicon-"]:before,
.cid-uXg71XeVso [class*=" socicon-"]:before {
  line-height: 55px;
  padding: .6rem;
}
.cid-uXg71XeVso .mbr-section-title,
.cid-uXg71XeVso .social-list {
  color: #ffffff;
}
.cid-uXg71Xv5Oy {
  padding-top: 10rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/cool-music-wallpaper-hd-wallpapers-630446878.jpg");
}
.cid-vaiEwwVbtN {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-vaiEwwVbtN nav.navbar {
  position: fixed;
}
.cid-vaiEwwVbtN .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vaiEwwVbtN .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-vaiEwwVbtN .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-vaiEwwVbtN .dropdown-item:hover,
.cid-vaiEwwVbtN .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-vaiEwwVbtN .dropdown-item:hover span {
  color: white;
}
.cid-vaiEwwVbtN .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vaiEwwVbtN .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vaiEwwVbtN .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vaiEwwVbtN .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vaiEwwVbtN .nav-link {
  position: relative;
}
.cid-vaiEwwVbtN .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-vaiEwwVbtN .container {
    flex-wrap: wrap;
  }
}
.cid-vaiEwwVbtN .container-fluid {
  flex-wrap: nowrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-vaiEwwVbtN .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-vaiEwwVbtN .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vaiEwwVbtN .dropdown-menu,
.cid-vaiEwwVbtN .navbar.opened {
  background: #ff0000 !important;
}
.cid-vaiEwwVbtN .nav-item:focus,
.cid-vaiEwwVbtN .nav-link:focus {
  outline: none;
}
.cid-vaiEwwVbtN .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vaiEwwVbtN .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vaiEwwVbtN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vaiEwwVbtN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vaiEwwVbtN .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vaiEwwVbtN .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vaiEwwVbtN .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ff0000;
}
.cid-vaiEwwVbtN .navbar.opened {
  transition: all 0.3s;
}
.cid-vaiEwwVbtN .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vaiEwwVbtN .navbar .navbar-logo img {
  width: auto;
}
.cid-vaiEwwVbtN .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vaiEwwVbtN .navbar.collapsed {
  justify-content: center;
}
.cid-vaiEwwVbtN .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vaiEwwVbtN .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vaiEwwVbtN .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-vaiEwwVbtN .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vaiEwwVbtN .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vaiEwwVbtN .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-vaiEwwVbtN .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vaiEwwVbtN .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vaiEwwVbtN .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vaiEwwVbtN .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vaiEwwVbtN .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vaiEwwVbtN .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vaiEwwVbtN .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vaiEwwVbtN .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-vaiEwwVbtN .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vaiEwwVbtN .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vaiEwwVbtN .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vaiEwwVbtN .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vaiEwwVbtN .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vaiEwwVbtN .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-vaiEwwVbtN .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-vaiEwwVbtN .navbar.navbar-short {
  min-height: 60px;
}
.cid-vaiEwwVbtN .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vaiEwwVbtN .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-vaiEwwVbtN .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-vaiEwwVbtN .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vaiEwwVbtN .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vaiEwwVbtN .dropdown-item.active,
.cid-vaiEwwVbtN .dropdown-item:active {
  background-color: transparent;
}
.cid-vaiEwwVbtN .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vaiEwwVbtN .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vaiEwwVbtN .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vaiEwwVbtN .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ff0000;
}
.cid-vaiEwwVbtN .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vaiEwwVbtN .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vaiEwwVbtN ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vaiEwwVbtN .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vaiEwwVbtN button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-vaiEwwVbtN button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-vaiEwwVbtN button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vaiEwwVbtN button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vaiEwwVbtN button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vaiEwwVbtN button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vaiEwwVbtN nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vaiEwwVbtN nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vaiEwwVbtN nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vaiEwwVbtN nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vaiEwwVbtN .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-vaiEwwVbtN a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vaiEwwVbtN .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-vaiEwwVbtN .navbar {
    height: 70px;
  }
  .cid-vaiEwwVbtN .navbar.opened {
    height: auto;
  }
  .cid-vaiEwwVbtN .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uXg9TwUtf4 {
  padding-top: 10rem;
  padding-bottom: 2rem;
  background-color: #6600ff;
}
.cid-uXg9Tx1KYK {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uXg9Tx1KYK .mbr-fallback-image.disabled {
  display: none;
}
.cid-uXg9Tx1KYK .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-uXg9Tx1KYK .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uXg9Tx1KYK .row {
  flex-direction: row-reverse;
}
.cid-uXg9Tx1KYK img {
  width: 100%;
}
.cid-uXg9Txd7Wm {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #232323;
}
.cid-uXg9Txd7Wm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uXg9Txd7Wm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uXg9Txd7Wm .item-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-uXg9Txd7Wm .item-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uXg9Txd7Wm .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-uXg9Txd7Wm .card-title {
  color: #ffffff;
  text-align: justify;
}
.cid-uXg9TxoQ36 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #6600ff;
}
.cid-uXg9Txu4Ui {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uXg9Txu4Ui .mbr-fallback-image.disabled {
  display: none;
}
.cid-uXg9Txu4Ui .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uXg9Txu4Ui .timeline-element {
  position: relative;
}
.cid-uXg9Txu4Ui .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uXg9Txu4Ui .iconBackground {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #6592e6;
  top: 30px;
  margin-left: -9px;
  padding: 0;
}
@media (max-width: 767px) {
  .cid-uXg9Txu4Ui .iconBackground {
    left: 15px;
  }
}
@media (min-width: 768px) {
  .cid-uXg9Txu4Ui .iconBackground {
    left: 50%;
  }
}
.cid-uXg9Txu4Ui .row {
  flex-direction: row-reverse;
}
.cid-uXg9Txu4Ui .row:after {
  content: "";
  position: absolute;
  background-color: #6592e6;
  width: 2px;
  top: 50px;
  height: calc(100% - 10px);
}
@media (max-width: 767px) {
  .cid-uXg9Txu4Ui .row:after {
    left: 15px;
  }
}
@media (min-width: 768px) {
  .cid-uXg9Txu4Ui .row:after {
    left: 50%;
  }
}
.cid-uXg9Txu4Ui .row:nth-child(even) .mbr-timeline-date {
  text-align: right;
}
@media (max-width: 767px) {
  .cid-uXg9Txu4Ui .row:nth-child(even) {
    flex-direction: column-reverse;
  }
}
@media (max-width: 767px) {
  .cid-uXg9Txu4Ui .timeline-date-wrapper,
  .cid-uXg9Txu4Ui .timeline-text-wrapper {
    padding: 0rem;
    padding-left: 2rem;
  }
  .cid-uXg9Txu4Ui .mbr-timeline-date {
    text-align: left !important;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uXg9Txu4Ui .timeline-date-wrapper,
  .cid-uXg9Txu4Ui .timeline-text-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uXg9Txu4Ui .timeline-date-wrapper,
  .cid-uXg9Txu4Ui .timeline-text-wrapper {
    padding: 2rem;
  }
}
.cid-uXg9Ty4zyU {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #6600ff;
}
.cid-uXg9TymBiY {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-uXg9TymBiY .mbr-fallback-image.disabled {
  display: none;
}
.cid-uXg9TymBiY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uXg9TymBiY .bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-uXg9TymBiY .bg-facebook:hover {
  background: #0b60cb;
}
.cid-uXg9TymBiY .bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-uXg9TymBiY .bg-twitter:hover {
  background: #0c85d0;
}
.cid-uXg9TymBiY .bg-youtube {
  background: #ff0000;
  color: #ffffff;
}
.cid-uXg9TymBiY .bg-youtube:hover {
  background: #cc0000;
}
.cid-uXg9TymBiY .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-uXg9TymBiY [class^="socicon-"]:before,
.cid-uXg9TymBiY [class*=" socicon-"]:before {
  line-height: 55px;
  padding: .6rem;
}
.cid-uXg9TymBiY .mbr-section-title,
.cid-uXg9TymBiY .social-list {
  color: #ffffff;
}
.cid-uXg9TyD4IA {
  padding-top: 10rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/cool-music-wallpaper-hd-wallpapers-630446878.jpg");
}
.cid-vaiEwwVbtN {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-vaiEwwVbtN nav.navbar {
  position: fixed;
}
.cid-vaiEwwVbtN .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vaiEwwVbtN .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-vaiEwwVbtN .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-vaiEwwVbtN .dropdown-item:hover,
.cid-vaiEwwVbtN .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-vaiEwwVbtN .dropdown-item:hover span {
  color: white;
}
.cid-vaiEwwVbtN .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vaiEwwVbtN .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vaiEwwVbtN .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vaiEwwVbtN .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vaiEwwVbtN .nav-link {
  position: relative;
}
.cid-vaiEwwVbtN .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-vaiEwwVbtN .container {
    flex-wrap: wrap;
  }
}
.cid-vaiEwwVbtN .container-fluid {
  flex-wrap: nowrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-vaiEwwVbtN .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-vaiEwwVbtN .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vaiEwwVbtN .dropdown-menu,
.cid-vaiEwwVbtN .navbar.opened {
  background: #ff0000 !important;
}
.cid-vaiEwwVbtN .nav-item:focus,
.cid-vaiEwwVbtN .nav-link:focus {
  outline: none;
}
.cid-vaiEwwVbtN .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vaiEwwVbtN .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vaiEwwVbtN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vaiEwwVbtN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vaiEwwVbtN .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vaiEwwVbtN .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vaiEwwVbtN .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ff0000;
}
.cid-vaiEwwVbtN .navbar.opened {
  transition: all 0.3s;
}
.cid-vaiEwwVbtN .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vaiEwwVbtN .navbar .navbar-logo img {
  width: auto;
}
.cid-vaiEwwVbtN .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vaiEwwVbtN .navbar.collapsed {
  justify-content: center;
}
.cid-vaiEwwVbtN .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vaiEwwVbtN .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vaiEwwVbtN .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-vaiEwwVbtN .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vaiEwwVbtN .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vaiEwwVbtN .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-vaiEwwVbtN .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vaiEwwVbtN .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vaiEwwVbtN .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vaiEwwVbtN .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vaiEwwVbtN .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vaiEwwVbtN .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vaiEwwVbtN .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vaiEwwVbtN .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-vaiEwwVbtN .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vaiEwwVbtN .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vaiEwwVbtN .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vaiEwwVbtN .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vaiEwwVbtN .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vaiEwwVbtN .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-vaiEwwVbtN .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-vaiEwwVbtN .navbar.navbar-short {
  min-height: 60px;
}
.cid-vaiEwwVbtN .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vaiEwwVbtN .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-vaiEwwVbtN .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-vaiEwwVbtN .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vaiEwwVbtN .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vaiEwwVbtN .dropdown-item.active,
.cid-vaiEwwVbtN .dropdown-item:active {
  background-color: transparent;
}
.cid-vaiEwwVbtN .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vaiEwwVbtN .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vaiEwwVbtN .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vaiEwwVbtN .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ff0000;
}
.cid-vaiEwwVbtN .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vaiEwwVbtN .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vaiEwwVbtN ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vaiEwwVbtN .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vaiEwwVbtN button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-vaiEwwVbtN button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-vaiEwwVbtN button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vaiEwwVbtN button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vaiEwwVbtN button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vaiEwwVbtN button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vaiEwwVbtN nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vaiEwwVbtN nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vaiEwwVbtN nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vaiEwwVbtN nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vaiEwwVbtN .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-vaiEwwVbtN a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vaiEwwVbtN .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-vaiEwwVbtN .navbar {
    height: 70px;
  }
  .cid-vaiEwwVbtN .navbar.opened {
    height: auto;
  }
  .cid-vaiEwwVbtN .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uXgdpXrLJD {
  padding-top: 10rem;
  padding-bottom: 2rem;
  background-color: #6600ff;
}
.cid-uXgdpXx0E9 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uXgdpXx0E9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uXgdpXx0E9 .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-uXgdpXx0E9 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uXgdpXx0E9 .row {
  flex-direction: row-reverse;
}
.cid-uXgdpXx0E9 img {
  width: 100%;
}
.cid-uXgdpXIS1U {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #232323;
}
.cid-uXgdpXIS1U .mbr-fallback-image.disabled {
  display: none;
}
.cid-uXgdpXIS1U .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uXgdpXIS1U .item-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-uXgdpXIS1U .item-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uXgdpXIS1U .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-uXgdpXIS1U .card-title {
  color: #ffffff;
  text-align: justify;
}
.cid-uXgdpXT441 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #6600ff;
}
.cid-uXgdpY0bx4 {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uXgdpY0bx4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uXgdpY0bx4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uXgdpY0bx4 .timeline-element {
  position: relative;
}
.cid-uXgdpY0bx4 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uXgdpY0bx4 .iconBackground {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #6592e6;
  top: 30px;
  margin-left: -9px;
  padding: 0;
}
@media (max-width: 767px) {
  .cid-uXgdpY0bx4 .iconBackground {
    left: 15px;
  }
}
@media (min-width: 768px) {
  .cid-uXgdpY0bx4 .iconBackground {
    left: 50%;
  }
}
.cid-uXgdpY0bx4 .row {
  flex-direction: row-reverse;
}
.cid-uXgdpY0bx4 .row:after {
  content: "";
  position: absolute;
  background-color: #6592e6;
  width: 2px;
  top: 50px;
  height: calc(100% - 10px);
}
@media (max-width: 767px) {
  .cid-uXgdpY0bx4 .row:after {
    left: 15px;
  }
}
@media (min-width: 768px) {
  .cid-uXgdpY0bx4 .row:after {
    left: 50%;
  }
}
.cid-uXgdpY0bx4 .row:nth-child(even) .mbr-timeline-date {
  text-align: right;
}
@media (max-width: 767px) {
  .cid-uXgdpY0bx4 .row:nth-child(even) {
    flex-direction: column-reverse;
  }
}
@media (max-width: 767px) {
  .cid-uXgdpY0bx4 .timeline-date-wrapper,
  .cid-uXgdpY0bx4 .timeline-text-wrapper {
    padding: 0rem;
    padding-left: 2rem;
  }
  .cid-uXgdpY0bx4 .mbr-timeline-date {
    text-align: left !important;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uXgdpY0bx4 .timeline-date-wrapper,
  .cid-uXgdpY0bx4 .timeline-text-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uXgdpY0bx4 .timeline-date-wrapper,
  .cid-uXgdpY0bx4 .timeline-text-wrapper {
    padding: 2rem;
  }
}
.cid-uXgdpYycl0 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #6600ff;
}
.cid-uXgdpYQwxu {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-uXgdpYQwxu .mbr-fallback-image.disabled {
  display: none;
}
.cid-uXgdpYQwxu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uXgdpYQwxu .bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-uXgdpYQwxu .bg-facebook:hover {
  background: #0b60cb;
}
.cid-uXgdpYQwxu .bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-uXgdpYQwxu .bg-twitter:hover {
  background: #0c85d0;
}
.cid-uXgdpYQwxu .bg-youtube {
  background: #ff0000;
  color: #ffffff;
}
.cid-uXgdpYQwxu .bg-youtube:hover {
  background: #cc0000;
}
.cid-uXgdpYQwxu .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-uXgdpYQwxu [class^="socicon-"]:before,
.cid-uXgdpYQwxu [class*=" socicon-"]:before {
  line-height: 55px;
  padding: .6rem;
}
.cid-uXgdpYQwxu .mbr-section-title,
.cid-uXgdpYQwxu .social-list {
  color: #ffffff;
}
.cid-uXgdpZ6mvV {
  padding-top: 10rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/cool-music-wallpaper-hd-wallpapers-630446878.jpg");
}
.cid-vaiEwwVbtN {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-vaiEwwVbtN nav.navbar {
  position: fixed;
}
.cid-vaiEwwVbtN .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vaiEwwVbtN .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-vaiEwwVbtN .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-vaiEwwVbtN .dropdown-item:hover,
.cid-vaiEwwVbtN .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-vaiEwwVbtN .dropdown-item:hover span {
  color: white;
}
.cid-vaiEwwVbtN .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vaiEwwVbtN .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vaiEwwVbtN .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vaiEwwVbtN .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vaiEwwVbtN .nav-link {
  position: relative;
}
.cid-vaiEwwVbtN .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-vaiEwwVbtN .container {
    flex-wrap: wrap;
  }
}
.cid-vaiEwwVbtN .container-fluid {
  flex-wrap: nowrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-vaiEwwVbtN .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-vaiEwwVbtN .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vaiEwwVbtN .dropdown-menu,
.cid-vaiEwwVbtN .navbar.opened {
  background: #ff0000 !important;
}
.cid-vaiEwwVbtN .nav-item:focus,
.cid-vaiEwwVbtN .nav-link:focus {
  outline: none;
}
.cid-vaiEwwVbtN .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vaiEwwVbtN .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vaiEwwVbtN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vaiEwwVbtN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vaiEwwVbtN .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vaiEwwVbtN .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vaiEwwVbtN .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ff0000;
}
.cid-vaiEwwVbtN .navbar.opened {
  transition: all 0.3s;
}
.cid-vaiEwwVbtN .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vaiEwwVbtN .navbar .navbar-logo img {
  width: auto;
}
.cid-vaiEwwVbtN .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vaiEwwVbtN .navbar.collapsed {
  justify-content: center;
}
.cid-vaiEwwVbtN .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vaiEwwVbtN .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vaiEwwVbtN .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-vaiEwwVbtN .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vaiEwwVbtN .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vaiEwwVbtN .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-vaiEwwVbtN .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vaiEwwVbtN .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vaiEwwVbtN .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vaiEwwVbtN .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vaiEwwVbtN .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vaiEwwVbtN .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vaiEwwVbtN .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vaiEwwVbtN .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-vaiEwwVbtN .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vaiEwwVbtN .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vaiEwwVbtN .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vaiEwwVbtN .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vaiEwwVbtN .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vaiEwwVbtN .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-vaiEwwVbtN .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-vaiEwwVbtN .navbar.navbar-short {
  min-height: 60px;
}
.cid-vaiEwwVbtN .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vaiEwwVbtN .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-vaiEwwVbtN .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-vaiEwwVbtN .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vaiEwwVbtN .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vaiEwwVbtN .dropdown-item.active,
.cid-vaiEwwVbtN .dropdown-item:active {
  background-color: transparent;
}
.cid-vaiEwwVbtN .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vaiEwwVbtN .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vaiEwwVbtN .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vaiEwwVbtN .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ff0000;
}
.cid-vaiEwwVbtN .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vaiEwwVbtN .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vaiEwwVbtN ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vaiEwwVbtN .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vaiEwwVbtN button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-vaiEwwVbtN button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-vaiEwwVbtN button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vaiEwwVbtN button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vaiEwwVbtN button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vaiEwwVbtN button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vaiEwwVbtN nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vaiEwwVbtN nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vaiEwwVbtN nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vaiEwwVbtN nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vaiEwwVbtN .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-vaiEwwVbtN a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vaiEwwVbtN .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-vaiEwwVbtN .navbar {
    height: 70px;
  }
  .cid-vaiEwwVbtN .navbar.opened {
    height: auto;
  }
  .cid-vaiEwwVbtN .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uZxqOvNIOn {
  padding-top: 10rem;
  padding-bottom: 2rem;
  background-color: #fb0707;
}
.cid-uZxqOvU35z {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uZxqOvU35z .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZxqOvU35z .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-uZxqOvU35z .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uZxqOvU35z .row {
  flex-direction: row-reverse;
}
.cid-uZxqOvU35z img {
  width: 100%;
}
.cid-uZxqOw32q0 {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #232323;
}
.cid-uZxqOw32q0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZxqOw32q0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZxqOw32q0 .item-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-uZxqOw32q0 .item-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uZxqOw32q0 .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-uZxqOw32q0 .card-title {
  color: #ffffff;
  text-align: justify;
}
.cid-uZxqOwetCk {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fb0707;
}
.cid-uZxqOwlZ18 {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uZxqOwlZ18 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZxqOwlZ18 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZxqOwlZ18 .timeline-element {
  position: relative;
}
.cid-uZxqOwlZ18 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uZxqOwlZ18 .iconBackground {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #6592e6;
  top: 30px;
  margin-left: -9px;
  padding: 0;
}
@media (max-width: 767px) {
  .cid-uZxqOwlZ18 .iconBackground {
    left: 15px;
  }
}
@media (min-width: 768px) {
  .cid-uZxqOwlZ18 .iconBackground {
    left: 50%;
  }
}
.cid-uZxqOwlZ18 .row {
  flex-direction: row-reverse;
}
.cid-uZxqOwlZ18 .row:after {
  content: "";
  position: absolute;
  background-color: #6592e6;
  width: 2px;
  top: 50px;
  height: calc(100% - 10px);
}
@media (max-width: 767px) {
  .cid-uZxqOwlZ18 .row:after {
    left: 15px;
  }
}
@media (min-width: 768px) {
  .cid-uZxqOwlZ18 .row:after {
    left: 50%;
  }
}
.cid-uZxqOwlZ18 .row:nth-child(even) .mbr-timeline-date {
  text-align: right;
}
@media (max-width: 767px) {
  .cid-uZxqOwlZ18 .row:nth-child(even) {
    flex-direction: column-reverse;
  }
}
@media (max-width: 767px) {
  .cid-uZxqOwlZ18 .timeline-date-wrapper,
  .cid-uZxqOwlZ18 .timeline-text-wrapper {
    padding: 0rem;
    padding-left: 2rem;
  }
  .cid-uZxqOwlZ18 .mbr-timeline-date {
    text-align: left !important;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uZxqOwlZ18 .timeline-date-wrapper,
  .cid-uZxqOwlZ18 .timeline-text-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uZxqOwlZ18 .timeline-date-wrapper,
  .cid-uZxqOwlZ18 .timeline-text-wrapper {
    padding: 2rem;
  }
}
.cid-uZxqOwW7CU {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fb0707;
}
.cid-uZxqOxbIB7 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-uZxqOxbIB7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZxqOxbIB7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZxqOxbIB7 .bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-uZxqOxbIB7 .bg-facebook:hover {
  background: #0b60cb;
}
.cid-uZxqOxbIB7 .bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-uZxqOxbIB7 .bg-twitter:hover {
  background: #0c85d0;
}
.cid-uZxqOxbIB7 .bg-youtube {
  background: #ff0000;
  color: #ffffff;
}
.cid-uZxqOxbIB7 .bg-youtube:hover {
  background: #cc0000;
}
.cid-uZxqOxbIB7 .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-uZxqOxbIB7 [class^="socicon-"]:before,
.cid-uZxqOxbIB7 [class*=" socicon-"]:before {
  line-height: 55px;
  padding: .6rem;
}
.cid-uZxqOxbIB7 .mbr-section-title,
.cid-uZxqOxbIB7 .social-list {
  color: #ffffff;
}
.cid-uZxqOxvuRB {
  padding-top: 10rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/cool-music-wallpaper-hd-wallpapers-630446878.jpg");
}
.cid-vaiEwwVbtN {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-vaiEwwVbtN nav.navbar {
  position: fixed;
}
.cid-vaiEwwVbtN .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vaiEwwVbtN .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-vaiEwwVbtN .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-vaiEwwVbtN .dropdown-item:hover,
.cid-vaiEwwVbtN .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-vaiEwwVbtN .dropdown-item:hover span {
  color: white;
}
.cid-vaiEwwVbtN .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vaiEwwVbtN .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vaiEwwVbtN .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vaiEwwVbtN .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vaiEwwVbtN .nav-link {
  position: relative;
}
.cid-vaiEwwVbtN .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-vaiEwwVbtN .container {
    flex-wrap: wrap;
  }
}
.cid-vaiEwwVbtN .container-fluid {
  flex-wrap: nowrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-vaiEwwVbtN .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-vaiEwwVbtN .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vaiEwwVbtN .dropdown-menu,
.cid-vaiEwwVbtN .navbar.opened {
  background: #ff0000 !important;
}
.cid-vaiEwwVbtN .nav-item:focus,
.cid-vaiEwwVbtN .nav-link:focus {
  outline: none;
}
.cid-vaiEwwVbtN .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vaiEwwVbtN .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vaiEwwVbtN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vaiEwwVbtN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vaiEwwVbtN .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vaiEwwVbtN .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vaiEwwVbtN .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ff0000;
}
.cid-vaiEwwVbtN .navbar.opened {
  transition: all 0.3s;
}
.cid-vaiEwwVbtN .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vaiEwwVbtN .navbar .navbar-logo img {
  width: auto;
}
.cid-vaiEwwVbtN .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vaiEwwVbtN .navbar.collapsed {
  justify-content: center;
}
.cid-vaiEwwVbtN .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vaiEwwVbtN .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vaiEwwVbtN .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-vaiEwwVbtN .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vaiEwwVbtN .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vaiEwwVbtN .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-vaiEwwVbtN .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vaiEwwVbtN .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vaiEwwVbtN .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vaiEwwVbtN .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vaiEwwVbtN .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vaiEwwVbtN .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vaiEwwVbtN .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vaiEwwVbtN .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-vaiEwwVbtN .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vaiEwwVbtN .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vaiEwwVbtN .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vaiEwwVbtN .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vaiEwwVbtN .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vaiEwwVbtN .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-vaiEwwVbtN .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-vaiEwwVbtN .navbar.navbar-short {
  min-height: 60px;
}
.cid-vaiEwwVbtN .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vaiEwwVbtN .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-vaiEwwVbtN .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-vaiEwwVbtN .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vaiEwwVbtN .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vaiEwwVbtN .dropdown-item.active,
.cid-vaiEwwVbtN .dropdown-item:active {
  background-color: transparent;
}
.cid-vaiEwwVbtN .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vaiEwwVbtN .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vaiEwwVbtN .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vaiEwwVbtN .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ff0000;
}
.cid-vaiEwwVbtN .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vaiEwwVbtN .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vaiEwwVbtN ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vaiEwwVbtN .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vaiEwwVbtN button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-vaiEwwVbtN button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-vaiEwwVbtN button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vaiEwwVbtN button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vaiEwwVbtN button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vaiEwwVbtN button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vaiEwwVbtN nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vaiEwwVbtN nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vaiEwwVbtN nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vaiEwwVbtN nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vaiEwwVbtN .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-vaiEwwVbtN a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vaiEwwVbtN .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-vaiEwwVbtN .navbar {
    height: 70px;
  }
  .cid-vaiEwwVbtN .navbar.opened {
    height: auto;
  }
  .cid-vaiEwwVbtN .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uZxt4Uy9B1 {
  padding-top: 10rem;
  padding-bottom: 2rem;
  background-color: #fb0707;
}
.cid-uZxt4UIPka {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uZxt4UIPka .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZxt4UIPka .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-uZxt4UIPka .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uZxt4UIPka .row {
  flex-direction: row-reverse;
}
.cid-uZxt4UIPka img {
  width: 100%;
}
.cid-uZxt4UZ7sq {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #232323;
}
.cid-uZxt4UZ7sq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZxt4UZ7sq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZxt4UZ7sq .item-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-uZxt4UZ7sq .item-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uZxt4UZ7sq .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-uZxt4UZ7sq .card-title {
  color: #ffffff;
  text-align: justify;
}
.cid-uZxt4VfApp {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fb0707;
}
.cid-uZxt4Vm7dc {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uZxt4Vm7dc .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZxt4Vm7dc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZxt4Vm7dc .timeline-element {
  position: relative;
}
.cid-uZxt4Vm7dc .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uZxt4Vm7dc .iconBackground {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #6592e6;
  top: 30px;
  margin-left: -9px;
  padding: 0;
}
@media (max-width: 767px) {
  .cid-uZxt4Vm7dc .iconBackground {
    left: 15px;
  }
}
@media (min-width: 768px) {
  .cid-uZxt4Vm7dc .iconBackground {
    left: 50%;
  }
}
.cid-uZxt4Vm7dc .row {
  flex-direction: row-reverse;
}
.cid-uZxt4Vm7dc .row:after {
  content: "";
  position: absolute;
  background-color: #6592e6;
  width: 2px;
  top: 50px;
  height: calc(100% - 10px);
}
@media (max-width: 767px) {
  .cid-uZxt4Vm7dc .row:after {
    left: 15px;
  }
}
@media (min-width: 768px) {
  .cid-uZxt4Vm7dc .row:after {
    left: 50%;
  }
}
.cid-uZxt4Vm7dc .row:nth-child(even) .mbr-timeline-date {
  text-align: right;
}
@media (max-width: 767px) {
  .cid-uZxt4Vm7dc .row:nth-child(even) {
    flex-direction: column-reverse;
  }
}
@media (max-width: 767px) {
  .cid-uZxt4Vm7dc .timeline-date-wrapper,
  .cid-uZxt4Vm7dc .timeline-text-wrapper {
    padding: 0rem;
    padding-left: 2rem;
  }
  .cid-uZxt4Vm7dc .mbr-timeline-date {
    text-align: left !important;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uZxt4Vm7dc .timeline-date-wrapper,
  .cid-uZxt4Vm7dc .timeline-text-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uZxt4Vm7dc .timeline-date-wrapper,
  .cid-uZxt4Vm7dc .timeline-text-wrapper {
    padding: 2rem;
  }
}
.cid-uZxt4VUTSd {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fb0707;
}
.cid-uZxt4Wayb3 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-uZxt4Wayb3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZxt4Wayb3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZxt4Wayb3 .bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-uZxt4Wayb3 .bg-facebook:hover {
  background: #0b60cb;
}
.cid-uZxt4Wayb3 .bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-uZxt4Wayb3 .bg-twitter:hover {
  background: #0c85d0;
}
.cid-uZxt4Wayb3 .bg-youtube {
  background: #ff0000;
  color: #ffffff;
}
.cid-uZxt4Wayb3 .bg-youtube:hover {
  background: #cc0000;
}
.cid-uZxt4Wayb3 .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-uZxt4Wayb3 [class^="socicon-"]:before,
.cid-uZxt4Wayb3 [class*=" socicon-"]:before {
  line-height: 55px;
  padding: .6rem;
}
.cid-uZxt4Wayb3 .mbr-section-title,
.cid-uZxt4Wayb3 .social-list {
  color: #ffffff;
}
.cid-uZxt4WtmYa {
  padding-top: 10rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/cool-music-wallpaper-hd-wallpapers-630446878.jpg");
}
.cid-vaiEwwVbtN {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-vaiEwwVbtN nav.navbar {
  position: fixed;
}
.cid-vaiEwwVbtN .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vaiEwwVbtN .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-vaiEwwVbtN .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-vaiEwwVbtN .dropdown-item:hover,
.cid-vaiEwwVbtN .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-vaiEwwVbtN .dropdown-item:hover span {
  color: white;
}
.cid-vaiEwwVbtN .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vaiEwwVbtN .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vaiEwwVbtN .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vaiEwwVbtN .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vaiEwwVbtN .nav-link {
  position: relative;
}
.cid-vaiEwwVbtN .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-vaiEwwVbtN .container {
    flex-wrap: wrap;
  }
}
.cid-vaiEwwVbtN .container-fluid {
  flex-wrap: nowrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-vaiEwwVbtN .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-vaiEwwVbtN .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vaiEwwVbtN .dropdown-menu,
.cid-vaiEwwVbtN .navbar.opened {
  background: #ff0000 !important;
}
.cid-vaiEwwVbtN .nav-item:focus,
.cid-vaiEwwVbtN .nav-link:focus {
  outline: none;
}
.cid-vaiEwwVbtN .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vaiEwwVbtN .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vaiEwwVbtN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vaiEwwVbtN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vaiEwwVbtN .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vaiEwwVbtN .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vaiEwwVbtN .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ff0000;
}
.cid-vaiEwwVbtN .navbar.opened {
  transition: all 0.3s;
}
.cid-vaiEwwVbtN .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vaiEwwVbtN .navbar .navbar-logo img {
  width: auto;
}
.cid-vaiEwwVbtN .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vaiEwwVbtN .navbar.collapsed {
  justify-content: center;
}
.cid-vaiEwwVbtN .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vaiEwwVbtN .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vaiEwwVbtN .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-vaiEwwVbtN .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vaiEwwVbtN .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vaiEwwVbtN .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-vaiEwwVbtN .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vaiEwwVbtN .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vaiEwwVbtN .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vaiEwwVbtN .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vaiEwwVbtN .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vaiEwwVbtN .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vaiEwwVbtN .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vaiEwwVbtN .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-vaiEwwVbtN .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vaiEwwVbtN .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vaiEwwVbtN .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vaiEwwVbtN .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vaiEwwVbtN .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vaiEwwVbtN .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-vaiEwwVbtN .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-vaiEwwVbtN .navbar.navbar-short {
  min-height: 60px;
}
.cid-vaiEwwVbtN .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vaiEwwVbtN .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-vaiEwwVbtN .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-vaiEwwVbtN .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vaiEwwVbtN .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vaiEwwVbtN .dropdown-item.active,
.cid-vaiEwwVbtN .dropdown-item:active {
  background-color: transparent;
}
.cid-vaiEwwVbtN .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vaiEwwVbtN .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vaiEwwVbtN .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vaiEwwVbtN .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ff0000;
}
.cid-vaiEwwVbtN .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vaiEwwVbtN .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vaiEwwVbtN ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vaiEwwVbtN .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vaiEwwVbtN button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-vaiEwwVbtN button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-vaiEwwVbtN button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vaiEwwVbtN button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vaiEwwVbtN button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vaiEwwVbtN button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vaiEwwVbtN nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vaiEwwVbtN nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vaiEwwVbtN nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vaiEwwVbtN nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vaiEwwVbtN .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-vaiEwwVbtN a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vaiEwwVbtN .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-vaiEwwVbtN .navbar {
    height: 70px;
  }
  .cid-vaiEwwVbtN .navbar.opened {
    height: auto;
  }
  .cid-vaiEwwVbtN .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uZxvwJneas {
  padding-top: 10rem;
  padding-bottom: 2rem;
  background-color: #fb0707;
}
.cid-uZxvwJuiNy {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uZxvwJuiNy .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZxvwJuiNy .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-uZxvwJuiNy .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uZxvwJuiNy .row {
  flex-direction: row-reverse;
}
.cid-uZxvwJuiNy img {
  width: 100%;
}
.cid-uZxvwJI7G3 {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #232323;
}
.cid-uZxvwJI7G3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZxvwJI7G3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZxvwJI7G3 .item-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-uZxvwJI7G3 .item-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uZxvwJI7G3 .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-uZxvwJI7G3 .card-title {
  color: #ffffff;
  text-align: justify;
}
.cid-uZxvwJVy0n {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fb0707;
}
.cid-uZxvwK1Rrz {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uZxvwK1Rrz .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZxvwK1Rrz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZxvwK1Rrz .timeline-element {
  position: relative;
}
.cid-uZxvwK1Rrz .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uZxvwK1Rrz .iconBackground {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #6592e6;
  top: 30px;
  margin-left: -9px;
  padding: 0;
}
@media (max-width: 767px) {
  .cid-uZxvwK1Rrz .iconBackground {
    left: 15px;
  }
}
@media (min-width: 768px) {
  .cid-uZxvwK1Rrz .iconBackground {
    left: 50%;
  }
}
.cid-uZxvwK1Rrz .row {
  flex-direction: row-reverse;
}
.cid-uZxvwK1Rrz .row:after {
  content: "";
  position: absolute;
  background-color: #6592e6;
  width: 2px;
  top: 50px;
  height: calc(100% - 10px);
}
@media (max-width: 767px) {
  .cid-uZxvwK1Rrz .row:after {
    left: 15px;
  }
}
@media (min-width: 768px) {
  .cid-uZxvwK1Rrz .row:after {
    left: 50%;
  }
}
.cid-uZxvwK1Rrz .row:nth-child(even) .mbr-timeline-date {
  text-align: right;
}
@media (max-width: 767px) {
  .cid-uZxvwK1Rrz .row:nth-child(even) {
    flex-direction: column-reverse;
  }
}
@media (max-width: 767px) {
  .cid-uZxvwK1Rrz .timeline-date-wrapper,
  .cid-uZxvwK1Rrz .timeline-text-wrapper {
    padding: 0rem;
    padding-left: 2rem;
  }
  .cid-uZxvwK1Rrz .mbr-timeline-date {
    text-align: left !important;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uZxvwK1Rrz .timeline-date-wrapper,
  .cid-uZxvwK1Rrz .timeline-text-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uZxvwK1Rrz .timeline-date-wrapper,
  .cid-uZxvwK1Rrz .timeline-text-wrapper {
    padding: 2rem;
  }
}
.cid-uZxvwKB9J4 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fb0707;
}
.cid-uZxvwKYld0 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-uZxvwKYld0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZxvwKYld0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZxvwKYld0 .bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-uZxvwKYld0 .bg-facebook:hover {
  background: #0b60cb;
}
.cid-uZxvwKYld0 .bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-uZxvwKYld0 .bg-twitter:hover {
  background: #0c85d0;
}
.cid-uZxvwKYld0 .bg-youtube {
  background: #ff0000;
  color: #ffffff;
}
.cid-uZxvwKYld0 .bg-youtube:hover {
  background: #cc0000;
}
.cid-uZxvwKYld0 .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-uZxvwKYld0 [class^="socicon-"]:before,
.cid-uZxvwKYld0 [class*=" socicon-"]:before {
  line-height: 55px;
  padding: .6rem;
}
.cid-uZxvwKYld0 .mbr-section-title,
.cid-uZxvwKYld0 .social-list {
  color: #ffffff;
}
.cid-uZxvwLko0I {
  padding-top: 10rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/cool-music-wallpaper-hd-wallpapers-630446878.jpg");
}
.cid-vaiEwwVbtN {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-vaiEwwVbtN nav.navbar {
  position: fixed;
}
.cid-vaiEwwVbtN .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vaiEwwVbtN .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-vaiEwwVbtN .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-vaiEwwVbtN .dropdown-item:hover,
.cid-vaiEwwVbtN .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-vaiEwwVbtN .dropdown-item:hover span {
  color: white;
}
.cid-vaiEwwVbtN .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vaiEwwVbtN .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vaiEwwVbtN .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vaiEwwVbtN .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vaiEwwVbtN .nav-link {
  position: relative;
}
.cid-vaiEwwVbtN .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-vaiEwwVbtN .container {
    flex-wrap: wrap;
  }
}
.cid-vaiEwwVbtN .container-fluid {
  flex-wrap: nowrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-vaiEwwVbtN .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-vaiEwwVbtN .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vaiEwwVbtN .dropdown-menu,
.cid-vaiEwwVbtN .navbar.opened {
  background: #ff0000 !important;
}
.cid-vaiEwwVbtN .nav-item:focus,
.cid-vaiEwwVbtN .nav-link:focus {
  outline: none;
}
.cid-vaiEwwVbtN .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vaiEwwVbtN .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vaiEwwVbtN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vaiEwwVbtN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vaiEwwVbtN .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vaiEwwVbtN .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vaiEwwVbtN .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ff0000;
}
.cid-vaiEwwVbtN .navbar.opened {
  transition: all 0.3s;
}
.cid-vaiEwwVbtN .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vaiEwwVbtN .navbar .navbar-logo img {
  width: auto;
}
.cid-vaiEwwVbtN .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vaiEwwVbtN .navbar.collapsed {
  justify-content: center;
}
.cid-vaiEwwVbtN .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vaiEwwVbtN .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vaiEwwVbtN .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-vaiEwwVbtN .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vaiEwwVbtN .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vaiEwwVbtN .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-vaiEwwVbtN .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vaiEwwVbtN .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vaiEwwVbtN .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vaiEwwVbtN .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vaiEwwVbtN .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vaiEwwVbtN .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vaiEwwVbtN .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vaiEwwVbtN .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-vaiEwwVbtN .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vaiEwwVbtN .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vaiEwwVbtN .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vaiEwwVbtN .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vaiEwwVbtN .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vaiEwwVbtN .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-vaiEwwVbtN .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-vaiEwwVbtN .navbar.navbar-short {
  min-height: 60px;
}
.cid-vaiEwwVbtN .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vaiEwwVbtN .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-vaiEwwVbtN .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-vaiEwwVbtN .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vaiEwwVbtN .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vaiEwwVbtN .dropdown-item.active,
.cid-vaiEwwVbtN .dropdown-item:active {
  background-color: transparent;
}
.cid-vaiEwwVbtN .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vaiEwwVbtN .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vaiEwwVbtN .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vaiEwwVbtN .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ff0000;
}
.cid-vaiEwwVbtN .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vaiEwwVbtN .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vaiEwwVbtN ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vaiEwwVbtN .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vaiEwwVbtN button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-vaiEwwVbtN button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-vaiEwwVbtN button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vaiEwwVbtN button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vaiEwwVbtN button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vaiEwwVbtN button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vaiEwwVbtN nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vaiEwwVbtN nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vaiEwwVbtN nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vaiEwwVbtN nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vaiEwwVbtN .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-vaiEwwVbtN a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vaiEwwVbtN .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-vaiEwwVbtN .navbar {
    height: 70px;
  }
  .cid-vaiEwwVbtN .navbar.opened {
    height: auto;
  }
  .cid-vaiEwwVbtN .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uZxxw4EuFE {
  padding-top: 10rem;
  padding-bottom: 2rem;
  background-color: #fb0707;
}
.cid-uZxxw4LgsV {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uZxxw4LgsV .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZxxw4LgsV .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-uZxxw4LgsV .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uZxxw4LgsV .row {
  flex-direction: row-reverse;
}
.cid-uZxxw4LgsV img {
  width: 100%;
}
.cid-uZxxw4ZA7M {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #232323;
}
.cid-uZxxw4ZA7M .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZxxw4ZA7M .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZxxw4ZA7M .item-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-uZxxw4ZA7M .item-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uZxxw4ZA7M .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-uZxxw4ZA7M .card-title {
  color: #ffffff;
  text-align: justify;
}
.cid-uZxxw5bSBY {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fb0707;
}
.cid-uZxxw5iAPZ {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uZxxw5iAPZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZxxw5iAPZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZxxw5iAPZ .timeline-element {
  position: relative;
}
.cid-uZxxw5iAPZ .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uZxxw5iAPZ .iconBackground {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #6592e6;
  top: 30px;
  margin-left: -9px;
  padding: 0;
}
@media (max-width: 767px) {
  .cid-uZxxw5iAPZ .iconBackground {
    left: 15px;
  }
}
@media (min-width: 768px) {
  .cid-uZxxw5iAPZ .iconBackground {
    left: 50%;
  }
}
.cid-uZxxw5iAPZ .row {
  flex-direction: row-reverse;
}
.cid-uZxxw5iAPZ .row:after {
  content: "";
  position: absolute;
  background-color: #6592e6;
  width: 2px;
  top: 50px;
  height: calc(100% - 10px);
}
@media (max-width: 767px) {
  .cid-uZxxw5iAPZ .row:after {
    left: 15px;
  }
}
@media (min-width: 768px) {
  .cid-uZxxw5iAPZ .row:after {
    left: 50%;
  }
}
.cid-uZxxw5iAPZ .row:nth-child(even) .mbr-timeline-date {
  text-align: right;
}
@media (max-width: 767px) {
  .cid-uZxxw5iAPZ .row:nth-child(even) {
    flex-direction: column-reverse;
  }
}
@media (max-width: 767px) {
  .cid-uZxxw5iAPZ .timeline-date-wrapper,
  .cid-uZxxw5iAPZ .timeline-text-wrapper {
    padding: 0rem;
    padding-left: 2rem;
  }
  .cid-uZxxw5iAPZ .mbr-timeline-date {
    text-align: left !important;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uZxxw5iAPZ .timeline-date-wrapper,
  .cid-uZxxw5iAPZ .timeline-text-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uZxxw5iAPZ .timeline-date-wrapper,
  .cid-uZxxw5iAPZ .timeline-text-wrapper {
    padding: 2rem;
  }
}
.cid-uZxxw5QBSp {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fb0707;
}
.cid-uZxxw6bbpJ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-uZxxw6bbpJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZxxw6bbpJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZxxw6bbpJ .bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-uZxxw6bbpJ .bg-facebook:hover {
  background: #0b60cb;
}
.cid-uZxxw6bbpJ .bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-uZxxw6bbpJ .bg-twitter:hover {
  background: #0c85d0;
}
.cid-uZxxw6bbpJ .bg-youtube {
  background: #ff0000;
  color: #ffffff;
}
.cid-uZxxw6bbpJ .bg-youtube:hover {
  background: #cc0000;
}
.cid-uZxxw6bbpJ .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-uZxxw6bbpJ [class^="socicon-"]:before,
.cid-uZxxw6bbpJ [class*=" socicon-"]:before {
  line-height: 55px;
  padding: .6rem;
}
.cid-uZxxw6bbpJ .mbr-section-title,
.cid-uZxxw6bbpJ .social-list {
  color: #ffffff;
}
.cid-uZxxw6y7pg {
  padding-top: 10rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/cool-music-wallpaper-hd-wallpapers-630446878.jpg");
}
.cid-vaiEwwVbtN {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-vaiEwwVbtN nav.navbar {
  position: fixed;
}
.cid-vaiEwwVbtN .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vaiEwwVbtN .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-vaiEwwVbtN .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-vaiEwwVbtN .dropdown-item:hover,
.cid-vaiEwwVbtN .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-vaiEwwVbtN .dropdown-item:hover span {
  color: white;
}
.cid-vaiEwwVbtN .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vaiEwwVbtN .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vaiEwwVbtN .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vaiEwwVbtN .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vaiEwwVbtN .nav-link {
  position: relative;
}
.cid-vaiEwwVbtN .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-vaiEwwVbtN .container {
    flex-wrap: wrap;
  }
}
.cid-vaiEwwVbtN .container-fluid {
  flex-wrap: nowrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-vaiEwwVbtN .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-vaiEwwVbtN .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vaiEwwVbtN .dropdown-menu,
.cid-vaiEwwVbtN .navbar.opened {
  background: #ff0000 !important;
}
.cid-vaiEwwVbtN .nav-item:focus,
.cid-vaiEwwVbtN .nav-link:focus {
  outline: none;
}
.cid-vaiEwwVbtN .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vaiEwwVbtN .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vaiEwwVbtN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vaiEwwVbtN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vaiEwwVbtN .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vaiEwwVbtN .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vaiEwwVbtN .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ff0000;
}
.cid-vaiEwwVbtN .navbar.opened {
  transition: all 0.3s;
}
.cid-vaiEwwVbtN .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vaiEwwVbtN .navbar .navbar-logo img {
  width: auto;
}
.cid-vaiEwwVbtN .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vaiEwwVbtN .navbar.collapsed {
  justify-content: center;
}
.cid-vaiEwwVbtN .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vaiEwwVbtN .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vaiEwwVbtN .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-vaiEwwVbtN .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vaiEwwVbtN .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vaiEwwVbtN .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-vaiEwwVbtN .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vaiEwwVbtN .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vaiEwwVbtN .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vaiEwwVbtN .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vaiEwwVbtN .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vaiEwwVbtN .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vaiEwwVbtN .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vaiEwwVbtN .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-vaiEwwVbtN .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vaiEwwVbtN .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vaiEwwVbtN .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vaiEwwVbtN .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vaiEwwVbtN .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vaiEwwVbtN .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-vaiEwwVbtN .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-vaiEwwVbtN .navbar.navbar-short {
  min-height: 60px;
}
.cid-vaiEwwVbtN .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vaiEwwVbtN .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-vaiEwwVbtN .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-vaiEwwVbtN .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vaiEwwVbtN .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vaiEwwVbtN .dropdown-item.active,
.cid-vaiEwwVbtN .dropdown-item:active {
  background-color: transparent;
}
.cid-vaiEwwVbtN .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vaiEwwVbtN .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vaiEwwVbtN .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vaiEwwVbtN .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ff0000;
}
.cid-vaiEwwVbtN .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vaiEwwVbtN .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vaiEwwVbtN ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vaiEwwVbtN .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vaiEwwVbtN button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-vaiEwwVbtN button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-vaiEwwVbtN button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vaiEwwVbtN button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vaiEwwVbtN button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vaiEwwVbtN button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vaiEwwVbtN nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vaiEwwVbtN nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vaiEwwVbtN nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vaiEwwVbtN nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vaiEwwVbtN .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-vaiEwwVbtN a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vaiEwwVbtN .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-vaiEwwVbtN .navbar {
    height: 70px;
  }
  .cid-vaiEwwVbtN .navbar.opened {
    height: auto;
  }
  .cid-vaiEwwVbtN .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uZxzKU3xsI {
  padding-top: 10rem;
  padding-bottom: 2rem;
  background-color: #fb0707;
}
.cid-uZxzKUdjat {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uZxzKUdjat .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZxzKUdjat .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-uZxzKUdjat .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uZxzKUdjat .row {
  flex-direction: row-reverse;
}
.cid-uZxzKUdjat img {
  width: 100%;
}
.cid-uZxzKUt9h9 {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #232323;
}
.cid-uZxzKUt9h9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZxzKUt9h9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZxzKUt9h9 .item-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-uZxzKUt9h9 .item-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uZxzKUt9h9 .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-uZxzKUt9h9 .card-title {
  color: #ffffff;
  text-align: justify;
}
.cid-uZxzKUJG4j {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fb0707;
}
.cid-uZxzKUPJ0K {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uZxzKUPJ0K .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZxzKUPJ0K .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZxzKUPJ0K .timeline-element {
  position: relative;
}
.cid-uZxzKUPJ0K .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uZxzKUPJ0K .iconBackground {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #6592e6;
  top: 30px;
  margin-left: -9px;
  padding: 0;
}
@media (max-width: 767px) {
  .cid-uZxzKUPJ0K .iconBackground {
    left: 15px;
  }
}
@media (min-width: 768px) {
  .cid-uZxzKUPJ0K .iconBackground {
    left: 50%;
  }
}
.cid-uZxzKUPJ0K .row {
  flex-direction: row-reverse;
}
.cid-uZxzKUPJ0K .row:after {
  content: "";
  position: absolute;
  background-color: #6592e6;
  width: 2px;
  top: 50px;
  height: calc(100% - 10px);
}
@media (max-width: 767px) {
  .cid-uZxzKUPJ0K .row:after {
    left: 15px;
  }
}
@media (min-width: 768px) {
  .cid-uZxzKUPJ0K .row:after {
    left: 50%;
  }
}
.cid-uZxzKUPJ0K .row:nth-child(even) .mbr-timeline-date {
  text-align: right;
}
@media (max-width: 767px) {
  .cid-uZxzKUPJ0K .row:nth-child(even) {
    flex-direction: column-reverse;
  }
}
@media (max-width: 767px) {
  .cid-uZxzKUPJ0K .timeline-date-wrapper,
  .cid-uZxzKUPJ0K .timeline-text-wrapper {
    padding: 0rem;
    padding-left: 2rem;
  }
  .cid-uZxzKUPJ0K .mbr-timeline-date {
    text-align: left !important;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uZxzKUPJ0K .timeline-date-wrapper,
  .cid-uZxzKUPJ0K .timeline-text-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uZxzKUPJ0K .timeline-date-wrapper,
  .cid-uZxzKUPJ0K .timeline-text-wrapper {
    padding: 2rem;
  }
}
.cid-uZxzKVtW8j {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fb0707;
}
.cid-uZxzKVKYrh {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-uZxzKVKYrh .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZxzKVKYrh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZxzKVKYrh .bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-uZxzKVKYrh .bg-facebook:hover {
  background: #0b60cb;
}
.cid-uZxzKVKYrh .bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-uZxzKVKYrh .bg-twitter:hover {
  background: #0c85d0;
}
.cid-uZxzKVKYrh .bg-youtube {
  background: #ff0000;
  color: #ffffff;
}
.cid-uZxzKVKYrh .bg-youtube:hover {
  background: #cc0000;
}
.cid-uZxzKVKYrh .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-uZxzKVKYrh [class^="socicon-"]:before,
.cid-uZxzKVKYrh [class*=" socicon-"]:before {
  line-height: 55px;
  padding: .6rem;
}
.cid-uZxzKVKYrh .mbr-section-title,
.cid-uZxzKVKYrh .social-list {
  color: #ffffff;
}
.cid-uZxzKW6ggW {
  padding-top: 10rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/cool-music-wallpaper-hd-wallpapers-630446878.jpg");
}
.cid-vaiEwwVbtN {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-vaiEwwVbtN nav.navbar {
  position: fixed;
}
.cid-vaiEwwVbtN .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vaiEwwVbtN .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-vaiEwwVbtN .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-vaiEwwVbtN .dropdown-item:hover,
.cid-vaiEwwVbtN .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-vaiEwwVbtN .dropdown-item:hover span {
  color: white;
}
.cid-vaiEwwVbtN .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vaiEwwVbtN .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vaiEwwVbtN .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vaiEwwVbtN .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vaiEwwVbtN .nav-link {
  position: relative;
}
.cid-vaiEwwVbtN .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-vaiEwwVbtN .container {
    flex-wrap: wrap;
  }
}
.cid-vaiEwwVbtN .container-fluid {
  flex-wrap: nowrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-vaiEwwVbtN .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-vaiEwwVbtN .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vaiEwwVbtN .dropdown-menu,
.cid-vaiEwwVbtN .navbar.opened {
  background: #ff0000 !important;
}
.cid-vaiEwwVbtN .nav-item:focus,
.cid-vaiEwwVbtN .nav-link:focus {
  outline: none;
}
.cid-vaiEwwVbtN .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vaiEwwVbtN .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vaiEwwVbtN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vaiEwwVbtN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vaiEwwVbtN .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vaiEwwVbtN .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vaiEwwVbtN .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ff0000;
}
.cid-vaiEwwVbtN .navbar.opened {
  transition: all 0.3s;
}
.cid-vaiEwwVbtN .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vaiEwwVbtN .navbar .navbar-logo img {
  width: auto;
}
.cid-vaiEwwVbtN .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vaiEwwVbtN .navbar.collapsed {
  justify-content: center;
}
.cid-vaiEwwVbtN .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vaiEwwVbtN .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vaiEwwVbtN .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-vaiEwwVbtN .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vaiEwwVbtN .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vaiEwwVbtN .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-vaiEwwVbtN .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vaiEwwVbtN .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vaiEwwVbtN .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vaiEwwVbtN .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vaiEwwVbtN .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vaiEwwVbtN .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vaiEwwVbtN .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vaiEwwVbtN .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-vaiEwwVbtN .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vaiEwwVbtN .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vaiEwwVbtN .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vaiEwwVbtN .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vaiEwwVbtN .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vaiEwwVbtN .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-vaiEwwVbtN .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-vaiEwwVbtN .navbar.navbar-short {
  min-height: 60px;
}
.cid-vaiEwwVbtN .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vaiEwwVbtN .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-vaiEwwVbtN .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-vaiEwwVbtN .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vaiEwwVbtN .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vaiEwwVbtN .dropdown-item.active,
.cid-vaiEwwVbtN .dropdown-item:active {
  background-color: transparent;
}
.cid-vaiEwwVbtN .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vaiEwwVbtN .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vaiEwwVbtN .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vaiEwwVbtN .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ff0000;
}
.cid-vaiEwwVbtN .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vaiEwwVbtN .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vaiEwwVbtN ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vaiEwwVbtN .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vaiEwwVbtN button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-vaiEwwVbtN button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-vaiEwwVbtN button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vaiEwwVbtN button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vaiEwwVbtN button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vaiEwwVbtN button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vaiEwwVbtN nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vaiEwwVbtN nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vaiEwwVbtN nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vaiEwwVbtN nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vaiEwwVbtN .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-vaiEwwVbtN a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vaiEwwVbtN .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-vaiEwwVbtN .navbar {
    height: 70px;
  }
  .cid-vaiEwwVbtN .navbar.opened {
    height: auto;
  }
  .cid-vaiEwwVbtN .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uZxBACIErk {
  padding-top: 10rem;
  padding-bottom: 2rem;
  background-color: #fb0707;
}
.cid-uZxBACOpfZ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uZxBACOpfZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZxBACOpfZ .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-uZxBACOpfZ .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uZxBACOpfZ .row {
  flex-direction: row-reverse;
}
.cid-uZxBACOpfZ img {
  width: 100%;
}
.cid-uZxBAD2xex {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #232323;
}
.cid-uZxBAD2xex .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZxBAD2xex .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZxBAD2xex .item-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-uZxBAD2xex .item-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uZxBAD2xex .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-uZxBAD2xex .card-title {
  color: #ffffff;
  text-align: justify;
}
.cid-uZxBADkajI {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fb0707;
}
.cid-uZxBADsEnT {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uZxBADsEnT .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZxBADsEnT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZxBADsEnT .timeline-element {
  position: relative;
}
.cid-uZxBADsEnT .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uZxBADsEnT .iconBackground {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #6592e6;
  top: 30px;
  margin-left: -9px;
  padding: 0;
}
@media (max-width: 767px) {
  .cid-uZxBADsEnT .iconBackground {
    left: 15px;
  }
}
@media (min-width: 768px) {
  .cid-uZxBADsEnT .iconBackground {
    left: 50%;
  }
}
.cid-uZxBADsEnT .row {
  flex-direction: row-reverse;
}
.cid-uZxBADsEnT .row:after {
  content: "";
  position: absolute;
  background-color: #6592e6;
  width: 2px;
  top: 50px;
  height: calc(100% - 10px);
}
@media (max-width: 767px) {
  .cid-uZxBADsEnT .row:after {
    left: 15px;
  }
}
@media (min-width: 768px) {
  .cid-uZxBADsEnT .row:after {
    left: 50%;
  }
}
.cid-uZxBADsEnT .row:nth-child(even) .mbr-timeline-date {
  text-align: right;
}
@media (max-width: 767px) {
  .cid-uZxBADsEnT .row:nth-child(even) {
    flex-direction: column-reverse;
  }
}
@media (max-width: 767px) {
  .cid-uZxBADsEnT .timeline-date-wrapper,
  .cid-uZxBADsEnT .timeline-text-wrapper {
    padding: 0rem;
    padding-left: 2rem;
  }
  .cid-uZxBADsEnT .mbr-timeline-date {
    text-align: left !important;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uZxBADsEnT .timeline-date-wrapper,
  .cid-uZxBADsEnT .timeline-text-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uZxBADsEnT .timeline-date-wrapper,
  .cid-uZxBADsEnT .timeline-text-wrapper {
    padding: 2rem;
  }
}
.cid-uZxBAE0S44 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fb0707;
}
.cid-uZxBAEgxgE {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-uZxBAEgxgE .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZxBAEgxgE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZxBAEgxgE .bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-uZxBAEgxgE .bg-facebook:hover {
  background: #0b60cb;
}
.cid-uZxBAEgxgE .bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-uZxBAEgxgE .bg-twitter:hover {
  background: #0c85d0;
}
.cid-uZxBAEgxgE .bg-youtube {
  background: #ff0000;
  color: #ffffff;
}
.cid-uZxBAEgxgE .bg-youtube:hover {
  background: #cc0000;
}
.cid-uZxBAEgxgE .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-uZxBAEgxgE [class^="socicon-"]:before,
.cid-uZxBAEgxgE [class*=" socicon-"]:before {
  line-height: 55px;
  padding: .6rem;
}
.cid-uZxBAEgxgE .mbr-section-title,
.cid-uZxBAEgxgE .social-list {
  color: #ffffff;
}
.cid-uZxBAEBz3u {
  padding-top: 10rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/cool-music-wallpaper-hd-wallpapers-630446878.jpg");
}
.cid-vaiEwwVbtN {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-vaiEwwVbtN nav.navbar {
  position: fixed;
}
.cid-vaiEwwVbtN .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vaiEwwVbtN .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-vaiEwwVbtN .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-vaiEwwVbtN .dropdown-item:hover,
.cid-vaiEwwVbtN .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-vaiEwwVbtN .dropdown-item:hover span {
  color: white;
}
.cid-vaiEwwVbtN .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vaiEwwVbtN .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vaiEwwVbtN .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vaiEwwVbtN .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vaiEwwVbtN .nav-link {
  position: relative;
}
.cid-vaiEwwVbtN .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-vaiEwwVbtN .container {
    flex-wrap: wrap;
  }
}
.cid-vaiEwwVbtN .container-fluid {
  flex-wrap: nowrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-vaiEwwVbtN .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-vaiEwwVbtN .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vaiEwwVbtN .dropdown-menu,
.cid-vaiEwwVbtN .navbar.opened {
  background: #ff0000 !important;
}
.cid-vaiEwwVbtN .nav-item:focus,
.cid-vaiEwwVbtN .nav-link:focus {
  outline: none;
}
.cid-vaiEwwVbtN .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vaiEwwVbtN .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vaiEwwVbtN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vaiEwwVbtN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vaiEwwVbtN .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vaiEwwVbtN .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vaiEwwVbtN .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ff0000;
}
.cid-vaiEwwVbtN .navbar.opened {
  transition: all 0.3s;
}
.cid-vaiEwwVbtN .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vaiEwwVbtN .navbar .navbar-logo img {
  width: auto;
}
.cid-vaiEwwVbtN .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vaiEwwVbtN .navbar.collapsed {
  justify-content: center;
}
.cid-vaiEwwVbtN .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vaiEwwVbtN .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vaiEwwVbtN .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-vaiEwwVbtN .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vaiEwwVbtN .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vaiEwwVbtN .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-vaiEwwVbtN .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vaiEwwVbtN .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vaiEwwVbtN .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vaiEwwVbtN .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vaiEwwVbtN .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vaiEwwVbtN .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vaiEwwVbtN .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vaiEwwVbtN .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-vaiEwwVbtN .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vaiEwwVbtN .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vaiEwwVbtN .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vaiEwwVbtN .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vaiEwwVbtN .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vaiEwwVbtN .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-vaiEwwVbtN .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-vaiEwwVbtN .navbar.navbar-short {
  min-height: 60px;
}
.cid-vaiEwwVbtN .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vaiEwwVbtN .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-vaiEwwVbtN .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-vaiEwwVbtN .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vaiEwwVbtN .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vaiEwwVbtN .dropdown-item.active,
.cid-vaiEwwVbtN .dropdown-item:active {
  background-color: transparent;
}
.cid-vaiEwwVbtN .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vaiEwwVbtN .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vaiEwwVbtN .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vaiEwwVbtN .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ff0000;
}
.cid-vaiEwwVbtN .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vaiEwwVbtN .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vaiEwwVbtN ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vaiEwwVbtN .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vaiEwwVbtN button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-vaiEwwVbtN button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-vaiEwwVbtN button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vaiEwwVbtN button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vaiEwwVbtN button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vaiEwwVbtN button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vaiEwwVbtN nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vaiEwwVbtN nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vaiEwwVbtN nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vaiEwwVbtN nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vaiEwwVbtN .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-vaiEwwVbtN a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vaiEwwVbtN .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-vaiEwwVbtN .navbar {
    height: 70px;
  }
  .cid-vaiEwwVbtN .navbar.opened {
    height: auto;
  }
  .cid-vaiEwwVbtN .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uZxD88xexb {
  padding-top: 10rem;
  padding-bottom: 2rem;
  background-color: #fb0707;
}
.cid-uZxD88DKS2 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uZxD88DKS2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZxD88DKS2 .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-uZxD88DKS2 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uZxD88DKS2 .row {
  flex-direction: row-reverse;
}
.cid-uZxD88DKS2 img {
  width: 100%;
}
.cid-uZxD88SvNP {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #232323;
}
.cid-uZxD88SvNP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZxD88SvNP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZxD88SvNP .item-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-uZxD88SvNP .item-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uZxD88SvNP .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-uZxD88SvNP .card-title {
  color: #ffffff;
  text-align: justify;
}
.cid-uZxD896ZGW {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fb0707;
}
.cid-uZxD89dUy0 {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uZxD89dUy0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZxD89dUy0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZxD89dUy0 .timeline-element {
  position: relative;
}
.cid-uZxD89dUy0 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uZxD89dUy0 .iconBackground {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #6592e6;
  top: 30px;
  margin-left: -9px;
  padding: 0;
}
@media (max-width: 767px) {
  .cid-uZxD89dUy0 .iconBackground {
    left: 15px;
  }
}
@media (min-width: 768px) {
  .cid-uZxD89dUy0 .iconBackground {
    left: 50%;
  }
}
.cid-uZxD89dUy0 .row {
  flex-direction: row-reverse;
}
.cid-uZxD89dUy0 .row:after {
  content: "";
  position: absolute;
  background-color: #6592e6;
  width: 2px;
  top: 50px;
  height: calc(100% - 10px);
}
@media (max-width: 767px) {
  .cid-uZxD89dUy0 .row:after {
    left: 15px;
  }
}
@media (min-width: 768px) {
  .cid-uZxD89dUy0 .row:after {
    left: 50%;
  }
}
.cid-uZxD89dUy0 .row:nth-child(even) .mbr-timeline-date {
  text-align: right;
}
@media (max-width: 767px) {
  .cid-uZxD89dUy0 .row:nth-child(even) {
    flex-direction: column-reverse;
  }
}
@media (max-width: 767px) {
  .cid-uZxD89dUy0 .timeline-date-wrapper,
  .cid-uZxD89dUy0 .timeline-text-wrapper {
    padding: 0rem;
    padding-left: 2rem;
  }
  .cid-uZxD89dUy0 .mbr-timeline-date {
    text-align: left !important;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uZxD89dUy0 .timeline-date-wrapper,
  .cid-uZxD89dUy0 .timeline-text-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uZxD89dUy0 .timeline-date-wrapper,
  .cid-uZxD89dUy0 .timeline-text-wrapper {
    padding: 2rem;
  }
}
.cid-uZxD89QObx {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fb0707;
}
.cid-uZxD8abAJU {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-uZxD8abAJU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZxD8abAJU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZxD8abAJU .bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-uZxD8abAJU .bg-facebook:hover {
  background: #0b60cb;
}
.cid-uZxD8abAJU .bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-uZxD8abAJU .bg-twitter:hover {
  background: #0c85d0;
}
.cid-uZxD8abAJU .bg-youtube {
  background: #ff0000;
  color: #ffffff;
}
.cid-uZxD8abAJU .bg-youtube:hover {
  background: #cc0000;
}
.cid-uZxD8abAJU .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-uZxD8abAJU [class^="socicon-"]:before,
.cid-uZxD8abAJU [class*=" socicon-"]:before {
  line-height: 55px;
  padding: .6rem;
}
.cid-uZxD8abAJU .mbr-section-title,
.cid-uZxD8abAJU .social-list {
  color: #ffffff;
}
.cid-uZxD8as9P5 {
  padding-top: 10rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/cool-music-wallpaper-hd-wallpapers-630446878.jpg");
}
