@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@300;400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Irish+Grover&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@200&display=swap');

@font-face {
    font-family: 'gothambold';
    src: url('/fonts/gotham-bold-webfont.woff2') format('woff2'),
        url('/fonts/gotham-bold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    font-family: 'Rubik', sans-serif;
}
.s-fs {
    font-size: 16px;
}

.fs {
    font-size: 18px;
}

.l-fs {
    font-size: 20px;
}

.lh {
    line-height: 26px;
}

header {
    background-color: white;
    position: sticky;
    top: 0;
    z-index: 1;
    box-shadow: 0px 0px 10px #845032;
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

nav .logo {
    padding: 25px 45px;
    text-align: center;
}

nav .logo a {
    font-family: 'gothambold';
    font-size: 23px;
    text-decoration: none;
    color: black;
}

.hamburger {
    display: block;
    z-index: 1;
    position: relative;
    cursor: pointer;
    margin: 0 70px;

    background: none;
    border: none;
    outline: none;
    user-select: none;

}

.hamburger span {
    display: block;
    width: 33px;
    height: 4px;
    margin-bottom: 5px;
    position: relative;
    background-color: black;
    border-radius: 6px;
    z-index: 1;
    transform-origin: 0 0;
    transition: 0.4s;
}



.hamburger.is-active span:nth-child(1) {
    transform: translate(0px, -2px) rotate(45deg);
}

.hamburger.is-active span:nth-child(2) {
    opacity: 0;
    /* transform: translate(0px,-2px) rotate(45deg); */
}

.hamburger.is-active span:nth-child(3) {
    transform: translate(-3px, 3px) rotate(-45deg);
}

@media (min-width:900px) {
    .hamburger:hover span:nth-child(2) {
        transform: translateX(10px);
        background-color: rgb(142, 61, 61);
    }

    .hamburger.is-active:hover span {
        background-color: rgb(142, 61, 61);
    }
}

.menu.is-active {
    display: flex;
    transition: 1s;
}

.menu {
    /* padding: 0 30px; */
    width: 50%;
    /* height: 10vh; */
    display: flex;
    justify-content: space-between;
    align-items: center;
    display: none;
    animation: fadeIn 1s;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.menu a,
.dropdown_menu a {
    font-size: 12px;
    margin: 0 10px;
    text-decoration: none;
    text-align: center;
    color: black;
}

.menu a:hover {
    /* transform: scale(1.1); */
    /* color: rgb(220, 220, 220); */
    color: rgb(142, 61, 61);
}

footer {
    padding: 10px 0;
}

.footer-section {
    margin: 6vw;
}

.footer-logo {
    display: flex;
    justify-content: center;
}

.footer-logo a {
    font-family: 'gothambold';
    font-size: 30px;
    font-weight: bold;
    text-decoration: none;
    color: black;
}

.Ftext {
    text-align: center;
    margin: 1vw;
    padding: 5px 0;
    font-size: 16px;
}

.dropdown_menu {
    display: flex;
    flex-direction: column;
    position: absolute;
    right: 2rem;
    top: 60px;
    width: 300px;
    height: 0;
    background: rgba(255, 255, 255, 0.9);
    overflow: hidden;
    display: none;
    z-index: 1;
    /* transition: height .2s cubic-bezier(0.175, 0.885, 0.32, 1.275); */
}
@supports ((-webkit-backdrop-filter: none) or (backdrop-filter: none)) {
    .dropdown_menu {
      background-color: rgba(255, 255, 255,.9);
      -webkit-backdrop-filter: blur(2em);
      backdrop-filter: blur(2em);
    }
  }
  

.dropdown_menu a {
    padding: 0.7rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.dropdown_menu.open {
    height: 240px;
}

.dropdown_menu a:hover {
    /* transform: scale(1.1); */
    /* color: rgb(220, 220, 220); */
    color: rgb(82, 39, 39);
}

@media (max-width: 900px) {

    .menu {
        display: none;
    }

    .dropdown_menu {
        display: block;
    }
}

@media (max-width: 570px) {
    .s-fs {
        font-size: 12px;
    }

    .fs {
        font-size: 14px;
    }

    .l-fs {
        font-size: 16px;
    }

    .t-fs {
        font-size: 30px;
    }

    .lh {
        line-height: 22px;
    }

    .dropdown_menu {
        left: 2rem;
        width: unset;
    }

    nav .logo a {
        font-size: 16px;
    }

    .hamburger span {
        width: 20px;
        height: 2px;
        margin-bottom: 3px;
    }

    .footer-logo a {
        font-size: 20px;
    }

    .Ftext {
        font-size: 12px;
    }

}