html {
  font-size: 62.5%;
}

@media (max-width: 991px) {
  html {
    font-size: 60%;
  }
}
@media (max-width: 767px) {
  html {
    font-size: 50%;
  }
}
.body-pad {
  padding-top: 64px;
}

@media (max-width: 1429px) {
  h1,
  .h1 {
    font-size: 3.6rem;
  }
}
@media (max-width: 1199px) {
  h1,
  .h1 {
    font-size: 3.2rem;
  }
}
@media (max-width: 991px) {
  h2,
  .h2 {
    font-size: 2.8rem;
  }
}
@media (max-width: 767px) {
  h1,
  .h1 {
    font-size: 21px;
  }
  p {
    margin-bottom: 1.5rem;
  }
}
button:focus {
  outline: none;
}

.btn {
  color: #ffffff;
  font-size: 1.6rem;
  font-weight: 700;
  border-radius: 0.8rem;
  padding: 1.4rem 2.7rem;
}

.btn-primary:hover {
  background-color: #121212;
}
.btn-primary.dark {
  padding: 1.25rem 2.3rem;
  border: 2px solid #ec008c;
}

.btn-link {
  color: #ec008c;
  font-size: 1.6rem;
  font-weight: 500;
  position: relative;
  padding: 0;
}
.btn-link:after {
  content: "";
  position: absolute;
  left: 50%;
  right: 50%;
  opacity: 0;
  height: 1px;
  top: calc(100% + 4px);
  background-color: #ec008c;
  transition: all 0.3s;
}
.btn-link:hover::after {
  left: 0;
  right: 0;
  opacity: 1;
}

.link-arrow {
  color: #ec008c;
  font-size: 1.4rem;
  font-weight: 500;
  display: inline-block;
}
.link-arrow i {
  display: inline-block;
  margin-left: 2px;
  transition: all 0.3s;
}
.link-arrow:hover {
  color: #121212;
}
.link-arrow:hover i {
  margin-left: 6px;
}

.btn-filter {
  color: #d0d0d0;
  font-size: 15px;
  font-weight: 400;
  border-left: 1px solid #313131;
  padding: 0;
  padding-left: 24px;
  text-align: right;
  border-radius: 0;
}
.btn-filter:hover {
  color: #d0d0d0;
}
.btn-filter i {
  font-size: 14px;
}

.btn-disabled {
  color: #666666;
  font-size: 1.5rem;
  font-weight: 700;
  background-color: #ffffff;
  cursor: not-allowed;
  min-width: 175px;
}
.btn-disabled:hover {
  background-color: #ffffff;
  color: #666666;
}
.btn-disabled.dark {
  background-color: #444444;
  color: #eeeeee;
}

.btn-section {
  width: 100%;
  padding: 0;
  padding-top: 2.4rem;
  padding-bottom: 2.4rem;
  text-align: left;
  border-bottom: 1px solid #cccccc;
  border-top: 1px solid #cccccc;
  border-radius: 0;
  position: relative;
  color: #444444;
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 0;
  transition: color 0.3s;
}
.btn-section:hover {
  color: #ec008c;
}
.btn-section:hover h2 {
  color: #ec008c;
}
.btn-section::after {
  position: absolute;
  content: "\f077";
  right: 2rem;
  top: 2.7rem;
  color: #ec008c;
  font-family: "Font Awesome 5 Pro";
  font-size: 2rem;
  font-weight: 300;
  transition: all 0.3s;
  transform: rotate(180deg);
}
.btn-section.show::after {
  transform: rotate(0deg);
}
.btn-section h2 {
  color: #444444;
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 0 !important;
  transition: color 0.3s;
}

.link-ico {
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: 700;
}
.link-ico i {
  color: #ec008c;
  font-family: "Font Awesome 5 Pro";
  font-size: 2rem;
  margin-right: 0.5rem;
  transition: color 0.3s;
}
.link-ico:hover {
  color: #ec008c;
}

.link-ico-dark {
  font-size: 1.6rem;
  font-weight: 700;
  color: #121212;
  transition: color 0.3s;
}
.link-ico-dark:hover {
  color: #ffffff;
}
.link-ico-dark:hover i {
  color: #ffffff;
}
.link-ico-dark i {
  font-size: 2rem;
  color: #121212;
  margin-right: 0.4rem;
  transition: color 0.3s;
}

.heading-small {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  align-items: center;
}
.heading-small h2 {
  color: #444444;
  margin-bottom: 0;
  line-height: 1.3;
}
.heading-small h2 a {
  color: #444444;
  transition: all 0.3s;
}
.heading-small h2 a:hover {
  color: #ec008c;
}

.heading-middle {
  display: flex;
  justify-content: space-between;
  padding-top: 2.7rem;
  padding-bottom: 2.7rem;
}
.heading-middle .h1 {
  color: #ec008c;
  font-weight: 800;
  margin-bottom: 0;
}

@media (max-width: 575px) {
  .heading-middle {
    flex-direction: column;
    align-items: flex-start;
  }
  .heading-middle .h1 {
    font-size: 21px;
    margin-bottom: 1rem;
  }
}
.form-control,
textarea {
  color: #575757;
  font-size: 1.4rem;
  font-weight: 400;
  padding: 1.4rem 2rem;
  border: 1px solid #dbdbdb;
  height: auto;
}
.form-control:focus,
textarea:focus {
  border: 1px solid #cecece;
  box-shadow: none;
}
.form-control::placeholder,
textarea::placeholder {
  color: #575757;
  opacity: 0.8;
}

textarea {
  width: 100%;
  height: 152px;
}

.main-menu-dropdown .dropdown-menu {
  min-width: 15rem;
  border: 1px solid #313131;
  border-radius: 0rem;
  background-color: #121212;
  border-top: none;
  top: calc(100% + 2rem);
}
.main-menu-dropdown .dropdown-menu .dropdown-item {
  color: #ffffff;
  padding: 1rem 2.7rem;
}
.main-menu-dropdown .dropdown-menu .dropdown-item:hover {
  background-color: #ec008c;
}

@media (max-width: 991px) {
  .main-menu-dropdown {
    flex-wrap: wrap;
    flex-direction: column;
  }
  .main-menu-dropdown .dropdown-menu {
    border: none;
    min-width: 35rem;
    text-align: center;
  }
}
.dropdown-dark .dropdown-toggle {
  padding: 1.65rem 2.7rem;
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 400;
  border: 1px solid #313131;
  min-width: 335px;
  text-align: left;
}
.dropdown-dark .dropdown-toggle::after {
  content: "\f078";
  position: absolute;
  color: #ec008c;
  font-family: "Font Awesome 5 Pro";
  font-size: 2rem;
  font-weight: 300;
  border: none;
  right: 1.8rem;
  top: 1.5rem;
  transition: all 0.3s;
}
.dropdown-dark .dropdown-menu {
  width: 100%;
  border: 1px solid #313131;
  border-radius: 0.8rem;
  background-color: #121212;
  border-top: none;
}
.dropdown-dark .dropdown-menu .dropdown-item {
  color: #ffffff;
  padding: 1rem 2.7rem;
}
.dropdown-dark .dropdown-menu .dropdown-item:hover {
  background-color: #ec008c;
}
.dropdown-dark.show .dropdown-toggle::after {
  transform: rotate(180deg);
}

@media (max-width: 575px) {
  .dropdown-dark {
    width: 100%;
  }
  .dropdown-dark .dropdown-toggle {
    border-radius: 0;
    background-color: #121212;
    min-width: unset;
    width: 100%;
  }
  .dropdown-dark .dropdown-menu {
    border-radius: 0;
  }
}
.dropdown-light {
  border: none;
}
.dropdown-light .dropdown-toggle {
  color: #444444;
  font-size: 1.4rem;
  font-weight: 400;
  padding: 1.8rem 2.7rem;
  min-width: 46.1rem;
  background-color: #ffffff;
  border-radius: 0;
  text-align: left;
  border: none;
}
.dropdown-light .dropdown-toggle::after {
  content: "\f078";
  position: absolute;
  color: #ec008c;
  font-family: "Font Awesome 5 Pro";
  font-size: 2rem;
  font-weight: 300;
  border: none;
  right: 1.8rem;
  top: 1.5rem;
  transition: all 0.3s;
}
.dropdown-light.show .dropdown-toggle::after {
  transform: rotate(180deg);
}
.dropdown-light .dropdown-menu {
  width: 100%;
  background-color: #ffffff;
  border: none;
  padding-left: 20px;
  padding-right: 20px;
  border-bottom: 1px solid #eeeeee;
  border-top: none;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.15);
  max-height: 400px;
  overflow: auto;
}
.dropdown-light .dropdown-menu h4 {
  font-size: 12px;
  color: #666666;
  font-weight: 800;
  margin-top: 10px;
  margin-bottom: 5px;
}
.dropdown-light .dropdown-menu .dropdown-item {
  padding: 14px 0;
  font-size: 14px;
  border-bottom: 1px solid #eeeeee;
}
.dropdown-light .dropdown-menu .dropdown-item:last-child {
  border-bottom: none;
}
.dropdown-light .dropdown-menu .dropdown-item:hover {
  background-color: transparent;
  color: #ec008c;
}

.dropdown-sm {
  min-width: 243px;
}
.dropdown-sm .dropdown-toggle {
  min-width: unset;
  width: 100%;
}

@media (max-width: 991px) {
  .dropdown-light .dropdown-toggle {
    min-width: 35rem;
  }
}
hr {
  background-color: #dddddd;
  margin-top: 3rem;
  margin-bottom: 2.5rem;
}

@media (max-width: 575px) {
  hr {
    margin-top: 15px;
    margin-bottom: 15px;
  }
}
/* Slick Arrows */
.slick-arrow {
  color: #ec008c;
  font-size: 5rem;
  font-weight: 300;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  transition: color 0.3s;
}
.slick-arrow:hover {
  color: #ffffff;
}
.slick-arrow.fa-chevron-left {
  left: 0;
}
.slick-arrow.fa-chevron-right {
  right: 0;
}

.slick-disabled {
  color: #232323;
}
.slick-disabled:hover {
  color: #232323;
}

/* END Slick Arrows */
/* Date picker */
.datepicker {
  position: absolute;
  top: 100%;
  z-index: 4;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.15);
  border: 1px solid #eeeeee;
  background-color: #f9f9f9;
  padding: 2.7rem;
  right: 0;
  min-width: 580px;
}
.datepicker-wrap {
  position: relative;
  background-color: #ffffff;
}
.datepicker-wrap input {
  padding: 1.4rem 2.7rem;
  color: #444444;
  font-size: 14px;
  font-weight: 400;
  border: none;
  background-color: transparent;
  position: relative;
  z-index: 3;
  cursor: pointer;
}
.datepicker-wrap::after {
  content: "\f073";
  position: absolute;
  color: #ec008c;
  font-family: "Font Awesome 5 Pro";
  font-size: 20px;
  font-weight: 300;
  right: 1.8rem;
  top: 1rem;
}
.datepicker .ui-datepicker-inline {
  display: flex !important;
  justify-content: space-between;
}
.datepicker .ui-datepicker-header {
  display: flex;
  align-items: center;
}
.datepicker .ui-datepicker-title {
  order: 1;
  color: #121212;
  font-size: 1.8rem;
  font-weight: 800;
}
.datepicker .ui-datepicker-prev {
  order: 2;
  color: #ec008c;
  font-size: 2.5rem;
  padding-left: 2.5px;
  padding-right: 2.5px;
}
.datepicker .ui-datepicker-next {
  order: 3;
  color: #ec008c;
  font-size: 2.5rem;
  padding-left: 2.5px;
  padding-right: 2.5px;
}

/* END Date picker */
/* Date Range */
.ranges {
  float: left;
}

.date-range {
  position: relative;
  background-color: #ffffff;
}
.date-range input {
  padding: 1.4rem 2.7rem;
  color: #444444;
  font-size: 14px;
  font-weight: 400;
  border: none;
  background-color: transparent;
  position: relative;
  z-index: 3;
  cursor: pointer;
}
.date-range::after {
  content: "\f073";
  position: absolute;
  color: #ec008c;
  font-family: "Font Awesome 5 Pro";
  font-size: 20px;
  font-weight: 300;
  right: 1.8rem;
  top: 1rem;
  cursor: pointer;
}
.date-range-content {
  position: relative;
}

.daterangepicker {
  box-shadow: 3px 5px rgba(0, 0, 0, 0.15);
  border: 1px solid #eeeeee;
  background-color: #f9f9f9;
  border-radius: 0;
  font-family: "Poppins", sans-serif;
  min-width: 580px;
}
.daterangepicker::before, .daterangepicker::after {
  display: none;
}
.daterangepicker .drp-calendar.left {
  padding: 25px 0 25px 27px;
  padding-bottom: 0;
}
.daterangepicker .drp-calendar.right {
  padding: 25px 30px;
  padding-bottom: 0;
  float: right;
}
.daterangepicker .calendar-table {
  border: none;
  background-color: transparent;
}
.daterangepicker .calendar-table th {
  font-size: 12px;
  font-weight: 700;
  color: #666666;
  padding-bottom: 6px;
  margin: 0;
}
.daterangepicker .calendar-table th.month {
  color: #121212;
  font-size: 18px;
  font-weight: 800;
  padding-bottom: 20px;
}
.daterangepicker .calendar-table th.next, .daterangepicker .calendar-table th.prev {
  padding-bottom: 20px;
}
.daterangepicker .calendar-table th.next:hover, .daterangepicker .calendar-table th.prev:hover {
  background-color: transparent;
}
.daterangepicker .calendar-table th.next:hover span::before, .daterangepicker .calendar-table th.prev:hover span::before {
  color: #121212;
}
.daterangepicker .calendar-table th.next span, .daterangepicker .calendar-table th.prev span {
  border: none;
  transform: none;
  color: #ec008c;
  font-size: 25px;
  padding-left: 2.5px;
  padding-right: 2.5px;
  width: 11px;
  height: 27px;
}
.daterangepicker .calendar-table th.next span::before, .daterangepicker .calendar-table th.prev span::before {
  content: "\f0d9";
  position: absolute;
  color: #ec008c;
  font-family: "Font Awesome 5 Pro";
  font-size: 25px;
  transition: color 0.3s;
}
.daterangepicker .calendar-table th.next span::before {
  content: "\f0da";
}
.daterangepicker .calendar-table td {
  width: 30px;
  height: 29px;
  line-height: 29px;
  min-width: 30px;
  padding: 0;
  vertical-align: middle;
  text-align: center;
  border: none;
  border-bottom: 2px solid transparent;
  border-radius: 0;
  color: #121212;
  font-size: 12px;
  font-weight: 400;
}
.daterangepicker .calendar-table td.active {
  background-color: #ec008c;
  border-radius: 50%;
  color: #ffffff;
  font-weight: 700;
  position: relative;
}
.daterangepicker .calendar-table td.active:hover {
  background-color: #ec008c;
  opacity: 1;
}
.daterangepicker .calendar-table td.active::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -1px;
  bottom: -1px;
  background-color: #ede1e8;
  z-index: -1;
}
.daterangepicker .calendar-table td.active.in-range {
  background-color: #ec008c;
  border-radius: 50%;
  color: #ffffff;
  font-weight: 700;
  position: relative;
}
.daterangepicker .calendar-table td.active.available:hover {
  background-color: #ec008c;
}
.daterangepicker .calendar-table td.active.available:hover::before {
  background-color: #ede1e8;
}
.daterangepicker .calendar-table td.in-range {
  background-color: #ede1e8;
}
.daterangepicker .calendar-table td.off {
  opacity: 0;
}
.daterangepicker .drp-buttons {
  border-top: none;
  padding: 3rem 2.7rem;
  margin-top: -3rem;
}
.daterangepicker .drp-buttons .btn {
  color: #ffffff;
  font-size: 15px;
  font-weight: 800;
  padding: 1.1rem 5.5rem;
}
.daterangepicker .drp-buttons .cancelBtn {
  color: #ec008c;
  font-size: 15px;
  font-weight: 800;
  transition: color 0.3s;
  padding-left: 3.6rem;
  padding-right: 3.6rem;
}
.daterangepicker .drp-buttons .cancelBtn:hover {
  color: #121212;
}
.daterangepicker .drp-calendar {
  max-width: unset;
}
.daterangepicker .drp-selected {
  display: none;
}
.daterangepicker .filter-heading {
  margin-left: -15px;
  margin-right: -15px;
  margin-top: -20px;
}

.applyBtn {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 800;
}

.cancelBtn {
  color: #ec008c;
  font-size: 1.5rem;
  font-weight: 800;
}

.daterangepicker td.available:hover,
.daterangepicker th.available:hover {
  background-color: #ede1e8;
}

@media (max-width: 991px) {
  .date-range input {
    padding: 1.3rem 2.7rem;
  }
}
@media (max-width: 767px) {
  .daterangepicker {
    min-width: 508px;
  }
  .daterangepicker .drp-calendar.left {
    padding: 15px 0 15px 15px;
    padding-bottom: 0;
  }
  .daterangepicker .drp-calendar.right {
    padding: 15px;
    padding-bottom: 0;
  }
  .daterangepicker .drp-buttons {
    padding-top: 0;
  }
}
@media (max-width: 575px) {
  .daterangepicker {
    position: fixed;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 1003;
    padding: 20px 15px;
    box-sizing: border-box;
    min-width: unset;
    width: 100%;
    margin-top: 0;
    background-color: #f9f9f9;
    height: calc(var(--vh, 1vh) * 100);
    padding-bottom: 60px;
    overflow-y: scroll;
  }
  .daterangepicker .drp-calendar {
    width: 100%;
  }
  .daterangepicker .drp-calendar.left, .daterangepicker .drp-calendar.right {
    padding: 0;
  }
  .daterangepicker .calendar-table td {
    border-bottom: 2px solid #f9f9f9 !important;
  }
  .daterangepicker .calendar-table td.active {
    background-color: transparent;
    border-radius: 0;
  }
  .daterangepicker .calendar-table td.active::before {
    background-color: #ec008c;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    border-radius: 50%;
    width: 28px;
    height: 28px;
  }
  .daterangepicker .calendar-table td.active::after {
    content: "";
    position: absolute;
    background-color: #ede1e8;
    left: 50%;
    right: 0;
    bottom: 0;
    top: 0;
    z-index: -2;
  }
  .daterangepicker .calendar-table th.month {
    font-size: 14px;
  }
  .daterangepicker .drp-buttons {
    padding: 0;
    border-top: 1px solid #ddd;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
  }
  .daterangepicker .drp-buttons .btn {
    margin: 0;
    width: 50%;
    border-radius: 0;
    font-size: 14px;
    font-weight: 700;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding-top: 16.5px;
    padding-bottom: 16.5px;
    opacity: 1;
  }
  .daterangepicker .drp-buttons .cancelBtn {
    color: #666666;
    background-color: #f9f9f9;
    border-right: 1px solid #ddd;
  }
  .daterangepicker .calendar-table td.active.available:hover {
    background-color: transparent;
  }
  .daterangepicker .calendar-table td.active.available:hover::before {
    background-color: #ec008c;
  }
  .daterangepicker .calendar-table td.active.in-range {
    background-color: transparent;
  }
  .daterangepicker .calendar-table td.active.in-range::after {
    right: 50%;
    left: 0;
    top: 0;
    bottom: 0;
  }
  .daterangepicker .calendar-table th,
  .daterangepicker .calendar-table td {
    border: none;
  }
}
/* END Date Range */
/* Input Spinner */
.input-spinner .input-group {
  display: flex;
  margin-top: 10px;
}
.input-spinner .input-group-prepend,
.input-spinner .input-group-append {
  color: #ec008c;
  font-size: 30px;
  font-weight: 300;
  width: 50px;
  height: 50px;
  box-shadow: 0 3px 5px #d3d3d3;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-grow: 2;
  overflow: hidden;
}
.input-spinner .input-group-prepend .btn,
.input-spinner .input-group-append .btn {
  padding: 0;
  color: #ec008c;
  font-size: 30px;
  line-height: 1;
  font-weight: 300;
}
.input-spinner .input-group-prepend .btn:hover,
.input-spinner .input-group-append .btn:hover {
  background-color: #ec008c;
  color: #ffffff;
}
.input-spinner .form-control {
  width: calc(100% - 100px);
  min-width: unset;
  padding: 0;
  border: none;
  color: #121212;
  font-size: 36px;
  font-weight: 400;
  background-color: transparent;
  flex-grow: 1;
}

.btn-outline-secondary {
  width: 100%;
  height: 100%;
}
.btn-outline-secondary:hover {
  background-color: #ec008c;
  color: #ffffff;
}

.btn-places.show::after {
  transform: rotate(180deg);
}

.places-menu {
  padding: 2rem 3rem;
  padding-top: 1.2rem;
}

/* END Input Spinner */
/* Alert */
.info-bar-alert.scroll {
  position: fixed;
  left: 0;
  right: 0;
  z-index: 500;
  top: 0;
}
.info-bar-alert p {
  margin-bottom: 1rem;
}
.info-bar-alert p:last-of-type {
  margin-bottom: 0;
}

.info-bar-alert.info-bar-alert-bottom {
  position: fixed;
  left: 0;
  right: 0;
  z-index: 500;
  bottom: 0;
  top: unset;
}

.alert {
  padding: 1.37rem 1.25rem;
  margin-bottom: 0;
  text-align: center;
  box-shadow: none;
  border: none;
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 0.14rem;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
}
.alert-danger {
  background-color: #ec008c;
}
.alert-danger + .header.fixed {
  padding-top: 50px;
}
.alert-dismissible {
  padding-right: 5rem;
}
.alert-dismissible .close {
  color: #a10060;
  font-size: 3rem;
  font-weight: 300;
  text-transform: uppercase;
  position: absolute;
  right: 2rem;
  top: 0.8rem;
  text-shadow: none;
  padding: 0;
  opacity: 1;
}
.alert-dismissible .close i {
  transition: all 0.3s;
}
.alert-dismissible .close:hover {
  opacity: 1;
}
.alert-dismissible .close:hover i {
  color: #ffffff;
}

@media (max-width: 1199px) {
  .alert {
    font-size: 1.2rem;
    letter-spacing: 0.08rem;
  }
}
@media (max-width: 767px) {
  .alert {
    letter-spacing: normal;
  }
  .alert-dismissible .close {
    right: 1rem;
    top: 1rem;
  }
}
/* END Alert */
/* Header */
.header {
  border-bottom: 1px solid #313131;
  background-color: #121212;
}
.header.fixed {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 999;
}
.header-divider {
  display: flex;
  flex-direction: column;
  width: 1px;
  height: 100%;
  background-color: #313131;
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}
.header-search {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 1.6rem;
  padding-right: 1.6rem;
}
.header-search:hover i {
  color: #ffffff;
}
.header-search i {
  color: #ec008c;
  font-size: 2rem;
  font-weight: 300;
  text-transform: uppercase;
  transition: color 0.3s;
}
.header-socials {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}
.header-socials li {
  margin: 0.6rem;
  padding: 0.4rem 0 0 0;
}
.header-socials li a {
  display: block;
  font-size: 1.6rem;
  transition: all 0.3s;
}
.header-socials li a:hover {
  color: #fff;
}

.navbar {
  padding: 0;
  border-right: 1px solid #313131;
  align-items: unset;
}
.navbar-nav {
  padding-top: 2.2rem;
  padding-bottom: 2.2rem;
}
.navbar-collapse {
  align-items: unset;
}

.nav-link {
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: 700;
  transition: color 0.3s;
  border: none;
  background: none;
}

.navbar-expand-lg .navbar-nav .nav-link {
  padding-right: 1.5rem;
  padding-left: 1.5rem;
}

.navbar-brand {
  margin-right: 4.5rem;
  padding-top: 0.8rem;
  padding-bottom: 0.9rem;
  display: flex;
  align-items: center;
}
.navbar-brand img {
  height: 6.6rem;
}

.navbar-right {
  display: flex;
}
.navbar-right .link-ico {
  transition: color 0.3s;
  padding: 2.65rem 1.5rem;
  display: inline-flex;
  align-items: center;
}

.lang-dropdown {
  padding: 0;
  padding-left: 1.6rem;
  padding-right: 2.1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.lang-dropdown:hover .dropdown-toggle {
  color: #ffffff;
}
.lang-dropdown .dropdown-toggle {
  padding: 0;
  color: #ec008c;
  font-size: 1.6rem;
  font-weight: 400;
}
.lang-dropdown .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Pro";
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: 300;
  text-transform: uppercase;
  position: relative;
  top: 0.3rem;
  transition: all 0.3s;
}
.lang-dropdown.show .dropdown-toggle::after {
  transform: rotate(180deg);
}
.lang-dropdown .dropdown-menu {
  min-width: 7.4rem;
  background-color: #121212;
  top: calc(100% - 1px);
  border: 1px solid #313131;
  border-top: none;
  padding: 0;
}
.lang-dropdown .dropdown-item {
  color: #ffffff;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  transition: color 0.3s;
}
.lang-dropdown .dropdown-item:hover {
  background-color: #ec008c;
}

/* Hamburger */
.navbar-toggler {
  position: relative;
  color: #fff;
  padding: 1.7rem 0.75rem;
  font-size: 1.25rem;
  line-height: 1;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 0;
}

.navbar-toggler:not(.collapsed) {
  padding: 1.7rem 0.75rem;
}

.navbar-toggler:focus,
.navbar-toggler:active {
  outline: 0;
}

.navbar-toggler span {
  display: block;
  background-color: #ffffff;
  height: 2px;
  width: 25px;
  margin-top: 4px;
  margin-bottom: 4px;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  position: relative;
  left: 0;
  opacity: 1;
}

.navbar-toggler span:nth-child(1),
.navbar-toggler span:nth-child(3) {
  -webkit-transition: transform 0.35s ease-in-out;
  -moz-transition: transform 0.35s ease-in-out;
  -o-transition: transform 0.35s ease-in-out;
  transition: transform 0.35s ease-in-out;
}

.navbar-toggler:not(.collapsed) span:nth-child(1) {
  position: absolute;
  left: 6px;
  top: 25px;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
}

.navbar-toggler:not(.collapsed) span:nth-child(2) {
  height: 6px;
  visibility: hidden;
  background-color: transparent;
}

.navbar-toggler:not(.collapsed) span:nth-child(3) {
  position: absolute;
  left: 6px;
  top: 25px;
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

/* END Hamburger */
@media (max-width: 1429px) {
  .navbar-brand {
    margin-right: 2.5rem;
  }
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 0.8rem;
    padding-left: 0.2rem;
  }
  .navbar-right .link-ico {
    padding: 2.65rem 0.8rem;
    font-weight: 600;
  }
  .nav-link {
    font-weight: 600;
  }
  .header-search {
    padding-left: 0.4rem;
    padding-right: 1.2rem;
  }
  .lang-dropdown {
    padding-left: 1.2rem;
    padding-right: 1.7rem;
  }
  .lang-dropdown .dropdown-menu {
    min-width: 6.65rem;
  }
}
@media (max-width: 1199px) {
  .nav-item {
    display: flex;
    align-items: center;
  }
  .nav-link {
    font-size: 1.2rem;
  }
  .link-ico {
    font-size: 1.2rem;
  }
  .navbar-brand img {
    max-width: 9rem;
    height: auto;
    max-height: 6rem;
  }
  .header-divider {
    margin-left: 0.8rem;
    margin-right: 0.8rem;
  }
  .header-search {
    padding-left: 0.8rem;
    padding-right: 0.8rem;
  }
  .header-search i {
    font-size: 1.8rem;
  }
  .lang-dropdown {
    padding-left: 1rem;
    padding-right: 1.5rem;
  }
  .lang-dropdown .dropdown-toggle {
    font-size: 1.5rem;
  }
  .link-ico {
    font-size: 1.1rem;
  }
  .link-ico i {
    font-size: 1.6rem;
  }
  .lang-dropdown .dropdown-menu {
    min-width: 6.1rem;
  }
  .lang-dropdown .dropdown-item {
    padding: 0.5rem 1.5rem;
  }
}
@media (max-width: 991px) {
  .navbar {
    justify-content: flex-start;
  }
  .navbar-brand {
    order: 1;
  }
  .navbar-right {
    order: 2;
    margin-left: auto;
  }
  .navbar-toggler {
    order: 3;
  }
  .navbar-collapse {
    order: 4;
  }
  .nav-link {
    font-size: 1.6rem;
  }
  .nav-item {
    text-align: center;
    justify-content: center;
  }
  .navbar-nav {
    padding-top: 0;
    padding-bottom: 1.6rem;
  }
  .header-divider {
    display: none;
  }
}
@media (max-width: 767px) {
  .alert-danger + .header.fixed .navbar-toggler:not(.collapsed) {
    top: -50px;
  }
  .navbar {
    border-right: none;
    justify-content: space-between;
    position: static;
  }
  .navbar-brand {
    order: 2;
  }
  .navbar-brand img {
    max-width: 100px;
  }
  .header-search i {
    font-size: 20px;
  }
  .navbar-right {
    order: 3;
    margin-left: 0;
  }
  .navbar-toggler {
    order: 1;
    position: relative;
    z-index: 100;
  }
  .navbar-toggler span {
    width: 18px;
    background-color: #ec008c;
  }
  .navbar-toggler:not(.collapsed) {
    position: relative;
    top: 0;
    left: 0;
  }
  .navbar-toggler:not(.collapsed) span {
    background-color: #121212;
  }
  .navbar-collapse {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99;
  }
  .navbar-collapse-inner {
    position: relative;
    order: 4;
    height: 100vh;
    width: 100%;
    background-color: rgba(236, 0, 140, 0.95);
    padding-top: 65px;
    overflow: scroll;
  }
  .navbar-collapse .link-ico {
    color: #121212;
    font-size: 21px;
    font-weight: 700;
    margin-bottom: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: color 0.3s;
  }
  .navbar-collapse .link-ico:hover {
    color: #ffffff;
  }
  .navbar-collapse .link-ico i {
    color: #ffffff;
    font-size: 22px;
    margin-right: 10px;
    display: none;
  }
  .nav-link {
    color: #121212;
    font-size: 21px;
    font-weight: 700;
    margin-bottom: 15px;
  }
  .nav-link:hover {
    color: #ffffff;
  }
  .navbar-nav {
    padding-bottom: 0;
  }
  .lang-dropdown {
    padding-left: 25px;
    padding-right: 0;
  }
  .lang-dropdown .dropdown-toggle {
    color: #121212;
    font-size: 21px;
    font-weight: 700;
    margin-bottom: 15px;
  }
  .lang-dropdown .dropdown-toggle::after {
    font-size: 18px;
    top: 0.4rem;
  }
  .lang-dropdown .dropdown-menu {
    left: calc(50% + 12.5px);
    transform: translateX(-50%);
    border: 1px solid #313131;
  }
  .lang-dropdown .dropdown-item {
    font-size: 20px;
  }
  .header-socials li {
    margin: 0.8rem;
    padding: 0.5rem 0 0 0;
  }
  .header-socials li a {
    font-size: 2.4rem;
  }
}
/* END Header */
/* HP Slider */
.hp-slider {
  background-image: linear-gradient(to top, #1a1a1a 0%, #121212 100%);
  padding-top: 2rem;
}

.carousel-indicators {
  position: relative;
  margin-bottom: 0;
}
.carousel-indicators li {
  background-color: #ffffff;
  opacity: 1;
  width: 25px;
}
.carousel-indicators li span {
  display: none;
  opacity: 1;
}
.carousel-indicators li.active {
  background-color: #ec008c;
}

@media (min-width: 992px) {
  .hp-slider {
    padding-bottom: 0.5rem;
  }
  .carousel-indicators {
    width: auto;
    height: auto;
    position: relative;
    bottom: auto;
    display: flex;
    justify-content: space-between;
    padding-left: 0;
    margin-right: -15px;
    margin-left: -15px;
    list-style: none;
    margin-bottom: 0;
  }
  .carousel-indicators li {
    display: flex;
    align-items: center;
    width: auto;
    height: auto;
    margin-right: 0;
    margin-left: 0;
    padding-left: 15px;
    padding-right: 15px;
    text-indent: unset;
    background-color: transparent;
    border: none;
    opacity: 1;
    color: #d0d0d0;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    text-align: left;
    position: relative;
    padding-top: 2.4rem;
    padding-bottom: 1.8rem;
    transition: color 0.3s;
  }
  .carousel-indicators li::after {
    position: absolute;
    content: "";
    height: 0.5rem;
    background-color: #ec008c;
    top: 100%;
    left: 50%;
    right: 50%;
    opacity: 0;
    transition: left 0.8s, right 0.8s;
  }
  .carousel-indicators li.active {
    color: #ffffff;
    background-color: transparent;
  }
  .carousel-indicators li.active::after {
    left: 15px;
    right: 15px;
    opacity: 1;
  }
  .carousel-indicators li:hover {
    color: #ffffff;
  }
  .carousel-indicators li span {
    display: inline-block;
    max-width: 186px;
  }
}
@media (max-width: 1199px) {
  .carousel-indicators {
    margin-left: -7px;
    margin-right: -7px;
  }
  .carousel-indicators li {
    font-size: 0.9rem;
    padding-left: 7px;
    padding-right: 7px;
  }
  .carousel-indicators li.active::after {
    left: 7px;
    right: 7px;
  }
}
@media (max-width: 991px) {
  .carousel-item img {
    max-width: 690px;
  }
}
@media (max-width: 767px) {
  .hp-slider {
    padding-top: 13px;
    padding-bottom: 17px;
  }
  .carousel-indicators {
    display: none;
  }
  .carousel-item img {
    max-width: 100%;
  }
}
/* END HP Slider */
/* Program */
.program {
  padding-top: 4.5rem;
  background-color: #eeeeee;
}
.program-item {
  box-shadow: 0 0.3rem 0.5rem rgba(0, 0, 0, 0.1);
  background-color: #ffffff;
  display: flex;
  flex-wrap: wrap;
  padding: 3rem 4.2rem;
  height: 100%;
}
.program-item-col {
  margin-bottom: 3rem;
}
.program-img {
  margin-right: 40px;
  width: 130px;
}
.program-content {
  width: calc(100% - 170px);
  display: flex;
  flex-direction: column;
}
.program-content .h1 {
  font-weight: 800;
  color: #121212;
  margin-bottom: 0;
  line-height: 1;
  margin-bottom: 2rem;
}
.program-content .h1 a {
  color: #121212;
  transition: color 0.3s;
}
.program-content .h1 a:hover {
  color: #ec008c;
}
.program-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: #444444;
}
.program-price span {
  color: #1d781d;
}
.program-info {
  color: #444444;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.31;
  margin-top: 0.3rem;
}
.program-length {
  color: #666666;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.5;
  margin-top: 0.3rem;
}
.program-buttons {
  margin-top: auto;
  padding-top: 2.2rem;
}
.program-buttons .btn-primary {
  margin-right: 2.6rem;
}

@media (min-width: 991px) {
  .program-content .h1 {
    min-height: 7.2rem;
  }
}
@media (min-width: 1430px) {
  .program-content .h1 {
    min-height: 8rem;
  }
}
@media (max-width: 1429px) {
  .program-item {
    padding: 2.8rem 2.3rem;
  }
  .program-img {
    margin-right: 20px;
  }
  .program-content {
    width: calc(100% - 150px);
  }
  .program-buttons .btn {
    font-size: 1.5rem;
  }
  .program-buttons .btn-primary {
    margin-right: 1.5rem;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
@media (max-width: 1199px) {
  .program-buttons {
    padding-top: 1.5rem;
  }
  .program-buttons .btn {
    font-size: 1.5rem;
  }
  .program-buttons .btn-primary {
    margin-right: 0;
    margin-bottom: 1rem;
  }
  .program-item {
    height: 100%;
  }
}
@media (max-width: 991px) {
  .program-buttons .btn {
    font-size: 1.5rem;
  }
  .program-buttons .btn-primary {
    margin-right: 1.5rem;
    margin-bottom: 0;
  }
  .program-item {
    height: auto;
  }
}
@media (max-width: 575px) {
  .program {
    padding-top: 10px;
  }
  .program .h1 {
    margin-bottom: 1.4rem;
    font-size: 21px;
  }
  .program-item {
    position: relative;
    padding: 15px;
    padding-bottom: 70px;
  }
  .program-item-col {
    margin-bottom: 15px;
  }
  .program-img {
    width: 55px;
    margin-right: 16px;
  }
  .program-content {
    width: calc(100% - 71px);
  }
  .program-buttons {
    position: absolute;
    bottom: 15px;
    left: 15px;
    right: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .program-buttons .btn {
    font-size: 13px;
  }
  .program-buttons .btn-primary {
    padding: 13px 20px 14px 20px;
    margin-right: 0;
  }
}
/* END Program */
/* Main News */
.main-news {
  background-color: #eeeeee;
  padding-bottom: 1.5rem;
}
.main-news-next {
  padding-top: 3rem;
  padding-bottom: 5rem;
}

.news-item {
  margin-bottom: 3rem;
}
.news-item-name {
  margin-top: 2.2rem;
}
.news-item-name h3,
.news-item-name .h3,
.news-item-name h2,
.news-item-name .h2,
.news-item-name h4,
.news-item-name .h4 {
  color: #121212;
  line-height: 1.33;
}
.news-item-name h3 a,
.news-item-name .h3 a,
.news-item-name h2 a,
.news-item-name .h2 a,
.news-item-name h4 a,
.news-item-name .h4 a {
  color: #121212;
  transition: color 0.3s;
}
.news-item-name h3 a:hover,
.news-item-name .h3 a:hover,
.news-item-name h2 a:hover,
.news-item-name .h2 a:hover,
.news-item-name h4 a:hover,
.news-item-name .h4 a:hover {
  color: #ec008c;
}
.news-item-txt p {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.5;
}

@media (max-width: 767px) {
  .news-item-txt p {
    font-size: 12px;
  }
}
@media (max-width: 575px) {
  .main-news-next {
    padding-bottom: 3px;
    padding-top: 15px;
  }
}
/* END Main News */
/* Main Actors */
.main-actors {
  background-image: linear-gradient(to top, #1a1a1a 0%, #121212 100%);
}
.main-actors-carousel {
  padding-top: 3rem;
  padding-bottom: 8rem;
  border-top: 1px solid #313131;
}
.main-actors-carousel .slick-list {
  width: 100%;
}
.main-actors-carousel .slick-list .slick-track {
  min-width: 100%;
}

.actor-photo {
  position: relative;
  z-index: 1;
}
.actor-item {
  position: relative;
  max-width: 33.3rem;
}
.actor-caption {
  position: absolute;
  bottom: 2.4rem;
  left: 3.5rem;
  z-index: 3;
}
.actor-name {
  color: #ec008c;
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.3rem;
  display: block;
  transition: color 0.3s;
}
.actor-name:hover {
  color: #ffffff;
}
.actor-link {
  color: #ec008c;
  font-size: 1.4rem;
  font-weight: 400;
  position: relative;
  display: block;
  transition: color 0.3s;
}
.actor-link:hover {
  color: #ffffff;
}
.actor-link:hover i {
  color: #ffffff;
  right: -5px;
}
.actor-link i {
  position: relative;
  color: #ec008c;
  font-size: 1.4rem;
  right: 0;
  transition: all 0.3s;
}

@media (max-width: 991px) {
  .actor-name {
    font-size: 3rem;
  }
}
@media (max-width: 767px) {
  .actor-name {
    font-size: 2.8rem;
  }
  .main-actors-carousel {
    padding-top: 20px;
    padding-bottom: 30px;
  }
}
@media (max-width: 575px) {
  .main-actors {
    background: #000;
  }
  .actor-name {
    font-size: 2.6rem;
  }
}
/* END Main Actors */
/* Partners */
.partners {
  padding-top: 3.4rem;
  padding-bottom: 3.4rem;
  overflow: hidden;
}
.partners-carousel {
  padding-left: 7rem;
  padding-right: 7rem;
  margin-top: 2rem;
}
.partners-carousel .slick-track {
  display: flex;
  align-items: center;
}
.partners-carousel .slick-list {
  width: 100%;
}
.partners-carousel .slick-list .slick-track {
  min-width: 100%;
}
.partners .slick-arrow {
  box-shadow: none;
  border: none;
  background-color: transparent;
  position: absolute;
  height: 52px;
  width: 52px;
  background: url("../images/arrow-bg.svg") no-repeat center;
  background-size: 100% 100%;
  color: transparent;
  top: 50%;
  transform: translateY(-50%) scale(1);
  transition: all 0.3s;
}
.partners .slick-arrow:hover {
  transform: translateY(-50%);
}
.partners .slick-arrow::after {
  content: "\f104";
  position: absolute;
  color: #ec008c;
  font-family: "Font Awesome 5 Pro";
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1.2;
  padding-bottom: 5px;
  padding-right: 3px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.partners .slick-next {
  right: 0;
  transform: translateY(-50%) scale(1);
}
.partners .slick-next::after {
  content: "\f105";
  padding-right: 0px;
  padding-left: 2px;
}
.partners .slick-next:hover {
  transform: translateY(-50%);
}
.partners .slick-prev {
  left: 0;
}

.partner-item {
  max-width: 19rem;
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}

@media (min-width: 576px) {
  .partners {
    display: block;
  }
}
@media (max-width: 575px) {
  .partner-item {
    margin-left: 1rem;
    margin-right: 1rem;
  }
  .partners .slick-next {
    right: -10px;
  }
  .partners .slick-prev {
    left: -10px;
  }
}
/* END Partners */
/* Footer */
.footer {
  background-color: #ec008c;
  padding-top: 3rem;
}
.footer h3 {
  color: #121212;
}
.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-main {
  border-top: 1px solid #d0007c;
  padding-top: 4.4rem;
  padding-bottom: 4.1rem;
}
.footer-main ul {
  padding-top: 0.5rem;
}
.footer-main ul li {
  color: #121212;
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 0.7rem;
}
.footer-main ul li a {
  color: #121212;
  font-size: 1.6rem;
  font-weight: 400;
  transition: all 0.3s;
}
.footer-main ul li a:hover {
  color: #ffffff;
}
.footer-tel {
  color: #ffffff;
  font-size: 3.2rem;
  font-weight: 400;
  transition: color 0.3s;
}
.footer-tel:hover {
  color: #121212;
}
.footer-tel strong {
  font-weight: 800;
}
.footer-openhours {
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: 500;
}
.footer-link-ico {
  padding-top: 0.5rem;
  display: flex;
  flex-direction: column;
  padding-bottom: 3rem;
}
.footer-link-ico a {
  margin-bottom: 0.7rem;
}
.footer-brand {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 5rem;
}
.footer-brand img {
  max-height: 10rem;
}
.footer-adress {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1;
  margin-bottom: 5rem;
}
.footer-socials {
  display: flex;
  justify-content: flex-end;
  margin-left: -12px;
  margin-right: -12px;
}
.footer-socials li {
  padding-left: 12px;
  padding-right: 12px;
}
.footer-socials li a {
  color: #121212;
  font-size: 3rem;
  font-weight: 400;
  transition: color 0.3s;
}
.footer-socials li a:hover {
  color: #ffffff;
}
.footer-socials li a:hover i {
  color: #ffffff;
}
.footer-socials li a i {
  color: #121212;
  font-size: 3rem;
  font-weight: 400;
  transition: color 0.3s;
}

ul.footer-adress {
  margin-bottom: 4.8rem;
}
ul.footer-adress li {
  text-align: right;
}

ul.footer-socials {
  margin-left: -12px;
  margin-right: -12px;
}
ul.footer-socials li {
  padding-left: 12px;
  padding-right: 12px;
}

.footer-ul-col {
  display: flex;
  justify-content: space-between;
}

.footer-founder img {
  max-width: 10rem;
}
.footer-founder h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.footer-bottom {
  border-top: 1px solid #d0007c;
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.footer-bottom ul {
  display: flex;
  margin-left: -1rem;
  margin-right: -1rem;
  flex-wrap: wrap;
}
.footer-bottom ul li {
  padding-left: 1rem;
  padding-right: 1rem;
}
.footer-bottom ul li a {
  color: #121212;
  font-size: 1.4rem;
  font-weight: 400;
  transition: color 0.3s;
}
.footer-bottom ul li a:hover {
  color: #ffffff;
}

.footer-copyright {
  color: #121212;
  font-size: 1.2rem;
  font-weight: 400;
  text-align: right;
}
.footer-copyright strong {
  font-weight: 700;
}

@media (max-width: 1429px) {
  .footer-link-ico .link-ico-dark {
    font-size: 1.6rem;
    white-space: nowrap;
  }
  .footer-bottom ul li a {
    font-size: 1.3rem;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .footer-contact-col {
    order: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .footer-ul-col {
    order: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 3rem;
    text-align: center;
    justify-content: center;
  }
  .footer-ul2-col {
    order: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 3rem;
    text-align: center;
  }
  .footer-ul2-col .footer-link-ico {
    padding-bottom: 1rem;
  }
  .footer-adress-col {
    order: 2;
  }
  .footer-brand,
  .footer-adress {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .footer-socials {
    justify-content: center;
  }
  ul.footer-adress {
    margin-bottom: 1.8rem;
  }
  .footer-brand {
    margin-bottom: 2.5rem;
  }
}
@media (max-width: 1199px) {
  .footer-bottom ul {
    display: flex;
    justify-content: center;
  }
  .footer-copyright {
    text-align: center;
    margin-top: 1.5rem;
  }
}
@media (max-width: 767px) {
  .footer h3 {
    font-size: 21px;
  }
  .footer-tel {
    font-size: 32px;
  }
  .footer-openhours {
    font-size: 13px;
  }
  .footer-contact-col {
    margin-bottom: 10px;
  }
  .footer-main ul li a {
    font-size: 14px;
  }
  .footer-brand {
    justify-content: flex-start;
    margin-bottom: 0;
  }
  .footer-adress-col {
    margin-top: 2.2rem;
    justify-content: center;
  }
  ul.footer-adress {
    align-items: flex-end;
    margin-bottom: 0;
  }
  .f-adress-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .footer-socials {
    justify-content: center;
    margin-top: 30px !important;
  }
  .footer-socials li a i {
    font-size: 30px;
  }
  ul.footer-adress {
    margin-left: -10px;
  }
  ul.footer-adress li {
    font-size: 12px;
  }
  .footer-copyright {
    font-size: 11px;
  }
  .footer-main {
    padding-top: 25px;
    padding-bottom: 27px;
  }
  .footer-ul-col {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }
  .footer-founder {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
  .footer-founder h3 {
    font-size: 12px;
  }
}
@media (max-width: 575px) {
  .footer-bottom ul {
    flex-direction: column;
    align-items: center;
  }
  .footer-bottom ul li {
    width: 100%;
    margin: 0;
    text-align: center;
    margin-bottom: 0.5rem;
  }
  .footer-bottom ul li a {
    font-size: 12px;
  }
}
/* END Footer */
/* Subpage Title */
.subpage-title {
  background-color: #222222;
  padding-top: 3.25rem;
  padding-bottom: 3.25rem;
}
.subpage-title .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.subpage-title h1,
.subpage-title .h1 {
  color: #fefefe;
  margin-bottom: 0;
}

@media (max-width: 575px) {
  .subpage-title {
    padding-top: 14px;
    padding-bottom: 14.5px;
  }
}
/* END Subpage Title */
/* Actors */
.actors {
  background-color: #121212;
  padding-top: 4rem;
  padding-bottom: 8rem;
}
.actors .row {
  margin-left: 0;
  margin-right: 0;
}
.actors [class*=col-] {
  padding-left: 0;
  padding-right: 0;
}
.actors .actor-caption {
  padding: 2.7rem 3.2rem;
  left: 0;
  right: 0;
  bottom: 0;
}
.actors .actor-name {
  font-size: 2.4rem;
}

@media (max-width: 575px) {
  .actors {
    background-color: #000000;
    padding-top: 20px;
    padding-bottom: 33px;
  }
  .actors > .container {
    padding-right: 0;
  }
  .actors-title {
    background-color: #000000;
    border-bottom: 1px solid #313131;
  }
  .actors-title .container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .actors-title h1 {
    color: #ec008c;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 10px;
  }
  .actors-title .dropdown {
    width: 100%;
  }
  .actors-title .dropdown-toggle {
    background-color: #121212;
    color: #d0d0d0;
    font-size: 14px;
    font-weight: 400;
    width: 100%;
    border: 1px solid #313131;
  }
}
/* END Actors */
/* Media */
.media {
  padding-top: 4rem;
  padding-bottom: 8rem;
  background-color: #eeeeee;
}
.media-nav {
  display: flex;
  justify-content: space-between;
  padding-bottom: 2rem;
}
.media-nav-left {
  margin-left: -25px;
  margin-right: -25px;
  display: flex;
}
.media-nav-item {
  padding-left: 25px;
  padding-right: 25px;
}
.media-nav-item a {
  font-size: 1.4rem;
  color: #ec008c;
  transition: color 0.3s;
  font-weight: 500;
}
.media-nav-item a:hover {
  color: #121212;
}
.media-nav-right .media-nav-item {
  padding: 0;
  white-space: nowrap;
  padding-left: 1rem;
}
.media-nav-list .media-nav-left {
  margin-left: 0;
  margin-right: 0;
}
.media-nav-info {
  color: #575757;
  font-size: 14px;
  font-weight: 700;
}

.media-table {
  width: 100%;
}
.media-table table {
  width: 100%;
}
.media-table thead th {
  color: #666666;
  font-size: 1.2rem;
  font-weight: 400;
  padding-top: 1rem;
  padding-bottom: 1rem;
  white-space: nowrap;
  padding-left: 1rem;
}
.media-table thead th a {
  color: #666666;
  font-size: 1.2rem;
  font-weight: 400;
}
.media-table thead th a:hover {
  color: #121212;
  transition: color 0.3s;
}
.media-table thead th a:hover i {
  color: #121212;
}
.media-table thead th:first-child, .media-table thead th:nth-child(2) {
  padding-left: 0;
}
.media-table-name {
  width: 65%;
}
.media-table-size {
  text-align: center;
}
.media-table-date {
  text-align: right;
}
.media-table tbody tr:hover {
  background-color: #ffffff;
}
.media-table tbody tr:last-child td {
  border-bottom: none;
}
.media-table tbody td {
  color: #666666;
  font-size: 1.2rem;
  font-weight: 400;
  border-bottom: 1px solid #cccccc;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.media-table tbody td span {
  display: none;
}
.media-table tbody td a {
  color: #ec008c;
  font-size: 1.4rem;
  font-weight: 500;
}
.media-table tbody td a:hover {
  color: #121212;
}
.media-table tbody td a:hover i {
  color: #121212;
}
.media-table tbody td i {
  color: #ec008c;
  font-size: 1.5rem;
  font-weight: 300;
  margin-right: 16px;
  position: absolute;
  left: 0.1rem;
  top: 1.2rem;
}
.media-table tbody td:first-child {
  padding-left: 3.2rem;
  position: relative;
  padding-right: 0.6rem;
}
.media-table tbody td:nth-child(2) {
  text-align: center;
}
.media-table tbody td:nth-child(3) {
  text-align: right;
  color: #121212;
  font-size: 1.4rem;
  font-weight: 400;
}
.media-table tbody td:nth-child(4) {
  text-align: right;
  color: #121212;
  font-size: 1.4rem;
  font-weight: 400;
}
.media-table tbody td:nth-child(5) {
  text-align: right;
  white-space: nowrap;
  padding-left: 1rem;
}

.media-table-list .media-table-name {
  width: 45%;
}

@media (max-width: 575px) {
  .media {
    padding-top: 18px;
    padding-bottom: 30px;
  }
  .media h2,
  .media .h2 {
    font-size: 16px;
    margin-bottom: 15px;
  }
  .media-table thead {
    display: none;
  }
  .media-table tbody {
    display: flex;
    flex-direction: column;
  }
  .media-table tbody tr {
    border-bottom: 1px solid #cccccc;
    padding-bottom: 14px;
    margin-bottom: 20px;
  }
  .media-table tbody tr:hover {
    background-color: transparent;
  }
  .media-table tbody tr:last-child {
    border-bottom: none;
  }
  .media-table tbody td {
    font-size: 12px !important;
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    border-bottom: none;
    text-align: left !important;
    padding-left: 32px;
    padding-top: 3px;
    padding-bottom: 3px;
  }
  .media-table tbody td:first-child {
    padding-left: 32px;
  }
  .media-table tbody td:last-child {
    padding-left: 32px;
  }
  .media-table tbody td a {
    font-size: 12px;
    transition: color 0.3s;
  }
  .media-table tbody td i {
    font-size: 14px;
    transition: color 0.3s;
    top: 0.5rem;
  }
  .media-table tbody td span {
    display: block;
    margin-right: 5px;
  }
  .media-nav-item {
    padding-left: 10px;
    padding-right: 10px;
  }
  .media-nav-info {
    font-size: 12px;
  }
  .media-nav-item a {
    font-size: 12px;
  }
  .media-nav-left {
    margin-left: -10px;
    margin-right: -10px;
  }
}
.sortby {
  margin-bottom: 20px;
}
.sortby .dropdown {
  margin-bottom: 5px;
  width: 100%;
}
.sortby .dropdown-toggle {
  width: 100%;
  font-size: 14px;
}
.sortby .dropdown-toggle::after {
  font-size: 20px;
}

@media (min-width: 576px) {
  .sortby {
    display: none;
  }
}
/* END Media */
/* Login Box */
.login-box {
  border: 1px solid #cecece;
  padding: 5rem 6.2rem;
  max-width: 488px;
}
.login-box-ico {
  margin-bottom: 3rem;
}
.login-box-ico i {
  color: #ec008c;
  font-size: 5rem;
  font-weight: 300;
}
.login-box-ico + h2 {
  margin-top: -18px;
}
.login-box h2 {
  margin-bottom: 2.1rem;
}
.login-box .form-control {
  margin-bottom: 14px;
}
.login-box .btn {
  margin-top: 12px;
  min-width: 175px;
}

@media (max-width: 575px) {
  .login-box {
    padding: 30px 20px;
  }
  .login-box-ico {
    margin-bottom: 20px;
  }
  .login-box-ico i {
    font-size: 30px;
  }
  .login-box .btn {
    padding: 1.7rem 2.7rem;
    margin-top: 6px;
    min-width: 175px;
  }
}
/* END Login Box */
/* Contact */
.light-bg {
  background-color: #eeeeee;
  padding-top: 4rem;
  padding-bottom: 8rem;
}

@media (max-width: 575px) {
  .light-bg {
    padding-top: 16px;
    padding-bottom: 23px;
  }
}
.contact h2 {
  font-size: 3rem;
}

.contact-box {
  box-shadow: 0 0.3rem 0.5rem rgba(0, 0, 0, 0.1);
  background-color: #ffffff;
  max-width: 488px;
}
.contact-box strong {
  font-weight: 700;
}
.contact-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.contact-box-content {
  padding: 3rem 3.7rem;
}
.contact-box-ico {
  color: #ec008c;
  font-size: 2rem;
  font-weight: 300;
  width: 20px;
  margin-right: 14px;
  display: flex;
  justify-content: center;
  padding-top: 3px;
}
.contact-box-part {
  display: flex;
  margin-bottom: 20px;
}
.contact-box-part.info .contact-box-txt strong {
  font-weight: 600;
}
.contact-box-txt {
  color: #121212;
}
.contact-box-txt a {
  color: #121212;
}
.contact-box-txt a strong {
  font-weight: 700;
}
.contact-box-txt ul + ul,
.contact-box-txt ul + p {
  margin-top: 20px;
  margin-bottom: 0;
}
.contact-box-links {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
}
.contact-box-links .btn-link {
  font-size: 1.4rem;
}
.contact-box-links .btn-link::after {
  top: 100%;
}

.business-cards-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.business-card {
  font-weight: 400;
  margin-bottom: 25px;
}
.business-card strong {
  font-weight: 700;
}
.business-card .h4 {
  font-size: 1.8rem;
  margin-bottom: 1.1rem;
}
.business-card-name {
  font-weight: 400;
  margin-bottom: 2px;
}
.business-card-name + .h4 {
  margin-top: 20px;
}
.business-card-name.department {
  font-size: 1.2rem;
}
.business-card-phone {
  margin-bottom: 2px;
  display: flex;
  flex-direction: column;
}
.business-card-phone + .h4 {
  margin-top: 20px;
}
.business-card-phone > span {
  display: block;
}
.business-card-phone > span a {
  font-size: 1.4rem;
  color: #121212;
  transition: color 0.3s;
}
.business-card-phone > span a:hover {
  color: #ec008c;
}
.business-card-phone > a {
  display: block;
  font-size: 1.4rem;
  color: #121212;
  transition: color 0.3s;
}
.business-card-phone > a:hover {
  color: #ec008c;
}
.business-card-phone strong {
  font-weight: 700;
}
.business-card-mail {
  margin-bottom: 3px;
}
.business-card-mail + .h4 {
  margin-top: 20px;
}
.business-card-mail a {
  color: #ec008c;
  font-weight: 500;
  font-size: 1.4rem;
}
.business-card-mail a::after {
  top: 100%;
}
.business-card-openhours {
  font-size: 1.4rem;
}
.business-card-openhours + .h4 {
  margin-top: 20px;
}

.contact-form .login-box {
  padding: 7.4rem 6.2rem;
}
.contact-form .login-box-button {
  display: flex;
  justify-content: flex-end;
  margin-top: 25px;
}
.contact-form .login-box-button .btn {
  margin-top: 0;
}

.contact-next {
  margin-top: 5.7rem;
}
.contact-next-heading {
  display: flex;
  justify-content: space-between;
  position: relative;
  cursor: pointer;
  margin-bottom: 3rem;
}
.contact-next-heading.show i {
  transform: rotate(180deg);
}
.contact-next-heading i {
  color: #ec008c;
  font-size: 20px;
  transition: all 0.3s;
  position: absolute;
  right: 0;
  top: 0;
  display: none;
}
.contact-next .business-cards {
  display: none;
}

.parking h2 {
  margin-bottom: 3rem;
}
.parking-content {
  align-items: center;
}
.parking-txt {
  padding-left: 5rem;
}
.parking-txt strong {
  font-weight: 700;
}
.parking-txt .btn {
  min-width: 175px;
}

@media (min-width: 576px) {
  .contact-next .business-cards {
    display: flex;
  }
}
@media (min-width: 1430px) {
  .contact-next .business-cards {
    margin-left: -20px;
    margin-right: -20px;
    display: flex;
    flex-wrap: wrap;
  }
  .contact-next .business-card {
    width: 25%;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
  }
}
@media (min-width: 1530px) {
  .contact-box-col {
    flex: 0 0 518px;
    max-width: 518px;
  }
  .business-cards-col {
    flex: 0 0 428px;
    max-width: 428px;
  }
  .contact-form-col {
    flex: 0 0 518px;
    max-width: 518px;
  }
}
@media (max-width: 1429px) {
  .contact-box-col {
    order: 1;
  }
  .business-cards-col {
    order: 3;
  }
  .business-cards {
    display: flex;
    flex-direction: row;
    margin-left: -20px;
    margin-right: -20px;
    margin-top: 45px;
    width: calc(100% + 40px);
  }
  .business-card {
    padding-left: 20px;
    padding-right: 20px;
    width: 25%;
    box-sizing: border-box;
  }
  .contact-form-col {
    order: 2;
  }
  .contact-form {
    height: 100%;
  }
  .contact-form .login-box {
    height: 100%;
  }
}
@media (max-width: 1199px) {
  .contact-next {
    margin-top: 3.5rem;
  }
  .business-cards {
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
    margin-top: 40px;
    width: calc(100% + 30px);
  }
  .business-card {
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
    width: 50%;
  }
}
@media (max-width: 991px) {
  .contact-box-col {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
  }
  .contact-form-col,
  .contact-box-row {
    display: flex;
    justify-content: center;
  }
  .business-card {
    text-align: center;
  }
  .contact-next-heading {
    justify-content: center;
    margin-bottom: 0;
  }
  .contact-next h2 {
    text-align: center;
  }
  .parking {
    margin-top: 3rem;
  }
  .parking h2 {
    text-align: center;
    margin-bottom: 4rem;
  }
  .parking-txt {
    padding-left: 2rem;
  }
}
@media (max-width: 575px) {
  .contact h2 {
    font-size: 16px;
  }
  .contact-box-content {
    padding: 23px 20px;
  }
  .contact-box-ico {
    font-size: 20px;
  }
  .contact-box-links {
    margin-top: 25px;
  }
  .contact-box-links .btn-link {
    font-size: 12px;
  }
  .contact-form {
    width: 100%;
  }
  .contact-form .login-box {
    padding: 30px 20px;
  }
  .contact-form .login-box-heading {
    display: flex;
  }
  .contact-form .login-box-ico i {
    font-size: 30px;
    margin-right: 20px;
  }
  .contact-form .login-box-ico + h2 {
    margin-top: 0;
  }
  .business-card {
    width: 100%;
    text-align: left;
    font-size: 12px !important;
  }
  .business-card a {
    font-size: 12px;
  }
  .business-card-name.department {
    font-size: 12px;
  }
  .contact-next {
    margin-top: 0;
  }
  .contact-next h2 {
    text-align: left;
    margin-bottom: 20px;
  }
  .contact-next .business-cards {
    margin-top: 0;
    display: none;
  }
  .contact-next-heading {
    justify-content: flex-start;
  }
  .contact-next-heading i {
    display: block;
  }
  .parking h2 {
    margin-bottom: 15px;
    text-align: left;
  }
  .parking-txt {
    margin-top: 18px;
    padding-left: 0rem;
  }
  .parking-txt .h4 {
    font-size: 14px;
  }
  .parking-txt p {
    font-size: 12px;
    margin-bottom: 20px;
  }
}
/* END Contact */
/* Text Page */
.text-page p {
  color: #121212;
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 30px;
}
.text-page .btn {
  margin-top: 10px;
}
.text-page h3 {
  color: #444444;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 10px;
}
.text-page article {
  border-bottom: 1px solid #cccccc;
}
.text-page article + article {
  margin-top: 28px;
}
.text-page article:last-child {
  border-bottom: none;
}

.ul-styled ul {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-top: 10px;
  margin-bottom: 30px;
}
.ul-styled ul li {
  position: relative;
  color: #121212;
  font-size: 1.4rem;
  font-weight: 400;
  padding-left: 20px;
  margin-bottom: 5px;
}
.ul-styled ul li::before {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  background-color: #ec008c;
  border-radius: 50%;
  top: 8px;
  left: 0;
}

@media (max-width: 575px) {
  .text-page {
    font-size: 12px;
  }
  .text-page h2,
  .text-page .h2 {
    font-size: 16px;
  }
  .text-page .h3,
  .text-page h3 {
    font-size: 12px;
    margin-bottom: 9px;
  }
  .text-page p {
    font-size: 12px;
    margin-bottom: 20px;
  }
  .text-page .btn {
    margin-top: 5px;
  }
  .ul-styled ul {
    margin-bottom: 20px;
  }
}
/* END Text Page */
/* Sidebar Content */
.sidebar-content {
  width: 100%;
  background-color: #eeeeee;
  overflow: hidden;
}

.left-menu {
  display: none;
  background-color: #f9f9f9;
  height: calc(100% - 11px);
  border-right: 1px solid #dddddd;
  list-style: none;
  padding-left: 0;
  padding-right: 49px;
  padding-top: 25px;
}
.left-menu-item {
  padding-top: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #dddddd;
}
.left-menu-item:last-child {
  border-bottom: none;
}
.left-menu-item a {
  color: #444444;
  font-size: 1.4rem;
  font-weight: 400;
}
.left-menu-item.active a {
  font-weight: 700;
  color: #ec008c;
}
.left-menu::before {
  content: "";
  position: absolute;
  top: 0;
  right: calc(100% - 15px);
  height: calc(100% - 11px);
  width: 9999px;
  background-color: #f9f9f9;
}

.right-content {
  padding-top: 4rem;
  padding-left: 5rem;
  padding-bottom: 5.3rem;
}
.right-content .h2,
.right-content h2 {
  color: #444444;
  margin-bottom: 25px;
}

.left-menu-mobile {
  background-color: #f9f9f9;
  border-bottom: 1px solid #ddd;
  padding-top: 15px;
  padding-bottom: 15px;
  display: block;
}
.left-menu-mobile .dropdown {
  color: #444444;
  font-size: 14px;
  font-weight: 400;
  width: 100%;
}
.left-menu-mobile .dropdown-toggle {
  border: 1px solid #e5e5e5;
  color: #444444;
  font-size: 14px;
  font-weight: 400;
  width: 100%;
}
.left-menu-mobile .dropdown-menu {
  top: 100%;
  border: 1px solid #e5e5e5;
  border-top: none;
}

.employee-list + .employee-list {
  margin-top: 35px;
}

.employee-items {
  display: flex;
  flex-wrap: wrap;
  margin-left: -16px;
  margin-right: -16px;
}

.employee-item {
  width: 100%;
  max-width: 286px;
  padding-left: 16px;
  padding-right: 16px;
}
.employee-item.director {
  padding-left: 0;
  padding-right: 0;
}
.employee-item-content {
  padding-bottom: 12px;
  padding-top: 12px;
  border-bottom: 1px dashed #cccccc;
  height: 100%;
}

.employee-name {
  color: #444444;
  font-size: 1.4rem;
  font-weight: 400;
}

.employee-job {
  color: #666666;
  font-size: 1.2rem;
}

@media (min-width: 576px) {
  .left-menu {
    display: block;
  }
  .left-menu-mobile {
    display: none;
  }
}
@media (max-width: 1429px) {
  .right-content {
    padding-top: 3.5rem;
    padding-left: 3rem;
  }
}
@media (max-width: 1199px) {
  .right-content {
    padding-top: 3rem;
    padding-left: 1rem;
  }
}
@media (max-width: 991px) {
  .right-content {
    padding-top: 2.5rem;
    padding-left: 0rem;
  }
  .left-menu {
    padding-right: 25px;
  }
  .employee-item {
    max-width: 240px;
  }
}
@media (max-width: 767px) {
  .right-content {
    padding-top: 2rem;
  }
  .left-menu {
    padding-left: 0px;
    padding-right: 15px;
  }
  .employee-item {
    max-width: 180px;
  }
}
@media (max-width: 575px) {
  .employee-item {
    max-width: unset;
  }
  .employee-name,
  .employee-name {
    font-size: 12px;
  }
}
/* END Sidebar Content */
/* News Item Big */
.news-item-big {
  padding-top: 5rem;
  padding-bottom: 5rem;
  border-bottom: 1px solid #dddddd;
}
.news-item-big-content {
  padding-right: 2rem;
}
@media (min-width: 1430px) {
  .news-item-big-content {
    padding-right: 14rem;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .news-item-big .h2,
  .news-item-big h2 {
    font-size: 28px;
  }
}
@media (max-width: 991px) {
  .news-item-big-img {
    order: 1;
  }
  .news-item-big-content {
    order: 2;
  }
}
@media (max-width: 575px) {
  .news-item-big {
    padding-top: 15px;
    padding-bottom: 23px;
  }
  .news-item-big .h2,
  .news-item-big h2 {
    font-size: 14px;
  }
}
/* END News Item Big */
/* News Detail */
.news-detail-txt {
  padding-top: 3rem;
}
.news-detail-head {
  padding-top: 3rem;
}
.news-detail .btn-link {
  margin-bottom: 3.5rem;
  display: inline-block;
  font-size: 1.5rem;
}
.news-detail .btn-link::after {
  top: 100%;
}
.news-detail h2,
.news-detail .h2 {
  font-weight: 800;
  line-height: 1.2;
}

@media (min-width: 768px) and (max-width: 1199px) {
  .news-detail h2,
  .news-detail .h2 {
    font-size: 2.6rem;
  }
}
@media (max-width: 991px) {
  .news-detail-txt {
    padding-top: 2.5rem;
  }
  .news-detail-head {
    padding-top: 2.5rem;
  }
  .news-detail .btn-link {
    margin-bottom: 2rem;
  }
}
@media (max-width: 575px) {
  .news-detail-txt {
    padding-top: 16px;
  }
  .news-detail-head {
    padding-top: 16px;
  }
  .news-detail .btn-link {
    margin-bottom: 16px;
  }
  .news-detail h2,
  .news-detail .h2 {
    font-size: 14px;
  }
  .news-detail p {
    font-size: 12px;
  }
}
/* END News Detail */
/* Program */
.filter {
  display: flex;
}
.filter .dropdown {
  margin-right: 2px;
}
.filter .dropdown-sm {
  min-width: 200px;
}
.filter-buttons {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
}
.filter-buttons-content {
  display: flex;
  height: 51px;
  border-top: 1px solid #dddddd;
}
.filter-buttons-content .btn {
  width: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
  border-radius: 0;
}
.filter-buttons-content .btn-filter-close {
  color: #666666;
  border-right: 1px solid #dddddd;
  background-color: #f9f9f9;
}
.filter-buttons-content .btn-filter-close:hover {
  background-color: #ffffff;
  color: #121212;
}
.filter-buttons-content .btn-filter-search {
  color: #ffffff;
  background-color: #ec008c;
}
.filter-buttons-content .btn-filter-search:hover {
  background-color: #121212;
}

@media (min-width: 575px) {
  .filter-buttons {
    position: relative;
    margin-left: 2px;
  }
  .filter-buttons-content {
    border-top: none;
    height: 50px;
  }
}
.performances .dropdown-menu {
  max-height: 400px;
  overflow: auto;
}

.btn-performances.show::after {
  transform: rotate(180deg);
}

.program-title .btn-filter {
  display: block;
}

.filter-heading {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #dddddd;
  align-items: center;
  background-color: #ffffff;
}
.filter-heading h4 {
  color: #444444 !important;
  font-size: 16px !important;
  font-weight: 800;
  padding-left: 15px !important;
  margin-bottom: 0;
}

.filter-close {
  display: block;
  padding: 17px 22px;
  padding-right: 23px;
  border-left: 1px solid #dddddd;
  box-sizing: border-box;
  cursor: pointer;
}
.filter-close i {
  color: #666666;
  font-size: 30px;
  text-transform: uppercase;
  transition: color 0.3s;
}
.filter-close:hover i {
  color: #ec008c;
}

@media (min-width: 576px) {
  .program-title .btn-filter {
    display: none;
  }
  .filter-heading {
    display: none;
  }
  .filter-buttons-content .btn-filter-close {
    background: none;
    color: #ec008c;
    border: none;
    order: 2;
    padding: 1.4rem 0;
  }
  .filter-buttons-content .btn-filter-close:hover {
    background: none;
    color: #ffffff;
  }
  .filter-buttons-content .btn-filter-search {
    order: 1;
    padding: 1.4rem 1.5rem;
    width: 20rem;
  }
}
@media (max-width: 1429px) {
  .program-title .container {
    flex-wrap: wrap;
  }
  .program-title .filter {
    margin-top: 2rem;
  }
}
@media (max-width: 1199px) {
  .performances .dropdown-toggle {
    min-width: 35rem;
  }
}
@media (max-width: 1199px) {
  .filter {
    flex-wrap: wrap;
    width: 100%;
  }
  .filter .date-range {
    width: calc(50% - 3px);
    margin-top: 2px;
  }
  .filter .date-range input {
    width: 100%;
  }
  .dropdown-light {
    width: calc(50% - 1px);
    margin-top: 2px;
  }
  .dropdown-light .dropdown-toggle {
    width: 100%;
    min-width: unset;
  }
  .performances {
    width: 100%;
  }
  .performances .dropdown-toggle {
    width: 100%;
    min-width: unset;
  }
  .filter-buttons {
    margin-left: 0;
    margin-top: 2px;
  }
}
@media (max-width: 767px) {
  .dropdown-light .dropdown-toggle {
    padding: 2rem 2.7rem;
  }
}
@media (max-width: 575px) {
  .filter {
    display: none;
    position: fixed;
    height: 100vh;
    top: 0;
    left: 0;
    right: 0;
    z-index: 501;
    background-color: #f9f9f9;
    padding-bottom: 70px;
  }
  .filter-buttons {
    margin-top: 0px;
  }
  .filter .dropdown {
    margin-right: 0;
  }
  .filter .date-range {
    width: 100%;
    clear: both;
    margin: 0;
    padding: 15px;
    background-color: #f9f9f9;
  }
  .filter .date-range::after {
    z-index: 3;
    right: 3.8rem;
    top: 3rem;
  }
  .filter .date-range input {
    background-color: #ffffff;
    color: #444444;
    font-size: 14px;
    font-weight: 400;
    padding: 1.75rem 2.7rem;
    border: 1px solid #dddddd;
  }
  .program-title {
    padding-top: 0;
    padding-bottom: 0;
  }
  .program-title .filter {
    margin: 0;
    padding: 0;
  }
  .btn-filter {
    padding-top: 22.5px;
    padding-bottom: 22.5px;
  }
  .performances {
    padding: 15px;
  }
  .performances-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    max-height: unset;
    height: 100vh;
    padding: 0;
    z-index: 1001;
  }
  .performances .performances-menu {
    max-height: unset;
    padding: 0;
    background-color: #f9f9f9;
  }
  .performances-items {
    padding: 15px;
  }
  .performances .dropdown-toggle {
    position: relative;
    font-size: 14px;
    padding: 2.2rem 2.7rem;
    padding-top: 2.3rem;
  }
  .performances .dropdown-toggle::after {
    top: 2rem;
  }
  .btn-places {
    display: none;
  }
  .btn-performances {
    border: 1px solid #dddddd !important;
  }
  .dropdown-places {
    position: relative;
    width: 100%;
    margin: 0;
  }
  .dropdown-places .places-menu {
    background-color: transparent;
    box-shadow: none;
  }
  .places-menu {
    display: block;
    position: relative;
    width: 100%;
    border-top: 1px solid #dddddd !important;
    border-bottom: 1px solid #dddddd !important;
  }
  .input-spinner .input-group {
    max-width: 205px;
    margin: 0 auto;
  }
  .performances-item {
    white-space: wrap;
  }
}
.bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
  width: unset;
  margin-right: 0;
}

.bootstrap-select {
  z-index: 100;
}
.bootstrap-select .btn {
  color: #444444;
  font-size: 1.4rem;
  font-weight: 400;
  padding: 1.8rem 2.7rem;
  min-width: 34rem;
  background-color: #ffffff;
  border-radius: 0;
  text-align: left;
  border: none;
  height: 5rem;
}
.bootstrap-select .dropdown-menu {
  padding-left: 0px;
  padding-right: 0px;
}
.bootstrap-select .dropdown-menu.inner {
  padding-left: 20px;
  padding-right: 20px;
}
.bootstrap-select .dropdown-menu .dropdown-item {
  border-bottom: 1px solid #eeeeee !important;
  outline: none;
}
.bootstrap-select .dropdown-item.active,
.bootstrap-select .dropdown-item:active {
  background-color: transparent;
  color: #ec008c;
}

@media (max-width: 1199px) {
  .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
    width: 100%;
  }
}
@media (max-width: 575px) {
  .bootstrap-select {
    z-index: 9999;
  }
  .bootstrap-select .btn {
    font-size: 14px;
    padding: 2.2rem 2.7rem;
    padding-top: 2.3rem;
    height: 50px;
    border: 1px solid #dddddd !important;
  }
}
/* END Program */
/* Program Box */
.program-box-inner {
  box-shadow: 0 3px 5px #d3d3d3;
  background-color: #ffffff;
  width: 100%;
  margin-bottom: 30px;
}
.program-box-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid #eeeeee;
}
.program-box-heading h2 {
  margin-bottom: 0;
  font-weight: 800;
}
.program-box-heading-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 2.9rem;
}
.program-box-heading-right {
  padding-right: 2.9rem;
}
.program-box-heading-right .btn {
  font-size: 1.4rem;
}
.program-box-name {
  display: flex;
  align-items: center;
}
.program-box-scene {
  margin-left: 2rem;
  padding-top: 0.3rem;
}
.program-box-content {
  display: flex;
}
.program-box-footer {
  padding-top: 2.5rem;
  padding-bottom: 2.7rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: 1px solid #eeeeee;
}
.program-box-date {
  color: #666666;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.2;
}
.program-box-img {
  padding: 30px;
  border-right: 0.1rem solid #eeeeee;
  flex-grow: 10;
  flex: 0 0 181px;
  max-width: 181px;
}
.program-box .program-item-small-col {
  margin-bottom: 0;
  padding: 1rem;
}
.program-box .program-items {
  width: calc(100% - 181px);
  height: 280px;
  max-height: 280px;
  overflow: hidden;
}

.program-items-inner {
  display: flex;
  flex-wrap: wrap;
  padding: 2rem;
}

.program-item-small {
  display: flex;
  flex-direction: column;
  border-radius: 0.8rem;
  background-color: #eeeeee;
  padding: 1.9rem 2rem;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  max-width: 220px;
}
.program-item-small-date {
  margin-bottom: 1.1rem;
  line-height: 1.3;
}
.program-item-small-tickets {
  line-height: 1.4;
  margin-bottom: 1.2rem;
}
.program-item-small-day {
  color: #444444;
  font-size: 1.2rem;
  font-weight: 400;
}
.program-item-small-time {
  color: #121212;
  font-size: 1.4rem;
}
.program-item-small-time strong {
  font-weight: 700;
}
.program-item-small-place {
  color: #444444;
  font-size: 1.2rem;
  font-weight: 400;
}
.program-item-small-show-name {
  color: #121212;
  margin-bottom: 0.5rem;
  min-height: 70px;
  font-weight: 700;
  font-size: 1.4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.program-item-small-show-name a {
  color: #121212;
}
.program-item-small .ticket-title {
  color: #666666;
  font-size: 1.2rem;
  font-weight: 400;
}
.program-item-small .ticket-number {
  color: #1d781d;
  font-weight: 700;
  font-size: 1.4rem;
}
.program-item-small .btn {
  padding-left: 1.9rem;
  padding-right: 1.9rem;
  font-size: 1.5rem;
  font-weight: 700;
}
.program-item-small-btn {
  margin-top: auto;
}
.program-item-small-hosted {
  color: #444444;
  font-size: 1.2rem;
  font-weight: 400;
}
.program-item-small.hosted .btn-primary {
  background: #444444;
}
.program-item-small.hosted .btn-primary:hover {
  background-color: #212529;
}

.program-item-small.dark {
  background-color: #000000;
}
.program-item-small.dark .program-item-small-day,
.program-item-small.dark .program-item-small-time,
.program-item-small.dark .ticket-title {
  color: #ffffff;
}

.program-box-img-organizer {
  color: #000;
  font-size: 1.2rem;
  display: block;
  margin-top: 0.5rem;
  font-weight: 400;
  width: 100%;
  text-align: center;
  line-height: 1.2;
}
.program-box-img-organizer span {
  font-weight: 600;
  display: block;
}

.program-img-organizer {
  color: #000;
  font-size: 1.2rem;
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 400;
  width: 100%;
  text-align: left;
  line-height: 1.2;
}
.program-img-organizer span {
  font-weight: 600;
}

@media (max-width: 767px) {
  .program-item-small-col {
    width: 100%;
  }
  .program-box .program-items {
    height: 334px;
    max-height: 334px;
  }
  .program-box-name {
    flex-direction: column;
    align-items: flex-start;
  }
  .program-box-scene {
    margin-left: 0;
  }
}
@media (max-width: 575px) {
  .program-box-img {
    padding: 15px;
    flex: 0 0 80px;
    max-width: 80px;
    border-right: 0;
  }
  .program-box-inner {
    margin-bottom: 15px;
  }
  .program-box .program-items {
    width: 100%;
  }
  .program-items-inner {
    padding: 15px;
    padding-left: 0;
  }
  .program-box .program-item-small-col {
    padding: 0;
    margin-bottom: 7px;
  }
  .program-box-date {
    font-size: 12px;
  }
  .program-box-heading h2 {
    font-size: 16px;
  }
  .program-box-heading-right .btn {
    font-size: 14px;
  }
  .program-item-small {
    padding: 15px;
    padding-top: 8px;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .program-item-small-date {
    width: 60%;
    text-align: left;
  }
  .program-item-small-tickets {
    width: 40%;
    text-align: right;
  }
  .program-item-small .btn {
    font-size: 13px;
    width: 100%;
  }
  .program-item-small-day {
    font-size: 10px;
  }
  .program-item-small-time {
    font-size: 12px;
  }
  .ticket-title {
    font-size: 10px;
  }
  .program-item-small .ticket-number {
    font-size: 12px;
  }
  .program-box .program-items {
    height: 226px;
    max-height: 226px;
  }
  .program-box-footer {
    padding-top: 13px;
    padding-bottom: 16px;
  }
  .program-box-footer .btn {
    font-size: 12px;
  }
}
/* END Program Box */
/* Detail Actor */
.detail-title {
  background-color: #121212;
}
.detail-title .container {
  display: flex;
}
.detail-img {
  flex: 0 0 338px;
  max-width: 338px;
  border-left: 1px solid #313131;
  border-right: 1px solid #313131;
}
.detail-txt {
  flex-grow: 2;
  padding-left: 8rem;
  padding-bottom: 4.3rem;
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  color: #fefefe;
}
.detail-txt h1 {
  color: #fefefe;
  font-size: 7.2rem;
  font-weight: 800;
  margin-bottom: 0;
}
.detail-txt p {
  color: #fefefe;
}
.detail-content {
  background-color: #eeeeee;
  overflow: hidden;
}
.detail-content .container {
  display: flex;
}
.detail-sidebar {
  flex: 0 0 338px;
  max-width: 338px;
  background-color: #f9f9f9;
  position: relative;
  padding-top: 3.5rem;
  border-right: 1px solid #dddddd;
}
.detail-sidebar::before {
  content: "";
  position: absolute;
  width: 9999px;
  right: 100%;
  height: 100%;
  top: 0;
  background-color: #f9f9f9;
}
.detail-sidebar h3 {
  color: #444444;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 2.5rem;
}
.detail-right {
  flex-grow: 2;
  padding-left: 8rem;
  padding-top: 3.6rem;
}
.detail-right h2,
.detail-right .h4 {
  font-size: 1.8rem;
  font-weight: 800;
  color: #444444;
  margin-bottom: 3rem;
}

.role-item {
  border-bottom: 1px dashed #eeeeee;
  padding-bottom: 1.5rem;
  margin-bottom: 2rem;
}
.role-item:last-child {
  border-bottom: none;
}
.role-movie {
  font-size: 1.4rem;
  color: #000000;
  margin-bottom: 0.3rem;
}
.role-character {
  font-weight: 400;
  font-size: 1.4rem;
}

.role-item.with-avatar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.role-item-avatar {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.role-item .avatar-item {
  display: block;
  border-radius: 50%;
  overflow: hidden;
  margin-left: 10px;
  width: 60px;
  height: 60px;
  flex: 0 0 60px;
  max-width: 60px;
  box-shadow: 0 3px 5px #d3d3d3;
}

.movie-item {
  box-shadow: none;
  background-color: transparent;
  border-bottom: 1px solid #cccccc;
  align-items: center;
  padding: 0;
  padding-bottom: 3rem;
}
.movie-item-col:last-of-type .movie-item {
  border-bottom: none;
}
.movie-item .program-img {
  width: 120px;
  box-shadow: 0 3px 5px #d3d3d3;
}
@media (min-width: 1200px) {
  .movie-item .program-img {
    margin-right: 33px;
  }
}
.movie-item h2 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 0;
  line-height: 1.2;
  color: #000000;
}
.movie-item h2 a {
  color: #000000;
}
.movie-item .program-movie {
  color: #444444;
  font-size: 1.4rem;
}

@media (max-width: 1529px) {
  .detail-txt {
    padding-bottom: 4rem;
  }
  .detail-txt h1 {
    font-size: 6.6rem;
  }
  .detail-right,
  .detail-txt {
    padding-left: 7rem;
  }
  .detail-img,
  .detail-sidebar {
    flex: 0 0 315px;
    max-width: 315px;
  }
}
@media (max-width: 1429px) {
  .movie-item {
    flex-wrap: nowrap;
  }
  .detail-txt h1 {
    font-size: 6.2rem;
  }
  .detail-right,
  .detail-txt {
    padding-left: 6rem;
  }
  .detail-img,
  .detail-sidebar {
    flex: 0 0 300px;
    max-width: 300px;
  }
  .detail-txt {
    padding-bottom: 3.7rem;
  }
}
@media (max-width: 1199px) {
  .detail-txt {
    padding-bottom: 3.2rem;
  }
  .detail-txt h1 {
    font-size: 5.4rem;
  }
  .detail-right,
  .detail-txt {
    padding-left: 5rem;
  }
  .movie-item .program-buttons .btn-link {
    margin-left: 1.5rem;
  }
  .detail-img,
  .detail-sidebar {
    flex: 0 0 280px;
    max-width: 280px;
  }
}
@media (max-width: 991px) {
  .detail-txt {
    padding-bottom: 2.8rem;
  }
  .detail-txt h1 {
    font-size: 4.8rem;
  }
  .detail-right,
  .detail-txt {
    padding-left: 3.5rem;
  }
  .movie-item .program-buttons {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .movie-item .program-buttons .btn-link {
    margin-left: 0;
    margin-bottom: 1.5rem;
    order: 1;
  }
  .movie-item .program-buttons .btn-primary {
    order: 2;
  }
  .detail-img,
  .detail-sidebar {
    flex: 0 0 250px;
    max-width: 250px;
  }
}
@media (max-width: 767px) {
  .detail-txt {
    padding-bottom: 2.2rem;
  }
  .detail-txt h1 {
    font-size: 4.2rem;
  }
  .detail-img,
  .detail-sidebar {
    flex: 0 0 180px;
    max-width: 180px;
  }
  .movie-item .program-img {
    flex: 0 0 75px;
    max-width: 75px;
  }
  .detail-right .program-content {
    width: 100%;
  }
}
@media (max-width: 575px) {
  .detail-title .container {
    padding-left: 0;
    padding-right: 0;
  }
  .detail-img {
    flex: 0 0 148px;
    max-width: 148px;
    border-left: none;
    border-right: none;
  }
  .detail-txt {
    padding-left: 25px;
  }
  .detail-txt h1 {
    font-size: 24px;
  }
  .detail-right {
    order: 1;
    width: 100%;
    padding: 0;
    padding-top: 12px;
  }
  .detail-content .container {
    display: flex;
    flex-direction: column;
  }
  .detail-sidebar {
    width: calc(100% + 30px);
    margin-left: -15px;
    margin-right: -15px;
    padding-left: 15px;
    padding-right: 15px;
    flex: none;
    max-width: unset;
    order: 2;
  }
  .detail-sidebar::before {
    display: none;
  }
  .movie-item {
    padding-bottom: 15px;
  }
  .movie-item .program-buttons {
    position: static;
  }
  .movie-item h2 {
    font-size: 18px;
  }
  .movie-item .program-movie {
    font-size: 12px;
  }
  .detail-right .program-buttons .btn {
    font-size: 15px;
  }
  .detail-right .h4 {
    margin-bottom: 13px;
  }
  .detail-sidebar {
    padding-top: 2rem;
    padding-bottom: 0.5rem;
  }
  .detail-sidebar h3 {
    font-size: 14px;
    margin-bottom: 2.2rem;
  }
  .role-item {
    border-bottom: none;
  }
  .role-movie,
  .role-character {
    font-size: 14px;
  }
}
/* END Detail Actor */
/* Repertoar Title */
.bottom-shadow {
  position: absolute;
  width: 100%;
  height: 66.67%;
  bottom: 0;
  background-image: linear-gradient(to top, #000000 0%, rgba(0, 0, 0, 0) 100%);
}

.right-shadow {
  position: absolute;
  top: 0;
  width: 15%;
  right: 0;
  height: 100%;
  background-image: linear-gradient(270deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
}

.left-shadow {
  position: absolute;
  top: 0;
  left: 0;
  width: 15%;
  height: 100%;
  background-image: linear-gradient(to right, #000000 0%, rgba(0, 0, 0, 0) 100%);
}

.repertoar-title {
  background-color: #000000;
  position: relative;
}

.repertoar-img {
  position: relative;
}
.repertoar-caption {
  position: absolute;
  bottom: 6rem;
  left: 0;
  right: 0;
}
.repertoar-caption-inner {
  display: flex;
  flex-wrap: wrap;
}
.repertoar-caption-img {
  margin-right: 5rem;
}
.repertoar-caption-txt h1 {
  color: #ffffff;
  font-size: 5.3rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.repertoar-caption-txt p {
  color: #ffffff;
  font-size: 1.3rem;
  line-height: 1.62;
  font-weight: 400;
  max-width: 590px;
}
.repertoar-tag {
  color: #ec008c;
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1.7rem;
}
.repertoar-tag i {
  font-size: 2rem;
  margin-right: 6px;
}

.repertoar-row {
  margin-bottom: 2rem;
}

.price-item {
  border-radius: 8px;
  border: 1px solid #313131;
  background-color: #121212;
  padding: 2.5rem;
  padding-top: 3rem;
  text-align: center;
  max-width: 30rem;
}
.price-item-col {
  display: flex;
  align-items: center;
}
.price-item-txt {
  font-weight: 800;
  line-height: 1.2;
  color: #d0d0d0;
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 2.5rem;
}
.price-item-txt strong {
  font-size: 2.1rem;
  color: #ffffff;
}

@media (max-width: 1529px) {
  .repertoar-caption {
    bottom: 5.5rem;
  }
  .repertoar-caption-img {
    margin-right: 4.6rem;
  }
  .repertoar-caption-txt h1 {
    font-size: 4.8rem;
  }
  .repertoar-tag {
    margin-bottom: 1.5rem;
  }
}
@media (max-width: 1429px) {
  .repertoar-caption {
    bottom: 5rem;
  }
  .repertoar-caption-img {
    margin-right: 4.2rem;
  }
  .repertoar-caption-txt h1 {
    font-size: 4.4rem;
  }
  .repertoar-tag {
    margin-bottom: 1.3rem;
  }
  .repertoar-tag i {
    margin-right: 5px;
  }
}
@media (max-width: 1199px) {
  .repertoar-caption {
    bottom: 2rem;
  }
  .repertoar-caption-img {
    margin-right: 3.5rem;
  }
  .repertoar-caption-txt h1 {
    font-size: 3.6rem;
  }
  .price-item {
    padding: 1.5rem;
  }
  .price-item .btn {
    font-size: 1.3rem;
  }
}
@media (max-width: 991px) {
  .repertoar-title > .container {
    max-width: 100%;
    overflow: hidden;
  }
  .repertoar-img {
    width: 100vw;
  }
  .repertoar-img img {
    width: 930px;
    max-width: unset;
  }
  .repertoar-caption {
    bottom: 0rem;
  }
  .repertoar-caption-img {
    margin-right: 2.5rem;
    flex: 0 0 95px;
    max-width: 95px;
  }
  .repertoar-caption-txt h1 {
    font-size: 2.6rem;
  }
}
@media (max-width: 767px) {
  .repertoar-img img {
    width: 700px;
    max-width: unset;
  }
  .repertoar-caption {
    bottom: 0;
  }
  .repertoar-caption-img {
    margin-right: 2rem;
    flex: 0 0 70px;
    max-width: 70px;
  }
  .repertoar-caption-txt h1 {
    font-size: 2.4rem;
  }
  .repertoar-caption-col {
    padding-right: 0;
  }
  .price-item .btn {
    padding: 0.9rem 1.4rem;
  }
  .price-item-txt {
    margin-bottom: 1rem;
  }
}
@media (max-width: 575px) {
  .repertoar-title > .container {
    padding-left: 0;
    padding-right: 0;
  }
  .repertoar-tag {
    font-size: 10px;
    margin-bottom: 3px;
  }
  .repertoar-tag i {
    font-size: 15px;
    margin-right: 4px;
  }
  .repertoar-img img {
    width: 1079px;
    max-width: unset;
    margin-left: 50%;
    transform: translateX(-50%);
  }
  .repertoar-caption {
    bottom: 15px;
  }
  .repertoar-caption-img {
    margin-right: 11px;
    flex: 0 0 80px;
    max-width: 80px;
  }
  .repertoar-caption-txt {
    width: calc(100% - 91px);
  }
  .repertoar-caption-txt h1 {
    font-size: 18px;
  }
  .repertoar-caption-txt p {
    font-size: 12px;
    line-height: 1.33;
  }
  .repertoar-caption-col {
    padding-right: 15px;
  }
  .price-item {
    width: 100%;
    max-width: unset;
    display: flex;
    flex-wrap: nowrap;
  }
  .price-item .btn {
    width: 50%;
    padding: 11px 8px;
    font-size: 14px;
  }
  .price-item-txt {
    width: 50%;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
  }
  .price-item-txt strong {
    margin-left: 5px;
    font-size: 18px;
  }
  .bottom-shadow {
    height: 400px;
  }
}
/* END Repertoar Title */
/* Program Slider */
.program-slider {
  background-color: #f9f9f9;
  border-bottom: 1px solid #dddddd;
  padding-top: 25px;
  padding-bottom: 7px;
}
.program-slider .heading-small {
  margin-bottom: 0;
}
.program-slider .heading-small h2 {
  max-width: calc(100% - 140px);
}
.program-slider .heading-small .btn-link {
  margin-left: 10px;
}
.program-slider.detail-program-slider {
  padding-bottom: 20px;
}
.program-slider.detail-program-slider .heading-small h2 {
  max-width: calc(100% - 180px);
}

.program-slider-inner {
  margin-left: -10px;
  margin-right: -10px;
  padding: 18px 0px;
}
.program-slider-inner .slick-list {
  width: 100%;
}
.program-slider-inner .slick-list .slick-track {
  min-width: 100%;
  display: flex !important;
}
.program-slider-inner .slick-list .slick-slide {
  height: auto;
}
.program-slider-inner .slick-arrow.fa-chevron-left {
  left: -50px;
}
.program-slider-inner .slick-arrow.fa-chevron-right {
  right: -50px;
}
.program-slider-inner .slick-arrow {
  transition: all 0.3s;
}
.program-slider-inner .slick-arrow:hover {
  color: #ec008c;
  opacity: 0.5;
}
.program-slider-inner .slick-disabled {
  color: #d7d7d7;
}
.program-slider-inner .slick-disabled:hover {
  color: #d7d7d7;
}
.program-slider-inner .program-item-small-col {
  padding-left: 10px;
  padding-right: 10px;
  display: flex;
  justify-content: center;
  outline: none;
}
.program-slider-inner .program-item-small {
  width: 100%;
  max-width: 100%;
}
.program-slider-inner .program-item-small .btn {
  padding-left: 1.3rem;
  padding-right: 1.3rem;
}
.program-slider-inner .repertoar-tag {
  color: #b140a9;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  font-weight: 400;
  text-transform: none;
}

@media (max-width: 1569px) {
  .program-slider-inner .slick-arrow.fa-chevron-left {
    left: -25px;
  }
  .program-slider-inner .slick-arrow.fa-chevron-right {
    right: -25px;
  }
}
@media (max-width: 991px) {
  .program-slider-inner .slick-arrow.fa-chevron-left {
    display: none !important;
  }
  .program-slider-inner .slick-arrow.fa-chevron-right {
    display: none !important;
  }
}
@media (max-width: 575px) {
  .program-slider-inner .program-item-small-col {
    padding-left: 5px;
    padding-right: 5px;
  }
  .program-slider-inner .program-box-date {
    font-size: 14px;
  }
  .program-slider-inner .program-item-small {
    padding: 12px 13px;
    padding-bottom: 19px;
    flex-direction: column;
    flex-wrap: wrap;
  }
  .program-slider-inner .program-item-small-show-name {
    font-size: 12px;
  }
  .program-slider-inner .program-item-small-date {
    width: 100%;
    text-align: center;
  }
  .program-slider-inner .program-item-small-tickets {
    width: 100%;
    text-align: center;
  }
  .program-slider-inner .program-item-small-btn {
    width: 100%;
  }
  .program-slider-inner .program-item-small .btn {
    font-size: 13px;
    padding-left: 5px;
    padding-right: 5px;
    width: 100%;
  }
  .program-slider-inner .program-item-small-day {
    font-size: 12px;
  }
  .program-slider-inner .ticket-title {
    font-size: 12px;
  }
  .program-slider-inner .program-item-small .ticket-number {
    font-size: 14px;
  }
}
/* END Program Slider */
/* Performance Info */
.repertoar-content .detail-sidebar {
  padding-right: 5.3rem;
}
.repertoar-content .detail-right {
  padding-bottom: 7.5rem;
}
.repertoar-content .detail-right p {
  color: #444444;
  line-height: 1.71;
  font-size: 1.4rem;
}

.per-info {
  list-style: none;
  padding: 0;
  margin: 0;
}

.per-info-item {
  display: flex;
  align-items: center;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.per-info-ico {
  border-radius: 50%;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  max-width: 30px;
  background-color: #ec008c;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.8rem;
  text-transform: uppercase;
  margin-right: 20px;
}
.per-info-ico-txt {
  font-size: 1.2rem;
  font-weight: 600;
  text-align: center;
  padding-left: 4px;
}

.per-info-txt {
  display: flex;
  flex-direction: column;
  color: #111111;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.1;
}
.per-info-txt small {
  font-size: 1.2rem;
  color: #444444;
}

/* END Performance Info */
/* Performance When */
.per-when {
  list-style: none;
  padding: 0;
  margin: 0;
}
.per-when-item {
  display: flex;
  justify-content: space-between;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.per-when-name {
  color: #444444;
  font-size: 1.4rem;
  font-weight: 400;
}
.per-when-date {
  color: #666666;
  font-size: 1.2rem;
  font-weight: 400;
}

/* END Performance When */
/* Media Item */
.media-items {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: flex-start;
}

.media-item {
  max-width: 288px;
  margin-bottom: 35px;
}
.media-item .link-arrow {
  margin-top: 17px;
}
.media-item-img {
  display: block;
  position: relative;
  overflow: hidden;
}
.media-item-img img {
  transform: scale(1);
  transition: all 0.3s;
}
.media-item-img:hover img {
  transform: scale(1.1);
}

.media-ico {
  position: absolute;
  right: 21px;
  bottom: 17px;
}
.media-ico i {
  color: #ffffff;
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1.2;
}

@media (min-width: 1200px) {
  .repertoar-videoList {
    margin: 0 -1rem;
  }
  .repertoar-videoList .media-items {
    flex-direction: row;
  }
  .repertoar-videoList .media-item {
    width: 33.33%;
    padding: 0 1rem;
  }
}
/* END Media Item */
/* Section Dropdown */
.section-content {
  display: none;
}
.section-content-inner {
  display: flex;
  padding-top: 3rem;
}
.section-content h3 {
  color: #444444;
  font-size: 1.4rem;
  font-weight: 700;
}

.section-left {
  border-right: 1px solid #cccccc;
  width: 65%;
  flex: 0 0 65%;
  max-width: 65%;
  box-sizing: border-box;
  padding-right: 7.5rem;
}
.section-left .role-item {
  border-bottom: 1px dotted #cccccc;
}

.section-right {
  width: 35%;
  flex: 0 0 35%;
  max-width: 35%;
  box-sizing: border-box;
  padding-left: 7.5rem;
}
.section-right .employee-items {
  flex-direction: column;
}
.section-right .employee-item {
  max-width: unset;
}
.section-right .employee-item-content {
  border-bottom: 1px dotted #cccccc;
}

/* END Section Dropdown */
.repertoar-caption-organizer {
  color: #fff;
  font-size: 1.4rem;
  display: block;
  margin-top: 2rem;
  margin-bottom: -2rem;
  font-weight: 400;
  width: 100%;
}
.repertoar-caption-organizer span {
  font-weight: 600;
}

@media (max-width: 1199px) {
  .repertoar-caption-organizer {
    margin-bottom: 2rem;
  }
}
/* Repertoar content responsive */
.repertoar-content .role-item:last-child {
  border-bottom: none;
}
.repertoar-content .employee-item:last-child .employee-item-content {
  border-bottom: none;
}

@media (max-width: 1529px) {
  .repertoar-content .detail-right {
    padding-left: 5.5rem;
  }
  .section-left {
    padding-right: 6.5rem;
  }
  .section-right {
    padding-left: 6.5rem;
  }
}
@media (max-width: 1429px) {
  .repertoar-content .detail-right {
    padding-left: 3rem;
  }
  .repertoar-content .detail-sidebar {
    padding-right: 3rem;
  }
  .section-left {
    padding-right: 5.5rem;
  }
  .section-right {
    padding-left: 5.5rem;
  }
}
@media (max-width: 1199px) {
  .repertoar-content .detail-right {
    padding-left: 2rem;
  }
  .repertoar-content .detail-sidebar {
    padding-right: 2rem;
  }
  .repertoar-content .media-items {
    flex-direction: row;
    margin-top: 3rem;
  }
  .repertoar-content .media-item {
    margin-right: 1.5rem;
    margin-bottom: 25px;
  }
  .repertoar-content .per-info-ico {
    margin-right: 10px;
  }
  .section-left {
    padding-right: 3.5rem;
  }
  .section-right {
    padding-left: 3.5rem;
  }
  .repertoar-content .role-item-avatar {
    flex-grow: 2;
    min-width: 150px;
  }
  .repertoar-content .role-item .avatar-item {
    margin-left: 5px;
    margin-top: 2px;
    margin-bottom: 2px;
    width: 50px;
    height: 50px;
    flex: 0 0 50px;
    max-width: 50px;
  }
}
@media (max-width: 991px) {
  .media-items {
    margin-top: 0 !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .repertoar-txt-col {
    order: 2;
  }
  .media-item {
    width: calc(50% - 30px);
    margin-bottom: 15px;
    margin-left: 15px;
    margin-right: 15px;
  }
  .section-left {
    padding-right: 2rem;
  }
  .section-right {
    padding-left: 2rem;
  }
  .repertoar-content .role-item {
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
  }
  .repertoar-content .role-item .avatar-item {
    margin-left: 5px;
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    max-width: 40px;
  }
  .repertoar-content .role-movie {
    font-size: 12px;
  }
  .repertoar-content .role-character {
    font-size: 12px;
  }
  .repertoar-content .employee-job {
    font-size: 11px;
  }
  .repertoar-content .employee-name {
    font-size: 12px;
  }
  .repertoar-content .employee-item-content {
    padding-bottom: 10px;
    padding-top: 10px;
  }
}
@media (max-width: 767px) {
  .repertoar-content .detail-right {
    padding-left: 2rem;
  }
  .repertoar-content .detail-sidebar {
    padding-right: 2rem;
  }
  .repertoar-content .media-items {
    padding-left: 10px;
    padding-right: 10px;
  }
  .repertoar-content .media-item {
    width: calc(50% - 10px);
    margin-bottom: 15px;
    margin-left: 5px;
    margin-right: 5px;
  }
  .repertoar-content .media-item .link-arrow {
    margin-top: 7px;
  }
  .repertoar-content .per-info-ico {
    margin-right: 10px;
  }
  .section-content-inner {
    flex-wrap: wrap;
  }
  .media-item {
    width: 100%;
    margin-bottom: 15px;
    margin-left: 0;
    margin-right: 0;
  }
  .section-left {
    padding-right: 0;
    width: 100%;
    flex: 0 0 100%;
    max-width: 100%;
    border-right: none;
  }
  .section-right {
    padding-left: 0;
    width: 100%;
    flex: 0 0 100%;
    max-width: 100%;
    margin-top: 2rem;
  }
}
@media (max-width: 575px) {
  .repertoar-content .detail-right {
    padding-left: 0;
    order: 2;
  }
  .repertoar-content .detail-right h2,
  .repertoar-content .detail-right .h4 {
    font-size: 14px;
    margin-bottom: 10px;
  }
  .repertoar-content .detail-right p {
    font-size: 12px;
  }
  .repertoar-content .detail-sidebar {
    padding-right: 15px;
    order: 1;
    padding-bottom: 15px;
    margin-bottom: 10px;
    box-shadow: 0 1px 0 #dddddd;
  }
  .repertoar-content .per-info {
    display: flex;
    flex-wrap: wrap;
  }
  .repertoar-content .per-info-txt {
    font-size: 12px;
  }
  .repertoar-content .per-info-txt small {
    font-size: 12px;
  }
  .repertoar-content .per-info-ico {
    font-size: 18px;
  }
  .repertoar-content .per-info-ico-txt {
    font-size: 12px;
  }
  .repertoar-content .per-info-item {
    width: 50%;
    box-sizing: border-box;
    padding-right: 20px;
  }
  .repertoar-content .per-when-item {
    padding-top: 6px;
    padding-bottom: 6px;
  }
  .repertoar-content .per-when-name {
    font-size: 12px;
  }
  .repertoar-content .per-when-date {
    font-size: 12px;
  }
  .repertoar-content .media-items {
    padding-left: 7px;
    padding-right: 7px;
  }
  .repertoar-content .media-item {
    width: calc(50% - 16px);
    margin-right: 0;
    margin-bottom: 15px;
    margin-left: 8px;
    margin-right: 8px;
  }
  .repertoar-content .media-item .link-arrow {
    margin-top: 7px;
  }
  .repertoar-content .repertoar-txt-col {
    margin-top: 13px;
  }
  .section-left {
    border-bottom: 1px solid #cccccc;
  }
  .btn-section {
    font-size: 14px;
    padding: 13px 0;
  }
  .btn-section::after {
    top: 1.8rem;
  }
  .section-content h3 {
    font-size: 14px;
  }
  .repertoar-content .role-item .avatar-item {
    width: 60px;
    height: 60px;
    flex: 0 0 60px;
    max-width: 60px;
  }
  .repertoar-content .detail-right {
    padding-bottom: 30px;
  }
}
/* END Repertoar content responsive */
/* Error 404 */
.error-content {
  background: #000 url("../images/gradient-bg.jpg") no-repeat top center;
  width: 100%;
  height: 100vh;
}
.error-content h1 {
  color: #ec008c;
  font-size: 150px;
  font-weight: 900;
}
.error-content p {
  color: #ffffff;
  font-size: 1.6rem;
  font-weight: 400;
  max-width: 520px;
}
.error-content a {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 600;
  transition: color 0.3s;
}
.error-content a:hover {
  color: #ec008c;
}
.error-content .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 100%;
}

@media (max-width: 1529px) {
  .error-content h1 {
    font-size: 130px;
  }
}
@media (max-width: 1429px) {
  .error-content h1 {
    font-size: 120px;
  }
}
@media (max-width: 1199px) {
  .error-content h1 {
    font-size: 100px;
  }
}
@media (max-width: 991px) {
  .error-content h1 {
    font-size: 85px;
  }
}
@media (max-width: 767px) {
  .error-content h1 {
    font-size: 70px;
  }
}
/* END Error 404 */
/* Repertoar List */
.repertoar-list-title {
  background: url("../images/repertoar-list-title.jpg") no-repeat top center;
  height: 250px;
  position: relative;
  padding-bottom: 5.1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.repertoar-list-title h1 {
  color: #fefefe;
  font-size: 5.3rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0;
}
.repertoar-list-top {
  text-align: center;
}
.repertoar-list-links {
  border-top: 1px solid #313131;
  border-bottom: 1px solid #313131;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  position: absolute;
  bottom: 0;
  width: 100%;
}
.repertoar-list-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  margin-left: -12px;
  margin-right: -12px;
}
.repertoar-list-links ul li {
  padding-left: 12px;
  padding-right: 12px;
}
.repertoar-list-links ul li.active a::after {
  left: 0;
  right: 0;
  opacity: 1;
}
.repertoar-list-links ul li a {
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: 700;
  position: relative;
}
.repertoar-list-links ul li a::after {
  position: absolute;
  content: "";
  left: 50%;
  right: 50%;
  opacity: 0;
  top: 100%;
  height: 4px;
  background-color: #ec008c;
  transition: all 0.3s;
}
.repertoar-list-links ul li a:hover::after {
  left: 0;
  right: 0;
  opacity: 1;
}

.program-repertoar {
  padding-bottom: 5rem;
}

@media (max-width: 1429px) {
  .repertoar-list-title {
    height: 230px;
    background-size: auto 230px;
  }
  .repertoar-list-title h1 {
    font-size: 4.8rem;
  }
}
@media (max-width: 1199px) {
  .repertoar-list-title {
    height: 200px;
    background-size: auto 200px;
  }
  .repertoar-list-title h1 {
    font-size: 4.2rem;
  }
}
@media (max-width: 991px) {
  .repertoar-list-title {
    height: 175px;
    background-size: auto 175px;
  }
  .repertoar-list-title h1 {
    font-size: 3.8rem;
  }
}
@media (max-width: 767px) {
  .repertoar-list-title {
    height: 150px;
    background-size: auto 150px;
  }
  .repertoar-list-title h1 {
    font-size: 3.6rem;
  }
  .repertoar-list-links {
    flex-wrap: wrap;
  }
  .repertoar-list-links ul {
    margin-left: -6px;
    margin-right: -6px;
  }
  .repertoar-list-links ul li {
    padding-left: 6px;
    padding-right: 6px;
  }
  .repertoar-list-links ul li a::after {
    height: 3px;
  }
}
/* END Repertoar List */
/* modal */
.modal-content {
  border: none;
  box-shadow: 0 0.3rem 0.5rem rgba(0, 0, 0, 0.1);
}
.modal-header {
  padding: 3rem 4.2rem;
}
.modal-body {
  padding: 3rem 4.2rem;
}

@media (max-width: 767px) {
  .modal-header {
    padding: 2rem 2rem;
  }
  .modal-body {
    padding: 2rem 2rem;
  }
}
/* end modal */
/* gallery */
.gallery-list {
  margin-top: 3rem;
}
.gallery-item-col {
  margin-bottom: 3rem;
}
@media (min-width: 1300px) {
  .gallery-item-col {
    flex: 0 0 20%;
    max-width: 20%;
  }
}

/* end gallery */
.bottom-30 {
  margin-bottom: 30px;
}

/* program-dle-datu */
/* TODO */
/* end program-dle-datu */
.white-bg {
  padding-top: 4rem;
  padding-bottom: 8rem;
}

@media (max-width: 575px) {
  .white-bg {
    padding-top: 16px;
    padding-bottom: 23px;
  }
}
.voucher-list {
  margin-bottom: 30px;
}

.voucher-item {
  display: flex;
  flex-direction: column;
  border-radius: 0.8rem;
  background-color: #eeeeee;
  padding: 1.9rem 2rem;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
  margin-bottom: 20px;
}
.voucher-item-col {
  display: flex;
}
.voucher-item-name {
  color: #121212;
  font-weight: bold;
  margin-bottom: 2rem;
}
.voucher-item-name span {
  display: block;
}
.voucher-item .btn {
  margin-top: auto;
}

.login-btn {
  display: inline-block;
  background: #ec008c;
  border: 1px solid #ec008c;
  transition: all 0.2s ease-out;
  padding: 8px 14px;
  color: #fff !important;
  border-radius: 0;
  font-size: 1.6rem;
}
.login-btn:hover {
  background: #dd0083 !important;
}

@media (max-width: 1199px) {
  .login-btn {
    font-size: 1rem !important;
  }
}
@media (max-width: 575px) {
  .login-btn {
    padding: 6px 10px;
  }
}
.competition-item {
  margin-bottom: 15rem;
}

.competition-img {
  margin-bottom: 2rem;
  max-width: 30rem;
}

/*  cookies */
.show--consent:after {
  content: "";
  display: block;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000;
  position: fixed;
  opacity: 0.5;
  z-index: 100;
}

#cm.box.center {
  bottom: 10%;
}

#c-p-bn {
  flex: 1 1 100%;
  background-color: #ec008c !important;
  margin-bottom: 10px;
}

.cc_div #c-bns {
  flex-wrap: wrap;
}

.cc_div #c-bns button {
  margin: 5px;
  padding: 15px 15px;
}

.cc_div #c-bns .cc-link {
  flex: 1;
}

.cookie-link {
  background: none;
  border: none;
  padding: 0;
  color: #121212;
}

#c-bns button:first-child,
#s-bns button:first-child {
  background: #ec008c;
}

#c-bns button:first-child:hover,
#s-bns button:first-child:hover {
  background: #ec008c;
}

.cc_div .c-bn {
  background: #f3f3f4;
}

#s-bl .c-bl.b-ex {
  background: #f3f3f4;
}

.cc_div .b-tg .c-tgl:checked ~ .c-tg {
  background: #34d762;
}

.cookie-page h2 {
  margin-bottom: 30px;
  margin-top: 30px;
}

.cookie-page h4 {
  font-weight: 600;
  margin-top: 10px;
  margin-bottom: 20px;
}

#s-bns #s-sv-bn {
  background: #ec008c;
  color: #fff;
}

#s-bns #s-all-bn {
  background: #f3f3f4;
  color: #40505a;
}
#s-bns #s-all-bn:hover {
  background: #d8e0e6;
}

.cc_div .b-tg .c-tgl ~ .c-tg.c-ro {
  opacity: 0.3;
}

.cookie-table {
  margin-bottom: 30px;
}
.cookie-table table {
  width: 100%;
}
.cookie-table table td {
  padding: 10px;
  width: 25%;
  border-bottom: 1px solid #f3f3f4;
}
.cookie-table table th {
  background: #f3f3f4;
  padding: 10px;
}

.cookie-page {
  margin-top: 30px;
}
.cookie-page h4 {
  margin-bottom: 30px;
}

.cookie-btn-wrap {
  margin-top: 40px;
  margin-bottom: 40px;
}

@media (max-width: 767px) {
  #cm,
  #cm.cloud,
  #cm.left,
  #cm.right {
    padding: 10px !important;
  }
  #c-txt {
    font-size: 10px;
  }
  .cc_div #c-bns {
    margin-top: 10px;
  }
  .cc_div .c-bn {
    padding: 8px 10px;
  }
  .cc_div #c-bns button {
    margin: 2px;
  }
  #cm.box,
  #cm.cloud {
    left: 10px;
    right: 10px;
  }
  #cm.bottom {
    bottom: 10px;
  }
}
.program-small-scene .btn-link {
  color: #17a2b8;
}
.program-small-scene .btn-link::after {
  background-color: #17a2b8;
}
.program-small-scene .btn-primary {
  background: #17a2b8;
}
.program-small-scene .btn-primary:hover {
  background-color: #212529;
}
.program-small-scene .slick-arrow {
  color: #17a2b8;
}
.program-small-scene .program-slider-inner .slick-arrow:hover {
  color: #17a2b8;
  opacity: 0.5;
}

.program-items-hp .program-item-small-show-name {
  min-height: 60px;
}
.program-items-hp .program-item-small-tickets {
  display: flex;
  align-items: center;
  justify-content: center;
}
.program-items-hp .program-item-small-tickets .ticket-title {
  margin-right: 0.5rem;
}
.program-items-hp .program-item-date-full {
  display: flex;
  align-items: center;
  justify-content: center;
}
.program-items-hp .program-item-date-full .program-item-small-day {
  margin-right: 0.5rem;
}

.program-beetlejuice {
  background: url("./../images/beetle-slider.jpg");
  background-size: cover;
}
.program-beetlejuice .btn-link {
  color: #00D808;
}
.program-beetlejuice .heading-small h2 a {
  color: #fff;
}
.program-beetlejuice .slick-arrow {
  color: #00D808;
}
.program-beetlejuice .btn-primary {
  background: #00D808;
  color: #121212;
}
.program-beetlejuice .program-item-small {
  background: #002601;
}
.program-beetlejuice .program-item-small-show-name {
  display: none;
}
.program-beetlejuice .program-item-small-day {
  color: #00D808;
}
.program-beetlejuice .program-item-small-time {
  color: #fff;
}
.program-beetlejuice .program-item-small .ticket-title {
  color: #00D808;
}
.program-beetlejuice .program-item-small .ticket-number {
  color: #fff;
}

.repertoar-title-beetle {
  display: flex;
  justify-content: center;
}

.beetlejuice-text-section {
  font-family: "minion-pro", serif;
  padding-top: 80px;
  font-size: 30px;
}
.beetlejuice-text-perex {
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 80px;
  font-weight: 700;
}
.beetlejuice-text-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 100px;
}
.beetlejuice-text-row p {
  margin: 0;
}
.beetlejuice-text-text {
  width: 50%;
  max-width: 725px;
  padding-right: 50px;
}
.beetlejuice-text-img {
  max-width: 675px;
}
.beetlejuice-text-img img {
  max-width: 100%;
}
.beetlejuice-text-img + .beetlejuice-text-text {
  padding-left: 50px;
  padding-right: 0;
}
.beetlejuice-dark {
  background: url("./../images/beetle-text-bg.jpg");
  background-size: cover;
  padding: 100px 0;
  margin-bottom: 100px;
}
.beetlejuice-dark .beetlejuice-text-row {
  margin-bottom: 0;
}
.beetlejuice-dark .beetlejuice-text-text {
  color: #fff;
}

@media (max-width: 1429px) {
  .beetlejuice-text-section {
    font-size: 24px;
  }
  .beetlejuice-text-img {
    width: 40%;
  }
  .beetlejuice-text-text {
    width: 60%;
  }
}
@media (max-width: 991px) {
  .beetlejuice-text-section {
    font-size: 20px;
    padding-top: 30px;
  }
  .beetlejuice-text-perex {
    margin-bottom: 30px;
  }
  .beetlejuice-text-row {
    flex-direction: column;
    align-items: center;
    margin-bottom: 50px;
  }
  .beetlejuice-text-img {
    width: 100%;
    order: 2;
  }
  .beetlejuice-text-text {
    width: 100%;
    padding: 0 !important;
    order: 1;
    margin-bottom: 20px;
  }
  .beetlejuice-dark {
    padding-top: 30px;
    padding-bottom: 50px;
    margin-bottom: 30px;
  }
}
.locked-bg {
  background: url("./../images/beetlejuice-white-bg.png") no-repeat;
  background-size: cover;
  font-family: "minion-pro", serif;
}

.locked-dark-line {
  background: url("./../images/beetlejuice-dark-line.jpg") no-repeat center;
  min-height: 230px;
  background-size: 100% 100%;
  color: #fff;
  text-transform: uppercase;
  display: flex;
  align-items: center;
}
.locked-dark-line h3, .locked-dark-line h4, .locked-dark-line p {
  color: #fff;
}
.locked-dark-line-top {
  height: 125px;
  min-height: 0;
  width: 100%;
  background-position: 0 -20px;
}
.locked-dark-line-count {
  margin-bottom: 50px;
}

.locked-bg {
  overflow: hidden;
  width: 100%;
}
.locked-headline {
  margin-top: 20px;
  margin-bottom: 20px;
  margin-left: -250px;
}
.locked-right-img .container {
  position: relative;
}
.locked-right-img-inner {
  position: absolute;
  bottom: 0;
  right: -200px;
}
.locked-text-content {
  max-width: 675px;
  width: 100%;
  text-align: center;
  padding-top: 20px;
  padding-bottom: 20px;
  font-size: 20px;
}
.locked-text-content h3 {
  font-size: 36px;
  line-height: 1;
}
.locked-form {
  display: flex;
  align-items: center;
  justify-content: center;
}
.locked-form input {
  height: 44px;
  border: 1px solid #fff;
  border-radius: 8px;
  background: transparent;
  color: #fff;
  margin-right: 10px;
  width: 260px;
  padding: 0 10px;
  text-align: center;
}
.locked-form .btn-primary {
  background: #00D808;
  color: #121212;
  height: 44px;
  padding: 5px 20px;
  display: flex;
  align-items: center;
  line-height: 1;
  width: 260px;
  text-align: center;
  justify-content: center;
}
.locked-form label {
  display: none;
}
.locked-white-text {
  font-size: 24px;
  font-weight: 700;
}
.locked-white-text a {
  color: #000;
  text-decoration: underline;
}

.js-countdown {
  margin: 40px 0;
}
.js-countdown-perex {
  font-size: 20px;
}
.js-countdown-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
  font-size: 60px;
  font-weight: 800;
  line-height: 1.2;
}
.js-countdown-wrap > * {
  padding: 0 10px;
}

@media (max-width: 1699px) {
  .locked-headline {
    margin-left: 0;
    position: relative;
    z-index: 1;
  }
}
@media (max-width: 1529px) {
  .locked-headline {
    margin-left: 0;
    position: relative;
    z-index: 1;
  }
  .locked-headline img {
    height: 150px;
  }
  .locked-right-img-inner img {
    height: 800px;
  }
}
@media (max-width: 1429px) {
  .locked-headline {
    margin-left: 0;
    position: relative;
    z-index: 1;
  }
  .locked-headline img {
    height: 120px;
  }
  .locked-right-img-inner img {
    height: 680px;
  }
}
@media (max-width: 1199px) {
  .locked-headline {
    margin-left: 0;
    position: relative;
    z-index: 1;
  }
  .locked-headline img {
    height: 120px;
  }
  .locked-right-img-inner img {
    height: 480px;
  }
}
@media (max-width: 991px) {
  .locked-headline {
    margin-left: 0;
    position: relative;
    z-index: 1;
  }
  .locked-headline img {
    height: 120px;
  }
  .locked-right-img {
    margin-top: 400px;
  }
  .locked-right-img-inner img {
    height: 480px;
  }
}
@media (max-width: 767px) {
  .locked-dark-line-top {
    height: 50px;
  }
  .locked-headline {
    margin-left: 0;
    position: relative;
    z-index: 1;
  }
  .locked-headline img {
    height: 120px;
  }
  .locked-right-img {
    margin-top: 400px;
  }
  .locked-right-img-inner {
    right: 0;
  }
  .locked-right-img-inner img {
    height: 480px;
  }
  .js-countdown-perex {
    font-size: 18px;
  }
  .js-countdown-wrap {
    font-size: 40px;
  }
}
@media (max-width: 575px) {
  .locked-headline {
    margin-left: 0;
    position: relative;
    z-index: 1;
  }
  .locked-headline img {
    height: unset;
  }
  .locked-right-img {
    margin-top: 400px;
  }
  .locked-right-img-inner {
    right: 0;
  }
  .locked-right-img-inner img {
    height: 440px;
    max-width: unset;
  }
  .locked-text-content h3 {
    font-size: 20px;
  }
  .locked-form {
    flex-direction: column;
  }
  .locked-form input {
    margin: 0;
    margin-bottom: 10px;
  }
  .js-countdown-perex {
    font-size: 18px;
  }
  .js-countdown-wrap {
    font-size: 30px;
  }
}
.embed-responsive-9by16:before {
  padding-top: 177.7777777778%;
}

/*# sourceMappingURL=style.css.map */
