

.cartopcity{
	background: linear-gradient(
        to bottom, 
        rgba(0, 0, 0, 0.0), 
        rgba(0, 0, 0, 0.2)
    );
    transition: 0.3s ease;
    transform-origin: bottom;
}
.cartopcity p{
    opacity: 0;
    transition: 0.3s ease;
    transform-origin: bottom;
}
.cartopcity h1{
    font-size: 22px;
    font-weight: 600;
}
.business-cart img{
    width: 100%;
    height: 300px;
    object-fit: cover;
}
@media (max-width: 800px){
   .business-cart img{
    height: 350px;
} 
}
.business-cart:hover .cartopcity{
	background: linear-gradient(
        to bottom, 
        rgba(0, 0, 0, 0.0), 
        rgba(0, 0, 0, 0.8)
    );
    transition: 0.3s ease;
    transform-origin: bottom;
}
.business-cart:hover .cartopcity p{
     opacity:1;
}
.header-title{
    width: 60%;
    margin: 0 auto;
}
@media (max-width: 600px){
    .header-title{
        font-size: 25px !important;
        width: 90%;
    }
}

/* social button */
.socialbutton{
    position: fixed;
    z-index: 9999;
    right: 20px;
    bottom: 20px;
    width: 50px;
    height: 50px;
    overflow: hidden;
}
.socialbutton svg{
    width: 50px;
    height: 50px;
}