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: #d8b27a !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ffa600 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #d8b27a !important;
  border-color: #d8b27a !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #c28b39 !important;
  border-color: #c28b39 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #c28b39 !important;
  border-color: #c28b39 !important;
}
.btn-secondary,
.btn-secondary: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-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.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-secondary.disabled,
.btn-secondary:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !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: #ffa600 !important;
  border-color: #ffa600 !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: #a86e00 !important;
  border-color: #a86e00 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #a86e00 !important;
  border-color: #a86e00 !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #d8b27a;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #c28b39 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #d8b27a !important;
  border-color: #d8b27a !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #40b0bf;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #2a747e !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffa600;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #a86e00 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ffa600 !important;
  border-color: #ffa600 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #d8b27a !important;
}
.text-secondary {
  color: #fafafa !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #ffa600 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #b68236 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #c7c7c7 !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: #996400 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #d8b27a;
}
.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: #ffa600;
}
.mbr-gallery-filter li.active .btn {
  background-color: #d8b27a;
  border-color: #d8b27a;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #d8b27a;
}
.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: #ffedcc;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.375rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #d8b27a !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: #d8b27a;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #d8b27a;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #d8b27a;
}
.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: #d8b27a;
  border-bottom-color: #d8b27a;
}
.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: #d8b27a !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #fafafa !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='%23d8b27a' %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-v2Ka2dpDmz .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2Ka2dpDmz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("../../../assets/images/gtsi-records-opening1762622711-1960x1080.jpg");
}
.cid-v2NdBvb3N8 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v2NdBvb3N8 nav.navbar {
  position: fixed;
}
.cid-v2NdBvb3N8 .container {
  border-bottom: 2px solid #191919;
}
.cid-v2NdBvb3N8 .btn {
  max-height: 74px;
}
.cid-v2NdBvb3N8 .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-v2NdBvb3N8 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #050508 !important;
}
.cid-v2NdBvb3N8 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v2NdBvb3N8 .dropdown-item:hover,
.cid-v2NdBvb3N8 .dropdown-item:focus {
  background: #d8b27a !important;
  color: white !important;
}
.cid-v2NdBvb3N8 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v2NdBvb3N8 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v2NdBvb3N8 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v2NdBvb3N8 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v2NdBvb3N8 .nav-link {
  position: relative;
}
.cid-v2NdBvb3N8 .container {
  padding: 28px 0;
  display: flex;
  margin: auto;
  align-items: end;
}
@media (min-width: 992px) {
  .cid-v2NdBvb3N8 .container {
    flex-wrap: nowrap;
  }
}
.cid-v2NdBvb3N8 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v2NdBvb3N8 .nav-item:focus,
.cid-v2NdBvb3N8 .nav-link:focus {
  outline: none;
}
.cid-v2NdBvb3N8 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v2NdBvb3N8 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v2NdBvb3N8 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v2NdBvb3N8 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v2NdBvb3N8 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v2NdBvb3N8 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v2NdBvb3N8 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  background: #050508;
}
.cid-v2NdBvb3N8 .navbar.opened {
  transition: all 0.3s;
}
.cid-v2NdBvb3N8 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v2NdBvb3N8 .navbar .navbar-logo img {
  min-width: 50px;
  min-height: 50px;
  border-radius: 10px;
}
.cid-v2NdBvb3N8 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v2NdBvb3N8 .navbar.collapsed {
  justify-content: center;
}
.cid-v2NdBvb3N8 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v2NdBvb3N8 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v2NdBvb3N8 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-v2NdBvb3N8 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v2NdBvb3N8 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v2NdBvb3N8 .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-v2NdBvb3N8 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v2NdBvb3N8 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v2NdBvb3N8 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v2NdBvb3N8 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v2NdBvb3N8 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v2NdBvb3N8 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v2NdBvb3N8 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v2NdBvb3N8 .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-v2NdBvb3N8 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v2NdBvb3N8 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v2NdBvb3N8 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-v2NdBvb3N8 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v2NdBvb3N8 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v2NdBvb3N8 .navbar.navbar-short {
  min-height: 60px;
}
.cid-v2NdBvb3N8 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v2NdBvb3N8 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v2NdBvb3N8 .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-v2NdBvb3N8 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v2NdBvb3N8 .navbar-brand .navbar-logo a {
  outline: none;
}
@media (max-width: 375px) {
  .cid-v2NdBvb3N8 .navbar-brand {
    width: 85%;
  }
}
.cid-v2NdBvb3N8 .dropdown-item.active,
.cid-v2NdBvb3N8 .dropdown-item:active {
  background-color: transparent;
}
.cid-v2NdBvb3N8 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v2NdBvb3N8 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v2NdBvb3N8 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v2NdBvb3N8 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #050508;
}
.cid-v2NdBvb3N8 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v2NdBvb3N8 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v2NdBvb3N8 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v2NdBvb3N8 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v2NdBvb3N8 button.navbar-toggler {
  outline: none;
  width: 25px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v2NdBvb3N8 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #191919;
}
.cid-v2NdBvb3N8 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v2NdBvb3N8 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v2NdBvb3N8 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v2NdBvb3N8 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v2NdBvb3N8 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v2NdBvb3N8 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v2NdBvb3N8 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v2NdBvb3N8 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v2NdBvb3N8 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v2NdBvb3N8 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v2NdBvb3N8 .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-v2NdBvb3N8 .navbar {
    height: 70px;
  }
  .cid-v2NdBvb3N8 .navbar.opened {
    height: auto;
  }
  .cid-v2NdBvb3N8 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v2Jrac0t8X {
  padding-top: 10rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/4-2000x1124.jpg");
}
.cid-v2Jrac0t8X .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2Jrac0t8X .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2Jrac0t8X .mbr-section-title {
  color: #ffa600;
}
.cid-v2Jrac0t8X .mbr-text,
.cid-v2Jrac0t8X .mbr-section-btn {
  color: #ffa600;
}
#custom-html-2t {
  /* === GTSI Records player === */
  /* Header */
  /* Now playing block */
  /* Controls */
  /* Timeline */
  /* Playlist */
  /* Streaming links */
}
#custom-html-2t .gtsi-player {
  width: 100%;
  max-width: 900px;
  margin: 40px auto;
  padding: 16px 16px 18px;
  background: #050608;
  border-radius: 12px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.5);
  color: #f5f5f5;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
#custom-html-2t .gtsi-player-header h3 {
  margin: 0 0 2px;
  font-size: 1.1rem;
  text-align: center;
}
#custom-html-2t .gtsi-player-header p {
  margin: 0 0 6px;
  font-size: 0.85rem;
  text-align: center;
}
#custom-html-2t .gtsi-now-playing {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2px;
  margin-bottom: 4px;
}
#custom-html-2t .gtsi-label {
  margin-bottom: 0;
  font-size: 0.65rem;
  letter-spacing: 0.16em;
}
#custom-html-2t .gtsi-title {
  margin: 0;
  font-size: 0.95rem;
}
#custom-html-2t .gtsi-controls-main {
  display: flex;
  gap: 4px;
  align-items: center;
  justify-content: center;
}
#custom-html-2t .gtsi-btn {
  border: 1px solid rgba(212, 175, 55, 0.7);
  background: radial-gradient(circle at 20% 0%, #2b2520, #0b0b0d);
  color: #f9f9f9;
  padding: 6px 10px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.9rem;
}
#custom-html-2t .gtsi-play {
  font-size: 1.1rem;
  padding: 7px 13px;
}
#custom-html-2t .gtsi-timeline {
  margin: 6px 0 8px;
}
#custom-html-2t #gtsi-seek {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  display: block;
  appearance: none;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #d4af37, #f1d46a);
  outline: none;
  cursor: pointer;
}
#custom-html-2t .gtsi-time {
  max-width: 600px;
  margin: 3px auto 0;
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
}
#custom-html-2t .gtsi-playlist {
  list-style: none;
  padding: 4px 0;
  margin: 4px 0 6px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
#custom-html-2t .gtsi-playlist li {
  padding: 4px 4px;
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
}
#custom-html-2t .gtsi-links {
  margin-top: 4px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
}
#custom-html-2t .gtsi-links span {
  color: #b9b9b9;
}
.cid-v4cW0MXq6a {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v4cW0MXq6a .image-wrapper {
  position: relative;
}
.cid-v4cW0MXq6a .mbr-section-btn {
  position: absolute;
  bottom: 5%;
  right: -1%;
}
@media (max-width: 690px) {
  .cid-v4cW0MXq6a .mbr-section-btn {
    position: absolute;
    right: 0px;
    bottom: -13%;
  }
}
.cid-v4cW0MXq6a img {
  max-width: 200px;
  position: absolute;
  right: 0;
  z-index: 10;
}
.cid-v4cW0MXq6a .line {
  width: 100%;
  height: 1px;
  background-color: #ffa600;
  margin-bottom: 25px;
}
.cid-v4cW0MXq6a .mbr-section-subtitle {
  font-weight: 700;
  margin-bottom: 25px;
  color: #1d1d1f;
}
.cid-v4cW0MXq6a .mbr-section-title {
  margin-bottom: 25px;
}
.cid-v4cW0MXq6a a {
  transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out;
}
.cid-v4cW0MXq6a rect {
  transform: translateX(-13px);
  transform-origin: right;
  stroke: currentColor;
  stroke-width: .5;
}
.cid-v4cW0MXq6a .qodef-button-cap-fake {
  animation: qode-button-cap-fake-out 0.35s linear;
}
.cid-v4cW0MXq6a svg {
  margin-left: 15px;
}
.cid-v4cW0MXq6a path {
  animation: qode-button-cap-out 0.35s ease-in-out;
  transform: translateX(-13px);
  transform-origin: right;
  fill: currentColor;
}
.cid-v4cW0MXq6a .link:hover rect {
  animation: qode-button-line 0.7s ease forwards;
}
.cid-v4cW0MXq6a .link:hover path {
  animation: qode-button-cap 0.7s ease forwards;
}
.cid-v4cW0MXq6a .link a {
  background-image: none !important;
}
@keyframes qode-button-cap-fake-out {
  0% {
    clip-path: inset(0 0 0 0);
  }
  49%,
  51% {
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes qode-button-line {
  0%,
  100% {
    transform: translateX(-13px) scaleX(1);
  }
  10% {
    transform: translateX(-13px) scaleX(1);
  }
  46%,
  55% {
    transform: translateX(0) scaleX(0.5);
  }
  99% {
    transform: translateX(-13px) scaleX(0.6);
  }
}
@keyframes qode-button-cap-out {
  0%,
  50% {
    transform: translateX(-35px) scaleX(-1);
  }
  100%,
  51% {
    transform: translateX(-13px) scaleX(1);
  }
}
@keyframes qode-button-cap {
  0% {
    -webkit-transform: translateX(-13px) scaleX(1);
    transform: translateX(-13px) scaleX(1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
  54% {
    -webkit-transform: translateX(-1px) scaleX(1);
    transform: translateX(-1px) scaleX(1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  55% {
    -webkit-transform: translateX(-20px) scaleX(-1);
    transform: translateX(-20px) scaleX(-1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    -webkit-transform: translateX(-35px) scaleX(-1);
    transform: translateX(-35px) scaleX(-1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
}
.cid-v4cW0MXq6a .wrapper {
  margin: auto;
}
.cid-v4cW0MXq6a .mbr-section-subtitle,
.cid-v4cW0MXq6a .link {
  text-align: center;
  color: #ffa600;
}
.cid-v4cW0MXq6a .link {
  color: #d8b27a;
}
.cid-v2Jqz4JtmS {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #050508;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.cid-v2Jqz4JtmS .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2Jqz4JtmS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2Jqz4JtmS .content-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 20px;
}
@media (max-width: 992px) {
  .cid-v2Jqz4JtmS .content-wrapper {
    padding: 0 16px;
  }
}
.cid-v2Jqz4JtmS .content-wrapper::before,
.cid-v2Jqz4JtmS .content-wrapper::after {
  content: '';
  position: absolute;
  width: 1px;
  height: 1000vh;
  background-color: #050508;
}
.cid-v2Jqz4JtmS .content-wrapper::before {
  left: 0;
}
.cid-v2Jqz4JtmS .content-wrapper::after {
  right: 0;
}
.cid-v2Jqz4JtmS .content-wrap {
  width: -webkit-fill-available;
  min-width: -moz-available;
}
.cid-v2Jqz4JtmS .card-wrapper {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.cid-v2Jqz4JtmS .card-wrapper .card-wrap .mbr-section-title {
  margin-bottom: 24px;
}
.cid-v2Jqz4JtmS .card-wrapper .card-wrap .text-wrapper .mbr-text {
  display: inline-block;
  width: 80%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-v2Jqz4JtmS .card-wrapper .card-wrap .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-v2Jqz4JtmS .card-wrapper .card-wrap .person-wrapper {
  margin-top: 24px;
}
.cid-v2Jqz4JtmS .card-wrapper .card-wrap .person-wrapper .person-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-v2Jqz4JtmS .card-wrapper .card-wrap .person-wrapper .person-wrap .image-wrap {
  margin-right: 16px;
}
.cid-v2Jqz4JtmS .card-wrapper .card-wrap .person-wrapper .person-wrap .image-wrap img {
  display: inline-flex;
  width: 45px;
  height: 55px;
  min-width: 45px;
  object-fit: cover;
}
.cid-v2Jqz4JtmS .card-wrapper .card-wrap .person-wrapper .person-wrap .name-wrap .item-name {
  margin-bottom: 0;
}
.cid-v2Jqz4JtmS .card-wrapper .card-wrap .person-wrapper .person-wrap .name-wrap .item-role {
  margin-bottom: 0;
}
.cid-v2Jqz4JtmS .card-wrapper .mbr-section-btn {
  margin-top: 180px;
}
@media (max-width: 992px) {
  .cid-v2Jqz4JtmS .card-wrapper .mbr-section-btn {
    margin-top: 24px;
  }
}
@media (max-width: 992px) {
  .cid-v2Jqz4JtmS {
    display: block;
  }
}
.cid-v2Jqz4JtmS .image-wrapper {
  position: absolute;
  width: 50%;
  height: 100%;
  right: 0;
}
@media (max-width: 992px) {
  .cid-v2Jqz4JtmS .image-wrapper {
    margin-top: 32px;
    width: 100%;
    z-index: 1;
    position: relative;
    overflow: hidden;
  }
}
.cid-v2Jqz4JtmS .image-wrapper .decor-wrap {
  display: grid;
  position: absolute;
  grid-template-rows: repeat(3, 28px);
  grid-template-columns: repeat(3, minmax(28px, 1fr));
  grid-auto-rows: 28px;
  justify-content: center;
  gap: 0;
  pointer-events: none;
  will-change: transform;
  animation: none !important;
}
.cid-v2Jqz4JtmS .image-wrapper .decor-wrap .item-decor {
  width: 100%;
  height: 100%;
  background-color: #050508;
  box-shadow: 0 -28px 0 #050508;
  transform: none;
}
.cid-v2Jqz4JtmS .image-wrapper .decor-wrap .decor-opacity {
  background-color: transparent;
  box-shadow: none;
}
.cid-v2Jqz4JtmS .image-wrapper .decor_1 {
  top: -1px;
  left: -1px;
}
.cid-v2Jqz4JtmS .image-wrapper .decor_2 {
  grid-template-rows: none;
  top: -1px;
  right: -1px;
}
.cid-v2Jqz4JtmS .image-wrapper .image-wrap {
  height: 100%;
}
.cid-v2Jqz4JtmS .image-wrapper .image-wrap img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  animation: none;
}
@media (max-width: 992px) {
  .cid-v2Jqz4JtmS .image-wrapper .image-wrap img {
    height: 300px;
  }
}
.cid-v2Jqz4JtmS .mbr-section-title {
  color: #0a0a0a;
}
.cid-v2Jqz4JtmS .mbr-text {
  color: #0a0a0a;
}
.cid-v2Jqz4JtmS .item-name {
  color: #0a0a0a;
}
.cid-v2Jqz4JtmS .item-role {
  color: #909090;
}
.cid-v2Jqz4JtmS .mbr-section-title,
.cid-v2Jqz4JtmS .mbr-section-btn {
  color: #fafafa;
}
.cid-v2Jqz4JtmS .mbr-text,
.cid-v2Jqz4JtmS .text-wrapper {
  color: #fafafa;
}
.cid-v2Jqz4ZVeL {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #050508;
}
.cid-v2Jqz4ZVeL img,
.cid-v2Jqz4ZVeL .item-img {
  width: 100%;
  height: 100%;
  height: 400px;
  object-fit: cover;
}
.cid-v2Jqz4ZVeL .item:focus,
.cid-v2Jqz4ZVeL span:focus {
  outline: none;
}
.cid-v2Jqz4ZVeL .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2Jqz4ZVeL .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2Jqz4ZVeL .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v2Jqz4ZVeL .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2Jqz4ZVeL .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v2Jqz4ZVeL .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v2Jqz4ZVeL .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2Jqz4ZVeL .mbr-section-title {
  color: #232323;
}
.cid-v2Jqz4ZVeL .mbr-text,
.cid-v2Jqz4ZVeL .mbr-section-btn {
  text-align: left;
}
.cid-v2Jqz4ZVeL .item-title {
  text-align: left;
}
.cid-v2Jqz4ZVeL .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-v4cNExx7Jg {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-v4cNExx7Jg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v4cNExx7Jg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v4cNExx7Jg .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 100%;
  max-width: 100%;
  margin-left: 1rem !important;
  margin-right: 1rem !important;
}
@media (max-width: 768px) {
  .cid-v4cNExx7Jg .embla__slide {
    min-width: 100%;
    max-width: 100%;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-v4cNExx7Jg .embla__slide .slide-content {
  border: 1px solid #ffa600;
  background-color: #000000;
  width: auto;
  max-width: 420px;
  margin: 0 auto;
  padding: 12px;
  box-shadow: 0 .25rem .375rem #00000014;
}
@media (max-width: 992px) {
  .cid-v4cNExx7Jg .embla__slide .slide-content {
    padding: 6px;
  }
}
.cid-v4cNExx7Jg .embla__slide .slide-content .item-wrapper {
  height: 100%;
  border: 1px solid #ffa600;
  overflow: hidden;
  background-color: #000000;
  box-shadow: 0 0.25rem 0.375rem -0.125rem #ffa600;
  padding: 12px;
}
@media (max-width: 992px) {
  .cid-v4cNExx7Jg .embla__slide .slide-content .item-wrapper {
    padding: 6px;
  }
}
.cid-v4cNExx7Jg .embla__slide .slide-content .item-wrapper .item-img {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-v4cNExx7Jg .embla__slide .slide-content .item-wrapper .item-img img {
  width: auto !important;
  max-width: 320px !important;
  height: auto !important;
  max-height: 200px !important;
  object-fit: contain !important;
  margin: 0 auto !important;
}
.cid-v4cNExx7Jg .embla__button--next,
.cid-v4cNExx7Jg .embla__button--prev {
  display: flex;
}
.cid-v4cNExx7Jg .embla__button {
  bottom: 0;
  width: 44px;
  height: 44px;
  font-size: 20px;
  background-color: #a6a99c !important;
  color: #ffa600 !important;
  box-shadow: 0 1px 15px -2px #bcbcd2, 0 0 0 0 #000000, inset 0 0.125rem 0.25rem -0.125rem #bcbcd2;
  border: 1px solid #000000 !important;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
  display: none;
}
.cid-v4cNExx7Jg .embla__button:hover {
  box-shadow: 0 6px 20px 0 #bcbcd2, 0 0 0 2px #000000, inset 0 0.125rem 0.6rem -0.125rem #bcbcd2;
}
.cid-v4cNExx7Jg .embla__button:disabled {
  background-color: #a6a99c !important;
  color: #ffa600 !important;
  box-shadow: 0 1px 15px -2px #bcbcd2, 0 0 0 0 #000000, inset 0 0.125rem 0.25rem -0.125rem #bcbcd2;
  opacity: .5 !important;
}
.cid-v4cNExx7Jg .embla__button.embla__button--prev {
  margin-left: -59px;
}
.cid-v4cNExx7Jg .embla__button.embla__button--next {
  margin-right: -59px;
}
.cid-v4cNExx7Jg .embla {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-v4cNExx7Jg .embla {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.cid-v4cNExx7Jg .embla__viewport {
  overflow: hidden;
  width: 100%;
  padding: 0 0 6px;
}
.cid-v4cNExx7Jg .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-v4cNExx7Jg .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-v4cNExx7Jg .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-v4cNExx7Jg .item-menu-overlay {
  opacity: 0 !important;
}
.cid-v4cNExx7Jg .embla__slide .item-img img {
  width: auto;
  max-width: 350px;
  height: auto;
  margin: 0 auto;
  object-fit: contain;
}
.cid-v4cNExx7Jg .embla__slide .slide-content {
  width: auto;
  max-width: 420px;
  margin: 0 auto;
}
.cid-v2JvjdFrC0 {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #050508;
  overflow: hidden;
}
.cid-v2NldUbN5z {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v2NldUbN5z nav.navbar {
  position: fixed;
}
.cid-v2NldUbN5z .container {
  border-bottom: 2px solid #191919;
}
.cid-v2NldUbN5z .btn {
  max-height: 74px;
}
.cid-v2NldUbN5z .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-v2NldUbN5z .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #050508 !important;
}
.cid-v2NldUbN5z .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v2NldUbN5z .dropdown-item:hover,
.cid-v2NldUbN5z .dropdown-item:focus {
  background: #d8b27a !important;
  color: white !important;
}
.cid-v2NldUbN5z .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v2NldUbN5z .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v2NldUbN5z .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v2NldUbN5z .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v2NldUbN5z .nav-link {
  position: relative;
}
.cid-v2NldUbN5z .container {
  padding: 28px 0;
  display: flex;
  margin: auto;
  align-items: end;
}
@media (min-width: 992px) {
  .cid-v2NldUbN5z .container {
    flex-wrap: nowrap;
  }
}
.cid-v2NldUbN5z .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v2NldUbN5z .nav-item:focus,
.cid-v2NldUbN5z .nav-link:focus {
  outline: none;
}
.cid-v2NldUbN5z .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v2NldUbN5z .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v2NldUbN5z .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v2NldUbN5z .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v2NldUbN5z .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v2NldUbN5z .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v2NldUbN5z .navbar {
  min-height: 70px;
  transition: all 0.3s;
  background: #050508;
}
.cid-v2NldUbN5z .navbar.opened {
  transition: all 0.3s;
}
.cid-v2NldUbN5z .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v2NldUbN5z .navbar .navbar-logo img {
  min-width: 50px;
  min-height: 50px;
  border-radius: 10px;
}
.cid-v2NldUbN5z .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v2NldUbN5z .navbar.collapsed {
  justify-content: center;
}
.cid-v2NldUbN5z .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v2NldUbN5z .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v2NldUbN5z .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 7.2rem);
  }
}
.cid-v2NldUbN5z .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v2NldUbN5z .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v2NldUbN5z .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-v2NldUbN5z .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v2NldUbN5z .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v2NldUbN5z .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v2NldUbN5z .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v2NldUbN5z .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v2NldUbN5z .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v2NldUbN5z .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v2NldUbN5z .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-v2NldUbN5z .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v2NldUbN5z .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v2NldUbN5z .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-v2NldUbN5z .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v2NldUbN5z .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v2NldUbN5z .navbar.navbar-short {
  min-height: 60px;
}
.cid-v2NldUbN5z .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v2NldUbN5z .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v2NldUbN5z .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-v2NldUbN5z .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v2NldUbN5z .navbar-brand .navbar-logo a {
  outline: none;
}
@media (max-width: 375px) {
  .cid-v2NldUbN5z .navbar-brand {
    width: 85%;
  }
}
.cid-v2NldUbN5z .dropdown-item.active,
.cid-v2NldUbN5z .dropdown-item:active {
  background-color: transparent;
}
.cid-v2NldUbN5z .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v2NldUbN5z .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v2NldUbN5z .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v2NldUbN5z .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #050508;
}
.cid-v2NldUbN5z .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v2NldUbN5z .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v2NldUbN5z ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v2NldUbN5z .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v2NldUbN5z button.navbar-toggler {
  outline: none;
  width: 25px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v2NldUbN5z button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #191919;
}
.cid-v2NldUbN5z button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v2NldUbN5z button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v2NldUbN5z button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v2NldUbN5z button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v2NldUbN5z nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v2NldUbN5z nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v2NldUbN5z nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v2NldUbN5z nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v2NldUbN5z .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v2NldUbN5z a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v2NldUbN5z .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-v2NldUbN5z .navbar {
    height: 70px;
  }
  .cid-v2NldUbN5z .navbar.opened {
    height: auto;
  }
  .cid-v2NldUbN5z .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v2Nlk5Z35V {
  padding-top: 8rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/gtsi-records-2000x1124.jpeg");
}
.cid-v2Nlk5Z35V .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2Nlk5Z35V .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2Nlk5Z35V .mbr-section-title {
  color: #ffa600;
}
.cid-v2Nlk5Z35V .mbr-text,
.cid-v2Nlk5Z35V .mbr-section-btn {
  color: #d8b27a;
}
#custom-html-10 {
  /* === GTSI Records player === */
  /* Header */
  /* Now playing block */
  /* Controls */
  /* Timeline */
  /* Playlist */
  /* Streaming links */
}
#custom-html-10 .gtsi-player {
  width: 100%;
  max-width: 900px;
  margin: 40px auto;
  padding: 16px 16px 18px;
  background: #050608;
  border-radius: 12px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.5);
  color: #f5f5f5;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
#custom-html-10 .gtsi-player-header h3 {
  margin: 0 0 2px;
  font-size: 1.1rem;
  text-align: center;
}
#custom-html-10 .gtsi-player-header p {
  margin: 0 0 6px;
  font-size: 0.85rem;
  text-align: center;
}
#custom-html-10 .gtsi-now-playing {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2px;
  margin-bottom: 4px;
}
#custom-html-10 .gtsi-label {
  margin-bottom: 0;
  font-size: 0.65rem;
  letter-spacing: 0.16em;
}
#custom-html-10 .gtsi-title {
  margin: 0;
  font-size: 0.95rem;
}
#custom-html-10 .gtsi-controls-main {
  display: flex;
  gap: 4px;
  align-items: center;
  justify-content: center;
}
#custom-html-10 .gtsi-btn {
  border: 1px solid rgba(212, 175, 55, 0.7);
  background: radial-gradient(circle at 20% 0%, #2b2520, #0b0b0d);
  color: #f9f9f9;
  padding: 6px 10px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.9rem;
}
#custom-html-10 .gtsi-play {
  font-size: 1.1rem;
  padding: 7px 13px;
}
#custom-html-10 .gtsi-timeline {
  margin: 6px 0 8px;
}
#custom-html-10 #gtsi-seek {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  display: block;
  appearance: none;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #d4af37, #f1d46a);
  outline: none;
  cursor: pointer;
}
#custom-html-10 .gtsi-time {
  max-width: 600px;
  margin: 3px auto 0;
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
}
#custom-html-10 .gtsi-playlist {
  list-style: none;
  padding: 4px 0;
  margin: 4px 0 6px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
#custom-html-10 .gtsi-playlist li {
  padding: 4px 4px;
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
}
#custom-html-10 .gtsi-links {
  margin-top: 4px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
}
#custom-html-10 .gtsi-links span {
  color: #b9b9b9;
}
.cid-v2PaoTRWRt {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #050508;
  overflow: hidden;
}
.cid-v2Nl9UNN13 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v2Nl9UNN13 nav.navbar {
  position: fixed;
}
.cid-v2Nl9UNN13 .container {
  border-bottom: 2px solid #191919;
}
.cid-v2Nl9UNN13 .btn {
  max-height: 74px;
}
.cid-v2Nl9UNN13 .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-v2Nl9UNN13 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #050508 !important;
}
.cid-v2Nl9UNN13 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v2Nl9UNN13 .dropdown-item:hover,
.cid-v2Nl9UNN13 .dropdown-item:focus {
  background: #d8b27a !important;
  color: white !important;
}
.cid-v2Nl9UNN13 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v2Nl9UNN13 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v2Nl9UNN13 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v2Nl9UNN13 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v2Nl9UNN13 .nav-link {
  position: relative;
}
.cid-v2Nl9UNN13 .container {
  padding: 28px 0;
  display: flex;
  margin: auto;
  align-items: end;
}
@media (min-width: 992px) {
  .cid-v2Nl9UNN13 .container {
    flex-wrap: nowrap;
  }
}
.cid-v2Nl9UNN13 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v2Nl9UNN13 .nav-item:focus,
.cid-v2Nl9UNN13 .nav-link:focus {
  outline: none;
}
.cid-v2Nl9UNN13 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v2Nl9UNN13 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v2Nl9UNN13 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v2Nl9UNN13 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v2Nl9UNN13 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v2Nl9UNN13 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v2Nl9UNN13 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  background: #050508;
}
.cid-v2Nl9UNN13 .navbar.opened {
  transition: all 0.3s;
}
.cid-v2Nl9UNN13 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v2Nl9UNN13 .navbar .navbar-logo img {
  min-width: 50px;
  min-height: 50px;
  border-radius: 10px;
}
.cid-v2Nl9UNN13 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v2Nl9UNN13 .navbar.collapsed {
  justify-content: center;
}
.cid-v2Nl9UNN13 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v2Nl9UNN13 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v2Nl9UNN13 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 7.2rem);
  }
}
.cid-v2Nl9UNN13 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v2Nl9UNN13 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v2Nl9UNN13 .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-v2Nl9UNN13 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v2Nl9UNN13 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v2Nl9UNN13 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v2Nl9UNN13 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v2Nl9UNN13 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v2Nl9UNN13 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v2Nl9UNN13 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v2Nl9UNN13 .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-v2Nl9UNN13 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v2Nl9UNN13 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v2Nl9UNN13 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-v2Nl9UNN13 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v2Nl9UNN13 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v2Nl9UNN13 .navbar.navbar-short {
  min-height: 60px;
}
.cid-v2Nl9UNN13 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v2Nl9UNN13 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v2Nl9UNN13 .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-v2Nl9UNN13 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v2Nl9UNN13 .navbar-brand .navbar-logo a {
  outline: none;
}
@media (max-width: 375px) {
  .cid-v2Nl9UNN13 .navbar-brand {
    width: 85%;
  }
}
.cid-v2Nl9UNN13 .dropdown-item.active,
.cid-v2Nl9UNN13 .dropdown-item:active {
  background-color: transparent;
}
.cid-v2Nl9UNN13 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v2Nl9UNN13 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v2Nl9UNN13 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v2Nl9UNN13 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #050508;
}
.cid-v2Nl9UNN13 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v2Nl9UNN13 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v2Nl9UNN13 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v2Nl9UNN13 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v2Nl9UNN13 button.navbar-toggler {
  outline: none;
  width: 25px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v2Nl9UNN13 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #191919;
}
.cid-v2Nl9UNN13 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v2Nl9UNN13 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v2Nl9UNN13 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v2Nl9UNN13 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v2Nl9UNN13 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v2Nl9UNN13 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v2Nl9UNN13 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v2Nl9UNN13 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v2Nl9UNN13 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v2Nl9UNN13 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v2Nl9UNN13 .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-v2Nl9UNN13 .navbar {
    height: 70px;
  }
  .cid-v2Nl9UNN13 .navbar.opened {
    height: auto;
  }
  .cid-v2Nl9UNN13 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v2PnsRU94z {
  padding-top: 8rem;
  padding-bottom: 6rem;
  background-color: #050508;
}
.cid-v2PnsRU94z .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2PnsRU94z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2PnsRU94z .mbr-section-title {
  color: #ffa600;
  text-align: center;
}
.cid-v2PnsRU94z .mbr-text,
.cid-v2PnsRU94z .mbr-section-btn {
  color: #fafafa;
  text-align: left;
}
.cid-v2PnsRU94z .mbr-section-subtitle {
  color: #d8b27a;
}
.cid-v2PoK4Iigg {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #050508;
}
.cid-v2PoK4Iigg img,
.cid-v2PoK4Iigg .item-img {
  width: 100%;
  height: 100%;
  height: 400px;
  object-fit: cover;
}
.cid-v2PoK4Iigg .item:focus,
.cid-v2PoK4Iigg span:focus {
  outline: none;
}
.cid-v2PoK4Iigg .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2PoK4Iigg .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2PoK4Iigg .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v2PoK4Iigg .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2PoK4Iigg .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v2PoK4Iigg .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v2PoK4Iigg .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2PoK4Iigg .mbr-section-title {
  color: #232323;
}
.cid-v2PoK4Iigg .mbr-text,
.cid-v2PoK4Iigg .mbr-section-btn {
  text-align: left;
}
.cid-v2PoK4Iigg .item-title {
  text-align: left;
}
.cid-v2PoK4Iigg .item-subtitle {
  text-align: left;
  color: #ffa600;
}
.cid-v2PrZc0fJP {
  padding-top: 8rem;
  padding-bottom: 6rem;
  background-color: #050508;
}
.cid-v2PrZc0fJP .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2PrZc0fJP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2PrZc0fJP .mbr-section-title {
  color: #d8b27a;
  text-align: center;
}
.cid-v2PrZc0fJP .mbr-text,
.cid-v2PrZc0fJP .mbr-section-btn {
  color: #fafafa;
  text-align: left;
}
.cid-v2PrZc0fJP .mbr-section-subtitle {
  color: #d8b27a;
}
.cid-v2PnpvuNb3 {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #050508;
  overflow: hidden;
}
.cid-v2Nl9UNN13 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v2Nl9UNN13 nav.navbar {
  position: fixed;
}
.cid-v2Nl9UNN13 .container {
  border-bottom: 2px solid #191919;
}
.cid-v2Nl9UNN13 .btn {
  max-height: 74px;
}
.cid-v2Nl9UNN13 .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-v2Nl9UNN13 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #050508 !important;
}
.cid-v2Nl9UNN13 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v2Nl9UNN13 .dropdown-item:hover,
.cid-v2Nl9UNN13 .dropdown-item:focus {
  background: #d8b27a !important;
  color: white !important;
}
.cid-v2Nl9UNN13 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v2Nl9UNN13 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v2Nl9UNN13 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v2Nl9UNN13 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v2Nl9UNN13 .nav-link {
  position: relative;
}
.cid-v2Nl9UNN13 .container {
  padding: 28px 0;
  display: flex;
  margin: auto;
  align-items: end;
}
@media (min-width: 992px) {
  .cid-v2Nl9UNN13 .container {
    flex-wrap: nowrap;
  }
}
.cid-v2Nl9UNN13 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v2Nl9UNN13 .nav-item:focus,
.cid-v2Nl9UNN13 .nav-link:focus {
  outline: none;
}
.cid-v2Nl9UNN13 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v2Nl9UNN13 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v2Nl9UNN13 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v2Nl9UNN13 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v2Nl9UNN13 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v2Nl9UNN13 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v2Nl9UNN13 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  background: #050508;
}
.cid-v2Nl9UNN13 .navbar.opened {
  transition: all 0.3s;
}
.cid-v2Nl9UNN13 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v2Nl9UNN13 .navbar .navbar-logo img {
  min-width: 50px;
  min-height: 50px;
  border-radius: 10px;
}
.cid-v2Nl9UNN13 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v2Nl9UNN13 .navbar.collapsed {
  justify-content: center;
}
.cid-v2Nl9UNN13 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v2Nl9UNN13 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v2Nl9UNN13 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 7.2rem);
  }
}
.cid-v2Nl9UNN13 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v2Nl9UNN13 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v2Nl9UNN13 .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-v2Nl9UNN13 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v2Nl9UNN13 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v2Nl9UNN13 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v2Nl9UNN13 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v2Nl9UNN13 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v2Nl9UNN13 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v2Nl9UNN13 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v2Nl9UNN13 .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-v2Nl9UNN13 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v2Nl9UNN13 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v2Nl9UNN13 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-v2Nl9UNN13 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v2Nl9UNN13 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v2Nl9UNN13 .navbar.navbar-short {
  min-height: 60px;
}
.cid-v2Nl9UNN13 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v2Nl9UNN13 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v2Nl9UNN13 .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-v2Nl9UNN13 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v2Nl9UNN13 .navbar-brand .navbar-logo a {
  outline: none;
}
@media (max-width: 375px) {
  .cid-v2Nl9UNN13 .navbar-brand {
    width: 85%;
  }
}
.cid-v2Nl9UNN13 .dropdown-item.active,
.cid-v2Nl9UNN13 .dropdown-item:active {
  background-color: transparent;
}
.cid-v2Nl9UNN13 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v2Nl9UNN13 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v2Nl9UNN13 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v2Nl9UNN13 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #050508;
}
.cid-v2Nl9UNN13 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v2Nl9UNN13 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v2Nl9UNN13 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v2Nl9UNN13 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v2Nl9UNN13 button.navbar-toggler {
  outline: none;
  width: 25px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v2Nl9UNN13 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #191919;
}
.cid-v2Nl9UNN13 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v2Nl9UNN13 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v2Nl9UNN13 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v2Nl9UNN13 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v2Nl9UNN13 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v2Nl9UNN13 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v2Nl9UNN13 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v2Nl9UNN13 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v2Nl9UNN13 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v2Nl9UNN13 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v2Nl9UNN13 .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-v2Nl9UNN13 .navbar {
    height: 70px;
  }
  .cid-v2Nl9UNN13 .navbar.opened {
    height: auto;
  }
  .cid-v2Nl9UNN13 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v2PtD6phdR {
  padding-top: 10rem;
  padding-bottom: 8rem;
  background-color: #050508;
}
.cid-v2PtD6phdR .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2PtD6phdR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2PtD6phdR .mbr-section-title {
  color: #ffa600;
}
.cid-v2PtD6phdR .mbr-text,
.cid-v2PtD6phdR .mbr-section-btn {
  color: #ffa600;
}
.cid-v2PtD6phdR .mbr-section-subtitle {
  color: #e6c63b;
}
.cid-v2Puf9tPBl {
  padding-top: 8rem;
  padding-bottom: 1rem;
  background-color: #050508;
}
.cid-v2Puf9tPBl .mbr-section-subtitle {
  text-align: left;
  color: #fafafa;
}
.cid-v2Puf9tPBl .mbr-text {
  color: #fafafa;
}
.cid-v2Puf9tPBl .mbr-section-title {
  color: #ffa600;
  text-align: center;
}
.cid-v2PPcpiflV {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-v2PPcpiflV .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2PPcpiflV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2PPcpiflV .card-wrapper {
  background: #000000;
}
@media (max-width: 767px) {
  .cid-v2PPcpiflV .card-wrapper {
    padding: 2rem 1.5rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-v2PPcpiflV .card-wrapper {
    padding: 2.25rem;
  }
}
@media (min-width: 992px) {
  .cid-v2PPcpiflV .card-wrapper {
    padding: 4rem;
  }
}
.cid-v2PPcpiflV .mbr-text,
.cid-v2PPcpiflV .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-v2PPcpiflV .card-title,
.cid-v2PPcpiflV .card-box {
  text-align: center;
  color: #000000;
}
.cid-v2PPcpiflV .counter-container ul {
  margin: 0;
  padding-left: 2.25rem;
  list-style: none;
}
.cid-v2PPcpiflV .counter-container ul li {
  position: relative;
  list-style: none;
  margin-bottom: 2rem;
}
.cid-v2PPcpiflV .counter-container ul li:before {
  position: absolute;
  left: -1.5em;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffa600;
  background-color: #ffa600;
  width: 0.5em;
  height: 0.5em;
  top: 0.4em;
  border-radius: 50%;
}
.cid-v2PPcpiflV .mbr-text UL {
  text-align: left;
}
.cid-v2PPcpiflV .mbr-section-title {
  color: #ffa600;
}
.cid-v2PPcpiflV .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-v2PPcpiflV .mbr-text {
  color: #ffffff;
}
.cid-v2PQy1jjbk {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-v2PQy1jjbk .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2PQy1jjbk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2PQy1jjbk .card-wrapper {
  background: #000000;
}
@media (max-width: 767px) {
  .cid-v2PQy1jjbk .card-wrapper {
    padding: 2rem 1.5rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-v2PQy1jjbk .card-wrapper {
    padding: 2.25rem;
  }
}
@media (min-width: 992px) {
  .cid-v2PQy1jjbk .card-wrapper {
    padding: 4rem;
  }
}
.cid-v2PQy1jjbk .mbr-text,
.cid-v2PQy1jjbk .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-v2PQy1jjbk .card-title,
.cid-v2PQy1jjbk .card-box {
  text-align: center;
  color: #000000;
}
.cid-v2PQy1jjbk .counter-container ul {
  margin: 0;
  padding-left: 2.25rem;
  list-style: none;
}
.cid-v2PQy1jjbk .counter-container ul li {
  position: relative;
  list-style: none;
  margin-bottom: 2rem;
}
.cid-v2PQy1jjbk .counter-container ul li:before {
  position: absolute;
  left: -1.5em;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffa600;
  background-color: #ffa600;
  width: 0.5em;
  height: 0.5em;
  top: 0.4em;
  border-radius: 50%;
}
.cid-v2PQy1jjbk .mbr-text UL {
  text-align: left;
}
.cid-v2PQy1jjbk .mbr-section-title {
  color: #ffa600;
}
.cid-v2PQy1jjbk .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-v2PQy1jjbk .mbr-text {
  color: #ffffff;
}
.cid-v2SYVnemwj {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-v2SYVnemwj .image-wrapper {
  position: relative;
}
.cid-v2SYVnemwj .mbr-section-btn {
  position: absolute;
  bottom: 5%;
  right: -1%;
}
@media (max-width: 690px) {
  .cid-v2SYVnemwj .mbr-section-btn {
    position: absolute;
    right: 0px;
    bottom: -13%;
  }
}
.cid-v2SYVnemwj img {
  max-width: 200px;
  position: absolute;
  right: 0;
  z-index: 10;
}
.cid-v2SYVnemwj .line {
  width: 100%;
  height: 1px;
  background-color: #ffa600;
  margin-bottom: 25px;
}
.cid-v2SYVnemwj .mbr-section-subtitle {
  font-weight: 700;
  margin-bottom: 25px;
  color: #1d1d1f;
}
.cid-v2SYVnemwj .mbr-section-title {
  margin-bottom: 25px;
}
.cid-v2SYVnemwj a {
  transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out;
}
.cid-v2SYVnemwj rect {
  transform: translateX(-13px);
  transform-origin: right;
  stroke: currentColor;
  stroke-width: .5;
}
.cid-v2SYVnemwj .qodef-button-cap-fake {
  animation: qode-button-cap-fake-out 0.35s linear;
}
.cid-v2SYVnemwj svg {
  margin-left: 15px;
}
.cid-v2SYVnemwj path {
  animation: qode-button-cap-out 0.35s ease-in-out;
  transform: translateX(-13px);
  transform-origin: right;
  fill: currentColor;
}
.cid-v2SYVnemwj .link:hover rect {
  animation: qode-button-line 0.7s ease forwards;
}
.cid-v2SYVnemwj .link:hover path {
  animation: qode-button-cap 0.7s ease forwards;
}
.cid-v2SYVnemwj .link a {
  background-image: none !important;
}
@keyframes qode-button-cap-fake-out {
  0% {
    clip-path: inset(0 0 0 0);
  }
  49%,
  51% {
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes qode-button-line {
  0%,
  100% {
    transform: translateX(-13px) scaleX(1);
  }
  10% {
    transform: translateX(-13px) scaleX(1);
  }
  46%,
  55% {
    transform: translateX(0) scaleX(0.5);
  }
  99% {
    transform: translateX(-13px) scaleX(0.6);
  }
}
@keyframes qode-button-cap-out {
  0%,
  50% {
    transform: translateX(-35px) scaleX(-1);
  }
  100%,
  51% {
    transform: translateX(-13px) scaleX(1);
  }
}
@keyframes qode-button-cap {
  0% {
    -webkit-transform: translateX(-13px) scaleX(1);
    transform: translateX(-13px) scaleX(1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
  54% {
    -webkit-transform: translateX(-1px) scaleX(1);
    transform: translateX(-1px) scaleX(1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  55% {
    -webkit-transform: translateX(-20px) scaleX(-1);
    transform: translateX(-20px) scaleX(-1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    -webkit-transform: translateX(-35px) scaleX(-1);
    transform: translateX(-35px) scaleX(-1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
}
.cid-v2SYVnemwj .wrapper {
  margin: auto;
}
.cid-v2SYVnemwj .mbr-section-subtitle,
.cid-v2SYVnemwj .link {
  text-align: center;
  color: #ffa600;
}
.cid-v2SYVnemwj .link {
  color: #d8b27a;
}
#custom-html-1h {
  /* === GTSI Records player === */
  /* Header */
  /* Now playing block */
  /* Controls */
  /* Timeline */
  /* Playlist */
  /* Streaming links */
}
#custom-html-1h .gtsi-player {
  width: 100%;
  max-width: 900px;
  margin: 40px auto;
  padding: 16px 16px 18px;
  background: #050608;
  border-radius: 12px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.5);
  color: #f5f5f5;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
#custom-html-1h .gtsi-player-header h3 {
  margin: 0 0 2px;
  font-size: 1.1rem;
  text-align: center;
}
#custom-html-1h .gtsi-player-header p {
  margin: 0 0 6px;
  font-size: 0.85rem;
  text-align: center;
}
#custom-html-1h .gtsi-now-playing {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2px;
  margin-bottom: 4px;
}
#custom-html-1h .gtsi-label {
  margin-bottom: 0;
  font-size: 0.65rem;
  letter-spacing: 0.16em;
}
#custom-html-1h .gtsi-title {
  margin: 0;
  font-size: 0.95rem;
}
#custom-html-1h .gtsi-controls-main {
  display: flex;
  gap: 4px;
  align-items: center;
  justify-content: center;
}
#custom-html-1h .gtsi-btn {
  border: 1px solid rgba(212, 175, 55, 0.7);
  background: radial-gradient(circle at 20% 0%, #2b2520, #0b0b0d);
  color: #f9f9f9;
  padding: 6px 10px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.9rem;
}
#custom-html-1h .gtsi-play {
  font-size: 1.1rem;
  padding: 7px 13px;
}
#custom-html-1h .gtsi-timeline {
  margin: 6px 0 8px;
}
#custom-html-1h #gtsi-seek {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  display: block;
  appearance: none;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #d4af37, #f1d46a);
  outline: none;
  cursor: pointer;
}
#custom-html-1h .gtsi-time {
  max-width: 600px;
  margin: 3px auto 0;
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
}
#custom-html-1h .gtsi-playlist {
  list-style: none;
  padding: 4px 0;
  margin: 4px 0 6px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
#custom-html-1h .gtsi-playlist li {
  padding: 4px 4px;
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
}
#custom-html-1h .gtsi-links {
  margin-top: 4px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
}
#custom-html-1h .gtsi-links span {
  color: #b9b9b9;
}
.cid-v2PBfFQVoS {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-v2PBfFQVoS .item:focus,
.cid-v2PBfFQVoS span:focus {
  outline: none;
}
.cid-v2PBfFQVoS .item {
  cursor: pointer;
}
.cid-v2PBfFQVoS .grid-container {
  grid-row-gap: 1rem;
}
@media (max-width: 767px) {
  .cid-v2PBfFQVoS .grid-container {
    grid-row-gap: 1rem;
  }
}
.cid-v2PBfFQVoS .grid-container-1,
.cid-v2PBfFQVoS .grid-container-2 {
  gap: 0 1rem;
}
@media (max-width: 767px) {
  .cid-v2PBfFQVoS .grid-container-1,
  .cid-v2PBfFQVoS .grid-container-2 {
    gap: 0 1rem;
  }
}
.cid-v2PBfFQVoS .mbr-section-title {
  margin-bottom: 40px;
  color: #ffa600;
  text-align: center;
}
.cid-v2PBfFQVoS .content-head {
  max-width: 800px;
}
.cid-v2PBfFQVoS .container,
.cid-v2PBfFQVoS .container-fluid {
  overflow: hidden;
}
.cid-v2PBfFQVoS .grid-container {
  display: grid;
  transform: translate3d(-3rem, 0, 0);
  width: 115vw;
  grid-column-gap: 1rem;
  padding: 40px 0;
  border-top: 1px solid #d8b27a;
  border-bottom: 1px solid #d8b27a;
}
@media (max-width: 992px) {
  .cid-v2PBfFQVoS .grid-container {
    padding: 24px 0;
  }
}
.cid-v2PBfFQVoS .grid-item {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-v2PBfFQVoS .grid-item img {
  min-width: 30vw;
  max-width: 100%;
  height: 500px;
  object-fit: cover;
}
@media (max-width: 1200px) {
  .cid-v2PBfFQVoS .grid-item img {
    height: 300px;
  }
}
@media (max-width: 767px) {
  .cid-v2PBfFQVoS .grid-item img {
    min-width: 35vw;
    height: 250px;
  }
}
@media (max-width: 425px) {
  .cid-v2PBfFQVoS .grid-item img {
    height: 140px;
  }
}
.cid-v2PBfFQVoS .grid-container-1,
.cid-v2PBfFQVoS .grid-container-2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
}
.cid-v2PBfFQVoS .grid-container-1 {
  align-items: flex-end;
}
.cid-v2PBfFQVoS .grid-container-2 {
  align-items: flex-start;
}
.cid-v2PELPkve1 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-v2PELPkve1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2PELPkve1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2PELPkve1 .card-wrapper {
  background: #000000;
}
@media (max-width: 767px) {
  .cid-v2PELPkve1 .card-wrapper {
    padding: 2rem 1.5rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-v2PELPkve1 .card-wrapper {
    padding: 2.25rem;
  }
}
@media (min-width: 992px) {
  .cid-v2PELPkve1 .card-wrapper {
    padding: 4rem;
  }
}
.cid-v2PELPkve1 .mbr-text,
.cid-v2PELPkve1 .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-v2PELPkve1 .card-title,
.cid-v2PELPkve1 .card-box {
  text-align: center;
  color: #000000;
}
.cid-v2PELPkve1 .counter-container ul {
  margin: 0;
  padding-left: 2.25rem;
  list-style: none;
}
.cid-v2PELPkve1 .counter-container ul li {
  position: relative;
  list-style: none;
  margin-bottom: 2rem;
}
.cid-v2PELPkve1 .counter-container ul li:before {
  position: absolute;
  left: -1.5em;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #d8b27a;
  background-color: #d8b27a;
  width: 0.5em;
  height: 0.5em;
  top: 0.4em;
  border-radius: 50%;
}
.cid-v2PELPkve1 .mbr-text UL {
  text-align: left;
}
.cid-v2PELPkve1 .mbr-section-title {
  color: #ffa600;
}
.cid-v2PELPkve1 .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-v2PELPkve1 .mbr-text {
  color: #ffffff;
}
.cid-v2PG7rgvl2 {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-v2PG7rgvl2 .image-wrapper {
  position: relative;
}
.cid-v2PG7rgvl2 .mbr-section-btn {
  position: absolute;
  bottom: 5%;
  right: -1%;
}
@media (max-width: 690px) {
  .cid-v2PG7rgvl2 .mbr-section-btn {
    position: absolute;
    right: 0px;
    bottom: -13%;
  }
}
.cid-v2PG7rgvl2 img {
  max-width: 200px;
  position: absolute;
  right: 0;
  z-index: 10;
}
.cid-v2PG7rgvl2 .line {
  width: 100%;
  height: 1px;
  background-color: #d8b27a;
  margin-bottom: 25px;
}
.cid-v2PG7rgvl2 .mbr-section-subtitle {
  font-weight: 700;
  margin-bottom: 25px;
  color: #1d1d1f;
}
.cid-v2PG7rgvl2 .mbr-section-title {
  margin-bottom: 25px;
}
.cid-v2PG7rgvl2 a {
  transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out;
}
.cid-v2PG7rgvl2 rect {
  transform: translateX(-13px);
  transform-origin: right;
  stroke: currentColor;
  stroke-width: .5;
}
.cid-v2PG7rgvl2 .qodef-button-cap-fake {
  animation: qode-button-cap-fake-out 0.35s linear;
}
.cid-v2PG7rgvl2 svg {
  margin-left: 15px;
}
.cid-v2PG7rgvl2 path {
  animation: qode-button-cap-out 0.35s ease-in-out;
  transform: translateX(-13px);
  transform-origin: right;
  fill: currentColor;
}
.cid-v2PG7rgvl2 .link:hover rect {
  animation: qode-button-line 0.7s ease forwards;
}
.cid-v2PG7rgvl2 .link:hover path {
  animation: qode-button-cap 0.7s ease forwards;
}
.cid-v2PG7rgvl2 .link a {
  background-image: none !important;
}
@keyframes qode-button-cap-fake-out {
  0% {
    clip-path: inset(0 0 0 0);
  }
  49%,
  51% {
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes qode-button-line {
  0%,
  100% {
    transform: translateX(-13px) scaleX(1);
  }
  10% {
    transform: translateX(-13px) scaleX(1);
  }
  46%,
  55% {
    transform: translateX(0) scaleX(0.5);
  }
  99% {
    transform: translateX(-13px) scaleX(0.6);
  }
}
@keyframes qode-button-cap-out {
  0%,
  50% {
    transform: translateX(-35px) scaleX(-1);
  }
  100%,
  51% {
    transform: translateX(-13px) scaleX(1);
  }
}
@keyframes qode-button-cap {
  0% {
    -webkit-transform: translateX(-13px) scaleX(1);
    transform: translateX(-13px) scaleX(1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
  54% {
    -webkit-transform: translateX(-1px) scaleX(1);
    transform: translateX(-1px) scaleX(1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  55% {
    -webkit-transform: translateX(-20px) scaleX(-1);
    transform: translateX(-20px) scaleX(-1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    -webkit-transform: translateX(-35px) scaleX(-1);
    transform: translateX(-35px) scaleX(-1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
}
.cid-v2PG7rgvl2 .wrapper {
  margin: auto;
}
.cid-v2PG7rgvl2 .mbr-section-subtitle,
.cid-v2PG7rgvl2 .link {
  text-align: center;
  color: #ffa600;
}
.cid-v2PG7rgvl2 .link {
  color: #fafafa;
}
.cid-v2PHOCgaVQ {
  padding-top: 4rem;
  padding-bottom: 6rem;
  background-color: #050508;
}
.cid-v2PHOCgaVQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2PHOCgaVQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2PHOCgaVQ .mbr-section-title {
  color: #ffa600;
  text-align: center;
}
.cid-v2PHOCgaVQ .mbr-text,
.cid-v2PHOCgaVQ .mbr-section-btn {
  color: #fafafa;
  text-align: left;
}
.cid-v2PHOCgaVQ .mbr-section-subtitle {
  color: #d8b27a;
}
.cid-v2PITlx2Y4 {
  padding-top: 1rem;
  padding-bottom: 7rem;
  background-color: #000000;
}
.cid-v2PITlx2Y4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2PITlx2Y4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2PITlx2Y4 .content-wrapper .mbr-label {
  margin-bottom: 0;
}
.cid-v2PITlx2Y4 .content-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-v2PITlx2Y4 .content-wrapper .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-v2PITlx2Y4 .content-wrapper .mbr-section-btn {
  margin-top: 24px;
}
.cid-v2PITlx2Y4 .mbr-label {
  color: #ffa600;
  text-align: center;
}
.cid-v2PITlx2Y4 .mbr-section-title {
  color: #ff6d99;
}
.cid-v2PITlx2Y4 .mbr-text,
.cid-v2PITlx2Y4 .text-wrapper {
  color: #111111;
  text-align: center;
}
.cid-v2PITlx2Y4 .mbr-section-title,
.cid-v2PITlx2Y4 .mbr-section-btn {
  text-align: center;
}
.cid-v2TXnRHV5i {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-v2TXnRHV5i .image-wrapper {
  position: relative;
}
.cid-v2TXnRHV5i .mbr-section-btn {
  position: absolute;
  bottom: 5%;
  right: -1%;
}
@media (max-width: 690px) {
  .cid-v2TXnRHV5i .mbr-section-btn {
    position: absolute;
    right: 0px;
    bottom: -13%;
  }
}
.cid-v2TXnRHV5i img {
  max-width: 200px;
  position: absolute;
  right: 0;
  z-index: 10;
}
.cid-v2TXnRHV5i .line {
  width: 100%;
  height: 1px;
  background-color: #ffa600;
  margin-bottom: 25px;
}
.cid-v2TXnRHV5i .mbr-section-subtitle {
  font-weight: 700;
  margin-bottom: 25px;
  color: #1d1d1f;
}
.cid-v2TXnRHV5i .mbr-section-title {
  margin-bottom: 25px;
}
.cid-v2TXnRHV5i a {
  transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out;
}
.cid-v2TXnRHV5i rect {
  transform: translateX(-13px);
  transform-origin: right;
  stroke: currentColor;
  stroke-width: .5;
}
.cid-v2TXnRHV5i .qodef-button-cap-fake {
  animation: qode-button-cap-fake-out 0.35s linear;
}
.cid-v2TXnRHV5i svg {
  margin-left: 15px;
}
.cid-v2TXnRHV5i path {
  animation: qode-button-cap-out 0.35s ease-in-out;
  transform: translateX(-13px);
  transform-origin: right;
  fill: currentColor;
}
.cid-v2TXnRHV5i .link:hover rect {
  animation: qode-button-line 0.7s ease forwards;
}
.cid-v2TXnRHV5i .link:hover path {
  animation: qode-button-cap 0.7s ease forwards;
}
.cid-v2TXnRHV5i .link a {
  background-image: none !important;
}
@keyframes qode-button-cap-fake-out {
  0% {
    clip-path: inset(0 0 0 0);
  }
  49%,
  51% {
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes qode-button-line {
  0%,
  100% {
    transform: translateX(-13px) scaleX(1);
  }
  10% {
    transform: translateX(-13px) scaleX(1);
  }
  46%,
  55% {
    transform: translateX(0) scaleX(0.5);
  }
  99% {
    transform: translateX(-13px) scaleX(0.6);
  }
}
@keyframes qode-button-cap-out {
  0%,
  50% {
    transform: translateX(-35px) scaleX(-1);
  }
  100%,
  51% {
    transform: translateX(-13px) scaleX(1);
  }
}
@keyframes qode-button-cap {
  0% {
    -webkit-transform: translateX(-13px) scaleX(1);
    transform: translateX(-13px) scaleX(1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
  54% {
    -webkit-transform: translateX(-1px) scaleX(1);
    transform: translateX(-1px) scaleX(1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  55% {
    -webkit-transform: translateX(-20px) scaleX(-1);
    transform: translateX(-20px) scaleX(-1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    -webkit-transform: translateX(-35px) scaleX(-1);
    transform: translateX(-35px) scaleX(-1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
}
.cid-v2TXnRHV5i .wrapper {
  margin: auto;
}
.cid-v2TXnRHV5i .mbr-section-subtitle,
.cid-v2TXnRHV5i .link {
  text-align: center;
  color: #d8b27a;
}
.cid-v2TXnRHV5i .link {
  color: #fafafa;
}
.cid-v2PnpvuNb3 {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #050508;
  overflow: hidden;
}
.cid-v2Nl9UNN13 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v2Nl9UNN13 nav.navbar {
  position: fixed;
}
.cid-v2Nl9UNN13 .container {
  border-bottom: 2px solid #191919;
}
.cid-v2Nl9UNN13 .btn {
  max-height: 74px;
}
.cid-v2Nl9UNN13 .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-v2Nl9UNN13 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #050508 !important;
}
.cid-v2Nl9UNN13 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v2Nl9UNN13 .dropdown-item:hover,
.cid-v2Nl9UNN13 .dropdown-item:focus {
  background: #d8b27a !important;
  color: white !important;
}
.cid-v2Nl9UNN13 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v2Nl9UNN13 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v2Nl9UNN13 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v2Nl9UNN13 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v2Nl9UNN13 .nav-link {
  position: relative;
}
.cid-v2Nl9UNN13 .container {
  padding: 28px 0;
  display: flex;
  margin: auto;
  align-items: end;
}
@media (min-width: 992px) {
  .cid-v2Nl9UNN13 .container {
    flex-wrap: nowrap;
  }
}
.cid-v2Nl9UNN13 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v2Nl9UNN13 .nav-item:focus,
.cid-v2Nl9UNN13 .nav-link:focus {
  outline: none;
}
.cid-v2Nl9UNN13 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v2Nl9UNN13 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v2Nl9UNN13 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v2Nl9UNN13 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v2Nl9UNN13 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v2Nl9UNN13 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v2Nl9UNN13 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  background: #050508;
}
.cid-v2Nl9UNN13 .navbar.opened {
  transition: all 0.3s;
}
.cid-v2Nl9UNN13 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v2Nl9UNN13 .navbar .navbar-logo img {
  min-width: 50px;
  min-height: 50px;
  border-radius: 10px;
}
.cid-v2Nl9UNN13 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v2Nl9UNN13 .navbar.collapsed {
  justify-content: center;
}
.cid-v2Nl9UNN13 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v2Nl9UNN13 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v2Nl9UNN13 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 7.2rem);
  }
}
.cid-v2Nl9UNN13 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v2Nl9UNN13 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v2Nl9UNN13 .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-v2Nl9UNN13 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v2Nl9UNN13 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v2Nl9UNN13 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v2Nl9UNN13 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v2Nl9UNN13 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v2Nl9UNN13 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v2Nl9UNN13 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v2Nl9UNN13 .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-v2Nl9UNN13 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v2Nl9UNN13 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v2Nl9UNN13 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-v2Nl9UNN13 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v2Nl9UNN13 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v2Nl9UNN13 .navbar.navbar-short {
  min-height: 60px;
}
.cid-v2Nl9UNN13 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v2Nl9UNN13 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v2Nl9UNN13 .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-v2Nl9UNN13 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v2Nl9UNN13 .navbar-brand .navbar-logo a {
  outline: none;
}
@media (max-width: 375px) {
  .cid-v2Nl9UNN13 .navbar-brand {
    width: 85%;
  }
}
.cid-v2Nl9UNN13 .dropdown-item.active,
.cid-v2Nl9UNN13 .dropdown-item:active {
  background-color: transparent;
}
.cid-v2Nl9UNN13 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v2Nl9UNN13 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v2Nl9UNN13 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v2Nl9UNN13 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #050508;
}
.cid-v2Nl9UNN13 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v2Nl9UNN13 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v2Nl9UNN13 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v2Nl9UNN13 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v2Nl9UNN13 button.navbar-toggler {
  outline: none;
  width: 25px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v2Nl9UNN13 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #191919;
}
.cid-v2Nl9UNN13 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v2Nl9UNN13 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v2Nl9UNN13 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v2Nl9UNN13 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v2Nl9UNN13 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v2Nl9UNN13 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v2Nl9UNN13 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v2Nl9UNN13 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v2Nl9UNN13 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v2Nl9UNN13 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v2Nl9UNN13 .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-v2Nl9UNN13 .navbar {
    height: 70px;
  }
  .cid-v2Nl9UNN13 .navbar.opened {
    height: auto;
  }
  .cid-v2Nl9UNN13 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v2U4JTdV79 {
  padding-top: 8rem;
  padding-bottom: 6rem;
  background-color: #050508;
}
.cid-v2U4JTdV79 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2U4JTdV79 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2U4JTdV79 .mbr-section-title {
  color: #ffa600;
}
.cid-v2U4JTdV79 .mbr-text,
.cid-v2U4JTdV79 .mbr-section-btn {
  color: #d8b27a;
}
.cid-v4aLeUMYMD {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #050508;
}
.cid-v4aLeUMYMD .mbr-section-subtitle {
  text-align: center;
  color: #ffa600;
}
.cid-v4aLeUMYMD .mbr-text {
  color: #fafafa;
}
.cid-v4aLf69D3B {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #050508;
}
.cid-v4aLf69D3B .mbr-section-subtitle {
  text-align: center;
  color: #ffa600;
}
.cid-v4aLf69D3B .mbr-text {
  color: #fafafa;
}
.cid-v4aMt697Su {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-v4aMt697Su .image-wrapper {
  position: relative;
}
.cid-v4aMt697Su .mbr-section-btn {
  position: absolute;
  bottom: 5%;
  right: -1%;
}
@media (max-width: 690px) {
  .cid-v4aMt697Su .mbr-section-btn {
    position: absolute;
    right: 0px;
    bottom: -13%;
  }
}
.cid-v4aMt697Su img {
  max-width: 200px;
  position: absolute;
  right: 0;
  z-index: 10;
}
.cid-v4aMt697Su .line {
  width: 100%;
  height: 1px;
  background-color: #d8b27a;
  margin-bottom: 25px;
}
.cid-v4aMt697Su .mbr-section-subtitle {
  font-weight: 700;
  margin-bottom: 25px;
  color: #1d1d1f;
}
.cid-v4aMt697Su .mbr-section-title {
  margin-bottom: 25px;
}
.cid-v4aMt697Su a {
  transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out;
}
.cid-v4aMt697Su rect {
  transform: translateX(-13px);
  transform-origin: right;
  stroke: currentColor;
  stroke-width: .5;
}
.cid-v4aMt697Su .qodef-button-cap-fake {
  animation: qode-button-cap-fake-out 0.35s linear;
}
.cid-v4aMt697Su svg {
  margin-left: 15px;
}
.cid-v4aMt697Su path {
  animation: qode-button-cap-out 0.35s ease-in-out;
  transform: translateX(-13px);
  transform-origin: right;
  fill: currentColor;
}
.cid-v4aMt697Su .link:hover rect {
  animation: qode-button-line 0.7s ease forwards;
}
.cid-v4aMt697Su .link:hover path {
  animation: qode-button-cap 0.7s ease forwards;
}
.cid-v4aMt697Su .link a {
  background-image: none !important;
}
@keyframes qode-button-cap-fake-out {
  0% {
    clip-path: inset(0 0 0 0);
  }
  49%,
  51% {
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes qode-button-line {
  0%,
  100% {
    transform: translateX(-13px) scaleX(1);
  }
  10% {
    transform: translateX(-13px) scaleX(1);
  }
  46%,
  55% {
    transform: translateX(0) scaleX(0.5);
  }
  99% {
    transform: translateX(-13px) scaleX(0.6);
  }
}
@keyframes qode-button-cap-out {
  0%,
  50% {
    transform: translateX(-35px) scaleX(-1);
  }
  100%,
  51% {
    transform: translateX(-13px) scaleX(1);
  }
}
@keyframes qode-button-cap {
  0% {
    -webkit-transform: translateX(-13px) scaleX(1);
    transform: translateX(-13px) scaleX(1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
  54% {
    -webkit-transform: translateX(-1px) scaleX(1);
    transform: translateX(-1px) scaleX(1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  55% {
    -webkit-transform: translateX(-20px) scaleX(-1);
    transform: translateX(-20px) scaleX(-1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    -webkit-transform: translateX(-35px) scaleX(-1);
    transform: translateX(-35px) scaleX(-1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
}
.cid-v4aMt697Su .wrapper {
  margin: auto;
}
.cid-v4aMt697Su .mbr-section-subtitle,
.cid-v4aMt697Su .link {
  text-align: center;
  color: #ffa600;
}
.cid-v4aMt697Su .link {
  color: #d8b27a;
}
#custom-html-26 {
  /* === GTSI Records player === */
  /* Header */
  /* Now playing block */
  /* Controls */
  /* Timeline */
  /* Playlist */
  /* Streaming links */
}
#custom-html-26 .gtsi-player {
  width: 100%;
  max-width: 900px;
  margin: 40px auto;
  padding: 16px 16px 18px;
  background: #050608;
  border-radius: 12px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.5);
  color: #f5f5f5;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
#custom-html-26 .gtsi-player-header h3 {
  margin: 0 0 2px;
  font-size: 1.1rem;
  text-align: center;
}
#custom-html-26 .gtsi-player-header p {
  margin: 0 0 6px;
  font-size: 0.85rem;
  text-align: center;
}
#custom-html-26 .gtsi-now-playing {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2px;
  margin-bottom: 4px;
}
#custom-html-26 .gtsi-label {
  margin-bottom: 0;
  font-size: 0.65rem;
  letter-spacing: 0.16em;
}
#custom-html-26 .gtsi-title {
  margin: 0;
  font-size: 0.95rem;
}
#custom-html-26 .gtsi-controls-main {
  display: flex;
  gap: 4px;
  align-items: center;
  justify-content: center;
}
#custom-html-26 .gtsi-btn {
  border: 1px solid rgba(212, 175, 55, 0.7);
  background: radial-gradient(circle at 20% 0%, #2b2520, #0b0b0d);
  color: #f9f9f9;
  padding: 6px 10px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.9rem;
}
#custom-html-26 .gtsi-play {
  font-size: 1.1rem;
  padding: 7px 13px;
}
#custom-html-26 .gtsi-timeline {
  margin: 6px 0 8px;
}
#custom-html-26 #gtsi-seek {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  display: block;
  appearance: none;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #d4af37, #f1d46a);
  outline: none;
  cursor: pointer;
}
#custom-html-26 .gtsi-time {
  max-width: 600px;
  margin: 3px auto 0;
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
}
#custom-html-26 .gtsi-playlist {
  list-style: none;
  padding: 4px 0;
  margin: 4px 0 6px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
#custom-html-26 .gtsi-playlist li {
  padding: 4px 4px;
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
}
#custom-html-26 .gtsi-links {
  margin-top: 4px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
}
#custom-html-26 .gtsi-links span {
  color: #b9b9b9;
}
.cid-v4aOxL15Tv {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-color: #050508;
}
.cid-v4aOxL15Tv .mbr-section-subtitle {
  text-align: center;
  color: #ffa600;
}
.cid-v4aOxL15Tv .mbr-text {
  color: #fafafa;
  text-align: center;
}
.cid-v2U6oCk1Tv {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-v2U6oCk1Tv .image-wrapper {
  position: relative;
}
.cid-v2U6oCk1Tv .mbr-section-btn {
  position: absolute;
  bottom: 5%;
  right: -1%;
}
@media (max-width: 690px) {
  .cid-v2U6oCk1Tv .mbr-section-btn {
    position: absolute;
    right: 0px;
    bottom: -13%;
  }
}
.cid-v2U6oCk1Tv img {
  max-width: 200px;
  position: absolute;
  right: 0;
  z-index: 10;
}
.cid-v2U6oCk1Tv .line {
  width: 100%;
  height: 1px;
  background-color: #d8b27a;
  margin-bottom: 25px;
}
.cid-v2U6oCk1Tv .mbr-section-subtitle {
  font-weight: 700;
  margin-bottom: 25px;
  color: #1d1d1f;
}
.cid-v2U6oCk1Tv .mbr-section-title {
  margin-bottom: 25px;
}
.cid-v2U6oCk1Tv a {
  transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out;
}
.cid-v2U6oCk1Tv rect {
  transform: translateX(-13px);
  transform-origin: right;
  stroke: currentColor;
  stroke-width: .5;
}
.cid-v2U6oCk1Tv .qodef-button-cap-fake {
  animation: qode-button-cap-fake-out 0.35s linear;
}
.cid-v2U6oCk1Tv svg {
  margin-left: 15px;
}
.cid-v2U6oCk1Tv path {
  animation: qode-button-cap-out 0.35s ease-in-out;
  transform: translateX(-13px);
  transform-origin: right;
  fill: currentColor;
}
.cid-v2U6oCk1Tv .link:hover rect {
  animation: qode-button-line 0.7s ease forwards;
}
.cid-v2U6oCk1Tv .link:hover path {
  animation: qode-button-cap 0.7s ease forwards;
}
.cid-v2U6oCk1Tv .link a {
  background-image: none !important;
}
@keyframes qode-button-cap-fake-out {
  0% {
    clip-path: inset(0 0 0 0);
  }
  49%,
  51% {
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes qode-button-line {
  0%,
  100% {
    transform: translateX(-13px) scaleX(1);
  }
  10% {
    transform: translateX(-13px) scaleX(1);
  }
  46%,
  55% {
    transform: translateX(0) scaleX(0.5);
  }
  99% {
    transform: translateX(-13px) scaleX(0.6);
  }
}
@keyframes qode-button-cap-out {
  0%,
  50% {
    transform: translateX(-35px) scaleX(-1);
  }
  100%,
  51% {
    transform: translateX(-13px) scaleX(1);
  }
}
@keyframes qode-button-cap {
  0% {
    -webkit-transform: translateX(-13px) scaleX(1);
    transform: translateX(-13px) scaleX(1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
  54% {
    -webkit-transform: translateX(-1px) scaleX(1);
    transform: translateX(-1px) scaleX(1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  55% {
    -webkit-transform: translateX(-20px) scaleX(-1);
    transform: translateX(-20px) scaleX(-1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    -webkit-transform: translateX(-35px) scaleX(-1);
    transform: translateX(-35px) scaleX(-1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
}
.cid-v2U6oCk1Tv .wrapper {
  margin: auto;
}
.cid-v2U6oCk1Tv .mbr-section-subtitle,
.cid-v2U6oCk1Tv .link {
  text-align: center;
  color: #d8b27a;
}
.cid-v2U6oCk1Tv .link {
  color: #d8b27a;
}
.cid-v4aRfk1cgp {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
  position: relative;
  overflow: hidden;
}
.cid-v4aRfk1cgp .mbr-fallback-image.disabled {
  display: none;
}
.cid-v4aRfk1cgp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v4aRfk1cgp .decor-wrapper {
  position: absolute;
  top: 0;
  height: 100%;
  padding: 32px 0;
}
.cid-v4aRfk1cgp .decor-wrapper .decor {
  height: 100%;
  width: 400px;
  border: 1px solid #000000;
}
.cid-v4aRfk1cgp .decor-wrapper .decor_1 {
  box-shadow: inset 0 0 0 2px #000000;
}
.cid-v4aRfk1cgp .decor-wrapper .decor_2 {
  box-shadow: inset 0 0 0 2px #000000;
}
.cid-v4aRfk1cgp .decoration_1 {
  left: -100px;
}
@media (max-width: 1640px) {
  .cid-v4aRfk1cgp .decoration_1 {
    left: -230px;
  }
}
@media (max-width: 1440px) {
  .cid-v4aRfk1cgp .decoration_1 {
    left: -250px;
  }
}
@media (max-width: 1200px) {
  .cid-v4aRfk1cgp .decoration_1 {
    left: -300px;
  }
}
@media (max-width: 992px) {
  .cid-v4aRfk1cgp .decoration_1 {
    left: -380px;
  }
}
.cid-v4aRfk1cgp .decoration_2 {
  right: -100px;
}
@media (max-width: 1640px) {
  .cid-v4aRfk1cgp .decoration_2 {
    right: -230px;
  }
}
@media (max-width: 1440px) {
  .cid-v4aRfk1cgp .decoration_2 {
    right: -250px;
  }
}
@media (max-width: 1200px) {
  .cid-v4aRfk1cgp .decoration_2 {
    right: -300px;
  }
}
@media (max-width: 992px) {
  .cid-v4aRfk1cgp .decoration_2 {
    right: -380px;
  }
}
.cid-v4aRfk1cgp .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 100%;
  max-width: 100%;
  margin-left: 1rem !important;
  margin-right: 1rem !important;
}
@media (max-width: 768px) {
  .cid-v4aRfk1cgp .embla__slide {
    min-width: 100%;
    max-width: 100%;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-v4aRfk1cgp .embla__slide .slide-content {
  border: 1px solid #ffa600;
  background-color: #000000;
  width: auto;
  max-width: 420px;
  margin: 0 auto;
  padding: 12px;
  box-shadow: 0 .25rem .375rem #00000014;
}
@media (max-width: 992px) {
  .cid-v4aRfk1cgp .embla__slide .slide-content {
    padding: 6px;
  }
}
.cid-v4aRfk1cgp .embla__slide .slide-content .item-wrapper {
  height: 100%;
  border: 1px solid #ffa600;
  overflow: hidden;
  background-color: #000000;
  box-shadow: 0 0.25rem 0.375rem -0.125rem #ffa600;
  padding: 12px;
}
@media (max-width: 992px) {
  .cid-v4aRfk1cgp .embla__slide .slide-content .item-wrapper {
    padding: 6px;
  }
}
.cid-v4aRfk1cgp .embla__slide .slide-content .item-wrapper .item-img {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-v4aRfk1cgp .embla__slide .slide-content .item-wrapper .item-img img {
  width: auto !important;
  max-width: 320px !important;
  height: auto !important;
  max-height: 200px !important;
  object-fit: contain !important;
  margin: 0 auto !important;
}
.cid-v4aRfk1cgp .embla__button--next,
.cid-v4aRfk1cgp .embla__button--prev {
  display: flex;
}
.cid-v4aRfk1cgp .embla__button {
  bottom: 0;
  width: 44px;
  height: 44px;
  font-size: 20px;
  background-color: #a6a99c !important;
  color: #ffa600 !important;
  box-shadow: 0 1px 15px -2px #bcbcd2, 0 0 0 0 #000000, inset 0 0.125rem 0.25rem -0.125rem #bcbcd2;
  border: 1px solid #000000 !important;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
  display: none;
}
.cid-v4aRfk1cgp .embla__button:hover {
  box-shadow: 0 6px 20px 0 #bcbcd2, 0 0 0 2px #000000, inset 0 0.125rem 0.6rem -0.125rem #bcbcd2;
}
.cid-v4aRfk1cgp .embla__button:disabled {
  background-color: #a6a99c !important;
  color: #ffa600 !important;
  box-shadow: 0 1px 15px -2px #bcbcd2, 0 0 0 0 #000000, inset 0 0.125rem 0.25rem -0.125rem #bcbcd2;
  opacity: .5 !important;
}
.cid-v4aRfk1cgp .embla__button.embla__button--prev {
  margin-left: -59px;
}
.cid-v4aRfk1cgp .embla__button.embla__button--next {
  margin-right: -59px;
}
.cid-v4aRfk1cgp .embla {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-v4aRfk1cgp .embla {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.cid-v4aRfk1cgp .embla__viewport {
  overflow: hidden;
  width: 100%;
  padding: 0 0 6px;
}
.cid-v4aRfk1cgp .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-v4aRfk1cgp .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-v4aRfk1cgp .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-v4aRfk1cgp .item-menu-overlay {
  opacity: 0 !important;
}
.cid-v4aRfk1cgp .embla__slide .item-img img {
  width: auto;
  max-width: 350px;
  height: auto;
  margin: 0 auto;
  object-fit: contain;
}
.cid-v4aRfk1cgp .embla__slide .slide-content {
  width: auto;
  max-width: 420px;
  margin: 0 auto;
}
.cid-v2PnpvuNb3 {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #050508;
  overflow: hidden;
}
.cid-v2Nl9UNN13 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v2Nl9UNN13 nav.navbar {
  position: fixed;
}
.cid-v2Nl9UNN13 .container {
  border-bottom: 2px solid #191919;
}
.cid-v2Nl9UNN13 .btn {
  max-height: 74px;
}
.cid-v2Nl9UNN13 .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-v2Nl9UNN13 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #050508 !important;
}
.cid-v2Nl9UNN13 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v2Nl9UNN13 .dropdown-item:hover,
.cid-v2Nl9UNN13 .dropdown-item:focus {
  background: #d8b27a !important;
  color: white !important;
}
.cid-v2Nl9UNN13 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v2Nl9UNN13 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v2Nl9UNN13 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v2Nl9UNN13 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v2Nl9UNN13 .nav-link {
  position: relative;
}
.cid-v2Nl9UNN13 .container {
  padding: 28px 0;
  display: flex;
  margin: auto;
  align-items: end;
}
@media (min-width: 992px) {
  .cid-v2Nl9UNN13 .container {
    flex-wrap: nowrap;
  }
}
.cid-v2Nl9UNN13 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v2Nl9UNN13 .nav-item:focus,
.cid-v2Nl9UNN13 .nav-link:focus {
  outline: none;
}
.cid-v2Nl9UNN13 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v2Nl9UNN13 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v2Nl9UNN13 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v2Nl9UNN13 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v2Nl9UNN13 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v2Nl9UNN13 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v2Nl9UNN13 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  background: #050508;
}
.cid-v2Nl9UNN13 .navbar.opened {
  transition: all 0.3s;
}
.cid-v2Nl9UNN13 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v2Nl9UNN13 .navbar .navbar-logo img {
  min-width: 50px;
  min-height: 50px;
  border-radius: 10px;
}
.cid-v2Nl9UNN13 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v2Nl9UNN13 .navbar.collapsed {
  justify-content: center;
}
.cid-v2Nl9UNN13 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v2Nl9UNN13 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v2Nl9UNN13 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 7.2rem);
  }
}
.cid-v2Nl9UNN13 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v2Nl9UNN13 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v2Nl9UNN13 .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-v2Nl9UNN13 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v2Nl9UNN13 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v2Nl9UNN13 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v2Nl9UNN13 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v2Nl9UNN13 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v2Nl9UNN13 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v2Nl9UNN13 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v2Nl9UNN13 .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-v2Nl9UNN13 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v2Nl9UNN13 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v2Nl9UNN13 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-v2Nl9UNN13 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v2Nl9UNN13 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v2Nl9UNN13 .navbar.navbar-short {
  min-height: 60px;
}
.cid-v2Nl9UNN13 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v2Nl9UNN13 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v2Nl9UNN13 .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-v2Nl9UNN13 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v2Nl9UNN13 .navbar-brand .navbar-logo a {
  outline: none;
}
@media (max-width: 375px) {
  .cid-v2Nl9UNN13 .navbar-brand {
    width: 85%;
  }
}
.cid-v2Nl9UNN13 .dropdown-item.active,
.cid-v2Nl9UNN13 .dropdown-item:active {
  background-color: transparent;
}
.cid-v2Nl9UNN13 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v2Nl9UNN13 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v2Nl9UNN13 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v2Nl9UNN13 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #050508;
}
.cid-v2Nl9UNN13 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v2Nl9UNN13 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v2Nl9UNN13 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v2Nl9UNN13 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v2Nl9UNN13 button.navbar-toggler {
  outline: none;
  width: 25px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v2Nl9UNN13 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #191919;
}
.cid-v2Nl9UNN13 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v2Nl9UNN13 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v2Nl9UNN13 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v2Nl9UNN13 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v2Nl9UNN13 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v2Nl9UNN13 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v2Nl9UNN13 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v2Nl9UNN13 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v2Nl9UNN13 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v2Nl9UNN13 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v2Nl9UNN13 .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-v2Nl9UNN13 .navbar {
    height: 70px;
  }
  .cid-v2Nl9UNN13 .navbar.opened {
    height: auto;
  }
  .cid-v2Nl9UNN13 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v37qb4rjx4 {
  padding-top: 10rem;
  padding-bottom: 6rem;
  background-color: #000000;
}
.cid-v37qb4rjx4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v37qb4rjx4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v37qb4rjx4 .mbr-section-title {
  color: #ffa600;
}
.cid-v37qb4rjx4 .mbr-text,
.cid-v37qb4rjx4 .mbr-section-btn {
  color: #ffffff;
}
.cid-v37qeHpR6w {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-v37qeHpR6w .mbr-fallback-image.disabled {
  display: none;
}
.cid-v37qeHpR6w .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v37qeHpR6w .card-wrapper {
  background: #000000;
}
@media (max-width: 767px) {
  .cid-v37qeHpR6w .card-wrapper {
    padding: 2rem 1.5rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-v37qeHpR6w .card-wrapper {
    padding: 2.25rem;
  }
}
@media (min-width: 992px) {
  .cid-v37qeHpR6w .card-wrapper {
    padding: 4rem;
  }
}
.cid-v37qeHpR6w .mbr-text,
.cid-v37qeHpR6w .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-v37qeHpR6w .card-title,
.cid-v37qeHpR6w .card-box {
  text-align: center;
  color: #000000;
}
.cid-v37qeHpR6w .counter-container ul {
  margin: 0;
  padding-left: 2.25rem;
  list-style: none;
}
.cid-v37qeHpR6w .counter-container ul li {
  position: relative;
  list-style: none;
  margin-bottom: 2rem;
}
.cid-v37qeHpR6w .counter-container ul li:before {
  position: absolute;
  left: -1.5em;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffa600;
  background-color: #ffa600;
  width: 0.5em;
  height: 0.5em;
  top: 0.4em;
  border-radius: 50%;
}
.cid-v37qeHpR6w .mbr-text UL {
  text-align: left;
}
.cid-v37qeHpR6w .mbr-section-title {
  color: #ffa600;
}
.cid-v37qeHpR6w .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v37qeHpR6w .mbr-text {
  color: #ffffff;
}
.cid-v49mi7XFwt {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-v49mi7XFwt .item:focus,
.cid-v49mi7XFwt span:focus {
  outline: none;
}
.cid-v49mi7XFwt .item {
  cursor: pointer;
}
.cid-v49mi7XFwt .grid-container {
  grid-row-gap: 1rem;
}
@media (max-width: 767px) {
  .cid-v49mi7XFwt .grid-container {
    grid-row-gap: 1rem;
  }
}
.cid-v49mi7XFwt .grid-container-1,
.cid-v49mi7XFwt .grid-container-2 {
  gap: 0 1rem;
}
@media (max-width: 767px) {
  .cid-v49mi7XFwt .grid-container-1,
  .cid-v49mi7XFwt .grid-container-2 {
    gap: 0 1rem;
  }
}
.cid-v49mi7XFwt .mbr-section-title {
  margin-bottom: 40px;
  color: #ffa600;
  text-align: center;
}
.cid-v49mi7XFwt .content-head {
  max-width: 800px;
}
.cid-v49mi7XFwt .container,
.cid-v49mi7XFwt .container-fluid {
  overflow: hidden;
}
.cid-v49mi7XFwt .grid-container {
  display: grid;
  transform: translate3d(-3rem, 0, 0);
  width: 115vw;
  grid-column-gap: 1rem;
  padding: 40px 0;
  border-top: 1px solid #d8b27a;
  border-bottom: 1px solid #d8b27a;
}
@media (max-width: 992px) {
  .cid-v49mi7XFwt .grid-container {
    padding: 24px 0;
  }
}
.cid-v49mi7XFwt .grid-item {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-v49mi7XFwt .grid-item img {
  min-width: 30vw;
  max-width: 100%;
  height: 500px;
  object-fit: cover;
}
@media (max-width: 1200px) {
  .cid-v49mi7XFwt .grid-item img {
    height: 300px;
  }
}
@media (max-width: 767px) {
  .cid-v49mi7XFwt .grid-item img {
    min-width: 35vw;
    height: 250px;
  }
}
@media (max-width: 425px) {
  .cid-v49mi7XFwt .grid-item img {
    height: 140px;
  }
}
.cid-v49mi7XFwt .grid-container-1,
.cid-v49mi7XFwt .grid-container-2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
}
.cid-v49mi7XFwt .grid-container-1 {
  align-items: flex-end;
}
.cid-v49mi7XFwt .grid-container-2 {
  align-items: flex-start;
}
.cid-v49AQu3OYw {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-v49AQu3OYw .mbr-fallback-image.disabled {
  display: none;
}
.cid-v49AQu3OYw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v49AQu3OYw p {
  line-height: 1.2;
}
.cid-v49AQu3OYw .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 770px;
  max-width: 570px;
}
@media (max-width: 768px) {
  .cid-v49AQu3OYw .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-v49AQu3OYw .embla__button--next,
.cid-v49AQu3OYw .embla__button--prev {
  display: flex;
}
.cid-v49AQu3OYw .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}
.cid-v49AQu3OYw .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-v49AQu3OYw .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-v49AQu3OYw .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v49AQu3OYw .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 768px) {
  .cid-v49AQu3OYw .embla__button {
    top: auto;
  }
}
.cid-v49AQu3OYw .item-wrapper {
  height: 100%;
}
.cid-v49AQu3OYw .user_image {
  max-width: 600px;
  max-height: 400px;
  margin-bottom: 1.6rem;
  overflow: hidden;
  border-radius: 12rem;
  margin: 0 auto 2rem auto;
}
.cid-v49AQu3OYw .user_image img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
}
@media (max-width: 230px) {
  .cid-v49AQu3OYw .user_image {
    width: 100%;
    height: auto;
  }
}
.cid-v49AQu3OYw .embla {
  position: relative;
  width: 100%;
}
.cid-v49AQu3OYw .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-v49AQu3OYw .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-v49AQu3OYw .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-v49AQu3OYw .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-v49AQu3OYw .user_desk {
  color: #353535;
}
.cid-v49AQu3OYw .user_name {
  color: #353535;
}
.cid-v49AQu3OYw H3 {
  color: #ffa600;
}
.cid-v37r4OcYdA {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-v37r4OcYdA .image-wrapper {
  position: relative;
}
.cid-v37r4OcYdA .mbr-section-btn {
  position: absolute;
  bottom: 5%;
  right: -1%;
}
@media (max-width: 690px) {
  .cid-v37r4OcYdA .mbr-section-btn {
    position: absolute;
    right: 0px;
    bottom: -13%;
  }
}
.cid-v37r4OcYdA img {
  max-width: 200px;
  position: absolute;
  right: 0;
  z-index: 10;
}
.cid-v37r4OcYdA .line {
  width: 100%;
  height: 1px;
  background-color: #d8b27a;
  margin-bottom: 25px;
}
.cid-v37r4OcYdA .mbr-section-subtitle {
  font-weight: 700;
  margin-bottom: 25px;
  color: #1d1d1f;
}
.cid-v37r4OcYdA .mbr-section-title {
  margin-bottom: 25px;
}
.cid-v37r4OcYdA a {
  transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out;
}
.cid-v37r4OcYdA rect {
  transform: translateX(-13px);
  transform-origin: right;
  stroke: currentColor;
  stroke-width: .5;
}
.cid-v37r4OcYdA .qodef-button-cap-fake {
  animation: qode-button-cap-fake-out 0.35s linear;
}
.cid-v37r4OcYdA svg {
  margin-left: 15px;
}
.cid-v37r4OcYdA path {
  animation: qode-button-cap-out 0.35s ease-in-out;
  transform: translateX(-13px);
  transform-origin: right;
  fill: currentColor;
}
.cid-v37r4OcYdA .link:hover rect {
  animation: qode-button-line 0.7s ease forwards;
}
.cid-v37r4OcYdA .link:hover path {
  animation: qode-button-cap 0.7s ease forwards;
}
.cid-v37r4OcYdA .link a {
  background-image: none !important;
}
@keyframes qode-button-cap-fake-out {
  0% {
    clip-path: inset(0 0 0 0);
  }
  49%,
  51% {
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes qode-button-line {
  0%,
  100% {
    transform: translateX(-13px) scaleX(1);
  }
  10% {
    transform: translateX(-13px) scaleX(1);
  }
  46%,
  55% {
    transform: translateX(0) scaleX(0.5);
  }
  99% {
    transform: translateX(-13px) scaleX(0.6);
  }
}
@keyframes qode-button-cap-out {
  0%,
  50% {
    transform: translateX(-35px) scaleX(-1);
  }
  100%,
  51% {
    transform: translateX(-13px) scaleX(1);
  }
}
@keyframes qode-button-cap {
  0% {
    -webkit-transform: translateX(-13px) scaleX(1);
    transform: translateX(-13px) scaleX(1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
  54% {
    -webkit-transform: translateX(-1px) scaleX(1);
    transform: translateX(-1px) scaleX(1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  55% {
    -webkit-transform: translateX(-20px) scaleX(-1);
    transform: translateX(-20px) scaleX(-1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    -webkit-transform: translateX(-35px) scaleX(-1);
    transform: translateX(-35px) scaleX(-1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
}
.cid-v37r4OcYdA .wrapper {
  margin: auto;
}
.cid-v37r4OcYdA .mbr-section-subtitle,
.cid-v37r4OcYdA .link {
  text-align: center;
  color: #ffa600;
}
.cid-v37r4OcYdA .link {
  color: #d8b27a;
}
#custom-html-27 {
  /* === GTSI Records player === */
  /* Header */
  /* Now playing block */
  /* Controls */
  /* Timeline */
  /* Playlist */
  /* Streaming links */
}
#custom-html-27 .gtsi-player {
  width: 100%;
  max-width: 900px;
  margin: 40px auto;
  padding: 16px 16px 18px;
  background: #050608;
  border-radius: 12px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.5);
  color: #f5f5f5;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
#custom-html-27 .gtsi-player-header h3 {
  margin: 0 0 2px;
  font-size: 1.1rem;
  text-align: center;
}
#custom-html-27 .gtsi-player-header p {
  margin: 0 0 6px;
  font-size: 0.85rem;
  text-align: center;
}
#custom-html-27 .gtsi-now-playing {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2px;
  margin-bottom: 4px;
}
#custom-html-27 .gtsi-label {
  margin-bottom: 0;
  font-size: 0.65rem;
  letter-spacing: 0.16em;
}
#custom-html-27 .gtsi-title {
  margin: 0;
  font-size: 0.95rem;
}
#custom-html-27 .gtsi-controls-main {
  display: flex;
  gap: 4px;
  align-items: center;
  justify-content: center;
}
#custom-html-27 .gtsi-btn {
  border: 1px solid rgba(212, 175, 55, 0.7);
  background: radial-gradient(circle at 20% 0%, #2b2520, #0b0b0d);
  color: #f9f9f9;
  padding: 6px 10px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.9rem;
}
#custom-html-27 .gtsi-play {
  font-size: 1.1rem;
  padding: 7px 13px;
}
#custom-html-27 .gtsi-timeline {
  margin: 6px 0 8px;
}
#custom-html-27 #gtsi-seek {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  display: block;
  appearance: none;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #d4af37, #f1d46a);
  outline: none;
  cursor: pointer;
}
#custom-html-27 .gtsi-time {
  max-width: 600px;
  margin: 3px auto 0;
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
}
#custom-html-27 .gtsi-playlist {
  list-style: none;
  padding: 4px 0;
  margin: 4px 0 6px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
#custom-html-27 .gtsi-playlist li {
  padding: 4px 4px;
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
}
#custom-html-27 .gtsi-links {
  margin-top: 4px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
}
#custom-html-27 .gtsi-links span {
  color: #b9b9b9;
}
.cid-v37rljG5CK {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-v37rljG5CK .image-wrapper {
  position: relative;
}
.cid-v37rljG5CK .mbr-section-btn {
  position: absolute;
  bottom: 5%;
  right: -1%;
}
@media (max-width: 690px) {
  .cid-v37rljG5CK .mbr-section-btn {
    position: absolute;
    right: 0px;
    bottom: -13%;
  }
}
.cid-v37rljG5CK img {
  max-width: 200px;
  position: absolute;
  right: 0;
  z-index: 10;
}
.cid-v37rljG5CK .line {
  width: 100%;
  height: 1px;
  background-color: #d8b27a;
  margin-bottom: 25px;
}
.cid-v37rljG5CK .mbr-section-subtitle {
  font-weight: 700;
  margin-bottom: 25px;
  color: #1d1d1f;
}
.cid-v37rljG5CK .mbr-section-title {
  margin-bottom: 25px;
}
.cid-v37rljG5CK a {
  transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out;
}
.cid-v37rljG5CK rect {
  transform: translateX(-13px);
  transform-origin: right;
  stroke: currentColor;
  stroke-width: .5;
}
.cid-v37rljG5CK .qodef-button-cap-fake {
  animation: qode-button-cap-fake-out 0.35s linear;
}
.cid-v37rljG5CK svg {
  margin-left: 15px;
}
.cid-v37rljG5CK path {
  animation: qode-button-cap-out 0.35s ease-in-out;
  transform: translateX(-13px);
  transform-origin: right;
  fill: currentColor;
}
.cid-v37rljG5CK .link:hover rect {
  animation: qode-button-line 0.7s ease forwards;
}
.cid-v37rljG5CK .link:hover path {
  animation: qode-button-cap 0.7s ease forwards;
}
.cid-v37rljG5CK .link a {
  background-image: none !important;
}
@keyframes qode-button-cap-fake-out {
  0% {
    clip-path: inset(0 0 0 0);
  }
  49%,
  51% {
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes qode-button-line {
  0%,
  100% {
    transform: translateX(-13px) scaleX(1);
  }
  10% {
    transform: translateX(-13px) scaleX(1);
  }
  46%,
  55% {
    transform: translateX(0) scaleX(0.5);
  }
  99% {
    transform: translateX(-13px) scaleX(0.6);
  }
}
@keyframes qode-button-cap-out {
  0%,
  50% {
    transform: translateX(-35px) scaleX(-1);
  }
  100%,
  51% {
    transform: translateX(-13px) scaleX(1);
  }
}
@keyframes qode-button-cap {
  0% {
    -webkit-transform: translateX(-13px) scaleX(1);
    transform: translateX(-13px) scaleX(1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
  54% {
    -webkit-transform: translateX(-1px) scaleX(1);
    transform: translateX(-1px) scaleX(1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  55% {
    -webkit-transform: translateX(-20px) scaleX(-1);
    transform: translateX(-20px) scaleX(-1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    -webkit-transform: translateX(-35px) scaleX(-1);
    transform: translateX(-35px) scaleX(-1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
}
.cid-v37rljG5CK .wrapper {
  margin: auto;
}
.cid-v37rljG5CK .mbr-section-subtitle,
.cid-v37rljG5CK .link {
  text-align: center;
  color: #d8b27a;
}
.cid-v37rljG5CK .link {
  color: #d8b27a;
}
.cid-v37qeNCpSN {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-v37qeNCpSN .mbr-fallback-image.disabled {
  display: none;
}
.cid-v37qeNCpSN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v37qeNCpSN .card-wrapper {
  background: #000000;
}
@media (max-width: 767px) {
  .cid-v37qeNCpSN .card-wrapper {
    padding: 2rem 1.5rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-v37qeNCpSN .card-wrapper {
    padding: 2.25rem;
  }
}
@media (min-width: 992px) {
  .cid-v37qeNCpSN .card-wrapper {
    padding: 4rem;
  }
}
.cid-v37qeNCpSN .mbr-text,
.cid-v37qeNCpSN .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-v37qeNCpSN .card-title,
.cid-v37qeNCpSN .card-box {
  text-align: center;
  color: #000000;
}
.cid-v37qeNCpSN .counter-container ul {
  margin: 0;
  padding-left: 2.25rem;
  list-style: none;
}
.cid-v37qeNCpSN .counter-container ul li {
  position: relative;
  list-style: none;
  margin-bottom: 2rem;
}
.cid-v37qeNCpSN .counter-container ul li:before {
  position: absolute;
  left: -1.5em;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffa600;
  background-color: #ffa600;
  width: 0.5em;
  height: 0.5em;
  top: 0.4em;
  border-radius: 50%;
}
.cid-v37qeNCpSN .mbr-text UL {
  text-align: left;
}
.cid-v37qeNCpSN .mbr-section-title {
  color: #ffa600;
}
.cid-v37qeNCpSN .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v37qeNCpSN .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-v2PnpvuNb3 {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #050508;
  overflow: hidden;
}
.cid-v2NdBvb3N8 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v2NdBvb3N8 nav.navbar {
  position: fixed;
}
.cid-v2NdBvb3N8 .container {
  border-bottom: 2px solid #191919;
}
.cid-v2NdBvb3N8 .btn {
  max-height: 74px;
}
.cid-v2NdBvb3N8 .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-v2NdBvb3N8 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #050508 !important;
}
.cid-v2NdBvb3N8 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v2NdBvb3N8 .dropdown-item:hover,
.cid-v2NdBvb3N8 .dropdown-item:focus {
  background: #d8b27a !important;
  color: white !important;
}
.cid-v2NdBvb3N8 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v2NdBvb3N8 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v2NdBvb3N8 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v2NdBvb3N8 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v2NdBvb3N8 .nav-link {
  position: relative;
}
.cid-v2NdBvb3N8 .container {
  padding: 28px 0;
  display: flex;
  margin: auto;
  align-items: end;
}
@media (min-width: 992px) {
  .cid-v2NdBvb3N8 .container {
    flex-wrap: nowrap;
  }
}
.cid-v2NdBvb3N8 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v2NdBvb3N8 .nav-item:focus,
.cid-v2NdBvb3N8 .nav-link:focus {
  outline: none;
}
.cid-v2NdBvb3N8 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v2NdBvb3N8 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v2NdBvb3N8 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v2NdBvb3N8 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v2NdBvb3N8 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v2NdBvb3N8 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v2NdBvb3N8 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  background: #050508;
}
.cid-v2NdBvb3N8 .navbar.opened {
  transition: all 0.3s;
}
.cid-v2NdBvb3N8 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v2NdBvb3N8 .navbar .navbar-logo img {
  min-width: 50px;
  min-height: 50px;
  border-radius: 10px;
}
.cid-v2NdBvb3N8 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v2NdBvb3N8 .navbar.collapsed {
  justify-content: center;
}
.cid-v2NdBvb3N8 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v2NdBvb3N8 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v2NdBvb3N8 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 7.2rem);
  }
}
.cid-v2NdBvb3N8 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v2NdBvb3N8 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v2NdBvb3N8 .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-v2NdBvb3N8 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v2NdBvb3N8 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v2NdBvb3N8 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v2NdBvb3N8 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v2NdBvb3N8 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v2NdBvb3N8 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v2NdBvb3N8 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v2NdBvb3N8 .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-v2NdBvb3N8 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v2NdBvb3N8 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v2NdBvb3N8 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-v2NdBvb3N8 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v2NdBvb3N8 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v2NdBvb3N8 .navbar.navbar-short {
  min-height: 60px;
}
.cid-v2NdBvb3N8 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v2NdBvb3N8 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v2NdBvb3N8 .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-v2NdBvb3N8 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v2NdBvb3N8 .navbar-brand .navbar-logo a {
  outline: none;
}
@media (max-width: 375px) {
  .cid-v2NdBvb3N8 .navbar-brand {
    width: 85%;
  }
}
.cid-v2NdBvb3N8 .dropdown-item.active,
.cid-v2NdBvb3N8 .dropdown-item:active {
  background-color: transparent;
}
.cid-v2NdBvb3N8 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v2NdBvb3N8 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v2NdBvb3N8 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v2NdBvb3N8 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #050508;
}
.cid-v2NdBvb3N8 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v2NdBvb3N8 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v2NdBvb3N8 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v2NdBvb3N8 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v2NdBvb3N8 button.navbar-toggler {
  outline: none;
  width: 25px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v2NdBvb3N8 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #191919;
}
.cid-v2NdBvb3N8 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v2NdBvb3N8 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v2NdBvb3N8 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v2NdBvb3N8 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v2NdBvb3N8 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v2NdBvb3N8 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v2NdBvb3N8 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v2NdBvb3N8 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v2NdBvb3N8 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v2NdBvb3N8 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v2NdBvb3N8 .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-v2NdBvb3N8 .navbar {
    height: 70px;
  }
  .cid-v2NdBvb3N8 .navbar.opened {
    height: auto;
  }
  .cid-v2NdBvb3N8 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v2JQRlZSgQ {
  padding-top: 8rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/2-2000x1124.jpg");
}
.cid-v2JQRlZSgQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2JQRlZSgQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2JQRlZSgQ .mbr-section-title {
  color: #ffa600;
}
.cid-v2JQRlZSgQ .mbr-text,
.cid-v2JQRlZSgQ .mbr-section-btn {
  color: #d8b27a;
}
.cid-v2JUgyTgTC {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #050508;
}
.cid-v2JUgyTgTC .mbr-section-subtitle {
  text-align: center;
  color: #ffa600;
}
.cid-v2JUgyTgTC .mbr-text {
  color: #fafafa;
}
.cid-v2JSQBElDC {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #050508;
}
.cid-v2JSQBElDC .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2JSQBElDC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2JSQBElDC .mbr-section-title {
  color: #ffa600;
}
.cid-v2JSQBElDC .card-title,
.cid-v2JSQBElDC .card-box {
  color: #fafafa;
}
.cid-v2K1ENG1Xb {
  padding-top: 6rem;
  padding-bottom: 4rem;
  background-color: #050508;
}
.cid-v2K1ENG1Xb .mbr-section-subtitle {
  text-align: center;
  color: #ffa600;
}
.cid-v2K1ENG1Xb .mbr-text {
  color: #fafafa;
}
.cid-v2JVbYfn04 {
  padding-top: 7rem;
  padding-bottom: 5rem;
  background-color: #050508;
}
.cid-v2JVbYfn04 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2JVbYfn04 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2JVbYfn04 ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-v2JVbYfn04 li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-v2JVbYfn04 ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #d8b27a;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-v2JVbYfn04 H3 {
  color: #ffa600;
  text-align: center;
}
.cid-v2JVbYfn04 .list {
  color: #fafafa;
}
.cid-v2JWzcQfyz {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #050508;
}
.cid-v2JWzcQfyz .mbr-overlay {
  background-color: #5a31fb;
  background: linear-gradient(90deg, #5a31fb, #000000);
}
.cid-v2JWzcQfyz .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2JWzcQfyz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2JWzcQfyz H2 {
  color: #ffa600;
}
.cid-v2JvjdFrC0 {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #050508;
  overflow: hidden;
}
.cid-v2Nl9UNN13 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v2Nl9UNN13 nav.navbar {
  position: fixed;
}
.cid-v2Nl9UNN13 .container {
  border-bottom: 2px solid #191919;
}
.cid-v2Nl9UNN13 .btn {
  max-height: 74px;
}
.cid-v2Nl9UNN13 .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-v2Nl9UNN13 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #050508 !important;
}
.cid-v2Nl9UNN13 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v2Nl9UNN13 .dropdown-item:hover,
.cid-v2Nl9UNN13 .dropdown-item:focus {
  background: #d8b27a !important;
  color: white !important;
}
.cid-v2Nl9UNN13 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v2Nl9UNN13 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v2Nl9UNN13 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v2Nl9UNN13 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v2Nl9UNN13 .nav-link {
  position: relative;
}
.cid-v2Nl9UNN13 .container {
  padding: 28px 0;
  display: flex;
  margin: auto;
  align-items: end;
}
@media (min-width: 992px) {
  .cid-v2Nl9UNN13 .container {
    flex-wrap: nowrap;
  }
}
.cid-v2Nl9UNN13 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v2Nl9UNN13 .nav-item:focus,
.cid-v2Nl9UNN13 .nav-link:focus {
  outline: none;
}
.cid-v2Nl9UNN13 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v2Nl9UNN13 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v2Nl9UNN13 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v2Nl9UNN13 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v2Nl9UNN13 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v2Nl9UNN13 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v2Nl9UNN13 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  background: #050508;
}
.cid-v2Nl9UNN13 .navbar.opened {
  transition: all 0.3s;
}
.cid-v2Nl9UNN13 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v2Nl9UNN13 .navbar .navbar-logo img {
  min-width: 50px;
  min-height: 50px;
  border-radius: 10px;
}
.cid-v2Nl9UNN13 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v2Nl9UNN13 .navbar.collapsed {
  justify-content: center;
}
.cid-v2Nl9UNN13 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v2Nl9UNN13 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v2Nl9UNN13 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 7.2rem);
  }
}
.cid-v2Nl9UNN13 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v2Nl9UNN13 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v2Nl9UNN13 .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-v2Nl9UNN13 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v2Nl9UNN13 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v2Nl9UNN13 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v2Nl9UNN13 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v2Nl9UNN13 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v2Nl9UNN13 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v2Nl9UNN13 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v2Nl9UNN13 .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-v2Nl9UNN13 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v2Nl9UNN13 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v2Nl9UNN13 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-v2Nl9UNN13 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v2Nl9UNN13 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v2Nl9UNN13 .navbar.navbar-short {
  min-height: 60px;
}
.cid-v2Nl9UNN13 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v2Nl9UNN13 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v2Nl9UNN13 .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-v2Nl9UNN13 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v2Nl9UNN13 .navbar-brand .navbar-logo a {
  outline: none;
}
@media (max-width: 375px) {
  .cid-v2Nl9UNN13 .navbar-brand {
    width: 85%;
  }
}
.cid-v2Nl9UNN13 .dropdown-item.active,
.cid-v2Nl9UNN13 .dropdown-item:active {
  background-color: transparent;
}
.cid-v2Nl9UNN13 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v2Nl9UNN13 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v2Nl9UNN13 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v2Nl9UNN13 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #050508;
}
.cid-v2Nl9UNN13 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v2Nl9UNN13 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v2Nl9UNN13 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v2Nl9UNN13 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v2Nl9UNN13 button.navbar-toggler {
  outline: none;
  width: 25px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v2Nl9UNN13 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #191919;
}
.cid-v2Nl9UNN13 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v2Nl9UNN13 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v2Nl9UNN13 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v2Nl9UNN13 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v2Nl9UNN13 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v2Nl9UNN13 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v2Nl9UNN13 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v2Nl9UNN13 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v2Nl9UNN13 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v2Nl9UNN13 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v2Nl9UNN13 .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-v2Nl9UNN13 .navbar {
    height: 70px;
  }
  .cid-v2Nl9UNN13 .navbar.opened {
    height: auto;
  }
  .cid-v2Nl9UNN13 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v2PnpvuNb3 {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #050508;
  overflow: hidden;
}
