.landing {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 700px;
    background-image: url('../../../img/servises-bg.webp');
    background-position: center;
    background-size: 100% 100%;
}


.landing .imges {
    max-width: 450px;
}

.landing .info-text h3 {
    background-color: var(--primary);
    padding: 6px 60px;
    text-align: center;
    position: relative;
    margin-bottom: 14px;
}

.landing .info-text h3::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 3px;
    top: -12px;
    left: 0;
    background-color: #EBD50C;
}

.landing .info-text h3,
.landing .info-text p {
    letter-spacing: 2;
    /* line-height: 1.5; */
    width: fit-content;
    color: #fff;
}


@media (max-width:767px) {
    .landing {
        height: 350px;
    }
    .imges img{
        height: 200px;
    }
    .landing .info-text h3{
        padding: 10px;
    }

}
