/* *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *
** Header
** *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** */
#masthead {
    background-color: transparent;
    transition: all .25s linear;
    display: flex;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 9999;
    padding: 16px 0
}
.admin-bar #masthead {
    top: 32px;
}
#masthead.scrolled {
    background-color: var(--white);
    padding: 10px 0 10px 0 !important;
}
#masthead.white-header.scrolled {
    background-color: var(--text);
    box-shadow: unset;
}
body.home #masthead.white-header.scrolled {
    min-height: 74px;
}
.main-header {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid var(--text);
}
.white-header .main-header {
    border-color: var(--white);
    transition: all .25s linear;
}
#masthead.scrolled .main-header {
    border: 0;
    align-items: center;
    min-height: 54px;
}
.header-adjust {
    height: 88px;
}

header#masthead{
    box-shadow: 
    0 4px 6px 0 rgb(0 0 120 / 15%),
    0 4px 24px 0 rgb(9 8 66 / 4%);
}
header#masthead .container{
    max-width: 1352px;
    padding: 0 20px;
    width: 100%;
}

ul#primary-menu {
    gap: 32px;
    align-items: center;
}

.main-header {
    border-bottom: none;
    align-items: center;
}

header#masthead .menu-btn.menu-item a{
    background: linear-gradient(90deg, #7100D5 0%, #3137D9 31%, #25ACE1 99%);
    color: #fff;
    padding: 8px 32px;
    border-radius: 8px;
    line-height: 24px;
    min-height: 56px;
    display: flex;
    align-items: center;
}

/* #masthead.scrolled .menu-btn.menu-item a{
    min-height: 46px;
} */





/* Logo */
.site-branding {
    line-height: 0;
}
.site-branding img {
    max-width: 315px;
    width: 100%;
    transition: all .25s linear;
}
#masthead.scrolled .site-branding img {
    max-width: 250px;
}

/* Menu */
.main-navigation li {
    position: relative;
}
.main-navigation li.current-menu-item:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 9px;
    bottom: -6px;
}
.site-header.scrolled .main-navigation li.current-menu-item:after {
    bottom: 0px;
}
.main-navigation a {
    color: var(--text);
    font-size: 17px;
    line-height: 24px;
    font-weight: 600;
    font-family: var(--font-poppins);
    transition: all .25s linear;
}


#primary-menu .current-menu-item.menu-item:not(.menu-btn) a,
#primary-menu .menu-item:not(.menu-btn) a:hover {
    background: var(--purple-to-blue-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}





/* *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *
** toggle memu
** *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** */

.toggle-menu {
    display: none;
}
.toggle-menu-inner{
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.toggle-menu-inner span {
    width: 30px;
    height: 3px;
    background-color: var(--text);
    transition: transform .25s linear;
}
.white-header .toggle-menu-inner span {
    background-color: var(--white);
}
.toggle-menu.active span:first-child {
    transform: translateY(9px) rotate(45deg);
}

.toggle-menu.active span:nth-child(2) {
    opacity: 0;
}

.toggle-menu.active span:last-child {
    transform: translateY(-9px) rotate(-45deg);
}



/* Submenu */
.main-navigation .sub-menu {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0 0 10px 20px;
}
#masthead.scrolled .sub-menu {
    background: var(--white);
}
#masthead.white-header.scrolled .sub-menu {
    background: var(--text);
}
.main-navigation .sub-menu a {
    color: var(--text);
    padding: 15px 5px !important;
    text-align: left;
    font-size: 16px;
}
.white-header .main-navigation .sub-menu a {
    color: var(--white);
}

/* *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *
** Content And media section
** *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** * *** *  *** *  *** *  *** */

.content_and_media_section:not(.b_width) {
    margin: 64px 0;
}
.content_and_media_section.b_width{
    margin: 0;
}
.content_and_media_section .container{
    padding-top: 64px;
    padding-bottom: 64px;
    max-width: 1352px;
}

.content_and_media_section.b_width .container{
    max-width: 1280px;
}

.content_and_media_inner{
    display: grid;
    grid-template-columns: 588fr 656fr;
    gap: 64px;
    align-items: center;

}

.content_and_media_left{
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.content_and_media_section .desc {
    line-height: 1.34;
}
.content_and_media_section .desc p:first-child {
    margin-top: 0;
}
.content_and_media_section .desc p:last-child {
    margin-bottom: 0;
}


.content_and_media_left h3 {
    display: flex;
    flex-direction: column;
}
.cam_heading{
    font-size: 50px;
    color: #1C1C1F;
    font-family: var(--font-poppin);
    line-height: 60px;
    font-weight: 700;
}

.content_and_media_btns{
    display: flex;
    gap: 15px;
    align-items: center;
}

.btn.outline{
    font-family: var(--font-poppin);
    background: transparent;
    color: #3700D5;
    font-size: 14px;
    padding: 15px 29px;
    border: 2px solid #E5EBFB;
    border-radius: 4px;
    transition: background 0.3s linear;
}
.btn.outline:hover {
    color: var(--white);
    padding: 17px 30px;
    background: var(--purple-gradient);
    border: 0;
}
.content_and_media_right_img{
    line-height: 0;
}
.content_and_media_right_img img{
    aspect-ratio: 660 / 393;
    object-fit: cover;
    border-radius: 12px;
    width: 100%;
    height: auto;
    box-shadow: 0px 8px 36px 0px #09084214, 0px 8px 8px 0px #00007840;
}

.content_and_media_right_video {
    display: flex;
    align-items: center;
}

.video_wrapper { 
    position: relative; 
    width: 100%;
}
.video { 
    display: none; 
}

.cover_photo { 
    position: relative; 
    cursor: pointer; 
    background-position: center;
    background-repeat: no-repeat;
    aspect-ratio: 660 / 393;
    width: 100%;
    border-radius: 4px;
}

.cover_photo .play-btn {
    position: absolute;
    left: 50%;
    top: 50%;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 2;
    transform: translate(-50%, -50%);
    transition: all .25s linear;
    width: 140px;
}
.cover_photo .play-btn:hover {
    width: 172px;
}
.overlay .ovrly {
    width: fit-content;
    margin: 0 auto;
    background: #FFFFFFBF;
    padding: 16px 24px;
    border-radius: 10px;
}



/* .cover_photo:after {
    content: '';
    background: radial-gradient(50.69% 50.69% at 35.49% 60.42%, rgba(55, 0, 213, 0.32) 0%, rgba(37, 172, 225, 0) 100%);
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    bottom: 0;
} */

.video_popup_overlay {
    position: fixed;
    inset: 0;
    background: rgba(28, 28, 31, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.video_popup_inner {
    position: relative;
    width: 90%;
    max-width: 1300px;
    /* height: 100vh; */
    top: 50%;
    left: 50%;
    transform: translate(-50% , -50%);
}

.video_popup_inner iframe {
    width: 100% !important;
    height: auto;
    aspect-ratio: 16 / 9;
}

.video_close {
    position: absolute;
    top: 0px;
    right: 25px;
    color: #fff;
    font-size: 32px;
    cursor: pointer;
}

.content_and_media_right_video .video {
    display: none;
    width: 100%;
}

.popup_video {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.popup_video video {
    width: 100% !important;
    margin: auto;
    height: calc(100vh - 10%);
}

body.home .home-first-sec {
	background: radial-gradient(50.69% 50.69% at 35.49% 60.42%, rgba(55, 0, 213, 0.08) 0%, rgba(37, 172, 225, 0) 100%),
		linear-gradient(0deg, #FFFFFF, #FFFFFF);
}
.content_and_media_section {
	background: radial-gradient(42.36% 57.08% at 27.6% 37.5%, rgba(55, 0, 213, 0.08) 0%, rgba(50, 46, 216, 0.0584056) 26.99%, rgba(37, 172, 225, 0) 100%), linear-gradient(0deg, #FFFFFF, #FFFFFF); 
}
body.home .home-first-sec .content_and_media_section {
	background: unset;
}

/* *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *
** Image and Content section
** *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** * *** *  *** *  *** *  *** */
.image_content_section {
	background: linear-gradient(180deg, rgba(245, 247, 253, 0) 0%, #E5EBFB 54.09%, #FFFFFF 100%),
		linear-gradient(0deg, #FFFFFF, #FFFFFF);

}
.image_content_section .container{
    padding-top: 96px;
    padding-bottom: 96px;
}

.image_content_section.image_content_section_1 .container{
    padding-bottom: 64px;
}
.image_content_section.img-con-pd-0 .container{
    padding-top: 0px;
}

.image_content_section .container{
    max-width: 1286px;
}

.image_content_section_inner{
    display: flex;
    flex-direction: column;
    gap: 64px;
    justify-content: center;
    align-items: center;
}
.ics_inner_top{
    max-width: 672px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
    padding: 32px 0;
}
.ics_inner_top h3{
    text-align: center;
    font-weight: 900;
}
.ics_inner_top p{
    font-family: var(--font-inter);
    margin: 0;
    text-align: center;
}
.ics_inner_image_content{
    display: grid;
    grid-template-columns: 668fr 550fr;
    gap: 64px;
    align-items: center;
}
.ics_inner_image_content.p_right{
    grid-template-columns:550fr 668fr;
}
.image_content_section_inner .ics_inner_image img {
    border-radius: 12px;
}

.ics_inner_content h4{
    font-weight: 900;
}

.ics_inner_image_content.p_left .ics_inner_image{
    order: 1;
}
.ics_inner_image_content.p_left .ics_inner_content{
    order: 2;
}

.ics_inner_image_content.p_right .ics_inner_image{
    order: 2;
}
.ics_inner_image_content.p_right .ics_inner_content{
    order: 1;
}


.ics_inner_content{
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ics_inner_content_dsc ul li {
    font-size: 18px;
    line-height: 177.77%;
    font-family: var(--font-poppins);
}
.ics_inner_content_dsc ul li::marker {
    font-size: 20px;
}
.wrap-img-parent {
    background: linear-gradient(180deg, rgba(245, 247, 253, 0) 0%, #E5EBFB 54.09%, #FFFFFF 100%),
		linear-gradient(0deg, #FFFFFF, #FFFFFF);

}


/* *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *
** card section section
** *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** * *** *  *** *  *** *  *** */
.card_section{
    background-image: url(../img/Isolation_Mode.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
}
.card_section .container{
    padding-top: 96px;
    padding-bottom: 96px;
    max-width: 1240px;
}

.card_inner_heading_content{
    font-size: 52px;
    line-height: 115.384%;
    font-family: var(--font-poppins);
    font-weight: 900;
}

.card_inner_heading{
    max-width: 672px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: center;
}
.card_inner_heading p{
    margin: 0;
}
.card_inner {
    display: flex;
    flex-direction: column;
    gap: 64px;
    align-items: center;
}

.card_inner_card {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
    align-items: flex-end;
}

.card_inner_card p{
    margin: 0;
}

.card_inner_card_item {
    position: relative;
    padding: 40px 32px;
    border-radius: 20px;
    background: #fff;
    display: flex;
    flex-direction: column;
    gap:8px;

}

.card_inner_card_item::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 4px; 
    border-radius: 20px;

    background: linear-gradient(
        90deg,
        #7100D5 0%,
        #3137D9 31%,
        #25ACE1 99%
    );

    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;

    pointer-events: none;
}

.card_inner_card_item h2{
    font-family: var(--font-poppins);
    line-height: 114.29%;
    text-align: center;
}
.card_inner_card_item p{
    text-align: center;
    font-size: 24px;
    line-height: 133.33%;
    font-weight: 600;
    font-family: var(--font-poppins);
}

.card_inner_card_item li{
    list-style: none;
    display: flex;
    gap: 8px;
    align-items: center;
    background: var(--purple-to-blue-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.card_inner_card_item li::before{
    content: '';
    background-image: url('../img/Check.svg');
    width: 24px;
    height: 24px;
    background-size: cover;
    background-repeat: no-repeat;
    display: inline-block;
}
.card_inner_card_item ul{
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 16px 0 16px 24px;
    margin: 0;
}



/* *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *
** highlight section
** *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** * *** *  *** *  *** *  *** */
.highlight-section{
    padding-left: 20px;
    padding-right: 20px;
}
.highlight-section .container {
    padding-top: 132px;
    padding-bottom: 128px;
    border-radius: 40px;
    background-size: cover;
    background-repeat: no-repeat;
}
.highlight-section .content-inner {
    width: fit-content;
    margin: 0 auto;
    background: #ffffffa6;
    padding: 5rem;
    border-radius: 30px;
}

/* *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *
** role of creator section
** *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** * *** *  *** *  *** *  *** */
.role_of_creator {
    position: relative;
    padding: 96px 0;
	background: linear-gradient(180deg, rgba(245, 247, 253, 0) 0%, #E5EBFB 54.09%, #FFFFFF 100%),
		linear-gradient(0deg, #FFFFFF, #FFFFFF);
}
.role_of_creator::before {
    content: '';
    position: absolute;
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50% , -50%);
    background: radial-gradient(
        circle at left center,
        rgba(55, 0, 213, 0.4) 0%,
        rgba(37, 172, 225, 0.10) 20%,
        rgba(255, 255, 255, 0) 70%
    );
}





.role_of_creator .container,
.work_with_creators,
.creator_inner,
.creator_inner_content{
    display: flex;
    flex-direction: column;
    gap:64px;
}

.role_of_creator .container{
    gap: 128px;
}

.role_of_creator_inner{
    display: flex;
    flex-direction: column;
    gap: 64px;
}

.role_of_creator_inner_top{
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: flex-start;
}

.role_of_creator_inner p{
    margin: 0;
}

.role_of_creator_inner_actions{
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.roc_top,
.roc_content_inner{
    display: grid;
    grid-template-columns: 400fr 304fr 304fr 304fr;
}

.roc_content{
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.roc_content_img{
    display: flex;
    align-items: center;
    gap: 32px;
    padding:8px 24px;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 120, 0.08),
                0 4px 24px 0 rgba(0, 0, 120, 0.04);
    background-color: #fff;
    border-radius: 12px;
    transition: all .25s linear;
}

.roc_content_img p {
    font-weight: 600;
}

.roc_content_img img {
    max-width: 75px;
    width: 100%;
}


.work_with_creators p{
    margin: 0;
}
.role_of_creator_inner_inner_top{
    display: grid;
    grid-template-columns: 1fr 48px 1fr;
    gap: 64px;
}

.creator_inner{
    gap: 32px;
}
.creator_inner_content{
    gap: 24px;
}
.work_cards {
    display: grid;
    grid-template-columns: 1fr 48px 1fr;
    gap: 64px;
    align-items: center;
}

.work_cards_right {
    display: grid;
    grid-template-columns: 75px 1fr;
    gap: 32px;
    align-items: flex-start;
    padding: 24px 32px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 120, 0.08), 0 4px 24px rgba(0, 0, 120, 0.04);
    display: flex;
    gap: 32px;
    height: 100%;
    align-items: center;
    transition: all .25s linear;
}
.work_cards_right_content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.work_cards_left,
.work_cards_right {
    padding: 24px 32px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 120, 0.08), 0 4px 24px rgba(0, 0, 120, 0.04);
    height: 100%;
    transition: all .25s linear;
}
.work_cards_left:hover,
.work_cards_right:hover {
    box-shadow: 0 2px 4px 0 rgba(0, 0, 120, 0.08), 0 4px 24px 0 rgba(0, 0, 120, 0.4);
}

.work_cards_right img{
    width: 75px;
    height: 75px;
}

.work_cards p.lg-text{
    font-family: var(--font-poppins);
    font-weight: 600;
}
.active-img {
    background: var(--white);
    border: 1px solid #EFEFEF;
    box-shadow: 0px 4px 24px 0px #0000780A,0px 2px 4px 0px #00007814;
    width: 75px;
    height: 75px;
    border-radius: 12px;
    margin: 0 auto;
    cursor: pointer;
    transition: all .3s ease-in;
}
.active-img img {
    width: 31px;
}
.active-img:hover ,
.roc_content_img:hover {
    box-shadow: 0 2px 4px 0 rgba(0, 0, 120, 0.08), 0 4px 24px 0 rgba(0, 0, 120, 0.4)
}

/* *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *
** influencer of marketing styles
** *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** */
.influencer_of_marketing {
	background: linear-gradient(180deg, rgba(245, 247, 253, 0) 0%, #E5EBFB 54.09%, #FFFFFF 100%),
		linear-gradient(0deg, #FFFFFF, #FFFFFF);

}
.influencer_of_marketing .container{
    max-width: 1327px;
    padding: 96px 20px 96px 30px;
}

.influencer_of_marketing_inner h3 {
    max-width: 672px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.influencer_of_marketing_inner {
    display: flex;
    flex-direction: column;
    gap: 64px;
}
.i_of_ma_content_inner {
    display: grid;
    grid-template-columns: 640fr 604fr;
    gap: 32px;
    align-items: center;
}
.influencer_of_marketing_content .i_of_ma_content ul li{
    font-size: 24px;
    line-height: 133.33%;
}
.i_of_ma_content_inner_top {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.i_of_ma_content_inner_top h4{
    color: #111928;
}
.i_of_ma_content_inner_top ul li{
    font-weight: 300;
}

.influencer_of_marketing_card {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
    max-width: 1200px;
    width: 100%;
    position: relative;
    margin: 0 auto;
    margin-top: -65px;

}

.influencer_of_marketing_card_inner {
    padding: 32px 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    align-items: center;
    background: #fff;
    border-radius: 20px;
}

.influencer_of_marketing_card_inner::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 4px; 
    border-radius: 20px;
    background: linear-gradient(
        90deg,
        #7100D5 0%,
        #3137D9 31%,
        #25ACE1 99%
    );

    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;

    pointer-events: none;
}


.influencer_of_marketing_card_inner p{
    max-width: 276px;
    width: 100%;
    text-align: center;
    margin: 0;
}

/* *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *
** influencer of marketing styles for Contact Section
** *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** */
.stats-top-contact-sec {
    margin-bottom: -64px;
}
.stats-top-contact-sec.influencer_of_marketing .container {
    padding: 0 20px;
}
.stats-top-contact-sec .influencer_of_marketing_card {
    margin-top: 0;
}
.stats-top-contact-sec .card p {
    font-size: 24px;
}


/* *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *
** Image And Table section
** *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** */
.image_and_table {
	background: linear-gradient(180deg, rgba(245, 247, 253, 0) 0%, #E5EBFB 54.09%, #FFFFFF 100%)
}
.image_and_table .container{
    max-width: 1352px;
    width: 100%;
    padding-top: 0px;
    padding-bottom: 64px;
}


.image_and_table_inner {
    display: grid;
    grid-template-columns: 398fr 850fr;
    gap: 64px;
    align-items: start;
}

.image_and_table_inner.image_content {
    grid-template-columns: 1fr;
}

.image_and_table_right_table {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.image_and_table_right_main {
    position: relative;
}


.image_and_table_right {
    display: flex;
    flex-direction: column;
    gap: 34px;
}

.image_and_table_left{
    line-height: 0;
    border-radius: 20px;
    overflow: hidden;
    position: sticky !important;
    top: 120px;
    align-self: start;
}
.image_and_table_left img {
    width: 100%;
    height: auto;
    aspect-ratio: 398 / 572;
    object-fit: cover;
}

.i_and_t_row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
}
.i_and_t_row p {
    margin: 0;
    font-weight: 600;
}

.i_and_t_row_col {
    display: grid;
    grid-template-columns: 30px 1fr;
    gap: 32px;
    padding: 24px;
    box-shadow: 
     0 2px 4px 0 rgba(0, 0, 120, 0.08),
     0 4px 24px 0 rgba(0, 0, 120, 0.04);
    border-radius: 12px;
    align-items: center;
    height: fit-content;
}

.image_and_table_right_content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 32px 0;
}
.image_content .image_and_table_right{
    gap: 64px;
}
.image_content .image_and_table_right_table {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px 64px;
}
.tbl_hd_list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px 64px;
    margin-bottom: 24px;
    align-items: flex-end;
}
.image_and_table_right_table_inner {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.hd-list-mb {
    display: none;
}
.image_content .i_and_t_row {
    grid-template-columns: 1fr;
}



/* for animation fadein */
.image_and_ani_content {
	background: linear-gradient(180deg, rgba(245, 247, 253, 0) 0%, #E5EBFB 54.09%, #FFFFFF 100%),
		linear-gradient(0deg, #FFFFFF, #FFFFFF);

}

.card.animate {
    opacity: 0;
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    pointer-events: none;
}

.card.animated {
    opacity: 1;
    pointer-events: auto;
}


/* *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *
    ** image And Animation Content
** *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** */
.image_and_ani_content .container{
    padding-top: 64px;
    padding-bottom: 64px;
}
.image_and_ani_content .image_and_table_right {
    gap: 64px;
}

.ani_and_t_row {
    display: grid;
    grid-template-columns: 75px 1fr;
    align-items: flex-start;
    gap: 32px;
    padding: 24px 32px;
    border-radius: 12px;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 120, 0.08), 0 4px 24px 0 rgba(0, 0, 120, 0.04);
	background: white;
}

.image_and_ani_content .image_and_table_right_table {
    gap: 24px;
}

.ani_and_t_row img{
    width: 75px;
    height: 75px;
}

.ani_row_content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ani_row_content p{
    margin: 0;
}




/* *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *
** responsive styles
** *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** */
@media only screen and (max-width: 1200px) {
    /* Header Responsive */
    .main-navigation {
        align-items: center !important;
        justify-content: end !important;
    }

    .main-navigation.opened-search .toggle-menu {
        opacity: 0;
        pointer-events: none;
    }

    .main-navigation.opened-search .search_form-wrap {
        margin-right: 0;
    }


    /* Table and content */
    .i_and_t_row_col {
        gap: 14px;
        padding: 18px;
    }


    /* role_of_creator */
    .work_cards {
        gap: 26px;
    }
}




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

    /* Header  */
    .toggle-menu {
        display: flex;
        order: 2;
    }
    .site-branding img {
        max-width: 70%;
    }

    .admin-bar #masthead {
        top: 47px;
    }

    #masthead .main-header {
        align-items: center;
        padding: 0;
    }
    #masthead.scrolled  {
        padding: 10px 0;
    }
    .site-branding {
        margin: 0;
    }

    #primary-menu {
        display: flex;
        gap: 20px;
        position: fixed;
        max-width: 300px;
        width: 100%;
        background: linear-gradient(184.36deg, var(--white) 78.43%, var(--blue) 117.1%);
        box-shadow: 0 0 10px #009ccd33;
        left: 0;
        top: 0;
        height: 100%;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 100px 30px 50px;
        transition: all .3s linear;
        translate: -300px 0;
    }
    .active #primary-menu {
        translate: 0 0;
    }

    .main-navigation a {
        font-size: 18px;
        padding: 10px 0 !important;
    }

    .admin-bar #masthead.scrolled{
        top: 32px;
        padding: 0 !important;
    }  

    header#masthead .menu-btn.menu-item a{
        padding: 14px 32px !important;
    }
    ul#primary-menu {
        gap: 16px;
        align-items: flex-start;

    }


    /* *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *
    ** content_and_media_section banner
    ** *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** */
    .cam_heading {
        font-size: 32px;
        line-height: 120%;
    }

    .content_and_media_inner {
        gap: 30px;
    }

    .roc_content_img .lg-text{
        font-size: 18px;
    }

    .roc_content_img {
        gap: 8px;
        padding: 6px 10px;
    }
    .roc_content_img img {
        max-width: 48px;
    }

    /* role_of_creator  */
    .role_of_creator {
        padding: 40px 0
    }
    .work_cards_left, .work_cards_right {
        padding: 24px 16px;
        gap: 8px;
    }

    /* card_section  */
    .card_inner_card_item {
        padding: 32px 18px;
    }
    .card_inner_card_item ul {
        gap: 8px;
        padding: 16px 0 16px 8px;
    }
    .card_inner_heading_content {
        font-size: 34px;
    }
    .card_inner_card_item p {
        font-size: 18px;
    }
    .influencer_of_marketing_content .i_of_ma_content ul li {
        font-size: 22px;
    }
    .active-img {
        width: 60px;
        height: 60px;
    }
    .active-img img {
        width: 24px;
    }


    /* *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *
    ** HighLight Section
    ** *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** */
     .highlight-section .container {
        border-radius: 30px;
    }

    /* *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *
    ** image content section
    ** *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** */
    .ics_inner_image_content {
        gap: 24px;
    }
    .image_content_section .container {
        padding: 40px 20px;
    }


    /* *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *
    ** image table section
    ** *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** */

    .image_and_table_inner {
        gap: 28px;
    }
    .i_and_t_row {
        gap: 28px;
    }
    .image_content .image_and_table_right_table,
    .tbl_hd_list {
        gap: 18px 36px;
    }

    /* COntact Section Stats */
    .stats-top-contact-sec {
        margin-bottom: -30px;
    }
    .stats-top-contact-sec .card p {
        font-size: 20px;
    }



    
}

@media only screen and (max-width: 998px){
    /* *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *
    ** content_and_media_section banner
    ** *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** */
    .content_and_media_section:not(.b_width) {
        margin: 30px 0;
    }
    .content_and_media_section .container {
        padding-top: 30px;
        padding-bottom: 30px;
    }
    .content_and_media_inner{
        grid-template-columns: 1fr;
    }
    .media-type-img .content_and_media_left {
        order: 2;
    }
    .video_wrapper {
        width: 100%;
        aspect-ratio: 16 / 9;
    }


    /* Highlight Section */
    .highlight-section .container {
        padding: 80px 1rem;
    }
    .highlight-section .content-inner {
        padding: 1rem;
    }


    /* role_of_creator */
    .creator_inner_content {
        gap: 40px;
    }
    .role_of_creator_inner_inner_top {
        grid-template-columns: 1fr 100px 1fr;
        gap: 0;
    }
    .work_cards_right {
        flex-direction: column;
    }
    .work_cards_left {
        display: flex;
        justify-content: center;
    }

    .role_of_creator {
        margin-top: 36px;
        margin-bottom: 36px;
    }
    .role_of_creator_inner_top {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    

    /* card section  */
    .card_inner_card {
        grid-template-columns: 1fr 1fr;
    }

    /* *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *
    ** influencer of marketing
    ** *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** */
    
    .influencer_of_marketing .container {
        padding: 40px 20px;
    }
    .influencer_of_marketing_inner {
        gap: 42px;
    }
    .influencer_of_marketing_card {
        gap: 20px;
        margin-top: -30px;

    }
    .influencer_of_marketing_content .i_of_ma_content ul li {
        font-size: 18px;
    }




    /* *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *
    ** image content section
    ** *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** */
    .image_content_section_inner {
        gap: 40px;
    }
    .ics_inner_image_content.p_right {
        grid-template-columns: 1fr;
    }

    .ics_inner_image_content.p_left {
        grid-template-columns: 1fr;
        width: 100%;
    }
    .ics_inner_image_content.p_left .ics_inner_image,
    .ics_inner_image_content.p_right .ics_inner_image {
        order: 1;
    }
    .ics_inner_image_content.p_left .ics_inner_content,
    .ics_inner_image_content.p_right .ics_inner_content {
        order: 2;
    }
    .image_content_section.img-con-pd-0 .container {
        padding-top: 0px !important;
    }
    .ics_inner_top {
        padding: 0;
    }



    


    /* *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *
    ** image table section
    ** *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** */

    .i_and_t_row {
        display: grid;
        grid-template-columns: 1fr; 
        gap: 16px;
    }

    .image_and_table_inner {
    grid-template-columns: 1fr;
    }


    .image_and_table_left img {
        aspect-ratio: 16 / 9;
        border-radius: 20px;
    }

    .image_and_table_left{
        position: static !important;
    }

    /* Image and table  */
    .image_content .image_and_table_right_table,
    .tbl_hd_list {
        grid-template-columns: 1fr 1fr;
        gap: 50px 36px;
    }
    .image_and_table_right_table_inner:nth-child(3n) {
        grid-column: span 2;
    }
    .hd-list-mb {
        display: block;
    }
    .hd-list-desk {
        display: none;
    }

    
}



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

    /* Header */
    #masthead.scrolled .main-header {
        min-height: unset;
    }
    #masthead.scrolled .site-branding img {
        max-width: 70%;
    }
    .admin-bar #masthead.scrolled,
    #masthead.scrolled {
        padding: 16px 0 !important;
    }

    /* *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *
    ** responsive content_and_media_section
    ** *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** */
    .cam_heading {
        font-size: 26px;
    }

    .content_and_media_btns {
        flex-wrap: wrap;
    }

    .content_and_media_section:not(.b_width) {
        margin: 20px 0;
    }


    /* *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *
    ** influencer of marketing
    ** *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** */

    .influencer_of_marketing_inner {
        gap: 26px;
    }
    .influencer_of_marketing_card {
        margin-top: 20px;
        grid-template-columns: 1fr;
    }

    .i_of_ma_content_inner {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .i_of_ma_content_inner_top {
        order: 2;
    }


    .influencer_of_marketing_content .i_of_ma_content ul li{
        font-size: 18px;
    }

    .influencer_of_marketing_card_inner h2 {
        font-size: 60px;
    }
    /* COntact Section Stats */
    .stats-top-contact-sec {
        margin-bottom:30px;
    }
    .stats-top-contact-sec .card p {
        font-size: 16px;
    }

    /* role_of_creator  */

    .role_of_creator {
        margin-top: 0px;
        margin-bottom: 0px;
    }
    .role_of_creator .container {
        gap: 68px;
    }
    .role_of_creator_inner_actions {
        gap: 10px;
    }
    /* Table */
    .roc_top_value,
    .roc_content_img .lg-text {
        font-size: 11px;
        line-height: 1.1;
        text-align: center;
    }
    .roc_content_img {
        gap: 8px;
        padding: 5px;
        flex-direction: column;
    }
    .active-img {
        width: 35px;
        height: 35px;
    }
    .active-img img {
        width: 14px;
    }
    .roc_top, .roc_content_inner {
        grid-template-columns: 1.4fr 1fr 1fr 1fr;
    }


    /* Table style Ends here */
    .role_of_creator_inner_inner_top {
        display: none;
    }
    .work_cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .work_cards_center {
        display: flex;
        justify-content: center;
        transform: rotate(90deg);
    }

    .creator_inner_content {
        gap: 64px;
    }
    .work_with_creators {
        gap: 36px;
    }

    .role_of_creator_inner {
        gap: 36px;
    }


    /* card section  */
    .card_inner_card {
        grid-template-columns: 1fr;
    }
    .card_inner {
        gap: 48px;
    }
    .card_inner_heading_content {
        font-size: 34px;
    }
    

    /* *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *
    ** image content section
    ** *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** */

    .image_content_section_inner {
        gap: 24px;
    }

    .ics_inner_top {
        padding: 8px 0;
    }
    .ics_inner_content_dsc ul li {
        font-size: 16px;
    }
    .content_and_media_left {
        gap: 12px;
    }


    /* HighLight Section */
    .highlight-section .container {
        padding: 40px 1rem;
        border-radius: 20px;
    }

    /* Scrolll content section */
    .i_and_t_row_col {
        gap: 20px;
    }


    /* *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *
        ** image And Animation Content
    ** *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** */
    .image_and_ani_content .container{
        padding-top: 30px;
        padding-bottom: 30px;
    }
    .image_and_ani_content .image_and_table_right_table {
        gap: 16px;
    }
    
    .image_and_ani_content .image_and_table_right{
        gap: 24px;
    }

    .image_and_ani_content .ani_and_t_row{
        gap: 16px;
        padding: 16px;
        grid-template-columns: 48px 1fr;
    }
    .ani_and_t_row img {
        width: 48px;
        height: 48px;
    }






    /* Image and table  */
    .image_content .image_and_table_right_table,
    .tbl_hd_list {
        grid-template-columns: 100%;
    }
    .image_and_table_right_table_inner:nth-child(3n) {
        grid-column: unset;
    }
    .image_content .image_and_table_right {
        gap: 24px;
    }

    .image_and_table_right_content {
        padding-bottom: 16px;
    }





}

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

    .btn {
        width: 100%;
        text-align: center;
    }
}