
* {
    font-size: 18px;
}

body {
    position: relative;
    top: 63px;
}

.cursor-pointer {
    cursor: pointer;
}

a, p, h1, h2, h3, h4, h5, h6 {
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    color: inherit;
}


.works-container .card {
    border: none;
}

.works-container .card-body {
    padding-right: 0;
    padding-left: 0;
}

.pre-line {
    position: relative;
}

.pre-line:after {
    content: '';
    position: absolute;
    width: 100%;
    border-bottom: 1px solid black;
    left: -105%;
    top: 50%;
}

.after-line {
    position: relative;
}

.after-line:after {
    content: '';
    position: absolute;
    width: 100%;
    border-bottom: 1px solid white;
    right: -100%;
    top: 50%;
}

footer {
    background-color: black;
}

@media (max-width: 992px) {
    .pre-line:after,
    .after-line:after {
        width: 0;
    }
}


/* NAV */
.navigation-bar-container {
    width: 100%;
    max-width: 1922px;
    position: fixed;
    top: 0;
    left:50%;
    transform: translateX(-50%);
    background: white;
    z-index: 100;
}

.nav-bar {
    width: 1920px;
    margin: auto;
}


form p {
    border: none;
    border-bottom: 1px solid black;
    font-size: 1.4rem;
    font-weight: bold;
}

form input {
    border: none;
    border-bottom: 1px solid black;
    font-size: 1.2rem;
    font-weight: bold;
}

.button-black {
    padding: .5rem 2rem;
    border: 3px solid black;
    color: white;
    background-color: black;
    text-decoration: none;
    border-radius: 1.5rem;
}

.button-outline {
    padding: .5rem 2rem;
    border: 3px solid black;
    color: black;
    text-decoration: none;
    border-radius: 1.5rem;
}

.button-outline-white {
    padding: .5rem 2rem;
    border: 3px solid white;
    color: white;
    background-color: transparent;
    text-decoration: none;
    border-radius: 1.5rem;
    transition: all .3s ease-in-out;
}

.button-outline-white:hover {

    color: black;
    background-color: white;

}


/* MENU */

.nav-menu-container {
    position: fixed;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100vh;
    background-color: black;
    z-index: 2;
    transition: all .5s ease-in-out;
    color: white;
}

.nav-menu {
    background-color: black;
}

.nav-menu-img {
    background: url("../../assets/img/menu_img.png");
    background-repeat: no-repeat;
    background-size: cover;
}

.nav-menu-items a {
    font-size: 60px;
    transition: all .3s ease-in-out;
}
@media (max-width: 1150px) {
    .nav-menu-items a {
        font-size: 40px;
    }
}
@media (max-width: 764px) {
    .nav-menu-items a {
        font-size: 60px;
    }
}
@media (max-width: 550px) {
    .nav-menu-items a {
        font-size: 35px;
    }
}

.nav-menu-items a:hover {
    transform: translateX(20px);
    font-weight: bold;
}

.nav-menu-close {
    padding: 22px;
    border-bottom: 4px solid white;
    border-radius: 50%;
}

/* CART */

.cart-container {
    position: fixed;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100vh;
    transition: all .5s ease-in-out;
    color: white;
    transition: all .5s ease-in-out;
    z-index: 1;
}

.cart {
    height: 100vh;
    position: relative;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    margin-top: 63px;
    background-color: black;
}

.cart-scroll {
    height: 100%;
    position: relative;
    overflow-x: hidden;
    overflow-y: auto;
}

.contact-container {
    max-width: 1600px;
    margin: auto;
}

/* FOOTER */
footer {
    max-width: 1600px;
    margin: -2px auto;
}