.footer {
  margin-top: 15px !important;
  color: #fff !important;
  font-size: 0.9em;
  height: 60px; }
  .footer h3 {
    color: #d4af37; }

h1 {
  font-family: 'Dancing Script', cursive; }

p {
  font-weight: 200; }

body {
  font-family: 'Poppins', sans-serif;
  color: #fff;
  background-color: #1c1c1c;
  line-height: 1.6; }

.page-content-0 {
  margin-bottom: 15px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  padding: 1rem; }
  .page-content-0 .page-post-0 {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: #444;
    border-radius: 5px;
    transition: all 0.3s ease; }
    .page-content-0 .page-post-0 .post-image-content {
      order: 1; }
      .page-content-0 .page-post-0 .post-image-content figure {
        height: 200px;
        overflow: hidden; }
        .page-content-0 .page-post-0 .post-image-content figure img {
          width: 100%;
          transition: all 0.5s ease;
          display: block; }
    .page-content-0 .page-post-0 .post-text-content {
      order: 2;
      padding: 1rem;
      display: flex;
      flex-direction: column;
      height: 100%;
      align-items: baseline;
      justify-content: start; }
      .page-content-0 .page-post-0 .post-text-content h2 {
        margin-top: 0;
        font-size: 1.2rem;
        color: #d4af37; }
      .page-content-0 .page-post-0 .post-text-content p {
        margin-bottom: 0;
        color: #fff; }
      .page-content-0 .page-post-0 .post-text-content a {
        margin-top: auto;
        color: #d4af37;
        text-decoration: none; }
        .page-content-0 .page-post-0 .post-text-content a:hover {
          text-decoration: underline; }
    .page-content-0 .page-post-0:hover {
      background: #2b2b2b;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.6); }
      .page-content-0 .page-post-0:hover img {
        transform: scale(1.05); }

.page-content-1 {
  margin-top: 15px;
  display: flex;
  flex-direction: column;
  gap: 50px;
  padding: 30px 20px;
  border-radius: 5px;
  transition: all 0.3s ease; }
  .page-content-1 .page-post-1 {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%; }
    .page-content-1 .page-post-1 .post-image-content {
      width: 100%; }
      .page-content-1 .page-post-1 .post-image-content img {
        display: block;
        max-width: 100%;
        height: auto;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
        transition: transform 0.3s ease; }
    .page-content-1 .page-post-1 .post-text-content {
      width: 100%; }
      .page-content-1 .page-post-1 .post-text-content h2 {
        font-size: 2rem;
        color: #d4af37;
        margin-bottom: 10px; }
      .page-content-1 .page-post-1 .post-text-content .text-post {
        line-height: 1.7;
        color: #fff; }
    .page-content-1 .page-post-1:hover .post-text-content {
      transition: transform 0.3s ease; }
  @media (min-width: 768px) {
  .page-content-1 .page-post-1 {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap; }
    .page-content-1 .page-post-1 .post-image-content {
      flex: 0 0 45%; }

    .page-content-1 .page-post-1 .post-text-content {
      flex: 1 1 auto; }

    .page-content-1 .page-post-1:nth-child(odd) .post-image-content {
      order: 1; }
      .page-content-1 .page-post-1:nth-child(odd) .post-text-content {
        order: 2; }

    .page-content-1 .page-post-1:nth-child(even) .post-image-content {
      order: 2; }
      .page-content-1 .page-post-1:nth-child(even) .post-text-content {
        order: 1; } }

.page-content {
  margin-top: 15px;
  display: flex;
  flex-direction: column;
  gap: 5px; }
  .page-content .page-post {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    border-radius: 5px;
    padding: 30px 20px; }
    .page-content .page-post .post-image-content {
      width: 100%; }
      .page-content .page-post .post-image-content img {
        display: block;
        max-width: 100%;
        height: auto;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
        transition: transform 0.3s ease; }
      .page-content .page-post .post-image-content:hover img {
        transform: scale(1.05); }
    .page-content .page-post .post-text-content {
      width: 100%; }
      .page-content .page-post .post-text-content h2 {
        font-size: 2rem;
        color: #d4af37;
        margin-bottom: 10px; }
      .page-content .page-post .post-text-content .text-post {
        line-height: 1.7;
        color: #fff; }
  @media (min-width: 768px) {
  .page-content .page-post {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap; }
    .page-content .page-post .post-image-content {
      flex: 0 0 45%; }

    .page-content .page-post .post-text-content {
      flex: 1 1 auto; }

    .page-content .page-post:nth-child(even) .post-image-content {
      order: 2; }
      .page-content .page-post:nth-child(even) .post-text-content {
        order: 1; } }

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 5px;
  list-style: none; }
  .breadcrumb li {
    font-size: 1rem;
    color: #d4af37;
    margin-right: 5px; }
    .breadcrumb li:not(:last-child)::after {
      content: '>';
      margin-left: 5px;
      color: #919191; }
    .breadcrumb li a {
      text-decoration: none;
      color: #fff;
      transition: color 0.3s ease; }
      .breadcrumb li a:hover {
        color: #d4af37; }
    .breadcrumb li.active {
      font-weight: 600;
      color: #d4af37; }

.header-of-page {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  padding: 30px 20px;
  transition: all 0.3s ease; }
  .header-of-page .text-content {
    flex-basis: 100%;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5px; }
    .header-of-page .text-content h1 {
      font-size: clamp(2rem, 5vw, 3rem);
      color: #d4af37;
      margin-bottom: 10px;
      text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6); }
    .header-of-page .text-content p {
      font-size: clamp(1rem, 2vw, 1.2rem);
      color: #fff;
      line-height: 1.7; }
  .header-of-page .image-content {
    flex-basis: 100%;
    flex-grow: 1;
    padding: 5px; }
    .header-of-page .image-content img {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
      transition: transform 0.5s ease, box-shadow 0.3s ease; }

@media (min-width: 992px) {
  .header-of-page {
    justify-content: flex-start;
    flex-wrap: nowrap; }

  .text-content {
    flex-basis: 60%;
    padding: 20px; }
    .text-content h1 {
      font-size: 3rem;
      color: #d4af37; }
    .text-content p {
      font-size: 1.2rem;
      color: #fff; }

  .image-content {
    flex-basis: 40%; }
    .image-content img {
      border-radius: 5px;
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.6); } }
