.sec-qs {
    background-color: #fff;
    height: auto;
    width: 100%;
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#ct {
    height: auto;
    width: 100%;
    border: 1px solid #f1c40f;
    margin: 100px auto;
    text-align: center;
    position: relative;
    color: #000000;
    padding: 15px;
}

@media only screen and (min-width: 768px) {
    #ct {
        height: auto;
        min-width: 370px;
        border: 1px solid #f1c40f;
        margin: 100px auto;
        text-align: center;
        position: relative;
        color: #000;
        padding: 15px;
    }

    .sec-qs {
        background-color: #fff;
        height: 350px;
        width: 100%;
        padding: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}


.sec-qs span {
    background: #fff;
    color: #f1c40f;
    padding: 0 10px;
    font-size: 20px;
    position: relative;
    top: -28px;
}

.corner {
    height: 30px;
    width: 30px;
    border-radius: 50%;
    border: 1px solid #fff;
    transform: rotate(-45deg);
    position: absolute;
    background: #fff;
}

#left_top {
    top: -16px;
    left: -16px;
    border-color: transparent transparent #f1c40f transparent;
}

#right_top {
    top: -16px;
    right: -16px;
    border-color: transparent transparent transparent #f1c40f;
}

#left_bottom {
    bottom: -16px;
    left: -16px;
    border-color: transparent #f1c40f transparent transparent;
}

#right_bottom {
    bottom: -16px;
    right: -16px;
    border-color: #f1c40f transparent transparent transparent;
}

p {
    padding-top: 13px;
    font-size: 18px
}


/* We Offer */
@import url('https://pro.fontawesome.com/releases/v6.0.0-beta1/css/all.css');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

.we_offer_sec {
    padding: 2rem;
    font-family: 'Roboto', sans-serif;
    min-height: 350px;
    display: grid;
    place-items: center;
    background-color: #27abde;
}

.we_offer_sec ul {
    width: min(100%, 60rem);
    overflow: hidden;
    margin-inline: auto;
    padding-inline: clamp(1rem, 5vw, 4rem);
    list-style: none;
    perspective: 1000px;
    display: grid;
    row-gap: 0.5rem;
}

.we_offer_sec ul li.card {
    position: relative;
    padding-block: 1.5rem;
    padding-inline: 2rem;
    background-color: var(--bg-color);
    background-image: linear-gradient(to right, rgb(0 0 0 / .15), transparent);
    transform-style: preserve-3d;
    color: var(--color);

    display: block;
    grid-template: 'icon' 'title' 'content';
    row-gap: 0.5rem;
    column-gap: 2rem;
}

.we_offer_sec ul li.card::before,
.we_offer_sec ul li.card::after {
    --side-rotate: 60deg;
    content: "";
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
    transform-origin: calc(50% - (50% * var(--ry))) 50%;
    transform: rotateY(calc(var(--side-rotate) * var(--ry)));
    background-color: inherit;
    background-image: linear-gradient(calc(90deg * var(--ry)), rgb(0 0 0 / .25), rgb(0 0 0 / .5));
}

.we_offer_sec ul li.card::before {
    --ry: -1;
    right: 100%
}

.we_offer_sec ul li.card::after {
    --ry: 1;
    left: 100%
}

.we_offer_sec ul li.card .icon {
    grid-area: icon;
    display: grid;
    place-items: center;
}

.we_offer_sec ul li.card .icon i {
    font-size: 1.3rem;
}

.we_offer_sec .we_offer_secul li.card .title {
    grid-area: title;
    font-size: 1.25rem;
    font-weight: 700;
    text-align: center;
}

.we_offer_sec ul li.card .content {
    grid-area: content;
}

.span-spec {
    min-Width: 120px;
    height: 30px;
    background-color: #ffffff;
    color: #000000 !important;
    padding: 5px;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.title,
.content {
    line-height: 40px;
}

@media (min-width: 30rem) {
    .we_offer_sec ul li.card {
        grid-template: 'icon title' 'icon content';
        text-align: left;
    }

    .we_offer_sec ul li.card .title {
        text-align: left ;
    }
}

.bg-gray {
    background-color: #f3f3f3 !important;
}