header {
  width: 100%;
  height: 80px;
  padding: 0px 7vw;
  position: fixed;
  top: 0;
  background-color: white;
  z-index: 1;
}
header .row-section {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  border-bottom: 1px solid #e0e0e0;
}
header .row-section .header-logo {
  width: 30%;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
header .row-section .header-logo img {
  width: 120px;
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
}
header .row-section .menu {
  width: 70%;
  height: 100%;
}
header .row-section .menu ul {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  list-style-type: none;
  align-items: center;
  justify-content: flex-end;
}
header .row-section .menu li {
  position: relative;
}
header .row-section .menu li a.item {
  cursor: pointer;
  width: 100%;
  height: 100%;
  padding: 10px 20px;
  height: 40px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  position: relative;
}
header .row-section .menu li .item {
  color: #1C1C1C;
}
header .row-section .menu li .active {
  font-weight: 600;
}
header .row-section .menu li .dropdown-content {
  width: -moz-fit-content;
  width: fit-content;
  height: auto;
  position: absolute;
  top: 100%;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  background-color: white;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  pointer-events: none;
  opacity: 0;
  z-index: 1;
}
header .row-section .menu li .dropdown-content .dropdown-item {
  min-width: 100%;
  height: auto;
  min-height: 40px;
  width: -moz-max-content;
  width: max-content;
  padding: 8px 20px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  color: #1C1C1C;
  font-size: 16px;
  text-decoration: none;
  transition: 0.25s ease-in-out;
}
header .row-section .menu li .dropdown-content .dropdown-item:hover {
  background-color: #FF9E1B;
  color: white;
}
header .row-section .menu li .dropdown-content .accordion {
  width: -moz-max-content;
  width: max-content;
  cursor: pointer;
  position: relative;
}
header .row-section .menu li .dropdown-content .accordion .accordion-wrapper {
  width: -moz-max-content;
  width: max-content;
  min-width: 120px;
  height: auto;
  display: flex;
  position: absolute;
  top: 0;
  left: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  opacity: 0;
  pointer-events: none;
  background-color: white;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
}
header .row-section .menu li .dropdown-content .accordion .accordion-wrapper .accordion-item {
  padding: 8px 20px;
  width: 100%;
  height: 40px;
  text-decoration: none;
  color: #1C1C1C;
  transition: 0.25s ease-in-out;
}
header .row-section .menu li .dropdown-content .accordion .accordion-wrapper .accordion-item:hover {
  background-color: #FF9E1B;
  color: white;
}
header .row-section .menu li .dropdown-content .accordion:hover .accordion-wrapper {
  opacity: 1;
  pointer-events: all;
}
header .row-section .menu li .show {
  opacity: 1;
  pointer-events: all;
}
header .row-section .hamburger-menu {
  width: 70%;
  height: 100%;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  display: none;
}
header .row-section .hamburger-menu .nav-button {
  width: 40px;
  height: 40px;
  font-size: 24px;
  background-color: #F6F6F6;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  cursor: pointer;
}

.usersidebar {
  position: fixed;
  background-color: #1C1C1C;
  z-index: 1;
  width: 100%;
  top: 0;
  right: 0;
  transform: translateX(100%);
  transition: 0.5s ease-in-out;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px 0px;
  height: 100vh;
  overflow-Y: scroll;
}
.usersidebar .nav-item {
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  height: 48px;
}
.usersidebar .nav-item:hover {
  background-color: #0A80B2;
}
.usersidebar .hovered-item {
  height: auto;
}
.usersidebar .hovered-item .hovered-wrapper {
  width: 100%;
  height: auto;
  flex-direction: column;
  display: none;
  gap: 8px;
}
.usersidebar .hovered-item .hovered-wrapper .hovered-sub-item {
  color: white;
  text-decoration: none;
  height: 40px;
  display: flex;
  align-items: center;
  padding-left: 40px;
  width: 100%;
}
.usersidebar .hovered-item .hovered-wrapper .hovered-sub-item:hover {
  background-color: #0A80B2;
}
.usersidebar .hovered-item .hovered-wrapper .drop-sub {
  height: auto;
}
.usersidebar .hovered-item .hovered-wrapper .drop-sub .drop-sub-wrapper {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  display: none;
  gap: 8px;
}
.usersidebar .hovered-item .hovered-wrapper .drop-sub .drop-sub-wrapper .drop-sub-item {
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  height: 40px;
  padding-left: 60px;
}
.usersidebar .hovered-item .hovered-wrapper .drop-sub .drop-sub-wrapper .drop-sub-item:hover {
  background-color: #0A80B2;
}
.usersidebar .hovered-item .hovered-wrapper .drop-sub .drop-drop-sub {
  display: flex;
}
.usersidebar .hovered-item .drop {
  display: flex;
}

.btn-primary {
  background-color: #e0e0e0;
  color: #1C1C1C !important;
  padding: 10px 20px;
  display: flex;
  flex-direction: row;
  gap: 8px;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  text-decoration: none;
  color: white;
  border-radius: 6px;
  width: -moz-fit-content;
  width: fit-content;
  border: 0px;
  outline: none;
}

.btn-orange {
  background-color: #FF9E1B;
  padding: 10px 20px;
  display: flex;
  flex-direction: row;
  gap: 8px;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  text-decoration: none;
  color: white;
  border-radius: 6px;
  width: -moz-fit-content;
  width: fit-content;
  border: 0px;
  outline: none;
}

.btn-blue {
  background-color: #0A80B2;
  padding: 10px 20px;
  display: flex;
  flex-direction: row;
  gap: 8px;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  text-decoration: none;
  color: white;
  border-radius: 6px;
  width: -moz-fit-content;
  width: fit-content;
  border: 0px;
  outline: none;
}

.btn-red {
  background-color: #c73a3a;
  padding: 10px 20px;
  display: flex;
  flex-direction: row;
  gap: 8px;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  text-decoration: none;
  color: white;
  border-radius: 6px;
  width: -moz-fit-content;
  width: fit-content;
  border: 0px;
  outline: none;
}

.btn-small {
  height: 32px;
  font-size: 16px;
  padding: 10px 20px;
  display: flex;
  flex-direction: row;
  gap: 8px;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  text-decoration: none;
  color: white;
  border-radius: 6px;
  width: -moz-fit-content;
  width: fit-content;
  border: 0px;
  outline: none;
}

.btn-medium {
  height: 40px;
  font-size: 16px;
  padding: 10px 20px;
  display: flex;
  flex-direction: row;
  gap: 8px;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  text-decoration: none;
  color: white;
  border-radius: 6px;
  width: -moz-fit-content;
  width: fit-content;
  border: 0px;
  outline: none;
}

.btn-large {
  height: 60px;
  font-size: 20px;
  padding: 10px 20px;
  display: flex;
  flex-direction: row;
  gap: 8px;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  text-decoration: none;
  color: white;
  border-radius: 6px;
  width: -moz-fit-content;
  width: fit-content;
  border: 0px;
  outline: none;
}

.form form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.small-form {
  width: 30%;
}

.form-input {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-input .labeled-input {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
}
.form-input .labeled-input .input-label {
  width: object-fit;
  padding: 10px 20px;
  background-color: #FF9E1B;
  color: white;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
  font-size: 16px;
  text-decoration: none;
}
.form-input .labeled-input button {
  text-decoration: none;
  outline: none;
  cursor: pointer;
  border: 0px;
}
.form-input .label {
  font-size: 16px;
  padding-bottom: 8px;
  color: #1C1C1C;
  font-weight: 600;
}
.form-input .input-field {
  width: 100%;
  height: 40px;
  background-color: #F6F6F6;
  padding: 10px 20px;
  color: #1C1C1C;
  outline: none;
  border: 0px;
  font-size: 16px;
  border-radius: 6px;
}
.form-input .input-field::-moz-placeholder {
  color: #B6B6B6;
  font-size: 16px;
}
.form-input .input-field::placeholder {
  color: #B6B6B6;
  font-size: 16px;
}
.form-input .readonly {
  background-color: #e0e0e0;
  cursor: not-allowed;
}
.form-input .is-invalid {
  color: #c73a3a;
  font-size: 14px;
}

.inline-form {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
}
.inline-form .form-input {
  width: 100% !important;
}

.drop-container {
  width: 100%;
  height: -moz-max-content;
  height: max-content;
  padding: 40px;
  border: 2px dashed #B6B6B6;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  transition: 0.5s ease-in-out;
}
.drop-container span {
  color: #1C1C1C;
  font-weight: 600;
  font-size: 20px;
}
.drop-container input[type=file] {
  display: none;
}
.drop-container:hover {
  background-color: #F6F6F6;
}
.drop-container p {
  color: #B6B6B6;
  font-size: 14px;
}

.pagination {
  list-style-type: none;
}

.col-small {
  gap: 8px;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
}

.col-medium {
  gap: 20px;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
}

.col-large {
  gap: 40px;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
}

.col-ext-large {
  gap: 60px;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
}

.row-small {
  gap: 8px;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
}

.row-medium {
  gap: 20px;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
}

.row-large {
  gap: 40px;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
}

.row-ext-large {
  gap: 60px;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
}

.centered-col, .centered-row {
  justify-content: center;
  align-items: center;
}

.right-align-row {
  justify-content: flex-end;
}

.left-align-col {
  align-items: flex-start;
}

footer {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
footer .footer-nav {
  width: 100%;
  height: auto;
  padding: 60px 7vw;
  background-color: #0A80B2;
}
footer .footer-nav .location {
  width: 25%;
  height: 100%;
  display: flex;
  align-items: center;
}
footer .footer-nav .location .footer-location, footer .footer-nav .location .footer-email {
  color: white;
  font-size: 16px;
  line-height: 24px;
}
footer .footer-nav .footer-menu {
  width: 25%;
}
footer .footer-nav .footer-menu a.item {
  color: white;
  text-decoration: none;
  line-height: 24px;
}
footer .footer-nav .faq {
  width: 25%;
}
footer .footer-nav .faq a.item {
  color: white;
}
footer .footer-nav .faq .icons {
  font-size: 40px;
  color: white;
}
footer .footer-copyright {
  width: 100%;
  height: 60px;
  background-color: #0C5395;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
}

.header {
  position: absolute;
  top: 0;
  right: 0;
  width: 82vw;
  height: auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 100px;
  padding: 0px 40px;
  border-bottom: 1px solid #e0e0e0;
}
.header .user-avatar {
  width: auto;
  height: auto;
  display: flex;
  flex-direction: row;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.5s ease-in-out;
  gap: 8px;
}
.header .user-avatar .rounded-avatar {
  background-color: #0C5395;
  font-size: 16px;
  color: white;
  font-weight: 600;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.header .user-avatar .name {
  display: flex;
  align-items: center;
}
.header .user-avatar:hover {
  background-color: #F6F6F6;
}

.sidebar {
  width: 18vw;
  height: auto;
  max-height: 100vh;
  padding-top: 20px;
  padding-bottom: 40px;
  background-color: #F6F6F6;
  position: fixed;
  top: 0;
  left: 0;
  overflow: auto;
}
.sidebar::-webkit-scrollbar {
  width: 8px;
  background-color: #e0e0e0;
}
.sidebar::-webkit-scrollbar-thumb {
  background-color: #B6B6B6;
  border-radius: 10px;
  visibility: hidden;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
.sidebar::-webkit-scrollbar-button {
  display: none;
}
.sidebar:hover::-webkit-scrollbar-thumb {
  visibility: visible;
}
.sidebar .sidebar-logo {
  width: 100%;
  height: 60px;
  padding: 0px 20px;
}
.sidebar .sidebar-logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.sidebar .nav {
  width: 100%;
  height: auto;
}
.sidebar .nav ul {
  width: 100%;
  height: auto;
}
.sidebar .nav ul strong, .sidebar .nav ul li {
  width: 100%;
  padding-left: 40px;
  color: #1C1C1C;
}
.sidebar .nav ul li.sidebar-item {
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
  position: relative;
}
.sidebar .nav ul li.sidebar-item a {
  width: 100%;
  color: #1C1C1C;
  text-decoration: none;
  cursor: pointer;
  display: block;
}
.sidebar .nav ul li.sidebar-item::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 0px;
  height: 100%;
  background-color: #0C5395;
  transition: 0.25s ease-in-out;
  border-top-left-radius: 2px;
  border-bottom-left-radius: 2px;
}
.sidebar .nav ul li.sidebar-item:hover a {
  color: #0C5395;
}
.sidebar .nav ul li.sidebar-item:hover::after {
  width: 3px;
}
.sidebar .nav ul li.sidebar-item:nth-child(odd) a i {
  color: #0C5395;
}
.sidebar .nav ul li.sidebar-item:nth-child(even) a i {
  color: #DC582A;
}
.sidebar .nav ul .active a {
  font-weight: 600 !important;
  color: #0C5395 !important;
}
.sidebar .nav ul .active::after {
  width: 3px !important;
}

@media screen and (max-width: 600px) {
  header {
    width: 100%;
  }
  header .menu {
    display: none;
  }
  header .hamburger-menu {
    display: flex !important;
  }
  footer .footer-nav {
    padding-bottom: 40px;
  }
  footer .footer-nav .row-large {
    flex-direction: column !important;
  }
  footer .footer-nav .row-large .location, footer .footer-nav .row-large .footer-menu, footer .footer-nav .row-large .faq {
    width: 100%;
    height: 100%;
  }
  .container .wrapper .legalitas-image {
    width: 100%;
    height: 30vh;
  }
  .container .wrapper .legalitas-image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .container .wrapper .event-cards .event-card {
    width: 100% !important;
  }
  .container .wrapper .cek-card {
    padding: 20px;
  }
  .container .wrapper .recent-activity, .container .wrapper .recent-profile {
    width: 100% !important;
  }
  .container .wrapper .profile-card {
    padding: 20px !important;
  }
  .container .wrapper .profile-card .table .profile-title {
    gap: 20px;
    flex-direction: column !important;
    align-items: flex-start !important;
  }
  .container .wrapper .profile-card .table .profile-title h4 {
    font-size: 16px;
  }
  .container .wrapper .profile-card .table .responsive-table {
    overflow-x: auto;
  }
  .container .wrapper .profile-card .profile-updated-photo {
    width: 100% !important;
  }
  .container .wrapper .profile-card .form .drop-container {
    padding: 20px !important;
  }
  .container .wrapper .profile-card .form .drop-container .input-image {
    padding: 0px !important;
  }
  .container .wrapper .profile-card .form .drop-container p {
    font-size: 11px !important;
    text-align: center;
  }
  .container .wrapper .profile-card .form form .inline-form {
    flex-direction: column !important;
  }
  .container .wrapper .profile-card .not-found .message h3 {
    font-size: 18px !important;
    text-align: center;
  }
  .container .wrapper .profile-card .profile-photo .image {
    width: 60vw !important;
    height: 60vw !important;
  }
  .container .wrapper .responsive-row {
    flex-direction: column !important;
  }
  .container .wrapper .dashboard-row {
    flex-direction: column-reverse !important;
  }
  .container .jumbotron {
    height: 30vh !important;
  }
  .container .jumbotron .item .overlay, .container .jumbotron .item .slider-content {
    opacity: 0 !important;
    width: 100% !important;
    transition: 0.5s ease-in-out;
  }
  .container .jumbotron .item:hover .overlay {
    opacity: 0.5 !important;
  }
  .container .jumbotron .item:hover .slider-content {
    opacity: 1 !important;
  }
  .container .recent-article, .container .random-article {
    width: 100% !important;
  }
  .container .read-article {
    width: 100% !important;
  }
  .container .recent-article .article-cards .article-card.row-medium {
    flex-direction: column !important;
  }
  .container .recent-article .article-cards .article-card.row-medium .image {
    width: 100% !important;
    height: 20vh !important;
  }
  .container .recent-article .article-cards .article-card.row-medium .card-content {
    width: 100% !important;
    padding-left: 20px !important;
  }
  .container .recent-article .article-cards .article-card.row-medium .card-content .title, .container .recent-article .article-cards .article-card.row-medium .card-content .date {
    width: 100% !important;
  }
  .container .categories-card .category-card.row-medium {
    width: 100% !important;
    flex-direction: column !important;
    gap: 20px !important;
    flex-direction: flex-start !important;
  }
  .container .categories-card .category-card.row-medium .image {
    width: 100% !important;
  }
  .container .categories-card .category-card.row-medium .card-content {
    width: 100% !important;
    flex-direction: flex-start !important;
    height: auto !important;
    padding-left: 20px !important;
  }
  .container .small-form {
    width: 100% !important;
  }
  .auth-container .auth-image {
    width: 100% !important;
    z-index: -1;
  }
  .auth-container .auth-form {
    width: 100% !important;
    padding-left: 7vw !important;
    padding-right: 7vw !important;
  }
  .section-title h3 {
    font-size: 20px !important;
  }
  .section-title h2 {
    font-size: 20px !important;
  }
  .section {
    padding-top: 0px !important;
  }
  .section .hero-section {
    flex-direction: column !important;
    padding-bottom: 40px !important;
  }
  .section .hero-section .image, .section .hero-section .hero-text {
    width: 100% !important;
  }
  .section .hero-section .image h3, .section .hero-section .hero-text h3 {
    font-size: 20px !important;
  }
  .section .cards {
    flex-direction: column !important;
  }
  .section .cards .card {
    width: 100% !important;
  }
  .section .map-title {
    padding-left: 7vw !important;
    padding-right: 7vw !important;
  }
  .section .map-title h3 {
    font-size: 20px !important;
  }
  .section .map-image {
    padding-left: 7vw !important;
    padding-right: 7vw !important;
  }
  .section .responsive-row {
    flex-direction: column !important;
  }
  .section .event-card {
    width: 100% !important;
  }
  .dampak-section, .praktik-section {
    padding-top: 60px !important;
  }
  .dampak-section .cards, .praktik-section .cards {
    flex-direction: column !important;
  }
  .dampak-section .cards .dampak-card, .praktik-section .cards .dampak-card {
    width: 100% !important;
  }
  .dampak-section .embeded-video, .praktik-section .embeded-video {
    width: 100% !important;
    height: 30vh !important;
  }
  .artikel-section {
    padding-top: 60px !important;
  }
  .artikel-section .index-article {
    width: 100% !important;
  }
  .artikel-section .index-article .index-image {
    width: 100% !important;
  }
  .artikel-section .index-article .index-article-content {
    width: 100% !important;
  }
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Roboto";
}

.container {
  width: 100%;
  height: auto;
  padding: 120px 0px 80px 0px;
}
.container .col-section {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.container .row-section {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
}
.container .jumbotron {
  width: 100%;
  height: 75vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 0;
}
.container .jumbotron .owl-theme {
  width: 100%;
  height: 100%;
}
.container .jumbotron .owl-theme .owl-stage-outer {
  width: 100%;
  height: 100% !important;
}
.container .jumbotron .owl-theme .owl-stage-outer .owl-stage {
  height: 100% !important;
}
.container .jumbotron .owl-theme .owl-stage-outer .owl-stage .owl-item {
  height: 100% !important;
}
.container .jumbotron .owl-theme .owl-stage-outer .owl-stage .owl-item .item {
  width: 100% !important;
  height: 100% !important;
  border-radius: 6px !important;
  position: relative;
  overflow: hidden;
}
.container .jumbotron .owl-theme .owl-stage-outer .owl-stage .owl-item .item .overlay {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-color: black;
}
.container .jumbotron .owl-theme .owl-stage-outer .owl-stage .owl-item .item .slider-content {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  padding: 40px;
  display: flex;
  align-items: center;
}
.container .jumbotron .owl-theme .owl-stage-outer .owl-stage .owl-item .item .slider-content .title h3 {
  font-size: 20px;
  color: white;
  line-height: 28px;
}
.container .jumbotron .owl-theme .owl-stage-outer .owl-stage .owl-item .item .slider-content .date {
  font-size: 14px;
  color: white;
}
.container .jumbotron .owl-theme .owl-stage-outer .owl-stage .owl-item .item .slider-content .date a {
  text-decoration: none;
  color: #0A80B2;
}
.container .jumbotron .owl-theme .owl-stage-outer .owl-stage .owl-item .item .slider-content .content-paragraph {
  font-size: 16px;
  line-height: 24px;
  color: white;
}
.container .jumbotron .owl-theme .owl-stage-outer .owl-stage .owl-item .item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.container .jumbotron .owl-theme .owl-stage-outer .owl-stage .owl-item.active, .container .jumbotron .owl-theme .owl-stage-outer .owl-stage .owl-item.cloned.active {
  width: 8vw;
}
.container .jumbotron .owl-theme .owl-stage-outer .owl-stage .owl-item.active .overlay, .container .jumbotron .owl-theme .owl-stage-outer .owl-stage .owl-item.active .slider-content, .container .jumbotron .owl-theme .owl-stage-outer .owl-stage .owl-item.cloned.active .overlay, .container .jumbotron .owl-theme .owl-stage-outer .owl-stage .owl-item.cloned.active .slider-content {
  opacity: 0;
}
.container .jumbotron .owl-theme .owl-stage-outer .owl-stage .owl-item.active.center {
  width: 82vw;
}
.container .jumbotron .owl-theme .owl-stage-outer .owl-stage .owl-item.active.center .overlay {
  opacity: 0.8;
}
.container .jumbotron .owl-theme .owl-stage-outer .owl-stage .owl-item.active.center .slider-content {
  opacity: 1;
}
.container .jumbotron .owl-theme .owl-dots button.owl-dot span {
  width: 6px !important;
  height: 6px !important;
  transition: 0.25s ease-in-out;
}
.container .jumbotron .owl-theme .owl-dots button.owl-dot.active span {
  background-color: #1C1C1C;
  width: 40px !important;
}
.container .section {
  width: 100%;
  height: auto;
  padding: 60px 7vw;
}
.container .section .cards {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  gap: 20px;
}
.container .section .cards .card {
  width: calc((100% - 80px) / 4);
  height: auto;
}
.container .section .cards .card .image {
  width: 100%;
  height: 200px;
}
.container .section .cards .card .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.container .section .cards .card .card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 8px;
}
.container .section .cards .card .card-content .content-text p {
  line-height: 24px;
}
.container .section .cards .event-card {
  width: 33.3333333333%;
  height: 60vh;
  position: relative;
  overflow: hidden;
}
.container .section .cards .event-card img {
  border-radius: 6px;
}
.container .section .cards .event-card .overlay {
  position: absolute;
  background-color: #1C1C1C;
  color: white;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  transition: 0.5s ease-in-out;
  border-radius: 6px;
  padding: 20px;
  opacity: 0;
}
.container .section .cards .event-card .overlay .bordered {
  width: 100%;
  height: 100%;
  border-radius: 6px;
  border: 2px solid white;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.container .section .cards .event-card:hover .overlay {
  opacity: 1;
}
.container .section .cards .dampak-card {
  width: 33.3333333333%;
  height: 200px;
  padding: 0px 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 6px;
}
.container .section .cards .dampak-card:first-child {
  background-color: #FF9E1B;
}
.container .section .cards .dampak-card:first-child .section-title h3, .container .section .cards .dampak-card:first-child .content-text {
  color: white;
}
.container .section .cards .dampak-card .content-text {
  line-height: 24px;
  color: #1C1C1C;
}
.container .section .image {
  width: 100%;
  height: 100%;
}
.container .section .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.container .section .hero-section {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 60px 0px;
}
.container .section .hero-section .image {
  width: 50%;
  height: 100%;
}
.container .section .hero-section .hero-text {
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.container .section .hero-section .hero-text .hero-paragraph h3 {
  color: #1C1C1C;
  font-size: 24px;
  line-height: 32px;
}
.container .section .hero-section .hero-text .hero-paragraph p {
  font-size: 16px;
  line-height: 24px;
}
.container .wrapper {
  width: 100%;
  height: auto;
  padding: 0px 7vw;
}
.container .wrapper .prosedur-image {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.container .wrapper .prosedur-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.container .wrapper .recent-article {
  width: 60vw;
  height: auto;
}
.container .wrapper .recent-article .article-cards {
  width: 100%;
  height: auto;
}
.container .wrapper .recent-article .article-cards .article-card {
  width: 100%;
  height: auto;
  border-radius: 10px;
  transition: 0.5 ease-in-out;
  text-decoration: none;
}
.container .wrapper .recent-article .article-cards .article-card .image {
  width: 40%;
  height: 40vh;
  border-radius: 6px;
  overflow: hidden;
}
.container .wrapper .recent-article .article-cards .article-card .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.container .wrapper .recent-article .article-cards .article-card .card-content {
  width: 70%;
  height: 100%;
  padding: 20px 20px 20px 0px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.container .wrapper .recent-article .article-cards .article-card .card-content .writer .rounded-image {
  width: 20px;
  height: 20px;
  overflow: hidden;
  border-radius: 50%;
}
.container .wrapper .recent-article .article-cards .article-card .card-content .writer .rounded-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.container .wrapper .recent-article .article-cards .article-card .card-content .writer .name {
  color: #1C1C1C;
  font-size: 16px;
}
.container .wrapper .recent-article .article-cards .article-card .card-content .title {
  font-size: 18px;
  color: #1C1C1C;
  line-height: 28px;
}
.container .wrapper .recent-article .article-cards .article-card .card-content .date {
  font-size: 14px;
  color: #B6B6B6;
}
.container .wrapper .recent-article .article-cards .article-card .card-content .date a {
  font-size: 14px;
  color: #0A80B2;
  text-decoration: none;
}
.container .wrapper .recent-article .article-cards .article-card .card-content .content {
  font-size: 16px;
  color: #1C1C1C;
  line-height: 24px;
}
.container .wrapper .recent-article .article-cards .article-card:hover {
  background-color: #F6F6F6;
}
.container .wrapper .random-article {
  width: 40vw;
  height: auto;
}
.container .wrapper .random-article .top-article {
  width: 100%;
  height: auto;
}
.container .wrapper .random-article .top-article .top-article-cards {
  width: 100%;
  height: auto;
}
.container .wrapper .random-article .top-article .top-article-cards .top-article-card {
  border-radius: 6px;
  transition: 0.5s ease-in-out;
  text-decoration: none;
}
.container .wrapper .random-article .top-article .top-article-cards .top-article-card .image {
  width: 30%;
  height: 100%;
  overflow: hidden;
  border-radius: 6px;
}
.container .wrapper .random-article .top-article .top-article-cards .top-article-card .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.container .wrapper .random-article .top-article .top-article-cards .top-article-card .title {
  width: 70%;
  height: auto;
  min-height: 18vh;
  display: flex;
  flex-direction: row;
  align-items: center;
  line-height: 24px;
  font-weight: 600;
  color: #1C1C1C;
  padding: 20px;
}
.container .wrapper .random-article .top-article .top-article-cards .top-article-card:hover {
  background-color: #F6F6F6;
}
.container .wrapper .random-article .categories .categories-buttons {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  gap: 20px;
  flex-wrap: wrap;
}
.container .wrapper .random-article .categories .categories-buttons a {
  flex-grow: 2;
  color: #1C1C1C !important;
}
.container .wrapper .categories-card {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  gap: 20px;
  flex-wrap: wrap;
}
.container .wrapper .categories-card .category-card {
  width: 33.3333333333%;
  flex-grow: 2;
  height: auto;
  text-decoration: none;
  align-items: center;
}
.container .wrapper .categories-card .category-card .image {
  width: 40%;
  height: 100%;
  border-radius: 6px;
  overflow: hidden;
}
.container .wrapper .categories-card .category-card .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.container .wrapper .categories-card .category-card .card-content {
  width: 70%;
  height: 100%;
  padding: 20px 20px 20px 0px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.container .wrapper .categories-card .category-card .card-content .writer .rounded-image {
  width: 20px;
  height: 20px;
  overflow: hidden;
  border-radius: 50%;
}
.container .wrapper .categories-card .category-card .card-content .writer .rounded-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.container .wrapper .categories-card .category-card .card-content .writer .name {
  color: #1C1C1C;
  font-size: 16px;
}
.container .wrapper .categories-card .category-card .card-content .title {
  font-size: 18px;
  color: #1C1C1C;
  line-height: 28px;
}
.container .wrapper .categories-card .category-card .card-content .date {
  font-size: 14px;
  color: #B6B6B6;
}
.container .wrapper .categories-card .category-card .card-content .date a {
  font-size: 14px;
  color: #0A80B2;
  text-decoration: none;
}
.container .wrapper .categories-card .category-card .card-content .content {
  font-size: 16px;
  color: #1C1C1C;
  line-height: 24px;
}
.container .wrapper .categories-card .category-card:hover {
  background-color: #F6F6F6;
}
.container .wrapper .read-article {
  width: 60vw;
  height: auto;
}
.container .wrapper .read-article .writer .rounded-image {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.container .wrapper .read-article .writer .rounded-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.container .wrapper .read-article .writer .name {
  color: #1C1C1C;
  font-weight: 600;
}
.container .wrapper .read-article .writer .date {
  color: #B6B6B6;
}
.container .wrapper .read-article .writer .date a {
  color: #0A80B2;
  text-decoration: none;
}
.container .wrapper .read-article .article-title h2 {
  font-size: 24px;
  color: #1C1C1C;
  line-height: 32px;
}
.container .wrapper .read-article .article-image {
  width: 100%;
  height: 50vh;
  border-radius: 10px;
  overflow: hidden;
}
.container .wrapper .read-article .article-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.container .wrapper .read-article .article-paragraph {
  width: 100%;
  height: auto;
}
.container .wrapper .read-article .article-paragraph p {
  font-size: 16px;
  color: #1C1C1C;
  line-height: 24px;
  text-align: justify;
  text-indent: 24px;
}
.container .wrapper .event-cards {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 20px;
}
.container .wrapper .event-cards .event-card {
  width: 25%;
  height: 30vh;
  position: relative;
  overflow: hidden;
  flex-grow: 2;
  border-radius: 6px;
}
.container .wrapper .event-cards .event-card:nth-child(even) {
  flex-grow: 4;
}
.container .wrapper .event-cards .event-card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.5s ease-in-out;
}
.container .wrapper .event-cards .event-card .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: black;
  opacity: 0.5;
}
.container .wrapper .event-cards .event-card .event-content {
  width: 100%;
  height: 100%;
  color: white;
  top: 0;
  position: absolute;
  padding: 40px;
  display: flex;
  align-items: flex-end;
}
.container .wrapper .event-cards .event-card:hover img {
  transform: scale(1.25);
}
.container .wrapper .recent-activity {
  width: 70vw;
}
.container .wrapper .recent-profile {
  width: 30vw;
}
.container .wrapper .profile-card {
  width: 100%;
  height: -moz-max-content;
  height: max-content;
  padding: 40px;
  border-radius: 10px;
  border-bottom: 1px solid #e0e0e0;
  border-right: 1px solid #e0e0e0;
  border-left: 1px solid #e0e0e0;
  border-top: 2px solid #DC582A;
  background-color: white;
}
.container .wrapper .profile-card .profile-photo {
  width: 100%;
  height: auto;
}
.container .wrapper .profile-card .profile-photo .image {
  width: 10vw;
  height: 10vw;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
}
.container .wrapper .profile-card .profile-photo .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.container .wrapper .profile-card .profile-photo .image .overlay {
  position: absolute;
  background-color: black;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: 0.5s ease-in-out;
}
.container .wrapper .profile-card .profile-photo .image .overlay a {
  color: white;
  text-decoration: none;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.container .wrapper .profile-card .profile-photo .image .overlay a i {
  font-size: 24px;
}
.container .wrapper .profile-card .profile-photo .image:hover .overlay {
  opacity: 1;
}
.container .wrapper .profile-card .profile-bio {
  width: 100%;
  height: auto;
}
.container .wrapper .profile-card .profile-bio strong {
  font-size: 20px;
}
.container .wrapper .profile-card .profile-title {
  justify-content: space-between;
  align-items: center;
}
.container .wrapper .profile-card .profile-title h4 {
  font-size: 20px;
  color: #1C1C1C;
}
.container .wrapper .profile-card .profile-title h4 i {
  color: #DC582A;
}
.container .wrapper .profile-card .profile-content {
  width: 100%;
  height: auto;
  text-align: left;
}
.container .wrapper .profile-card .profile-updated-photo {
  width: 40%;
  height: 300px;
  border-radius: 10px;
  overflow: hidden;
}
.container .wrapper .profile-card .profile-updated-photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.container .wrapper .profile-card .detail-image {
  width: 100%;
  height: 70vh;
  overflow: hidden;
  border-radius: 10px;
}
.container .wrapper .profile-card .detail-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.container .wrapper .profile-card .paragraph {
  line-height: 24px;
  color: #1C1C1C;
}
.container .wrapper .profile-card .profile-footer {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: flex-end;
}
.container .wrapper .profile-card hr {
  border: 0;
  border-top: 1px solid #e0e0e0;
}
.container .wrapper .profile-card .kta-container {
  width: 100%;
  height: auto;
  border: 1px solid #e0e0e0;
}
.container .wrapper .profile-card .kta-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.container .map-section {
  padding: 60px 0px;
  position: relative;
  height: auto;
}
.container .map-section .map-title {
  padding: 0px 100px;
}
.container .map-section .map-title h3 {
  color: #1C1C1C;
  font-size: 24px;
}
.container .map-section .map-title p {
  color: #1C1C1C;
  font-size: 16px;
}
.container .map-section .map-image {
  background-color: #0C5395;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 40px 100px;
  height: auto;
}
.container .map-section .map-image svg {
  width: 100%;
  height: 100%;
}
.container .map-section .map-image svg path {
  fill: white;
}
.container .map-section .map-image svg path:hover {
  fill: #FF9E1B;
}
.container .dampak-section {
  background-color: #e0e0e0;
}
.container .praktik-section {
  background-color: #0C5395;
}
.container .praktik-section .section-title p, .container .praktik-section .section-title h3 {
  color: white;
}
.container .praktik-section .embeded-video {
  width: 50%;
  height: 400px;
  background-color: #e0e0e0;
  border-radius: 10px;
  overflow: hidden;
}
.container .praktik-section .embeded-video iframe {
  width: 100%;
  height: 100%;
}
.container .image-section {
  width: 100%;
  height: 480px;
  overflow: hidden;
  border-radius: 10px;
}
.container .image-section img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.container .section-title {
  width: 100%;
}
.container .section-title h3 {
  font-size: 24px;
  color: #1C1C1C;
  line-height: 32px;
}
.container .section-title p {
  font-size: 16px;
  color: #1C1C1C;
  line-height: 24px;
}
.container .centered {
  justify-content: center !important;
}
.container .section-paragraph {
  width: 100%;
  height: auto;
}
.container .section-paragraph h1, .container .section-paragraph h2, .container .section-paragraph h3, .container .section-paragraph h4, .container .section-paragraph h5 {
  padding-bottom: 16px;
  color: #1C1C1C;
}
.container .section-paragraph p {
  text-indent: 1rem;
  text-align: justify;
  line-height: 24px;
  font-size: 16px;
  color: #1C1C1C;
}
.container .section-paragraph ol, .container .section-paragraph ul {
  width: 100%;
  list-style-position: inside;
}
.container .section-paragraph ol li, .container .section-paragraph ul li {
  line-height: 24px;
  padding: 8px 0px;
}
.container .section-paragraph ol li p, .container .section-paragraph ul li p {
  display: inline;
}
.container .left-divider {
  width: 4px;
  height: 28px;
  background-color: orange;
  border-radius: 10px;
}

.testimoni-layout {
  width: 100%;
  height: 100%;
  background-color: #F6F6F6;
  padding: 60px 7vw 80px 7vw;
}
.testimoni-layout .section-title {
  width: 100%;
}
.testimoni-layout .section-title h3 {
  font-size: 24px;
  color: #1C1C1C;
  line-height: 32px;
}
.testimoni-layout .section-title p {
  font-size: 16px;
  line-height: 24px;
  color: #1C1C1C;
}
.testimoni-layout .testimoni-cards {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
}
.testimoni-layout .testimoni-cards .testimoni-card {
  width: 25%;
  height: auto;
  flex-grow: 2;
  color: #1C1C1C;
}
.testimoni-layout .testimoni-cards .testimoni-card .author {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.testimoni-layout .testimoni-cards .testimoni-card .author .rounded-image {
  width: 40px;
  height: 40px;
  overflow: hidden;
  border-radius: 50%;
}
.testimoni-layout .testimoni-cards .testimoni-card .author .rounded-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.testimoni-layout .testimoni-cards .testimoni-card .author .name {
  font-weight: 600;
}

.auth-container {
  width: 100%;
  height: auto;
  min-height: 100vh;
  display: flex;
  flex-direction: row-reverse;
  position: relative;
}
.auth-container img {
  width: 80%;
  height: 80%;
  -o-object-fit: contain;
     object-fit: contain;
}
.auth-container .auth-form {
  width: 40%;
  height: auto;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px;
}
.auth-container .auth-form .form {
  width: 100%;
}
.auth-container .auth-form .form .login-footer {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  color: #1C1C1C;
}
.auth-container .auth-form .form .login-footer a {
  color: #0A80B2;
  text-decoration: none;
}
.auth-container .auth-form .form .login-footer p {
  width: 100%;
}
.auth-container .auth-image {
  width: 60%;
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  background-image: url("../images/bg-dashboard.jpg");
  background-size: cover;
}

.login-container {
  width: 100%;
  height: 100vh;
  background-color: #F6F6F6;
}
.login-container .login-card {
  width: 60%;
  height: auto;
  background-color: white;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  display: flex;
  flex-direction: row-reverse;
  overflow: hidden;
}
.login-container .login-card form {
  width: 60%;
  height: 100%;
  padding: 40px;
}
.login-container .login-card .login-logo {
  width: 40%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #0C5395;
  padding: 40px;
}
.login-container .login-card .login-logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.dashboard-container {
  width: 100%;
  height: auto;
  display: flex;
  flex: row;
  background-color: #F6F6F6;
  justify-content: flex-end;
}
.dashboard-container .dashboard-wrapper {
  width: calc(100% - 18vw);
  height: auto;
  padding: 100px 0px;
  display: flex;
  flex-direction: row;
  background-color: white;
  align-items: flex-end;
}
.dashboard-container .dashboard-wrapper .dashboard-content {
  width: 100%;
  height: auto;
  min-height: calc(100vh - 100px);
  padding: 40px;
}
.dashboard-container .dashboard-wrapper .dashboard-content .dashboard-counter {
  width: 100%;
  height: auto;
}
.dashboard-container .dashboard-wrapper .dashboard-content .dashboard-counter .counter-card {
  width: 25%;
  height: auto;
  padding: 40px;
  flex-grow: 2;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
  transition: 0.5s ease-in-out;
}
.dashboard-container .dashboard-wrapper .dashboard-content .dashboard-counter .counter-card strong {
  font-size: 20px;
}
.dashboard-container .dashboard-wrapper .dashboard-content .dashboard-counter .counter-card:nth-child(odd) {
  border: 1px solid #0A80B2;
}
.dashboard-container .dashboard-wrapper .dashboard-content .dashboard-counter .counter-card:nth-child(odd) strong, .dashboard-container .dashboard-wrapper .dashboard-content .dashboard-counter .counter-card:nth-child(odd) i {
  color: #0A80B2;
}
.dashboard-container .dashboard-wrapper .dashboard-content .dashboard-counter .counter-card:nth-child(even) {
  border: 1px solid #FF9E1B;
}
.dashboard-container .dashboard-wrapper .dashboard-content .dashboard-counter .counter-card:nth-child(even) strong, .dashboard-container .dashboard-wrapper .dashboard-content .dashboard-counter .counter-card:nth-child(even) i {
  color: #FF9E1B;
}
.dashboard-container .dashboard-wrapper .dashboard-content .dashboard-counter .counter-card .icon {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 60px;
  padding: 20px 20px 0px 0px;
  transition: 0.25s ease-in-out;
}
.dashboard-container .dashboard-wrapper .dashboard-content .dashboard-counter .counter-card:hover {
  background-color: #F6F6F6;
}
.dashboard-container .dashboard-wrapper .dashboard-content .dashboard-counter .counter-card:hover .icon {
  transform: translateY(-10px);
}
.dashboard-container .dashboard-wrapper .dashboard-content .recent-event {
  width: 100%;
  height: auto;
}
.dashboard-container .dashboard-wrapper .dashboard-content .recent-event .recent-event-card {
  width: 50%;
  height: auto;
  flex-grow: 2;
  text-decoration: none;
  color: #1C1C1C;
  padding: 20px;
  transition: 0.5s ease-in-out;
  border-radius: 6px;
}
.dashboard-container .dashboard-wrapper .dashboard-content .recent-event .recent-event-card .event-image {
  width: 30%;
  height: auto;
  overflow: hidden;
  border-radius: 6px;
}
.dashboard-container .dashboard-wrapper .dashboard-content .recent-event .recent-event-card .event-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.dashboard-container .dashboard-wrapper .dashboard-content .recent-event .recent-event-card .event-content {
  width: 70%;
  height: auto;
  justify-content: center;
}
.dashboard-container .dashboard-wrapper .dashboard-content .recent-event .recent-event-card:hover {
  background-color: #F6F6F6;
}
.dashboard-container .dashboard-wrapper .dashboard-content .recent-event .recent-event-card:nth-child(odd) {
  border: 1px solid #0A80B2;
}
.dashboard-container .dashboard-wrapper .dashboard-content .recent-event .recent-event-card:nth-child(even) {
  border: 1px solid #FF9E1B;
}
.dashboard-container .dashboard-wrapper .dashboard-content form {
  width: 100%;
  justify-content: space-between;
}
.dashboard-container .dashboard-wrapper .dashboard-content .table {
  width: 100%;
  height: auto;
}
.dashboard-container .dashboard-wrapper .dashboard-content .table table {
  width: 100%;
  height: auto;
  border-collapse: collapse;
}
.dashboard-container .dashboard-wrapper .dashboard-content .table table td, .dashboard-container .dashboard-wrapper .dashboard-content .table table th {
  border: 1px solid #e0e0e0;
  height: auto;
  padding: 10px;
}
.dashboard-container .dashboard-wrapper .dashboard-content .dashboard-article-images {
  width: 100%;
  height: 60vh;
  overflow: hidden;
}
.dashboard-container .dashboard-wrapper .dashboard-content .dashboard-article-images img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.dashboard-container .dashboard-wrapper .dashboard-content .dashboard-article {
  color: #1C1C1C;
  line-height: 24px;
}
.dashboard-container .dashboard-wrapper .dashboard-content .nav-back {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
}

.table {
  width: 100%;
  height: auto;
}
.table table {
  width: 100%;
  height: auto;
  border-collapse: collapse;
}
.table table td,
.table table th {
  border: 1px solid #e0e0e0;
  height: auto;
  padding: 10px;
  text-align: center;
}
.table table td img {
  width: 80px;
  height: 80px;
  -o-object-fit: cover;
     object-fit: cover;
}

.dashboard-image {
  width: 100%;
  height: 70vh;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.dashboard-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.userdashboard-container {
  padding-top: 30vh !important;
}

.index-article {
  width: 100%;
  height: auto;
}
.index-article .index-image {
  width: 40%;
  height: 30vh;
  border-radius: 6px;
  overflow: hidden;
}
.index-article .index-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.index-article .index-article-content {
  display: flex;
  height: 30vh;
  align-items: center;
  width: 60%;
}
.index-article .index-article-content .title {
  font-size: 20px;
}
.index-article .index-article-content .date, .index-article .index-article-content a {
  color: #B6B6B6;
  text-decoration: none;
}
.index-article .index-article-content .article-nav a {
  font-weight: 600;
  color: #FF9E1B;
}

.breadcumb a {
  text-decoration: none;
  color: #0A80B2;
}

.cek-card {
  width: 100%;
  height: auto;
  padding: 80px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  line-height: 24px;
}

.cek-found {
  border: 2px solid #0C5395;
  background-color: #79d5fd;
  font-size: 16px;
  color: #0C5395;
}

.cek-not-found {
  border: 2px solid #c73a3a;
  color: #a71a1a;
  background-color: #ff9898;
}
.cek-not-found a {
  color: #a71a1a;
}

.download-wrapper {
  width: 100%;
  height: auto;
}
.download-wrapper .download-header {
  padding: 20px 40px;
  background-color: #0C5395;
  color: white;
}
.download-wrapper .download-header strong {
  font-size: 20px;
}
.download-wrapper .download-body {
  width: 100%;
  padding: 40px;
  background-color: #F6F6F6;
  overflow-x: scroll;
}
.download-wrapper .download-body .download-item {
  width: 100%;
  display: flex;
  flex-direction: row;
}
.download-wrapper .download-body .download-item .number {
  padding: 10px 20px;
  display: flex;
  align-items: center;
  background-color: #FF9E1B;
}
.download-wrapper .download-body .download-item .file-name {
  width: 100%;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  background-color: white;
}
.download-wrapper .download-body .download-item .download-link {
  padding: 10px;
  display: flex;
  flex-direction: row;
  gap: 8px;
  background-color: #0C5395;
  color: white;
  align-items: center;
  text-decoration: none;
}

.btn-media {
  width: 40px;
  height: 40px;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  border: 0px;
  cursor: pointer;
  border-radius: 6px;
}

.btn-facebook {
  background-color: #0C5395;
  color: white;
}

.btn-twitter {
  background-color: #1898cf;
  color: white;
}

.btn-linkedin {
  background-color: #1263af;
  color: white;
}

.btn-wa {
  background-color: #4FCE5D;
  color: white;
}

.btn-like {
  background-color: #db5699;
  color: white;
}

.like {
  align-items: center;
}

.comment .comment-img {
  border-radius: 50%;
}

.replies {
  padding-left: 60px;
}
.replies img {
  border-radius: 50%;
}

.alert-info {
  padding: 20px;
  color: #0C5395;
  background-color: rgba(121, 213, 253, 0.3490196078);
  border-radius: 6px;
}/*# sourceMappingURL=main.css.map */