* {
    box-sizing: border-box;
    margin: auto;
    padding: 0;
}

body {
    background-color: rgb(0, 0, 0);
    color: #fff;
    background-color: #9e7942;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%237abaeb' fill-opacity='0.2'%3E%3Cpath d='M0 38.59l2.83-2.83 1.41 1.41L1.41 40H0v-1.41zM0 1.4l2.83 2.83 1.41-1.41L1.41 0H0v1.41zM38.59 40l-2.83-2.83 1.41-1.41L40 38.59V40h-1.41zM40 1.41l-2.83 2.83-1.41-1.41L38.59 0H40v1.41zM20 18.6l2.83-2.83 1.41 1.41L21.41 20l2.83 2.83-1.41 1.41L20 21.41l-2.83 2.83-1.41-1.41L18.59 20l-2.83-2.83 1.41-1.41L20 18.59z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    font-size: 16px;
    font-family: 'Oswald', sans-serif;
}

a {
    color: #fff;
    text-decoration: none;
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    margin: auto;
}

/*Navigation*/
.nav-main {
    font-size: 17px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
    padding: 20px 0;
}

.nav-brand {
    width: 35px;
}

/*NAV LEFT*/
.nav-main ul {
    display: flex;
}

.nav main ul li {
    padding: 5px;
}

.nav-main ul li a:hover {
    border-bottom: 2px solid #fff;
}

.nav-main ul.nav-menu {
    flex: 1;
    margin-left: 20px;
}

.menu-btn {
    position: absolute;
    cursor: pointer;
    top: 15px;
    right: 30px;
    z-index: 2;
    display: none;
}

/*SHOCASE*/
hr {
    margin: 15px 0;
}

.showcase {
    width: 23%;
    height: 500px;
    background: rgba(241, 169, 100, 0.452);
    padding: 50px;
    margin-left: 20px;
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
}

.btn {
    cursor: pointer;
    display: inline-block;
    border: 0;
    font-weight: bold;
    padding: 10px 20px;
    background: rgba(230, 127, 67, 0.692);
    color: #fff;
    font-size: 15px;
    border: 1px solid rgb(233, 144, 61);
    margin: 10px 0;
}

.btn:hover {
    opacity: .4;
}

.showcase h2,
.showcase p {
    margin-bottom: 10px;
    color: white;
}

/*SHOCASE TWO*/
hr {
    margin: 15px 0;
}

.showcasetwo {
    width: 72%;
    height: 500px;
    background: rgba(236, 175, 105, 0.185);
    padding: 50px;
    margin-bottom: 20px;
    display: inline-flex;
    flex-direction: column;
}

.showcasetwo h2,
.showcasetwo p {
    margin-bottom: 10px;
    color: white;
}

/*SOCIAL*/
.social {
    margin: 50px;
}

.social p {
    text-align: center;
    font-size: 30px;
    margin-bottom: 20px;
}

.link {
    display: flex;
    align-items: center;
    justify-content: center;
}

.link a {
    margin: 0 30px;
}

.link a i {
    font-size: 3rem;
}

/*FOOTER LINKS*/
.footer-links {
    background: #2f3640;
    color: #616161;
    font-size: 10px;
    padding: 35px 0;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
    align-items: flex-start;
    justify-content: center;
}

.footer-container ul {
    margin: 0 auto;
}

.footer-container ul li {
    line-height: 2.8;
}

.footer {
    background: #2f3640;
    color: #616161;
    font-size: 12px 0;
    text-align: center;
    padding-bottom: 20px;
}

@media (max-width: 700px) {

    .menu-btn {
        display: block;
    }

    .nav-main ul.nav-menu {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        background: #9e7942;
        height: 100%;
        padding: 30px;
        opacity: .9;
        transform: translateX(-400px);
        transition: transform .5s ease-in-out;
    }

    .nav-main ul.nav-menu.show {
        transform: translateX(-20px);
    }

    .nav-main ul.nav-menu li {
        padding: 20px;
        font-size: 14px;
    }

    .nav-main ul.nav-menu-right {
        margin-right: 50px;
    }

    .showcase {
        width: 100%;
        padding: 30px;
        margin-left: 10px;
    }

    .showcasetwo {
        width: 100%;
        padding: 30px;
    }

    .footer-links .footer-container {
        grid-template-columns: 1fr;
    }
}