.container,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    width: 100%;
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    margin-right: auto;
    margin-left: auto;
}

.bd-gutter {
    --bs-gutter-x: 3rem;
}

.container-fluid {
    width: 100%;
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    margin-right: auto;
    margin-left: auto;
    --bs-gutter-x: 3rem;
    --bs-gutter-y: 0;
}

.row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(-1 * var(--bs-gutter-y));
    margin-right: calc(-0.5 * var(--bs-gutter-x));
    margin-left: calc(-0.5 * var(--bs-gutter-x));
}

.row>* {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    margin-top: var(--bs-gutter-y);
}

@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

.col-6 {
    flex: 0 0 auto;
    width: 50%;
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }

    .col-md-3 {
        flex: 0 0 auto;
        width: 25%;
    }

    .col-md-6 {
        flex: 0 0 auto;
        width: 50%;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }

    .col-lg-2 {
        flex: 0 0 auto;
        width: 16.66666667%;
    }

    .col-lg-3 {
        flex: 0 0 auto;
        width: 25%;
    }

    .col-lg-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }

    .col-lg-5 {
        flex: 0 0 auto;
        width: 41.66666667%;
    }

    .col-lg-6 {
        flex: 0 0 auto;
        width: 50%;
    }

    .col-lg-7 {
        flex: 0 0 auto;
        width: 58.33333333%;
    }

    .col-lg-8 {
        flex: 0 0 auto;
        width: 66.66666667%;
    }

    .col-lg-9 {
        flex: 0 0 auto;
        width: 75%;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}

img,
svg {
    vertical-align: middle;
}

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

[class*="flex"] {
    display: flex;
    align-items: center;
}

[class*="flex-col"] {
    flex-flow: column;
    align-items: unset;
}

[class*="-between"] {
    justify-content: space-between;
}

[class*="grid"] {
    display: grid !important;
}

.gap-5 {
    gap: 5px;
}

.justify-content-center {
    justify-content: center;
}

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

.text-center {
    text-align: center;
}

[class*="row-gap"] {
    row-gap: 20px;
}

.row-gap-3 {
    row-gap: 30px;
}

p {
    margin-bottom: 20px;
}

.gap-10{
	gap:10px;
}

.mb-0 {
    margin-bottom: 0px !important;
}

.mt-3 {
    margin-top: 35px !important;
}

.mt-5 {
    margin-top: 50px !important;
}

.mt-auto {
    margin-top: 80px;
}

/*-----------------------------header--------------------------*/

header {
    position: sticky;
    top: 0;
    z-index: 999;
    margin-top:20px;
    transition: var(--transition);
}

header .header-btn{
    margin-left: 40px;
}

/*----------------hero-sidebar----------------*/

.hero-sidebar{
    position: fixed;
    padding: 30px;
    height: 100vh;
    max-width: 500px;
    width: 100%;
    right: 0;
    top: 0;
    z-index: 999;
    justify-content: center;
    gap: 20px;
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
 }

 .hero-sidebar.showSidebar{
    transition: var(--transition);
    transform: translateX(0%);
    opacity: 1;
    visibility: visible;
 }

.hero-sidebar .closeSidebar{
    position: absolute;
    right: 30px;
    top: 30px;
    cursor: pointer;
}

.bwe-service-logo img {
    height: 35px;
    width: auto;
/*     filter: brightness(0) invert(1); */
}

header nav ul {
    gap: 20px 40px;
}

header .toggleBtn {
    cursor: pointer;
    z-index: 999;
    position: relative;
}

header .toggleBtn span {
    height: 2px;
    display: flex;
}

header .toggleBtn span:first-child {
    width: 20px;
}

header .toggleBtn span:last-child {
    width: 30px;
    margin-top: 5px;
}

header .dropdown {
    position: relative;
}

header .dropdown ul {
    position: absolute;
    left: 0;
    top: 100%;
    min-width: 250px;
    width: 100%;
    visibility: hidden;
    opacity: 0;
    transform: scale(1, 0);
    transform-origin: 0 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 15px;
    padding: 25px;
    z-index: 2;
}

/*-----------------homepage-hero----------------*/

.homepage-hero {
    margin-top: -80px;
    margin-bottom: 150px;
    position: relative;
}

.homepage-hero .hero-bg-txtr {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.homepage-hero .flex-col-hero-content {
    position: absolute;
    z-index: 99;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.sm-img-wrap {
    display: flex;
    flex-direction: column;
    position: absolute;
    bottom: 30px;
}

.ls-sm-img {
    left: -200px;
}

.rs-sm-img {
    right: -200px;
}

.sm-img-wrap img {
    height: 160px;
    width: 160px;
    object-fit: contain;
}

.ls-sm-img .ls-img-2 {
    position: absolute;
    bottom: -80px;
    left: -70px;
}

.rs-sm-img .ls-img-2 {
    position: absolute;
    bottom: -80px;
    right: -70px;
}

.main-lg-img {
    z-index: -1;
    position: absolute;
    bottom: -100px;
    height: 40px;
}

/*-----------------site-btns----------------*/

.flex-pairBtn {
    gap: 10px 30px;
    flex-wrap: wrap;
}

.flex-btn {
    gap: 10px;
    padding: 9px 30px;
}

.flex-btn:has(span) {
    padding: 8px 13px 8px 20px;
}

.flex-btn span {
    height: 35px;
    width: 35px;
    border-radius: 50%;
}


/*.flex-btn-link {
    position: relative;
    gap: 10px;
    width: fit-content;
}*/

/*-----------------ftrs-card----------------*/

.flex-ftrs-card {
    gap: 15px;
    padding: 20px;
    position: relative;
}

/*-----------------service-card----------------*/

.flex-col-srvc-card {
    padding: 30px;
    gap: 10px;
    height: 100%;
}

/*-----------------grid-card----------------*/

.grid-cards {
    grid-template-columns: repeat(3, 1fr);
}

.grid-content-card {
    padding: 20px;
    gap: 15px;
    position: relative;
    align-content: start;
    height: 100%;
}

.grid-content-card span {
    position: absolute;
    bottom: 20px;
    right: 20px;
}

/*-----------------step-card----------------*/

.img-con {
    position: relative;
}

.img-con span {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    height: 35px;
    width: 35px;
    justify-content: center;
    display: flex;
    align-items: center;
}

.sticky-col {
    position: sticky;
    top: 40px
}

.img-card {
    padding: 20px;
    gap: 15px;
    height: 100%;
    border-radius: var(--radius);
    height: 100%;
    width: 100%;
}

.img-card .flex-card-icon {
    gap: 15px;
}

.light-orange {
    background: url(https://boostbysocial.com/wp-content/uploads/2026/03/card-img-1.webp) no-repeat center center / cover;
}

.light-green {
    background: url(https://boostbysocial.com/wp-content/uploads/2026/03/card-img-2.webp) no-repeat center center / cover;
}

.light-purple {
    background: url(https://boostbysocial.com/wp-content/uploads/2026/03/card-img-3.webp) no-repeat center center / cover;
}

.light-blue {
    background: url(https://boostbysocial.com/wp-content/uploads/2026/03/card-img-4.webp) no-repeat center center / cover;
}


/*-------------team-card--------------*/

.team-card {
    padding: 20px;
    gap: 15px;
}

.team-card img {
    height: 250px;
    width: 100%;
    object-fit: cover;
    object-position: top;
    border-radius: var(--radius);
}

/*--------------site-cta-----------------*/

.site-cta {
    position: relative;
}

.site-cta .cta-bg {
    padding: 50px;
    flex-wrap: wrap;
    gap: 20px;
}

.site-cta .cta-bg .cta-content {
    max-width: 470px;
}

.site-cta .cta-girl-img {
    position: absolute;
    left: 55%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.site-cta .cta-girl-img img {
    height: 380px;
    width: 100%;
}

@media (width <=1400px) {
    .site-cta span {
        font-size: 86px !important;
    }

    .site-cta .cta-girl-img img {
        height: 330px;
    }

    .site-cta .cta-girl-img {
        left: 58%;
    }

    .site-cta .cta-bg {
        padding: 30px;
    }

    .ls-sm-img {
        left: -150px;
    }

    .rs-sm-img {
        right: -150px;
    }
}

/*-----------------pros-cons-tableCard--------------------*/

.grid-table {
    grid-template-columns: 45% 10% 45%;
    margin-inline: auto;
    /* max-width: 900px; */
    width: 100%;
}

.bnft-card ul {
    gap: 21px;
}

/*-----------------Review-Card--------------------*/

.review-card {
    padding: 25px;
    gap: 15px;
    height: 100%;
}

.review-card :is(.h6, p) {
    margin: 0;
}

/*-----------------stats-counter--------------------*/

.stats-col {
    padding: 20px 30px;
    margin-right: 20px;
    position: relative;
    height: 100%;
}

.stats-col span {
    margin-bottom: 15px;
    display: flex;
    padding: 7px 10px;
}

/*-----------------cta-card-&-numbering-counter--------------------*/

.cta-card {
    background: #000000e3 url(https://boostbysocial.com/wp-content/uploads/2026/03/cta-bg-img.webp) no-repeat center center / cover;
    height: 100%;
    width: 100%;
    border-radius: var(--radius);
    padding: 20px 30px;
    background-blend-mode: soft-light;
}

.counter-box {
    display: flex;
    gap: 15px;
}

.counter-box .h5 {
    margin-bottom: 10px
}

/*-----------------faqs--------------------*/

.collapse-faqs {
    max-width: 800px;
    margin: auto;
    position: relative;
}

details {
    width: 100%;
/*     margin-top: 20px; */
}

details summary{
    padding: 20px 40px 20px 15px;
}

details .content {
    padding: 15px;
}

.collapse-fade.active {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background: linear-gradient(to bottom, rgb(255 255 255 / 52%), rgb(255 255 255 / 98%))
}

.collapse-faqs .read-arrow {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    cursor: pointer;
    border-radius: 50%;
    height: 35px;
    width: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 4px 0 rgb(0 0 0 / .2);
}

.collapse-faqs.limit-faq details:nth-child(n+7) {
    display: none;
}

/*-----------------case-study-card--------------------*/

.cs-card .img-holder {
    aspect-ratio: 16 / 9;
    background: #c7c7c7;
}

:is(.cs-card .img-holder, .cs-card .img-holder img) {
    width: 100%;
    border-radius: var(--radius);
    object-fit: cover;
    height: 100%;
}

.cs-content {
    padding: 15px 10px 0;
    gap: 10px;
}

.cs-content img {
    height: 40px;
    width: 40px;
    object-fit: contain;
}

.cs-info>div {
    gap: 5px;
    margin-top: 10px;
}

.cs-tags {
    border-top: 1px solid #cccccc6e;
    padding-top: 20px;
    margin-top: 10px;
    flex-wrap: wrap;
    gap: 10px;
}

@media screen and (min-width: 1024px) {
    .case-study .swiper .swiper-slide {
        transform: scale(0.8);
    }

    .case-study .swiper .swiper-slide-next {
        opacity: unset;
        transform: scale(1.1);
    }
}

/*------------footer------------*/

footer{
  background: var(--black);
  position:relative;
  z-index:0;
  padding-block:50px;
  margin-top:70px;
}

footer .footer-title{
  margin-bottom:35px;
}

footer .footer-list li{
  margin-bottom:20px;
}

.flex-social-media{
  gap:6px;
}

footer .flex-foot-info{
  align-items:center;
  gap:8px;
  line-height:1.2;
  margin-top:25px;
}

footer .disclaimer{
  margin-top:30px;
}

footer .copy-write{
  border-top:1px solid var(--border-color);
  text-align:center;
  padding-top:20px;
  width:100%;
}

footer .copy-write .footer-list li{
  margin-bottom:0!important;
}

footer .flex-logo-menu{
  gap:15px 35px;
  flex-wrap:wrap;
}

footer .flex-logo-menu li{
  margin-bottom:0;
}

footer .flex-logo-wrap{
    flex-wrap: wrap;
    gap: 20px;
}

/*-----------------single-service-pg.-----------------*/

.page-hero {
    background: #000000e3;
    height: 100%;
    width: 100%;
    padding-block: 140px 50px;
    margin-top: -80px;
    z-index: 0;
    position: relative;
    overflow: hidden;
}

.flex-hero-list {
    gap: 10px;
}

.prcs-card {
    position: relative;
    gap: 10px;
    margin-left: 30px;
    padding: 25px 25px 25px 40px;
}

.prcs-card span {
    position: absolute;
    writing-mode: sideways-lr;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    padding: 20px 7px;
    white-space: nowrap;
}

.table-container {
    width: 100%;
    overflow-x: auto;
    height: 100%;
}

.table-container table {
    width: 100%;
    background-color: transparent;
    border-collapse: collapse;
}

.table-container table th,
.table-container table td {
    padding: 1rem;
}

.case-study .swiper{
    padding-block: 50px 70px !important;
}

.section-pad-50{
    padding-block: 50px;
}

.px-3{
	padding-inline:30px
}

/* -----blog-card------ */

.card-content {
    width: 100%;
	gap:15px
}

.img-placeholder {
    aspect-ratio: 16 / 9;
}

.dt-meta {
    gap: 10px;
}

.message-sec{
	gap:20px;
	margin-top: -120px;
    padding: 30px;
    position: relative;
    z-index: 99;
}

.sidebar-wrap .blog-card .card-content{
	border: 0;
    padding: 0;
}

.single-blog-box{
	padding-inline:15px
}

ul.wp-block-categories li{
	display: flex;
    align-items: center;
    justify-content: space-between;
	color: var(--txt-color);
}

.yoast-breadcrumbs > span{
	display: flex;
    align-items: center;
    gap: 10px;
	justify-content: end;
	flex-wrap:wrap
}

.yoast-breadcrumbs span{
	color: var(--white)
}

.flex-blog-date{
	gap:7px;
}

.author-strip > div{
	flex-wrap:wrap
}

/*for-Mob-Tab -- responsive-css*/

@media (width <=1023px) {
	
	footer .row-gap{
		row-gap:50px
	}
	
	.page-hero{
		padding-block:120px 40px !important
	}
	
	.cs-content .cs-info{
		flex-wrap:wrap;
	}
	
    .d-md-none {
        display: none !important;
    }

    .mt-auto {
        margin-top: 50px !important;
    }

    .mt-5 {
        margin-top: 25px !important
    }
	
	.contact-con{
		margin-top:35px !important
	}
	
	.text-md-left{
		text-align:left;
	}

    header {
        margin-top: 20px !important;
    }

    header nav>ul {
        flex-direction: column;
        position: fixed;
        left: 0;
        align-items: self-start !important;
        background: var(--white);
        height: 100%;
        top: 0;
        padding: 30px;
        width: 100%;
        transition: var(--transition);
        transform: translateX(-100%);
    }

    header nav>ul li a:not(.flex-btn) {
        color: var(--black) !important;
    }

    header .dropdown svg {
        fill: var(--black) !important;
    }
	
    header .flex-btn:hover{
		background:var(--pc) !important;
		color:var(--white) !important;
	}
	
	header .flex-btn:hover span {
		background:var(--white) !important;
	}
	
	header .flex-btn:hover span > svg path{
		fill : var(--pc) !important;
	}

    header nav>ul.showMenu {
        transition: var(--transition);
        transform: translateX(0%);
    }

    header .dropdown:hover>ul {
        position: relative;
        top: 0;
        opacity: unset;
        visibility: unset;
    }

    .homepage-hero {
        margin-bottom: unset !important;
    }

    .homepage-hero .flex-col-hero-content{
        text-align: left;
        align-items: start;
        padding-inline: 12px;
    }

    :is(.homepage-hero .flex-col-hero-content, .page-hero) .flex-btn{
        padding: 8px 18px;
        font-size: 15px;
    }

    :is(.homepage-hero .flex-col-hero-content, .page-hero) .flex-btn span{
        display: none;
    }

    .flex-pairBtn{
        gap: 10px !important;
    }

    .flex-col-srvc-card,
	.message-sec, body.single-blog,
	.sidebar-wrap{
        padding: 20px !important;
    }

    .homepage-hero .hero-bg-txtr img {
        height: 100% !important;
        width: 100% !important;
    }

    .flex-ftrs-card svg{
        height: 18px;
        width: 18px;
    }

    .flex-ftrs-card:after,
    .flex-ftrs-card:before,
    .step-wrap .col-lg-4:not(:last-child) .flex-col-step-card:after {
        content: unset !important;
    }

    .grid-content-card {
        border-bottom: 1px solid var(--border-color);
        padding-inline: 0px !important;
    }
	
	.cs-card,
	.form-box{
		padding:15px !important
	}

    .flex-col-step-card {
        margin-inline: unset !important;
    }

    .cta-bg .cta-content {
        max-width: 100% !important
    }

    .cta-bg,
	.bnft-card{
        padding: 30px !important;
    }

    .stats-col {
        padding: 10px !important;
        margin: unset !important;
    }

    .stats-col:after {
        left: 0 !important;
    }

    .bg-con-wrap,
    footer .foot-logo-con,
    .light-orange.img-card,
	.lg-card{
        padding: 20px !important;
    }

	.flex-ftrs-card {
        margin: 0 !important;
        padding: 11px !important;
        font-size: 14px !important;
    }

	.message-sec{
		margin-top:-70px !important;
	}
	
	.message-sec svg{
		width:100%
	}
	
	.table-container table th, .table-container table td {
		white-space: nowrap;
	}
	
    footer,
    .section-pad-50{
        padding-block: 30px;
    }

    footer .foot-logo-con{
        margin-top: 15px !important;
    }

    footer .copy-write{
            text-align: left;
    flex-wrap: wrap;
    gap: 20px;
    }

    .case-study .swiper {
    padding-block: 10px 40px !important;
    }
}


/*for-only-Tab*/

@media (600px <=width <=1023px) {

    header:after {
        height: 120px !important;
        width: 120px !important;
    }

    .homepage-hero img {
        height: 650px !important;
        object-fit: cover;
    }

    .homepage-hero .flex-col-hero-content {
        width: 100%;
        top: 45% !important;
    }

    .flex-ftrs-card {
        flex-direction: unset;
        align-items: center;
    }

    .grid-cards {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .grid-content-card {
        border-right: 1px solid var(--border-color);
    }

    .grid-content-card:nth-child(2n) {
        border-right: none;
    }

    .site-cta span {
        font-size: 50px !important
    }
}


/*for-only-Mob*/

@media (width <=600px) {
    .bwe-service-logo img {
        height: 30px;
    }

    .homepage-hero img {
        height: 550px !important;
        object-fit: cover;
    }

    header:after {
        height: 90px !important;
        top: -20px !important;
        width: 80px !important;
    }

    .homepage-hero .flex-col-hero-content {
        width: 100%;
        top: 50% !important;
    }

    .homepage-hero .flex-col-hero-content h1 {
        font-size: 30px !important;
    }

    .grid-cards {
        grid-template-columns: repeat(1, 1fr) !important;
    }

    .grid-content-card {
        border-right: unset !important;
    }

    .site-cta span {
        font-size: 22px !important
    }

    .site-cta .cta-bg .h2 {
        font-size: 28px;
    }

    .grid-table {
        grid-template-columns: auto !important;
    }

    .grid-table .mid-wrap {
        padding-block: 10px;
        flex-flow: row !important
    }

    .cs-tags span {
        font-size: 12px !important;
    }

    .cs-content {
        padding: 0 !important;

    footer .footer-title{
        font-size: 18px !important;
    }
}

