@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,wght@0,400;0,500;0,700;1,400;1,500;1,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Cormorant:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap");


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

a {
  text-decoration: none;
  cursor: pointer;
}

/* NAV SECTION */

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 4rem;
}

.nav-link1 {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav-link1 :nth-child(3) {
  color: #e50914;
  font-size: 1.25rem;
  font-family: DM Sans;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: 0.01563rem;
  border-bottom: 2px solid #e50914;
}

.nav-link1 a {
  color: var(--secondary-text, #666);
  font-size: 1.25rem;
  font-family: DM Sans;
  line-height: 120%;
  letter-spacing: 0.01563rem;
}

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

.nav-link2 a {
  color: #e50914;
  font-size: 1.25rem;
  font-family: DM Sans;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: 0.01563rem;
}

.nav-link2 :nth-child(2):hover {
  padding: 0.75rem 2rem;
  border-radius: 1rem;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.20) 100%), #E50914;
  border: none;
  color: #FFF;
}

.nav-link2 button {
  padding: 0.75rem 2rem;
  border-radius: 1rem;
  background: #e50914;
  border: none;
  color: #fff;
  font-size: 1.25rem;
  font-family: DM Sans;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: 0.01563rem;
  cursor: pointer;
}

.nav-link2 button:hover {
  border-radius: 1rem;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.20) 100%), #E50914;
}

/* HERO SECTION */

.hero-section {
  padding: 2.5rem 0 5.5rem;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}

.hero-section > .left {
  border: 1px solid #000;
  align-items: center;
  align-self: center;
}

.hero-section > .right {
  display: flex;
  padding: 6rem 4.5rem;
  background: #fff;
  flex-direction: column;
  align-items: flex-start;
  gap: 5.5rem;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.hero-section > .right .details {
  display: flex;
  gap: 0.5rem;
}

.hero-section > .right .details .text {
  display: flex;
  flex-direction: column;
  /* align-items: flex-start; */
  gap: 0.8rem;
  /* align-self: stretch; */
}

.hero-section > .right .details .text hr {
  color: #cccfcf;
  width: 22rem;
}

.hero-section h1 {
  color: #141414;
  font-size: 3.5rem;
  font-family: Cormorant Garamond;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: 0.01563rem;
}

.hero-section h6 {
  color: #001011;
  font-size: 1.125rem;
  font-family: DM Sans;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: 0.01563rem;
}

.hero-section p {
  color: #030303;
  font-size: 1rem;
  font-family: DM Sans;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: 0.01563rem;
  padding-left: 0.4rem;
}

/* FOOTER */

footer {
  background: #030303;
  display: flex;
  /* width: 90rem; */
  padding: 5.5rem 4rem;
  align-items: flex-start;
  gap: 11.875rem;
}

footer > div {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

footer h6,
p {
  color: var(--white-01, #fbf8ff);
  font-size: 1.5rem;
  font-family: DM Sans;
  font-weight: 500;
  letter-spacing: 0.059rem;
}

footer .link a {
  color: #d4d4d4;
  font-size: 1.25rem;
  font-family: DM Sans;
  letter-spacing: 0.059rem;
}
