nav {
    height: 100vh;
    background: url(https://cdn.pixabay.com/photo/2020/06/25/14/10/car-stereo-5339808_960_720.jpg) no-repeat center center/cover;
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    /* align-items: center; */
    /* justify-content: space-between; */
}



nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
}

#nav-header {
    background-color: white;
    height: fit-content;
    position: fixed;
    position: -webkit-sticky;
    width: 100%;
    /* display: block; */
    /* position: absolute; */
    transition: 0.5s;
    opacity: 0.9;
    z-index: 11;
    -webkit-transition: opacity 0.9;
    visibility: visible;


    /* display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #333;
    color: #fff;
    opacity: 0.8;
    width: 100%;
    height: 70px;
    position: fixed;
    top: 0px;
    padding: 0 30px;
    transition: 0.5s; */

}

#nav-header .container {
    height: 100%;
    display: flex;
    /* Just for test */
    /* background-color: yellow; */
    align-items: center;
    justify-content: space-between;



}

#nav-header .container #logo img {
    width: 140px;
    /* height: 50px; */
    /* background-color: rgb(0, 234, 255); */
    margin-top: 5px;


}

#nav-header .container #nav-menu {
    /* width: 150px;
    height: 50px; */
    /* background-color: rgb(0, 234, 255); */
    display: flex;
}

#nav-header ul {
    display: flex;
    /* background-color: aqua; */
    font-size: 0.8rem;
    font-weight: 800;
}

#nav-header ul li {
    margin: 0 15px;
    list-style: none;
}



/*------------Hero-------------*/

#hero {
    height: 500px;
    /* position: relative; */
    /* background-color: yellowgreen; */
    margin-top: 70px;
    z-index: 10;

}

#hero .container {
    height: 100%;
    display: flex;
    /* Just for test */
    /* background-color: yellow; */
    align-items: center;
    justify-content: space-between;

}

#hero .container #hero-image {
    /* height: 90%; */
    width: 0%;
    /* background-color: rgb(0, 255, 21); */
    display: flex;
    justify-content: left;
    align-items: center;
    padding: 10px 10px;
    /* overflow: hidden; */
    visibility: hidden;

}

#hero .container .imag-mask {
    width: 60%;
    /* height: 90%; */
    /* background-color: red; */
    border-radius: 5%;
}

#hero .container #hero-image img {
    /* object-fit: contain; */
    height: 100%;
    border-radius: 5%;
    object-fit: cover;
    width: 100%;
}

#hero .container #hero-text-about {
    /* height: 90%; */
    width: 100%;
    /* background-color: pink; */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    flex-direction: column;
    text-align: center;
    margin-top: 50px;

}

#hero img {
    max-width: 100px;
    margin-top: 0;
    padding-top: 0;
    border-radius: 50%;
    margin-bottom: 30px;

}

#hero .container #hero-text-about h1 {
    font-size: 2rem;
    font-weight: 400;
    margin: 5px;
    color: white;

}

@media (min-width: 300px) and (max-width: 1200px) {
    #hero .container #hero-text-about h2 {
        color: white;
        font-weight: 100;
        line-height: 1.2;
        font-size: 0.5rem;
    }

    #hero img {
        max-width: 120px;
        margin-top: 0;
        padding-top: 0;
        border-radius: 50%;
        margin-bottom: 30px;
        overflow: visible;

    }

    #hero .container #hero-text-about {
        /* height: 90%; */
        width: 100%;
        /* background-color: pink; */
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: visible;
        flex-direction: column;
        text-align: center;
        margin-top: 30px;

    }

    #copyright {
        visibility: hidden;
    }


}

#hero .container #hero-text-about h2 {
    color: white;
    font-weight: 100;
    line-height: 2;
    font-size: 1rem;
}

/*-------------Main------------*/

main {
    height: fit-content;
    /* background-color: rgb(115, 207, 207); */
}

#three-big-icons .container {
    height: fit-content;
    /* background-color: blue; */
    display: flex;
    padding-top: 20px;
    padding-bottom: 20px;
    justify-content: space-around;
}

.icon-artwork {
    /* height: 20px; */
    width: 20%;
    /* background-color: white; */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.icon-artwork img {
    width: 100%;
}

#gallery {
    background-color: rgb(75, 66, 66);
    height: fit-content;
    padding-top: 20px;
    padding-bottom: 20px;
}

#gallery .row {
    height: fit-content;
    /* background-color: red; */
    width: 100%;
    padding: 5px;
    display: flex;
    justify-content: center;
}

#gallery .column {
    width: 25%;
    /* background-color: blue; */
    height: 150px;
    margin: 5px;
    border-radius: 10px;
}

#gallery .column img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

#gallery img:hover {
    opacity: 0.7;
}

/* ------ Grid Test ---------*/

#our-items {
    background-color: rgb(75, 66, 66);
    padding-top: 10px;
    padding-bottom: 10px;
}

.gallery-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    filter: grayscale(40%);
    transition: 0.5s;
}


.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin: auto;
    margin-bottom: 10px;
    margin-top: 10px;
    column-gap: 50px;
    row-gap: 50px;
    grid-auto-rows: 100px;

}

.gallery-grid img:hover {
    /* opacity: 0.7; */
    filter: grayscale(0%);
    transform: scale(1.1);
}

/* Grid Test end */

#contact-section {
    background-color: rgb(75, 66, 66);
}

.contact-us {
    height: fit-content;
    padding-top: 50px;
    padding-bottom: 50px;
    display: flex;
    justify-content: space-between;
    /* background-color: aqua; */
}

.contact-form {
    width: 40%;
    /* background-color: yellow; */
    display: flex;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    padding: 20px;
    width: 80%;
    margin: auto;
    background-color: white;
    border-radius: 10px;
    line-height: 3;
    padding-top: 30px;
    padding-bottom: 30px;
    height: 100%;
}

.contact-form form input {
    margin-bottom: 10px;
}

.contact-form form .message-box {
    height: 100px;
}

.contact-form form button {

    display: inline-block;
    width: 100px;
    margin: auto;
    margin-top: 10px;
}

.contact-map {
    width: 50%;
    /* background-color: yellow; */
    display: flex;
}



.contact-map iframe {
    border-radius: 10px;
}

footer {
    height: 200px;

}

footer .container {
    display: flex;
    /* background-color: rebeccapurple; */
    justify-content: space-between;
    margin-top: 40px;

}

#copyright {

    background-color: rgb(75, 66, 66);
    height: 30px;
    text-align: center;
    color: white;
    font-size: 0.8rem;

}

#slides img {
    max-width: 250px;

}