:root {
    --black: rgba(38, 38, 38, 0.85);
    --gray: rgb(156, 156, 156);
    --white: #fefefe;
}

@font-face {
    font-family: 'Noah';
    src: url("../fonts/NOAH-REGULAR.OTF");
    src: url("../fonts/NOAH-BOLD.OTF"), url("../fonts/NOAH-BOLDITALIC.OTF"), url("../fonts/NOAH-REGULARITALIC.OTF");
}

body {
    font-family: 'Noah', sans-serif !important;
    padding: 0;
    margin: 0;
    overflow-x: hidden;
}


/*#region hamburger*/

.brand {
    font-weight: 100;
}

.logo {
    text-transform: uppercase;
    font-weight: 800;
}

.navbar-custom {
    background-color: rgba(38, 38, 38, 1);
}

.navbar-custom a:hover {
    color: #fefefe !important;
}


/*#endregion hamburger*/


/*#region Scrow bar */

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background-color: #161616ee;
}

::-webkit-scrollbar-thumb {
    background: grey;
}

::-webkit-scrollbar-thumb:hover {
    background: darkgrey;
}


/*#endregion Scrow bar */


/*#region footer*/

footer {
    position: relative;
    bottom: 0;
    background-color: rgb(39, 39, 39);
    color: var(--gray);
    padding-top: 25px;
    padding-bottom: 10px;
    font-size: 1rem;
    width: 100%;
}

footer img:hover {
    cursor: pointer;
}

footer a {
    text-decoration: none;
    color: #ffffff;
}

footer ul {
    list-style-type: none;
    padding: 0;
}

footer ul li {
    padding: 3px 0;
}

footer ul li a {
    display: inline-block;
    text-decoration: none;
    color: var(--gray);
    width: 100%;
    transition: .3s ease-in-out;
}

footer ul li:first-of-type {
    padding-top: 10px;
}

footer .section-link {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
}

footer a:hover {
    text-decoration: none;
    color: #ffffff;
}

footer .copyright {
    position: absolute;
    bottom: 0%;
    width: 100%;
    padding: 10px;
    background-color: #fefefe;
    color: #2b2a28;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
}

footer .copyright a {
    color: var(--black);
}

footer .social a:hover {
    color: #fefefe;
}


/*#endregion footer*/


/*#region common*/

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: var(--gray);
}

.social {
    display: flex;
}

.social li {
    padding: 0px !important;
    margin: auto 5px;
}

.social li a {
    color: var(--gray);
}

.social li img {
    width: 25px;
    height: 25px;
    margin: auto;
    transition: .3s ease-in-out;
}

.social li img:hover {
    cursor: pointer;
    filter: brightness(350%) contrast(120%);
}

.breadcrumb>.active {
    color: var(--white) !important;
    font-weight: 600 !important;
    text-transform: uppercase;
}

.breadcrumb>.active::before {
    color: var(--white) !important;
}


/*#endregion common*/


/*#region landing page auto gallery*/

.landing {
    height: 100vh;
    overflow-x: hidden;
    background-image: url("../media/banner-1.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    animation: change 20s infinite ease-in-out;
}

@keyframes change {
    0% {
        background-image: url("../media/banner-1.jpg");
    }
    20% {
        background-image: url("../media/banner-2.jpg");
    }
    40% {
        background-image: url("../media/banner-3.jpg");
    }
    80% {
        background-image: url("../media/banner-4.jpg");
    }
    100% {
        background-image: url("../media/banner-5.jpg");
    }
}


/*#endregion landing page auto gallery*/


/*#region side navigation*/

.side-nav {
    height: 100vh;
    padding-left: 50px;
    background-color: var(--black);
    color: var(--gray);
    border-right: 0.57px solid var(--gray);
}

.side-nav ul {
    padding: 0%;
    margin: 0%;
    width: 100%;
}

.side-nav a {
    text-decoration: none;
    color: var(--gray);
    font-size: 16px;
    transition: .3s ease-in-out;
}

.side-nav a:hover {
    color: var(--white);
    cursor: pointer !important;
}

.side-nav img:hover {
    cursor: pointer !important;
}

.pop-up {
    position: absolute;
    right: 80px;
    background-color: var(--black);
    color: var(--gray);
    box-sizing: border-box;
    padding: 40px 40px;
}

.pop-up button {
    transition: .3s ease-in-out;
}

.pop-up button:hover {
    color: #fefefe;
    border: .57px solid #fefefe;
}

@media only screen and (max-width: 992px) {
    .pop-up {
        visibility: hidden;
        height: 0%;
        width: 0%;
    }
    .side-nav {
        visibility: hidden;
        height: 0%;
        width: 0%;
    }
    .sticky {
        visibility: hidden;
        height: 0%;
        width: 0%;
    }
}

@media only screen and (min-width: 992px) {
    .nav-row {
        height: 0 !important;
        width: 0 !important;
        margin: 0% !important;
        padding: 0% !important;
    }
    .navbar-custom {
        visibility: hidden;
        height: 0% !important;
    }
}

.heading {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
}

.description {
    font-size: 16px;
}

.pop-up button {
    width: 100%;
    padding: 5px;
    text-transform: uppercase;
    border: 0.57px solid var(--gray);
    background-color: transparent;
    color: var(--gray);
}


/*#endregion side navigation*/


/*#region grid*/

.grid {
    min-height: 100vh;
    width: 100%;
    font-size: 20px;
    text-align: center;
    background-color: rgb(113, 113, 113);
}

.grid a {
    text-transform: uppercase;
    text-decoration: none;
    color: #fefefe;
}

.grid a:hover {
    color: var(--white);
}

.grid img {
    border: .57px solid transparent;
    transition: .3s ease-in-out;
}

.grid img:hover {
    border: .57px solid var(--white);
}

@media only screen and (min-width: 992px) {
    .container .grid {
        padding: 3rem !important;
    }
}

@media only screen and (max-width: 992px) {
    .container .grid {
        padding: 1rem !important;
        font-size: 16px !important;
    }
}


/*#endregion grid*/


/*#region events*/

.events {
    min-height: 100vh;
    width: 100%;
    font-size: 24px;
    background-color: rgb(113, 113, 113);
}

.events a {
    text-decoration: none;
    color: var(--white);
}

.events a:hover {
    color: var(--white);
}

.events .side-nav a {
    color: var(--gray);
}

.events .side-nav a:hover {
    color: var(--white);
}

.events img {
    border: .57px solid transparent;
    transition: .3s ease-in-out;
}

.events img:hover {
    border: .57px solid var(--white);
}

.events .side-nav img {
    border: none;
}

.events .side-nav img:hover {
    border: none;
}

.events .side-nav {
    font-size: 16px;
    height: initial;
}

.events .sticky {
    position: sticky;
    top: 0;
}

.events .date {
    margin-bottom: 0;
    font-size: 12px;
}

.events .desc {
    font-size: 16px;
}

.events .GalleryBtn {
    background-color: transparent !important;
    border: none;
    text-align: left;
    color: var(--white);
}

.events .popUpGallery {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    background-color: var(--black);
    height: 100%;
    width: 100%;
    z-index: 100;
}


/* .events .popUpGallery img {
    width: 90% !important;
    object-fit: initial !important;
} */

.events .popUpGallery img:hover {
    border: none;
}

.events .close {
    position: absolute;
    right: 10px;
    top: 0;
    opacity: 0.2;
    z-index: 100;
    transition: .3s ease-in-out;
}

.events .close:hover {
    opacity: 1;
}

.close button {
    background-color: transparent !important;
    border: none !important;
    color: var(--white);
    font-size: 40px;
    font-weight: bold;
}

@media only screen and (max-width: 992px) {
    .events .side-nav {
        display: none;
    }
    .sticky {
        display: none;
    }
}

@media only screen and (min-width: 992px) {
    .nav-row {
        display: none;
    }
    .navbar-custom {
        display: none;
    }
}


/*#endregion events*/


/*#region news*/

.news {
    background-color: rgb(177, 177, 177);
    color: rgb(46, 46, 45);
}

.section-heading {
    font-size: 2em;
    text-transform: uppercase;
    font-weight: 600;
}

.news a {
    color: rgb(46, 46, 45);
    text-decoration: none;
}

.news a:hover {
    color: rgb(46, 46, 45);
}

.news p {
    margin: 0%;
    padding: 0%;
}

.news .category-title {
    font-size: 20px;
    font-weight: 500;
    text-transform: uppercase;
}

.news .date {
    font-size: 14px;
}

.news .desc {
    font-size: 16px;
    font-weight: 500;
}


/*#endregion news*/


/*#region contact*/

.contact {
    background-color: rgb(113, 113, 113);
}

.contact a {
    text-decoration: none;
    color: var(--white);
}

.contact a:hover {
    color: var(--white);
}

.contact .side-nav {
    height: initial;
}

.contact .side-nav a {
    color: var(--gray);
}

.contact .side-nav a:hover {
    color: var(--white);
}

.pop-up .social li {
    margin: 10px 0px;
}

.pop-up .social {
    display: block;
    padding: 0%;
}

.contact .pop-up {
    padding: 20px;
    max-height: 245px;
    max-width: 312px;
}


/*#endregion contact*/


/*#region prices*/

.prices .side-nav {
    font-size: 16px;
    height: 100vh;
}

.prices .heading {
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
}

.prices .text {
    font-size: 16px;
    font-weight: 300;
    color: var(--white);
}


/*#endregion prices*/