
/* font css start */
@font-face {
    font-family: 'Inter-Regular';
    src: url('../fonts/Inter/Inter-Regular.woff2') format('woff2'),
        url('../fonts/Inter/Inter-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Inter-Medium';
    src: url('../fonts/Inter/Inter-Medium.woff2') format('woff2'),
        url('../fonts/Inter/Inter-Medium.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Inter-SemiBold';
    src: url('../fonts/Inter/Inter-SemiBold.woff2') format('woff2'),
        url('../fonts/Inter/Inter-SemiBold.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Inter-Bold';
    src: url('../fonts/Inter/Inter-Bold.woff2') format('woff2'),
        url('../fonts/Inter/Inter-Bold.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Inter-ExtraBold';
    src: url('../fonts/Inter/Inter-ExtraBold.woff2') format('woff2'),
        url('../fonts/Inter/Inter-ExtraBold.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'DmSansSemibold';
    src: url('../fonts/Inter/DMSans_SemiBold.woff2') format('woff2'),
        url('../fonts/Inter/DMSans_SemiBold.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'DmSansMedium';
    src: url('../fonts/Inter/DMSansMedium.woff2') format('woff2'),
        url('../fonts/Inter/DMSansMedium.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
/* font css end */
html,
body{
    font-family: Inter-Regular;
    font-size: 16px;
}
.container{
    max-width: 1184px;
}

:root{
    --interRegular : Inter-Regular;
    --interMedium : Inter-Medium;
    --interSemiBold : Inter-SemiBold;
    --interBold : Inter-Bold;
    --interExtraBold : Inter-ExtraBold;
    --DmSansSemibold : DmSansSemibold;
    --DmSansMedium : DmSansMedium;
    
    --white : #ffffff;
    --white900 : #EBEBEB;
    --white800 : #F8FBFF;
    --white700 : #F5F5F5;
    --white600 : #E4EEFF;
    --white500 : #F8F8F8;
    --black900 : #010101;
    --black700 : #292C3F;

    --greyBlack : #303030;
    --grey800 : #676B7C;
    --grey700 : #717171;
    --grey600 : #9C9D9D;
    --grey500 : #B1B1B1;
    --grey400 : #9F9F9F;
    --grey300 : #D8D8D8;
    --primary-color : #0166FF;
    --blue900 : #044DFF;
    --blue800 : #1A7AFE;
    --orange : #FB6238;
    --pinkColor900 : #A02BB0;
    --pink800 : #9556EE;
    --pink700 : #96209E;
    --pink500 : #F1F1FC;

    --fs62 : 62px;
    --fs50 : 50px;
    --fs40 : 40px;
    --fs32 : 32px;
    --fs30 : 30px;
    --fs26 : 26px;
    --fs24 : 24px;
    --fs22 : 22px;
    --fs20 : 20px;
    --fs18 : 18px;
    --fs15 : 15px;
    --fs14 : 14px;
    --fs13 : 13px;
    --fs12 : 12px;
    
    --semiCircle: 58vh;
}

.interMedium{
    font-family: var(--interMedium);
}
.interSemiBold{
    font-family: var(--interSemiBold);
}
.interBold{
    font-family: var(--interBold);
}
.interExtraBold{
    font-family: var(--interExtraBold);
}
.dmSansSemibold{
    font-family: var(--DmSansSemibold);
}
.dmSansMedium{
    font-family: var(--DmSansMedium);
}

.fs62,
h1,
.h1{
    font-size: var(--fs62);
    /* line-height: 113px; */
}
.fs50{
    font-size: var(--fs50);
}
.fs40,
h2,
.h2{
    font-size: var(--fs40);
}

.fs30,
h3,
.h3{
    font-size: var(--fs30);
}
.fs24,
h4,
.h4{
    font-size: var(--fs24);
}
.fs22,
h5,
.h5{
    font-size: var(--fs22);
}
.fs32{
    font-size: var(--fs32) !important;
}
.fs20,
.h6,
h6{
    font-size: var(--fs20);
}
.fs26{
    font-size: var(--fs26);
}

.fs18{
    font-size: var(--fs18);
}
.fs15{
    font-size: var(--fs15);
}
.fs14{
    font-size: var(--fs14);
}
.fs13{
    font-size: var(--fs13);
}
.fs12{
    font-size: var(--fs12);
}

.color-black900{
    color: var(--black900);
}
.colorBlack700{
    color: var(--black700);
}
.color-white{
    color: var(--white);
}
.theme-primary{
    color: var(--primary-color) !important;
}
.grey800{
    color: var(--grey800);
}
.grey700{
    color: var(--grey700);
}
.grey600{
    color: var(--grey600);
}
.grey500{
    color: var(--grey500);
}
.grey400{
    color: var(--grey400);
}

.bgPrimary-color{
    background-color: var(--primary-color);
}
.bgOrange{
    background-color: var(--orange);
}
.bgPinkColor900{
    background-color: var(--pinkColor900);
}
.bgPink800{
    background-color: var(--pink800);
}
.bgpink700{
    background-color: var(--pink700);
}
.bgblue800{
    background-color: var(--blue800);
}
.bgWhite800{
    background-color: var(--white800);
}
.bgWhite700{
    background-color: var(--white700);
}
.bgwhite600{
    background-color: var(--white600);
}
.bgwhite500{
    background-color: var(--white500);
}

.bgBlue900{
    background-color: var(--blue900);
}
.bgpink500{
    background-color: var(--pink500);
}

.pb100{
    padding-bottom: 100px;
}
.pt100{
    padding-top: 100px;
}
.py16{
    padding-top: 16px !important;
    padding-bottom: 16px !important;
}
.py72{
    padding-top: 72px;
    padding-bottom: 72px;
}
.pb72{
    padding-bottom: 72px !important;
}

.themeWhiteBtn{
    color: var(--greyBlack);
    background-color: var(--white);
    padding: 7px 20px;
    transition: all 0.4s ease;
    border: 1px solid var(--white900);
}
.themeWhiteBtn:hover{
    background-color: var(--primary-color);
    color: var(--white) !important;
}
.themeWhiteBtn:hover img{
    filter: invert(100%) sepia(0%) saturate(7435%) hue-rotate(162deg) brightness(98%) contrast(800%);
}
.themeWhiteBtn.primary-color:hover{
    background-color: var(--greyBlack);
    color: var(--white);
}
.themeBlueColorBtn{
    color: var(--white);
    background-color: var(--primary-color);
    padding: 7px 36px;
    transition: all 0.4s ease;
    display: inline-block;
    border: 1px solid transparent;
}
.themeBlueColorBtn:hover{
    background-color: var(--white);
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.themeBlueColorBtn:hover .whiteArrow{
    filter: none;
}
.letterSpacing3{
    letter-spacing: 3px;
}
.mt72{
    margin-top: 72px;
}
.mb72{
    margin-bottom: 72px;
}
.bggradient{
    background-image: url("../images/gradient-bg.png");
    background-size: cover;
}
.bgGradientFlip{
    background-image: url("../images/bgGradientFlip.png");
    background-size: cover;
}
.bgGlassGradient{
    background-image: url("../images/glassGradient.png") !important;
    background-size: cover !important;
    background-position: center !important;
}
.blutBtnGradient{
    box-shadow: 0px 6px 24px 0px #0166FF33;
}
.whiteArrow{
    filter: invert(100%) sepia(0%) saturate(7435%) hue-rotate(162deg) brightness(98%) contrast(800%);
}
.radius30{
    border-radius: 30px;
}
.radius20{
    border-radius: 20px;
}
.py70{
    padding-top: 70px;
    padding-bottom: 70px;
}
.text-gradient{
    background: linear-gradient(72.11deg, #0166FF 14.26%, #9560FF 59.01%, #96209E 96.93%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text; /* for Firefox */
    color: transparent;
}
.themeShadowBlue{
    box-shadow: 0px 8px 24px 0px #3D81C23D;
}
.lh28{
    line-height: 28px;
}

form textarea{
    resize: none;
}
.customFormBr form br{
    display: none;
}
.customFormBr form .form-check-custom-flex .wpcf7-list-item{
    margin: 0;
}


/* navbar css start */
.lang-dropdown img {
    width: 25px;
    height: 25px;
    border-radius: 50%;
}
.lang-dropdown .dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 7px;
    line-height: 7px;
    background-color: var(--white);
    border: 1px solid var(--white900);
}
.lang-dropdown .dropdown-toggle::after{
    background-image: url(../images/dropdownArrow.svg);
    vertical-align: middle;
    border: 0;
    width: 16px;
    height: 16px;
    background-repeat: no-repeat;
    background-position: center;
    margin: 0;
}
.navbar{
    transition: all 0.3s ease;
    z-index: 2;
}

.navbar.scrolled{
    background: rgb(38 38 38 / 68%);
    z-index: 2;
    backdrop-filter: blur(10px);
}
.navbar.navbarDark .nav-item .nav-link{
    color: #595959 !important;
}
.navbar.navbarDark.scrolled .nav-item .nav-link{
    color: var(--white) !important;
}
.navbar.navbarDark .logoLight{
    display: none;
}
.navbar.navbarDark .logoDark{
    display: block;
}
.navbar.navbarDark.scrolled .logoLight{
    display: block;
}
.navbar.navbarDark.scrolled .logoDark{
    display: none;
}

.navbar-toggler:focus{
    box-shadow: none;
}

#toggle {
  width: 28px;  
  line-height: 0;
  display: inline-block;
}

#toggle span {
  width: 100%;
  height: 3px;
  background: white;
  transition: all 0.3s;
  backface-visibility: hidden;
  display: inline-block;
}

#toggle.on .one {
  transform: rotate(45deg) translate(3px, 3px);
}

#toggle.on .two {
  opacity: 0;
}

#toggle.on .three {
  transform: rotate(-45deg) translate(7px, -8px);
}

/* navbar css end */

/* bannerSection css start */
.bannerSection{
    padding-top: 185px !important;
    background: linear-gradient(72.11deg, #0166FF 14.26%, #9560FF 59.01%, #96209E 96.93%);
}
.bannerSection .orangePill{
    padding: 6px 35px;
}
.bannerSection .IconCircle{
    width: 42px;
    height: 42px;
}
.bannerSection .IconCircle img{
    margin-top: -4px;
}
.bannerSection .publisherWrapper,
.bannerSection .expertMentorWrapper{
    padding: 8px 32px 8px 8px;
    gap: 10px;
    position: absolute;
    border-radius: 6px;
    box-shadow: 0px 6px 16px 0px #F9A97866;
}
.bannerSection .publisherWrapper{    
    background: linear-gradient(90deg, #ffffff 0%, #E8C9F0 100%);
    position: absolute;
    bottom: 20px;
    right: 0;
    box-shadow: 0px 6px 16px 0px #F9A97866;
}
.bannerSection .expertMentorWrapper{    
    position: absolute;
    top: -33px;
    left: -100px;
    box-shadow: 0px 8px 40px 0px #0000000A;
}
.bannerSection .offerAvailable{
    bottom: 0px;
    left: 20px;
    top: unset;
}
/* bannerSection css end */


/* trustedCollabSection start */
.trustedCollabSection{
    padding-top: 58px;
    padding-bottom: 58px;
    background-image: url("../images/collaboratorBg.png");
    padding-left: 292px;
}
.trustedCollabSection::before{
    position: absolute;
    content: "";
    background-image: url("../images/collabShade.png");
    height: 586px;
    width: 386px;
    background-repeat: no-repeat;
    right: 0;
    bottom: 0;
}
/* trustedCollabSection end */


/* platformSection css start */
.customForm .form-control,
.customForm .form-select {
    box-shadow: 0px 4px 24px 0px #1A7AFE33;
    border-radius: 12px;

}
.customForm .form-control::placeholder,
.customForm .form-select {
    color: var(--grey400) ;
}
.customForm .form-select{
    background-image: none;
}
.customForm .themeBlueColorBtn{
    box-shadow: 0px 6px 24px 0px #0166FF33;
}
.platformSection form{
    z-index: 1;
    position: relative;
}
.platformSection form::after{
    position: absolute;
    content: "";
    background: linear-gradient(180deg, #E7EFFE 0%, rgba(232, 242, 254, 0) 100%);
    height: 350px;
    width: 350px;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.customForm .was-validated textarea.form-control:valid, 
.customForm textarea.form-control.is-valid{
    background-image: none;
}
.platformSection .leftStar{
    left: -56px;
    top: 45%;
    width: 27px;
    height: 28px;
    z-index: -1;
}
.platformSection .rightStar{
    top: 32%;
    right: -40px;
    width: 15px;
    height: 16px;
}

.platformSection .topStar{
    left: -85px;
    position: relative;
}

.platformSection .customArrow{
    width: 385px;
    height: 171px;
    position: absolute;
    bottom: -30px;
    object-fit: contain;
    left: 50%;
    transform: translateX(-50%) rotate(-5deg);
}
.platformSection form .wpcf7-list-item{
    margin: 0;
}
/* platformSection css end */

/* smartWorthSection css start */
.smartWorthSection{
    padding-top: 70px;
    padding-bottom: 70px;
}
/* .smartWorthSection::before{
    position: absolute;
    content: "";
    background-image: url(../images/pinkShade.png);
} */
.smartWorthSection .whyChooseDetailIconWrapper{
    width: 64px;
    height: 64px;
    border-radius: 14px;
    box-shadow: 0px 8px 24px 0px #3D81C23D;
}
.whyChooseUsCard{
    border-radius: 10px;
}
.smartWorthSection .blackArrow{
    filter: invert(0%) sepia(6%) saturate(7500%) hue-rotate(183deg) brightness(103%) contrast(106%);
}

.smartWorthSection .whiteArrow{
    filter: invert(100%) sepia(0%) saturate(4134%) hue-rotate(193deg) brightness(105%) contrast(107%);
}
.smartWorthSection .themeBlueColorBtn:hover .whiteArrow{
    filter: invert(0%) sepia(6%) saturate(7500%) hue-rotate(183deg) brightness(103%) contrast(106%);
}
/* smartWorthSection css end */


/* whatWeOfferSection css start */
.whatWeOfferSection .hero-img{
    border-radius: 22px;
}
/* whatWeOfferSection css end */

/* setpSection css start */
.stepSection{
    padding-top: 70px;
    padding-bottom: 70px;
    position: relative;
}
.stepSection::before{
    /* position: absolute;
    background-image: url("../images/blueShade.png");
    content: "";
    width: 400px;
    height: 400px;
    top: 0;
    left: 0; */
}
.stepSection .stepCard .stepCardImgWrapper{
    width: 64px;
    height: 64px;
    border-radius: 14px;
    box-shadow: 0px 8px 24px 0px #3D81C23D;
}
.stepSection .stepCard .stepCardImgWrapper .numberBadge{
    width: 32px;
    height: 32px;
    top: -15px;
    right: -15px;
}
.stepSection .customArrowPos {
    position: relative;
}
.stepSection .customArrowPos::before {
    background: url('../images/stepCurvArrow.svg') no-repeat center;
    background-size: contain;
    width: 120px;
    height: 60px;
    margin: auto;
    position: absolute;
    content: "";
    width: 142px;
    height: 30px;
}
.stepSection .customArrowPos:first-child:before {
    display: none;
}
.stepSection .customArrowPos:nth-child(2)::before{
    right: 54%;
    transform: translateX(-50%);
    top: 20px;
}
.stepSection .customArrowPos:nth-child(3)::before{
    right: 54%;
    transform: translateX(-50%) scaleY(-1);
    top: 20px;
}
.stepSection .customArrowPos:nth-child(4)::before{
    right: 54%;
    transform: translateX(-50%);
    top: 20px;
}
/* setpSection css end */


/* feedbackSection css start */
.feedbackSection{
    padding-top: 60px;
}
.feedbackSection .feedBackSlider .personImgWrapper{
    background: #0166FF75;
    border-radius: 20px;
    min-height: 480px;
}
.feedbackSection .feedBackSlider .personImgWrapper img{
    object-fit: cover;
}
.feedbackSection .feedBackSlider .personaImgLeft .bottomIcon{
    position: absolute;
    right: -45px;
    bottom: 15px;
}
.feedbackSection .feedBackSlider .personaImgLeft .topIcon{
    position: absolute;
    left: -45px;
    top: -45px;
    transform: rotate(179deg);
}
.feedbackSection .arrow-main .test{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    box-shadow: 0px 8px 20px 0px #0000001A;
    width: 60px;
    height: 60px;
}
.feedbackSection .arrow-main .test.prev-btn img,
.feedbackSection .arrow-main .test.next-btn img{
    filter: invert(8%) sepia(23%) saturate(0%) hue-rotate(204deg) brightness(98%) contrast(83%);
}
.feedbackSection .arrow-main .test.prev-btn{
    left: 20px;
}
.feedbackSection .arrow-main .test.prev-btn img{
    transform: rotate(180deg);
}
.feedbackSection .arrow-main .test.next-btn{
    right: -30px;
}

.feedbackSection .slick-initialized .slick-slide {
    display: block;
    padding-left: 50px;
    padding-top: 60px;
    padding-right: 0;
}
.feedbackSection .slick-initialized .slick-list {
    overflow-y: visible ;
}
.collaboratorSlider  .feedBackSlides img {
    max-width: 200px !important;
}
.collaboratorSlider  .slick-track {
    align-items: center;
}
.collaboratorSlider  .slick-track .feedBackSlides {
    min-height: 50px;
    align-items: center;
}

/* .feedbackSection > .container {
    max-width: 1420px;
} */
/* feedbackSection css end */

/* blogSection css start */
.blogsSection{
    padding-top: 63px;
    padding-bottom: 63px;
}
.blogsSection .blogCard .card-img-top{
    max-height: 200px;
    border-radius: 8px;
    object-fit: cover;
    width: 100%;
    object-position: top left;
}
.blogsSection .blogCard{
    border: 0.5px solid #E2E2E2;
    border-radius: 14px;
    padding: 20px;
    transition: all 0.3s ease;
}
.blogsSection .blogCard:hover{
    box-shadow: 0px 10px 34px 0px #00000014;
}
/* blogSection css end */

/* contactUsSection css start */
.contactUsSection{
    padding-top: 84px;
}
/* contactUsSection css end */

/* footer css start */
footer{
    padding-top: 98px;
    padding-bottom: 76px;
}
footer .footerSocialIconWrapper{
    width: 24px;
    height: 24px;
    border-radius: 4px;
}
/* footer css end */

/* about us page css start */

/* ourFoundation section css start */
.aboutUsPage .aboutUsBanner{
    background-image: url("../images/aboutUsBgPipe.png") , url("../images/glassGradient.png") !important;
    background-size: 31%, cover !important;
    background-repeat: no-repeat;
    background-position: 100% 205px, center;
}

.aboutUsPage .aboutUsBanner .imgWrapper::before {
    position: absolute;
    height: 393px;
    width: 393px;
    content: "";
    top: 50%;
    left: 0100%;
    transform: translate(-95%, -50%);
    /* background: #cdcdcd; */
    border-radius: 50%;
    background: linear-gradient(142.13deg, rgb(255 255 255 / 50%) 3.8%, rgb(255 255 255 / 29%) 99.75%);
    z-index: -1;
    filter: blur(1px);
}

.ourFoundation .foundationCard{
    padding-top: 147px;
    padding-bottom: 63px;
}
.ourFoundation .foundationCard .vectorWrapper {
    height: 74px;
    width: 74px;
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translate(-50%, -50%);
}
.ourFoundation .foundationCard .wrapperIconPos {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -10px;
}
/* ourFoundation section css end */

/* about us page css end */

/* blogPage css start */
.blogPage .blogsSection{
    padding-top: 80px;
    padding-bottom: 80px;
}
/* blogPage css end */


/* blogDetail Page css start */
.blogDetail .bannerSection {
    padding-bottom: 70px !important;
}
.blogDetail .aboutBlog{
    padding-bottom: 200px;
}
.aboutBlog .archiverCard,
.aboutBlog .recentPostWrapper{
    border: 1px solid var(--white700);
    padding: 28px 26px;
}
.aboutBlog .archiverCard{
    border: 1px solid var(--white700);
}
.aboutBlog .recentPostWrapper .blogDetailWrapper{
    gap: 14px;
}
.aboutBlog .recentPostWrapper .blogDetailWrapper .imageWrapper{
    height: 75px;
    min-width: 75px;
}
.aboutBlog .recentPostWrapper .blogDetailWrapper .imageWrapper img{
    object-fit: cover;
    border-radius: 8px;
    object-position: top left;
}
.aboutBlog .searchInput{
    width: 100%;
    background-color: var(--white700);
    padding: 15px 55px 15px 25px;
    border-radius: 40px;
    transition: 0.4s all;
}
.aboutBlog .searchInput:focus-visible{
    border: 0;
    outline: 0;
    box-shadow: 2px 9px 3px -5px #00000014;
}
.aboutBlog .searchIcon{
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
}
.aboutBlog .leftCol{
    padding-left: 0;
}
.aboutBlog .rightCol{
    padding-left: 24px;
    position: sticky;
    top: 100px; /* Adjust this value depending on your header height */
    align-self: flex-start;
}
.blogDescWrapper .blogImg{
    height: 400px;
}
.blogDescWrapper .blogImg img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 12px;
}
.blogDescWrapper .blogSubDetImg img{
    width: 250px;
    height: auto;
}
.aboutBlog .archiverCard form .form-control {
    border: 1px solid #E5E5E5 !important;
}
.aboutBlog .archiverCard form .wpcf7-list-item.first.last {
    margin: 0;
}

/* blogDetail Page css end */


/* registration page css start */
.signUpFormSection{
    padding-top: 65px;
    padding-bottom: 65px;
}
.signUpFormSection form{
    padding: 55px;    
}
.becomeAdvertiserForm form{
    padding: 55px;    
}

.signUpFormSection form input.form-control::placeholder{
    color: var(--grey300);   
}
.signUpFormSection form .form-select{
    color: var(--grey300);   
}
.signUpFormSection form .form-select{
    background-image: url("../images/greyChevron.svg");  
    --bs-form-select-bg-img : none;
    background-position: right 20px center;
    padding-right: 40px !important;
}
.signUpFormSection form .form-check .form-check-input[type=checkbox] {
    border-radius: .25em;
    width: 24px;
    height: 24px;
    border: 0;
}
.signUpFormSection form .form-check .form-check-label{
    margin-left: 14px;
}
.form-check-custom-flex p{
    display: flex;
    gap: 10px;
}
.signUpFormSection .registerForm form p br{
    display: none;
}
/* registration page css end */

/* thankYouPage css start */
.thankYouPage .thankYouSection{
    padding-top: 82px;
    padding-bottom: 250px;
}
.thankYouPage .thankYouSection h2{
    font-size: 42px;
}
/* thankYouPage css end */

/* advertiserPage css start */
.becomeAdvertiser .becomeAdvertiserForm form br{
    display: none;
}
.becomeAdvertiser .becomeAdvertiserForm form .servicesDiv .wpcf7-checkbox.form-check-input{
    display: flex;
    width: 100%;
    height: auto;
    flex-direction: column;
    padding: 10px 12px;
}
.becomeAdvertiser .becomeAdvertiserForm form .servicesDiv .wpcf7-checkbox.form-check-input .wpcf7-list-item{
    margin: 0;
    margin-bottom: 4px;
}
.advertiserPage .bannerSection{
    padding-bottom: 65px !important;
}

/* businessExpansionSection css start */
.businessExpansionSection{
    padding-top: 95px;
    padding-bottom: 70px;
}
.businessExpansionSection .strategyCard .strategyCardIcon{
    width: 120px;
    height: 120px;
    border-radius: 14px;
}
.businessExpansionSection .strategyCard .strategyCardIcon img{
    width: 75px;
    height: 75px;
}
/* businessExpansionSection css end */

/* platformSection css start */
.advertiserPage .platformSection{
    padding-top: 91px;
    padding-bottom: 91px;
}
/* platformSection css end */

/* servicesSection css start */
.advertiserPage .ourFoundation .foundationCard .vectorWrapper{
    top: 50px;
}
.advPublPage .servicesSection{
    background-image: url("../images/adervtisingServiceBg.png");
    padding-top: 91px;
    padding-bottom: 112px;
    position: relative;
}
.advPublPage .servicesSection.ourFoundation .foundationCard{
    box-shadow: 0px 17px 20px 0px #0000001A;
}
.advPublPage .servicesSection::before{
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    background-color: var(--white);
    height: 286px;
    width: 100%;
}
/* servicesSection css end */

/* buisnessExpansionSection css start */
.advPublPage .buisnessExpansionSection{
    padding: 98px 56px;
}

.advPublPage .buisnessExpansionSection .feedBackSlides {
    height: 48px;
    align-items: center;
    display: flex;
}
.advPublPage .buisnessExpansionSection .feedBackSlides img {
    height: 100%;
    object-fit: cover;
}
.advPublPage .buisnessExpansionLogoSlider{
    padding-top: 60px;
}
/* buisnessExpansionSection css end */


/* advertiserPage css end */


/* faqPage css start */
.faqSection{
    padding-bottom: 99px;
    padding-top: 47px;
}
.faqSection .accordion-button:focus{
    box-shadow: none;
}
.faqSection .accordion-item:first-of-type>.accordion-header .accordion-button,
.faqSection .accordion-item:first-of-type,
.faqSection .accordion-item:last-of-type{
    border-radius: 20px !important;
}
.faqSection .accordion-button:not(.collapsed){
    box-shadow: none;
}
.faqSection .accordion-button:not(.collapsed){
    color: var(--black700);
}
.faqSection .accordion-button,
.faqSection .accordion-body{
    padding: 0;
}
.faqSection .accordion-item{
    padding: 30px;
}
.faqSection .accordion-body{
    margin-top: 25px;
}
.faqSection .accordion-button::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-plus' viewBox='0 0 16 16'%3E%3Cpath d='M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4z'/%3E%3C/svg%3E");
  transition: all 0.5s;
}
.faqSection .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-dash' viewBox='0 0 16 16'%3E%3Cpath d='M4 8a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7A.5.5 0 0 1 4 8z'/%3E%3C/svg%3E");
}
.faqSection .accordion-button::after {
  transition: all 0.5s;
}

/* faqPage css end */


/* privacyPolicySection css start */
.imprintSection{
    padding-top: 54px;
    padding-bottom: 54px;
}
.imprintSection .policyContent{
    font-size: 18px;
}
.privacyPolicySection{
    padding-top: 54px;
    padding-bottom: 54px;
}
.privacyPolicySection ol,
.privacyPolicySection ul{
    padding: 0;
    list-style-position: inside;
}

.privacyPolicySection ul{
    padding-left: 10px;
    list-style-type: disc;
}
.privacyPolicySection .policyContent ol > li::marker {
    font-size: var(--fs20);
    font-weight: bold;
}
/* privacyPolicySection css end */


/* contactUs page css start */
.contactUsPage .bannerSection{
    background-image: url("../images/contactUsBgbanner.png");
    background-repeat: no-repeat;
    background-size: cover;
}
.contactUsPage .contactsUsSection{
    padding-top: 65px;
    padding-bottom: 65px;
}
.contactUsPage .contactsUsSection .informationCard{
    background: linear-gradient(180deg, #E7EFFE 0%, rgba(232, 242, 254, 0) 100%);
    padding: 30px 50px;
}
.contactUsPage .contactsUsSection .howCanHelpDiv{
    border: 1px solid #E5E5E5;
    padding: 30px;
}
.contactUsPage .contactsUsSection .howCanHelpDiv form input.form-control,
.contactUsPage .contactsUsSection .howCanHelpDiv form textarea.form-control{
    border: 1px solid #E5E5E5 !important;
    padding: 12px 20px;
    border-radius: 8px;
}
.contactUsPage .contactsUsSection .howCanHelpDiv form input.form-control::placeholder{
    color: #222222;
}

.contactUsPage .aboutDeliverSection .gradient{
    background: linear-gradient(15deg, #0166FF 11.49%, #9560FF 53.18%, #96209E 88.51%);
    padding-top: 44px;
    padding-bottom: 44px;
} 

/* locationSection css start */
.locationSection{
    margin-top: 92px;
}

/* locationSection css end */

/* contactUs page css end */


/* publisher Page css start */
.publisherPage .platformSection{
    padding-top: 91px;
    padding-bottom: 91px;
}

.keyBenefitSection{
    padding-top: 80px;
    overflow: hidden;
}
.keyBenefitSection .keyFeatureImageWrapper{
    padding: 54px 34px 0;
}

.keyBenefitSection .semi {
    width: calc(var(--semiCircle) - 24px);
    height: calc(var(--semiCircle) / 2);    
    background: #E7EFFE;
    border-top-left-radius:  calc(var(--semiCircle) / 2);
    border-top-right-radius: calc(var(--semiCircle) / 2);
}

.keyBenefitSection .semi.top {
    margin:  0 auto;
    border-top-left-radius:  calc(var(--semiCircle) / 2);
    border-top-right-radius: calc(var(--semiCircle) / 2);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    bottom: -90px;
    position: relative;
}
.keyBenefitSection .semi.top .themeBlueColorBtn  {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 135px;
}
.keyBenefitCard > div{
    padding: 20px;
    border-top-left-radius: 0;
    margin-bottom: 20px;
}
.keyBenefitCard:last-child > div{
    margin-bottom: 0px;
}
.keyBenefitCard:last-child{
    margin-bottom: 0px;
}
.keyBenefitSection .leftCol .radius30{
    border-top-right-radius: 0;
}
.keyBenefitSection .customMargin82{
    margin-top: 82px;
}


/* publisher Page css end */

.select2-container--default .select2-selection--multiple {
    padding: 16px 24px;
    border-radius: 30px !important;
    background: white;
    border: 0 !important;
}
.select2.select2-container .select2-search--inline .select2-search__field{
    margin-top: 0;
    margin-left: 0;
    /* height: 35px; */
}
.select2.select2-container--default .select2-selection--multiple{
    min-height: 56px;
    display: flex;
    align-items: center;
    padding-top: 0;
}
.select2-container--open .select2-dropdown--below{
    border-color: transparent;
}




/* responsive css start */
@media(max-width:1440px){
    .blogsSection .blogCard .card-img-top{
        max-height: 148px;
    }
    .trustedCollabSection{
        padding-left: 120px;
    }
    .feedbackSection .arrow-main .test.next-btn{
        right: -10px;
    }
    .aboutUsPage .aboutUsBanner {
        background-position: 100% 100%, center;
        background-size: 25%, cover !important;
    }
}

@media(max-width:1400px){
    .contactUsSection{
        padding-bottom: 70px;
    } 
    .trustedCollabSection{
        padding-left: 25px;
        padding-right: 25px;
    }
    .aboutUsPage .aboutUsBanner {
        background-position: 100% 270px, center;
        background-size: 34%, cover !important;
    }
    .aboutUsPage .aboutUsBanner .imgWrapper::before{
        left: 50%;
        transform: translate(-50% , -50%);
    }
}

@media(max-width:1366px){
    :root{
        --fs62 : 54px;
        --fs40 : 40px;
        --fs30 : 30 px;
        --fs22 : 22px;
        --fs18 : 18px;
        --fs14 : 14px;
        --fs12 : 12px;
    }
}

@media(max-width:1199px){
    .container{
        padding-left: 40px;
        padding-right: 40px;
    }
    :root{
        
        --fs50 : 46px;
        --fs40 : 36px;
        --fs32 : 30px;
        --fs30 : 28px;
        --fs24 : 22px;
        --fs22 : 20px;
        --fs18 : 18px;
        --fs14 : 14px;
        --fs12 : 12px;
        --semiCircle: 650px;

    }
    .navbar{
        background: rgb(38 38 38 / 68%);
        z-index: 2;
        backdrop-filter: blur(10px);
    }
    .navbar .navbar-brand img{
        width: 120px;
    }
    .navbar.navbarDark .logoLight{
        display: block;
    }
    .navbar.navbarDark .logoDark{
        display: none;
    }
    .navbar .navbar-nav{
        margin: 12px 0;
    }
    .navbar.navbarDark .nav-item .nav-link {
        color: #ffffff !important;
    }
    .platformSection .customArrow {
        width: 231px;        
        bottom: -60px;
    }
    .stepSection .customArrowPos::before{
        width: 119px;
    }
    .feedbackSection .feedBackSlider .personImgWrapper{
        min-height: auto;
    }
    .feedbackSection .arrow-main .test{
        width: 50px;
        height: 50px;
    }
    .aboutUsPage .aboutUsBanner{
        background-image: url(../images/glassGradient.png) !important;
        background-size: cover !important;
        background-position: center !important;
    }
    .thankYouPage .thankYouSection{
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .thankYouPage .thankYouSection h2{
        font-size: 36px;
    }
    .businessExpansionSection .strategyCard .strategyCardIcon{
        width: 100px;
        height: 100px;
    }
    .businessExpansionSection .strategyCard .strategyCardIcon img{
        width: 65px;
        height: 65px;
    }
    .advertiserPage .buisnessExpansionLogoSlider {
        padding-top: 30px;
    }
    .keyBenefitSection .semi.top .themeBlueColorBtn {
        bottom: 160px;
    }
    .keyBenefitSection .leftCol{
        max-width: 650px;
        margin: 0 auto;
    }
    .keyBenefitSection .customMargin82{
        margin-top: 42px;
    }
}
@media(max-width:1024px){
    :root{
        --fs62 : 50px;
        --fs40 : 34px;
        --fs32 : 30px;
        --fs30 : 28px;
        --fs24 : 20px;
        --fs22 : 20px;
        --fs18 : 16px;
        --fs14 : 14px;
        --fs12 : 12px;
        --semiCircle: 450px;

    }
    .ourFoundation .foundationCard .wrapperIconPos{
        top: -8px;
    }
    .servicesSection p.w-75{
        width: 100% !important;
    }
    .keyBenefitSection .leftCol {
        max-width: 450px;  
        margin: 0 auto;
    }
    .keyBenefitSection .semi.top {
        bottom: -40px;
    }
    .keyBenefitSection .semi.top .themeBlueColorBtn {
        bottom: 80px;
        width: 100%;
        max-width: 232px;
    }
}

@media(max-width:991px){
    
    /* .navbar.navbarDark.scrolled .logoLight{
        display: block;
    }
    .navbar.navbarDark.scrolled .logoDark{
        display: none;
    } */
    .smartWorthSection .whyChooseDetailIconWrapper{
        height: 50px;
        width: 50px;
    }
    .aboutDeliverSection .w-75{
        width: 100% !important;
    } 
    .stepSection .customArrowPos::before{
        display: none;
    }
    .py16 {
        padding-top: 10px !important;
        padding-bottom: 10px !important;
    }
    .aboutBlog .rightCol{
        padding-left: 0;
        margin-top: 30px;
    }
    .aboutBlog .leftCol {
        padding-left: 12px;
    }
    .blogDescWrapper .blogImg {
        max-height: 300px;
    }
    .blogDetail .aboutBlog{
        padding-bottom: 70px;
    }
    .signUpFormSection form {
        padding: 45px;
    }
	.becomeAdvertiserForm form {
        padding: 45px;
    }
    .advPublPage .buisnessExpansionSection .feedBackSlides {
        height: 40px;
    }
}

@media(max-width:767px){
    :root{
        --fs62 : 46px;
        /* --fs40 : 40px; */
        --fs50 : 38px;
        --fs30 : 26px;
        --fs24 : 20px;
        --fs22 : 20px;
        --fs20 : 18px;
        --fs18 : 16px;
        --fs14 : 14px;
        --fs12 : 12px;
    }
    .bannerSection .publisherWrapper, .bannerSection .expertMentorWrapper{
        padding : 6px 24px 6px 6px
    }
    .platformSection .customArrow {
        display: none;
    }

    .py72,
    .trustedCollabSection,
    .platformSection,
    .smartWorthSection,
    .stepSection,
    .contactUsSection,
    footer,
    .businessExpansionSection,
    .buisnessExpansionSection,
    .advertiserPage .servicesSection,
    .privacyPolicySection,
    .blogPage .blogsSection,
    .faqSection,
    .keyBenefitSection  {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .stepSection .stepCard .stepCardImgWrapper .numberBadge{
        width: 20px;
        height: 20px;
        top: -10px;
        right: -10px;
        font-size: 12px;
    }
    .feedbackSection .feedBackSlider .personaImgLeft .topIcon{
        width: 60px;
    }
    .feedbackSection .feedBackSlider .personaImgLeft .bottomIcon{
        display: none;
    }
    .feedbackSection .arrow-main {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin: 30px 0;
    }
    .feedbackSection .arrow-main .test{
        position: static;
        transform: translateY(0);
    }
    .ourFoundation .foundationCard .vectorWrapper{
        height: 65px;
        width: 65px;
    }
    .ourFoundation .foundationCard .vectorWrapper img{
        width: 35px;
    }
    .signUpFormSection form {
        padding: 35px;
    }
	.becomeAdvertiserForm form {
        padding: 35px;
    }
    .thankYouPage .thankYouSection h2{
        font-size: 30px;
    }
    .businessExpansionSection .strategyCard .strategyCardIcon img {
        width: 55px;
        height: 55px;
    }
    .advPublPage .buisnessExpansionSection .feedBackSlides {
        height: 30px;
    }
    .advPublPage .buisnessExpansionLogoSlider {
        padding-top: 20px;
    }
    .aboutUsPage .aboutUsBanner,
    .blogPage .bannerSection,
    .blogDetail .bannerSection,
    .regPage .bannerSection,
    .thankYouPage .bannerSection,
    .privacyPolicy .bannerSection,
    .contactUsPage .bannerSection{
        padding-top: 145px !important;
        background-position: left center !important;
    }
    .contactUsPage .contactsUsSection .informationCard{
        padding: 30px;
    }
    .contactUsPage .contactsUsSection .howCanHelpDiv {
        padding: 24px;
    }
    .locationSection {
        margin-top: 65px;
    }

}
@media(max-width:575px){
    .container{
        padding-left: 20px;
        padding-right: 20px;
    }
    :root{
        --fs62 : 42px;
        --fs40 : 32px;
        --fs30 : 24px;
        --fs24 : 18px;
        --fs22 : 18px;
        --fs18 : 16px;
        --fs14 : 14px;
        --fs12 : 12px;
    }

    .pt100{
        padding-top: 50px;
    }
    .pb100{
        padding-bottom: 50px;
    }
    .mb72{
        margin-bottom: 42px;
    }
    .mt72{
        margin-top: 42px;
    }
    .py16 {
        padding-top: 8px !important;
        padding-bottom: 8px !important;
    }
    .bannerSection .publisherWrapper .fs18, 
    .bannerSection .expertMentorWrapper .fs18{
        font-size: 14px;
    }
    .bannerSection .expertMentorWrapper{
        top: -40px;
        left: -30px;
    }
    .bannerSection .publisherWrapper{
        bottom: 10px;
        right: -30px;
    }
    .bannerSection .offerAvailable{
        top: unset;
        left: -30px;
        bottom: -50px;
    }

    .platformSection form::after{
        width: 300px;
    }
    .platformSection .rightStar,
    .platformSection .leftStar,
    .platformSection .topStar{
        display: none;
    }
    .ourFoundation .foundationCard {
        padding-top: 140px;
        padding-bottom: 30px;
    }
    .aboutUsPage .aboutUsBanner .imgWrapper::before{
        display: none;
    }
    .blogDescWrapper .blogSubDetImg img{
        width: 150px;
        height: auto;
    }
    .blogDescWrapper .blogImg {
        max-height: 250px;
    }
    .signUpFormSection form {
        padding: 24px;
    }
	.becomeAdvertiserForm form {
        padding: 24px;
    }
    .signUpFormSection form .form-check .form-check-input[type=checkbox] {
        width: 18px;
        height: 18px;
    }
    .thankYouPage .thankYouSection h2{
        font-size: 28px;
    }
    .thankYouPage .thankYouSection .mailBox{
        width: 100px;
    }
    .businessExpansionSection .strategyCard .strategyCardIcon{
        width: 80px;
        height: 80px;
    }
    .businessExpansionSection .strategyCard .strategyCardIcon img{
        width: 50px;
        height: 50px;
    }
    .advertiserPage .buisnessExpansionSection {
        padding: 60px 20px;
    }
    .keyBenefitSection .keyFeatureImageWrapper {
        padding: 54px 34px;
    }
    .keyBenefitSection .semi.top {
        text-align: center;
        bottom: 0;
        border: 0;
        border-radius: 0;
        display: block;
        height: auto;
        background: #e7effe3d;
        padding: 15px 0;
        width: 100%;
    }
    .keyBenefitSection .semi.top .themeBlueColorBtn{
        position: static;
        margin: 0 auto;
        transform: translate(0);
    }
    .keyBenefitSection .customMargin82{
        margin-top: 32px;
    }
    .joinUsDropdown .dropdown-item{
        font-size: 14px;
    }
}




/* lang dropdown css start */
.gt_options{
    position: absolute !important;
    max-width: 260px;
    width: 100%;
    min-width: 260px;
    background: white;
    padding: 20px;
}
.gt_float_switcher .gt_options a{
    font-size: var(--fs14);
}
.gt_float_switcher{
    border-radius: 30px !important;
}
.gt_float_switcher .gt-selected .gt-current-lang span.gt-lang-code{
    font-size: 16px;
    font-family: var(--interMedium);
}
.gt-current-lang img{
    height: 26px !important;
    width: 26px !important;
}
.gt_float_wrapper{
    line-height: 0;
}
.gt_float_switcher .gt-selected .gt-current-lang{
    padding-top: 7px !important;
    padding-bottom: 7px !important;
}
.gt_float_switcher img{
    height: 26px !important;
}

/* Style GTranslate Dropdown Box */
.gt_options {
    border-radius: 12px;  /* Adjust roundness */
    box-shadow: 0 4px 12px rgba(0,0,0,0.15); /* Smooth shadow */
    padding: 10px 0;
    background: #fff; /* Ensure white background */
    border: none; /* Remove default border */
    overflow: hidden; /* Keep rounded shape clean */
}

/* Style each language item */
.gt_options a {
    display: flex;
    align-items: center;
    padding: 8px 15px;
    text-decoration: none;
    color: #333;
    transition: background 0.3s;
    border-radius: 12px; /* Rounded hover effect */
}

/* Hover effect */
.gt_options a:hover {
    background: #f2f2f2;
}

/* Flags inside */
.gt_options img {
    margin-right: 10px;
    width: 20px;
    height: auto;
    border-radius: 4px; /* Optional rounded flags */
}
.dropdown.lang-dropdown {
    margin-top: 5px;
}
/* lang dropdown css end */


.joinUsDropdown .dropdown-menu {
    border-radius: 12px;
    border: 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15); 
}