@font-face {
  font-family: Roboto-Regular;
  src: url("../fonts/Roboto/Roboto-Regular.ttf");
}
@font-face {
  font-family: Roboto-Medium;
  src: url("../fonts/Roboto/Roboto-Medium.ttf");
}
@font-face {
  font-family: Roboto-Bold;
  src: url("../fonts/Roboto/Roboto-Bold.ttf");
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

* {
  --font-family: Roboto-Regular;
  --font-family-medium: Roboto-Medium;
  --font-family-bold: Roboto-Bold;
  --color-pink: #ec038c;
  --color-violet: #0f1954;
  --color-gray: #666666;
}

body {
  background-image: url("../img/bg.png");
  background-position: center;
  background-size: cover;
  height: 100vh;
  overflow: hidden;
  /* min-height: 100vh;
  overflow: hidden; */
}

*::-webkit-scrollbar {
  width: 4px;
}

*::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

*::-webkit-scrollbar-thumb {
  background-color: darkgrey;
  outline: 1px solid slategrey;
}

a {
  text-decoration: none;
  color: unset;
}
a:hover {
  text-decoration: none;
}

.container {
  height: 100%;
  overflow: hidden;
}
.header {
  height: 100px;
  background-color: #fff;
  box-shadow: 0px 4px 4px 0px #00000040;
}
.header-content {
  display: flex;
  height: 100%;
  justify-content: space-between;
}
.header-content .logo {
  height: 100%;
  float: left;
}
.header-content .logo .logo-title {
  margin-top: 30px;
  margin-left: 30px;
}
.header-content .logo span {
  font-weight: bold;
  color: #fff;
}
.header-content .logo img {
  height: 80px;
  width: auto;
  margin-top: 10px;
  margin-bottom: 10px;
}
.header-content .qr-code {
  height: 100%;
  float: left;
}
.header-content .qr-code .qr-code-title {
  margin-top: 30px;
  margin-left: 30px;
}
.header-content .qr-code span {
  font-weight: bold;
  color: #fff;
}
.header-content .qr-code img {
  height: 80px;
  width: auto;
  margin-top: 10px;
}
.header-content .nav-item a {
  color: var(--color-pink) !important;
  font-size: 20px;
}
.header-content .nav-item a.active {
  font-family: var(--font-family-bold);
  text-shadow: 0px 4px 4px #00000040;
}
.content {
}
.breadcrumb {
  margin-top: 16px;
  margin-bottom: 16px;
  margin-left: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.breadcrumb > span:last-child {
  color: var(--color-pink);
}

@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .container {
    padding: 0 10px;
  }
  .header-content .logo img {
    width: 100%;
    margin-bottom: 30px;
  }
  /* .header-content .qr-code {
    display: none;
  } */
  .header {
    position: absolute;
    width: 100%;
    bottom: 0;
  }
  .media-viewer #media-viewer-close {
    width: 50px !important;
    position: absolute;
    top: unset !important;
    right: unset !important;
    background-color: #fff;
    bottom: 100px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    border-radius: 25px !important;
  }
  .media-viewer-image #media-viewer-close {
    width: 50px !important;
    position: absolute;
    top: unset !important;
    right: unset !important;
    background-color: #fff;
    bottom: 100px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    border-radius: 25px !important;
  }
  .pdf-viewer #pdf-viewer-close {
    width: 50px !important;
    position: absolute;
    top: unset !important;
    right: unset !important;
    background-color: #fff;
    bottom: 100px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    border-radius: 25px !important;
  }
}

@media only screen and (max-width: 991px) {
  .header {
    height: fit-content;
  }
  .header-content {
    flex-direction: row-reverse;
  }
  .header-content .qr-code {
    display: none;
  }
  .header-content .nav-item a {
    font-size: 16px;
  }
  .container {
    padding: 0 10px;
  }
  .navbar {
    position: absolute;
    width: 100%;
    background-color: #fff;
    z-index: 10;
    top: 20px;
    left: 20px;
    width: fit-content;
  }
  .navbar-nav {
    margin-top: 20px;
  }
  .logo {
    position: relative;
    z-index: 20;
  }
  .content {
    position: static !important;
    transform: none !important;
    padding: 0 !important;
  }
  .main-content {
    overflow-x: hidden !important;
  }
  .content .content-head {
    margin-bottom: 0 !important;
    margin-top: 20px !important;
  }
  .content .content-head h3 {
    font-size: 24px !important;
  }
  .media-viewer {
    padding: 10px !important;
  }
  .media-viewer audio {
    width: 100% !important;
  }
  .pdf-viewer {
    padding: 10px !important;
  }
  .list-items {
    margin-top: 20px;
  }
  .list-items .item {
    min-width: 240px;
  }
  .item .media-title img {
    width: 40px !important;
  }
  .item .media-title h3 {
    font-size: 18px !important;
  }
}
