#hero{
    height: 500px;
    background-size: cover;
    background-position: center;
}

#hero .slider,
#hero .slick-list,
#hero .slick-track,
#hero .slick-slide div{
    height: 500px;
}

#hero .slick-slide img{
    height: 100%;
    object-fit: cover;
}

#gallery{
    padding: 50px 0 0;
}

#gallery img{
    width: 400px;
    height: 400px;
    margin: 0 auto;
    display: block;
    object-fit: cover;
    cursor: pointer;
}

@media(max-width:1400px){
    #gallery img{
        width: 350px;
        height: 350px;
        margin: 0 auto;
        display: block;
    }
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
}

.modal img {
    max-width: 80%;
    max-height: 80%;
    border-radius: 5px;
}

.thumbnail {
    cursor: pointer;
}

/* Styles for the next/previous buttons */
.modal button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 24px;
    color: white;
    cursor: pointer;
}

.modal #prevBtn {
    left: 10px;
}

.modal #nextBtn {
    right: 10px;
}

#s1{
    padding: 50px 0 0;
}

#s1 h1{
    margin-bottom: 20px;
}

#s1 p{
    font-weight: 300;
}

#s1 .row{
    align-items: center;
}

#s1 .wrap{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#s1 .left{
    display: flex;
    flex-direction: column;
    width: 20%;
}

#s1 .right{
    width: 100%;
}

#s1 .inner{
    display: flex;
}

#s1 span{
    font-weight: 700;
    color: var(--black);
    width: 66px;
    margin-right: 20px;
}

@media(max-width:991px){
    #s1 .left{
        width: 100%;
        order: 2;
    }
    #s1 .right{
        width: 100%;
    }
    #s1 .wrap{
        flex-direction: column;
    }
}