.buyer-consultation-section {
    padding: 110px 0;
    position: relative;
}

.buyer-consultation-section:after {
    content: "";
    display: block;
    background-image: url(../images/bottom-border-shape-full.svg);
    position: absolute;
    height: 110px;
    width: 100%;
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: bottom;
    bottom: 0;
}

.buyer-consultation-wraper {
    max-width: 780px;
    margin: auto;
    text-align: center;
}

.buyer-consultation-wraper .content-block span.h6 {
    margin-bottom: 18px;
}

.buyer-consultation-wraper .content-block span.h4 {
    display: inline-block;
    margin-bottom: 70px;
    max-width: 550px;
    width: 100%;
}

.buyer-consultation-wraper .content-block p {
    font-size: 23px;
    line-height: 31px;
}

.buyer-consultation-wraper .image-wraper {
    width: 340px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 60px;
    margin-bottom: 60px;
}

.buyer-consultation-wraper .image-wraper img {
    height: 100%;
    width: 100%;
    object-fit: cover;
      transition: transform 0.2s ease-in-out;
}
.buyer-consultation-wraper .image-wraper img:hover{
        animation: wiggle 0.4s ease-in-out;
}
@keyframes wiggle {
    0% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(3deg);
    }
    50% {
        transform: rotate(-3deg);
    }
    75% {
        transform: rotate(2deg);
    }
    100% {
        transform: rotate(0deg);
    }
}
@media only screen and (max-width:1199px) {
    .buyer-consultation-section:after {
        height: 80px;
    }
}

@media only screen and (max-width:1199px) {
 
}

@media only screen and (max-width:991px) {}

@media only screen and (max-width:767px) {
    .buyer-consultation-wraper .image-wraper {
        width: 210px;
    }
    .buyer-consultation-section:after {
        background-image: url(../images/bottom-mob-border-shape.svg);
    }

}