
/********************************************************************************/ /* Social Banner */
.social-banner {
    margin: 0 auto;
}

.insta-banner {
    background: linear-gradient(to right, #F58E06, #AE2CA3, #515AD5);
    width: 100%;
    padding: 29px 38px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.insta-banner:after {
    content: " ";
    background-color: #ffffff;
    -webkit-mask-image: url(../img/vector-hero-2.svg);
    mask-image: url(../img/vector-hero-2.svg);
    mask-size: contain;
    mask-repeat: no-repeat;
    width: 350px;
    height: 209px;
    position: absolute;
    left: -39px;
    top: -48px;
    transform: scaleX(-1);
}

.insta-banner .img-wrap img {
    width: 137px;
    height: auto;
    position: absolute;
    top: -61px;
    filter: drop-shadow(-12px 16px 60px rgba(255, 255, 255, 0.12));
}

.insta-banner .img-wrap span {
    font-size: 20px;
    font-weight: 600;
    font-family: Montserrat;
    color: #F9FAFB66;
    line-height: 1;
    display: block;
    padding-top: 36px;
    direction: ltr;
}

.insta-banner-text {
    max-width: 398px;
    font-size: 26px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--bg_color);
    position: relative;
    text-align: center;
}

.insta-banner-text em {
    font-weight: bold;
    font-style: normal;
}

.insta-banner-text:before {
    content: " ";
    background-color: var(--bg_color);
    -webkit-mask-image: url(../img/3line-vector.svg);
    mask-image: url(../img/3line-vector.svg);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    width: 28px;
    height: 27px;
    position: absolute;
    top: -5px;
    right: -20px;
    -webkit-mask-size: calc(100% - 10px) auto;
    mask-size: calc(100% - 10px) auto;
    transform: rotate(70deg);
}
.insta-banner > i{
    color: var(--bg_color);
    opacity: 0.16;
    position: absolute;
    left:30%;
    bottom: 19px;
    font-size: 22px;
    transform: rotate(8deg);
}
.insta-banner > i:nth-child(2){
    left:68%;
    bottom: 23px;
    font-size: 22px;
}
.insta-banner > i:nth-child(3){
    left:77%;
    bottom: unset;
    top: 37px;
    font-size: 14px;
}

.insta-banner .btn-light {

    --bs-btn-color: var(--primary_color);
    --bs-btn-hover-bg: var(--primary_color);
    --bs-btn-hover-border-color: var(--primary_color);
    z-index: 2;
    width: 198px;
    height: 56px;
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}
.insta-banner .btn-light span{
    font-size: 18px;
}


@media (max-width: 991px) {
    .insta-banner-text:before,
    .insta-banner:after {
        display: none;
    }

    .insta-banner {
        display: block;
        padding: 34px;
    }

    .insta-banner .img-wrap span {
        padding: 0;
        text-align: left;
    }

    .insta-banner-text {
        margin: 25px auto;
        font-size: 20px;
        line-height: 44px;
    }

    .insta-banner .btn-light {
        margin: 0 auto;
        max-width: 300px;
    }
    .insta-banner > i:nth-child(3){
        left: 61%;
        top: 47px;
    }

}
@media (max-width: 575px) {
    .insta-banner > i:nth-child(1),
    .insta-banner > i:nth-child(2){
        display: none;
    }

    .insta-banner .btn-light{
        width: 100%;
        max-width: 100%;
        justify-content: space-between;
        padding: 19px 26px 19px 16px;
    }
    .insta-banner .img-wrap img{
        right: 0;
        top: -36px;
        width: 90px;
    }
}