@font-face {
  font-family: "ogg";
  src: url("../fonts/fonnts.com-Ogg_Roman.ttf") format("truetype");
}
@font-face {
  font-family: "ogg bold";
  font-weight: bold;
  src: url("../fonts/Ogg-Bold.ttf") format("truetype");
}
@font-face {
  font-family: "Baskervville";
  src: url("../fonts/Baskervville-VariableFont_wght.ttf") format("truetype");
}
@font-face {
  font-family: "vipnagorgialla";
  src: url("../fonts/Vipnagorgialla Rg.otf") format("opentype");
}
@font-face {
  font-family: "utairline";
  src: url("../fonts/UtAirlinesDemoRegular-JpOzB.otf") format("opentype");
}
@font-face {
  font-family: "ogg";
  src: url("../fonts/fonnts.com-Ogg_Roman.ttf") format("truetype");
}
@font-face {
  font-family: "ogg bold";
  font-weight: bold;
  src: url("../fonts/Ogg-Bold.ttf") format("truetype");
}
@font-face {
  font-family: "Baskervville";
  src: url("../fonts/Baskervville-VariableFont_wght.ttf") format("truetype");
}
@font-face {
  font-family: "vipnagorgialla";
  src: url("../fonts/Vipnagorgialla Rg.otf") format("opentype");
}
@font-face {
  font-family: "utairline";
  src: url("../fonts/UtAirlinesDemoRegular-JpOzB.otf") format("opentype");
}
* {
  text-decoration: none;
  list-style: none;
  box-sizing: border-box;
}

/* Header */
.hidden {
  display: none;
}

ul, li {
  margin: 0;
  padding: 0;
}

#header-section {
  position: sticky;
  top: 0px;
  width: 100%;
  height: auto;
  background-color: #0C0E0C;
  align-items: center;
  z-index: 1000;
  padding: 5px 0px;
}

#header-logo {
  width: 200px;
}

#header-logo img {
  width: 100%;
  height: auto;
}

#mobile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#menu {
  padding-right: 25px;
  padding-left: 25px;
}

.hamburger, .close-hamburger {
  cursor: pointer;
  background-color: transparent;
  border: none;
}

.close-hamburger {
  align-self: self-end;
  margin-top: 12px;
  margin-right: 30px;
}

.hamburger-icon {
  width: 45px;
  transition: transform 0.5s ease;
}

#sidebar {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 200px;
  background-color: #0C0E0C;
  font-family: "ogg";
  box-shadow: -10px 0 10px rgba(0, 0, 0, 0.1);
  transform: translateX(100%);
  transition: transform 0.2s ease-in-out;
  z-index: 999;
}

#sidebar.active {
  transform: translateX(0);
  visibility: visible;
}

#sidebar ul {
  display: flex;
  flex-direction: column;
  text-align: start;
  padding-top: 90px;
  padding-left: 25px;
  gap: 10px;
}

#sidebar ul a {
  font-size: 24px;
  color: white;
  display: block;
  font-weight: 600;
}

#sidebar a {
  font-size: 22px;
  color: white;
  display: block;
}

#sidebar .nav-item a:hover, #sidebar .nav-item a:active {
  color: #A08B63;
  box-shadow: -10px 0 10px rgba(0, 0, 0, 0.1);
}

#sidebar .nav-item a.active {
  color: #A08B63;
}

.hamburger {
  width: 45px;
  height: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  z-index: 1000;
}

.hamburger span {
  height: 5px;
  width: 100%;
  background: #A08B63;
  border-radius: 5px;
  transition: all 0.4s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translateY(17px);
  margin-left: 12px;
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transition: none;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-17px);
  margin-left: 12px;
}

.nav-item .admin-icon {
  display: block !important;
  width: 25px;
  height: auto;
}

.admin-icon .cls-1, .admin-icon .cls-2 {
  fill: white;
}

.admin-icon:hover .cls-1, .admin-icon:hover .cls-2 {
  fill: #A08B63;
}

@media screen and (min-width: 768px) {
  #header-section {
    position: sticky;
    top: 0px;
    height: auto;
    padding-right: 2vw;
    padding-left: 2vw;
    z-index: 1000;
  }
  .hamburger, .close-hamburger, .hamburger-icon {
    display: none;
  }
  #menu {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding-right: 0px;
    padding-left: 0px;
  }
  #sidebar, #sidebar.active {
    display: flex;
    align-items: center;
    justify-content: center;
    position: static;
    height: auto;
    background-color: transparent;
    box-shadow: none;
    width: auto;
    transform: none;
    transition: none;
    margin: 0px;
  }
  #sidebar ul {
    display: flex;
    flex-direction: row;
    padding: 0;
    transform: translateX(0%);
  }
  #sidebar ul .nav-item a {
    position: relative;
    font-size: 20px;
    color: white;
    text-decoration: none;
    width: 100%;
    cursor: pointer;
    padding: 0px 2px;
    text-decoration: none;
  }
  .nav-item a:hover {
    color: #A08B63;
  }
  .nav-item a::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 15px;
    height: 2px;
    width: 0;
    background-color: #A08B63;
    transition: width 0.3s ease;
  }
  .nav-item a:hover::after {
    width: 100%;
    left: 0;
    right: 0;
  }
  .nav-item .admin-icon {
    margin-top: 0px;
    width: 20px;
    height: auto;
  }
  .icon-link::after {
    display: none !important;
  }
}
@media screen and (min-width: 1200px) {
  #header-section {
    padding: 0px 4vw;
  }
  #sidebar ul .nav-item a {
    position: relative;
    font-size: 26px;
    padding: 0px 10px;
  }
  #header-logo {
    width: 275px;
    height: auto;
    padding: 10px 0px;
  }
  .nav-item .admin-icon {
    margin-top: 0px;
    width: 25px;
    height: auto;
  }
}
#footer-section {
  background-color: #0C0E0C;
  height: auto;
  padding-bottom: 25px;
  padding-left: 25px;
  padding-right: 25px;
  justify-content: center;
}

#footer-content {
  gap: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 25px;
  padding: 0px 25px;
}

#am-content, #services-content, #bk-content, #pro-content {
  display: flex;
  flex-direction: column;
  margin-top: 10px;
  gap: 5px;
}

.footer-sub-headers {
  font-size: 1.6rem;
  font-variant: small-caps;
  font-family: "utairline";
  letter-spacing: 3px;
  font-weight: 600;
  color: #A08B63;
}

.footer-links {
  font-size: 1.2rem;
  font-family: "utairline";
  color: white;
  text-decoration: none;
  cursor: pointer;
}

.footer-links:hover, .footer-links:active {
  color: #A08B63;
  text-decoration: underline;
}

#social-content {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  margin: 0 auto;
  margin-top: 50px;
}

.social-icon {
  width: 45px;
  height: auto;
  cursor: pointer;
  padding: 0px;
  margin: 0px;
  -o-object-fit: cover;
     object-fit: cover;
}

.social-icon:hover {
  transform: scale(1.2);
  transition: 0.3s ease-in-out;
}

.social-icon:active {
  transform: scale(1.2);
  transition: 0.3s ease-in-out;
}

.social-icon img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0px;
  padding: 0px;
}

@media screen and (min-width: 768px) {
  #footer-section {
    background-color: #0C0E0C;
    height: auto;
    padding-bottom: 50px;
    padding-left: 50px;
    padding-right: 50px;
    justify-content: center;
  }
  #footer-logo {
    margin-top: 25px;
    width: 400px;
  }
  #footer-logo img {
    width: 100%;
  }
  .footer-sub-headers {
    font-size: 1.7rem;
    font-weight: 600;
    text-decoration: none;
  }
  .footer-links {
    font-size: 1.3rem;
    font-weight: 400;
    color: white;
    text-decoration: none;
    cursor: pointer;
  }
  #footer-content {
    gap: 50px;
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
    padding: 0px;
  }
  #social-content {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    gap: 25px;
    margin: 0 auto;
    margin-top: 25px;
  }
  .social-icon {
    width: 50px;
    height: auto;
    cursor: pointer;
    padding: 0px;
    margin: 0px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .social-icon img {
    display: block;
    width: 100%;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
    margin: 0px;
    padding: 0px;
  }
}
@media screen and (min-width: 1200px) {
  #footer-section {
    background-color: #0C0E0C;
    height: auto;
    padding-left: 75px;
    padding-right: 75px;
    padding-bottom: 75px;
  }
  #footer-logo {
    margin-top: 50px;
    width: 400px;
  }
  #footer-logo img {
    width: 100%;
  }
  #footer-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 0px;
    gap: 0px;
  }
  #about-museum, #services, #book-event, #professionals {
    margin-top: 75px;
  }
  #am-content, #services-content, #bk-content, #pro-content {
    display: flex;
    flex-direction: column;
    margin-top: 15px;
    gap: 5px;
  }
  .footer-sub-headers {
    font-size: 2rem;
    font-weight: 600;
    text-decoration: none;
  }
  .footer-links {
    font-size: 1.5rem;
    font-weight: 400;
    color: white;
    text-decoration: none;
    cursor: pointer;
  }
  #social-section {
    height: auto;
  }
  #social-header {
    margin-top: 100px;
    font-size: 4rem;
    color: white;
    justify-self: center;
  }
  #social-content {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    gap: 25px;
    margin: 0 auto;
    margin-top: 50px;
  }
  .social-icon {
    width: 50px;
    height: auto;
    cursor: pointer;
    padding: 0px;
    margin: 0px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .social-icon img {
    display: block;
    width: 100%;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
    margin: 0px;
    padding: 0px;
  }
}
#login-container {
  width: 100%;
  height: 100vh;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #333223;
}

.login-form {
  justify-self: center;
  align-self: center;
  background-color: #0C0E0C;
  backdrop-filter: blur(15px);
  padding: 75px 100px;
  border-radius: 15px;
  text-align: center;
  color: white;
  max-width: 500px;
}

.login-form h2 {
  margin-bottom: 25px;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 2rem;
}

.input-group {
  margin-bottom: 20px;
}

.input-group input {
  width: 100%;
  padding: 12px 15px;
  border-radius: 8px;
  border: none;
  outline: none;
  background-color: #333223;
  color: white;
  font-size: 14px;
  transition: 0.3s ease;
}

.input-group input::-moz-placeholder {
  color: gray;
}

.input-group input::placeholder {
  color: gray;
}

.input-group input:focus {
  background-color: #A08B63;
  transform: scale(1.1);
}

.input-group input:focus::-moz-placeholder {
  color: black;
}

.input-group input:focus::placeholder {
  color: black;
}

.login-btn {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  background-color: #A08B63;
  color: white;
  transition: 0.3s ease;
}

.login-btn:hover {
  transform: scale(1.1);
  background-color: #333223;
}

.error-message {
  font-size: 2rem;
  background: rgba(255, 0, 0, 0.2);
  padding: 10px;
  margin-bottom: 15px;
  border-radius: 6px;
  font-size: 13px;
  color: #ffb3b3;
}

#social-panel {
  background-color: #A08B63;
  color: white;
}

#admin-social {
  max-width: 1000px;
  margin: 3rem auto;
  padding: 0 1.5rem;
}

.page-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.btn {
  padding: 0.5rem 1.2rem;
  border-radius: 4px;
  font-size: 0.9rem;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--color-accent, #c8a96e);
  color: #000;
}

.btn-danger {
  background: #8b0000;
  color: #fff;
}

.btn-sm {
  padding: 0.3rem 0.8rem;
  font-size: 0.8rem;
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.2rem;
}

.post-card {
  background: var(--color-surface, #1a1a1a);
  border: 1px solid var(--color-border, #333);
  border-radius: 8px;
  overflow: hidden;
}

.post-card img, .post-card video {
  width: 100%;
  height: 160px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.post-card-body {
  padding: 0.8rem;
}

.post-platform {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.6;
}

.post-caption {
  font-size: 0.85rem;
  margin: 0.4rem 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

.post-actions {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.badge {
  display: inline-block;
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  font-size: 0.7rem;
}

.badge-published {
  background: #1a4a1a;
  color: #6fcf6f;
}

.badge-draft {
  background: #3a3a1a;
  color: #cfcf6f;
}

.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 100;
  align-items: center;
  justify-content: center;
}

.modal-overlay.active {
  display: flex;
}

.modal {
  background: var(--color-bg, #111);
  border: 1px solid var(--color-border, #333);
  border-radius: 8px;
  padding: 2rem;
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
}

.modal h2 {
  margin-top: 0;
}

.form-group {
  margin-bottom: 1.2rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 0.4rem;
  opacity: 0.75;
}

.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 0.6rem 0.8rem;
  background: var(--color-surface, #1a1a1a);
  border: 1px solid var(--color-border, #444);
  border-radius: 4px;
  color: inherit;
  font-size: 0.9rem;
  box-sizing: border-box;
}

.form-group textarea {
  min-height: 80px;
  resize: vertical;
}

.drop-zone {
  border: 2px dashed var(--color-border, #444);
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s;
}

.drop-zone:hover, .drop-zone.over {
  border-color: var(--color-accent, #c8a96e);
}

.drop-zone p {
  margin: 0;
  opacity: 0.5;
  font-size: 0.85rem;
}

.preview-box {
  margin-top: 1rem;
  text-align: center;
}

.preview-box img, .preview-box video {
  max-width: 100%;
  max-height: 200px;
  border-radius: 4px;
}

.modal-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: flex-end;
  margin-top: 1.5rem;
}

#feedback {
  padding: 0.6rem 1rem;
  border-radius: 4px;
  margin-bottom: 1rem;
  display: none;
}

#feedback.success {
  background: #1a4a1a;
  color: #6fcf6f;
  display: block;
}

#feedback.error {
  background: #4a1a1a;
  color: #cf6f6f;
  display: block;
}

#loading {
  opacity: 0.5;
  text-align: center;
  padding: 3rem;
}

#event-panel {
  background-color: #A08B63;
  color: white;
}

#admin-events {
  max-width: 1000px;
  margin: 3rem auto;
  padding: 0 1.5rem;
}

.page-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.btn {
  padding: 0.5rem 1.2rem;
  border-radius: 4px;
  font-size: 0.9rem;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background-color: #333223;
  color: white;
}

.btn-primary:hover {
  background-color: #0C0E0C;
}

#header-dashboard {
  font-size: 0.85rem;
  opacity: 0.6;
  text-decoration: none;
}

#header-events {
  margin: 0.25rem 0;
}

#loading {
  opacity: 0.5;
}

#save-btn {
  background-color: #A08B63;
}

#save-btn:hover, #save-btn:active {
  background-color: #333223;
}

.btn-danger {
  background: #8b0000;
  color: #fff;
}

.btn-sm {
  padding: 0.3rem 0.8rem;
  font-size: 0.8rem;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

th, td {
  text-align: left;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--color-border, #333);
}

th {
  opacity: 0.6;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}

.badge {
  display: inline-block;
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  font-size: 0.75rem;
  text-transform: capitalize;
}

.badge-published {
  background: #1a4a1a;
  color: #6fcf6f;
}

.badge-draft {
  background: #3a3a1a;
  color: #cfcf6f;
}

.badge-archived {
  background: #2a2a2a;
  color: #888;
}

/* Modal */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 100;
  align-items: center;
  justify-content: center;
}

.modal-overlay.active {
  display: flex;
}

.modal {
  background: var(--color-bg, #111);
  border: 1px solid var(--color-border, #333);
  border-radius: 8px;
  padding: 2rem;
  width: 100%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
}

.modal h2 {
  margin-top: 0;
}

.form-group {
  margin-bottom: 1.2rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 0.4rem;
  opacity: 0.75;
}

.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 0.6rem 0.8rem;
  background: var(--color-surface, #1a1a1a);
  border: 1px solid var(--color-border, #444);
  border-radius: 4px;
  color: inherit;
  font-size: 0.9rem;
  box-sizing: border-box;
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.modal-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: flex-end;
  margin-top: 1.5rem;
}

#feedback {
  padding: 0.6rem 1rem;
  border-radius: 4px;
  margin-bottom: 1rem;
  display: none;
}

#feedback.success {
  background: #1a4a1a;
  color: #6fcf6f;
  display: block;
}

#feedback.error {
  background: #4a1a1a;
  color: #cf6f6f;
  display: block;
}

#admin-dashboard {
  background-color: #A08B63;
}

#dashboard {
  width: 100%;
  margin: 4rem auto;
  padding: 0 50px;
}

.admin-info {
  font-size: 1.5rem;
}

.dash-header {
  display: flex;
  color: white;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2.5rem;
  font-family: "utairline";
}

.dash-header h1 {
  font-size: 2.5rem;
  margin: 0;
}

.logout-btn .admin-icon {
  display: block;
  width: 30px;
  height: 30px;
}

.dash-icon {
  width: 75px;
  height: auto;
  margin: 0 auto;
}

#camera-icon {
  width: 90px;
  height: auto;
}

.logout-btn .admin-icon:hover .cls-2 {
  fill: #333223;
  display: block;
  width: 40px;
  height: 40px;
}

.dash-grid {
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
}

.dash-card {
  background-color: #0C0E0C;
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s;
  width: 325px;
}

.dash-card:hover {
  transform: scale(1.1);
  transition: all 0.3s ease-in-out;
}

.dash-card h2 {
  font-size: 1.5rem;
  color: white;
  margin: 10px 0px;
}

.dash-card p {
  color: white;
  font-size: 1rem;
  opacity: 0.65;
  margin: 0px;
}

.dash-icon {
  font-size: 2.5rem;
}

.logout-btn {
  display: block;
  transform: scale(1.1);
}

@media screen and (min-width: 768px) {
  #dashboard {
    width: 100%;
    margin: 4rem auto;
    padding: 0 75px;
  }
  .admin-info {
    font-size: 1.5rem;
    font-weight: 400;
  }
  .dash-header {
    display: flex;
    color: white;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
  }
  .dash-header h1 {
    font-size: 3rem;
    margin: 0;
  }
  .logout-btn .admin-icon {
    display: block;
    width: 30px;
    height: 30px;
  }
  .logout-btn .admin-icon:hover .cls-2 {
    fill: #333223;
    display: block;
    width: 40px;
    height: 40px;
  }
  .dash-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 50px;
  }
  .dash-card {
    background-color: #0C0E0C;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.2s;
    width: 300px;
    margin-top: 0px;
  }
  .dash-card:hover {
    transform: scale(1.1);
    transition: all 0.3s ease-in-out;
  }
  .dash-card h2 {
    font-size: 1.5rem;
    color: white;
    margin: 10px 0px;
  }
  .dash-card p {
    color: white;
    font-size: 1rem;
    opacity: 0.65;
    margin: 0px;
  }
  .dash-icon {
    font-size: 2.5rem;
  }
  .logout-btn {
    display: block;
    transform: scale(1.2);
  }
}
@media screen and (min-width: 1200px) {
  #admin-dashboard {
    background-color: #A08B63;
  }
  #dashboard {
    width: 100%;
    margin: 4rem auto;
    padding: 0 100px;
  }
  .admin-info {
    font-size: 1.5rem;
    font-weight: 400;
  }
  .dash-header {
    display: flex;
    color: white;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
  }
  .dash-header h1 {
    font-size: 3rem;
    margin: 0;
  }
  .logout-btn .admin-icon {
    display: block;
    width: 30px;
    height: 30px;
  }
  .logout-btn .admin-icon:hover .cls-2 {
    fill: #333223;
    display: block;
    width: 40px;
    height: 40px;
  }
  .dash-grid {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 1.5rem;
    margin-top: 50px;
  }
  .dash-card {
    background-color: #0C0E0C;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.2s;
    width: 100%;
    max-width: 350px;
    font-family: "utairline";
  }
  .dash-card:hover {
    transform: scale(1.1);
    transition: all 0.3s ease-in-out;
  }
  .dash-card h2 {
    font-size: 1.5rem;
    color: white;
    margin: 0px 0px;
  }
  .dash-card p {
    color: white;
    font-size: 1rem;
    opacity: 0.65;
    margin-top: 5px;
  }
  .dash-icon {
    width: 75px;
    height: auto;
    margin: 0 auto;
  }
  .logout-btn {
    display: block;
    transform: scale(1.3);
  }
}
#messages-panel {
  background-color: #A08B63;
  color: white;
}

#admin-messages {
  max-width: 1000px;
  margin: 3rem auto;
  padding: 0 1.5rem;
}

#header-messages {
  margin: 0.25rem 0;
}

#table-content {
  display: block;
  width: 100%;
  overflow-x: auto;
}

#table-content::-webkit-scrollbar {
  height: 10px;
}

#table-content::-webkit-scrollbar-track {
  background: #333223;
}

#table-content::-webkit-scrollbar-thumb {
  background: #0C0E0C;
  border-radius: 10px;
}

@keyframes arrow-bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-15px);
  }
  60% {
    transform: translateY(-7px);
  }
}
* {
  text-decoration: none;
  list-style: none;
  box-sizing: border-box;
}

html, body {
  scroll-behavior: smooth;
}

#hero-section {
  position: relative;
  width: 100%;
  height: auto;
  background-color: #0C0E0C;
  overflow: hidden;
}

#hero-container {
  position: relative;
  background-color: #0C0E0C;
  height: auto;
}

#loop-video {
  height: auto;
}

#lp-player {
  width: 100%;
  min-height: 60vh;
  -o-object-fit: cover;
     object-fit: cover;
}

.scroll-arrow {
  display: block;
  position: absolute;
  top: 4%;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-arrow i {
  display: block;
  color: #A08B63;
  font-size: 4rem;
  animation: arrow-bounce 2s infinite;
}

.slide-prev, .slide-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  font-size: 2rem;
  padding: 10px 15px;
  cursor: pointer;
  z-index: 10;
}

.slide-prev {
  left: 10px;
}

.slide-next {
  right: 10px;
}

#hs-container {
  position: relative;
  overflow: hidden;
  padding: 0px;
  margin-bottom: 50px;
}

#hs-slider {
  display: flex;
  flex-direction: column;
  gap: 50px;
  margin-top: 50px;
}

.hero-sub-container {
  display: flex;
  flex-direction: column;
  justify-self: center;
  align-self: center;
  padding: 0 25px;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  gap: 10px;
}

.hero-sub-img {
  width: 100%;
  height: auto;
  overflow: hidden;
  background-color: gray;
  transition: all 0.3s ease;
}

.hero-sub-img:hover, .hero-sub-img:active {
  transform: scale(1.01);
  cursor: pointer;
}

.hero-sub-img picture, .hero-sub-img img {
  width: 100%;
  height: 100%;
  display: block;
}

.hero-sub-img img {
  -o-object-fit: cover;
     object-fit: cover;
}

.hero-sub-heading {
  font-size: 1.7rem;
  font-family: "ogg";
  font-weight: 600;
  text-align: center;
  color: white;
  transition: all 0.3s ease-in-out;
}

.hero-sub-heading:hover, .hero-sub-heading:active {
  text-decoration: underline;
  transform: scale(1.05);
  cursor: pointer;
}

#our-museum #intro-video {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.plyr--full-ui .plyr__control--overlaid {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  background: #333223;
  transform: translate(-50%, -50%) scale(1) !important;
  z-index: 2;
  border-radius: 5px;
}

.plyr--full-ui .plyr__control--overlaid:hover {
  background: #333223;
  border-radius: 25px;
}

.plyr__video-wrapper {
  position: relative !important;
}

.plyr--full-ui .plyr__controls button.plyr__control:hover {
  background-color: transparent !important;
  color: #A08B63 !important;
  transform: scale(1.3);
  transition: all 0.3s ease;
}

.plyr--full-ui .plyr__progress__played {
  background-color: #A08B63;
  color: #A08B63;
}

.plyr--full-ui input[type=range]::-webkit-slider-thumb {
  background: #A08B63 !important;
  transform: scale(1.1);
  border-radius: 5px;
  cursor: pointer;
}

.plyr--full-ui input[type=range]::-moz-range-thumb {
  background: #A08B63 !important;
  transform: scale(1.1);
  border-radius: 5px;
  cursor: pointer;
}

.plyr--full-ui input[type=range]::-ms-thumb {
  background: #A08B63 !important;
  transform: scale(1.1);
  border-radius: 50%;
  cursor: pointer;
}

.plyr--full-ui input[type=range]:hover::-webkit-slider-thumb {
  background: #A08B63 !important;
  transform: rotate(90deg) scale(1.5);
}

.plyr--full-ui .plyr__captions {
  display: block;
  padding: 10px;
  padding-bottom: 40px;
}

.plyr__caption {
  background: rgba(12, 14, 12, 0.8) !important;
  color: white !important;
  font-family: "utairline" !important;
  font-size: 1.2rem;
  line-height: 1.5;
  border-radius: 5px;
  padding: 5px 15px;
}

.plyr--captions-active .plyr__controls [data-plyr=captions] {
  color: #A08B63 !important;
}

.intro-video-container {
  border-radius: 25px;
  overflow: hidden;
  border: 5px solid #333223;
}

#our-museum {
  position: relative;
  height: auto;
  background-color: #A08B63;
  padding: 0px 25px 75px 25px;
}

#om-right-content, #om-left-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}

#om-left-content {
  order: 1;
}

#om-right-content {
  order: 2;
}

#om-block-2-4 {
  display: flex;
  flex-direction: column;
  gap: 25px;
  width: 100%;
  order: 2;
  margin: 0 auto;
}

#mobile-om-heading {
  text-align: center;
  margin-top: 50px;
  font-size: 3rem;
  color: white;
  margin-bottom: 25px;
}

#desktop-om-heading {
  display: none;
}

.om-blocks {
  max-width: 500px;
  width: 100%;
  background-color: gray;
}

.om-blocks picture, .om-blocks img {
  width: 100%;
  height: 100%;
  display: block;
}

.om-blocks img {
  -o-object-fit: cover;
     object-fit: cover;
}

#om-block-1 {
  height: 60vw;
  margin-top: 25px;
}

#om-block-2 {
  height: 75vw;
  align-self: center;
}

#om-block-3 {
  height: 100vw;
}

#om-block-4 {
  align-self: center;
  height: 50vw;
  order: 3;
}

#om-text-block {
  background-color: #0C0E0C;
  font-family: "utairline";
  max-width: 500px;
  height: auto;
  align-self: start;
  padding: 0px 25px 25px 25px;
  margin: 0px auto;
  margin-top: 25px;
  order: 1;
}

.om-text-body {
  margin-top: 25px;
  width: auto;
  color: white;
}

#om-text {
  font-size: 1rem;
  font-family: "utairline";
  line-height: 25px;
}

.gutter {
  position: absolute;
}

#gutter-1 {
  bottom: -37px;
  left: 50%;
  transform: translateX(-50%);
  width: 75%;
  height: 75px;
  background-color: #333223;
  z-index: 10;
}

#whats-on {
  position: relative;
  background-color: #0C0E0C;
  padding-bottom: 100px;
  width: 100%;
  height: auto;
}

#wo-heading {
  font-size: 3rem;
  color: white;
  justify-self: center;
  margin-top: 75px;
  padding-bottom: 50px;
}

#wo-content, #ss-content {
  display: flex;
  flex-direction: row;
  overflow-x: hidden;
  scroll-behavior: smooth;
  margin: 0 auto;
}

.wo-blocks, .ss-blocks {
  display: flex;
  flex-direction: column;
  width: 100px;
  height: 450px;
  background-color: #A08B63;
  flex: 0 0 100%;
  flex-shrink: 0;
}

.wo-block-img, .ss-block-img {
  width: 100%;
  height: 250px;
  background-color: #333223;
}

.om-blocks, .ss-blocks {
  max-width: 500px;
  width: 100%;
  background-color: gray;
}

.wo-block-img picture, .wo-block-img img,
.ss-block-img picture, .ss-block-img img {
  width: 100%;
  height: 100%;
  display: block;
}

.wo-block-img img, .ss-block-img img {
  -o-object-fit: cover;
     object-fit: cover;
}

.wo-block-headings, .ss-block-headings {
  color: #333223;
  font-size: 1.5rem;
  font-family: "utairline";
  font-weight: 600;
  padding: 10px 10px 0px 10px;
  line-height: 30px;
}

.wo-block-texts, .ss-block-texts {
  color: white;
  font-size: 1rem;
  font-family: "utairline";
  line-height: 25px;
  padding: 10px;
  font-weight: 400;
}

#wo-content-btn {
  margin-top: 50px;
  padding: 15px 25px;
  font-family: "utairline";
  background-color: #A08B63;
  align-self: center;
  justify-self: center;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  color: white;
  cursor: pointer;
}

#wo-content-btn:hover {
  background-color: #333223;
}

#wo-content-btn:active {
  background-color: #333223;
}

#gutter-2 {
  bottom: -35px;
  background: #333223;
  height: 75px;
  width: 80vw;
  clip-path: polygon(0 0, 100% 0, 90% 100%, 0 100%);
}

#support-us {
  position: relative;
  width: 100%;
  height: auto;
  padding: 50px 25px;
}

#ss-heading {
  margin-top: 25px;
  color: black;
  order: 2;
  font-size: 3rem;
  justify-self: center;
}

#ss-content {
  margin-top: 50px;
  order: 3;
}

#support-us .slide-prev, #support-us .slide-next {
  top: 60%;
}

.ss-blocks {
  width: 100px;
  background-color: #A08B63;
}

#newsletter {
  position: relative;
  width: 100%;
  background-color: #333223;
  height: auto;
  margin: 0 auto;
  padding: 25px 25px 50px 25px;
  z-index: 10;
}

#nl-header {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 10px;
}

#nl-content {
  display: flex;
  flex-direction: column;
  font-family: "utairline";
  gap: 25px;
}

#nl-text {
  color: white;
  font-size: 1rem;
  line-height: 30px;
  width: 100%;
}

#nl-form {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: 0px;
}

.nl-field {
  height: 50px;
  width: 100%;
  padding: 5px;
}

#nl-subscribe {
  font-size: 1.5rem;
  color: white;
  font-weight: 600;
  padding: 10px 50px;
  cursor: pointer;
  background-color: #A08B63;
  border: none;
  margin-top: 10px;
}

#nl-subscribe:hover {
  background-color: #0C0E0C;
  transition: 0.2s ease-in-out;
}

#nl-feedback {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999;
  min-width: 300px;
  max-width: 90%;
  padding: 30px;
  text-align: center;
  border-radius: 15px;
  font-family: "utairline";
  font-size: 1.2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  animation: popIn 0.3s ease-out;
}

.form-success, .form-error {
  background-color: #0C0E0C;
  color: #A08B63;
  border: 3px solid #A08B63;
}

.intro-video-player {
  width: 100%;
  height: auto;
  display: block;
}

@media screen and (min-width: 768px) {
  #hero-section {
    position: relative;
    width: 100%;
    height: auto;
    background-color: #0C0E0C;
    overflow: hidden;
  }
  #hero-container {
    position: relative;
    background-color: #0C0E0C;
    height: auto;
  }
  #loop-video {
    height: auto;
  }
  #lp-player {
    width: 100%;
    height: 92vh;
  }
  .scroll-arrow {
    display: none;
  }
  .slide-prev, .slide-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    font-size: 2rem;
    padding: 10px 15px;
    cursor: pointer;
    z-index: 10;
  }
  .slide-prev {
    left: 10px;
  }
  .slide-next {
    right: 10px;
  }
  #hs-container {
    position: relative;
    overflow: hidden;
    padding: 0px;
    margin-bottom: 25px;
    width: 100%;
  }
  #hs-slider {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0;
    margin-top: 50px;
    padding: 0px 0px;
  }
  .hero-sub-container {
    display: flex;
    flex-direction: column;
    padding: 25px 25px;
    width: 375px;
    height: auto;
  }
  .hero-sub-img {
    background-color: gray;
    width: 100%;
    height: auto;
  }
  .hero-sub-heading {
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
    color: white;
  }
  #our-museum {
    width: 100%;
    max-width: unset;
  }
  #our-museum #intro-video {
    width: 100%;
    max-width: unset;
    margin: 0 auto;
  }
  #intro-video, #intro-player {
    width: 100%;
    max-width: unset;
  }
  .plyr--full-ui .plyr__control--overlaid {
    transform: translate(-50%, -50%) scale(1.25) !important;
  }
  .plyr--full-ui .plyr__controls button.plyr__control {
    transform: scale(1.25);
  }
  .plyr--full-ui .plyr__controls button.plyr__control:hover {
    transform: scale(1.5);
  }
  .plyr--full-ui input[type=range]::-webkit-slider-thumb {
    transform: scale(1.25);
  }
  .plyr--full-ui input[type=range]:hover::-webkit-slider-thumb {
    background: #A08B63 !important;
    transform: rotate(90deg) scale(1.5);
  }
  #our-museum {
    position: relative;
    width: 100%;
    height: auto;
    background-color: #A08B63;
    padding: 0px 25px 75px 25px;
    gap: 25px;
  }
  #om-right-content, #om-left-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }
  #om-left-content {
    display: flex;
    flex-direction: column;
    justify-self: center;
    width: 100%;
  }
  #om-right-content {
    order: 2;
  }
  #mobile-om-heading {
    text-align: center;
    margin-top: 50px;
    font-size: 5rem;
    color: white;
    margin-bottom: 25px;
  }
  .om-blocks {
    background-color: gray;
    width: 100%;
    max-width: none;
  }
  #om-block-1 {
    width: 100%;
    height: 60vw;
    margin-top: 25px;
  }
  #om-block-2 {
    height: 40vw;
    width: 100%;
    order: 2;
  }
  #om-block-3 {
    height: 50vw;
    width: 100%;
  }
  #om-block-4 {
    height: 50vw;
    width: 100%;
    order: 3;
  }
  #om-text-block {
    display: flex;
    justify-content: center;
    background-color: #0C0E0C;
    width: 100%;
    max-width: none;
    height: auto;
    align-self: start;
    padding: 0px 25px 25px 25px;
    margin-top: 25px;
    order: 1;
  }
  .om-text-body {
    margin-top: 25px;
    width: auto;
    color: white;
  }
  #om-text {
    font-size: 1rem;
    line-height: 25px;
  }
  #whats-on {
    position: relative;
    background-color: #0C0E0C;
    padding-bottom: 100px;
    width: 100%;
    height: auto;
  }
  #wo-heading {
    font-size: 3rem;
    color: white;
    justify-self: center;
    margin-top: 75px;
    padding-bottom: 50px;
  }
  #wo-content, #ss-content {
    display: flex;
    flex-direction: row;
    overflow-x: hidden;
    scroll-behavior: smooth;
    margin: 0 auto;
  }
  .wo-blocks, .ss-blocks {
    display: flex;
    flex-direction: column;
    width: 125px;
    height: 475px;
  }
  .wo-block-img, .ss-block-img {
    width: 100%;
    height: 250px;
    background-color: #333223;
  }
  .wo-block-headings {
    color: #333223;
    padding: 10px 10px 0px 10px;
    font-size: 1.5rem;
  }
  .wo-block-texts {
    color: white;
    padding: 10px;
    font-size: 1.5rem;
  }
  #gutter-2 {
    bottom: -35px;
    background: #333223;
    height: 75px;
    width: 80vw;
    clip-path: polygon(0 0, 100% 0, 90% 100%, 0 100%);
  }
  #support-us {
    position: relative;
    width: 100%;
    height: auto;
    padding: 50px 25px;
  }
  #ss-heading {
    margin-top: 25px;
    color: black;
    order: 2;
    font-size: 3rem;
    justify-self: center;
  }
  #ss-content {
    margin-top: 50px;
    order: 3;
  }
  .ss-block-headings {
    font-size: 1.5rem;
    padding: 10px 10px 0px 10px;
  }
  #support-us .slide-prev, #support-us .slide-next {
    top: 60%;
  }
  .block-text {
    color: white;
    padding: 10px;
  }
  #newsletter {
    width: 100%;
    background-color: #333223;
    height: auto;
    margin: 0 auto;
    padding: 25px 50px;
  }
  #nl-header {
    font-size: 3rem;
    margin-bottom: 25px;
  }
  #nl-content {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-self: center;
    text-align: start;
    gap: 3vw;
  }
  #nl-text {
    color: white;
    font-size: 1rem;
    width: 600px;
  }
  #nl-form {
    display: flex;
    flex-direction: column;
  }
  .nl-field {
    height: 50px;
    width: 40vw;
    padding: 5px;
  }
  #nl-form-con {
    align-self: flex-start;
  }
  #nl-subscribe {
    font-size: 1.5rem;
    padding: 10px 50px;
  }
}
@media screen and (min-width: 1200px) {
  #hero-header br {
    display: block;
  }
  .scroll-arrow {
    display: none;
  }
  #hero-section {
    position: relative;
    width: 100%;
    height: auto;
    background-color: #0C0E0C;
    overflow: hidden;
  }
  #hero-container {
    position: relative;
    height: auto;
  }
  #lp-player {
    height: 90vh;
  }
  #hero-header {
    position: relative;
    top: 550px;
    color: white;
    font-size: 6rem;
    z-index: 2;
    margin-left: 4.5vw;
    text-align: start;
  }
  #hsi-1, #hsi-3 {
    margin-top: 0px;
    padding-bottom: 0px;
  }
  #hs-container {
    position: relative;
    overflow: hidden;
    padding: 50px 3vw;
    margin: 0px;
  }
  #hs-slider {
    display: flex;
    flex-direction: row;
    padding: 0px;
    margin: 0px;
    gap: 0px;
  }
  .hs-prev, .hs-next {
    display: none;
  }
  .hero-sub-container {
    display: flex;
    flex-direction: column;
    flex: auto;
    width: 28vw;
    height: 23vw;
    gap: 10px;
    padding: 0px 25px;
  }
  .hero-sub-img {
    width: 100%;
    height: 100%;
    background-color: gray;
  }
  .hero-sub-heading {
    font-size: 2vw;
    font-weight: 600;
    color: white;
  }
  .sub-headings {
    font-weight: 800;
    color: white;
  }
  #our-museum {
    position: relative;
    width: 100%;
    height: auto;
    background-color: #A08B63;
    padding: 0px 0px 100px 0px;
  }
  #mobile-om-heading {
    display: none;
  }
  #om-left-content {
    display: block;
  }
  #om-right-content {
    display: block;
    order: 2;
  }
  #intro-video {
    padding-top: 75px;
    order: 0;
  }
  #desktop-om-heading {
    display: block;
    color: white;
    text-align: start;
    margin-top: 75px;
    font-size: 6vw;
  }
  #om-text-block {
    margin: 0px;
    width: 500px;
  }
  .om-blocks {
    background-color: gray;
    width: 500px;
  }
  #om-block-1 {
    height: 25vw;
    width: 40vw;
    margin-top: 25px;
  }
  #om-block-2 {
    height: 25vw;
    width: 35vw;
    margin-top: 50px;
  }
  #om-block-3 {
    height: 595px;
    width: 40vw;
    margin-top: 50px;
  }
  #om-block-4 {
    height: 330px;
    width: 30vw;
    margin-top: 25px;
    margin-left: 5vw;
  }
  #intro-video {
    padding-top: 50px;
    order: 3;
  }
  .plyr--full-ui .plyr__control--overlaid {
    transform: translate(-50%, -50%) scale(1.5) !important;
  }
  .plyr--full-ui .plyr__controls button.plyr__control {
    transform: scale(1.5);
  }
  .plyr--full-ui .plyr__controls button.plyr__control:hover {
    transform: scale(1.75);
  }
  .plyr--full-ui input[type=range]::-webkit-slider-thumb {
    transform: scale(1.5);
  }
  .plyr--full-ui input[type=range]:hover::-webkit-slider-thumb {
    background: #A08B63 !important;
    transform: rotate(90deg) scale(1.75);
  }
  #om-text-block {
    display: flex;
    justify-content: center;
    background-color: #0C0E0C;
    width: 38vw;
    height: auto;
    align-self: start;
    padding-bottom: 50px;
    order: 1;
  }
  .om-text-body {
    margin-top: 25px;
    color: white;
  }
  #om-text {
    font-size: 1.5rem;
    line-height: 25px;
  }
  .om-blocks {
    order: 3;
  }
  .block-text {
    color: white;
    padding: 10px;
  }
  .gutter {
    position: absolute;
  }
  #gutter-2 {
    bottom: -37px;
    left: 0px;
    transform: translateX(0%);
    width: 75%;
    height: 75px;
    background-color: #333223;
    z-index: 10;
  }
  .slide-next, .slide-prev {
    display: none;
  }
  #whats-on {
    position: relative;
    background-color: #0C0E0C;
    padding-bottom: 100px;
    width: 100%;
    height: auto;
  }
  #wo-heading {
    font-size: 5rem;
    justify-self: center;
    margin-top: 75px;
    padding-bottom: 50px;
  }
  #wo-content, #ss-content {
    display: flex;
    flex-direction: row;
    justify-content: center;
    overflow-x: unset;
    gap: 4vw;
    margin: 0 auto;
  }
  .wo-blocks, .ss-blocks {
    width: 350px;
    height: 450px;
    flex: 0%;
  }
  .wo-block-img, .ss-block-img {
    width: 100%;
    height: 250px;
    background-color: #333223;
  }
  .wo-block-headings, .ss-block-headings {
    color: #333223;
    padding: 10px 10px 0px 10px;
    font-size: 1.5rem;
  }
  .wo-block-texts {
    color: white;
    padding: 10px;
    font-size: 1.2rem;
  }
  #gutter-2 {
    bottom: -75px;
    background: #333223;
    height: 125px;
    width: 80vw;
    clip-path: polygon(0 0, 100% 0, 90% 100%, 0 100%);
  }
  #support-us {
    background-color: white;
    width: 100%;
    height: auto;
    padding-bottom: 100px;
  }
  #gutter-3 {
    position: relative;
    right: -25px;
    margin-top: 125px;
    background: #333223;
    height: 125px;
    clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%);
    order: 1;
  }
  #ss-heading {
    margin-top: 50px;
    color: black;
    order: 2;
    font-size: 4.5rem;
    justify-self: center;
  }
  .ss-block-texts {
    color: white;
    padding: 10px;
    font-size: 1.2rem;
  }
  #ss-content {
    margin-top: 50px;
    order: 3;
  }
  #newsletter {
    width: 100%;
    background-color: #333223;
    height: auto;
    margin: 0 auto;
    padding: 75px 0px;
  }
  #nl-header {
    font-size: 4rem;
    justify-self: center;
    margin-bottom: 25px;
  }
  #nl-content {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-self: center;
    text-align: start;
    gap: 3vw;
  }
  #nl-text {
    color: white;
    font-size: 1.5rem;
    width: 600px;
  }
  #nl-form {
    display: flex;
    flex-direction: column;
  }
  .nl-field {
    height: 50px;
    width: 40vw;
    padding: 5px;
  }
  #nl-form-con {
    align-self: flex-start;
  }
  #nl-subscribe {
    font-size: 1rem;
    padding: 10px 50px;
  }
}
body {
  overflow-x: hidden;
  max-width: 100%;
}

#des-bh-heading {
  display: none;
}

#bob-hero {
  background-color: #0C0E0C;
  display: flex;
  justify-content: end;
  height: 100vh;
  overflow: hidden;
  width: 100%;
  padding: 0px 0px;
}

.hero-container {
  display: flex;
  flex-direction: column;
  position: relative;
  background-color: #0C0E0C;
  width: 100%;
  height: auto;
  border-radius: 0;
  overflow: hidden;
  margin: 0 auto;
}

.preview-row {
  position: relative;
  bottom: unset;
  left: unset;
  top: unset;
  right: unset;
  display: flex;
  gap: 17px;
  overflow-x: scroll;
  overflow-y: auto;
  padding: 25px 0px;
  width: 90%;
  max-width: unset;
  height: auto;
  z-index: 100;
  margin: 5px 25px;
}

.preview-row .item {
  width: 120px;
  height: 180px;
  border-radius: 15px;
  flex-shrink: 0;
  cursor: pointer;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
  overflow: hidden;
  margin-left: 10px;
}

.preview-row .item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  pointer-events: none;
  display: block;
}

.preview-row .item:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.preview-row .item.active {
  transform: scale(1.15);
  border: 3px solid #A08B63;
}

.preview-row .item .content {
  display: none;
}

.active-display {
  position: relative;
  width: 100%;
  height: 65vh;
  inset: 0;
  background-size: cover;
  background-position: center top;
  z-index: 1;
  flex-shrink: 0;
}

.grow-clone {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.5s ease;
}

.grow-clone.grow {
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  border-radius: 0;
}

.grow-clone {
  position: relative;
  top: 0%;
  left: 100px;
  width: 350px;
  color: #fff;
}

.preview-row::-webkit-scrollbar {
  display: block;
  height: 10px;
}

.preview-row::-webkit-scrollbar-thumb {
  background-color: #A08B63;
  border-radius: 10px;
  cursor: pointer;
}

.grow-clone {
  position: absolute;
  top: 0;
  left: 0;
  width: 140px;
  height: 200px;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  z-index: 0;
  transition: all 0.5s ease;
}

.grow-clone.grow {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.clone-content {
  position: absolute;
  bottom: 10%;
  left: 25px;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  color: #fff;
}

.clone-content .name,
.clone-content .des,
.clone-content button {
  opacity: 1;
  animation: none;
}

.nav-buttons {
  width: 100%;
  text-align: center;
  position: absolute;
  bottom: 30px;
  display: flex;
  justify-content: center;
  gap: 15px;
  z-index: 20;
}

.nav-buttons button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid #fff;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  cursor: pointer;
  transition: 0.3s;
}

.nav-buttons button:hover {
  background: white;
  color: black;
}

.content .name {
  font-size: 2rem;
  text-transform: uppercase;
  font-family: "vipnagorgialla";
  font-weight: bold;
  opacity: 0;
  animation: animate 1s ease-in-out 1 forwards;
}

.content .des {
  font-size: 1.5rem;
  font-family: "ogg";
  font-weight: 800;
  margin: 10px 0 20px;
  opacity: 0;
  animation: animate 1s ease-in-out 0.3s 1 forwards;
}

.content button {
  padding: 5px 25px;
  border: none;
  font-size: 1.5rem;
  font-weight: 400;
  font-family: "utairline";
  background-color: #333223;
  color: white;
  cursor: pointer;
  opacity: 0;
  animation: animate 1s ease-in-out 0.3s 1 forwards;
}
.content button:hover {
  background-color: #0C0E0C;
}
.content button {
  margin-top: 10px;
}

@keyframes animate {
  from {
    opacity: 0;
    transform: translate(0, 100px);
    filter: blur(33px);
  }
  to {
    opacity: 1;
    transform: translate(0);
    filter: blur(0);
  }
}
#bob-history {
  width: 100%;
  height: auto;
  background-color: #0C0E0C;
  padding: 0px 25px;
  padding-bottom: 50px;
}

#bh-img {
  height: 400px;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

#bh-img picture, #bh-img img {
  width: 100%;
  height: 100%;
  display: block;
}

#bh-img img {
  -o-object-fit: cover;
     object-fit: cover;
}

#bh-heading {
  font-size: 2.5rem;
  color: white;
  text-align: center;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  margin-bottom: 25px;
}

#bh-sub-heading {
  font-size: 1.5rem;
  font-family: "utairline";
  line-height: 30px;
}

.bh-text {
  color: white;
  font-size: 1rem;
  font-family: "utairline";
  margin: 25px 0px;
  line-height: 25px;
  width: 100%;
  max-width: 500px;
  margin: 25px auto;
}

#bh-content {
  height: auto;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

#bh-btn {
  padding: 10px 15px;
  font-size: 1rem;
  font-family: "utairline";
  letter-spacing: 1px;
  font-weight: 600;
  color: white;
  background-color: #333223;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

#bh-btn:hover {
  background-color: #A08B63;
  cursor: pointer;
}

#bob-description {
  width: 100%;
  height: auto;
  background-color: #333223;
  padding: 50px 25px;
}

#bd-heading {
  font-size: 2.5rem;
  color: white;
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
  margin-bottom: 25px;
}

#bd-content {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 500px;
  gap: 5px;
  margin: 0 auto;
  margin-top: 25px;
  order: 2;
}

.bd-text {
  font-size: 1rem;
  font-family: "utairline";
  font-weight: 100;
  line-height: 25px;
  color: white;
  margin-bottom: 25px;
  text-align: center;
}

#bd-btn {
  align-self: center;
  font-size: 1.2rem;
  font-family: "utairline";
  letter-spacing: 1px;
  font-weight: 600;
  border: none;
  background-color: #0C0E0C;
  color: white;
  width: auto;
  padding: 10px 20px;
  margin-bottom: 50px;
  cursor: pointer;
}

#bd-btn a {
  color: white;
}

#bd-btn:hover {
  background-color: #A08B63;
  cursor: pointer;
}

#bd-img {
  width: 100%;
  max-width: 500px;
  height: 400px;
  margin: 0 auto;
  order: 1;
}

#bd-img picture, #bd-img img {
  width: 100%;
  height: 100%;
  display: block;
}

#bd-img img {
  -o-object-fit: cover;
     object-fit: cover;
}

#bob-airplane {
  background-color: #A08B63;
  padding: 50px 25px 100px 25px;
}

#ba-model {
  position: relative;
  width: 100%;
  max-width: 500px;
  height: 400px;
  overflow: hidden;
  margin: 0 auto;
  background-color: gray;
}

model-viewer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  -o-object-fit: cover;
     object-fit: cover;
  border: 3px solid #333223;
}

.ba-gif {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.5;
}

#ba-heading-sub {
  display: none;
}

#ba-heading-main {
  display: block;
}

.ba-heading {
  color: #333223;
  text-align: center;
  font-family: "utairline";
  font-size: 2.2rem;
  margin-bottom: 25px;
}

#ba-navbar {
  display: flex;
  flex-direction: column;
  gap: 25px;
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 500px;
  margin: 25px auto;
}

#ba-nav {
  display: flex;
  justify-content: flex-start;
  gap: 25px;
}

#ba-nav .ba-tab {
  position: relative;
  font-size: 1.5rem;
  font-family: "utairline";
  letter-spacing: 2px;
  font-weight: 600;
  color: white;
  border: none;
  background: transparent;
  cursor: pointer;
}

#ba-nav .ba-tab:hover {
  color: #333223;
}

#ba-nav .ba-tab::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 5px;
  background-color: #333223;
  transition: width 0.3s ease;
}

#ba-nav .ba-tab:hover::after {
  width: 100%;
}

#ba-nav .ba-tab.active {
  color: #333223;
}

#ba-nav .ba-tab.active::after {
  width: 100%;
}

#ba-text {
  justify-self: center;
  color: white;
  font-size: 1rem;
  line-height: 25px;
  font-family: "utairline";
  width: 100%;
  max-width: 500px;
}

#ba-images {
  display: grid;
  flex-direction: row;
  grid-template-columns: repeat(2, 1fr);
  align-items: self-start;
  gap: 25px;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.ba-img {
  width: 100%;
  height: auto;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 5px solid transparent;
  border-radius: 10px;
  overflow: hidden;
}

.ba-img:hover {
  transform: scale(1.04);
}

.ba-img.active {
  border-color: #333223;
}

.ba-img picture, .ba-img img {
  width: 100%;
  height: 100%;
  display: block;
}

.ba-img img {
  -o-object-fit: cover;
     object-fit: cover;
}

#ba-model img, .ba-gif {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

#bob-gallery {
  position: relative;
  height: auto;
  padding: 0px 25px 25px 25px;
}

#gutter-6 {
  background: #333223;
  clip-path: polygon(0 0, 100% 0, 90% 100%, 0 100%);
  position: absolute;
  top: -50px;
  left: -25px;
  width: 80%;
  height: 75px;
  z-index: 2;
}

#bg-main {
  position: absolute;
  top: -25px;
  position: relative;
  width: 100%;
  max-width: 500px;
  height: 400px;
  z-index: 1;
  margin: 0 auto;
}

#bg-main picture, #bg-main img {
  width: 100%;
  height: 100%;
  display: block;
}

#bg-main img {
  -o-object-fit: cover;
     object-fit: cover;
}

#bg-content {
  position: relative;
  width: 100%;
  max-width: 500px;
  bottom: 0px;
  margin: 0 auto;
  display: flex;
  overflow-x: auto;
  flex-direction: row;
  gap: 15px;
}

.bg-img {
  flex: 0 0 30%;
  height: 25vw;
  max-height: 140px;
  cursor: pointer;
}

.bg-img picture, .bg-img img {
  width: 100%;
  height: 100%;
  display: block;
}

.bg-img img {
  -o-object-fit: cover;
     object-fit: cover;
}

#bg-content::-webkit-scrollbar {
  display: none;
}

@media screen and (min-width: 768px) {
  #bob-hero {
    position: relative;
    background-color: #0C0E0C;
    display: flex;
    justify-content: end;
    height: 100vh;
    overflow: hidden;
    width: 100%;
    padding: 0px 0px 0px 0px;
  }
  .bob-slider {
    display: flex;
    flex-direction: row;
    gap: 0px;
    height: 100%;
    width: 100%;
  }
  .hero-container {
    display: flex;
    flex-direction: row;
    background-color: #0C0E0C;
    width: 100%;
    height: 90%;
    border-radius: 0;
    overflow: hidden;
  }
  .preview-row {
    align-self: center;
    position: relative;
    left: unset;
    transform: translateX(0%);
    display: flex;
    flex-direction: column;
    gap: 50px;
    overflow-x: auto;
    overflow-y: scroll;
    direction: rtl;
    padding: 25px;
    width: auto;
    max-width: unset;
    height: 100%;
    z-index: 100;
    order: 1;
    margin-top: 75px;
  }
  .preview-row .item {
    width: 125px;
    height: 160px;
    border-radius: 15px;
    flex-shrink: 0;
    cursor: pointer;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
    overflow: hidden;
    margin-top: -5px;
  }
  .preview-row .item img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: top;
       object-position: top;
    pointer-events: none;
    display: block;
  }
  .preview-row .item:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  }
  .preview-row .item.active {
    transform: scale(1.15);
    border: 3px solid #A08B63;
  }
  .preview-row .item .content {
    display: none;
  }
  .active-display {
    inset: 0;
    background-size: cover;
    background-position: center top;
    height: 100vh;
    z-index: 1;
    order: 2;
  }
  .grow-clone {
    position: absolute;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.5s ease;
  }
  .grow-clone.grow {
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    border-radius: 0;
  }
  .grow-clone .clone-content {
    position: absolute;
    top: 75%;
    left: 50px;
    width: auto;
    color: #fff;
  }
  .preview-row::-webkit-scrollbar {
    display: block;
    width: 5px;
  }
  .preview-row::-webkit-scrollbar-thumb {
    background-color: #A08B63;
    border-radius: 10px;
  }
  .active-display {
    position: relative;
    flex: 1;
    inset: 0;
    z-index: 1;
  }
  .grow-clone {
    position: absolute;
    top: 0;
    left: 0;
    width: 140px;
    height: 200px;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    z-index: 0;
    transition: all 0.5s ease;
  }
  .grow-clone.grow {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
  }
  .clone-content {
    position: absolute;
    top: 50%;
    left: 100px;
    transform: translateY(-50%);
    width: 350px;
    color: #fff;
  }
  .clone-content .name,
  .clone-content .des,
  .clone-content button {
    opacity: 1;
    animation: none;
  }
  .nav-buttons {
    width: 100%;
    text-align: center;
    position: absolute;
    bottom: 30px;
    display: flex;
    justify-content: center;
    gap: 15px;
    z-index: 20;
  }
  .nav-buttons button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid #fff;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    cursor: pointer;
    transition: 0.3s;
  }
  .nav-buttons button:hover {
    background: white;
    color: black;
  }
  .content .name {
    font-size: 2.5rem;
    text-transform: uppercase;
    font-weight: bold;
    opacity: 0;
    animation: animate 1s ease-in-out 1 forwards;
  }
  .content .des {
    font-size: 2rem;
    margin: 10px 0 20px;
    opacity: 0;
    animation: animate 1s ease-in-out 0.3s 1 forwards;
  }
  .content button {
    padding: 5px 25px;
    border: none;
    font-size: 1.5rem;
    font-weight: 400;
    font-family: "utairline";
    background-color: #333223;
    color: white;
    cursor: pointer;
    opacity: 0;
    animation: animate 1s ease-in-out 0.3s 1 forwards;
  }
  .content button:hover {
    background-color: #0C0E0C;
  }
  .content button {
    margin-top: 10px;
  }
  .nav-buttons {
    width: 100%;
    text-align: center;
    position: absolute;
    bottom: 30px;
    display: flex;
    justify-content: center;
    gap: 15px;
    z-index: 20;
  }
  .nav-buttons button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid #fff;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    cursor: pointer;
    transition: 0.3s;
  }
  @keyframes animate {
    from {
      opacity: 0;
      transform: translate(0, 100px);
      filter: blur(33px);
    }
    to {
      opacity: 1;
      transform: translate(0);
      filter: blur(0);
    }
  }
  #bob-history {
    width: 100%;
    height: auto;
    background-color: #0C0E0C;
    padding: 0px 25px;
    padding-bottom: 50px;
  }
  #bh-img {
    width: 100%;
    height: 600px;
    max-width: 800px;
    margin: 0 auto;
  }
  #bh-heading {
    font-size: 3.5rem;
    color: white;
    text-align: start;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    margin-bottom: 25px;
  }
  #bh-sub-heading {
    font-size: 1.7rem;
    margin-top: 10px;
  }
  .bh-text {
    color: white;
    font-size: 1.2rem;
    line-height: 25px;
    width: 100%;
    max-width: 800px;
    margin: 0px auto;
    margin-top: 5px;
  }
  #bh-content {
    display: flex;
    flex-direction: column;
    height: auto;
    width: 100%;
    max-width: 800px;
    gap: 20px;
    margin: 0 auto;
    margin-top: 25px;
  }
  #bh-btn {
    align-self: flex-end;
    padding: 12px 15px;
    width: 225px;
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    background-color: #333223;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  #bob-description {
    width: 100%;
    height: auto;
    background-color: #333223;
    padding: 50px 75px 50px 75px;
  }
  #bd-heading {
    text-align: start;
    font-size: 3rem;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    margin-bottom: 25px;
  }
  #bd-content {
    display: flex;
    flex-direction: column;
    gap: 0px;
    max-width: unset;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
  }
  .bd-text {
    font-size: 1.2rem;
    text-align: start;
    color: white;
    margin: 25px 0px;
  }
  #bd-btn {
    align-self: self-end;
    font-size: 1.2rem;
    font-weight: 600;
    border: none;
    background-color: #0C0E0C;
    color: white;
    width: auto;
    padding: 12px 15px;
    cursor: pointer;
  }
  #bd-img {
    display: block;
    width: 100%;
    height: 600px;
    max-width: 800px;
  }
  #bob-airplane {
    background-color: #A08B63;
    padding: 50px 25px 100px 25px;
  }
  #ba-model {
    position: relative;
    height: 700px;
    overflow: hidden;
    display: flex;
    align-items: end;
    justify-content: center;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    background-color: gray;
  }
  model-viewer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }
  .ba-heading {
    color: #333223;
    text-align: center;
    font-family: "utairline";
    font-size: 2.7rem;
    margin-bottom: 25px;
  }
  #ba-navbar {
    display: flex;
    flex-direction: column;
    gap: 25px;
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 800px;
    margin: 25px auto;
  }
  #ba-nav {
    display: flex;
    justify-content: flex-start;
    gap: 25px;
  }
  #ba-nav .ba-tab {
    position: relative;
    font-size: 2rem;
    font-family: "utairline";
    letter-spacing: 2px;
    font-weight: 600;
    color: white;
    border: none;
    background: transparent;
    cursor: pointer;
  }
  #ba-nav .ba-tab:hover {
    color: #333223;
  }
  #ba-nav .ba-tab::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 5px;
    background-color: #333223;
    transition: width 0.3s ease;
  }
  #ba-nav .ba-tab:hover::after {
    width: 100%;
  }
  #ba-nav .ba-tab.active {
    color: #333223;
  }
  #ba-nav .ba-tab.active::after {
    width: 100%;
  }
  #ba-text {
    justify-self: center;
    color: white;
    font-size: 1.2rem;
    line-height: 25px;
    font-family: "utairline";
    width: 100%;
    max-width: 800px;
  }
  #ba-images {
    display: grid;
    flex-direction: row;
    grid-template-columns: repeat(4, 1fr);
    align-items: self-start;
    gap: 10px;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
  }
  #bob-gallery {
    position: relative;
    height: auto;
    padding-bottom: 25px;
  }
  #gutter-6 {
    background: #333223;
    clip-path: polygon(0 0, 100% 0, 90% 100%, 0 100%);
    position: absolute;
    top: -50px;
    width: 80%;
    height: 75px;
    z-index: 2;
  }
  #bg-main {
    position: absolute;
    top: -25px;
    margin: 0px 0px;
    position: relative;
    height: 500px;
    z-index: 1;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
  }
  #bg-content {
    position: relative;
    bottom: 0px;
    margin: 0px 0px;
    display: flex;
    overflow-x: auto;
    flex-direction: row;
    gap: 15px;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
  }
  .bg-img {
    flex: 0 0 25%;
    height: 25vw;
    max-height: 140px;
  }
  #bg-content::-webkit-scrollbar {
    display: none;
  }
}
@media screen and (min-width: 1200px) {
  #ba-heading-sub {
    display: block;
  }
  #ba-heading-main {
    display: none;
  }
  #bd-heading-main {
    display: none;
  }
  #bd-heading {
    display: block;
  }
  #bob-hero {
    position: relative;
    background-color: #0C0E0C;
    display: flex;
    justify-content: end;
    height: 100vh;
    overflow: hidden;
    width: 100%;
    padding: 0px 75px 0px 50px;
  }
  .bob-slider {
    display: flex;
    gap: 25px;
    height: 100%;
    margin: 0 auto;
  }
  .hero-container {
    background-color: #0C0E0C;
    width: 100%;
    height: 90%;
    border-radius: 0;
    overflow: hidden;
  }
  .preview-row {
    align-self: center;
    position: relative;
    left: unset;
    transform: translateX(0%);
    display: flex;
    flex-direction: column;
    gap: 35px;
    overflow-x: auto;
    overflow-y: scroll;
    direction: rtl;
    padding: 25px;
    width: auto;
    max-width: unset;
    height: 100%;
    z-index: 100;
    order: 1;
    margin-top: 50px;
  }
  .preview-row .item {
    width: 180px;
    height: 240px;
    border-radius: 15px;
    flex-shrink: 0;
    cursor: pointer;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
    overflow: hidden;
    margin-top: -7px;
    margin-bottom: 15px;
  }
  .preview-row .item img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: top;
       object-position: top;
    pointer-events: none;
    display: block;
  }
  .preview-row .item:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  }
  .preview-row .item.active {
    transform: scale(1.15);
    border: 4px solid #A08B63;
  }
  .preview-row .item .content {
    display: none;
  }
  .active-display {
    inset: 0;
    background-size: cover;
    background-position: center top;
    z-index: 1;
    order: 2;
  }
  .grow-clone {
    position: absolute;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.5s ease;
  }
  .grow-clone.grow {
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    border-radius: 0;
  }
  .grow-clone .clone-content {
    position: absolute;
    top: 60%;
    left: 75px;
    width: 100%;
    max-width: 500px;
    color: #fff;
  }
  .preview-row::-webkit-scrollbar {
    display: block;
    width: 5px;
  }
  .preview-row::-webkit-scrollbar-thumb {
    background-color: #A08B63;
    border-radius: 10px;
  }
  .active-display {
    position: relative;
    flex: 1;
    inset: 0;
    z-index: 1;
  }
  .grow-clone {
    position: absolute;
    top: 0;
    left: 0;
    width: 140px;
    height: 200px;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    z-index: 0;
    transition: all 0.5s ease;
  }
  .grow-clone.grow {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
  }
  .clone-content {
    position: absolute;
    top: 75%;
    left: 100px;
    transform: translateY(-50%);
    color: #fff;
  }
  .clone-content .name,
  .clone-content .des,
  .clone-content button {
    opacity: 1;
    animation: none;
  }
  .nav-buttons {
    width: 100%;
    text-align: center;
    position: absolute;
    bottom: 30px;
    display: flex;
    justify-content: center;
    gap: 15px;
    z-index: 20;
  }
  .nav-buttons button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid #fff;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    cursor: pointer;
    transition: 0.3s;
  }
  .nav-buttons button:hover {
    background: white;
    color: black;
  }
  .content .name {
    font-size: 3rem;
    text-transform: uppercase;
    font-weight: bold;
    opacity: 0;
    animation: animate 1s ease-in-out 1 forwards;
  }
  .content .des {
    font-size: 2rem;
    margin: 10px 0 20px;
    opacity: 0;
    animation: animate 1s ease-in-out 0.3s 1 forwards;
  }
  .content button {
    padding: 5px 25px;
    border: none;
    font-size: 1.5rem;
    font-weight: 400;
    font-family: "utairline";
    background-color: #333223;
    color: white;
    cursor: pointer;
    opacity: 0;
    animation: animate 1s ease-in-out 0.3s 1 forwards;
  }
  .content button:hover {
    background-color: #0C0E0C;
  }
  .content button {
    margin-top: 10px;
  }
  .nav-buttons {
    width: 100%;
    text-align: center;
    position: absolute;
    bottom: 30px;
    display: flex;
    justify-content: center;
    gap: 15px;
    z-index: 20;
  }
  .nav-buttons button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid #fff;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    cursor: pointer;
    transition: 0.3s;
  }
  @keyframes animate {
    from {
      opacity: 0;
      transform: translate(0, 100px);
      filter: blur(33px);
    }
    to {
      opacity: 1;
      transform: translate(0);
      filter: blur(0);
    }
  }
  #bh-heading {
    display: none;
  }
  #des-bh-heading {
    display: block;
  }
  #bh-img {
    height: 600px;
  }
  #bh-heading {
    font-size: 4rem;
    margin-bottom: 25px;
  }
  .bh-text {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 50px;
  }
  #bh-content {
    height: auto;
  }
  #bh-btn {
    padding: 10px 15px;
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    background-color: #333223;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  #bob-history {
    width: 100%;
    height: auto;
    background-color: #0C0E0C;
    padding: 0px 75px 50px 75px;
  }
  #bh-img {
    align-self: center;
    height: 35vw;
    width: 100%;
    max-width: unset;
    margin: 0 auto;
  }
  #des-bh-heading {
    font-size: 3.5rem;
    color: white;
    text-align: start;
    width: 100%;
    max-width: unset;
    margin: 0 auto;
  }
  #bh-sub-heading {
    font-size: 1.7rem;
    margin: 25px 0px;
  }
  .bh-text {
    color: white;
    font-size: 1.2rem;
    line-height: 25px;
    width: 100%;
    max-width: 800px;
    margin: 0px auto;
    margin-bottom: 50px;
  }
  #bh-content {
    align-self: center;
    height: auto;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
  }
  #bh-btn {
    padding: 10px 15px;
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    background-color: #333223;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  #bob-description {
    width: 100%;
    height: auto;
    background-color: #333223;
    padding: 50px 75px 50px 75px;
  }
  #bd-heading {
    text-align: center;
    font-size: 3.5rem;
    max-width: unset;
    margin-bottom: 0px;
  }
  #bd-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
    order: 1;
  }
  .bd-text {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 0px;
    padding-right: 25px;
  }
  #bd-btn {
    align-self: flex-end;
    font-size: 1.5rem;
    font-weight: 600;
    border: none;
    background-color: #0C0E0C;
    color: white;
    width: auto;
    padding: 10px 20px;
    margin-bottom: 50px;
    margin-right: 50px;
    cursor: pointer;
  }
  #bd-img {
    width: 100%;
    height: auto;
    max-width: unset;
    margin: 0 auto;
    margin-top: 25px;
    order: 2;
  }
  #bob-airplane {
    position: relative;
    background-color: #A08B63;
    padding: 50px 25px 200px 25px;
  }
  #ba-model {
    position: relative;
    height: 600px;
    overflow: hidden;
    display: flex;
    align-items: end;
    justify-content: center;
    width: 100%;
    max-width: unset;
    margin: 0 auto;
    background-color: gray;
    flex: 0 0 50%;
  }
  #ba-content {
    display: flex;
    flex-direction: row;
    flex: auto;
    gap: 25px;
  }
  model-viewer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }
  .ba-heading {
    color: #333223;
    text-align: start;
    font-family: "utairline";
    font-size: 3vw;
  }
  #ba-navbar {
    display: flex;
    flex-direction: column;
    gap: 25px;
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: unset;
    margin-top: 0px;
  }
  #ba-nav {
    display: flex;
    justify-content: flex-start;
    gap: 25px;
    padding-left: 5px;
  }
  #ba-nav .ba-tab {
    position: relative;
    font-size: 2rem;
    font-family: "utairline";
    letter-spacing: 2px;
    font-weight: 600;
    color: white;
    border: none;
    background: transparent;
    cursor: pointer;
  }
  #ba-nav .ba-tab:hover {
    color: #333223;
  }
  #ba-nav .ba-tab::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 5px;
    background-color: #333223;
    transition: width 0.3s ease;
  }
  #ba-nav .ba-tab:hover::after {
    width: 100%;
  }
  #ba-nav .ba-tab.active {
    color: #333223;
  }
  #ba-nav .ba-tab.active::after {
    width: 100%;
  }
  #ba-text {
    justify-self: center;
    color: white;
    font-size: 1.2rem;
    line-height: 25px;
    font-family: "utairline";
    width: 100%;
    max-width: unset;
    padding-left: 5px;
  }
  #ba-images {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: self-start;
    gap: 10px;
    width: 100%;
    height: auto;
    max-width: unset;
    z-index: 100;
  }
  .ba-img {
    width: 100%;
    height: auto;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 5px solid transparent;
    border-radius: 10px;
    overflow: hidden;
  }
  #bob-gallery {
    position: relative;
    height: auto;
    padding: 0px 75px;
  }
  #gutter-6 {
    background: #333223;
    clip-path: polygon(0 0, 100% 0, 90% 100%, 0 100%);
    position: absolute;
    top: -125px;
    left: -75px;
    width: 80%;
    height: 150px;
    z-index: 2;
  }
  #bg-main {
    position: absolute;
    top: -75px;
    margin: 0px 0px;
    position: relative;
    height: 700px;
    z-index: 1;
    max-width: unset;
  }
  #bg-content {
    position: relative;
    bottom: 50px;
    display: flex;
    margin: 0px;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 25px;
    max-width: unset;
    height: auto;
  }
  .bg-img {
    flex: unset;
    height: 15vw;
    max-height: unset;
    width: 30vw;
    border: 2px;
  }
}
#timeline {
  display: none;
}

#wartime-hero {
  width: 100%;
  height: auto;
}

#wartime-main {
  background-color: darkgray;
  height: 92vh;
}

#wartime-main picture, #wartime-main img {
  width: 100%;
  height: 100%;
  display: block;
}

#wartime-main img {
  -o-object-fit: cover;
     object-fit: cover;
}

#wh-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 15px;
  width: 100%;
  background-color: #A08B63;
  padding: 25px 25px 20px 25px;
}

#wh-container .hero-sub-heading {
  font-size: 4vw;
}

.wh-sub-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto;
  gap: 10px;
}

#timeline-section {
  width: 100%;
  background-color: #0C0E0C;
  padding: 50px 25px;
}

#timeline-content {
  height: auto;
}

#ts-header {
  color: white;
  font-size: 2rem;
  margin-bottom: 25px;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

#ts-header br {
  display: none;
}

#ts-text {
  font-size: 1rem;
  font-family: "utairline";
  color: white;
  line-height: 25px;
  width: 100%;
  max-width: 500px;
  margin: 25px auto;
}

#ts-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 25px;
  width: 100%;
  max-width: 500px;
  margin: 0px auto;
}

.ts-container {
  position: relative;
  display: flex;
  flex-direction: column;
  text-align: center;
  height: auto;
  transition: all 0.3s ease;
}

#ts1-container:hover, #ts1-container:active,
#ts4-container:hover, #ts4-container:active {
  margin: 25px 0px;
  cursor: pointer;
}

#ts2-container:hover, #ts2-container:active,
#ts3-container:hover, #ts3-container:active {
  margin: 25px 0px;
  cursor: pointer;
}

.ts-img {
  background-color: gray;
  height: 400px;
  width: 100%;
}

.ts-img picture, .ts-img img {
  width: 100%;
  height: 100%;
  display: block;
}

.ts-img img {
  -o-object-fit: cover;
     object-fit: cover;
}

.ts-year {
  position: absolute;
  top: 325px;
  align-self: center;
  font-size: 3rem;
  font-family: "utairline";
  color: white;
}

.ts-text {
  font-size: 1rem;
  color: white;
  padding: 10px 10px 20px 10px;
  font-family: "utairline";
  line-height: 25px;
}

#detail-timeline {
  position: relative;
  width: 100%;
  height: auto;
  background-color: #0C0E0C;
  padding: 0px 25px;
  z-index: 2;
}

#dt-content {
  position: unset;
  top: 0px;
}

#dt-heading {
  text-align: center;
  color: white;
  font-size: 2.3rem;
  margin-bottom: 25px;
}

#dt-main-img, #dt-sub-img {
  height: auto;
  width: 100%;
  max-width: 500px;
  background-color: gray;
  margin: 5px auto;
}

#dt-main-img picture, #dt-main-img img,
#dt-sub-img picture, #dt-sub-img img,
.dt-img picture, .dt-img img {
  width: 100%;
  height: 100%;
  display: block;
}

#dt-main-img img, #dt-sub-img img, .dt-img img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  max-width: 500px;
}

#dt-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  height: auto;
  margin-top: 5px;
}

.dt-img {
  width: 100%;
  height: auto;
  max-width: 500px;
  background-color: gray;
}

.plane {
  display: none;
}

#timeline-animation {
  position: relative;
  height: 2000px;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  z-index: 0;
  overflow: hidden;
}

#timeline {
  display: block;
}

#timeline .mobile-plane {
  transform: scale(1.05);
}

#mobile-path {
  stroke-width: 85px;
  z-index: 0;
}

#path {
  display: none;
}

.timeline-event {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 25px;
  position: absolute;
  width: 100%;
}

#timeline-1918 {
  top: 25px;
}

#timeline-1939 {
  top: 500px;
}

#timeline-1945 {
  top: 1025px;
}

#timeline-post {
  top: 1500px;
}

.te-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 25px;
}

.te-heading {
  color: white;
  font-size: 2.3rem;
  line-height: 35px;
  padding-left: 6px;
  text-align: center;
}

.te-heading {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  color: white;
  font-size: 2.3rem;
  line-height: 35px;
  padding-left: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
}

#heading-post {
  font-size: 2rem;
  line-height: 35px;
  padding-left: 10px;
}

.te-img {
  width: 100%;
  height: auto;
  overflow: hidden;
  -o-object-fit: cover;
     object-fit: cover;
}

.te-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.tc-heading {
  color: white;
  font-size: 2rem;
  line-height: 35px;
}

.tc-description {
  color: white;
  font-size: 1rem;
  line-height: 20px;
  text-align: left;
}

.te-content {
  display: flex;
  flex-direction: column;
  position: relative;
}

.tc-content {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.te-img, .tc-content {
  width: 80%;
  justify-self: flex-end;
  align-self: flex-end;
}

@media screen and (min-width: 768px) {
  #wartime-main {
    background-color: darkgray;
    height: 92vh;
  }
  #wh-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 15px;
    width: 100%;
    background-color: #A08B63;
    padding: 30px 25px 20px 25px;
  }
  .wh-sub-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 25vw;
    gap: 10px;
  }
  #wh-container .hero-sub-heading {
    font-size: 3vw;
  }
  #timeline-section {
    width: 100%;
    background-color: #0C0E0C;
    padding: 50px 25px;
  }
  #ts-header {
    color: white;
    font-size: 3rem;
    margin-bottom: 25px;
    width: 100%;
    max-width: unset;
    margin: 0 auto;
  }
  #ts-header br {
    display: none;
  }
  #ts-text {
    font-size: 1rem;
    color: white;
    line-height: 25px;
    width: 100%;
    max-width: unset;
    margin: 0 auto;
    padding-left: 25px;
  }
  #ts-content {
    display: flex;
    flex-direction: row;
    align-items: start;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 10px;
    width: 100%;
    max-width: unset;
    margin: 25px auto;
    margin-top: 50px;
  }
  .ts-container {
    position: relative;
    display: flex;
    flex-direction: column;
    text-align: center;
    width: 250px;
    height: auto;
    transition: all 0.3s ease;
  }
  #ts2-container, #ts4-container {
    margin-top: -25px;
  }
  #ts1-container:hover, #ts1-container:active,
  #ts3-container:hover, #ts3-container:active {
    margin-top: 25px;
    cursor: pointer;
  }
  #ts2-container:hover, #ts2-container:active,
  #ts4-container:hover, #ts4-container:active {
    margin-top: 25px;
    cursor: pointer;
  }
  .ts-img {
    background-color: gray;
    height: 300px;
  }
  .ts-year {
    position: absolute;
    top: 225px;
    align-self: center;
    font-size: 3rem;
    color: white;
  }
  .ts-text {
    font-size: 1rem;
    color: white;
    padding: 0px;
    line-height: 25px;
  }
  #detail-timeline {
    position: relative;
    width: 100%;
    height: auto;
    background-color: #0C0E0C;
  }
  #dt-heading {
    font-size: 3rem;
  }
  #dt-main-img, #dt-sub-img {
    display: flex;
    height: 40vw;
    background-color: transparent;
    padding: 5px 5px;
    max-width: unset;
  }
  #dt-main-img img, #dt-sub-img img, .dt-img img {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    max-width: unset;
  }
  #dt-profile-container {
    width: 100%;
    height: auto;
    max-width: unset;
    margin: 0 auto;
    pointer-events: none;
  }
  #dt-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 1.5vw;
    height: auto;
    margin: 0px 5px;
  }
  .dt-container {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .dt-profile-heading {
    font-size: 2.5rem;
    color: white;
  }
  .dt-profile-text {
    font-size: 1.5rem;
    color: white;
    width: 300px;
  }
  .dt-img {
    width: 30vw;
    height: 20vw;
    background-color: gray;
  }
  .dt-profile-img {
    width: 100px;
    height: 100px;
    border-radius: 100px;
    background-color: grey;
  }
  .dt-profile-heading {
    font-size: 2rem;
    color: white;
  }
  .dt-profile-text {
    font-size: 1rem;
    color: white;
    width: 400px;
  }
  .dt-img {
    width: 30vw;
    height: 20vw;
    background-color: gray;
  }
  .plane {
    display: block;
  }
  .mobile-plane {
    display: none;
  }
  #timeline-animation {
    display: flex;
    justify-content: center;
    position: relative;
    height: 1300px;
    width: 100%;
    max-width: unset;
    margin: 0 auto;
    z-index: 0;
    overflow: hidden;
  }
  #timeline {
    display: block;
  }
  #timeline .plane {
    transform: scale(0.53);
  }
  #mobile-path {
    display: none;
    stroke-width: 85px;
    z-index: 0;
  }
  #path {
    display: block;
  }
  .timeline-event {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 25px;
    position: absolute;
  }
  #timeline-1918 {
    top: 50px;
  }
  #timeline-1939 {
    top: 325px;
  }
  #timeline-1945 {
    top: 650px;
  }
  #timeline-post {
    margin-top: 5vw;
    top: 925px;
  }
  .te-content {
    display: flex;
    flex-direction: row;
    gap: 30px;
    width: 100%;
  }
  .te-heading {
    color: #0C0E0C;
    font-size: 2.5rem;
    line-height: 35px;
    padding-left: 0px;
    text-align: center;
  }
  .tc-heading {
    color: white;
    font-size: 2rem;
    line-height: 35px;
    padding-left: 0px;
    align-self: flex-start;
    margin-bottom: 0px;
  }
  .te-img {
    align-self: center;
    flex: 2;
  }
  .tc-img .te-img img {
    width: 100%;
    height: auto;
    overflow: hidden;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .tc-img img, .te-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .tc-content {
    align-self: center;
    flex: 2;
  }
  .tc-description {
    color: white;
    font-size: 1.2rem;
    line-height: 20px;
    text-align: left;
  }
  #heading-post {
    font-size: 2rem;
    line-height: 35px;
    padding-left: 0px;
  }
  .te-heading {
    position: static;
    color: white;
    font-size: 2.5rem;
    line-height: 40px;
    padding-left: 0px;
    text-align: center;
  }
  #img-1939, #img-post {
    order: 3;
  }
  #heading-1939, #heading-post {
    order: 2;
  }
  #content-1939, #content-post {
    order: 1;
    text-align: right;
  }
  #content-1939 h3, #content-post h3 {
    align-self: flex-end;
  }
  #content-1939 p, #content-post p {
    text-align: right;
  }
}
@media screen and (min-width: 1200px) {
  #timeline {
    display: block;
  }
  #mobile-timeline {
    display: none;
  }
  #wartime-hero {
    width: 100%;
    height: auto;
  }
  #wartime-main {
    background-color: darkgray;
    height: 90vh;
  }
  #wh-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 50px;
    width: 100%;
    background-color: #A08B63;
    padding: 35px 75px 20px 75px;
  }
  .wh-sub-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 25vw;
    gap: 10px;
  }
  #wh-container .hero-sub-heading {
    font-size: 2.2vw;
  }
  #timeline-section {
    width: 100%;
    background-color: #0C0E0C;
    padding: 50px 75px;
  }
  #ts-header {
    font-size: 4rem;
  }
  #ts-text {
    font-size: 1.5rem;
    line-height: 25px;
    color: white;
    padding-left: 0px;
  }
  #ts-content {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1vw;
    margin-top: 75px;
  }
  .ts-container {
    position: relative;
    display: flex;
    flex-direction: column;
    text-align: center;
    width: 21vw;
    height: auto;
  }
  .ts-img {
    background-color: gray;
    height: 25vw;
  }
  .ts-year {
    position: absolute;
    top: 20vw;
    align-self: center;
    font-size: 3.5vw;
    color: white;
  }
  .ts-text {
    font-size: 1.5vw;
    color: white;
    padding: 10px 10px 20px 10px;
  }
  #detail-timeline {
    position: relative;
    width: 100%;
    height: auto;
    background-color: #0C0E0C;
    padding-bottom: 50px;
  }
  #dt-heading {
    font-size: 4rem;
  }
  #dt-main-img, #dt-sub-img {
    height: 25vw;
    margin: 10px 0px;
    max-width: unset;
    padding: 10px 10px;
  }
  #dt-main-img {
    padding-left: 50px;
  }
  #dt-sub-img {
    padding-right: 50px;
  }
  #dt-profile-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    max-width: unset;
    margin: 0 auto;
    pointer-events: none;
  }
  #dt-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
    height: auto;
    margin: 0px 25px;
  }
  .dt-container {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  #timeline-animation {
    display: flex;
    justify-content: center;
    position: relative;
    height: 1800px;
    width: 95%;
    max-width: unset;
    margin: 0 auto;
    z-index: 0;
    overflow: hidden;
  }
  #timeline {
    display: block;
  }
  #timeline .plane {
    transform: scale(0.69);
  }
  #mobile-path {
    display: none;
    stroke-width: 85px;
    z-index: 0;
  }
  #path {
    display: block;
    stroke-width: 90px;
  }
  .timeline-event {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 25px;
    position: absolute;
  }
  #timeline-1918 {
    top: 50px;
  }
  #timeline-1939 {
    top: 450px;
  }
  #timeline-1945 {
    top: 900px;
  }
  #timeline-post {
    top: 1300px;
  }
  .te-content {
    display: flex;
    flex-direction: row;
    gap: 40px;
    width: 100%;
  }
  .tc-content {
    gap: 25px;
  }
  .te-heading {
    color: #0C0E0C;
    font-size: 2.5rem;
    line-height: 35px;
    padding-left: 0px;
    text-align: center;
  }
  .tc-heading {
    color: white;
    font-size: 2.5rem;
    line-height: 35px;
    padding-left: 0px;
    align-self: flex-start;
    margin-bottom: 0px;
  }
  .te-img {
    align-self: center;
    flex: 2;
  }
  .tc-img .te-img img {
    width: 100%;
    height: auto;
    overflow: hidden;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .tc-img img, .te-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .tc-content {
    align-self: center;
    flex: 2;
  }
  .tc-description {
    color: white;
    font-size: 1.5rem;
    line-height: 30px;
    text-align: left;
  }
  #heading-post {
    font-size: 2.5rem;
    line-height: 40px;
    padding-left: 0px;
  }
  .te-heading {
    position: static;
    color: white;
    font-size: 3rem;
    line-height: 45px;
    padding-left: 0px;
    text-align: center;
  }
  #img-1939, #img-post {
    order: 3;
  }
  #heading-1939, #heading-post {
    order: 2;
  }
  #content-1939, #content-post {
    order: 1;
    text-align: right;
  }
  #content-1939 h3, #content-post h3 {
    align-self: flex-end;
  }
  #content-1939 p, #content-post p {
    text-align: right;
  }
}
#contact-content {
  display: flex;
  flex-direction: column;
  background-color: #A08B63;
  padding: 25px;
  width: 100%;
}

.contact-header {
  font-size: 3rem;
  color: #333223;
}

#contact-text {
  font-size: 1.2rem;
  margin: 10px 0px;
  color: #333223;
  font-family: "utairline";
  line-height: 30px;
}

#contact-form {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0px;
  margin: 0px;
}

.field {
  height: 50px;
  margin: 15px 0px;
  padding: 10px;
  width: 100%;
  font-size: 14px;
  border: none;
  color: black;
  background-color: white;
}

#message {
  height: 215px;
  width: 100%;
}

#submit-btn {
  align-self: flex-end;
  margin: 0px;
  font-size: 24px;
  font-family: "utairline";
  font-weight: 600;
  padding: 10px 0px;
  width: 200px;
  border: none;
  cursor: pointer;
  background-color: white;
  color: black;
  margin-top: 10px;
}

#submit-btn:hover, #submit-btn:active {
  color: #A08B63;
  background-color: #0C0E0C;
}

#thanks-container {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(3px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

#thanks-container #thanks {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: "ogg";
  background: #A08B63;
  color: white;
  padding: 10vw 10vw;
  border-radius: 2vw;
  text-align: center;
  width: 80%;
}

#thanks h3 {
  font-size: 2rem;
}

#explore-btn {
  background: #0C0E0C;
  color: white;
  padding: 2vw 4vw;
  border-radius: 1vw;
  font-size: 4vw;
  font-weight: 600;
  margin: 7vw 0vw;
  border: 2px solid transparent;
}

#explore-btn:hover, #explore-btn:active {
  background-color: #333223;
  color: #A08B63;
}

#thanks p {
  font-size: 3.5vw;
  line-height: normal;
}

@media screen and (min-width: 768px) {
  #contact-section {
    padding: 25px;
    background-color: #333223;
  }
  #contact-content {
    display: flex;
    flex-direction: column;
    background-color: #A08B63;
    padding: 50px;
    width: 100%;
  }
  #contact-form {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 0px;
    margin: 0px;
  }
  .field {
    height: 50px;
    margin: 15px 0px;
    padding: 10px;
    width: 100%;
    font-size: 14px;
    border: none;
    color: black;
    background-color: white;
  }
  #message {
    height: 215px;
    width: 100%;
  }
  #submit-btn {
    align-self: flex-end;
    margin: 0px;
    font-size: 24px;
    font-family: "utairline";
    font-weight: 600;
    padding: 10px 0px;
    width: 200px;
    border: none;
    cursor: pointer;
    background-color: white;
    color: black;
    margin-top: 10px;
  }
}
@media screen and (min-width: 1200px) {
  #contact-section {
    padding: 75px;
  }
  #contact-content {
    padding: 50px;
  }
  .contact-header {
    font-size: 3rem;
    color: #333223;
  }
  #contact-text {
    justify-self: center;
    font-size: 1.3rem;
    margin: 10px 0px;
    color: #333223;
    line-height: 30px;
  }
  #contact-form {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 50px;
  }
  .field {
    height: 50px;
    margin: 15px 0px;
    padding: 10px;
    width: 35vw;
    font-size: 14px;
    border: none;
    color: black;
    background-color: white;
  }
  #message {
    height: 215px;
    width: 50vw;
  }
  #submit-btn {
    margin: 0px;
    font-size: 24px;
    font-weight: 600;
    padding: 10px 0px;
    border: none;
    cursor: pointer;
    background-color: white;
    color: black;
    margin-top: 10px;
  }
  #submit-btn:hover, #submit-btn:active {
    color: #A08B63;
    background-color: #0C0E0C;
  }
}
#exhibition-hero {
  width: 100%;
  height: auto;
}

#exhibition-main {
  background-color: darkgray;
  height: 92vh;
}

#exhibition-main picture, #exhibition-main img {
  width: 100%;
  height: 100%;
  display: block;
}

#exhibition-main img {
  -o-object-fit: cover;
     object-fit: cover;
}

#eh-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 15px;
  width: 100%;
  padding: 25px 25px 20px 25px;
  background-color: #A08B63;
}

.eh-sub-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 25vw;
  gap: 10px;
}

#eh-container .hero-sub-heading {
  font-size: 4vw;
}

#gutter-7, #gutter-8 {
  height: 50px;
  width: 100%;
  background-color: #A08B63;
}

#es-heading {
  font-size: 2.5rem;
  color: white;
  width: 100%;
  max-width: 550px;
  margin: 0px auto;
  margin-top: 50px;
  margin-bottom: 25px;
  padding: 0px 25px;
}

#exhibition-social {
  background-color: #0C0E0C;
  height: auto;
  width: 100%;
  margin: 0 auto;
}

.video-container .plyr {
  border-radius: 20px; /* Slightly smaller than the container to fit inside the 5px border */
  overflow: hidden;
}

.video-container, .video-player {
  width: 90%;
  max-width: 500px;
  height: auto;
  margin: 0 auto;
  border-radius: 25px;
}

.video-container {
  border-radius: 25px;
  border: 5px solid #333223;
}

#es-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 50px;
  margin: 25px auto;
  padding: 25px 25px;
}

.es-container {
  display: flex;
  flex-direction: column;
  height: auto;
  gap: 10px;
  width: 100%;
  max-width: 500px;
}

.es-sub-img {
  background-color: gray;
  height: auto;
  width: 100%;
}

.es-sub-img picture, .es-sub-img img,
#es-about-img picture, #es-about-img img {
  width: 100%;
  height: 100%;
  display: block;
}

.es-sub-img img, #es-about-img img {
  -o-object-fit: cover;
     object-fit: cover;
}

.es-gutter {
  height: 5px;
  width: 100%;
  background-color: #A08B63;
}

.es-sub-heading {
  color: white;
  font-size: 1.5rem;
  font-family: "ogg";
}

.es-sub-text {
  color: white;
  font-size: 1rem;
  font-family: "utairline";
  line-height: 25px;
}

#es-sub-content {
  display: flex;
  flex-direction: column;
  background-color: #A08B63;
  width: 100%;
  padding: 25px 25px;
}

#es-about-img {
  background-color: gray;
  width: 100%;
  max-width: 500px;
  height: auto;
  margin: 0 auto;
  order: 2;
}

#es-about-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 15px;
  width: 100%;
  max-width: 500px;
  padding-bottom: 25px;
  margin: 0 auto;
  order: 1;
}

#es-about-heading {
  color: white;
  font-size: 2.2rem;
}

#es-about-description {
  color: white;
  font-size: 1rem;
  font-family: "utairline";
  line-height: 25px;
}

#exhibition-gallery {
  width: 100%;
  background-color: #0C0E0C;
  padding: 0px 25px 35px 25px;
  gap: 10px;
}

#eg-heading {
  font-size: 2.5rem;
  text-align: center;
  padding: 25px 0px;
  color: white;
}

.gallery-box {
  gap: 10px;
  width: 100%;
  max-width: 500px;
  height: auto;
  background-color: gray;
  margin: 0 auto;
}

.gallery-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

#eg-btn-container {
  display: flex;
  justify-content: center;
}

#eg-btn {
  padding: 10px 50px;
  font-size: 1.5rem;
  font-weight: 600;
  color: white;
  background-color: #333223;
  border: 3px solid #A08B63;
  margin-top: 25px;
  cursor: pointer;
}

@media screen and (min-width: 768px) {
  #exhibition-hero {
    width: 100%;
    height: auto;
  }
  #exhibition-main {
    background-color: darkgray;
    height: 92vh;
  }
  #eh-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    padding: 30px 25px 20px 25px;
  }
  .eh-sub-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 25vw;
    gap: 10px;
  }
  #eh-container .hero-sub-heading {
    font-size: 3vw;
  }
  #gutter-7, #gutter-8 {
    height: 50px;
    width: 100%;
    background-color: #A08B63;
  }
  #exhibition-social {
    background-color: #0C0E0C;
    height: auto;
    padding: 0px 0px;
  }
  #es-heading {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 25px;
    color: white;
    max-width: unset;
  }
  .video-container, .video-player {
    width: 90%;
    max-width: unset;
    height: auto;
    margin: 0 auto;
    border-radius: 25px;
  }
  #es-content {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .es-container {
    display: flex;
    flex-direction: column;
    height: auto;
    gap: 10px;
    width: 300px;
    height: auto;
  }
  .es-sub-img {
    background-color: gray;
    height: 300px;
    width: 100%;
  }
  .es-gutter {
    height: 5px;
    width: 100%;
    background-color: #A08B63;
  }
  .es-sub-heading {
    color: white;
  }
  .es-sub-text {
    color: white;
  }
  #es-sub-content {
    display: flex;
    flex-direction: row;
    background-color: #A08B63;
    gap: 25px;
    width: 100%;
    padding: 50px 25px;
  }
  #es-about-img {
    background-color: gray;
    width: 100%;
    max-width: 400px;
    height: auto;
    margin: 0 auto;
    order: 2;
  }
  #es-about-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    width: 100%;
    max-width: unset;
    padding-bottom: 25px;
    margin: 0 auto;
    order: 1;
  }
  #es-about-heading {
    color: white;
    font-size: 2.5rem;
  }
  #es-about-description {
    color: white;
    font-size: 1.2rem;
  }
  #exhibition-gallery {
    width: 100%;
    background-color: #0C0E0C;
    padding: 0px 25px 35px 25px;
    gap: 10px;
  }
  #eg-heading {
    font-size: 2.8rem;
    text-align: center;
    padding-top: 50px;
    padding-bottom: 25px;
    color: white;
  }
  .gallery-box {
    gap: 10px;
    width: 100%;
    height: auto;
    max-width: unset;
    background-color: gray;
  }
  .gallery-box img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  #eg-btn-container {
    display: flex;
    justify-content: center;
  }
  #eg-btn {
    padding: 10px 50px;
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    background-color: #333223;
    border: 3px solid #A08B63;
    margin-top: 25px;
    cursor: pointer;
  }
}
@media screen and (min-width: 1200px) {
  #exhibition-hero {
    width: 100%;
    height: auto;
  }
  #exhibition-main {
    background-color: darkgray;
    height: 92vh;
  }
  #eh-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    gap: 50px;
    padding: 35px 75px 20px 75px;
  }
  .eh-sub-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 25vw;
    gap: 10px;
  }
  #eh-container .hero-sub-heading {
    font-size: 2.2vw;
  }
  #gutter-7, #gutter-8 {
    height: 50px;
    width: 100%;
    background-color: #A08B63;
  }
  #exhibition-social {
    background-color: #0C0E0C;
    height: auto;
    padding: 0px 0px;
  }
  #es-heading {
    font-size: 4rem;
    text-align: center;
  }
  .video-container, .video-player {
    width: 100%;
    max-width: unset;
    height: auto;
    margin: 0 auto;
    border-radius: 25px;
  }
  #es-content {
    display: flex;
    margin: 50px 0px;
    gap: 75px;
    width: 100%;
    max-width: unset;
  }
  .es-container {
    display: flex;
    flex-direction: column;
    height: auto;
    gap: 10px;
    width: 25%;
    max-width: unset;
  }
  .es-sub-img {
    background-color: gray;
    height: 300px;
    width: 100%;
  }
  .es-gutter {
    height: 5px;
    width: 100%;
    background-color: #A08B63;
  }
  .es-sub-heading {
    color: white;
    font-size: 2rem;
  }
  .es-sub-text {
    color: white;
    font-size: 1rem;
  }
  #es-sub-content {
    display: flex;
    flex-direction: row;
    background-color: #A08B63;
  }
  #es-about-img {
    background-color: gray;
    width: 40%;
    max-width: 600px;
    height: 100%;
    order: 2;
  }
  #es-about-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 40%;
    max-width: unset;
    order: 1;
  }
  #es-about-heading {
    color: white;
    font-size: 3rem;
  }
  #es-about-description {
    color: white;
    font-size: 1.5rem;
  }
  #exhibition-gallery {
    width: 100%;
    background-color: #0C0E0C;
    padding: 0px 75px 35px 75px;
    gap: 10px;
  }
  #eg-heading {
    font-size: 3.5rem;
    text-align: center;
    padding-bottom: 25px;
  }
  .gallery-box {
    gap: 10px;
    width: 100%;
    height: 40vw;
    background-color: gray;
  }
  .gallery-box img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  #eg-btn-container {
    display: flex;
    justify-content: center;
  }
  #eg-btn {
    padding: 10px 50px;
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    background-color: #333223;
    border: 3px solid #A08B63;
    margin-top: 25px;
    cursor: pointer;
  }
}
#events-hero {
  text-align: center;
  padding: 5rem 1.5rem 3rem;
}

#events-hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 0.5rem;
}

#events-hero p {
  opacity: 0.65;
  max-width: 520px;
  margin: 0 auto;
}

#events-section {
  max-width: 960px;
  margin: 0 auto;
  padding: 2rem 1.5rem 5rem;
}

.events-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.tab-btn {
  padding: 0.5rem 1.2rem;
  border-radius: 20px;
  border: 1px solid var(--color-border, #444);
  background: transparent;
  color: inherit;
  cursor: pointer;
  font-size: 0.9rem;
  transition: all 0.2s;
}

.tab-btn.active {
  background: var(--color-accent, #c8a96e);
  color: #000;
  border-color: transparent;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.event-card {
  background: var(--color-surface, #1a1a1a);
  border: 1px solid var(--color-border, #333);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.event-img {
  height: 180px;
  background: var(--color-border, #333);
  overflow: hidden;
}

.event-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.event-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.2;
  font-size: 3rem;
}

.event-body {
  padding: 1.2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.event-meta {
  font-size: 0.8rem;
  opacity: 0.6;
  margin-bottom: 0.5rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.event-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.event-desc {
  font-size: 0.88rem;
  opacity: 0.7;
  line-height: 1.6;
  flex: 1;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
}

.event-badge {
  display: inline-block;
  font-size: 0.7rem;
  padding: 0.15rem 0.6rem;
  border-radius: 20px;
  background: #1a3a1a;
  color: #6fcf6f;
  margin-bottom: 0.75rem;
}

.event-badge.past {
  background: #2a2a2a;
  color: #888;
}

.no-events {
  text-align: center;
  padding: 4rem;
  opacity: 0.4;
}

#bor-heading {
  display: none;
}

#bor-book-4 {
  display: none;
}

#bor-hero {
  width: 100%;
  height: auto;
  background-color: #0C0E0C;
  padding: 0px 25px;
}

#bor-content {
  width: 100%;
  margin: 0 auto;
  margin-bottom: 0px;
}

#mobile-bor-heading {
  color: white;
  font-size: 2.8rem;
  margin: 25px auto;
  width: 100%;
  max-width: 500px;
}

.bor-text {
  color: white;
  font-size: 1rem;
  font-family: "utairline";
  line-height: 27px;
  margin: 0 auto;
  width: 100%;
  max-width: 500px;
}

#book-container {
  display: flex;
  justify-content: center;
  gap: 25px;
  width: 100%;
}

#bor-books {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0px;
  height: auto;
  margin: 25px auto;
  width: 100%;
  max-width: 500px;
}

.bor-book {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 40vw;
  max-height: 225px;
}

.bor-book:hover {
  transform: scale(1.1);
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.bor-book img {
  width: 100%;
  height: auto;
}

#books-section {
  width: 100%;
  height: auto;
  background-color: #A08B63;
  padding: 50px 25px;
}

#books {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.book-section {
  max-width: 500px;
  margin: 0px auto;
  margin-top: 50px;
}

#book-1-section {
  margin-top: 0px;
}

.book-cover {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 600px;
  cursor: pointer;
}

.book-cover:hover {
  transform: scale(1.05);
  transition: all 0.3s ease-in-out;
}

.book-cover img {
  width: 100%;
  max-width: 425px;
  height: auto;
  margin: 0 auto;
}

.book-text-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0px 0px;
}

.book-sub-heading {
  color: white;
  font-size: 1.3rem;
  font-family: "utairline";
  font-weight: 600;
}

.book-heading {
  color: #333223;
  font-size: 2rem;
  font-family: "utairline";
  font-weight: 800;
}

.book-heading:hover {
  text-decoration: underline;
  cursor: pointer;
}

.book-text {
  color: white;
  font-size: 1.2rem;
  font-family: "utairline";
}

.book-points {
  padding-left: 25px;
}

.book-points .book-list {
  list-style-type: circle;
  color: white;
  font-size: 1.2rem;
}

.clickable {
  cursor: pointer;
}

#bor-viewer {
  background-color: #0b0b0b;
  padding: 60px 20px;
  margin-top: 60px;
  text-align: center;
  position: relative;
}

#bor-viewer .sub-headings {
  color: #e8e4dc;
  font-size: 2.2rem;
  margin-bottom: 30px;
  letter-spacing: 1px;
}

#pilot-search-input {
  background: #1a1a1a;
  border: 1px solid #333;
  color: #fff;
  padding: 12px 16px;
  width: 100%;
  max-width: 400px;
  border-radius: 25px;
  outline: none;
  margin-bottom: 40px;
  transition: all 0.3s ease;
}

#pilot-search-input:focus {
  border-color: #888;
}

#pilot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.pilot-card {
  text-decoration: none;
  color: #e8e4dc;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease;
}

.pilot-card:hover {
  transform: scale(1.05);
}

.pilot-card-img {
  width: 180px;
  height: 240px;
  background: #2a2a2a;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.pilot-card-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.pilot-placeholder {
  font-size: 2rem;
  opacity: 0.4;
}

.pilot-card-body {
  margin-top: 10px;
  text-align: center;
}

.pilot-name {
  font-size: 1rem;
  font-weight: 600;
}

.pilot-status {
  font-size: 0.8rem;
  opacity: 0.6;
}

#pilot-counter {
  background: #5a5a5a;
  color: white;
  padding: 10px 30px;
  border-radius: 30px;
  display: inline-block;
  margin: 20px auto;
  font-size: 0.9rem;
}

.viewer-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-bottom: 20px;
}

.viewer-btn {
  background: none;
  border: none;
  color: #e8e4dc;
  font-size: 2rem;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.viewer-btn:hover {
  transform: scale(1.2);
}

#profile-section {
  max-width: 100%;
  margin: 4rem auto;
  padding: 0 1.5rem;
}

.back-link {
  font-size: 0.85rem;
  opacity: 0.6;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 2rem;
}

.back-link:hover {
  opacity: 1;
}

.profile-photo {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
  background: #222;
}

.profile-placeholder {
  width: 100%;
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.2;
  font-size: 5rem;
}

.profile-name {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  margin: 0 0 0.5rem;
}

.profile-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.5;
  margin: 1.5rem 0 0.3rem;
}

.profile-value {
  font-size: 0.95rem;
  margin: 0;
}

.profile-notes {
  font-size: 0.9rem;
  line-height: 1.7;
  opacity: 0.75;
  margin-top: 0.3rem;
}

.status-badge {
  display: inline-block;
  padding: 0.2rem 0.7rem;
  border-radius: 20px;
  font-size: 0.8rem;
  margin-top: 0.5rem;
}

.status-Yes {
  background: #1a4a1a;
  color: #6fcf6f;
}

.status-No {
  background: #2a2a2a;
  color: #888;
}

.status-KindOf {
  background: #2a2a3a;
  color: #8888cf;
}

.status-Maybe {
  background: #3a3a1a;
  color: #cfcf6f;
}

.status-Additional {
  background: #1a3a4a;
  color: #6fcfcf;
}

@media screen and (min-width: 768px) {
  #mobile-bor-heading {
    display: none;
  }
  #bor-hero {
    width: 100%;
    height: auto;
    background-color: #0C0E0C;
    padding: 0px 50px;
  }
  #bor-book-1 {
    display: none;
  }
  #bor-book-4 {
    display: block;
    -o-object-fit: cover;
       object-fit: cover;
  }
  #bor-book-4 img {
    width: 100%;
    height: auto;
  }
  #bor-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    width: 100%;
    margin: 50px auto;
    padding-left: 0px;
    max-width: unset;
  }
  #bor-heading {
    display: block;
    color: white;
    font-size: 3rem;
    margin: 0px auto;
    width: 100%;
    max-width: unset;
  }
  #book-container {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: unset;
    gap: 10px;
    width: auto;
  }
  #bor-text-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
  }
  .bor-text {
    color: white;
    font-size: 1.2rem;
    line-height: 25px;
    margin: 0 auto;
    width: 100%;
    max-width: 900px;
  }
  #bor-books {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: end;
    gap: 10px;
    height: auto;
    margin-bottom: 25px;
    margin: 0px auto;
    padding: 0px;
    width: unset;
  }
  #bor-book-4 {
    display: block;
    width: 150px;
    height: 200px;
  }
  .bor-book {
    width: 150px;
    height: 200px;
  }
  #books-section {
    width: 100%;
    height: auto;
    background-color: #A08B63;
    padding: 50px 25px;
  }
  #books {
    display: flex;
    flex-direction: column;
    gap: 50px;
  }
  .book-section {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 25px;
    max-width: unset;
    margin: 0 auto;
  }
  .book-cover {
    width: 50vw;
    height: 45vw;
  }
  .book-text-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 25px 0px;
    width: 100%;
  }
  .book-sub-heading {
    color: white;
    font-size: 2vw;
    font-weight: 600;
  }
  .book-heading {
    color: #333223;
    font-size: 3vw;
    font-weight: 800;
  }
  .book-text {
    color: white;
    font-size: 2vw;
    line-height: 30px;
  }
  .book-points {
    padding-left: 25px;
  }
  .book-points .book-list {
    list-style-type: circle;
    color: white;
    font-size: 2vw;
  }
  #book-2-container {
    order: 1;
  }
  #book-2-cover {
    order: 2;
  }
}
@media screen and (min-width: 1200px) {
  #mobile-bor-heading {
    display: none;
  }
  #bor-hero {
    width: 100%;
    height: auto;
    background-color: #0C0E0C;
    padding: 0px 75px;
  }
  #bor-book-1 {
    display: none;
  }
  #bor-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 75px;
    width: 100%;
    margin: 50px auto;
    padding-left: 0px;
    max-width: unset;
  }
  #bor-heading {
    display: block;
    color: white;
    font-size: 4rem;
    margin: 0px auto;
    margin-bottom: 50px;
    width: 100%;
    max-width: unset;
  }
  #book-container {
    display: flex;
    flex-direction: column;
    justify-content: unset;
    gap: 0px;
    width: auto;
  }
  #bor-text-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
  }
  .bor-text {
    color: white;
    font-size: 1.3rem;
    line-height: 30px;
    margin: 0 auto;
    width: 100%;
    max-width: unset;
  }
  #bor-books {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: nowrap;
    gap: 30px;
    height: auto;
    margin-bottom: 25px;
    margin: 0px auto;
    width: unset;
  }
  #bor-book-4 {
    display: block;
    width: 150px;
    height: 250px;
  }
  .bor-book {
    width: 150px;
    height: 250px;
  }
  #books-section {
    width: 100%;
    height: auto;
    background-color: #A08B63;
    padding: 75px 75px;
  }
  #books {
    gap: 75px;
  }
  .book-section {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 50px;
    max-width: unset;
    margin: 0 auto;
  }
  .book-cover {
    width: 35vw;
    height: 35vw;
  }
  .book-text-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 25px 0px;
    width: 100%;
  }
  .book-sub-heading {
    color: white;
    font-size: 2vw;
    font-weight: 600;
  }
  .book-heading {
    color: #333223;
    font-size: 3vw;
    font-weight: 800;
  }
  .book-text {
    color: white;
    font-size: 1.5vw;
  }
  .book-points {
    padding-left: 25px;
  }
  .book-points .book-list {
    list-style-type: circle;
    color: white;
    font-size: 1.5vw;
  }
}/*# sourceMappingURL=main.css.map */