*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    user-select: none;
}
/* ALL START */
#wood img
{
    width: 100%;
}
/* ALL END */


/* HOME START */
#home
{
    height: 100vh;
    background-image: url(IMG/IMG/BACKGROUND.jpg);
    background-position: bottom;
}
.shadow
{
    background-color: rgba(0, 0, 0, 0.5);
    height: 100vh;
}
.content h1
{
    color: white;
    position: absolute;
    top: 50%;
    left: 70%;
    transform: translateY(-50%) translateX(-70%);
}
#sims
{
    font-size: 80px;
}
#stopanja
{
    letter-spacing: 10px;
}
.menu-icon
{
    position: absolute;
    top: 25px;
    right: 50px;
    cursor: pointer;
}
.menu-icon i
{
    position: sticky;
    top: 20%;
}
.menu-items
{
    height: 100vh;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.97);
    position: absolute;
    top: 0%;
    left: 0%;
    overflow-y: none;
}
.menu-items ul
{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
}
.menu-items ul li
{
    font-size: 30px;
    font-weight: bold;
    z-index: 1000000;
    color: white;
    text-align: center;
    cursor: pointer;
    transition: .5s ease-in-out;
    overflow: hidden;
}
.menu-items ul li a
{
    color: white;
    text-decoration: none;
}
.menu-items ul li:hover
{
    transform: translateX(-5px);
}
.showHide
{
    display: none;
}
/* HOME END */


/* SERVICES START */
#services
{
    height: auto;
    padding: 50px 0px;
}
.services-items
{
    display: grid;
    grid-template-columns: auto auto auto auto;
    justify-content: space-evenly;
    align-items: center;
}
/* SERVICES END */


/* GALLERY START */
#gallery
{
    height: auto;
    padding: 20px 0px;
}
#gallery img
{
    display: block;
    margin: auto;
    width: 3%;
    cursor: pointer;
}
.gallery-items
{
    display: flex;
}
#arrow1
{
    transform: rotate(180deg);
}
/* GALLERY END */


/* ABOUT START */
#about
{
    height: auto;
    padding: 50px 0px;
}
#about h3
{
    color: #BD3033;
    font-weight: bolder;
}
#about p
{
    font-size: 20px;
    text-align: justify;
}
/* ABOUT END */


/* CONTACT START */
#contact
{
    height: auto;
    padding: 50px 0px;
}
#contact h3
{
    color: #BD3033;
    font-weight: bolder;
}
#contact i
{
    cursor: pointer;
    font-size: 22px;
}
/* CONTACT END */


/* FOOTER START */
#footer
{
    color: #BD3033;
}
/* FOOTER END */


/* MEDIA QUERY START */
 @media only screen and (max-width:992px)
{
    .content h1
    {
        color: white;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translateY(-50%) translateX(-50%);
    }
    #services
    {
        padding: 20px 0px;
    }
    #services img
    {
        width: 50%;
    }
    #services h4
    {
        font-size: 12px;
        display: none;
    }
    #contact img
    {
        width: 15%;
    }
}
@media only screen and (max-width:768px)
{
    .contact-items
    {
        text-align: center;
        padding: 40px 0px;
    }
    #contact img
    {
        width: 10%;
    }
    #image
    {
        width: 100%;
    }
}
@media only screen and (max-width:375px)
{
    #contact i
    {
        font-size: 20px;
    }
}

/* MEDIA QUERY END */