*,
*::after,
*::before {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "josefin sans", sans-serif;
    max-width: 100%;
    overflow-x: hidden;
}

.wrapper {
    max-width: 100%;
    margin: 0 auto;
}

nav {
    display: flex;
    justify-content: space-between;
    background: #d9d7d0;
    width: 100vw;
    z-index: 100;
}

.onpage a {
    text-decoration: underline;
    text-underline-offset: 6px;
}

.mobilenav {
    display: none;
}

nav ul {
    display: flex;
    gap: 50px;
    list-style: none;
}

nav ul a {
    text-decoration: none;
    color: #000;
}

.logo a {
    text-decoration: none;
    color: #000;
    font-family: "playfair display", sans-serif;
    letter-spacing: 1px;
}

.logo .bottom {
    margin-left: 25px;
    margin-top: 3px;
}

.mobilemenu {
    display: none;
}

nav .location a {
    text-decoration: none;
    letter-spacing: 1px;
    color: #000;
}

nav .top-loc {
    margin-bottom: 6px;
}

.contact-details {
    margin-left: 10%;
}

.body h1 {
    margin-top: 70px;
    text-align: center;
}

.body p {
    text-align: center;
}

.icons {
    display: flex;
    flex-direction: column;
    width: 20px;
    gap: 30px;
}

.complete-contact .details {
    transform: translate(50px, -180px);
}

.details p {
    margin-bottom: 30px;
}

.body {
    position: relative;
}

.contact-details {
    position: absolute;
    left: 30%;
}

.complete-contact {
    border: 2px solid #d9d7d0;
    width: 350px;
    height: 270px;
    padding: 40px 40px 40px 40px;
}


footer {
    background-color: #d9d7d0;
    padding-top: 30px;
    margin-top: 380px;
}
 
.socials-icons a {
    display: flex;
    flex-direction: column;
    width: 20px;
    gap: 30px;
    transform: translateX(50px);
}
 
.follow-us {
    position: relative;
}

.follow-us .socials {
    display: flex;
    flex-direction: column;
    gap: 25px;
    position: absolute;
    top: 40px;
    left: 120px;
}

.follow-us .socials a {
    margin-bottom: -20px;
    line-height: 12px;
    text-decoration: none;
    color: #000;
}
 
.footer-nav {
    position: relative;
}

.footer-nav ul {
    position: absolute;
    top: -220px;
    left: 50%;
    line-height: 40px;
    list-style: none;
    max-width: 150px;
    text-align: center;
}

.footer-nav ul li:hover {
    font-size: 17px;
    color: #000;
}

.footer-nav li a {
    text-decoration: none;
    color: #3b3939;
}

.footer-nav p {
    position: absolute;
    left: 50%;
    top: -35px;
    font-size: x-small;
    background-color: #d9d7d0;
}
 
.footermobile {
    display: none;
}



@media(max-width: 500px) {

    .desktopnav {
        display: none;
    }

    .mobilenav {
        z-index: 100;
        display: block;
        width: 100vw;
        background-color: #A8A8A8;
    }

    .closeicon {
        display: none;
    }

    .mobilenav .details {
        display: flex;
        justify-content: space-between;
        width: 100%;
    }

    .mobilenav .logo a {
       font-size: 13px;
    }

    .mobilenav .logo .bottom {
        background-color: #A8A8A8;
    }

    .mobilenav img {
        width: 20px;
        height: 20px;
        margin: 10px 30px 10px 0px;
    }

    .mobilemenu {
        background-color: #A8A8A8;
        display: none;
    }

    .mobilemenuwrapper {
        display: flex;
        justify-content: flex-end;
        
    }

    .mobilemenuwrapper ul li {
        width: 50vw;
        list-style: none;
        text-align: center;
    }

    .mobilemenuwrapper ul li a {
        line-height: 40px;
        color: #000;
        text-decoration: none;   
    }

    .mobilenavtopspace {
        height: 30px;
        width: 100vw;
        background-color: #A8A8A8;
    }

    .body h1 {
        font-family: "tenor sans", sans-serif;
    }

    .body p {
        font-size: 14px;
        line-height: 19px;
    }

    .contact-details {
        margin-left: -85px;
        margin-top: 25px;
    }

    .footermobile {
        display: block;
    }

    .follow-us,
    .footer-nav {
        display: none;
    }

    .footer-navmobile {
        display: flex;
        justify-content: center;
    }

    .footer-navmobile ul {
        list-style: none;
        text-align: center;
    }

    .footer-navmobile li a {
        text-decoration: none;
        line-height: 40px;
        color: #000;
    }

    .footer-navmobile .horizontal-line {
        width: 250px;
        height: 1px;
        background-color: #000;
        margin-top: 20px;
    }

    .follow-usmobile .socials-icons {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .follow-usmobile .socials {
        transform: translate(110px, -115px);
        display: flex;
        flex-direction: column;
    }

    .follow-usmobile .socials a {
        margin-bottom: -8px;
        color: #000;
    }

    .follow-usmobile .socials .copyright p {
        transform: translate(-130px, 0px);
        font-size: 14px;
        width: 100vw;
    }

    .follow-usmobile h1 {
        text-align: center;
        font-family: "Josefin Sans", sans-serif;
        font-size: 30px;
        font-weight:400;
        letter-spacing: 2.1px;
    }

    .follow-usmobile {
        height: 190px;
    }

    .follow-usmobile .socials-icons,
    .follow-usmobile .socials {
        margin-left: 60px;
    }

}