body::-webkit-scrollbar{
display: none;
}



.jass-menu{
    width: 100%;
    padding: 0;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
}

.jass-menu .menu-content{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.jass-menu .menu-full{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.jass-menu .menu-price{
    width: 20%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
}

.jass-menu span{
    width: 80%;
    text-align: left;
    padding: 0 !important;
    margin: 0 !important;
    color: rgb(179, 179, 179);
}

.jass-menu strong{
    color: rgb(255, 255, 255);
}

.js-title{
    font-size: 30px;
    line-height:20px;
    color: #a66a46 !important;
}

.jass-menu h3{
    font-size: 26px;
    text-align: right;
}


.popup-outer{
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: fixed;
    z-index: 999999999;
    background-color: rgba(0, 0, 0, 0.562);
    transform: translateY(100vh);
}

.pop-up-show{
    transform: translateY(0);
}

.popup-grid{
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 2fr 1fr 2fr;
    
}

.popup-grid-item{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

}

.grid{
    width: 100%;
    display: grid;
    grid-template-columns: auto auto auto auto;
    margin: 20px 0;
    align-items: center;
    justify-content: center;
}

.grid-item{
    width: 90%;
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
    margin: 10px;
}

.grid-item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s;
}

.grid-item img:hover{
    transform: scale(1.1);
}

.grid-top-sec{
    height: 25vh;
}

.grid-center-sec{
    height: 50vh;
    
}

.grid-bottom-sec{
    height: 25vh;
}

.grid-top-left, .grid-top-right, .grid-bottom-left, .grid-bottom-right {
    width: 30vw !important;
}

.grid-top-center, .grid-center-center, .grid-bottom-center {
    width: 40vw !important;
}
.popup-content-sec{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 10px;
    background-color: #325468
}

.popup-outer .popup-inner{
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.popup-outer .popup-inner .content-left, .popup-outer .popup-inner .content-right{
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


.popup-outer .popup-inner .close-btn{
    width: 50px;
    height: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: transparent;
    border: none;
}

.popup-outer .popup-inner .close-btn img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: transparent;
    cursor: pointer;
    transition: .5s;
}
.popup-outer .popup-inner .close-btn img:hover{
    transform: scale(1.1);
}


.popup-outer .popup-inner .image-sec{
    width: 100%;
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.popup-outer .popup-inner .image-sec-full{
    width: 20vw;
    height: 60vh;
    position: absolute;
    z-index: -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: black;
    overflow: hidden;
}

.popup-outer .popup-inner .image-sec img{
    width: 100%;
    height: 60%;
    object-fit: contain;
}

.popup-outer .popup-inner .content{
    width: 100%;
    height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.popup-outer .popup-inner .content a{
    text-decoration: none;
    width: 80%;
}

.popup-outer .popup-inner .content button{
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: none;
    background-color: none;
    background-color: #a66a46;
    color: black;
    cursor: pointer;
    transition: .5s;
    margin: 5px 0;
}

.popup-outer .popup-inner .content button:hover{
    color: white;
}


.web-article{
    width: 100%;
    display: grid;
    grid-template-columns: auto auto auto;
    padding: 50px 0;
    justify-content: center;
}

.web-article .article{
    width: 100%;
    max-width: 300px;
    margin: 10px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #325468;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    padding-bottom: 10px;
}

.web-article .article img{
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 10px;
    
}

.web-article .article h3{
    font-size: 20px;
    color: #a66a46;
    margin: 5px 0;
    
}

.web-article .article p{
    font-size: 14px;
    width: 90%;
    line-height: 22px;
    color: rgb(228, 228, 228);
    margin: 10px 0; 
}

@media only screen and (max-width: 1240px) {
    .web-article{
        grid-template-columns: auto auto;
    }

    
.menu-item a{
    padding:6px !important;
}

    
  }

  @media only screen and (max-width: 768px) {
    .web-article{
        grid-template-columns: auto;
    }
    .popup-outer .popup-inner{
        flex-direction: column;
    }
    .popup-outer .popup-inner{
        width: 100%;
    }

    .popup-outer .popup-inner .content-left, .popup-outer .popup-inner .content-right{
    width: 100%;
}
 .popup-outer .popup-inner .content-left img{
    width: 100%;
    object-fit: contain;
 }


    .grid-top-sec{
        height: 10vh;
    }
    
    .grid-center-sec{
        height: 80vh;
        
    }
    
    .grid-bottom-sec{
        height: 10vh;
    }
    .grid-top-left, .grid-top-right, .grid-bottom-left, .grid-bottom-right {
        width: 10vw !important;
    }
    
    .grid-top-center, .grid-center-center, .grid-bottom-center {
        width: 80vw !important;
    }
    .popup-content-sec{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        border-radius: 10px;
        background-color: #325468
    }

    .js-title{
        text-align: left;
    }
    
    
  }

  .loader {
    border: 4px solid #f8eeee; /* Light grey */
    border-top: 4px solid #a66a46; /* Blue */
    border-radius: 50%;
    width: 25px;
    height: 25px;
    animation: spin 2s linear infinite;
    margin-left: 10px;
    display: none;
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }

  .banner{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }

  .banner-inner{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .banner-inner img{
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

