.manicure_bg{
    background-color: var(--theme-color-3);
    padding-inline: 40px;
}
.manicure{
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    background-color: #6f6f6f;
    text-align: center;
}
.manicure img{
    height: auto;
    width: 115%;
}
.card.manicure .img-container{
    display: grid;
    place-items: center;
    overflow: hidden;
    background-color: var(--theme-color-1);
}
@media (max-width: 576px){
    .card.manicure .img-container{
        height: 78vw;
    }
    .manicure img{
        width: 127%;
    }
}
@media (min-width: 576px){
    .card.manicure .img-container{
        height: 38vw;
    }
}
@media (min-width: 992px){
    .card.manicure .img-container{
        height: 20vw;
    }
}
.manicure_bg .card-body{
    height: auto;
    padding: 1rem 0!important;
}
.card.manicure{
    border-radius: 0!important;
}
.card-title a{
    font-family: var(--bs-font-Cormorant);
    letter-spacing: .01em;
    color: #363636;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.2em;
    text-decoration: none;
}
.card-title a:hover{
    color: currentColor;
}
.card-text{
    margin-bottom: 7px !important;
}
.card-text a{    
    text-decoration: none;
}
.overlay{
    background-color: #000;
	position: absolute;
	width: 100%;
	height: calc(100% - 95px);
	top: 0;
	left: 0;
	opacity: 0;
	transition: .4s;
    cursor: pointer;
}
.manicure:hover .overlay{
	opacity: 20%;
}

/* Media Quries */
/* @media (min-width: 1600px){ */
/* @media (min-width: 1600px) and (max-width: 2500px) {
    .card-title a{
        font-size: 28px;
    }
}
@media (min-width: 1400px) and (max-width: 1599px){
    .card-title a{
        font-size: 24px;
    }
}
@media (min-width: 1200px) and (max-width: 1399px){
    .card-title a{
        font-size: 21px;
    }
}
@media (min-width: 992px) and (max-width: 1199px){
    .card-title a{
        font-size: 17px;
    }
}
@media (min-width: 768px) and (max-width: 991px){
    .card-title a{
        font-size: 20px;
    }
}
@media (min-width: 576px) and (max-width: 767px){
    .card-title a{
        font-size: 23px;
    }
} */