* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --topbar-bg: #32556e;
  --topbar-border: #4e718a;
  --black-font-color: black;
  --font-color: #ffffff;
  --hover-faded: hsla(0, 0%, 100%, 0.55);
  --search-btn-bg: #32556e;
  --font-family: saddlebrown;
  --grandchild-text-color: rgba(51, 51, 51, 0.75);
  --custom-bottom-border: hsla(0, 0%, 94%, 0.15);
  --font-disp: "Playfair Display", Georgia, serif;
  --font-body: "Raleway", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  width: 100%;
  height: 200vh;
  font-family: var(--font-body);
  overflow-x: hidden;
}

header {
  font-size: 13px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}

.topbar {
  background-color: var(--topbar-bg);
  width: 100%;
  height: 44px;
  overflow: visible;
  position: relative;
  z-index: 200;
  display: none;
}

.topbar-inner-2-parent {
  display: none;
}

.sidebar-parent {
  display: none;
}

/* MAIN NAVBAR */
.navbar-main {
  background-color: transparent;
  width: 100%;
}

.navbar-main-inner {
  max-width: 1300px;
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: space-between;
}

@media (min-width: 1225px) and (max-width: 1200px) {
  .navbar-main-inner {
    margin: 0px 80px 0px 140px;
  }
}

@media (min-width: 1025px) and (max-width: 1225px) {
  .navbar-main-inner {
    margin: 0px 80px 0px 140px;
  }
}

@media (max-width: 1025px) {
  .navbar-main-inner {
    margin: 0px 80px 0px 100px;
  }
}

/* Logo */
.logo-link {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  line-height: 1;
  flex-shrink: 0;
  font-family: var(--font-body);
}

.logo-img {
  height: 100px;
  width: auto;
  display: block;
}

.logo-img-2 {
  padding-top: 3px;
  height: 60px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  text-decoration: none;
  color: #ffffff;
  font-size: 13.5px;
  font-family: var(--font-body);
  white-space: nowrap;
  transition: color 0.2s ease;
  position: relative;
  text-transform: uppercase;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #ffffff;
  transition: width 0.25s ease;
}

.nav-link:hover {
  color: rgba(255, 255, 255, 0.7);
}

.nav-link:hover::after {
  width: 100%;
}

/* Search button */
.search-button {
  background-color: hsla(0, 0%, 100%, 0.2);
  border: none;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background-color 0.2s ease;
}

.search-button:hover {
  background-color: #254558;
}

.search-button:focus {
  outline: 2px solid #32556e;
  outline-offset: 2px;
}

.searchbar-parent {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 400px;
  overflow: hidden;
  transform: translateX(100%);
  transition: all 0.3s ease-in-out;
  z-index: 1000;
}

.search-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 200;
}

.search-backdrop.active {
  display: block;
}

.searchbar-parent.active {
  transform: translateX(0%);
}

.search-overlay {
  position: relative;
  background-color: white;
  height: 100%;
  padding: 20px;
  box-sizing: border-box;
}

.search-field {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  margin-top: 120px;
  padding-bottom: 18px;
  border-bottom: 1px solid #d8d5d0;
  box-sizing: border-box;
  transform: translateX(40px);
  opacity: 0;
  transition:
    transform 0.3s ease-in-out,
    opacity 0.3s ease-in-out;
}

.search-field.show {
  opacity: 1;
  transform: translateX(0px);
}

.btn-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-close svg {
  width: 18px;
  height: 18px;
  stroke: #3a3632;
  stroke-width: 2;
}

.search-field {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  margin-top: 120px;
  padding-bottom: 18px;
  border-bottom: 1px solid #d8d5d0;
  box-sizing: border-box;
}

.search-field svg.icon-search {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  stroke: #3a3632;
  stroke-width: 1.8;
  fill: none;
}

.search-field input {
  flex: 1;
  min-width: 0;
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 400;
  color: #3a3632;
  background: transparent;
  border: none;
  outline: none;
  caret-color: #3a3632;
}

.search-field input::placeholder {
  color: black;
}

.btn-submit {
  flex-shrink: 0;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  opacity: 0.45;
  transition: opacity 0.2s;
}

.btn-submit:hover {
  opacity: 0.85;
}

.btn-submit svg {
  width: 20px;
  height: 20px;
  stroke: #3a3632;
  stroke-width: 1.8;
  fill: none;
}

.recommended {
  margin-top: 20px;
  transform: translateX(40px);
  opacity: 0;
  transition:
    transform 0.3s ease-in-out,
    opacity 0.3s ease-in-out;
  transition-delay: 0.1s;
}

.recommended.show {
  opacity: 1;
  transform: translateX(0px);
}

.recommended-label {
  font-family: "Jost", sans-serif;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  padding: 1rem 0;
  color: #8a8680;
}

.recommended-divider {
  width: 100%;
  height: 1px;
  background: #e8e5e0;
}

@media (max-width: 990px) {
  .topbar {
    display: block;
  }

  .searchbar-parent {
    width: 300px;
  }

  .topbar {
    position: fixed;
    height: auto;
  }

  .topbar-inner {
    display: none;
  }

  .navbar-main {
    display: none;
  }

  .topbar-inner-2-parent {
    display: block;
  }

  .topbar-inner-2-child {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .inner-2-logo {
    display: flex;
    flex-flow: column nowrap;
  }

  .ldc-logo {
    text-decoration: none;
    font-family: var(--font-body);
    color: var(--font-color);
  }

  .ldc-logo-text {
    font-family: var(--font-body);
    font-size: 30px;
  }

  .ldc-logo-sub {
    font-family: var(--font-body);
    font-size: 5px;
  }

  .inner-2-icon {
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .searchbar-icon {
    display: none;
    background-color: transparent;
    border: none;
  }

  .searchbar-icon.active {
    display: block;
  }

  .menu-icon {
    cursor: pointer;
    height: 20px;
    position: relative;
    right: 0;
    width: 20px;
  }

  .menu-icon span {
    background: #d8d8d8;
    height: 1px;
    left: 0;
    margin: 0 auto;
    position: absolute;
    right: 0;
    transform: rotate(0);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    width: 100%;
  }

  .menu-icon span:first-child {
    top: 5px;
  }

  .menu-icon.active span:first-child {
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
  }

  .menu-icon span:last-child {
    bottom: 5px;
  }

  .menu-icon.active span:last-child {
    bottom: 50%;
    transform: translateY(50%) rotate(45deg);
  }

  /* Sidebar */
  .sidebar-parent {
    display: block;
    font-family: var(--font-body);
    position: fixed;
    top: 70px;
    right: 0;
    bottom: 0;
    width: 300px;
    transform: translateX(500px);
    transition: all 0.3s ease-in-out;
    z-index: 100;
  }

  .sidebar-parent.active {
    transform: translateX(0px);
  }

  .sidebar-child {
    height: 100%;
    overflow-y: auto;
    display: flex;
    flex-flow: column nowrap;
    background-color: white;
  }

  .sidebar-body {
    display: flex;
    flex-flow: column nowrap;
    flex: 1;
    overflow-y: auto;
  }

  .sidebar-footer {
    background-color: var(--topbar-bg);
    margin-top: auto;
    position: relative;
    z-index: 300;
    flex-shrink: 0;
  }

  .sidebar-body-child {
    padding-left: 1rem;
    padding-right: 2px;
    border-bottom: 1px solid #e5e5e5;
  }

  .sb-body-child-link {
    font-family: var(--font-body);
    display: flex;
    justify-content: space-between;
    text-decoration: none;
    text-transform: capitalize;
    font-size: 20px;
    font-weight: 400;
    font-weight: lighter;
    line-height: 1.5em;
    color: var(--black-font-color);
    align-items: center;
    padding: 0.875em 0;
  }

  .sb-body-icon-holder {
    border: none;
    background-color: transparent;
  }

  .sb-body-icon-holder svg {
    fill: white;
    stroke: black;
    width: 25px;
    height: 25px;
  }

  .sidebar-footer-child {
    margin: 1rem;
    display: flex;
    flex-flow: column nowrap;
  }

  .social-icon-container {
    padding-top: 10px;
    display: flex;
    width: 100%;
    justify-content: space-between;
  }

  .social-icon-image {
    width: 30px;
    height: 30px;
  }
}

.hero {
  position: relative;
  width: 100%;
  height: 750px;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}

.hero-overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to bottom,
      rgba(13, 13, 25, 5) 0%,
      rgba(15, 20, 30, 0.5) 45%,
      rgba(15, 15, 20, 0.6) 100%);
  z-index: 1;
}

.hero-text {
  position: absolute;
  inset: 0;
  font-family: var(--font-body);
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 0 220px 13%;
}

.hero-spacer {
  flex: 1;
}

.hero-text h1 {
  font-size: 75px;
  font-weight: 300;
  font-family: var(--font-body);
  color: #ffffff;
  letter-spacing: -0.01em;
  line-height: 1.1;
  line-height: 80px;
  margin: 0;
}

.hero-icon-parent {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 50;
}

.hero-icon-child {
  display: flex;
  flex-direction: column;
}

.hero-icon-second-child {
  display: flex;
  flex-direction: column;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out;
}

.hero-icon-second-child.active {
  max-height: 300px;
}

.hero-icon {
  background-color: #df532a;
  width: 56px;
  height: 56px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s;
}

.hero-icon:hover {
  background-color: #c4471f;
}

.hero-icon svg {
  width: 35px;
  height: 35px;
  fill: white;
}

.hero-icon-path {
  fill: white;
  stroke: white;
}

#share-toggle svg {
  width: 22px;
  height: 27px;
}

@media (max-width: 1024px) {
  .hero {
    height: 690px;
  }

  .hero-text {
    padding: 0 0 160px 10%;
  }

  .hero-text h1 {
    font-size: 64px;
  }

  .hero-icon {
    width: 50px;
    height: 50px;
  }

  .hero-icon svg {
    width: 30px;
    height: 30px;
  }
}

@media (max-width: 768px) {
  .hero {
    height: 550px;
  }

  .hero-text {
    padding: 0 0 100px 8%;
  }

  .hero-text h1 {
    font-size: 44px;
  }

  .hero-icon {
    width: 44px;
    height: 44px;
  }

  .hero-icon svg {
    width: 25px;
    height: 25px;
  }
}

@media (max-width: 480px) {
  .hero {
    height: 420px;
  }

  .hero-text {
    padding: 0 0 60px 6%;
  }

  .hero-text h1 {
    font-size: 32px;
  }

  .hero-icon {
    width: 38px;
    height: 38px;
  }

  .hero-icon svg {
    width: 25px;
    height: 25px;
  }
}