:root{
    --max-height-slideshow: 350px;
}
body, html {
    /* height: 100%; */
    background: radial-gradient(circle, rgba(30, 30, 30, 0.6), rgba(30, 30, 30, 0.8)), url('../img/brickwp.jpeg');
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    /* background: #9c9c9c; */
    font-family: 'Roboto', sans-serif;
    margin: 0;
  }
  .slideshow {
    position: relative;
    z-index: 1;
    /* margin: 50px auto; */
    width: 70%;
    height: var(--max-height-slideshow);
  }

  .slideshow .slider {
    box-shadow: 0 20px 50px -25px black;
  }
  .slideshow .slider-track {
    transition: all 1s cubic-bezier(0.7, 0, 0.3, 1);
  }
  .slideshow .item {
    /* height: 100%; */
    position: relative;
    z-index: 1;
  }
  .slideshow .item img {
    margin: 0px 5px;
    height: var(--max-height-slideshow);
    width: auto;
    transition: all 1s cubic-bezier(0.7, 0, 0.3, 1);
  }
 
  .header-title{
    text-transform: capitalize;
    font-size: 70px;
    text-align: center;
  }

  .title-container{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero{
    height: 35vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: white;
    
    /* background: radial-gradient(circle, rgba(30, 30, 30, 0.6), rgba(30, 30, 30, 0.8)), url('../img/brickwp.jpeg');
    background-repeat: no-repeat;
    background-size: cover; */
  }

  .hero p{
    font-size: 24px;
    padding: 0px 30px;
  }

  .main{
    height: 50vh;
    display: flex;
    flex-direction: row;
    padding: 30px;
  }

  .description{
    height: 100%;
    padding: 0px 20px;
    font-size: 18px;
    color: white;
  }

  .description p{
    margin: 10px;
  }

  .description p::after{
    content: "";
    /* position: absolute; */
    display: block;
    width: 100px;
    height: 3px;
    background: white;
    left: 0;
    right: 0;
    bottom: 0;
    margin-top: 10px;
  }

  .contact{
    height: 10vh;
    display: flex;
    flex-direction: row;
    padding: 10px 50px;
    /* background: url('../img/extra1.jpg'); */
    color: white;
  }

  .contact img{
    height: 100%;
  }

  .contact-details{
    width: 100%;
    align-items: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
  }

  * {
    box-sizing: border-box;
  }

#gallery {
    display: grid;
    height: calc(100vh - 10px);
    grid-template: repeat(6, 1fr) / repeat(6, 1fr);
    grid-gap: 0.5em;
}

#gallery > div:nth-child(6n + 1) {
    grid-column: span 2;
    grid-row: span 2;
}
#gallery > div:nth-child(2) {
    grid-column: span 3;
    grid-row: span 3;
}
#gallery > div:nth-child(4) {
    grid-column: span 1;
    grid-row: span 2;
}

#gallery > div > img {
    width: 100%;
    min-height: 100%;
    transition: all ease 1s;
}

#gallery > div:hover img {
    transform: scale(1.2);
}

#gallery > div {
    overflow: hidden;
    position: relative;
    box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.2), 0 3px 20px 0 rgba(0, 0, 0, 0.19);
}
#gallery div, #gallery a {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}


.lightbox {
    position: fixed;
    display: none;
    background-color: rgba(0, 0, 0, 0.8);
    width: 100%;
    height: 100%;              
    overflow: auto;
    top: 0;
    left: 0;
}
.lightbox-content {
    position: relative;
    /* width: auto; */
    height: 70%;
    margin: 5% auto;
}
.lightbox-content img {
    border-radius: 7px;
    box-shadow: 0 0 3px 0 rgba(225, 225, 225, .25);
    width: auto;
    height: 100%;
    /* object-fit: cover; */
}
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 7px;
    top: 45%;
    cursor: pointer;
}
.lightbox-prev {
    left: 0;
}
.lightbox-next {
    right: 0;
}
.lightbox-prev:hover,
.lightbox-next:hover {
    opacity: .8;
}

@media (max-width: 767px) {
    .gallery-container {
        width: 100%;
    }
    .gallery-item {
        flex-basis: 49.80%;
        margin-bottom: 3px;
    }
    .lightbox-content {
        width: 80%;
        height: 60%;
        margin: 15% auto;
    }

    .lightbox-content img{
        max-width: 100%;
        height: auto;
    }

}
@media (max-width: 480px) {
    .gallery-item {
        flex-basis: 100%;
        margin-bottom: 1px;
    }
    .lightbox-content {
        width: 90%;
        margin: 20% auto;
    }
    .lightbox-content img{
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 810px) {
    #gallery {
        display: flex;
        align-items: flex-start;
        flex-wrap: wrap;
        justify-content: center;
   }
    #gallery > div {
        width: 48%;
        margin: 1%;
   }
   
}
@media (max-width: 800px) and (max-width: 350px) {
    #gallery > div {
        width: 98%;
   }
}

@media (max-width: 900px) {
    .main{
        display: flex;
        flex-direction: column;
        height: auto;
        padding: 15px;
        align-items: center;
    }
    .slideshow{
        width: 95%;
    }

}

@media (max-width: 380px){
    .hero p{
        margin: 0;
        font-size: 20px;
    }

    .main{
        padding: 5px;
    }

    .hero{
        height: auto;
    }
}
.navbar{
    /* position: absolute; */
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: end;
    height: 5vh;
    background-color: #9c9c9c36;
    width: 100%;
}

.navbar a{
    padding: 7px;
    text-decoration: none;
    border: 1px solid white;
    color:white;
    margin: 0px 10px;
    transition: 1s;
}

.navbar a:hover{
    color: #9c9c9c;
    background-color: white;
}

.contact-details i{
    font-size: 20px;
}

.contact-details > div> *{
    padding: 0px 5px;
}

.contact-details a{
    text-decoration: none;
    color: white;
}

.contact-details .name{
    font-size: 22px;
}

