.we-offer {
    padding: 2rem 7%;
}

.we-offer h1 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 10px;
}

.main-offer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: -30px;
}

.inner-offer {
    flex: 1 1 300px;
    padding: 3rem 2.7rem;
    text-align: center;
    /*box-shadow: rgba(100, 97, 97, 0.2) 0px 2px 8px 0px;*/
    background: var(--mainclr);
    transition: .5s;
    -webkit-box-shadow: 0px 0px 30px 0px rgba(217, 0, 255, 0.47) !important;
    box-shadow: 0px 0px 20px 0px rgba(217, 0, 255, 0.47) !important;
}

.inner-offer img {
    border-radius: 18px;
    overflow: hidden;
    width: 100%;
    min-height: 215px;
}

.inner-offer h4 {
    font-size: 1.5rem;
    margin: 1rem 0;
}

.inner-offer p {
    font-size: 1rem;
    margin-bottom: 20px;
}

.inner-offer a {
    display: inline-block;
    padding: 12px 40px;
    background: linear-gradient(45deg, #8340ff 15%, #5900ff 65%);
    color: #f9fcfb;
    -webkit-box-shadow: 0px 2px 7px 0px rgba(32, 50, 117, 0.26);
    box-shadow: 0px 2px 7px 0px rgba(32, 50, 117, 0.26);
    -webkit-transition: all .3s;
    transition: all .3s;
    border: none;
}

.inner-offer a:hover {
    -webkit-transform: translateY(-7px);
    transform: translateY(-7px);
    color: #f9fcfb;
    text-decoration: none;
}

@media (max-width:767px) {
    .who {
        margin-top: 200px;
    }
    .inner-who-content {
        margin-top: 20px;
    }
    .who h1 {
        margin-bottom: 15px;
    }
}