.elementor a.introduction-box {
    min-height: 343px;
    box-shadow: 0 48px 48px -32px rgb(23 16 159 / 20%), 0 96px 96px -64px rgb(23 16 159 / 40%);
    border-radius: 20px;
    padding: 30px;
    position: relative;
    display: flex;
    justify-content: space-between;
}

.introduction-box-right h2 {
    font-size: 38px;
    margin-right: 40px;
    margin-top: 70px;
    color: #fff;
}

.introduction-box-right h3 {
    color: #fff;
    font-weight: 100;
    font-size: 24px;
    margin-right: 40px;
    margin-top: 40px;
}

.introduction-box::before {
    content: "";
    display: block;
    position: absolute;
    z-index: -1;
    width: 32px;
    height: 32px;
    border-radius: 2000px;
    background: #00c67a;
    top: -16px;
    left: 64px;
}

.introduction-box::after {
    content: "";
    display: block;
    position: absolute;
    z-index: -1;
    width: 50px;
    height: 50px;
    border-radius: 100%;
    background: #ffad00;
    right: -20px;
    bottom: -20px;
}

.introduction-box-left img {
    width: 100%;
    height: auto;
}

@media screen and (max-width:800px) {

    .introduction-box {
        flex-direction: column;
        text-align: center;
    }

    .introduction-box-right h2,
    .introduction-box-right h3 {
        margin-right: 0;
    }
}