:root {
    --gray: #474747;
    --black: #000;
    --white: #fff;
    --light-blue: #486fa4;
    --dark-blue: #0e2e67;
    --orange: #f16f1d;
    --sky-blue: #009ce5;
}

html {
    scroll-behavior: smooth;
    box-sizing: border-box;
}

body {
    overflow-x: hidden;
    margin: 0%;
}

p {
    font-family: 'Inter', sans-serif;
    line-height: 26px;

}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Raleway', sans-serif;
    margin: 0px;
}

ul {
    margin: 0px !important;
    padding-left: 0px !important;
}

li {
    list-style: none;
}

a,
a:hover,
button,
button:hover,
i,
h1,
h2,
h3,
h4,
h5,
h6,
li {
    text-decoration: none !important;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

i {
    transition: unset;
}

:focus {
    outline: 0px !important;
}

body::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #f5f5f5;
}

body::-webkit-scrollbar {
    width: 10px;
    background-color: #f5f5f5;
}

body::-webkit-scrollbar-thumb {
    background-color: var(--dark-blue);
    background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.2) 75%, transparent 75%, transparent);
}

img {
    max-width: 100%;
    width: auto;
    height: auto;
}


/* BOOTSTRAP CSS START  */

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
    width: 100%;
    padding-right: var(--bs-gutter-x, .75rem);
    padding-left: var(--bs-gutter-x, .75rem);
    margin-right: auto;
    margin-left: auto
}

@media (min-width:576px) {

    .container,
    .container-sm {
        max-width: 540px
    }
}

@media (min-width:768px) {

    .container,
    .container-md,
    .container-sm {
        max-width: 720px
    }
}

@media (min-width:992px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm {
        max-width: 960px
    }
}

@media (min-width:1200px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 1170px
    }
}

@media (min-width:1920px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1320px
    }
}


/* BOOTSTRAP CSS END  */


/* GLOBAL CSS START HERE  */

.section {
    position: relative;
    padding: 60px 0;
    overflow: hidden;
}

.dark-blue {
    background-color: var(--dark-blue);
}

.sky-blue {
    background: var(--sky-blue);
}

.orange {
    background-color: var(--orange);
}

.clr-orange {
    color: var(--orange);
}

.clr-blue {
    color: var(--dark-blue);
}


.head {
    position: relative;
    padding-bottom: 10px;
    margin: 0 auto 50px;
}

.head::before {
    position: absolute;
    content: '';
    background-color: var(--orange);
    width: 120px;
    height: 8px;
    border-radius: 10px;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.head h2 {
    padding-bottom: 10px;
    color: var(--dark-blue);
    text-transform: uppercase;
}

.head h2,
.head h2 span {
    font-size: 50px;
    font-weight: 800;
}

.head h2 span {
    color: var(--orange);
}

.head h4 {
    font-size: 22px;
    color: #00a2fd;
    font-weight: 600;
    padding-bottom: 10px;
}

.head p {
    color: #121826;
    font-size: 16px;
    font-weight: 500;
}

.head p a {
    text-decoration: underline !important;
    color: var(--orange);
}

.row.footer-icon-row {
    margin-bottom: 0 !important;
}

a.main-cta {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 500;
    border: 2px solid transparent;
    padding: 1rem 3rem;
    display: flex;
    align-items: center;
    grid-gap: 0.5rem;
    border-radius: 6px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

a.main-cta.btn--orange {
    background: var(--orange);
    /* background: linear-gradient(#f99250, #f2701d), linear-gradient(#f2701d, #f99250); */
    color: var(--white);
    Box-shadow: 5px 5px 15px rgb(242 112 29 / 40%);
}

a.main-cta.btn--transparent {
    border-color: var(--dark-blue);
    color: var(--dark-blue);
}

a.main-cta.btn--transparent i {
    background: var(--dark-blue);
    color: var(--white);
    width: 34px;
    height: 34px;
    font-size: 14px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

a.main-cta.btn--orange:hover,
a.main-cta.btn--transparent:hover {
    background: var(--dark-blue);
    color: var(--white);
    box-shadow: 5px 5px 15px rgb(14 46 103 / 40%);
}

a.main-cta.btn--transparent:hover i {
    background: var(--white);
    color: var(--dark-blue);
}

/* GLOBAL CSS END HERE  */



/* SECTION ONE CSS START HERE */

.homeBanner {
    position: relative;
    background-image: url('/img/influencer-marketing-services/coverBanner.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    overflow: hidden;
    padding: 5rem 0;
}

section.homeBanner h1 {
    font-size: 54px;
    font-weight: 800;
    color: var(--dark-blue);
    padding-bottom: 1.5rem;
}


section.homeBanner p {
    font-size: 18px;
    color: var(--dark-blue);
    margin: 0;
}

.homeBanner ul.bannerList {
    display: grid;
    margin: 2rem 0 !important;
    max-width: 90%;
}

.homeBanner ul.bannerList li {
    font-size: 14px;
    color: var(--dark-blue);
    font-weight: bold;
    text-transform: uppercase;
}

.homeBanner ul.bannerList li i {
    color: var(--orange);
}

@media only screen and (min-width: 992px) {
    .homeBanner ul.bannerList {
        grid-template-columns: auto auto;
    }
}

.coverBtns {
    display: flex;
    flex-wrap: wrap;
    column-gap: 1.5rem;
}



@media only screen and (min-width: 991px) {
    .bannerImg {
        position: absolute;
        right: auto;
        top: 0;
        bottom: 0;
        margin: auto;
    }
}

/* SECTION ONE CSS END HERE */


/* SECTION TWO CSS START HERE */

.contentCreators .head h2 {
    font-size: 40px;
    text-transform: unset;
}

.contentCreatorsWrap {
    height: 0;
    /* overflow: hidden; */
    visibility: hidden;
    margin-bottom: 0 !important;
}

.contentCreatorsWrap.active {
    height: auto;
    margin-bottom: 30px !important;
    visibility: visible;
}

.contentCreatorsWrap .slick-arrow {
    height: 0;
}

.contentCreatorsWrap.active .slick-arrow {
    height: auto;
}

.ccTabs-list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    grid-gap: .5rem;
    margin-bottom: 3rem !important;
}

li.ccTabs-nav {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 14px;
    background: #e6e6e6;
    text-transform: uppercase;
    flex: 1 1 150px;
    padding: 4px 0;
    line-height: 3;
    text-align: center;
    color: #b6b6b6;
    cursor: pointer;
    border-radius: 8px;
}

li.ccTabs-nav.active {
    background: var(--dark-blue);
    color: var(--white);
}



.section.s2 .slick-arrow {
    position: absolute;
    top: 50%;
    height: 90px;
    width: 30px;
    background: var(--dark-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    z-index: 99;
}

.section.s2 .slick-arrow.slick-disabled {
    background: #cfd5e1;
}

.section.s2 .prev-arrow.slick-arrow {
    left: -15px;
}

.section.s2 .next-arrow.slick-arrow {
    right: -2px;
}

.section.s2 ul.slick-dots {
    position: relative;
}

.section.s2 ul.slick-dots li {
    margin: 0 4px;
    border: 2px solid #0e2e67;
    border-radius: 50%;
    width: 15px;
    height: 15px;
}

.section.s2 ul.slick-dots li button {
    padding: 0;
}

.section.s2 ul.slick-dots li button:before {
    display: none;
}

.section.s2 ul.slick-dots li.slick-active {
    background: var(--dark-blue);
    border-color: var(--white);
    box-shadow: 2px 2px 8px rgb(14 46 103 / 50%);
}


/* CARD  */

article.content-creator-card {
    position: relative;
    border: 1px solid #e6e6e6;
    box-shadow: 0 0 15px #e6e6e6;
    border-radius: 20px;
    margin: 0 1rem;
}

article.content-creator-card .content-creator-head {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 2rem 2rem 0;
    grid-gap: 1.5rem;
}

article.content-creator-card .content-creator-icon {
    width: 100px;
    height: 100px;
    overflow: hidden;
    border-radius: 50%;
    box-shadow: 5px 5px 15px #b3b3b3;
}

article.content-creator-card .content-creator-meta h3 {
    font-size: 28px;
    font-weight: bold;
}

article.content-creator-card .content-creator-meta span {
    color: #525c6e;
}

article.content-creator-card .content-creator-niches {
    overflow: hidden;
    width: max-content;
    margin: 10px 0px 3px auto;
    color: #333333;

}

article.content-creator-card .content-creator-niches>ul>li {
    background: var(--dark-blue);
    color: var(--white);
    display: inline-block;
    padding: 4px 15px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
}



article.content-creator-card .content-creator-thumbnail {
    height: 405px;
}

article.content-creator-card .content-creator-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

article.content-creator-card .content-creators-platforms {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    padding: 1.5rem 1rem;
    grid-gap: 1rem;
}

article.content-creator-card .content-creators-platforms>ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

article.content-creator-card .content-creator-button {
    text-align: center;
}

article.content-creator-card .content-creator-button a {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    padding: 1rem 3rem;
    background: var(--orange);
    color: var(--white);
    display: inline-block;
    border-radius: 6px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

article.content-creator-card .content-creator-button a:hover {
    background: var(--dark-blue);
}

.slick-slider {
    -webkit-user-select: text;
    -khtml-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

.slick-list.draggable {
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* SECTION TWO CSS END HERE */

/* SECTION THREE CSS START HERE */

.section.callToAction {
    background: #eff6ff;
    border-top: 1px solid #dbeafe;
    border-bottom: 1px solid #dbeafe;
}

.ctaWrap .divBtn {
    position: relative;
    display: flex;
    flex-direction: column;
    column-gap: 1rem;
    text-align: l;
}

.ctaWrap {
    display: flex;
    display: -webkit-flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    grid-gap: 2rem;
}

.ctaWrap a {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    display: flex;
    align-items: center;
    column-gap: 1.2rem;
    z-index: 1;
}

.ctaWrap a i {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(0deg, #f7a16a, #eb6109);
    border-radius: 5px;
}

.ctaWrap a.see-pricing {
    color: var(--white);
    padding: 12px 70px;
    border-radius: 8px;
    border: 2px solid #eb6109;
    Box-shadow: 5px 5px 15px #f47a1e8a;
    background: linear-gradient(180deg, #f7a16a, #eb6109);
}

.ctaWrap a.see-pricing:before {
    position: absolute;
    content: '';
    background: var(--white);
    width: 99%;
    height: 95%;
    border-radius: 8px;
    opacity: 0;
    left: 0;
    right: 0;
    margin: auto;
    z-index: -1;
    transition: all .3s ease-in-out;
}

.ctaWrap a.see-pricing:hover:before {
    opacity: 1;
}

.ctaWrap a.see-pricing:hover {
    color: var(--orange);
}

.ctaWrap a.see-pricing:hover i {
    color: var(--white);
}

.ctaWrap a.talk-phone {
    color: var(--dark-blue);
    font-size: 24px;
    font-weight: 600;
    display: flex;
    align-items: center;
    grid-gap: 15px;
    text-decoration: underline !important;
    text-underline-offset: 2px;
    padding-left: 60px;
}

.ctaWrap a.talk-phone:before {
    position: absolute;
    content: '\f095';
    font-family: 'FontAwesome';
    left: 0px;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 50px;
    height: 50px;
    background: var(--dark-blue);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.ctaWrap a.talk-phone:hover {
    color: var(--orange);
}

.ctaWrap a.talk-phone:hover:before {
    background: var(--orange);
}

.ctaWrap .divBtn>span {
    font-size: 14px;
    font-weight: bold;
    font-family: 'Inter', sans-serif;
    padding-left: 25%;
}


/* SECTION THREE CSS END HERE */


/* SECTION FOUR CSS START HERE */

.sponsoredPost .row {
    align-items: center;
}

.sponsoredPost .row h2 {
    font-size: 30px;
    font-weight: 800;
    color: var(--dark-blue);
    padding: 0 0 1.5rem;
}

.sponsoredPost .row p {
    font-size: 18px;
    color: var(--dark-blue);
    line-height: 30px;
    margin: 0;
}

.arrow-left,
.arrow-right {
    position: absolute;
    bottom: 80px;
}

.arrow-left {
    left: 0;
}

.arrow-right {
    right: 0;
    transform: scaleX(-1);
}

.sponsoredPost .row-six {
    margin: 8rem 0 0;
}

/* SECTION FOUR CSS END HERE */


/* SECTION FIVE CSS START HERE */

section.marketingPlans {
    position: relative;
    background-image: url('/img/influencer-marketing-services/packagesBanner.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding: 0 0 10rem;
}

section.diamond {
    padding-top: 150px;
    margin-top: 100px;
    overflow: visible;
    border-top: 1px solid #b9b9b9;
}

img.diamond {
    position: absolute;
    top: -55px;
    right: 0;
    left: 0;
    margin: 0 auto;
    z-index: 9;
}


.package-tab-content {
    display: none;
}

.package-tab-content.active {
    display: block;
}

.package-tab-content .row {
    grid-row-gap: 2rem;
}

.packages-tab-head {
    display: flex;
    flex-wrap: wrap;
    grid-gap: 1rem;
    justify-content: center;
    margin: 0 0 4rem;
}

.packages-tab-head .package-tab p {
    font-family: 'Raleway', sans-serif;
    font-weight: 500;
    background: transparent;
    border: 1px solid #464646;
    margin: 0;
    color: #464646;
    padding: 1rem 1rem;
    border-radius: 0.5rem;
    cursor: pointer;
    min-width: 385px;
    text-align: center;
}


.packages-tab-head .package-tab.active p {
    background: var(--dark-blue);
    color: var(--white);
}

.package-box.package-blue {
    background: #0094da;
}

.package-box.package-white {
    background: var(--white);
}

.package-box {
    border-radius: 2rem;
    overflow: hidden;
}

.package-box.package-white .package-icon.pkg-name {
    background: #0094da;
}

.package-box.package-blue .package-icon.pkg-name {
    background: #093e7e;
}

.package-icon.pkg-name {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 0;
    gap: 1rem;
}


.package-icon.pkg-name h2,
.package-icon.pkg-name p {
    text-transform: uppercase;
    color: var(--white);
    margin: 0;
    text-shadow: 2px 2px 1px rgb(0 0 0 / 25%);
}

.package-icon.pkg-name h2 {
    font-size: 22px;
    font-weight: 800;
}

.package-icon.pkg-name p {
    font-size: 14px;
    font-weight: 600;
}

.package-box.package-white .package-price {
    color: #333333;
}

.package-box.package-blue .package-price {
    color: var(--white);
}

.package-price {
    font-family: 'Inter', sans-serif;
    font-size: 5rem;
    font-weight: bold;
    text-align: center;
    padding: 1rem 0;
    line-height: 1;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}

.package-box.package-white .calculation-box {
    background: var(--orange);
}

.package-box.package-blue .calculation-box {
    background: var(--white);
}

.calculation-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    grid-row-gap: 1rem;
    padding: .6rem 1.25rem;
}

.calculation-box>p {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
}

.package-box.package-white .calculation-box>p {
    color: var(--white);
}

.package-box.package-blue .calculation-box>p {
    color: var(--dark-blue);
}

.selectOptions {
    position: relative;
    width: 60%;
}

.selectStyle {
    font-family: 'Inter', sans-serif;
    appearance: none;
    outline: 0;
    border: 0;
    box-shadow: none;
    width: 100%;
    padding: 10px 5px;
    border: 2px solid #4267B2;
    border-radius: 5px;
    cursor: pointer;
    transition: all .3s ease-in-out;
}

/* Remove IE arrow */
.selectStyle::-ms-expand {
    display: none;
}

/* Arrow */
.selectOptions::after {
    content: '\25BC';
    position: absolute;
    top: 0;
    right: 0;
    transition: .25s all ease;
    pointer-events: none;
    width: 100%;
    height: 100%;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4267B2;
    transition: all .3s ease-in-out;

}

/* Transition */
.selectStyle:hover {
    border-color: #0094da;
}

.selectOptions:hover::after {
    color: #0094da;
}

.package-list {
    padding: 0 1rem;
}

.package-box.package-white .package-list li {
    color: var(--dark-blue);
}

.package-box.package-blue .package-list li {
    color: var(--white);
}

.package-list li {
    border-bottom: 1px solid #e6eaf0;
    line-height: 1;
    padding: .7rem 0;
    font-size: 14px;
    font-weight: 500;
}

.package-list li i {
    margin-right: 5px;
}

.package-box.package-white .package-list li i {
    color: #61b383;
}

.package-box.package-blue .package-list li i {
    color: #00ff66;
}

.package-order {
    text-align: center;
    padding: 3rem 2rem 3rem;
}

.package-order a.order-now {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 500;
    padding: 22px 40px;
    display: block;
    border-radius: 50px;
    text-transform: uppercase;
}

.package-box.package-white .package-order a.order-now {
    background: var(--orange);
    color: var(--white);
    Box-shadow: 0px 10px 15px rgb(242 112 29 / 40%);
}

.package-box.package-white .package-order a.order-now:hover {
    background: var(--dark-blue);
    box-shadow: unset;
}

.package-box.package-blue a.order-now {
    background: var(--white);
    color: var(--dark-blue);
    Box-shadow: 0px 10px 15px rgb(255 255 255 / 40%);
}

.package-box.package-blue a.order-now:hover {
    background: var(--dark-blue);
    color: var(--white);
    Box-shadow: unset;
}


@media screen and (max-width: 767px) {
    .packages-tab-head .package-tab p {
        min-width: auto;
    }

    .package-box .package-icon.pkg-name {
        text-align: center;
    }

    .package-price {
        font-size: 4rem;
    }

    .package-order a.order-now {
        font-size: 14px;
        padding: 16px 0;
    }
}

/* SECTION FIVE CSS END HERE */

/* SECTION EIGHT CSS START HERE */


section.section.s8 {
    background: #eff6ff;
    margin: 0;
    padding: 12rem 0 6rem;
    border-bottom: 1px solid #dbeafe;
}

section.section.s8 .row {
    background-image: url(/img/influencer-marketing-services/s7-bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding: 2rem;
    border-radius: 1rem;
    overflow: hidden;
    grid-row-gap: 1rem;
    box-shadow: 10px 10px 20px rgb(18 54 115 / 30%);
}

@media screen and (max-width: 991px) {
    section.section.s8 .row {
        text-align: center;
    }
}

section.section.s8 h2 {
    font-size: 60px;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
    margin: 0 0 .5rem;
    text-shadow: 2px 2px 3px rgb(0 0 0 / 50%);
}

section.section.s8 h2 span {
    color: var(--orange);
}

section.section.s8 p {
    font-size: 20px;
    text-transform: uppercase;
    color: var(--white);
}

section.section.s8 hr {
    background: var(--orange);
    opacity: 1;
}

section.section.s8 ul {
    column-count: 2;
    color: var(--white);
}

section.section.s8 ul li i {
    color: var(--orange);
}

section.section.s8 .ctaWrap {
    flex-direction: column;
}

section.section.s8 .ctaWrap span.or {
    font-size: 32px;
    font-weight: 900;
    color: #97acc8;
}

section.section.s8 .ctaWrap a.see-pricing {
    box-shadow: 5px 5px 15px rgb(0 0 0 / 40%);
}

section.section.s8 .ctaWrap .divBtn>span {
    color: var(--white);
}

section.section.s8 .ctaWrap a.talk-phone {
    color: var(--white);
    font-size: 28px;
}

section.section.s8 .ctaWrap a.talk-phone:before {
    background: var(--white);
    color: var(--dark-blue);
}

section.section.s8 .ctaWrap a.talk-phone:hover {
    color: var(--orange);
}

section.section.s8 .ctaWrap a.talk-phone:hover:before {
    background: var(--orange);
    color: var(--white);
}

@media screen and (max-width: 767px) {
    section.section.s8 .row {
        border-radius: unset;
    }

    section.section.s8 h2,
    section.section.s8 p,
    section.section.s8 ul {
        text-align: left;
    }

    section.section.s8 h2 {
        font-size: 1.5rem;
    }

    section.section.s8 ul {
        column-count: auto;
    }

    section.section.s8 .ctaWrap a.talk-phone {
        font-size: 1rem;
        padding: 0;
        justify-content: center;
    }

    .ctaWrap .divBtn>span {
        padding: 0;
    }

    .ctaWrap a.talk-phone:before,
    .ctaWrap a i {
        display: none;
    }

    section.section.s8 .ctaWrap {
        justify-content: center;
        align-items: center;
        gap: 1rem;
    }
}


/* SECTION EIGHT CSS END HERE */


/* SECTION SIX CSS START HERE */

.reviewBox {
    border-radius: 20px;
    overflow: hidden;
    padding: 30px;

}

.reviewBox .clientImg.clientName {
    display: flex;
    align-items: center;
    column-gap: 1rem;
    padding: 0 0 1.5rem;
}

.reviewBox .clientImg.clientName h2 {
    font-size: 50px;
    font-weight: 800;
    font-style: italic;
}

.reviewBox .reviewContent h4 {
    font-size: 24px;
    font-weight: bold;
    font-style: italic;
    color: #00165e;
    padding: 0 0 2rem;
}

.reviewContent p {
    color: #616161;
    line-height: 26px;
}


#reviewSlider .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translate(0px, -30px);
    z-index: 99;
    background: var(--white);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7a94c6;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 5px 5px 15px rgb(122 148 198 / 40%);
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
}

#reviewSlider .next-arrow.slick-arrow {
    right: 10%;
}

#reviewSlider .prev-arrow.slick-arrow {
    left: 10%;
}

#reviewSlider .slick-arrow:hover {
    background: var(--dark-blue);
    color: var(--white);
}

div#reviewSlider .slick-track>div {
    margin: 0 1rem 2.6rem;
    opacity: 0.2;
}

div#reviewSlider .reviewBox.slick-center {
    background: #fafafb;
    border: 1px solid #616161;
    opacity: 1;
}

div#reviewSlider ul.slick-dots li button:before {
    display: none;
}

div#reviewSlider ul.slick-dots li button {
    padding: 0;
}

div#reviewSlider ul.slick-dots li {
    width: 34px;
    height: 10px;
    background: #b8c7e2;
    border-radius: 50px;
}

div#reviewSlider ul.slick-dots li.slick-active {
    background: var(--dark-blue);
}


/* SECTION SIX CSS END HERE */

/* SECTION SEVEN - BOTTOM FORM CSS START HERE  */

section.ny-contact {
    padding: 30px 0;
}

div#discussLead {
    background: #3d62a3;
    padding: 20px;
    border-radius: 15px;
    position: relative;
}

div#discussLead span.dot {
    display: block;
    margin-left: 20px;
}

div#discussLead span.dot i {
    color: var(--white);
    opacity: 0.7;
}

div#discussLead span.dot i {
    margin-right: 10px;
}

.bottom-form.contact {
    position: relative;
    background: var(--white);
    border-radius: 20px;
    padding: 40px 150px;
    margin-top: 10px;
    box-shadow: 0px 0px 8px #222;
}

.bottom-form.contact h2 {
    color: var(--dark-blue);
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.bottom-form.contact h2 span {
    color: var(--orange);
}

.bottom-form.contact h2:before {
    position: absolute;
    content: '';
    background: var(--orange);
    width: 100px;
    height: 5px;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.form-group .form-control {
    position: relative;
    color: #3d62a3;
    border: 2px solid #9eb0d1;
    background: #fafcfe;
    border-radius: 7px;
    padding: 14px 40px;
    box-shadow: unset;
    outline: unset;
}

.form-group {
    position: relative;
    margin-bottom: 35px;
}

.form-group i {
    position: absolute;
    z-index: 9;
    top: 0;
    left: 20px;
    bottom: 0;
    margin: auto;
    display: flex;
    align-items: center;
    color: #acb9d3;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 25px;
}

.form-control::placeholder {
    color: #3d62a3;
    opacity: 0.5;
}

textarea#Details {
    height: 150px;
}

.form-group.textarea {
    margin-bottom: 10px;
}

.form-group.textarea i {
    bottom: unset;
    top: 20px;
}

p.form-sub-text {
    color: #737373;
    font-size: 14px;
}

.btn-box {
    margin-top: 35px;
}

.btn-box a {
    display: inline-block;
    background: #16366e;
    color: var(--white);
    padding: 18px 96px;
    border-radius: 7px;
    font-size: 18px;
    font-weight: 500;
}

.btn-box a:hover {
    background: var(--orange);
}

.form-group .form-control:focus,
.form-group .form-control:visited {
    border-color: #3d62a3;
}

.form-group.textarea textarea {
    height: 150px;
}

.form-group.textarea textarea:focus::placeholder {
    color: #3d62a3;
    opacity: 1;
}

input::-webkit-input-placeholder {
    color: #3d62a3;
    opacity: 1;
}

input:focus::-webkit-input-placeholder {
    color: #3d62a3;
    opacity: 1;
}


/* Firefox < 19 */

div#discussLead input:-moz-placeholder {
    color: #3d62a3;
    opacity: 1;
}

div#discussLead input:focus:-moz-placeholder {
    color: #3d62a3;
    opacity: 1;
}


/* Firefox > 19 */

div#discussLead input::-moz-placeholder {
    color: #3d62a3;
    opacity: 1;
}

div#discussLead input:focus::-moz-placeholder {
    color: #3d62a3;
    opacity: 1;
}


/* Internet Explorer 10 */

div#discussLead input:-ms-input-placeholder {
    color: #3d62a3;
    opacity: 1;
}

div#discussLead input:focus:-ms-input-placeholder {
    color: #3d62a3;
    opacity: 1;
}

.mini-contact-area {
    position: absolute;
    right: 20px;
    bottom: 20px;
}

.mini-contact-box {
    display: flex;
    align-items: center;
}

.c-cont-box h4 {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    margin: 0;
    color: #999;
    font-weight: 600;
}

.c-cont-box a {
    font-size: 20px;
    margin: 0;
    color: #16366e;
    font-weight: 800;
}

.c-cont-box a:hover {
    color: var(--orange);
}

.c-icon-box i {
    font-size: 24px;
    color: var(--orange);
    margin-right: 15px;
}

.mini-contact-box:first-child {
    margin-bottom: 10px;
}


/* SECTION SEVEN - BOTTOM FORM CSS END HERE  */

/* SECTION NINE CSS START HERE  */


section.faq-section {
    background: #f5f5f5;
}

section.faq-section .accordion__item__header {
    width: 100%;
    background: var(--white);
    padding: 1.4rem 2rem;
    border-radius: 6px;
    box-shadow: 0px 5px 5px rgb(0 0 0 / 10%);
    cursor: pointer;
}

section.faq-section .accordion__item:not(:last-child) {
    margin: 0 0 1rem;
}

section.faq-section .accordion__item h4 {
    font-size: 18px;
    font-weight: bold;
    color: var(--dark-blue);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

section.faq-section .accordion__item h4>i {
    transition: all .3s ease-in-out !important;
    color: #a5abbc;
}

section.faq-section .accordion__item.active h4>i {
    color: var(--white);
    transform: rotate(180deg);
}

section.faq-section .accordion__item__content {
    padding: 1rem 2rem;
}

section.faq-section .accordion__item__content a {
    color: var(--orange);
    text-decoration: underline !important;
    display: inline-block;
}

section.faq-section .accordion__item.active,
section.faq-section .accordion__item.active .accordion__item__header {
    background: var(--dark-blue);
}

section.faq-section .accordion__item.active .accordion__item__header h4,
section.faq-section .accordion__item.active p,
section.faq-section .accordion__item.active li {
    color: var(--white);
}

/* SECTION NINE CSS END HERE  */


/* MEDIA QUERIES CSS START HERE  */

@media only screen and (max-width: 1199px) {
    .head h2 br {
        display: none;
    }

    section.homeBanner h1 {
        font-size: 48px;
    }

    .homeBanner ul.bannerList {
        max-width: 100%;
    }

    .bottom-form.contact h2 br {
        display: none;
    }

    .bottom-form.contact {
        padding: 40px 50px;
    }
}

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

    .head h2,
    .head h2 span {
        font-size: 36px;
    }

    .head p br,
    section.homeBanner h1 br,
    section.homeBanner p br {
        display: none;
    }

    .homeBanner ul.bannerList {
        grid-template-columns: auto auto;
    }

    .homeBanner .col-lg-5 {
        text-align: center;
        margin: 2rem 0 0;
    }

    .sponsoredPost .row h2 {
        font-size: 24px;
    }

    .sponsoredPost .row:not(:last-child) {
        margin: 0 0 2rem;
    }

    .arrow-left,
    .arrow-right {
        display: none;
    }

    .sponsoredPost .row-six {
        margin: 0;
    }

    .row.pkgsWrapper {
        grid-row-gap: 4rem;
    }

    div#reviewSlider .slick-track>div {
        opacity: 1;
    }
}

@media only screen and (max-width: 767px) {
    .section p {
        font-size: 14px !important;
        line-height: 24px !important;
    }

    .head h2,
    .head h2 span {
        font-size: 22px;
    }

    .homeBanner {
        padding: 2rem 0;
    }

    section.homeBanner h1 {
        font-size: 24px;
        padding: 0 0 .5rem;
    }

    section.homeBanner p {
        font-size: 14px;
        line-height: 24px;
    }

    .homeBanner ul.bannerList {
        display: block;
        margin: 1rem 0 !important;
    }

    .coverBtns {
        grid-gap: 1rem;
    }


    .contentCreators .head h2,
    .contentCreators .head h2 span {
        font-size: 22px;
    }

    article.content-creator-card .content-creator-thumbnail {
        height: auto;
    }

    article.content-creator-card .content-creator-meta h3 {
        font-size: 22px;
    }

    .ctaWrap a.see-pricing {
        padding: 12px 30px;
    }

    .sponsoredPost .row:nth-child(even) {
        flex-direction: column-reverse;
    }



    .section {
        padding: 40px 0;
    }

    section.diamond {
        margin-top: 50px;
    }

    .pkgList ul li {
        font-size: 14px;
        display: flex;
        align-items: center;
    }

    .packagePrice a.get-pricing {
        font-size: 14px;
        padding: 18px 0;
    }

    .reviewBox .clientImg.clientName h2 {
        font-size: 24px;
    }

    .reviewBox .reviewContent h4 {
        font-size: 20px;
    }

    div#reviewSlider .slick-track>div {
        margin: 0;
    }

    .reviewBox {
        padding: 1rem;
    }

    section.section.s7.ny-contact {
        padding-top: 0;
    }

    section.ny-contact {
        padding: 0 0 3rem;
    }

    .bottom-form.contact {
        padding: 20px;
    }

    .bottom-form .form-grid {
        display: flex;
        flex-direction: column;
        grid-column-gap: 15px;
    }

    .bottom-form .form-group {
        margin-bottom: 20px;
    }

    .bottom-form .mini-contact-area {
        position: unset;
    }

    .bottom-form .btn-box a {
        padding: 16px 20px;
        width: 100%;
        text-align: center;
        margin-bottom: 20px;
    }

    .bottom-form .c-cont-box a {
        font-size: 14px;
    }

    .bottom-form.contact h2 {
        font-size: 22px;
    }
}

/* MEDIA QUERIES CSS END HERE  */
