:root {
    --primary-color: #007FFF;
    --primary-muted-color: rgba(0, 128, 255, .06);

    --btn-secondary-color: #333;

    --dark-bg: #1F235A;
    --body-text: #4B4B4B;

    --tick-icon: url('../images/social-app/tick.svg');
}

path {
    transition: all .3s ease;
}

.sticky-blk {
    top: 170px;
}

.tick-list li {
    margin-bottom: 10px;
}

.primary-btn.outline {
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    background-color: transparent;
}
.alt-btn.outline {
    color: var(--white-color);
    border: 2px solid var(--white-color);
    background-color: transparent;
}
.alt-btn.outline path {
    fill: var(--white-color);
}

.primary-btn.outline path {
    fill: var(--primary-color);
}

.primary-btn.outline:hover {
    color: var(--white-color);
    background-color: var(--primary-color);
}

.primary-btn.outline:hover path {
    fill: var(--white-color);
}

.alt-btn.outline:hover {
    color: var(--primary-color);
    background-color: var(--white-color);
}

.alt-btn.outline:hover path {
    fill: var(--primary-color);
}

.primary-btn.blue {
    color: var(--white-color);
    background-color: var(--primary-color);
}
.primary-btn.blue path {
    fill: var(--white-color);
}
.primary-btn:hover.blue {
    /* color: var(--primary-color); */
    /* background-color: var(--white-color); */
    background-color: #0080ffca;
}

.secondary-btn:hover {
    background-color: var(--white-color);
}


.hero-social-dev {
    background-image: url(../images/social-app/hero-bg.webp);
    background-size: cover;
    background-position: center;
}

/* .accol-slider .owl-item a {
    display: block;
}

.accol-slider .owl-item a img {
    width: 60%;
    margin: auto;
} */

.sol-wrap {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.sol-wrap .sol-overlay {
    position: absolute;
    top: 100%;
    z-index: 2;
    height: 100%;
    background: rgba(0, 128, 255, .96);
    width: 100%;
    display: flex;
    align-items: center;
    padding: 20px 30px;
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease;
}

.sol-wrap:hover .sol-overlay {
    top: 0;
    opacity: 1;
    visibility: visible;
}

.sol-wrap .sol-front img {
    height: 240px;
    width: 100%;
    object-fit: cover;
}

.sol-wrap .sol-cont {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(51, 51, 51, 0.00) 0%, #00000088 100%);
    padding: 70px 25px 25px;
    width: 100%;
    text-align: center;
}

.social-cta .boost-cta-wrap {
    background-image: linear-gradient(90deg, #F030AD 0%, #D431D6 50%, #B833FF 100%);
    /* background-position: right center;
    background-size: cover; */
    padding: 0 55px;
    border-radius: 16px;
}

.social-solution+.social-networking {
    padding-top: 250px;
    margin-top: -180px;
}

.net-card {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 24px;
    padding: 24px;
    background-color: var(--white-color);
    border-radius: 16px;
    height: 100%;
    box-shadow: 0px 4px 12px 0px rgba(0, 127, 255, 0.12);
}

.net-card .net-icon {
    height: 80px;
    width: 80px;
    border-radius: 8px;
    background-color: var(--primary-color);
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    transition: all .3s ease;
}

.net-card:hover .net-icon {
    transform: rotateZ(-5deg);
}

.adv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.adv-card {
    height: 100%;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, .2);
    color: var(--white-color);
    padding: 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all .3s ease;
}

.adv-card.active,
.adv-card:hover {
    border-color: var(--white-color);
    background-color: var(--white-color);
    color: var(--primary-color);
}

.adv-card.active path,
.adv-card:hover path {
    fill: var(--primary-color);
}

.device-image {
    display: none;
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease;
    margin: auto;
}

.device-image.active {
    display: block;
    opacity: 1;
    visibility: visible;
}

.social-cta-snd .boost-cta-wrap {
    background-image: linear-gradient(90deg, #E65C00 0%, #F9D423 100%);
}
.social-cta-trd .boost-cta-wrap {
    background-image: linear-gradient(90deg, #00F260 0%, #007FFF 100%);
}

.tab-menu ul {
    gap: 0;
}
.tab-menu ul li a {
    border-radius: 0;
    font-weight: bold;
    background-color: transparent;
    color: var(--btn-secondary-color);
    border-bottom: 2px solid #E0E0E0;
    padding: 12px 48px;
}
.tab-menu ul li a:hover,
.tab-menu ul li a.active {
    background-color: #007FFF0F;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.tab-box {
    padding: 0;
    text-align: left;
}

.tech-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.tech-img {
    width: 125px;
    height: 125px;
    padding: 20px;
    border-radius: 24px;
    margin-inline: auto;
    display: grid;
    place-items: center;
    margin-bottom: 1rem;
    background-color: var(--white-color);
    box-shadow: 0px 4px 12px 0px rgba(0, 127, 255, 0.15), 0px 0px 1px 0px rgba(0, 127, 255, 0.10);
}
.tech-img img {
    width: 80%;
}

.reason-section {
    background: linear-gradient(-225deg, #003483, #2F6FB1);
}

.net-icon.bg-white {
    box-shadow: -6px 6px 0 0 rgba(255,255,255,.3);
}

.net-card .count {
    font-size: clamp(2.125rem, -0.2297rem + 11.7735vw, 7.0625rem);
    background: linear-gradient(180deg, rgba(0, 127, 255, 0.30) 0.14%, rgba(255, 255, 255, 0.00) 77.07%);
    font-weight: bold;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.rating-card {
    padding: 0 60px;
}

.reason-img-wrap {
    position: sticky;
    top: 170px;
}
.reason-img-wrap::after {
    content: '';
    background: #e0a2ff;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    filter: blur(200px);
}

/* .workflow .net-card::before {
    content: '';
    height: 120%;
    border-left: 2px solid #E0E0E0;
    position: absolute;
    top: -25px;
    left: 63px;
    z-index: -1;
} */

.recent-work {
    position: relative;
    color: var(--white-color);
    transition: all .3s ease;
    background: #201e20;
    background-size: 400%;
    background-position-x: 0%;
}

.recent-work::after {
    content: '';
    width: 100%;
    height: 200px;
    background: var(--white-color);
    position: absolute;
    bottom: 0;
}

.recent-work .tab-menu ul li a {
    color: var(--white-color);
    border-bottom: 2px solid rgba(255, 255, 255, 0.45);
}
.recent-work .tab-menu ul li a:hover,
.recent-work .tab-menu ul li a.active {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--white-color);
}

.resource-section .container>.row {
    background: var(--primary-color) !important;
}
.resource-section .alt-btn:not(.outline) {
    border: 2px solid var(--white-color);
}
.resource-section .alt-btn:not(.outline):hover {
    border-color: var(--btn-secondary-color);
}

.faq-blocks .accordion-item {
    border-radius: 8px !important;
    overflow: hidden;
}
.faq-blocks .accordion-flush .accordion-item .accordion-header {
    border-radius: 8px !important;
}
.faq-blocks .accordion-button:not(.collapsed) {
    color: var(--white-color);
    background-color: var(--primary-color);
}
.faq-blocks .accordion-body {
    border: none !important;
    background-color: #F5F5F5;
    border-radius: 0 0 8px 8px;
    padding: 24px   ;
}
.faq-blocks .accordion-button {
    background-color: transparent;
}
.faq-blocks .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='%23FFF' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' d='M8 0a1 1 0 0 1 1 1v6h6a1 1 0 1 1 0 2H9v6a1 1 0 1 1-2 0V9H1a1 1 0 0 1 0-2h6V1a1 1 0 0 1 1-1z' clip-rule='evenodd'/%3e%3c/svg%3e");
    transform: rotate(-227deg) !important;
}

@media (max-width: 991px) {
    .adv-grid {
        display: flex;
        overflow-x: auto;
        font-size: 14px;
    }
    .adv-grid-item {
        flex: 1 0 auto;
    }
    .adv-grid-item .adv-card {
        height: 140px;
        padding: 1rem;
        aspect-ratio: 1/1;
    }
    .adv-grid-item .adv-card svg {
        height: 35px;
    }
}

@media (min-width: 768px) {
    .ratings .col-md-4:nth-child(2) {
        border-inline: 1px solid #E0E0E0;
    }
}
@media (max-width: 767px) {
    .social-solution+.social-networking {
        padding-top: 220px;
    }
    .social-cta .boost-cta-wrap {
        background-position: left;
        padding: 40px 30px;
    }
    .boost-cta-wrap {
        text-align: center;
    }
    .boost-cta-wrap .row .col-md-6:nth-child(2) {
        display: none;
    }
    .boost-cta-wrap .spacer-y {
        padding: 0;
    }
}
@media (max-width: 767px) {
    .border-end-sm-0 {
        border: 0 !important;
    }
    .adv-grid-item .adv-card {
        height: 100%;
        padding: 1rem;
        flex-direction: row;
        gap: 10px;
        aspect-ratio: unset;
        align-items: center;
    }
    .adv-icon.mb-3 {
        margin-bottom: 0 !important;
    }
}
@media (max-width: 575px) {
    .adv-card {
        height: 150px;
        padding: 10px;
    }
    .recent-work::after {
        height: 90px;
    }
    /* .exp-counter .border-end {
        border: 0 !important;
    } */

    .tech-wrap {
        gap: 16px;
    }
    .tech-img {
        width: 80px;
        height: 80px;
        padding: 10px;
        border-radius: 15px;
    }
    .tech-img img {
        width: 40px;
        object-fit: contain;
    }

    .button {
        text-align: start;
        padding: 14px 28px;
    }

    .tab-menu ul li a {
        padding: 8px 15px;
        font-size: 14px;
    }
}
@media (max-width: 480px) {
    .reco-section img {
        width: 98px;
    }
    .net-card {
        flex-direction: column;
    }
    /* .tab-menu ul li {
        flex: 100%;
    } */
}