@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');

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond: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 :first-child {
    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 {
    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 .left 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 form {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.hero-section>.left .form {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
    align-self: stretch;
}

.hero-section>.left .input,
.textarea {
    border-radius: 1.25rem;
    border: 1px solid #3D3D3D;
    padding: 0.75rem 1.5rem;
    width: 25rem;
    color: var(--sec-color, #B3B2B2);
    font-size: 1rem;
    font-family: DM Sans;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: 0.01563rem;
}

::placeholder {
    color: var(--sec-color, #B3B2B2);
    font-size: 1rem;
    font-family: DM Sans;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: 0.01563rem;
}


.hero-section .label {
    color: #030303;
    font-size: 1.25rem;
    font-family: Cormorant Garamond;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    letter-spacing: 0.01563rem;
}

.hero-section button {
    border-radius: 1rem;
    border: none;
    background: #E50914;
    padding: 0.75rem 2rem;
    color: #FFF;
    font-size: 1.25rem;
    font-family: DM Sans;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
    letter-spacing: 0.01563rem;
    cursor: pointer;
}

.hero-section button:hover {
    
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.20) 100%), #E50914;
}


/* 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;

    /* Regular/20 */
    font-size: 1.25rem;
    font-family: DM Sans;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.059rem;

}

