@import url('https://fonts.googleapis.com/css?family=Raleway:400,600&display=swap');

:root {
    max-width: 100%;
    height: 100%;

    overflow-x: hidden !important;

    --main: #946643;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    font-family: 'Raleway', sans-serif;
    background: black;   
}

#background-layer {
    position: fixed;
    height: 100vh;
    width: 100vw;
    z-index: -1;
}
#background-layer-img{
    object-fit: contain;
    

}
#overlay-layer {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
}



#menu-wrapper {
    padding-top: 13vh;
    padding-bottom: 10vh;
}

#menu-wrapper #website-logo {
    margin: 2rem auto;
    width: 40%;
}

.menus-buttons {
    position: relative;
    margin: 0 auto;
    width: 80%;
    text-align: center;
}

.menus-buttons figure {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 60px;
}
.sub-menus-buttons {
    opacity: 0;
    display: none;
}

.menus-buttons .btn {
    background: transparent;
    outline: none;
    padding: .5rem 2rem;
    border-color: var(--main);
    border-radius: 4px;
    color: var(--main);
    margin: .5rem .5rem;
    transition: all .3s ease;
    font-weight: 600;
    font-size: 1rem;
    text-transform: capitalize;
}

.menus-buttons .button:hover {
    background: var(--main);
    color: white;
}



#copyrights {
    position: relative;
    bottom: 2%;
    left: 0;
    width: 100%;
}

#social-media {
    position: relative;
    bottom: 5%;
    left: 0;
    width: 100%;
}

.paragraph {
    text-align: center;
    color: var(--main);
    font-weight: 700;
    font-size: .9rem;
}

.paragraph a {
    color: var(--main);
    text-decoration: underline;
}

.paragraph a>i {
    padding: 0 3px;
}

.container {
    position: relative;
    display: block;
    width: 100vw;
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    z-index: 1000;
    width: 100%;
    height: 100%;
    overflow-y: auto;
}

.modal-content {
    width: 60%;
    margin: 50px auto;
    padding: 10px;
}


.modal-image {
    max-width: 100%;
    height: 80vh;
    display: block;
    margin: 1px auto;
}

.close {
    position: fixed;
    top: 5%;
    right: 10%;
    font-size: 50px;
    color: grey;
    font-weight: bold;
}

.close:hover,
.close:focus {
    cursor: pointer;
    color: var(--main);
}

.slider {
    width: 100%;
    position: relative;
    overflow: hidden;
    display: block;
}


.item {
    display: none;
    position: relative;
    background: rgba(0, 0, 0, 0.7);
}

.item.active {
    display: block;
}

.prev,
.next {
    position: absolute;
    padding: 2px 4px;
    color: white;
    font-size: 50px;
    top: 45%;
    cursor: pointer;
    transition: all .2s ease-in;
}

.next:hover,
.prev:hover {
    opacity: 0.8;
}

.next {
    right: 0;
}

.prev {
    left: 0;
}

.modal-contact-btns{
    height: 10%;
    top: 47.5%;
    position: fixed;
    right: 10%;
}

.modal-contact-btns a{
    display: block;
    margin-top: 18px;
    margin-bottom: 18px;
    opacity: 0.8;
    transition: all .2s ease-in;
}

.modal-contact-btns a:hover {
    opacity: 1;
}

.modal-contact-btns a {
    color: #E8EAF6;
}


/** Mobiles Screens **/
@media only screen and (max-width: 578px) {
    #menu-wrapper {
        padding-top: .1vh;
    }

    #menu-wrapper #website-logo {
        padding-top: 0vh;
        width: 80%;
    }

    .menus-buttons {
        margin-top: 5rem;
    }

    .menus-buttons .open-menu-button {
        width: 15rem;
    }

    #copyrights {
        font-size: .6rem;
        position: absolute;
        bottom: -30%;
    }
    #social-media{
        bottom: -26%;
        position: absolute;
    }
    .item img {
        width: 100%;
        height:100%;
    }
    .modal-content {
        margin-top: 0;
        width: 90%;
    }
    .close{
        top: 19%;
        right: 5%;
    }
   
    .modal-contact-btns {
       
        display: inline-block !important;
        top: 73%;
        left: 33%;

    }

    .prev,
.next {
    color: black;
    top: 32%;
}
.modal-contact-btns a{
    display: inline-block;
    margin-left: 20px;
    margin-right: 20px;
    font-size: 10px;

}

}

/* ||------------- Scroll bar ---------------------| */
::-webkit-scrollbar {
    width: 6px;
    background-color: #000000;
}

::-webkit-scrollbar-thumb {
    background-color: var(--main);
}

::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}


/* ||----------------- Reusable classes ------------------|| */

.img-fill {
    display: block;
    width: 100%;
    height: 100%;

    
}

.sr-only {
    visibility: hidden;
    width: 0;
    height: 0;
}

.kz-btn--reset {
    border: none;
    outline: none;
    background: transparent;
}

.kz-btn--reset:focus {
    border: none;
    outline: none;
} 

