img.testimonials-profile {
    width: 80px;
    height: 80px;
    border-radius: 500px;
}
.g-5 {
    gap: 15px;
}
.container {
    margin-top: 75px;
    padding: 20px 60px;
    margin-bottom: 35px;
}
.container.pt-0.wrap.about {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.about-content {
    width: 100%;
    padding: 60px;
    min-width: 250px;
    min-height: 250px;
    background: linear-gradient(89deg, #fff2f2, #f0c5c5);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    background: url(/images/testimonial-background.png) center no-repeat;
    align-items: center;
    background-size: cover;
}
img.about-image {
    position: absolute;
    border-radius: 12px;
    height: 400px;
    left: 60px;
}
p.about-p {
    color: var(--text-mid);
    font-size: 14px;
    line-height: 1.6;
}
.mid-col {
    height: 615px;
}
.container.pt-0.wrap.comment-sect , .container.pt-0.wrap.gallery-sect{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.container.pt-0.wrap.comment-sect > div {
    justify-content: center;
    width: 90%;
    gap: 25px;
}
.comment-box {
    border-radius: 8px;
    background: #fff;
    width: 240px;
    box-shadow: 0 0 14px -6px var(--dark);
    padding: 20px;
    border-top: 10px solid #f0c6c6;
}

.comment-box .comment-heading {
    font-weight: 600;
    font-size: 16px;
}

.w-70 {
    width: 70%;
}

.text-center{
    text-align: center;
}
.testimonials-sect {
    background: url(/images/testmonials.png) center no-repeat;
    background-size: contain;
    display: flex;
    background-position: top;
    flex-direction: column;
    align-items: center;
    padding: 80px 60px !important;
}
.gallery {
    display: grid;
    flex-wrap: wrap;
    width: 90%;
    justify-content: space-around;
    grid-template-columns: 33.333% 33.333% 33.333%;
    gap: 15px;
}

img.mid-large {
    width: 100%;
    height: 100%;
}
.flex-column{
    flex-direction: column;
}
.gallery .row-small {
    height: 250px;
}
.gallery .row-large {
    height: 350px;
}

.fw-5{
    font-weight: 500;
}

.image-frame {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    border-radius: 10px;
    background: #f2f2f2;
}
.image-frame .blur {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-size: cover;
  background-position: center;
}

.image-frame img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  
  /* blurring */
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}
.black-shadow img {
    filter: blur(1px) brightness(0.5);
}



@media only screen and (max-width: 600px) {
    .gallery{
        grid-template-rows: 33.333% 33.333% 33.333%;
        grid-template-columns: 100%;
    }
   .testimonials-sect {
        background: url(/images/testmonials.avif) center no-repeat;
        background-size: 350%;
        background-position-x: left;
        background-position-y: top;
   }
   .w-70 {
    width: 100%;
}
    .container.pt-0.mt-0.wrap.about {
        flex-direction: column;
    }
    img.about-image {
        position: relative;
        width: 100%;
        left: 0;
        height: fit-content;
    }
    .about-content {
        width: 90%;
        margin-top: 20px;
        padding: 20px;
    }
    .container.pt-0.mt-0.wrap.about, .container {
        flex-direction: column;
        padding: 20px !important; 
    }
    .comment-box{
        margin-top: 15px;
    }
    .gallery-image {
        margin-bottom: 15px;
    }
}
