.header {
  background-color: #ffffff;
  box-shadow: 0px 4px 10px 0px rgba(223, 223, 223, 0.25);
  width: 100%;
  height: 302px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.header .image-container {
  position: relative;
  max-width: 390px;
  max-height: 157px;
}
.header .image-container img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.header .heading-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 0.8rem;
  padding: 0 0 3rem 0;
}
.header .heading-container .title-container {
  display: flex;
  justify-content: center;
  align-items: center;
}
.header .heading-container .title-container .logo-container {
  position: relative;
  max-height: 38px;
  max-width: 95px;
}
.header .heading-container .title-container .logo-container img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}
.header .heading-container .title-container .separator {
  border-left: 1px solid #000000;
  width: 1px;
  height: 20px;
}
.header .heading-container .title-container .text {
  font-weight: 500;
  font-size: 20px !important;
  line-height: 24.2px;
  color: #000000;
  margin-left: 0.5rem;
}
.header .heading-container .subtext {
  font-size: 28px !important;
  font-weight: 500;
  line-height: 33.89px;
  color: rgb(41, 127, 228);
}
.header .heading-container .search-container {
  position: relative;
  display: flex;
  align-items: center;
  border: 1px solid rgb(139, 138, 141);
  border-radius: 8px;
  height: 48px;
  width: 545px;
  padding: 8px 12px;
  margin-top: 0.75rem;
}
.header .heading-container .search-container.active {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.header .heading-container .search-container img {
  width: 24px;
  height: 24px;
}
.header .heading-container .search-container input {
  width: 100%;
  height: 100%;
  border: none;
  outline: none;
  font-size: 18px !important;
  font-weight: 500;
  line-height: 21.78px;
  color: rgb(139, 138, 141) !important;
  margin-left: 1rem;
}
.header .heading-container .search-container .dropdown-search {
  position: absolute;
  top: 101%;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  border: 1px solid rgb(139, 138, 141);
  border-top: none;
  display: none;
  border-radius: 0 0 8px 8px;
  max-height: 150px;
  overflow-y: auto;
  z-index: 5;
}
.header .heading-container .search-container .dropdown-search div {
  padding: 10px;
  font-size: 18px !important;
  font-weight: 500;
  line-height: 21.78px;
  color: rgb(139, 138, 141) !important;
  cursor: pointer;
}
.header .heading-container .search-container .dropdown-search div:hover {
  background-color: #f0f0f0;
}

.container {
  position: relative;
  max-width: 1500px;
  padding-top: 1rem;
  padding-bottom: 2rem;
}
.container .list-contents {
  background-color: #ffffff;
  overflow-x: hidden;
  overflow-y: auto;
  border-radius: 10px;
  padding: 2rem 0;
}
.container .list-contents .header {
  height: 68px;
  padding: 0 1.5rem;
}
.container .list-contents .header .title {
  font-size: 28px !important;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 0;
  vertical-align: middle;
  margin: 0;
  padding: 0;
  max-width: 194px;
}
.container .list-contents .content {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-top: 2rem;
}
.container .list-contents .content .content-item {
  padding: 10px 1.5rem 0 1.5rem;
}
.container .list-contents .content .content-item hr {
  border-top: 1px solid rgb(217, 217, 217);
  margin-bottom: 0;
  margin-top: 0.938rem;
}
.container .list-contents .content .content-item .content-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  cursor: pointer;
}
.container .list-contents .content .content-item .content-main .title {
  font-size: 18px;
  line-height: 100%;
  font-weight: 600;
  letter-spacing: 0;
}
.container .list-contents .content .content-item .content-main img {
  height: 24px;
  width: 24px;
}
.container .list-contents .content .content-item .content-main.show-detail img {
  transform: rotate(180deg);
}
.container .list-contents .content .content-item .content-detail {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  margin-top: 10px;
}
.container .list-contents .content .content-item .content-detail .content-element {
  font-size: 16px !important;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 0;
  color: #000000;
  cursor: pointer;
}
.container .list-contents .content .content-item .content-detail .content-element:hover {
  color: rgb(55, 92, 180);
}
.container .list-contents .content .content-item .content-detail .content-element.active {
  color: rgb(55, 92, 180);
}
.container .preview-content {
  position: relative;
  width: 100%;
  background-color: #ffffff;
  border-radius: 10px;
  padding: 1.5rem 2rem;
}
.container .preview-content h1 {
  font-size: 36px !important;
  font-weight: 600;
  line-height: 100%;
  display: block;
  letter-spacing: 0;
  padding: 0;
  margin: 0;
}
.container .preview-content p {
  font-size: 16px !important;
  font-weight: 400;
  line-height: 100%;
  display: block;
  letter-spacing: 0;
  padding: 0;
  margin: 0;
}
.container .preview-content iframe {
  display: block;
  border: none;
  outline: none;
  border-radius: 10px;
}
.container .preview-content .badge {
  display: flex;
  font-size: 12px !important;
  color: rgb(54, 92, 180);
  line-height: 100%;
  font-weight: 400;
  margin-bottom: 1rem;
  padding: 0;
}
.container .looking-for-content {
  position: relative;
  display: flex;
  justify-content: center;
  column-gap: 36px;
  height: 327px;
  width: 100%;
  background-color: #ffffff;
  border-radius: 10px;
  padding: 1.8rem 2rem;
  margin-top: 1rem;
}
.container .looking-for-content img {
  height: 254px;
  width: 316px;
}
.container .looking-for-content .ticketing-suggestion {
  display: flex;
  flex-direction: column;
  row-gap: 12px;
}
.container .looking-for-content .ticketing-suggestion h1 {
  font-size: 36px !important;
  font-weight: 600;
  line-height: 1.3;
  max-width: 354px;
  text-align: center;
  margin: 0 auto;
  padding: 0;
}
.container .looking-for-content .ticketing-suggestion p {
  font-size: 18px !important;
  font-weight: 400;
  line-height: 1.2;
  max-width: 421px;
  text-align: center;
  margin: 0;
  padding: 0;
}
.container .looking-for-content .ticketing-suggestion .button-container {
  display: flex;
  justify-content: center;
  margin-top: 7px;
}
.container .looking-for-content .ticketing-suggestion .button-container button {
  outline: none;
  border: none;
  background-color: rgb(54, 92, 180);
  color: #ffffff;
  padding: 12px;
  border-radius: 100px;
  font-size: 18px !important;
  font-weight: 400;
  line-height: 100%;
}
.container .looking-for-content .ticketing-suggestion .button-container button:hover {
  background-color: rgb(48, 82, 162);
}

.navigate-top {
  position: fixed;
  z-index: 10;
  background-color: rgba(0, 0, 0, 0.5);
  height: 60px;
  width: 60px;
  border-radius: 100%;
  right: 1rem;
  top: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}