body{

    background-color: #fff;
}


.bespoke-heading{


    height: 100vh;
    width: 100vw;
    background-color:white;



}




.bespoke-heading h1 {

    text-align: center;
    padding: 40px 0;
    text-transform: capitalize;
    letter-spacing: 2px;
    padding-bottom: 20px;
cursor: pointer;
   position: relative;

}

.bespoke-heading h1::after{

    content: "";

    height: 2px;
    width: 400px;
    background-color: #df4019;
    top: 90%;
    right: 36%;
    position: absolute;

    transform: scaleX(0);
    transition: transform 0.3s ease-in-out;
}


.bespoke-heading h1:hover::after{

    transform: scaleX(1);
}



.bespoke-heading p{

    padding: 0 80px;
    margin-top: 20px;
    font-size: 18px;
    line-height: 30px;
    color: black;

    font-family: 'EB Garamond', serif;
}


.bespoke-gallery{

    height: auto;
    width: 100vw;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
margin-top: -250px;
background-color: #fff;
margin-bottom: 20px;


}


.bespoke-gallery .image-container{

    height: 320px;
    width: 320px;
   margin-top:10px;
   margin-left: -20px;
overflow: hidden;

}


.bespoke-gallery .image-container img {

    height: 100%;
    width: 100%;
        transition: 0.5s all ease-in-out;
}


.bespoke-gallery .image-container:hover img{


    transform: scale(1.5);
    
}



@media only screen and (max-width: 650px) {


    
.bespoke-gallery{

    height: auto;
    width: 100vw;

}


.bespoke-heading p{

    padding: 0 40px;
    text-align: center;

    text-align: justify;




}


.bespoke-gallery{

    margin-top: 0px;
}

.bespoke-heading{

    height: auto;

}


.bespoke-gallery .image-container {

    height: 290px;
    width: 380px;
    justify-content: center;
    align-items: center;



}



.bespoke-heading h1::after{

    height: 2px;
    width: 200px;
    background-color: #df4019;
    top: 90%;
    right: 23%;


}




}
  


   
    