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

@font-face {
    font-family: 'Noah';
    src: url("../font/NOAH-REGULAR.OTF");
    src: url("../font/NOAH-BOLD.OTF"), url("../font/NOAH-BOLDITALIC.OTF"), url("../font/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;
    align-items: center;
}

.social li {
    margin: 0 10px;
    align-items: center;
}

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

.social li img {
    width: 25px;
    height: 25px;
    margin: 5px 0px;
}

.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);
    z-index: 1!important;
    min-width: min-content!important;
}

.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);
}

.pop-up {
    top: 0;
    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 {
    font-size: 16px;
    min-height: 100vh;
    height: inherit;
}

.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 .carousel {
    position: absolute;
    top: 30%;
    left: 50%;
    background-color: var(--black);
    width: 70%;
    transform: translate(-50%, -30%);
    z-index: 100;
}

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

.events .close {
    position: absolute;
    right: 10px;
    top: 0;
    z-index: 100;
}

 
.close button {
    background-color: transparent !important;
    border: none !important;
    color: var(--white);
    font-size: 40px;
    font-weight: bold;
}
.img-custom{
    width: 100%;
    height: 400px;
    object-fit: cover;
}

@media only screen and (max-width: 992px) {
    .events .side-nav {
        display: none;
    }
    .sticky {
        display: none;
    }
    .events .breadcrumb-item {
        font-size:14px
    }
    .img-custom{
        width: 100%;
        height: 300px;
        object-fit: cover;
    }
}

@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*/


/* IMPORTED FROM THE PLATFORM */
/* SOCIAL ICONS */
    .social-link:hover .search-icon{
        background-image: url('../images/social/search-active.svg');
        background-repeat:no-repeat;
        width: 25px;
        height: 24px;
        filter: grayscale(0);
        background-size: cover;
    }
    .social-link:hover .messenger-icon{
        background-image: url('../images/social/messenger.png');
        filter: grayscale(0);
    }
    .social-link:hover .viber-icon{
        background-image: url('../images/social/viber-active.svg');
        filter: grayscale(0);
    }
    .social-link:hover .skype-icon{
        background-image: url('../images/social/skype-active.svg');
        filter: grayscale(0);
    }
  .social-link:hover .linkedin-icon{
    background-image: url('../images/social/linkedin-active.svg');
    filter: grayscale(0);
  }
  .social-link:hover .youtube-icon{
    background-image: url('../images/social/youtube-active.svg');
    filter: grayscale(0);
  }
  .social-link:hover .phone-icon{
    background-image: url('../images/social/phone-active.svg');
    filter: grayscale(0);
  }
  .social-link:hover .mail-icon{
    background-image: url('../images/social/email-active.png');
    filter: grayscale(0);
  }
  .social-link:hover .fb-icon{
  background-image: url('../images/social/fb-active.svg');
  filter: grayscale(0);
  }
  .social-link:hover .instagram-icon{
  background-image: url('../images/social/insta-active.svg');
  filter: grayscale(0);
  }

  .footer-icon{
    width: 25px!important;
    height: 24px!important;
    background-size: cover;
  }
  .instagram-icon{
    background-image: url('../images/social/insta-active.svg');
    background-repeat:no-repeat;
    width: 25px;
    height: 24px;
    filter: grayscale(100%) brightness(10);;
    background-size: cover;
  }
  .fb-icon{
    background-image:  url("../images/social/fb-active.svg");
    background-repeat: no-repeat;
    width: 25px;
    height: 24px;
    filter: grayscale(100%) brightness(10);
    background-size: cover;
  }
  .youtube-icon{
    background-image: url('../images/social/youtube-active.svg');
    background-repeat:no-repeat;
    width: 25px;
    height: 24px;
    filter: grayscale(100%) brightness(10);   
     background-size: cover;
  }
  .phone-icon{
    background-image: url('../images/social/phone-active.svg');
    background-repeat:no-repeat;
    width:  22px;
    height: 24px;
    filter: grayscale(100%) brightness(10);
    background-size: cover;
  }
  .mail-icon{
    background-image: url('../images/social/email-active.png');
    background-repeat:no-repeat;
    width: 25px;
    height: 24px;
    filter: grayscale(100%) brightness(10);
    background-size: cover;
  }
  .linkedin-icon{
    background-image: url('../images/social/linkedin-active.svg');
    background-repeat:no-repeat;
    width: 25px;
    height: 24px;
    filter: grayscale(100%) brightness(10);
    background-size: cover;
  }
  .messenger-icon{
    background-image: url('../images/social/messenger.png');
    background-repeat:no-repeat;
    width: 25px;
    height: 24px;
    filter: grayscale(100%) brightness(10);
    background-size: cover;
  }
  .viber-icon{
    background-image: url('../images/social/viber-active.svg');
    background-repeat:no-repeat;
    width: 25px;
    height: 24px;
    filter: grayscale(100%) brightness(10);
    background-size: cover;
  }
  .skype-icon{
    background-image: url('../images/social/skype-active.svg');
    background-repeat:no-repeat;
    width: 25px;
    height: 24px;
    filter: grayscale(100%) brightness(10);
    background-size: cover;
  }
  .search-icon{
    background-image: url('../images/social/search-active.svg');
    background-repeat:no-repeat;
    width: 25px;
    height: 24px;
    filter: grayscale(100%) brightness(10);
    background-size: cover;
  }

  /* fading carousel */
  .carousel-fade{
    position: absolute!important; 
    /* z-index:-1!important; */
    width: inherit!important;
  }
  .carousel-fade .carousel-item {
    opacity: 0;
    transition-duration: .6s;
    transition-property: opacity;
    width: 100%!important;
   }
   
   .carousel-fade  .carousel-item.active,
   .carousel-fade  .carousel-item-next.carousel-item-left,
   .carousel-fade  .carousel-item-prev.carousel-item-right {
     opacity: 1;
     width: 100%!important;
   }
   
   .carousel-fade .active.carousel-item-left,
   .carousel-fade  .active.carousel-item-right {
    opacity: 0;
    width: 100%!important;
   }
   
   .carousel-fade  .carousel-item-next,
   .carousel-fade .carousel-item-prev,
   .carousel-fade .carousel-item.active,
   .carousel-fade .active.carousel-item-left,
   .carousel-fade  .active.carousel-item-prev {
    transform: translateX(0);
    transform: translate3d(0, 0, 0);
   }

   .btn-custom{
    background-color: transparent!important;
    border: 1px solid rgb(156 156 156);
    color: rgb(156 156 156);
  }
  .btn-custom:hover{
    background-color:rgb(156 156 156)!important;
    border: 1px solid #ffffff;
    color: #ffffffff;
  }
  .btn-bottom{
    bottom: -5%;
  }
  .btn-carousel-bottom{
    bottom: 5%;
    right: 0;
    left: 0;
  }
  /* Gallery Modal */
  .gallery-image{
    position: absolute;
    top:40px;
    left: 50%;
    transform: translate(-50%, -50%);
    color: black;
  }
  .gallery {
    padding: 0 !important;
  }
  .gallery .modal-dialog {
    width: 100%;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .gallery .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
    background-color: rgba(0,0,0,0.7);
  }
  .gallery  .modal-body {
    overflow-y: auto;
  }
  .gallery-image{
    object-fit: scale-down;
    object-position: center;
  }
  .carousel-indicators{
      z-index: 101!important;
  }
  .carousel-indicators-custom  li {
    box-sizing: border-box;
    flex: 0 1 auto;
    width: 100px;
    min-width: 100px;
    height: auto;
    background-color: transparent!important;
    background-clip: padding-box;
    opacity: 1;
  }
  .carousel-indicators-custom {
    left:inherit!important;
    overflow-x: scroll!important;
    overflow-y:hidden!important;
    width: 73%!important;
    white-space: nowrap!important;
    overflow: hidden!important;
  }
  .cookieModal{
      position:fixed;
      bottom:0px;
      height: 200px;
      background-color: #000000 ;
      color:#FFFFFF;
      z-index: 1!important;
      font-size: 18px;
  } 
  .product-indicator-img{
    height: 80px;
    object-fit: cover;
  }

  .carousel-img{
    height: 100%;
    object-fit:cover;
  }
  .carousel-img-page{
      height: auto;
      object-fit: contain;
  }
  .carousel-item-img{
      width: 100vw!important;
      height: calc(100vw/1.77)!important;
      top: -20%!important;
      position: relative;
  }
  .carousel-caption-custom{
    left: 70%!important;
    top: 30%!important;
  }
  .carousel-control-prev {
      left: -5%!important;
  }
  .pic-height{
    display: inline-block;
    width: 100% !important;
    vertical-align: middle;
  }
  .l:hover{
      border:none!important;
  }
  .breadcrumb-item + .breadcrumb-item::before {
    color: white!important;
}
.thumbnail-custom{
    height:181px; 
    cursor: pointer; 
    object-fit:cover;
}
.contactblock{
    top: 0;
    /* position: absolute; */
    right: 80px;
    background-color: var(--black);
    color: var(--gray);
    box-sizing: border-box;
    padding: 40px 40px;
}
.custom-font-size{
    font-size: 20px!important;
}

.iframe-wide{
    width: 84%!important;
    height:100vh!important;
    top: -18%!important;
    position: relative;
    
}

.iframe-wide iframe{
    width: 100%!important;
    height:100vh!important;
   
    position: relative;
}