.section {
    position: relative;
    overflow: hidden;
    padding: 5rem 0;
}

.heading {
    position: relative;
    margin: 0 0 2.5rem;
    padding: 0 0 1.5rem;
}

.heading:before {
    position: absolute;
    content: '';
    background: var(--tertiary);
    width: 150px;
    height: 5px;
    bottom: 0;
    left: 0;
}

.heading>h2 {
    color: var(--primary, #2C3E50);
    font-size: 40px;
    font-weight: 700;
    margin: 0 0 2rem;
}

.button {
    border-radius: 5px;
    color: var(--white, #fff);
    font-weight: 600;
    letter-spacing: 1.6px;
    display: inline-block;
    padding: 1.5rem 5rem;
}

.button-tertiary {
    background: var(--tertiary, #4FA4AC);
    box-shadow: 10px 10px 20px 0px rgba(79, 164, 172, 0.20);
}

.button-tertiary:hover {
    background: var(--primary);
    color: var(--white, #fff);
}

.button-primary {
    background: var(--primary, #2C3E50);
    box-shadow: 10px 10px 20px 0px rgba(79, 164, 172, 0.20);
}

.button-primary:hover {
    background: var(--tertiary, #4FA4AC);
}

.svg-phone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1rem 5rem;
}

.svg-phone>i {
    width: 40px;
    height: 40px;
    background: var(--white, #fff);
    color: var(--tertiary, #4FA4AC);
    border-radius: 50%;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.svg-phone svg g path {
    fill: var(--tertiary, #4FA4AC);
    stroke: var(--tertiary, #4FA4AC);
    transition: var(--transition);
}

.svg-phone:hover i {
    background: var(--tertiary, #4FA4AC);
}

.svg-phone:hover i>svg g path {
    fill: var(--white, #fff);
    stroke: var(--white, #fff);
}

.svg-phone svg {
    width: 1.5rem;
    height: 1.5rem;
}

.div-text p {
    color: var(--primary, #2C3E50);
    font-size: 18px;
    font-weight: 500;
    line-height: 30px;
}

@media (max-width: 991px) {
    .swap-directeion {
        flex-direction: column-reverse;
    }
}

/* SECTION ONE CSS START  */

.pageBanner {
    background-image: url('/img/social-media-marketing/smm-banner.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    height: 100vh;
    display: flex;
    align-items: flex-end;
    padding: 0 0 3rem;
    min-height: 850px;
    border-bottom: 2px solid var(--tertiary, #4FA4AC);
}

@media (min-width: 1600px) {
    .pageBanner {
        align-items: center;
        padding: 0;
    }
}

.pageBanner .custom-row {
    align-items: center;
}

.pageBanner .div-text .before-heading {
    position: relative;
    display: inline-block;
    color: var(--primary, #2C3E50);
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 4px;
    margin: 0;
    padding: 0.2rem 0;
    z-index: 9;
}

.pageBanner .div-text .before-heading:before {
    position: absolute;
    content: '';
    background: linear-gradient(90deg, rgba(79, 164, 172, 0.40) 50%, rgba(79, 164, 172, 0.00) 120%);
    width: 100vw;
    height: 100%;
    top: 0;
    right: -10px;
    z-index: -9;
}

.pageBanner .div-text h1 {
    color: var(--primary, #2C3E50);
    font-size: 40px;
    font-weight: 700;
    margin: 0.5rem 0 1rem;
    /* max-width: 600px; */
}

.pageBanner .div-text p {
    color: var(--light-black, #333);
}

.pageBanner .div-text p>strong {
    display: block;
}

.pageBanner .div-text .banner-list li {
    color: var(--light-black, #333);
    font-size: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.pageBanner .div-text .banner-list li>img {
    margin-right: 10px;
}

.pageBanner .div-text .banner-list li:not(:last-of-type) {
    margin: 0 0 1rem;
}

.pageBanner .div-text hr {
    border-color: #DADADA;
    opacity: 1;
}

.pageBanner .div-text .div-CTA {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: center;
    grid-gap: 1rem;
    margin: 3rem 0 0;
}

.pageBanner .div-text .div-CTA .discover-CTA {
    border-radius: 5px;
    background: var(--tertiary, #4FA4AC);
    box-shadow: 10px 10px 20px 0px rgba(79, 164, 172, 0.20);
    padding: 1.5rem 3rem;
    color: var(--white);
    letter-spacing: 1.6px;
    font-weight: 600;
}

.pageBanner .div-text .div-CTA .discover-CTA:hover {
    background: var(--primary, #2C3E50);
}

.pageBanner .div-text .div-CTA>span {
    color: #B9B9B9;
    font-weight: 600;
}

.pageBanner .div-text .div-CTA .call-CTA {
    color: var(--primary, #2C3E50);
    font-size: 40px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    grid-gap: 1rem;
    line-height: 1;
}

.pageBanner .div-text .div-CTA .call-CTA>i {
    width: 40px;
    height: 40px;
    background: var(--primary, #2C3E50);
    color: var(--white);
    border-radius: 50%;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease-in-out;
}

.pageBanner .div-text .div-CTA .call-CTA:hover {
    color: var(--tertiary, #4FA4AC);
}

.pageBanner .div-text .div-CTA .call-CTA:hover>i {
    background: var(--tertiary, #4FA4AC);
}

.pageBanner .form-main.banner-rfp {
    padding: 2rem;
}

.pageBanner .form-main.banner-rfp .form-head {
    max-width: 100%;
}

.pageBanner .form-main.banner-rfp .form-head h3 {
    font-size: 1.875rem;
    color: var(--light-black, #333);
}

.pageBanner .form-main.banner-rfp .form-submit .submit-btn {
    display: block;
    text-align: center;
}

/* SECTION ONE CSS END  */

/* SECTION TWO CSS START  */

.s2 .div-text {
    max-width: 800px;
}

.s2 .heading {
    max-width: 800px;
}

.s2 .heading>h2 {
    margin: 0;
}


.s2 .button {
    margin: 3rem 0 0;
}

@media (min-width: 1199px) {
    .s2 .div-img>img {
        position: absolute;
        top: 0;
        right: 0;
        max-width: 550px;
        bottom: 0;
        margin: auto;
    }
}

/* SECTION TWO CSS END  */

/* SECTION THREE CSS START  */

.s3 {
    background: linear-gradient(107deg, #1B2530 0%, #2C3E50 99.16%);
    text-align: center;
}

.s3 .heading>h2 {
    margin: 0;
    color: var(--white, #fff);
}

.s3 .heading:before {
    right: 0;
    margin: 0 auto;
}

.s3 p {
    color: var(--white, #fff);
    font-size: 1.125rem;
    font-weight: 400;
}

.s3 .mw-grid {
    display: grid;
    grid-template-columns: auto;
    gap: 1rem;
    margin: 3rem 0;
}

@media screen and (min-width: 991px) {
    .s3 .mw-grid {
        grid-template-columns: repeat(4, 1fr)
    }
}

.s3 .mw-grid .mw-card {
    position: relative;
    padding: 3rem 2rem 2rem;
    background: var(--white, #fff);
    border-radius: 1.5rem;
    box-shadow: 0px 20px 20px 0px rgb(0 0 0 / 20%);
}

.s3 .mw-grid .mw-card>h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--light-black, #333);
    margin: 0 0 1rem;
}

.s3 .mw-grid .mw-card>p {
    font-size: 1rem;
    font-weight: 500;
    color: var(--light-black, #333);
    margin: 0;
    line-height: 1.4;
}

.s3 .mw-grid .mw-card>span {
    background: #00B7ED;
    border: 8px solid #202C38;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: block;
    margin: auto;
    position: absolute;
    top: -30px;
    left: 0;
    right: 0;
}

.s3 .div-text>p {
    color: var(--white, #fff);
}

.s3 .div-text .button-tertiary {
    margin: 2rem 0 0;
    box-shadow: 0px 20px 20px 0px rgb(0 0 0 / 20%);
}

.s3 .div-text .button-tertiary:hover {
    background: var(--secondary, #ECF0F1);
    color: var(--tertiary, #4FA4AC);
}

/* SECTION THREE CSS END  */

/* SECTION FOUR CSS START  */


.s4 .heading {
    position: relative;
    margin-bottom: 5rem;
}

.s4 .heading:before {
    right: 0;
    margin: auto;
}

.s4 .heading>h2 {
    margin: 0 0 1rem;
}

.s4 .heading>p {
    font-size: 1rem;
    font-weight: 500;
    line-height: 24px;
}

.s4 .heading>p:last-of-type {
    margin: 0;
}

.s4 .custom-row {
    align-items: center;
}


/* @media screen and (min-width: 1199px) {
    .s4 .div-text {
        padding-left: 3rem;
    }
} */

.s4 .container .custom-row:not(:last-child) {
    margin-bottom: 6rem;
}

.s4 .div-text h3 {
    color: var(--primary, #2C3E50);
    font-size: 40px;
    font-weight: 700;
    margin: 0 0 2rem;
}

.s4 .div-text>p {
    font-size: 1rem;
    line-height: 24px;
}

.s4 .div-text .button {
    margin: 1rem 0 0;
}

/* SECTION FOUR CSS END  */

/* SECTION FIVE CSS START  */

.s5 {
    background-image: url('/img/social-media-marketing/black-background.webp');
    background-repeat: no-repeat;
    background-size: cover;
}

.s5 h2 {
    color: var(--white, #fff);
    font-size: 2.5rem;
    font-weight: 700;
    max-width: 1100px;
    margin: 0 auto 4rem;
}

.s5 small {
    color: var(--white, #fff);
    font-size: 1rem;
    font-weight: 500;
    display: block;
    margin: 0 0 .6rem;
}

.s5 .button-tertiary {
    font-size: 1.5rem;
    padding: 1rem 5rem;
    box-shadow: 0px 20px 20px 0px rgba(0, 0, 0, 0.20);
}

.s5 .button-tertiary:hover {
    background: var(--secondary);
    color: var(--tertiary, #4FA4AC);
}

/* SECTION FIVE CSS END  */

/* SECTION SIX CSS START  */

.s6 .heading>h2 {
    margin: 0;
}

.s6 .div-text .button {
    margin: 1rem 0 0;
}

.s6 .custom-row:first-of-type {
    margin-bottom: 5rem;
}

.s6 .choose-grid {
    display: grid;
    grid-template-columns: auto;
    gap: .5rem;
}

@media screen and (min-width: 991px) {
    .s6 .choose-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

.s6 .choose-grid .choose-card {
    text-align: center;
    border: 1px solid var(--tertiary, #4FA4AC);
    border-radius: .5rem;
    padding: 1rem .5rem;
}

.s6 .choose-grid .choose-card>h3 {
    font-size: 1rem;
    font-weight: 800;
    color: var(--primary, #2C3E50);
    margin: 2rem 0 1rem;
}

.s6 .choose-grid .choose-card>p {
    font-size: .875rem;
    line-height: 22px;
    color: var(--primary, #2C3E50);
    font-weight: 500;
}

.s6 .div-text.choose-shape {
    background-image: url(/img/social-media-marketing/choose-shape.webp);
    background-repeat: no-repeat;
    background-size: 97% 100%;
    background-position: bottom center;
    min-height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.s6 .div-text.choose-shape p {
    color: var(--white, #fff);
    font-size: 1rem;
    line-height: 24px;
}

/* SECTION SIX CSS END  */

/* SECTION SEVEN CSS START  */

.s7 {
    background: var(--tertiary, #4FA4AC);
}

.s7 .heading>h2 {
    color: var(--white, #fff);
    text-shadow: 3px 3px #367c82;
    margin: 0;
}

.s7 .heading:before {
    background: var(--white, #fff);
    right: 0;
    margin: 0 auto;
}

.s7 .success-stories .success-story-card h3 {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--white, #fff);
    margin: 1.5rem 0 .5rem;
}

.s7 .success-stories .success-story-card p {
    font-size: 1rem;
    color: var(--white, #fff);
    line-height: 24px;
}

/* SECTION SEVEN CSS END  */


/* SECTION EIGHT CSS END  */

.section.s8 {
    background-image: url('/img/social-media-marketing/map-background.webp');
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: 80% 80%;
    background-color: #fbfbfb;
}

.s8 .heading:before {
    right: 0;
    margin: 0 auto;
}

.s8 .heading>h2 {
    margin: 0;
}

.s8 .practice-grid {
    background-image: url('/img/social-media-marketing/practice-circle-outer-full.webp');
    background-repeat: no-repeat;
    background-position: center center;
    height: 355px;
    display: grid;
    grid-template-columns: auto;
    gap: .5rem;
    justify-items: center;
    align-items: center;
    counter-reset: section;
}

@media screen and (min-width: 991px) {
    .s8 .practice-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.s8 .practice-grid .practice-card {
    position: relative;
    background: var(--white, #fff);
    border-radius: 50%;
    padding: 0 2rem;
    width: 287px;
    height: 287px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    box-shadow: -10px 20px 25px #ebebeb;
}

.s8 .practice-grid .practice-card>p {
    font-size: 1rem;
    color: var(--light-black, #333);
    font-weight: 600;
    line-height: 1.4;
}

.s8 .practice-grid .practice-card:before {
    position: absolute;
    counter-increment: section;
    content: "0" counter(section) "";
    width: 80px;
    height: 80px;
    background: var(--tertiary, #4FA4AC);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 6px solid var(--white, #fff);
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--white, #fff);
    top: 0px;
    right: -40px;
    box-shadow: 0 0 10px #ccc;
}

.s8 .div-CTA {
    margin: 4rem 0 0;
}

.s8 .div-CTA .svg-phone:hover i>svg g path {
    fill: var(--tertiary, #4FA4AC);
    stroke: var(--tertiary, #4FA4AC);
}

.s8 .div-CTA .svg-phone:hover i {
    background: var(--white, #fff);
}

/* SECTION EIGHT CSS END  */

/* SECTION NINE CSS START  */

.s9 {
    background-image: url('/img/social-media-marketing/black-background.webp');
    background-repeat: no-repeat;
    background-size: cover;
}

/* .s9 .heading:before {
    right: 0;
    margin: 0 auto;
}

.s9 .heading>h2 {
    margin: 0 0 1rem;
    color: var(--white, #fff);
}

.s9 p {
    font-size: 1rem;
    color: var(--white, #fff);
    line-height: 24px;
} */

.s9 .heading:before {
    right: 0;
    margin: auto;
}

.s9 .heading>h2 {
    margin: 0 0 1rem;
    color: var(--white, #fff);
}

.s9 .heading>p {
    font-size: 1rem;
    color: var(--white, #fff);
    line-height: 24px;
}

.s9 .heading>p:last-of-type {
    margin: 0;
}

.s9 #posts-container {
    margin: 3rem 0 0;
}

.s9 .post-grid .post-card .post-thumbnail {
    height: 180px;
    overflow: hidden;
    border-radius: 1rem;
    margin: 0 0 1rem;
}

.s9 .post-grid .post-card .post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    -webkit-transition: var(--transition);
}

.s9 .post-grid .post-card:hover .post-thumbnail img {
    transform: scale(1.1);
}

.s9 .post-grid .post-card h6 {
    color: var(--white);
    font-weight: 600;
    padding: 0 0 1rem;
    min-height: 74px;
}

.s9 .post-grid .post-card .read-time {
    color: rgba(255, 255, 255, 0.50);
    font-size: .875rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* SECTION NINE CSS END  */

/* SECTION TEN CSS START  */


.s10 {
    background: linear-gradient(107deg, #4FA4AC 0.55%, #358E97 100%);
}

.s10 .heading {
    margin: 0;
    padding: 0;
}

.s10 .heading>h2 {
    position: relative;
    z-index: 9;
    font-size: 60px;
    color: var(--white);
    line-height: 70px;
    text-shadow: 3px 3px 0px rgba(0, 0, 0, 0.20);
}

.s10 .accordion {
    padding-right: 1.5rem;
    overflow-x: auto;
    height: 520px;
}

.s10 .accordion::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #2F858D;
    border-radius: 50px;
}

.s10 .accordion::-webkit-scrollbar {
    width: 8px;
    background-color: #2F858D;
    border-radius: 50px;
}

.s10 .accordion::-webkit-scrollbar-thumb {
    background-color: #175E63;
    border-radius: 50px;
}

.s10 .accordion__item {
    border-radius: 10px;
    background: var(--white);
    box-shadow: 15px 15px 30px 0px rgba(0, 0, 0, 0.25);
}

.s10 .accordion__item__header>h4 {
    color: var(--light-black);
    font-size: 16px;
    font-weight: 500;
    display: grid;
    grid-template-columns: auto auto;
    align-items: center;
    justify-content: space-between;
}

.s10 .accordion__item__header {
    padding: 1.5rem;
    cursor: pointer;
}

.s10 .accordion__item__content {
    padding: 0 1.5rem 1rem;
}

.s10 .accordion__item__content>p {
    color: var(--light-black);
    font-size: 1rem;
    line-height: 24px;
}

.s10 .accordion__item.active .accordion__item__header svg {
    transform: rotate(180deg);
}

.s10 .accordion .accordion__item:not(:last-child) {
    margin: 0 0 1rem;
}

.s10 .div-img img {
    position: absolute;
    bottom: 0;
}

/* SECTION TEN CSS END  */

@media (max-width: 1199px) {
    .heading>h2 {
        font-size: 36px;
    }

    .pageBanner {
        position: relative;
        background-position: center;
        height: auto;
        padding: 5rem 0;
    }

    .pageBanner .div-text {
        position: relative;
        margin-top: 0;
    }

    .pageBanner .div-text h1 {
        font-size: 36px;
    }

    .pageBanner .div-text .div-CTA {
        flex-direction: column;
        align-items: flex-start;
    }

    .pageBanner .div-text .div-CTA>* {
        width: 100%;
    }

    .pageBanner .form-main.banner-rfp .form-head h3 {
        font-size: 1.5rem;
    }

    .s4 .div-text h3 {
        font-size: 36px;
    }

    .s6 .div-text.choose-shape {
        background-color: #01b7ee;
        max-width: 97%;
        margin: 0 auto;
    }

    .s6 .div-text.choose-shape p {
        margin: 0;
    }

    .s8 .practice-grid {
        background-image: unset;
    }

    .s8 .practice-grid .practice-card {
        border: 2px solid var(--tertiary, #4FA4AC);
    }
}

@media (max-width: 991px) {
    .s4 .div-text {
        text-align: center;
    }

    .s5 h2 {
        font-size: 2.25rem;
    }

    .s6 {
        text-align: center;
    }

    .s6 .heading:before {
        right: 0;
        margin: auto;
    }

    .s6 .custom-row:first-of-type {
        margin-bottom: 2rem;
    }

    .section.s8 {
        background-size: contain;
        background-position: center center;
    }

    .s8 .practice-grid {
        height: auto;
        gap: 2rem;
    }

    .s9 .post-grid .post-card .post-thumbnail {
        height: auto;
    }

    .s9 .post-grid .post-card h6 {
        min-height: auto;
    }

    .s9 .post-grid .post-card {
        text-align: center;
    }

    .s9 .post-grid .post-card .read-time {
        justify-content: center;
    }

    .s10 .accordion {
        position: relative;
        z-index: 9;
        padding: initial;
        height: auto;
        overflow: auto;
    }

    .s10 .heading {
        text-align: center;
    }

    .s10 .div-img img {
        right: 0;
    }

    .s10 .div-img img {
        display: none;
    }
}

@media (max-width: 767px) {

    .section {
        padding: 2rem 0;
    }

    .button {
        padding: 1rem;
        font-size: .875rem;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .heading>h2 {
        font-size: 1.5rem;
    }

    .div-text p {
        font-size: 1rem;
        line-height: 26px;
    }

    .svg-phone>i {
        width: 30px;
        height: 30px;
    }

    .svg-phone svg {
        width: 1rem;
        height: 1rem;
    }

    .pageBanner {
        height: auto;
        padding: 2rem 0;
    }

    .pageBanner .div-text h1 {
        font-size: 1.625rem;
        max-width: max-content;
    }

    .pageBanner .div-text p {
        font-size: 1rem;
        line-height: 26px;
    }

    .pageBanner .div-text .div-CTA {
        margin: 2rem 0 0;
    }

    .pageBanner .div-text .div-CTA .discover-CTA {
        padding: 1rem;
        font-size: .875rem;
    }

    .pageBanner .div-text .div-CTA .call-CTA {
        font-size: 2rem;
    }

    .s3 .mw-grid {
        gap: 3rem;
    }

    .s4 .container .custom-row:not(:last-child) {
        margin-bottom: 3rem;
    }

    .s4 .heading {
        margin: 0 0 3rem;
    }

    .s4 .div-text h3 {
        font-size: 1.25rem;
    }

    .s5 h2 {
        font-size: 1.5rem;
        margin: 0 0 3rem;
    }

    .s5 .button-tertiary {
        padding: 1rem;
    }

    .s6 .div-text.choose-shape {
        max-width: 100%;
        padding: 1rem;
    }

    .s6 .choose-grid .choose-card>h3 {
        font-size: 1.25rem;
    }

    .s8 .practice-grid .practice-card:before {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        right: 0;
    }

    .s10 .heading>h2 {
        font-size: 1.5rem;
        line-height: 1.5;
    }
}