@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300&family=Playfair+Display:wght@500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300&display=swap');

html {
    font-size: 62.5%;
    height: 100%;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
}

body, a, button {
    font-family: 'Oswald', sans-serif;
    font-weight: 300;
    line-height: normal;
    color: #121212;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100%;
}


a {
    text-decoration: none;
}

h2 {
    font-size: 6rem;
    font-weight: 300;
}

input, textarea, select, label  {
    font-family: 'Oswald', 'sans-serif';
}

input, textarea, label  {
    width: 100%;
}

input, textarea, select {
    border: none;
    border-bottom: 1px solid #c7c7c7;
    font-size: 2.5rem;
    padding: 1rem;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: transparent;
}

label {
    font-size: 3rem;
}

textarea {
    border: 1px solid #c7c7c7;
    margin-top: 1rem;
    height: 30rem;
}

/* utilities */

.grid {
    display: grid;
}

.flex {
    display: flex;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
}

.no-bullets {
    list-style: none;
}

.secondary-color {
    color: #808080;
}

#footer {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    margin-top: auto;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    padding: 5rem 3rem;
    border-top: 1px solid #c7c7c7;
}

.footer-top {
    display: flex; 
    width: 100%;
    justify-content: space-evenly;
    align-items: center;
}


.sign-up, footer .social {
    display: flex;
    justify-content: center;
    align-items: center;
}

footer p {
    margin-right: 2rem;
    text-transform: uppercase;
    /* width: 20rem; */
}

.sign-up form {
    display: flex;
    flex-direction: row;
}

.sign-up form > input{
    width: 70%;
}

.social p {
    margin-left: 1.5rem;
}

.social i {
    font-size: 3rem;
    margin-right: 1rem;
}

addres {
    margin-top: 6rem;
}

/* Navigation */

#header {
}

.navigation {
    width: 100%;
    position: fixed;
    z-index: 3;
    transition: .6s;
}

.nav-desktop {
    display: flex;
    justify-content:space-between;
    align-items: center;
    padding: 0 3rem;
    max-width: 1280px;
    margin: 0 auto;
    transition: all .3s ease-in-out;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    text-transform: uppercase;
    color: #000;
    padding: .5rem 1rem;
}

.navigation-center {
    display: flex;
    justify-content: center;
    align-items: center;
    /* width: 50%; */
    font-size: 2rem;
    transition: all .3s ease-in-out;
}

.navigation-item {
    margin: 2.5rem 2rem; 
}

.navigation-item a {
    text-transform: uppercase;
    letter-spacing: .2rem;
    transition: 0.3s;
    color: #000;
}

.navigation-item a:hover {
    color: #808080;
}

.navigation-right {
    justify-content: center;
    align-items: center;
    font-size: 2rem;
}

.navigation-right a {
    letter-spacing: .2rem;
    color: #000;
    margin: 0 1rem;
}

.menu-btn {
    justify-content: space-between;
    align-items: center;
    display: none;
    cursor: pointer;
    position: absolute;
    bottom: 0;
    margin: auto;
    margin-bottom: 20px;
    background-color: #000;
    height: 8rem;
    width: 80%;
}


.burguer {
    height: 5px;
    width: 4rem;
    background-color: #fff;
    display: block;
    border-radius: 5px;
    z-index: 3;
    margin: 0 auto;
    transition: all .3s ease-in-out;
}

.burguer:before, 
.burguer:after{
    content: "";
    position: absolute;
    height: 5px;
    width: 4rem;
    background-color: #fff;
    border-radius: 5px;
    transition: all .3s ease-in-out;
}


.burguer:before {
    transform: translateY(-12px);
}

.burguer:after{
    transform: translateY(12px);
}

.open {
    transition: all .3s ease-in-out;
}

    .open .navigation-center {
        display: flex;
        visibility: visible;
        opacity: 1;
    }

.open .menu-btn {
    width: 80%;
    border-radius: 0;
}

.open .burguer {
    background: transparent;
}
.open .burguer:before {
    transform: rotate(-45deg);
}

.open .burguer:after {
    transform: rotate(45deg);
}

.mobile-nav {
    width: 100vw; 
    height: 100vh;
    position: absolute;
    top:0;
    background-color: #fff;
    z-index: 2;
    visibility: hidden;
    transition: all .3s ease-in-out;
}

.main-content {
    margin: 0 auto;
}

.page-tittle {
    font-size: 2rem;
    text-transform: capitalize;
    margin: 1rem 0;
}

.top {
    background-color: #fff;
}

/* Buttons */

.button {
    text-transform: uppercase;
    border: none;
    font-size: 2rem;
    width: 100%;
    max-width: 18rem;
    padding: 1rem 0;
    cursor: pointer;
    transition: all .2s linear;
    display: inline-block;
    margin: 0 auto;
    text-align: center;
}

.button-black {
    background-color: #2b2829;
    color: #fff;
}

.button-black:hover {
    background-color: #000000;
    color: #fff;
}

.button-white {
    text-transform: uppercase;
    background-color: #fff;
}

.button-white:hover {
    color: #ab2328 ;
}



