@import url("/assets/fonts/fonts-styles.css");

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

:root {
    scroll-behavior: smooth;
}

body {
    font-family: "SF-UI-Display-Regular";
    color: #444444;
}

a {
    color: #ffffff;
    text-decoration: none;
}

a:hover {
    color: #444444;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "SF-UI-Display-Bold";
}


/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/

section {
    padding: 60px 0;
    overflow: hidden;
}

.section-header {
    text-align: center;
    padding-bottom: 40px;
}

.section-header h2 {
    letter-spacing: 1px;
    margin: 0;
    color: #000000;
    text-transform: uppercase;
}

.section-header p {
    margin: 10px 0 0 0;
    padding: 0;
    font-size: 26px;
    line-height: 42px;
    font-weight: 700;
    color: #000000;
    font-family: 'SF-UI-Display-Light';
}

p {
    margin: 10px 0 0 0;
    padding: 0;
    font-size: 26px;
    font-family: 'SF-UI-Display-Light';
}

@media (max-width: 768px) {
    .section-header p {
        font-size: 28px;
        line-height: 32px;
    }
}


/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/

.breadcrumbs {
    padding: 15px 0;
    background: #012970;
    min-height: 40px;
    margin-top: 82px;
    color: #fff;
}

@media (max-width: 992px) {
    .breadcrumbs {
        margin-top: 57px;
    }
}

.breadcrumbs h2 {
    font-size: 28px;
    font-weight: 500;
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0 0 10px 0;
    margin: 0;
    font-size: 14px;
}

.breadcrumbs ol a {
    color: #fff;
    transition: 0.3s;
}

.breadcrumbs ol a:hover {
    text-decoration: underline;
}

.breadcrumbs ol li+li {
    padding-left: 10px;
}

.breadcrumbs ol li+li::before {
    display: inline-block;
    padding-right: 10px;
    color: #8894f6;
    content: "/";
}


/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/

.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
    background: #ffb900;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}

.back-to-top i {
    font-size: 24px;
    color: #000;
    line-height: 0;
}

.back-to-top:hover {
    background: #ffb900;
    color: #fff;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}


/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/

@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

.header {
    transition: all 0.5s;
    z-index: 997;
    padding: 20px 0;
}

#header .container-fluid {
    width: 1060px;
}

.header.header-scrolled {
    background: #000000;
    padding: 10px 0;
    box-shadow: 0px 2px 20px rgba(1, 41, 112, 0.1);
}

.header .logo {
    line-height: 0;
}

.header .logo img {
    max-height: 40px;
    margin-right: 6px;
    outline: none;
}

.header .logo span {
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #012970;
    font-family: "Nunito", sans-serif;
    margin-top: 3px;
}

.mobileHeaderPara {
    display: none;
}

.heroImg {
    width: 100%;
}

.heroImg2 {
    width: 100%;
    display: none;
}


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/


/**
* Desktop Navigation
*/

.navbar {
    padding: 0;
    margin: 0;
}

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

.navbar li {
    position: relative;
}

.navbar a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: 'SF-compact-text-semibold';
    font-size: 17px;
    color: #fff;
    white-space: nowrap;
    transition: all 0.3s;
    border-bottom: 3px solid #000;
}
.navbar li ul {
	display: none;
	position: absolute;
	background: #fff;
	padding: 10px 15px;
	border-radius: 10px;
    left: -5px;
    top: 40px;
}
.navbar li:hover ul {
    display: block;
}
.navbar li ul li a {
	display: block;
	color: #000;
	border: 0;
	padding: 5px;
}
.navbar li ul li a:hover {
    color: #f9a61c;
}
.navbar a::before {
    content: "";
    width: 0;
    height: 3px;
    transition: all 0.5s;
    position: absolute;
    bottom: 0;
    background: #fff;
    left: 0;
    opacity: 0;
    /* transform: translateX(-100%); */
}

.navbar a:hover::before {
    width: 100%;
    opacity: 1;
    /* transform: translateX(0); */
}

.navbar li:last-child a:hover::before {
    width: 0;
}

.navbar a:hover,
.navbar .active,
.navbar li:hover>a {
    color: #fff;
    /* border-bottom: 4px solid #fff; */
}

.navbar a i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
}

.navbar .getstarted {
    background: #f9a61c;
    padding: 6px 20px;
    margin-left: 50px;
    border-radius: 25px;
    color: #000;
    border: 1px solid #fff;
    text-transform: uppercase;
    font-size: 14px;
    transition: all 0.2s;
}

.navbar .getstarted:hover {
    color: #000;
    background: #ffb900;
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 4px;
}

.navbar .dropdown ul li {
    min-width: 200px;
}

.navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    font-weight: 600;
}

.navbar .dropdown ul a i {
    font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
    color: #000;
}

.navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
}

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }
    .navbar .dropdown .dropdown:hover>ul {
        left: -100%;
    }
    .navbar a {
        color: #fff !important;
    }
}

@media (max-width: 768px) {
    .navbar a {
        color: #fff !important;
    }
}


/**
* Mobile Navigation
*/

.mobile-nav-toggle {
    color: #ffffff;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
    color: #fff;
}

.navbar-mobile ul {
    display: block !important;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    border-radius: 10px;
    background-color: #000;
    overflow-y: auto;
    transition: 0.3s;
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }
    .navbar ul {
        display: none;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(1, 22, 61, 0.9);
    transition: 0.3s;
}

.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
}



.navbar-mobile a {
    padding: 10px 20px;
    font-size: 15px;
    color: #fff;
    font-family: 'SF-Compact-Text-Semibold';
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
    color: #fff;
}

.navbar-mobile .getstarted {
    margin: 15px;
}

.navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: #000;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
    min-width: 200px;
}

.navbar-mobile .dropdown ul a {
    padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
    font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
    color: #fff;
}

.navbar-mobile .dropdown>.dropdown-active {
    display: block;
}


/*common*/

h2 {
    font-size: 48px;
    font-family: 'SF-compact-text-heavy';
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

.hero {
    width: 100%;
    height: 100vh;
    background: #000;
    background-size: cover;
}

.hero h1 {
    font-size: 60px;
    font-weight: 400;
    color: #fff;
    font-family: 'SF-UI-Display-Black';
    text-transform: uppercase;
    text-align: left;
    text-shadow: 0px 0px 13px rgb(0 0 0 / 30%);
    line-height: 56px;
}

.hero h1 span {
    color: #f9a61c;
}

#hero .img-fluid {
    margin-top: 5%;
    padding-left: 5%;
    max-width: 70%;
    text-align: left;
}

.hero p {
    color: #fff;
    font-size: 18px;
    line-height: 22px;
}

.mobileHeaderPara {
    display: none;
}

.hero .btn-get-started {
    margin-top: 30px;
    line-height: 0;
    padding: 15px 40px;
    border-radius: 4px;
    transition: 0.5s;
    color: #fff;
    background-color: #000;
}

.hero .btn-get-started span {
    font-family: "Nunito", sans-serif;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 1px;
}

.hero .btn-get-started i {
    margin-left: 5px;
    font-size: 18px;
    transition: 0.3s;
}

.hero .btn-get-started:hover i {
    transform: translateX(5px);
}

.headerFix {
    padding: 0 0 0 10%;
}

.hero.heroPublishers {
    position: relative;
}


/* commented by kruti */

.heroNavButtons a,
.heroNavButtons button {
    background: #ffb900;
    border: 0;
    padding: 10px 10px;
    color: #ffffff;
    font-size: 18px;
    transition: 0.4s;
    border-radius: 50px;
    min-width: 200px;
    display: inline-block;
    text-align: center;
    margin: 10px 3px 0;
}

.heroNavButtons a:hover,
.heroNavButtons button:hover {
    background: #ffffff;
    color: #ffb900;
}

.heroNavButtons button:focus {
    border: none;
    outline: none;
}

.hero #bgVideo {
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero.hero-video .container {
    position: relative;
}

.hero .video-overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.75);
}

.hero .lightbox {
    display: none;
    position: absolute;
    top: 16px;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 1002;
    max-width: 60%;
    /* border: 1px solid #fff; */
    overflow: visible;
}

.hero .lightbox-container {
    position: relative;
    display: block;
    height: auto;
    z-index: 1002;
}

.hero .lightbox-container iframe {
    width: 100%;
}

.hero .lightbox-close {
    cursor: pointer;
    color: #040405;
    border: 3px solid #ffb900;
    border-radius: 50px;
    background: #ffffff;
    font-size: 35px;
    /* font-weight: bold; */
    display: inline-block;
    line-height: 0px;
    padding: 13px 3px;
    position: absolute;
    right: -18px;
    top: -18px;
    z-index: 1002;
    opacity: 0.9;
}

.lightbox-close:before {
    content: "×";
}

button.lightbox-close {
    right: -9px;
}

.hero #fade {
    display: none;
    position: fixed;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    background-color: black;
    z-index: 1001;
    -moz-opacity: 0.8;
    opacity: .95;
    filter: alpha(opacity=80);
}


/* commented by kruti */

.publishersHeroImage {
    position: absolute;
    right: 0;
    bottom: 0;
    padding: 0;
    width: 41%;
}

.publisherPage .siteAdvantage p {}

@media (min-width: 1024px) {
    .hero {
        background-attachment: fixed;
    }
}

@media (max-width: 992px) {
    .hero .lightbox {
        max-width: 100%;
    }
    .hero .lightbox-close {
        font-size: 26px;
        padding: 11px 3px;
        right: -10px;
    }
}

@media (max-width: 991px) {
    .hero {
        height: auto;
        padding: 120px 0 60px 0;
    }
    .hero .hero-img {
        text-align: center;
        margin-top: 80px;
    }
    .hero .hero-img img {
        width: 80%;
    }
    .heroNavButtons a,
    .heroNavButtons button {
        font-size: 14px;
        min-width: 160px;
    }
}

@media (max-width: 768px) {
    .hero {
        text-align: center;
    }
    .hero h1 {
        font-size: 32px;
    }
    .hero h2 {
        font-size: 24px;
    }
    .hero .hero-img img {
        width: 100%;
    }
    img.eclips-top-filter,
    img.bottom-top-filter1 {
        width: 100%;
    }
    img.eclips-middle-filter {
        width: 85%;
    }
    img.bottom-middle-filter {
        width: 100%;
    }
    .publisher-trustLogo img {
        width: 110px !important;
    }
    
    .publisher-trustLogo {
        margin: 0 30px 20px 0 !important;
    }
    .xs-margin-30 {
        margin-top: 30px !important;
    }
    .add-spacing h4 {
        padding-bottom: 0 !important;
    }
}


/*--------------------------------------------------------------
# Index Page
--------------------------------------------------------------*/


/*Funnel Design */

.funnelVideo {
    width: 100%;
    height: 100%;
}

.funnel-img {
    text-align: center;
    /* margin: 50px 0px; */
}

.funnel-content {
    border-left: 8px solid #fc4700;
    padding-left: 15px;
    font-size: 18px;
    font-family: 'SF-UI-Display-Regular';
}

.funnel-content-right {
    border-right: 8px solid #fc4700;
    padding-right: 15px;
    text-align: right;
    font-size: 18px;
    font-family: 'SF-UI-Display-Regular';
}

.funnel-img {
    text-align: center;
    /* margin-top: 50px;
    margin-bottom: 50px; */
}

.funnel-desc {
    color: #fc4700;
    font-size: 20px;
    font-family: 'SF-UI-Display-Bold';
}

.funnel-desc-btn {
    color: #ff8400;
    font-size: 30px !important;
    font-family: 'SF-UI-Display-Bold';
}

.funnel-desc-btn-reg {
    text-align: center;
    font-size: 25px !important;
    font-family: 'SF-UI-Display-Regular';
}

.btn-shift {
    padding-top: 100px;
}

.bottom-of-funnel {
    height: 350px;
    ;
}

.funnel-top-filter .eclips-top-filter {
    top: 3%;
    /* position: relative; */
    z-index: 1 !important;
}

.funnel-middle-filter .eclips-top-filter {
    top: 3%;
    /* position: relative; */
    z-index: 1 !important;
}

.funnel-bottom-filter .eclips-top-filter {
    top: 3%;
    /* position: relative; */
    z-index: 1 !important;
}

.funnel-middle-filter .top-filter {
    padding-top: 30%;
}

.funnel-bottom-filter .top-filter {
    padding-top: 15%;
}


/* .bottom-of-funnel {
	margin: 15% auto;
} */

.funnel-top-filter .top-filter {
    padding-top: 30%;
}

.person-intro {
    display: none;
}

img.bottom-middleside-filter {
    padding-top: 129px;
    z-index: 9;
    position: absolute;
    margin: auto;
    left: 0;
    right: 0;
}

img.bottom-bottomside-filter {
    padding-top: 124px;
    z-index: 9;
    position: absolute;
    margin: auto;
    left: 0;
    right: 0;
}


/* .siteplug-intro {
    width: 100vw;
    position: relative;
    margin-left: -50vw;
    margin-top: -60px;
    left: 50%;
    z-index: -1;
    display: none;

} */

.siteplug-intro {
    width: 100vw;
    position: absolute;
    margin-left: -50vw;
    left: 50%;
    z-index: -1;
    display: none;
    /* height: 150px; */
    top: 340px;
}

.funnelGifWrapper {
    margin: 0 auto;
    position: relative;
}

#brands .para1,
#brands .para2,
#brands .para3,
#brands .para4 {
    width: 350px;
    color: #000;
    font-family: 'SF-UI-Display-Light';
    line-height: normal;
}

#brands .para1 span,
#brands .para2 span,
#brands .para3 span,
#brands .para4 span {
    font-family: 'SF-UI-Display-Regular';
}

#brands .para1 {
    position: absolute;
    left: 2%;
    text-align: right;
    top: 21.5%;
}

#brands .para2 {
    position: absolute;
    text-align: left;
    top: 41%;
    right: 6%;
}

#brands .para3 {
    text-align: right;
    position: absolute;
    top: 59%;
    left: 11%;
}

#brands .para4 {
    position: absolute;
    top: 60%;
    text-align: left;
    right: 8.1%;
    z-index: 99;
    padding: 12% 0 0 1%;
}

.funnelGifWrapper img {
    width: 100%;
    position: relative;
}

.plug_funnel {
    width: 340px;
    margin: 0 auto;
    opacity: 0;
    transition: all .2s;
    position: relative;
    left: 2%;
}


/* .blink::after {
	content: "";
	width: 50px;
	height: 66px;
	left: -139px;
	bottom: 118px;
	position: absolute;
	z-index: 98;
	background: url("../../assets/images/leak_icon.png") no-repeat;
	background-size: 100%;
} */

.blink::before {
    content: "";
    width: 27px;
    height: 140px;
    background: url("../../assets/images/leakArrow.png") no-repeat;
    background-size: 100%;
    left: -20%;
    top: 26%;
    animation: blink-animation 2s steps(15, start) infinite;
    -webkit-animation: blink-animation 2s steps(15, start) infinite;
    display: block;
    position: absolute;
    transform: rotate(-43deg);
    z-index: 99;
}

.blink.siteplug_bandage::before {
    width: 0;
}

.blink.siteplug_bandage::after {
    content: "";
    position: absolute;
    z-index: 98;
    background: url("../../assets/images/siteplug_bandage.png") no-repeat;
    width: 55px;
    height: 110px;
    background-size: 100%;
    bottom: 34px;
    left: -135px;
}

@keyframes blink-animation {
    to {
        visibility: hidden;
    }
}

@-webkit-keyframes blink-animation {
    to {
        visibility: hidden;
    }
}

.mobileFunnel {
    display: none;
}

@media screen and (max-width: 760px) {
    .container-img {
        grid-template-columns: 1fr;
        justify-items: center;
    }
    .image:nth-child(2n) {
        justify-self: center;
    }
}


/*--------------------------------------------------------------
# Siteplug advantage start
--------------------------------------------------------------*/

.siteAdvantage {
    background: #fcf5e9;
}

.siteAdvantage-animation {
    display: flex;
    align-content: center;
}

.siteAdvantage-animation-block {
    display: flex;
    flex-basis: 20%;
    flex-direction: column;
    position: relative;
}

.animateContents {
    width: 70%;
    word-wrap: break-word;
}

.animateContents h4 {
    font-family: "SF-UI-Display-regular";
    font-size: 1.5rem;
    text-align: center;
    margin: 30px 0;
    color: #000;
}

.animateCircle-wrapper {
    width: 70%;
    position: relative;
    z-index: -1;
}

.animateCircle {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    background: #faa71d;
    border-radius: 50%;
    position: relative;
    z-index: 100;
}

.animateCircle-wrapper::before,
.animateCircle-wrapper::after {
    content: "";
    width: 110px;
    height: 110px;
    border: 1px solid #000;
    position: absolute;
    border-radius: 50%;
    top: -5px;
}

.animateCircle-wrapper::before {
    left: 10px;
}

.animateCircle-wrapper::after {
    right: 10px;
}

.animateCircle::before {
    width: 60px;
    height: 100vh;
    content: "";
    position: absolute;
    background: url("../images/animate-circle1.jpg") no-repeat;
    background-size: 100%;
    left: 19px;
    top: 18px;
}

.siteAdvantage-animation-block:nth-child(2) .animateCircle::before {
    background: url("../images/animate-circle2.jpg") no-repeat;
    background-size: 100%;
    top: 22px;
    left: 20px;
}

.siteAdvantage-animation-block:nth-child(3) .animateCircle::before {
    background: url("../images/animate-circle3.jpg") no-repeat;
    background-size: 100%;
    top: 16px;
    left: 21px;
}

.siteAdvantage-animation-block:nth-child(4) .animateCircle::before {
    background: url("../images/animate-circle4.jpg") no-repeat;
    background-size: 100%;
    left: 23px;
    top: 11px;
}

.siteAdvantage-animation-block:nth-child(5) .animateCircle::before {
    background: url("../images/animate-circle5.jpg") no-repeat;
    background-size: 100%;
    left: 22px;
    top: 20px;
}

.siteAdvantage-animation-block::before {
    content: "";
    width: 140px;
    height: 262px;
    position: absolute;
    right: -22px;
    top: 0px;
    background: url(../images/animate-thread1.png) no-repeat;
    background-size: 100%;
}

.siteAdvantage-animation-block:nth-child(2) .animateContents {
    margin: 30px 0 0;
}

.siteAdvantage-animation-block:nth-child(2):before,
.siteAdvantage-animation-block:nth-child(4):before {
    right: -40px;
    background: url(../images/animate-thread2.png) no-repeat;
    background-size: 100%;
}

.siteAdvantage-animation-block:nth-child(5):before {
    width: 0;
}


/*--------------------------------------------------------------
# Siteplug advantage end
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/

.brands {
    background: #fff;
    /* background: linear-gradient(43deg, rgba(252,231,195,1) 0%, rgba(255,255,255,1) 100%); */
}

.brands .content {
    padding: 40px;
}

.brands h1 {
    font-family: 'SF-compact-text-heavy';
    color: #000;
}

.brands h3 {
    font-size: 14px;
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
}

.brands h2 {
    font-size: 28px;
    color: #000;
}

.brands p,
.brands ol {
    margin: 15px 0 30px 0;
    font-size: 16px;
    line-height: 34px;
    color: #757575;
    font-family: 'SF-UI-Display-Regular';
}

.brands .btn-read-more {
    line-height: 0;
    padding: 15px 40px;
    border-radius: 4px;
    transition: 0.5s;
    color: #fff;
    background: #4154f1;
    box-shadow: 0px 5px 25px rgba(65, 84, 241, 0.3);
}

.brands .btn-read-more span {
    font-family: "Nunito", sans-serif;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 1px;
}

.brands .btn-read-more i {
    margin-left: 5px;
    font-size: 18px;
    transition: 0.3s;
}

.brands .btn-read-more:hover i {
    transform: translateX(5px);
}

.sitedirect {
    border-top: 1px solid #efefef;
    border-bottom: 1px solid #efefef;
}


/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/

.about .content {
    padding: 40px;
}

.about h1 {
    font-family: 'SF-compact-text-heavy';
    color: #000;
}

.about h3 {
    font-size: 14px;
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
}

.about h2 {
    font-size: 28px;
    color: #000;
}

.about p,
.about ol,
#privacy_terms p,
#privacy_terms ul li, #privacy_terms ol li {
    margin: 15px 0 10px 0;
    font-size: 16px;
    line-height: 22px;
    color: #6e6b6b;
    font-family: 'SF-UI-Display-Light';
    letter-spacing: 1px;
}

.about .btn-read-more {
    line-height: 0;
    padding: 15px 40px;
    border-radius: 4px;
    transition: 0.5s;
    color: #fff;
    background: #4154f1;
    box-shadow: 0px 5px 25px rgba(65, 84, 241, 0.3);
}

.about .btn-read-more span {
    font-family: "Nunito", sans-serif;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 1px;
}

.about .btn-read-more i {
    margin-left: 5px;
    font-size: 18px;
    transition: 0.3s;
}

.about .btn-read-more:hover i {
    transform: translateX(5px);
}

.sitedirect {
    border-top: 1px solid #efefef;
    border-bottom: 1px solid #efefef;
    padding: 50px 0;
}

.mobile-img .carousel {
    width: 431px;
    left: 82px;
    top: 71px;
}

.mobile-img .carousel-item img {
    height: 273px;
}

.mobile-img .carousel-indicators {
    bottom: -100px;
    justify-content: space-between;
}

.mobile-img .carousel-indicators button[data-bs-target] {
    background: none;
    border: 0;
    color: #aeaeae;
    font-size: 18px;
    /* font-weight: bold; */
    transition: all 0.2s;
    border-bottom: 5px solid #fff;
    outline: none;
}

b,
strong {
    -webkit-font-smoothing: antialiased;
}

.mobile-img .carousel-indicators button[data-bs-target]:hover {
    border-bottom: 5px solid #aeaeae;
}

.mobile-img .carousel-indicators button[data-bs-target].active,
.mobile-img .carousel-indicators button[data-bs-target].active:hover {
    border-bottom: 5px solid #000;
    color: #000;
}

.siteDiscover {
    padding-bottom: 0;
}


/*--------------------------------------------------------------
# map
--------------------------------------------------------------*/

section#map {
    background-color: #000;
    /* height: 100vh; */
    display: none;
}

.map .content {
    padding: 40px;
}

.map h3 {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
}

.map h2 {
    color: #fff;
    margin-bottom: 20px;
    text-align: center;
}

.map p {
    margin: 15px 0 30px 0;
    line-height: 22px;
    font-size: 18px;
    color: #fff;
    font-family: 'SF-UI-Display-Regular';
}

.publisher-siteDiscover img {
    width: 90%;
}

.about.publisher-siteContent h2 {
    font-size: 36px;
    font-family: "SF-UI-Display-regular";
}

.about.publisher-siteContent p {
    line-height: 20px;
}

.about.publisher-siteContent p {
    line-height: 32px;
}

@media (min-width: 1024px) {}

@media (max-width: 991px) {
    .map img {
        width: 100% !important;
    }
    section#map {
        height: auto;
    }
}

@media (max-width: 768px) {}


/*--------------------------------------------------------------
# Publisher Trust start
--------------------------------------------------------------*/

.pulisher-trust .text-center {
    width: 70%;
    margin: 0 auto;
    color: #000;
}

.publisher-trustLogos {
    border: 2px solid #f9a61d;
    margin: 50px 0 0;
    border-radius: 10px;
    padding: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.publisher-trustLogo {
    margin: 0 50px 20px 0;
}

@media all and (max-width: 1366px) {
    .hero.heroPublishers {
        height: 100vh;
    }
    .publishersHeroImage {
        width: 45%;
    }
}


/*--------------------------------------------------------------
# Publisher Trust end
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/


/* .stories-slider {
    padding-left: 110px;
    padding-right: 100px;
} */

.stories-slider .swiper-slide {
    width: 100% !important;
}

.stories-slider .swiper-slide {
    background: none !important;
    border: 0 !important;
    margin-top: 0 !important;
    top: -10px;
}

.stories-item {
    /* box-sizing: content-box;
    margin: 20px 10px; */
    min-height: 250px;
    display: flex;
    flex-direction: column;
    text-align: center;
    transition: 0.3s;
}

.stories-title {
    display: flex;
    font-size: 25px;
    margin: auto;
}


/* .stories-title img {
    height: 50px;
    margin: 0 auto;
} */

.stories-title span {
    margin: 0 auto;
    display: block;
    width: 50px;
    height: 50px;
}

.accordion-item button .stories-title {
    background: #fff;
}

.accordion-item button.collapsed .stories-title {
    background: #000;
}

.accordion-item button .stories-title p {
    color: #000;
}

.accordion-item button.collapsed .stories-title p {
    color: #fff;
}

.accordion-item:nth-child(1) button.collapsed .stories-title span {
    background: url("../../assets/images/success_stories/shopping-cart.png") no-repeat;
    background-size: 100%;
}

.accordion-item:nth-child(2) button.collapsed .stories-title span {
    background: url("../../assets/images/success_stories/plane.png") no-repeat;
    background-size: 100%;
}

.accordion-item:nth-child(3) button.collapsed .stories-title span {
    background: url("../../assets/images/success_stories/headset.png") no-repeat;
    background-size: 100%;
}

.accordion-item:nth-child(4) button.collapsed .stories-title span {
    background: url("../../assets/images/success_stories/finance.png") no-repeat;
    background-size: 100%;
}

.accordion-item:nth-child(5) button.collapsed .stories-title span {
    background: url("../../assets/images/success_stories/video.png") no-repeat;
    background-size: 100%;
}

.accordion-item:nth-child(1) button .stories-title span {
    background: url("../../assets/images/success_stories/shopping-cart_black.png") no-repeat;
    background-size: 100%;
}

.accordion-item:nth-child(2) button .stories-title span {
    background: url("../../assets/images/success_stories/plane_black.png") no-repeat;
    background-size: 100%;
}

.accordion-item:nth-child(3) button .stories-title span {
    background: url("../../assets/images/success_stories/headset_black.png") no-repeat;
    background-size: 100%;
}

.accordion-item:nth-child(4) button .stories-title span {
    background: url("../../assets/images/success_stories/finance_black.png") no-repeat;
    background-size: 100%;
}

.accordion-item:nth-child(5) button .stories-title span {
    background: url("../../assets/images/success_stories/video_black.png") no-repeat;
    background-size: 100%;
}

#accordionFlushExample2 .accordion-item:nth-child(1) button.collapsed .stories-title span {
    background: url("../../assets/images/success_stories/food-and-drinks.png") no-repeat;
    background-size: 100%;
}

#accordionFlushExample2 .accordion-item:nth-child(2) button.collapsed .stories-title span {
    background: url("../../assets/images/success_stories/health-fitness.png") no-repeat;
    background-size: 100%;
}

#accordionFlushExample2 .accordion-item:nth-child(3) button.collapsed .stories-title span {
    background: url("../../assets/images/success_stories/technology.png") no-repeat;
    background-size: 100%;
}

#accordionFlushExample2 .accordion-item:nth-child(4) button.collapsed .stories-title span {
    background: url("../../assets/images/success_stories/automobile.png") no-repeat;
    background-size: 100%;
}

#accordionFlushExample2 .accordion-item:nth-child(1) button .stories-title span {
    background: url("../../assets/images/success_stories/food-and-drinks_black.png") no-repeat;
    background-size: 100%;
}

#accordionFlushExample2 .accordion-item:nth-child(2) button .stories-title span {
    background: url("../../assets/images/success_stories/health-fitness_black.png") no-repeat;
    background-size: 100%;
}

#accordionFlushExample2 .accordion-item:nth-child(3) button .stories-title span {
    background: url("../../assets/images/success_stories/technology_black.png") no-repeat;
    background-size: 100%;
}

#accordionFlushExample2 .accordion-item:nth-child(4) button .stories-title span {
    background: url("../../assets/images/success_stories/automobile_black.png") no-repeat;
    background-size: 100%;
}

.cs-content {
    width: 90%;
    display: flex;
    background: #f9a61c;
    border-radius: 40px;
    position: absolute;
    left: 5%;
    z-index: 9999;
}

.stories-item .cs-content {
    display: flex;
    justify-content: space-between;
    width: 90%;
}

.stories-title {
    display: flex;
    font-size: 25px;
    /* margin: auto; */
    width: 200px;
    justify-content: center;
    align-content: center;
    flex-direction: column;
    height: 200px;
    background: #000;
    border-radius: 50%;
    border: 1px solid #fff;
    position: absolute;
    z-index: 100;
    /* padding: 5%; */
}

.success_storyWrapper .carousel-indicators button.active .stories-title {
    background: #fff;
}

.stories-item .cs-content .stories-title p {
    margin: 0;
    align-self: center;
    color: #fff;
    text-transform: capitalize;
    font-size: 26px;
    padding: 0 15px;
    text-align: center;
    line-height: 32px;
}

.success_storyWrapper .carousel-indicators button.active .stories-title p {
    color: #000;
}

.success_storyWrapper .upperRow-inner {
    margin: 20px 0;
}

.success_storyWrapper .upperRow-item {
    display: none;
}

#accordionFlushExample,
#accordionFlushExample2 {
    display: flex;
    justify-content: space-evenly;
    position: relative;
}

#accordionFlushExample2 {
    margin: 30px 0 0;
}

.accordion-item {
    width: 200px;
}

.accordion-item .accordion-button {
    width: 200px;
    height: 200px;
    padding: 0;
    outline: none;
    border-radius: 50%;
    background: none;
}

.accordion-item .accordion-button:focus {
    border: 0;
    box-shadow: none;
}

.accordion-collapse {
    /* width: 900px; */
    text-align: left;
    margin: 20px 0 0;
    opacity: 0;
    height: 0;
    transition: all 200ms ease;
    /* transition: opacity 200ms ease;     */
}

.accordion-collapse.show {
    opacity: 1;
    height: 130px;
    transition: all 400ms ease;
    /* transition: opacity 50ms ease; */
}

.accordion-header {
    margin-bottom: 0 !important;
}

.accordion-collapse .accordion-body {
    padding: 0;
}

#carouselExampleIndicators3 {
    margin: 40px 0 0;
}

.cs-content .stories-title img {
    align-self: center;
    padding: 0;
    margin: 0;
}

.storyDetails {
    display: flex;
    align-content: center;
    padding: 2% 0;
    margin: 10px 0;
    justify-content: space-between;
    position: relative;
    z-index: 90;
    flex-basis: 100%;
}

.storyDetailsBlock:nth-child(2) {
    flex-basis: 38%;
}

.success_storyWrapper .carousel-indicators {
    margin: 0;
    position: relative;
}

.upperRow,
.bottomRow {
    height: 200px;
    display: flex;
    width: 100%;
    justify-content: space-evenly;
}

.upperRow button,
.bottomRow button {
    background: none;
    border: 0;
    width: 200px;
    height: 200px;
    display: flex;
    position: relative;
    outline: none;
}

.upperRow button.active .stories-title,
.bottomRow button.active .stories-title {
    background: #fff;
}

.upperRow button.active .stories-title p {
    color: #000;
}

.accordion-button:not(.collapsed)::after {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    background: #f9a61c;
    bottom: -29px;
    transform: rotate(45deg);
    left: 95px;
    transition: all 600ms 0s ease;
}

.accordion-button.collapsed::after {
    background: none;
    transform: none;
    height: 0;
}

.stories-title p {
    text-transform: uppercase;
    font-weight: 600;
    margin-left: 10px;
    font-size: 16px;
    color: #fff;
    padding: 0 15px;
    font-family: 'SF-UI-Display-Regular';
}

.storyDetailsBlock h1 {
    font-size: 46px;
    margin: 0;
    text-align: left;
    color: #fff;
}

.cs-content .storyDetailsBlock p {
    color: #fff;
    font-size: 20px;
    margin: 0 0 0 20px;
    align-self: center;
}

.storyDetailsBlock {
    position: relative;
    display: flex;
    justify-content: center;
    flex-basis: 33.333%;
}

.testimonial-imgWrapper {
    background: #fff;
    display: flex;
    padding: 10px;
    /* background: #fff; */
    margin: 20px 0 0;
    align-content: center;
    justify-content: center;
    width: 180px;
    height: 180px;
    border-radius: 50%;
}

.storyDetailsBlock::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: #e5e5e5;
    border-radius: 5px;
}

.storyDetailsBlock:last-child::after {
    display: none;
}

.cs-content img {
    padding: 10px;
}

.cs-content p {
    font-size: 15px;
    text-align: left;
    margin: auto 0;
    color: #666666;
    font-family: Roboto;
    overflow-wrap: break-word;
    /* padding: 8px 0px; */
}

.cs-price p {
    font-weight: 700;
    font-size: 15px;
    margin: 11px 0px !important;
    font-family: Roboto;
    margin: 0;
    color: #000;
}

.cs-content:last-child {
    border: none;
}

.stories-item a {
    font-family: 'Helvetica-Bold';
    background-color: #000;
    color: #fff;
    padding: 5px 10px;
    border-radius: 50px;
    font-size: 9pt;
    margin: 10px 0px;
    text-transform: uppercase;
}

.stories-item .swiper-button-prev,
.stories-item .swiper-button-prev.swiper-button-disabled {
    left: 85px !important;
}

.stories-item .swiper-button-next,
.stories-item .swiper-button-next.swiper-button-disabled {
    right: 85px !important;
}

section#testimonials {
    background: #000;
    background-size: cover;
}

.testimonials-slider {
    padding-left: 50px;
    padding-right: 50px;
}

.testimonials .testimonial-item {
    box-sizing: content-box;
    margin: 20px 10px;
    min-height: 250px;
    display: flex;
    flex-direction: row;
    text-align: center;
    transition: 0.3s;
    align-content: center;
    justify-content: space-between;
    width: 90%;
}

.testimonial-item .profile {
    flex-basis: 10%;
}

.testimonials .swiper-slide.swiper-slide-active,
.testimonials .swiper-slide.swiper-slide-next,
.testimonials .swiper-slide.swiper-slide-prev {
    background: none;
    color: #000;
}

.testimonials .testimonial-item .testimonial-img {
    border: 4px solid #fff;
    margin: auto;
}

.testimonials .testimonial-item .profile .testimonial-img {
    border: 0;
    width: 80%;
}

#testimonials .testimonials {
    margin: 50px 0 0;
    padding: 50px 0 0;
    border-top: 1px solid #666;
}

.testimonials h2 {
    color: #ffffff;
    margin: 0 0 40px;
}

.testimonial-item h3 {
    font-size: 14px;
    margin: 10px 0 5px 0;
    color: #666666;
    font-family: Roboto;
    font-weight: 800;
    text-align: left;
}

.testimonial-item h4 {
    font-size: 12px;
    color: #666666;
    margin: 0;
}

.swiper-slide.swiper-slide-active .testimonial-item h3 {
    font-size: 14px;
    margin: 10px 0 5px 0;
    color: #000;
}

.swiper-slide.swiper-slide-active .testimonial-item h4 {
    font-size: 12px;
    color: #666666;
    margin: 0;
}

.success_storyWrapper .carousel-fade .carousel-item {
    background: transparent;
    height: auto;
}

.testimonials .testimonial-item p {
    margin: 0 0 15px;
    font-size: 18px;
    font-family: 'Roboto';
    /* height: 100px; */
    color: #fff;
    text-align: left;
    position: relative;
    flex-basis: 75%;
    /* left: 90px; */
    align-self: center;
}

.testimonials .testimonial-item p::before {
    content: "";
    position: absolute;
    width: 45px;
    height: 40px;
    top: -22px;
    left: -49px;
    background: url(../../assets/images/testimonial_quotes.png) no-repeat;
    background-size: 100%;
}

.swiper-container-rtl,
.swiper-button-prev {
    color: #fff !important;
    opacity: 1;
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
    opacity: 1;
}

.siteplug-patners .swiper-container {
    padding: 0 50px;
}

.swiper-button-prev::after,
.swiper-container-rtl .swiper-button-next::after,
.swiper-button-next::after,
.swiper-container-rtl .swiper-button-prev::after {
    z-index: 99;
}

.siteplug-patners .swiper-button-prev::before {
    content: "";
    position: absolute;
    width: 50px;
    height: 145px;
    background: #fdf2e5;
    z-index: 98;
    top: -42px;
    left: 0;
}

.siteplug-patners .swiper-button-next::before {
    content: "";
    position: absolute;
    width: 50px;
    height: 145px;
    background: #fdf2e5;
    z-index: 98;
    top: -42px;
    right: 0;
}

.siteplug-patners .swiper-button-prev {
    left: 0;
}

.siteplug-patners .swiper-button-next {
    right: 0;
}

.siteplug-patners .swiper-container .swiper-wrapper {
    margin: 0 auto;
    width: 100%;
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
    color: #fff;
    outline: 0;
}

.siteplug-patners .swiper-button-next,
.siteplug-patners .swiper-button-prev {
    color: #000 !important;
}

.testimonials .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #fff;
    opacity: 1;
    border: 1px solid #4154f1;
    border: 1px solid #000;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #4154f1;
}

.testimonials .swiper-slide-next,
.testimonials .swiper-slide-prev {
    opacity: 1;
    background-color: #ffffff;
    color: #000;
    border-radius: 10px;
    /* border: 1px solid #efefef; */
}

.profile.mt-auto {
    display: inline-flex;
    border-top: 1px solid #cdcdcd;
}

img.quotes-testimonial {
    width: 30px;
    margin: 15px 10px;
}

img.quotes-header-front {
    width: 50px;
    margin: 10px 20px 22px 0px;
}

img.quotes-header-back {
    width: 50px;
    margin: 20px 10px 0px 22px;
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}

.landing_form .contact {
    padding: 0;
}

.landing_form h1 {
    color: #000;
    font-size: 26px;
    text-align: center;
    margin: 0 0 10px;
}

.landing_form .top-text {
    font-family: "SF-UI-Display-Regular";
}

.landingFixedHeadline {
    position: absolute;
    top: 60px;
    z-index: 99;
    width: 100%;
    background: #000;
    padding: 20px 0;
}

.landingFixedHeadline span.triangle_bg {
    top: 85px;
}

.landingContact {
    padding: 150px 0 0;
}
/*Nucleus page style start here*/
.bg-nucleus {
    background-size: cover;
    background-position: bottom;
    background: #000 url(../images/nucleus_images/black_bg.png) no-repeat bottom center;
}
.banner-content {
    text-align: center;
    padding: 20px 0 0 0;
}
.banner-content h1 {
	color: #f9a51c;
	font-weight: 800;
	text-align: center;
	font-size: 96px;
	font-family: 'SF-UI-Display-Black';
	position: relative;
	margin-bottom: 0;
	display: inline-block;
	padding: 0 20px;
	border-bottom: 1px solid #f9a51c;
    line-height: 96px;
}
.banner-content h5 {
	text-align: center;
	color: #fff;
	text-transform: uppercase;
	font-family: 'SF-UI-Display-regular';
	font-weight: 400;
	font-size: 1rem;
	padding: 10px 0 0;
}
.light-bg {
  background-color: #fdf3f3;  
  margin: 60px 0;
} 
.publisher-tab {
    display: flex;
    justify-content: space-between;
}
.enquire {
    margin: 50px 0;
    position: relative;
}
.enquire-inside-content {
    position: absolute;
    top: 14%;
    left: 0;
    text-align: center;
    margin: 0 auto;
    right: 0;
    color: #fff;
    width: 100%;
}
.enquire img {
    width: 100%;
}
.content-block h1 {
    font-size: 48px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #f9a51c;
    font-weight: 800;
    font-family: 'SF-UI-Display-Black';
    position: relative;
    padding-right: 20px;
}
.content-block h1:before {
    position: absolute;
    content:"";
    background: url('../images/nucleus_images/verticle_line.png');
    top:-3px;
    left:-35px;
    width:11px;
    background-color: #f9a51c;
    height: 120px;
   
}
h1.smart-widgets:before {
    height:68px;
}
.inside-contentbox {
    margin: 30px 50px;
}
.content-block p {
    font-size: 22px;
    color: #000;
    line-height: 1.2;
}
span.yellow-text {
    color: #f9a51c;
}
.gradient-bg {
background-image: linear-gradient(90deg, #e14f4f 0%, #eba741 100%);
color: #fff;
font-weight: bold;
font-size: 22px;
padding: 5px 15px;
}
.inside-contentbox h6 {
    margin-top: 20px;
    font-weight: bold;
    color: #000;
    font-size: 22px;
}
.inside-contentbox ul li {
    font-size: 22px;
    color: #000;
    font-family: 'SF-UI-Display-Light';
    list-style-type: none;
}
.inside-contentbox ul li::before {
content: "\2022";
color: #f9a51c;
display: inline-block;
width: 1em;
margin-left: -1em;
}
.tab-dt {
    text-align: center;
}
.tab-dt p {
    margin-top: 0;
    color: #000;
    font-size: 18px;
    font-weight: 600;

}
.sub-bold {
    color: #f9a51c;
    font-size: 28px;
    font-family: "SF-UI-Display-Bold";
}
.enquire-inside-content h2 {
    font-size: 43px;
    text-transform: uppercase;

}
.free-trial {
font-size: 62px;
color: #f9a51c;
font-family: "SF-UI-Display-Bold";
}
a.enquire-btn {
    padding: 12px 50px;
    font-size: 25px;
    text-transform: uppercase;
    border-radius: 11px;
    filter: drop-shadow(3.782px 1.302px 13.5px rgba(0,0,0,0.15));
    background-image: linear-gradient(90deg, #e14f4f 0%, #eba741 100%);
    border: 2px solid #f9a51c;
    font-family: 'SF-UI-Display-Black';
    margin-top: 40px;
    display: inline-block;
}
a.enquire-btn:hover {
    color: #fff;
}
.frequent-ques ul.accordion {
    margin-bottom: 0;
    padding-left: 0;
}
.frequent-ques .accordion li {
	position: relative;
	list-style: none;
	margin: 0 0 0px;
    border-bottom: 1px solid #ddd;
}
.frequent-ques .accordion li:last-child {
    border-bottom: none;
}
.frequent-ques a.toggle {
	width: 100%;
	display: block;
	background: #fff;
	color: #333;
	padding: 12px 20px;
	font-size: 18px;
	position: relative;
	transition: all 500ms;
	text-decoration: none;
    font-family: 'SF-UI-Display-Bold';
   
}

.frequent-ques .active-expand .toggle {
	background-image: linear-gradient(90deg, #e14f4f 0%, #eba741 100%);
	color: #fff;
	border: 1px solid #eba741;
}
.frequent-ques a.toggle::after {
	content: "";
	position: absolute;
	width: 20px;
	height: 12px;
	top: 18px;
	background: url('../images/nucleus_images/up-aerrow.png') no-repeat;
	background-size: 100% 100%;
	right: 20px;
	transition: all 0.4s;
}
.frequent-ques .active-expand .toggle::after {
	transform: rotate(0deg);
	background: url('../images/nucleus_images/down_arrow.png') no-repeat;
	background-size: 100% 100%;
}
.frequent-ques .inner {
	display: none;
	padding: 10px;
	border: 1px solid #ccc;
	border-radius: 0 0 2px 2px;
	transition: all 0.2ms;
}
.frequent-ques .expand-box {
	display: block !important;
}
.frequent-ques .accordian-group {
    border: 1px solid #dddd;
    border-radius: 15px;
    overflow: hidden;
}

.cm-pubs {
    padding: 22px;
    font-size: 24px;
    border-radius: 20px;
    display: flex;
    width: 630px;
    margin: -15px auto;
    justify-content: center;
    font-family: sans-serif;
    font-weight: bold;
    line-height: 1.56;
    font-family: 'SF-UI-Display-Bold';
    background: linear-gradient(to right,  #f9dcdc 0%,#fbedd9 100%); 
}
section.enq {
    background: #f9a51c;
}
.enq-section h4 {
    color: #000;
    font-family: 'SF-UI-Display-Regular';
    font-size: 25px;
    margin-bottom: 35px;
}
/* .enq-section a {
    border-radius: 11px;
    filter: drop-shadow(3.782px 1.302px 13.5px rgba(0,0,0,0.15));
    background-color: #000000;
    border: 2px solid #f9a51c;
    width: 352px;
    padding: 10px 22px;
    font-size: 24px;
    text-transform: uppercase;
    color:#f9a51c;
    font-family: 'SF-UI-Display-Black';
   
} */

.error_text {
    text-align: center;
    height: 25px;
    color: rgb(255, 255, 255);
    font-family: 'Roboto', sans-serif;
}
form#frmcontactus {
    text-align: center;
}
form#frmcontactus input {
    margin: 5px;
}
input.sd-input.form-first-name, input.sd-input.form-first-last {
    background-image: url(../images/nucleus_images/name-icon.png) !important;
    background-repeat: no-repeat;
    /* text-indent: 60px; */
    background-size: 22px;
    background-position: 10px center;
}
input.sd-input.form-email {
    background-image: url(../images/nucleus_images/email-icon.png) !important;
    background-repeat: no-repeat;
    /* text-indent: 60px; */
    background-size: 22px;
    background-position: 10px center;
}
input.sd-input.form-company-name {
    background-image: url(../images/nucleus_images/company-icon.png) !important;
    background-repeat: no-repeat;
    /* text-indent: 60px; */
    background-size: 22px;
    background-position: 10px center;
}
.sd-form .sd-input, .sd-form .form-select {
    width: 85%;
    padding: 10px 10px 10px 10px;
    text-indent: 0px;
    border-radius: 0px;
    border: 0;
    font-size: 14px;
    background-color: #ededed;
    /* border: 1px solid #fff; */
    position: relative;
    -webkit-appearance: none;
    -moz-appearance: none;
    border-radius: 0px;
    -webkit-border-radius: 0px;
    font-family: 'Roboto', sans-serif;
    outline: 0;
    resize: none;
}
 form#frmcontactus-nucleus select.gray {
        color: #757575 !important;
        font-family: 'Roboto',sans-serif;
        font-weight: 500;
        text-transform:uppercase;
        margin:5px auto;
         background-image: url(../../assets/images/nucleus_images/down-arrow.svg), url(../../assets/images/nucleus_images/category-icon.png) !important;
        background-repeat: no-repeat;
        /*text-indent: 60px;*/
        background-position: right 0.75rem center, 10px center!important;
        background-size: 16px 12px, 22px!important;
        }
.form-select:focus{
        box-shadow: none;
    }
.sd-form .checkbox-row {
    width: 85%;
    margin: 0 auto;
    text-align: left;
    margin-top: 10px;
}
.sd-form .checkbox-row input {
    position: relative;
    top: -4px;
    width: 80px;
}
.sd-form .checkbox-row label {
    font-size: 12px;
    line-height: 1.3;
    text-align: left;
}
.sd-form .checkbox-row label a {
    color: #ffffff;
    /* font-weight: 600; */
}
.sd-form input#submit-btn {
    background: #000;
    color: #fff;
    padding: 3px 15px;
    border-radius: 4px;
    margin-top: 20px;
}
.row.gx-0.mid-title {
    margin-bottom: 30px;
}
.mid-title h1 {
    color: #000;
    font-size: 50px;
    position: relative;
}
.mid-title h1:after {
    content: "";
    position: absolute;
    top: 65px;
    left: 40%;
    width: 260px;
    height: 3px;
    background-image: linear-gradient(90deg, #e14f4f 0%, #eba741 100%);
}
section.for-publisher, .frequent-ques {
    padding: 40px 0;
}
.outer-two {
    display: flex;
    justify-content: space-around;
    padding-top: 35px;
}
.enquire-inside-content p {
    text-transform: uppercase;
    font-family: 'SF-UI-Display-Bold';
    margin-top: 0;
    margin-bottom: 20px;
}

/*nucleus page style end here*/







@media (max-width: 1199px) {
    .testimonials .swiper-slide-active {
        opacity: 1;
    }
    .testimonials .swiper-pagination {
        margin-top: 0;
    }
}

@media (min-width: 1200px) {
    .testimonials .swiper-slide-next {
        /* opacity: 1; */
        /* transform: scale(1.12); */
    }
}

@media (min-width: 1024px) {

}

@media (max-width: 991px) {
    .navbar {
        margin: 0;
    }
    img.quotes-header-back {
        width: 40px;
    }
    img.quotes-header-front {
        width: 40px;
    }
    .swiper-pagination-bullet {
        position: relative;
        top: 7px;
        width: 16px;
        height: 16px;
        letter-spacing: 12px;
        background: #FFF;
        opacity: 1;
        border: 1px solid #000;
    }
    .stories-slider {
        padding-left: 20px;
        padding-right: 20px;
    }
    .cs-price {
        margin: 5px 0px 5px 25px;
    }
    .cs-content .col-lg-8,
    .cs-content .col-lg-4 {
        padding: 0px 25px;
    }
    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 19px;
    }
    .swiper-button-next,
    .swiper-button-prev {
        border: 2px solid #fff;
        background-color: #000;
        border-radius: 51px;
        width: 40px;
        height: 40px;
    }
    .cs-content p {
        padding: 0px;
    }
}
    /*nucleus page responsive style*/

@media (max-width: 768px) {
    .banner-content h1{
        font-size: 50px;
        line-height: 50px;

    }
    .bg-nucleus {
        padding: 10px 0px;
    }
    .laptop-screen img {
    width: 100%;
    }
    .outer-two {
      flex-direction: column;
    }
    .banner-content {
        padding-left: 10px;
        padding-right: 10px;
    }
    .content-block h1 {
        font-size:25px;
        padding-right: 0;
        text-align: center;
        margin-top: 15px;
    }
    .inside-contentbox {
        margin: 0px 9px;
    }
    .publisher-tab {
    justify-content: space-around;
    flex-wrap: wrap;
    }
    .mid-title h1 {
        font-size: 27px;
    }
    .mid-title h1:after {
    top: 53px;
    left: 25%;
    width: 175px;
    }
    .enquire img {
        height: 200px;
    }
    .enquire-inside-content {
        top: 3%;
    }
    .enquire-inside-content p {
        font-size: 14px;
    }
    .enquire-inside-content h2 {
        font-size:25px;
    }
    .free-trial {
        font-size: 28px;
    }
    a.enquire-btn {
        padding: 8px 25px;
        font-size: 18px;
        margin-top: 15px;
    }
    h1.faqs:after {
        top: 90px;
    }
    .cm-pubs {
        width: 80%;
        font-size: 18px;
    }
    .bg-nucleus {
        background: #000;
    }
   
    .image-block img {
        width: 70%;
    }
    .image-block {
        text-align: center;
    }
    .content-block p {
        font-size: 18px;
    }
    .gradient-bg {
        font-size: 18px;
        text-align: center;
    }
    
    .enq-section a {
        font-size: 18px;
    }
    .inside-contentbox ul li {
        font-size: 18px;
    }
    .or-bg {order: 2;}
    .frequent-ques a.toggle {
        font-size: 16px;
        padding: 12px 45px 12px 20px;
    }

}


/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/

.brands-logo,
.siteplug-patners {
    background-color: #fdf2e5;
}

.mobileBrands {
    display: none;
}

.brandsSwiper {
    padding-top: 20px;
}

#siteplug-brands .container {
    position: relative;
}

.partnerList {
    display: flex;
    justify-content: space-around;
}

.partnerList ul {
    padding: 0;
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.partnerList li {
    display: inline-block;
    flex-basis: 10%;
    text-align: center;
    font-size: 13px;
    color: #7f7f7f;
}

.partnersLogo {
    display: flex;
    justify-content: space-between;
}

.partnersLogo>div {
    display: flex;
    flex-direction: column;
    flex-basis: 10%;
    align-content: center;
    position: relative;
}

.shoppingMobileSliderWrapper,
.travelMobileSliderWrapper,
.telecomMobileSliderWrapper,
.finance_bankingMobileSliderWrapper,
.entertainment_streamingMobileSliderWrapper,
.food_drinkMobileSliderWrapper,
.health_fitnessMobileSliderWrapper,
.technologyMobileSliderWrapper,
.autoMobileSliderWrapper,
.platformMobileSliderWrapper {
    display: none;
}

#siteplug-partners .partnersLogo h5 {
    font-weight: normal;
    font-size: 16px;
}

.siteDiscoverLogos::after,
.siteDirectLogos::after {
    content: "";
    width: 1px;
    height: 100%;
    background: #999;
    top: 0;
    right: -10px;
    position: absolute;
}

.partnersLogo .logo-partners {
    width: 100%;
    margin: 0 0 15px;
    padding: 40px 20px;
    height: 80px;
    box-sizing: border-box;
}

.partnersLogo .logo-partners .img-fluid {
    max-height: 45px;
}

.brands-logo .swiper-slide,
.siteplug-patners .swiper-slide {
    background-color: transparent !important;
}

.clients h2 {
    color: #000000;
    text-align: center;
    margin: 0 0 40px;
}

#siteplug-brands h2 {
    margin: 0 0 30px;
}

.testimonial-clients {
    padding-top: 50px;
}

.swiper-container {
    width: 101%;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
}

.platfom-integrated h3 {
    text-align: center;
    color: #000;
    font-size: 20px;
    font-family: 'SF-UI-Display-Regular';
}

.platform_logos {
    display: flex;
    margin: 30px 0 0;
}

.platform_logos .logo-partners {
    padding: 0 20px;
    height: 80px;
    width: 100%;
    margin: 0 10px 0 0;
}

.platformContent {
    width: 80%;
    margin: 50px auto 0;
    background: #fdf2e5;
    border-radius: 30px;
    padding: 10px;
}

.platform {
    text-align: center;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.platform p {
    font-size: 18px;
    color: #000;
    font-family: 'SF-UI-Display-Regular';
}

.platform::after {
    content: "";
    width: 1px;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    background: #cac2b7;
}

.platform:last-child::after {
    width: 0;
}

.platform img {
    max-height: 100px;
}

.platform_logos .logo-partners .img-fluid {
    max-height: 30px;
}

.swiper-container-multirow-column>.swiper-wrapper {
    flex-direction: inherit;
}

#contact .section-header p {
    color: #000;
    margin: 0 0 20px;
    font-size: 20px;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    height: calc((100% - 30px) / 2);
    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    margin-top: 20px !important;
    /* box-shadow: -2px 8px 7px 2px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: -2px 8px 7px 2px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: -2px 8px 7px 2px rgba(0, 0, 0, 0.3); */
    border-radius: 10px;
}

.clients-slider img {
    /* -webkit-box-shadow: -4px 9px 21px -1px rgb(181 181 181);
    -moz-box-shadow: -4px 9px 21px -1px rgba(181, 181, 181, 1);
    box-shadow: -4px 9px 21px -1px rgb(181 181 181); */
    transition: 0.3s;
    /* box-shadow: 4px 4px 2px 2px rgba(50, 50, 50, 0.75); */
    border-radius: 19px;
    /* padding: 20px; */
}

.platfom-integrated .swiper-slide {
    background-color: transparent;
}

.logo-partners {
    background-color: #fff;
    /* box-shadow: 1px 1px 10px #373737; */
    border-radius: 19px;
    /* border: 1px solid #373737; */
    /* -webkit-box-shadow: -10px 2px 0px 1px rgb(55 55 55 / 13%);
	-moz-box-shadow: -10px 2px 0px 1px rgba(55, 55, 55, 0.13); */
    /* box-shadow: 1px 1px 5px 5px rgb(55 55 55 / 5%); */
    width: 95%;
    margin: 0 0 5px;
    padding: 0 70px;
    height: 130px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
}

.logo-partners .img-fluid {
    max-height: 40px;
    border-radius: 0;
    width: auto;
    align-self: center;
}

.siteplug-patners .logo-partners .img-fluid {
    max-height: 80px;
}

.swiper-container-horizontal>.swiper-pagination-bullets,
.swiper-pagination-custom,
.swiper-pagination-fraction {
    bottom: 10px;
    left: 0;
    width: 100%;
    position: relative;
    /* top: 17px; */
    /* width: 16px; */
    /* height: 16px; */
    letter-spacing: 12px;
    /* background: #FFF; */
    opacity: 1;
    margin: 35px 0 0;
}

#siteplug-partners .partnersLogo>div.siteDiscoverLogos {
    flex-basis: 65%;
}

.columnWrap {
    display: flex;
    margin: 20px 0 0;
}

.columnWrap .sitePubLogos {
    margin: 0 0 10px 0;
}

.columnWrap .sitePubLogos .logo-partners {
    margin: 0 15px 15px 0;
    width: auto;
}

.siteDiscoverLogos .columnWrap .sitePubLogos {
    flex-basis: 15%;
}

.siteDirectLogos .columnWrap .sitePubLogos {
    flex-basis: 100%;
}

#siteplug-partners .partnersLogo>div.siteDirectLogos {
    flex-basis: 20%;
}

#siteplug-partners .partnersLogo>div.siteSuggestLogos {
    flex-basis: 10%;
}

#siteplug-partners .partnersLogo .logo-partners {
    height: 50px;
    padding: 35px 20px;
}

.swiper-pagination-bullet {
    position: relative;
    /* top: -10px; */
    width: 16px;
    height: 16px;
    letter-spacing: 12px;
    background: #FFF;
    opacity: 1;
    /* border: 1px solid #000; */
}

.swiper-pagination-bullet-active {
    width: 16px;
    height: 16px;
    letter-spacing: 12px;
    background: #ffb900 0% 0% no-repeat padding-box;
    ;
    opacity: 1;
}

#brands_globally {
    background: #000;
    padding: 100px 0;
}

#brands_globally h2 {
    color: #f9a71f;
    text-align: center;
    margin: 0 0 100px;
}

#brands_globally h2 span {
    display: block;
    color: #fff;
}

.countryList {
    width: 80%;
    margin: 0 auto;
}

.country {
    text-align: center;
}

.country img {
    width: 80%;
}

.country p {
    color: #fff;
    margin: 40px 0;
    font-size: 18px;
    font-family: 'SF-UI-Display-Regular';
}

@media (max-width: 768px) {
    .clients .swiper-wrapper {}
}


/* clients End*/


/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/

section#contact {
    background: #f8a51c;
}

.contact h2 {
    width: 80%;
    color: #000000;
    text-align: center;
    margin: 0 auto;
}

.contact .php-email-form {
    padding: 30px;
    height: 100%;
}

.contact .php-email-form .error-message {
    display: none;
    color: #fff;
    background: #ed3c0d;
    text-align: left;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600;
}

.contact .php-email-form .sent-message {
    display: none;
    color: #fff;
    background: #18d26e;
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600;
}

.contact .php-email-form .loading {
    display: none;
    background: #fff;
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
}

.contact .php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid #18d26e;
    border-top-color: #eee;
    -webkit-animation: animate-loading 1s linear infinite;
    animation: animate-loading 1s linear infinite;
}

.form-select {
    font-size: 14px;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
    border-radius: 0;
    box-shadow: none;
    font-size: 14px !important;
    border-radius: 0;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
    border-color: #4154f1;
}

option {
    font-family: "arial" !important;
}


/*select option {
    font: -moz-pull-down-menu;
    font-weight: normal;
    display: block;
    white-space: nowrap;
    min-height: 1.2em;
    padding: 0px 2px 1px;
    font-size: 14px;
    font-family: "SF-UI-Display-Regular" !important;
}*/

.contact .php-email-form input,
.contact .php-email-form textarea,
.contact .php-email-form select {
    font-family: inherit;
    padding: 10px 15px;
    /* background-image: url(../images/hero-bg.png); */
    /* -webkit-box-shadow: inset 3px 3px 5px 2px rgb(255 255 255 / 22%);
    -moz-box-shadow: inset 3px 3px 5px 2px rgba(255 255 255/ 22%);
    box-shadow: inset 3px 3px 5px 2px rgb(255 255 255 / 22%); */
    background-color: #fbdeb1;
    /* border: 1px solid #fff; */
    border-radius: 0;
    background-clip: border-box;
}

.form-select,
.form-control {
    color: #000 !important;
    font-size: 14px !important;
}

.contact .php-email-form textarea {
    padding: 12px 15px;
}

#submit_btn {
    margin: 20px 0 0;
}

.contact .php-email-form input[type="submit"] {
    background: #000000;
    border: 0;
    padding: 14px 30px;
    color: #fff;
    font-size: 20px;
    transition: 0.4s;
    border-radius: 50px;
}

.contact .php-email-form input[type="submit"]:hover {
    background: #383838;
}

.contact ::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #000000;
    opacity: 1;
    /* Firefox */
}

.contact :-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #000000;
}

.contact ::-ms-input-placeholder {
    /* Microsoft Edge */
    color: #000000;
}

.contact p {
    color: #fff;
    font-family: 'SF-UI-Display-Regular';
}

.contact .php-email-form .checkbox-row input {
    margin: 4px;
}

.contact .php-email-form .checkbox-row label {
    font-size: 14px;
    text-align: left;
}

.contact .php-email-form .checkbox-row label a {
    color: #ffffff;
    /* font-weight: 600; */
}

.contact .php-email-form .btns[disabled] {
    cursor: not-allowed;
    opacity: 0.2;
}


/* pop up style on submitting of contact form */

.popup {
    height: 100vh;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all .3s;
}

.popup__content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    background-color: #fff;
    box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.2);
    border-radius: 3px;
    display: table;
    overflow: hidden;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.25);
    transition: all .5s .2s;
    padding: 100px;
}

.popup__content p {
    font-size: 58px;
    text-align: center;
}

.succussIcon {
    width: 210px;
    height: 210px;
    border: 7px solid #37C784;
    text-align: center;
    border-radius: 50%;
    color: #37C784;
    font-size: 128px;
    padding: 10px 0 0;
    margin: 50px auto 100px;
}


/* .popup:target {
      opacity: 1;
      visibility: visible; }
    .popup:target .popup__content {
      opacity: 1;
      transform: translate(-50%, -50%) scale(1); } */

.popup__close:link,
.popup__close:visited {
    color: #777;
    position: absolute;
    top: 50px;
    right: 50px;
    font-size: 58px;
    text-decoration: none;
    display: inline-block;
    transition: all .2s;
    line-height: 1;
}

.popup__close:hover {
    color: #ffb900;
}

@media (max-width: 768px) {
    .contact .php-email-form {
        padding: 0px;
    }
}

@-webkit-keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

.footer {
    background: #343434;
    font-size: 14px;
}

.footer .footer-newsletter {}

.footer .footer-newsletter h4 {
    font-size: 24px;
    margin: 0 0 10px 0;
    padding: 0;
    line-height: 1;
    font-weight: 700;
    color: #012970;
}

.footer .footer-newsletter form {
    padding: 6px 10px;
    position: relative;
    border-radius: 4px;
}

.footer .footer-newsletter form input[type="email"] {
    border: 0;
    padding: 8px;
    width: calc(100% - 140px);
}

.footer .footer-newsletter form input[type="submit"] {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    border: 0;
    background: none;
    font-size: 16px;
    padding: 0 30px;
    margin: 3px;
    background: #fda900;
    color: #000;
    transition: 0.3s;
    border-radius: 50px;
}

.footer .footer-newsletter form input[type="submit"]:hover {}

.footer .footer-top {
    background-color: #000000;
    background-size: contain;
    border-top: 1px solid #e1ecff;
    /* border-bottom: 1px solid #e1ecff; */
    padding: 60px 0 30px 0;
}

.affinity_site {
    align-self: center;
    padding: 20px 0;
}

.affinity_site img {
    /* max-height: 50px; */
    max-width: 85px;
}

.adOpsOne img {
    max-width: 110px;
}

.footer .footer-top .explore_affinity h4 {
    text-transform: inherit;
    font-family: 'SF-UI-Display-Regular';
    padding: 0 10px;
}

@media (max-width: 992px) {
    .footer .footer-top {
        background-position: center bottom;
    }
}

.footer .footer-top .footer-info {
    margin-bottom: 30px;
}

.footer .footer-top .footer-info .logo {
    line-height: 0;
    margin-bottom: 15px;
}

.footer .footer-top .footer-info .logo img {
    max-height: 40px;
    margin-right: 6px;
}

.footer .footer-top .footer-info .logo span {
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #ffffff;
    font-family: "Nunito", sans-serif;
    margin-top: 3px;
}

.footer .footer-top .footer-info p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
    font-family: "Nunito", sans-serif;
}

.footer .footer-top .social-links a {
    font-size: 20px;
    display: inline-block;
    color: rgba(1, 41, 112, 0.5);
    line-height: 0;
    margin-right: 10px;
    transition: 0.3s;
}

.footer .footer-top .social-links a:hover {
    color: #ffffff;
}

.footer .footer-top h4 {
    font-size: 16px;
    font-weight: bold;
    color: #ffffff;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 12px;
}

.footer .footer-top .footer-links {
    margin-bottom: 30px;
}

.footer .footer-top .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer .footer-top .footer-links ul i {
    padding-right: 2px;
    color: #d0d4fc;
    font-size: 12px;
    line-height: 0;
}

.footer .footer-top .footer-links ul li {
    padding: 10px 0 !important;
    display: flex;
    align-items: center;
    transition: all 0.2s;
}

.footer .footer-top .footer-links ul li:hover {
    padding-left: 5px !important;
}

.footer .footer-top .footer-links ul li:first-child {
    padding-top: 0;
}

.footer .footer-top .footer-links ul a {
    color: #ffffff;
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
    font-size: 18px;
}

.social-links img {
    width: 35px;
    text-align: center;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-content: center;
}

.footer-contact {
    color: #fff;
    margin: 10px 0 0;
}

.footer-sub {
    margin-top: 0;
}

.footer .footer-top .footer-links ul a:hover {
    color: #ffffff;
}

.footer .footer-top .footer-contact p {
    line-height: 26px;
}

.footer .copyright {
    text-align: center;
    color: #ffffff;
    align-self: center;
    font-family: 'SF-UI-Display-Light';
    font-size: 12px;
}

.footer .copyright a {
    text-align: center;
    color: #ffffff;
}

.social-links span {
    color: #fff;
    display: inline-block;
    margin: 0 10px 0 0;
}

.social-links {
    padding: 20px 0;
}


/*Video*/

ul.rich-media-links {
    padding-left: 0;
}

.rich-media-active,
.display-active,
.outstream-active {
    border-left: 4px solid #ef3e23;
}

.rich-media-active b {
    font-weight: 900 !important;
    color: #000 !important;
}

.rich-media-txt {
    text-align: left;
}

.rich-arrow-lft,
.rich-arrow-rgt {
    display: none;
}

.outstream-links li,
.rich-media-links li,
.display-links li {
    font-size: 20px;
    margin-right: 10px;
    padding: 0 2px;
    cursor: pointer;
    position: relative;
    list-style: none;
    font-weight: 500;
    font-family: Roboto;
    padding: 3px 25px !important;
}

.slider h2,
.how h2,
.section2-video b,
.section2-rich b,
.section2-display b,
.outstream-video .title,
.rich-media .title,
.display .title,
.outstream-links li,
.rich-media-links li,
.display-links li,
.pricing .title,
.pricing-txt,
.form .title,
.form h3,
.form h4,
.form-input,
.form-subscribe,
.share,
.thank,
.thank-sub {
    color: #838383;
}

.outstream-links b,
.rich-media-links b,
.display-links b {
    font-weight: normal;
}

@media (max-height: 460px) {
    .outstream-video .mobile-img,
    .rich-media .mobile-img,
    .display .mobile-img {
        width: 40%;
    }
}

@media (max-height: 500px) {
    .outstream-video .mobile-img,
    .rich-media .mobile-img,
    .display .mobile-img {
        width: 42%;
    }
}

@media (max-height: 568px) {
    .outstream-video .mobile-img,
    .rich-media .mobile-img,
    .display .mobile-img {
        width: 45%;
    }
}

@media (max-height: 750px) {
    .outstream-video .mobile-img,
    .rich-media .mobile-img,
    .display .mobile-img {
        width: 25%;
    }
}

.mobile-img {
    width: 100%;
    background-size: 100%;
    float: left;
    position: relative;
    display: inline-block;
    /* margin: 10px; */
    margin: auto;
}


/* .mobile-img {
    background-size: 100%;
    width: 580px;
    background-repeat: no-repeat;
    top: -10px;
} */


/* comment by kruti */

.mobile-img {
    background-size: 100%;
    width: 580px;
    background-repeat: no-repeat;
    top: -10px;
    height: 400px;
}

.site-offers-img.mobile-img {
    width: 700px;
    height: 480px;
    transition: transform 1s;
}

.site-offers-img.mobile-img:hover {
    transform: scale(1.1);
}


/* .site-offers-img .mobile-img-container img:hover{
    transform: scale(1.2);
    transition: 0.3s ease-in-out;
} */

.site-offers-img .mobile-img-container {
    width: 518px;
    top: 87px;
    left: 100px;
    height: 327px;
}

.siteDiscover .mobile-img-container-tabs {
    margin-left: 30%;
}


/* comment by kruti */

.mobile-img {
    background-image: url('../images/Laptop.png')
}

#about .section-header {
    margin: 0 0 30px;
}

#about.siteDiscover .section-header {
    margin: 0 0 40px;
    padding: 0 0 10px;
}

.siteDiscover h3,
.siteDirect h3,
.siteSuggest h3 {
    font-size: 16px;
    /* text-align: center; */
    margin: 10px 0 20px;
    /* padding: 0 20px; */
    font-weight: normal;
    font-family: 'SF-UI-Display-Regular';
    text-transform: inherit;
}

.mobile-img-container {
    width: 430px;
    position: relative;
    top: 74px;
    left: 82px;
    height: 280px;
    overflow: hidden;
}

.mobile-img-container img {
    width: 100%;
}

.mobile-img-container-tabs {
    position: relative;
    top: 50px;
    color: #aeaeae;
    width: 100%;
}

.mobile-img-container-tabs ul {
    display: flex;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
    /*comment bu kruti*/
}

.mobile-img-container-tabs ul li {
    flex-basis: 100%;
    list-style-type: none;
    padding: 0 20px;
    /* height: 110px; */
    height: auto;
    cursor: pointer;
    position: relative;
}

.coupons-links {
    /*margin: 0 0 0 -45px;*/
}

.content-links {
    /*margin: 0 0 0 -60px;*/
}

.content-links .activeMIC-tabs,
.coupons-links .activeMIC-tabs {
    font-weight: bold;
}


/* .mobile-img-container-tabs ul li:nth-child(1) {
    text-align: right;
} */

.mobile-img-container-tabs ul li>div {
    display: flex;
    flex-direction: column;
    /* position: absolute; */
    position: relative;
    /* top: 35px; */
    top: 0;
    margin-bottom: 0px;
    padding-left: 20px;
    /* display: none; */
    /*comment bu kruti*/
}

.activeMIC-tabs,
.about p.activeMIC-tabs {
    color: #ffb900;
    font-weight: normal;
}


/* comment by kruti */

.mobile-img-container-tabs ul li>div p {
    padding: 10px 0px;
    text-align: left;
    margin: 0px 0;
    color: #000000;
    position: relative;
}

.mobile-img-container-tabs ul li>div p:before,
.mobile-img-container-tabs ul li.activeMIC-tabs>div p:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40%;
    height: 1px;
    background-color: #cdcdcd;
}

.mobile-img-container-tabs ul li .activeMIC-tabs:before {
    height: 1px;
}

.mobile-img-container-tabs ul li>div p:last-child:before,
.mobile-img-container-tabs ul li.activeMIC-tabs>div p:last-child:before {
    display: none;
}

.mobile-img-container-tabs ul li.activeMIC-tabs>div {
    display: flex;
    flex-direction: column;
}


/* .mobile-img-container-tabs ul li.activeMIC-tabs>div p {
    padding: 0 0px;
    text-align: left;
    margin: 10px 0 0;
} */

.mobile-img-container-tabs ul li span {
    /* background: #fff;
    border: 1px solid #ccc; */
    /* width: 100px; */
    width: auto;
    display: inline-block;
    text-align: center;
    /* padding: 3px 0; */
    /* border-radius: 5px; */
    color: #000000;
    font-weight: 500;
    font-size: 20px;
    transition: all .25s ease-out;
}

.mobile-img-container-tabs ul li span:hover,
.mobile-img-container-tabs ul li.activeMIC-tabs span,
.mobile-img-container-tabs ul li.activeMIC-tabs span:hover .activeMIC-tabs::after {
    /* background: #ffb900;
    border: 1px solid #ffb900; */
    color: #ffb900;
    background: transparent;
}

.mobile-img-container-tabs ul li.activeMIC-tabs:after {
    display: none;
}

.mobile-img-container-tabs ul li p.activeMIC-tabs:after {
    content: "";
    left: 0;
    position: absolute;
    left: -20px;
    top: 14px;
    display: inline-block;
    border-style: solid;
    border-width: 0 0 10px 10px;
    height: 0;
    width: 0;
    border-color: transparent;
    border-bottom-color: #ffb900;
    -moz-transform: rotate(315deg);
    -ms-transform: rotate(315deg);
    -webkit-transform: rotate(315deg);
    transform: rotate(315deg);
    /* display: none; */
}

.activeMIC-tabs::after {
    content: "▾";
    position: absolute;
    font-size: 26px;
    top: 0px;
    left: 0;
    margin: 0 0 0 0px;
    color: #ffb900;
}

.offers-img img {
    display: none;
}

.offers-img img.activeMIC-tabs {
    display: block;
}


/* comment by kruti */


/* @-moz-document url-prefix() {
    .mobile-img-container-tabs ul li:nth-child(2)::after {
        margin: 0 0 0 40px;
    }
} */


/* comment by kruti */

.mobile-img-container-tabs ul li:nth-child(3)::after {
    content: "";
}

.activeMIC-tabs .activeMIC-tabs::before,
.activeMIC-tabs .activeMIC-tabs::after {
    content: "";
    height: 0;
}

.mobile-dev-img {
    background-size: 100% 100%;
    width: 419px;
    background-repeat: no-repeat;
    background-image: url('../images/Mobile.png');
    position: relative;
    top: 20px;
    overflow: hidden;
}


/* comment by kruti */

.mobile-desk-img {
    background-size: 100%;
    width: 550px;
    background-repeat: no-repeat;
    background-image: url('../images/Desktop-new.png');
    margin: 20px 0 0;
	position: relative;
}

.mob-videoplayer {
    position: absolute;
    top: 91px;
    left: 38px;
    width: 69%;
    height: 120%;
    right: 0;
    z-index: -1;
    margin: auto;
}

.desk-videoplayer {
	position: absolute;
	top: 61px;
	left: -66px;
	right: 0;
	width: 410px;
	height: 52%;
	z-index: -1;
	margin: auto;
}

.videoplayer {
    position: absolute;
    top: 36px;
    left: 0;
    right: 0;
    width: 76%;
    height: 76%;
    z-index: -1;
    margin: auto;
}

.mobile-dev-img-pad {
    height: 0;
    display: block;
    padding-top: 100%;
}

.mobile-desk-img-pad {
    height: 0;
    display: block;
    padding-top: 79%;
}

.mobile-img-pad {
    height: 0;
    display: block;
    padding-top: 10%;
    /* comment by kruti */
}

.siteSuggest {
    padding: 0 0 60px;
}

#privacy_terms .title {
    text-align: center;
    font-weight: normal;
    font-size: 35px;
    font-family: "SF-UI-Display-Regular";
    margin: 0 0 20px;
}

#privacy_terms p {
    margin: 10px 0 0;
    line-height: normal;
    letter-spacing: 0px;
}

#privacy_terms h2 {
    margin: 25px 0 0;
    font-size: 22px;
    font-weight: normal;
}

#privacy_terms h3 {
    font-size: 16px;
}

#privacy_terms h3.privacy_policy_h2Fix {
    margin: 15px 0;
}

#privacy_terms ul li, #privacy_terms ol li {
    margin: 5px 0;
    line-height: normal;
    letter-spacing: 0;
}

#privacy_terms ul li b {
    font-weight: normal;
    text-decoration: underline;
}

#privacy_terms i {
    display: block;
    font-weight: normal;
    font-family: 'SF-UI-Display-Light';
    color: #6e6b6b;
}

#privacy_terms a {
    color: #ffb900;
}
/*Holiday and service agreement*/
#privacy_terms table {
    border-collapse: collapse;
    border-spacing: 0;
    width: 80%;
    border: 1px solid #ddd;
    margin: 15px 0;
  }
  
  #privacy_terms table th, #privacy_terms table td {
    text-align: left;
    padding: 8px;
    border: 1px solid #ddd;
  }
  #privacy_terms .square {
    list-style-type: square;
}
#privacy_terms p strong, #privacy_terms li strong{
    font-size: 16px;
    color: #444444;
    font-family: "SF-UI-Display-Bold";
}
#privacy_terms table th{
    font-family: "SF-UI-Display-Bold";
}
#holidays h1 {
    font-size: 4.55rem;
    font-family: "SF-UI-Display-Bold";
    color: #161616;
    text-transform: uppercase;
}
.ptop80 {
    padding-top: 80px;
}
.holiday-table {
    padding: 10px;
    background: #fff;
}
.holiday-table table {
    margin: 0;
}
.holiday-table .table th {
    background: #000000;
    color: #fff;
    border-right: 2px solid #fff;
    font-size: 25px;
}
.holiday-table .table td, .holiday-table .table th {
    border-top: 2px solid #fff;
    padding: 1rem;
    text-align: center;
}
.holiday-table .table tbody td {
    background: #f7f4ed;
    border-right: 2px solid #fff;
    text-align: center;
    font-weight: normal;
    font-size: 16px;
    font-family: 'SF-UI-Display-Light';
}
.holiday .table td, .holiday-table .table th {
    border-top: 2px solid #fff;
    padding: 1rem;
    text-align: center;
}
.holiday-message {
    margin-bottom: 100px;
}
.holiday-message b {
    color: #7f7f7f;
    line-height: 150%;
    font-size: 0.98rem;
    font-family: 'SF-UI-Display-Light';
    font-weight: normal;
}
.holiday_layout_mob{
    display: none;
    visibility: hidden;
}
/*End of Holiday and service agreement*/

.bgColorBlack {
    background: #000;
}

.thank_you_img img,
.not-found_img img {
    width: 100%;
}

.verticalFullpageCenterAlign {
    display: flex;
    justify-content: center;
    align-content: center;
    flex-direction: column;
    margin: 110px 0 0;
    overflow: hidden;
}

.thank_you_contents {
    align-self: flex-end;
    color: #fff;
    padding: 0 0 8% 5%;
}

.not-found_contents {
    padding: 0 0 0 8%;
    align-self: center;
    color: #fff;
}

.thank_you_contents h1 {
    color: #f9a71f;
    font-size: 52px;
    margin: 0;
}

.not-found_contents h1 {
    color: #fff;
}

.not-found_contents span {
    color: #f9a71f;
    display: block;
}

.thank_you_contents h2 {
    font-weight: normal;
    font-family: 'SF-UI-Display-Light';
    font-size: 24px;
    margin: 0;
}

.thank_you_contents p,
.not-found_contents p {
    font-size: 16px;
    margin: 5px 0 0;
}

.not-found_contents a {
    display: inline-block;
    margin: 50px 0 0;
    background: #f9a71f;
    padding: 6px 15px;
    font-size: 18px;
    color: #000;
    font-family: "SF-UI-Display-Bold";
    border-radius: 10px;
    transition: all 200ms 0s ease;
}

.not-found_contents a:hover {
    background: #ffb900;
}

@media all and (max-width: 1367px) {
    .stories-item .cs-content {
        width: 80%;
    }
    .storyDetailsBlock::after {
        right: -25px;
    }
    .stories-item .cs-content .stories-title p {
        font-size: 16px;
    }
    .cs-content {
        width: 100%;
        left: 0;
    }
    .storyDetails {
        padding: 3% 0;
    }
    .storyDetailsBlock::after {
        right: 0;
    }
    #brands .para1 {
        left: -2%;
        top: 20%;
    }
    #brands .para2 {
        right: 1%;
        top: 38%;
    }
    #brands .para3 {
        left: 7%;
        top: 55%;
    }
    #brands .para4 {
        right: 2.5%;
        top: 58%;
        padding: 12% 0 0;
    }
    .blink::before {
        left: -20%;
        top: 46px;
        width: 24px;
    }
    /* .blink::after {
        left: -137px;
    } */
    .blink.siteplug_bandage::after {
        width: 50px;
        height: 94px;
        bottom: 45px;
        left: -132px;
    }
}


/* comment by kruti */

@media all and (max-width: 1200px) {
    .mobile-img-container {
        width: 327px;
        position: relative;
        top: 54px;
        left: 62px;
        height: 208px;
        overflow: hidden;
    }
}

@media all and (max-width: 1100px) {
    #brands {
        padding: 0;
    }
    .mobile-img {
        width: 440px;
        top: -40px;
        height: 300px;
    }
    .mobile-img .carousel {
        width: 327px;
        left: 62px;
        top: 54px;
    }
    .mobile-img .carousel-item img {
        height: 213px;
    }
    .siteDiscover .content {
        padding: 40px 0 0 40px;
    }
    .mobile-desk-img {
        width: 480px;
    }
    .desk-videoplayer {
        width: 350px;
        left: -46px;
        top: 141px;
    }
    #siteplug-brands h2,
    #about.siteDiscover .section-header,
    .testimonials h2,
    .clients h2,
    .contact h2,
    #brands_globally h2 {
        font-size: 36px;
    }
    .partnersLogo .logo-partners {
        padding: 20px 15px;
        height: 75px;
    }
    .partnersLogo .logo-partners .img-fluid {
        max-height: 50px;
    }
    .accordion-item .accordion-button,
    .stories-title {
        width: 150px;
        height: 150px;
    }
    .accordion-item button .stories-title p {
        padding: 0 10px;
        font-size: 14px;
    }
    .storyDetailsBlock h1 {
        font-size: 32px;
    }
    .cs-content .storyDetailsBlock p {
        font-size: 18px;
        margin: 0 0 0 10px;
    }
    .storyDetailsBlock {
        padding: 0 20px;
        align-items: center;
    }
    .accordion-button:not(.collapsed)::after {
        left: 70px;
    }
    .testimonial-imgWrapper {
        width: 150px;
        height: 150px;
    }
    .testimonials .testimonial-item p {
        flex-basis: 65%;
    }
    .testimonials .testimonial-item .profile .testimonial-img {
        height: auto;
    }
    .headerFix {
        padding: 0 0 0 0%;
    }
    .siteplug-patners .logo-partners {
        height: 100px;
        padding: 0 40px;
    }
    .siteplug-patners .logo-partners .img-fluid {
        max-height: 60px;
    }
    #brands .para1 {
        left: -8%;
        top: 24%;
    }
    #brands .para2 {
        right: -4%;
        top: 40%;
    }
    #brands .para3 {
        left: 1%;
        top: 55%;
    }
    #brands .para4 {
        right: -1%;
        top: 56%;
    }
    .desktopFunnel {
        margin: 70px 0 0;
    }
    .blink::before {
        left: -8%;
        top: 56px;
        width: 16px;
    }
    .not-found_wrapper {
        background: url(../../assets/images/404.jpg) no-repeat bottom right fixed;
        background-size: 60% auto;
    }
    .blink.siteplug_bandage::after {
        width: 40px;
        height: 75px;
        bottom: 19px;
        left: -89px;
    }
    .plug_funnel {
        left: 2.5%;
    }
}

@media all and (max-width: 992px) {
    .mobile-img-container-tabs {
        padding-left: 0;
    }
    .siteDiscover .mobile-img-container-tabs {
        top: 20px;
        margin-left: 0;
    }
    .mobile-img-container-tabs ul {
        justify-content: space-around;
    }
    .mobile-img-container-tabs ul li {
        flex: 1;
        padding: 0 10px;
    }
    .navbar-mobile li ul {
        position: static;
        display: block;
        background: #000;
        padding: 0 0 0 40px;
    }
    .navbar-mobile li ul li {
        list-style: disc;
        color: #fff;
    }
    .navbar-mobile li a:hover::before {
        width: 0;
    }
}

@media all and (max-width: 960px) {
    #header .container-fluid {
        width: 100%;
        padding: 0 20px 0 20px;
    }
    #hero .container {
        max-width: 90%;
    }
    .hero h1 {
        font-size: 42px;
        line-height: 42px;
    }
    .hero p {
        font-size: 16px;
        line-height: 20px;
    }
    #siteplug-brands .partnersLogo {
        flex-direction: column;
    }
    #siteplug-brands .partnersLogo>div {
        flex-direction: row;
        margin: 50px 0 0;
    }
    #siteplug-brands .partnersLogo .logo-partners {
        margin: 0 15px 15px 0;
    }
    #siteplug-brands .partnerList {
        display: none;
    }
    #siteplug-brands .partnersLogo>div::before {
        position: absolute;
        top: -30px;
        left: 0;
        font-size: 13px;
        color: #7f7f7f;
        width: 100%;
    }
    .shoppingLogos::before {
        content: "Shopping";
    }
    .travelLogos::before {
        content: "Travel";
    }
    .telecomLogos::before {
        content: "Telecom";
    }
    .finance_bankingLogos::before {
        content: "Finance";
    }
    .entertainment_streamingLogos::before {
        content: "Entertainment";
    }
    .food_drinkLogos::before {
        content: "Food & Beverage";
    }
    .health_fitnessLogos::before {
        content: "Health & Fitness";
    }
    .technologyLogos::before {
        content: "Technology";
    }
    .autoLogos::before {
        content: "Automobile";
    }
    #accordionFlushExample,
    #accordionFlushExample2 {
        flex-direction: column;
        margin: 0;
    }
    .accordion-item {
        width: 100%;
        margin: 0 0 20px;
    }
    .accordion-item .accordion-button,
    .stories-title {
        width: 100%;
        height: 45px;
        border-radius: 3px;
    }
    .accordion-item button .stories-title {
        padding: 0 10px;
        justify-content: flex-start;
        flex-direction: row;
        align-content: flex-start;
        margin: 0;
    }
    .stories-title span {
        margin: 6px 0 0 0;
        width: 32px;
        height: 32px;
    }
    .accordion-item button .stories-title p {
        margin: 14px 0 0 10px;
    }
    .cs-content {
        width: 100%;
    }
    .storyDetails {
        flex-direction: column;
        justify-content: flex-start;
        align-content: flex-start;
        text-align: left;
        padding: 1% 0;
    }
    .storyDetailsBlock {
        justify-content: flex-start;
    }
    .storyDetailsBlock::after {
        width: 0;
    }
    .accordion-collapse.show {
        height: 150px;
    }
    .testimonial-imgWrapper {
        width: 130px;
        height: 130px;
    }
    .testimonials .testimonial-item p {
        font-size: 14px;
    }
    .testimonial-item .profile {
        margin: 5% 0 0;
    }
    .accordion-button.collapsed .stories-title::after {
        background: url("../../assets/images/downArrow.jpg") no-repeat;
        background-size: 100%;
        transform: rotate(0deg);
    }
    .accordion-button .stories-title::after {
        content: "";
        position: absolute;
        width: 14px;
        height: 12px;
        right: 15px;
        top: 16px;
        background: url("../../assets/images/downArrow.jpg") no-repeat;
        background-size: 100%;
        transform: rotate(180deg);
        transition: all 500ms;
    }
    .siteplug-patners .swiper-button-next::before,
    .siteplug-patners .swiper-button-prev::before {
        width: 45px;
        height: 130px;
        right: -3px;
    }
    .siteplug-patners .swiper-button-prev::before {
        left: -3px;
    }
    .platform_logos {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .platform_logos .logo-partners {
        flex-basis: 48%;
        height: 100px;
        margin: 0 0 20px;
    }
    .platform_logos .logo-partners .img-fluid {
        max-height: 40px;
    }
    .platform::after {
        content: "";
        width: 100%;
        height: 1px;
        position: absolute;
        top: auto;
        right: 0;
        background: #cac2b7;
        bottom: 0;
    }
    .platformContent {
        width: 70%;
    }
    .footer .footer-top .explore_affinity h4 {
        padding: 0;
    }
    .desk-videoplayer.video20 {
        top: 70px;
    }
    .funnelGifWrapper .mobileFunnel {
        display: block;
        margin: 10% auto 0;
    }
    .desktopFunnel,
    .desktopFunnel .para1,
    .desktopFunnel .para2,
    .desktopFunnel .para3,
    .desktopFunnel .para4 {
        display: none;
    }
    .funneldesc {
        width: 350px;
        margin: 0 auto;
        position: relative;
        left: 3%;
        opacity: 0;
        transition: all .2s;
    }
    .blink.siteplug_bandage_mobile::before {
        width: 0;
    }
    .siteplug_bandage_mobile::after {
        content: "";
        position: absolute;
        z-index: 98;
        background: url("../../assets/images/siteplug_bandage.png") no-repeat;
        width: 68px;
        height: 130px;
        background-size: 100%;
        bottom: -135px;
        right: -4%;
    }
    .mobileFunnel .funnelWrapper>div {
        position: relative;
    }
    #brands .mobileFunnel .funnelWrapper p {
        text-align: center;
        width: 90%;
        position: absolute;
        left: 5%;
        margin: 0 0 0;
        font-size: 14px;
        line-height: normal;
        top: 28%;
    }
    #brands .mobileFunnel .funnelWrapper p.para2 {
        width: 55%;
        left: 24%;
        top: 39%;
    }
    #brands .mobileFunnel .funnelWrapper p.para3,
    #brands .mobileFunnel .funnelWrapper p.para4 {
        width: 43%;
        left: 30%;
        top: 18%;
    }
    #brands .mobileFunnel .funnelWrapper p.para4 {
        top: -2%;
        opacity: 0;
    }
    .blink::before {
        left: 107%;
        top: 137px;
        width: 18px;
    }
    /* .blink::after {
        content: "";
        position: absolute;
        height: 24px;
        width: 24px;
        background: #000;
        border-radius: 50%;
        bottom: -79%;
        right: 15%;
    } */
    .siteDirectMobile {
        order: 2;
    }
    #brands_globally {
        padding: 80px 0;
    }
    #brands_globally h2 {
        margin: 0 0 50px;
    }
    .platform_logos {
        display: none;
    }
    .platformMobileSliderWrapper {
        display: block;
        margin: 30px 0 0;
    }
    #about.siteDiscover .section-header {
        margin: 0 0 50px;
        padding: 0 0 10px;
    }
    .verticalFullpageCenterAlign {
        padding: 2% 30px 0;
    }
    .not-found_wrapper {
        background: none;
    }
    .not-found_img {
        display: block;
        width: 50%;
    }
    .not-found_contents {
        padding: 0;
        margin: 0 0 50px;
        width: 50%;
    }
}

@media all and (max-width: 812px) {
    .desktopHeaderPara {
        display: none;
    }
    .mobileHeaderPara {
        display: block;
        text-align: left;
    }
    .partnersLogo .logo-partners {
        padding: 20px 12px;
        height: 70px;
    }
    .testimonials .testimonial-item {
        flex-direction: column;
        width: 80%;
        justify-content: center;
    }
    .testimonial-imgWrapper {
        margin: 0 auto 30px;
    }
    .testimonials .testimonial-item p {
        padding: 0 0 0 40px;
    }
    .testimonials .testimonial-item p::before {
        left: -13px;
    }
    .footer-contact {
        text-align: left !important;
    }
    .affinity_site {
        flex-basis: 50%;
    }
    .footer-bottom .container {
        flex-direction: column-reverse;
        padding: 20px 10px;
    }
    .social-links {
        padding: 0 0 20px;
        text-align: center;
    }
    .swiper-button-next,
    .swiper-button-prev {
        border: 0;
    }
    .swiper-button-prev,
    .swiper-container-rtl .swiper-button-next {
        left: 0;
        right: auto;
    }
    .swiper-button-next,
    .swiper-container-rtl .swiper-button-prev {
        right: 0;
        left: auto;
    }
    .platformMobileSlider {
        padding: 0 50px;
    }
    .platformMobileSliderWrapper .swiper-button-next::before,
    .platformMobileSliderWrapper .swiper-button-prev::before {
        background: #fff;
    }
    .platfom-integrated .swiper-button-prev::before {
        left: -10px;
    }
    .platfom-integrated .swiper-button-next::after,
    .platfom-integrated .swiper-button-prev::after {
        color: #000;
    }
    .platfom-integrated .logo-partners {
        width: 95%;
        height: 100px;
        padding: 0 30px;
    }
    .swiper-button-next::before {
        content: "";
        position: absolute;
        width: 55px;
        height: 300px;
        top: -90px;
        left: -3px;
        background: #000;
        z-index: 90;
    }
    .swiper-button-prev::before {
        content: "";
        position: absolute;
        width: 55px;
        height: 300px;
        top: -90px;
        left: -21px;
        background: #000;
        z-index: 90;
    }
    .accordion-item button.collapsed .stories-title,
    .accordion-item button .stories-title {
        background: #f9a61c;
        border: 0;
        border-radius: 5px;
    }
    .cs-content {
        background: #fff;
        border-radius: 5px;
    }
    .storyDetailsBlock h1,
    .cs-content .storyDetailsBlock p {
        color: #000;
    }
    .accordion-item button .stories-title p {
        color: #fff;
    }
    .storyDetails {
        flex-direction: row;
        padding: 15px 0;
    }
    .storyDetailsBlock {
        flex-direction: column;
        justify-content: center;
        align-content: center;
        padding: 0 10px;
    }
    .storyDetailsBlock:nth-child(1),
    .storyDetailsBlock:nth-child(2) {
        border-right: 2px solid #000;
    }
    .storyDetailsBlock h1 {
        font-size: 18px;
    }
    .cs-content .storyDetailsBlock p {
        font-size: 13px;
        margin: 0;
        font-family: 'SF-UI-Display-Light';
        text-align: center;
    }
    .accordion-item:nth-child(1) button .stories-title span {
        background: url("../../assets/images/success_stories/shopping-cart.png") no-repeat;
        background-size: 100%;
    }
    .accordion-item:nth-child(2) button .stories-title span {
        background: url("../../assets/images/success_stories/plane.png") no-repeat;
        background-size: 100%;
    }
    .accordion-item:nth-child(3) button .stories-title span {
        background: url("../../assets/images/success_stories/headset.png") no-repeat;
        background-size: 100%;
    }
    .accordion-item:nth-child(4) button .stories-title span {
        background: url("../../assets/images/success_stories/finance.png") no-repeat;
        background-size: 100%;
    }
    .accordion-item:nth-child(5) button .stories-title span {
        background: url("../../assets/images/success_stories/video.png") no-repeat;
        background-size: 100%;
    }
    #accordionFlushExample2 .accordion-item:nth-child(1) button .stories-title span {
        background: url("../../assets/images/success_stories/food-and-drinks.png") no-repeat;
        background-size: 100%;
    }
    #accordionFlushExample2 .accordion-item:nth-child(2) button .stories-title span {
        background: url("../../assets/images/success_stories/health-fitness.png") no-repeat;
        background-size: 100%;
    }
    #accordionFlushExample2 .accordion-item:nth-child(3) button .stories-title span {
        background: url("../../assets/images/success_stories/technology.png") no-repeat;
        background-size: 100%;
    }
    #accordionFlushExample2 .accordion-item:nth-child(4) button .stories-title span {
        background: url("../../assets/images/success_stories/automobile.png") no-repeat;
        background-size: 100%;
    }
    .accordion-button:not(.collapsed)::after,
    .accordion-button::after {
        width: 0;
    }
    .accordion-collapse.show {
        max-height: 86px;
        margin: 2px 0;
    }
    .accordion-item {
        margin: 0 0 5px;
    }
}


/* comment by kruti */

@media all and (max-width: 767px) {
    .mobile-img-container-tabs ul li {
        flex-basis: 25%;
    }
    .mobile-img {
        height: 250px;
    }
    .mobile-img-container {
        width: 267px;
        position: relative;
        top: 44px;
        left: 51px;
        height: 172px;
        overflow: hidden;
    }
    /* comment kruti */
    .site-offers-img .mobile-img-container {
        width: 267px;
        position: relative;
        top: 44px;
        left: 51px;
        height: 172px;
        overflow: hidden;
    }
    .site-offers-img.mobile-img {
        height: 250px;
        width: 360px;
    }
    /* comment kruti */
    .mobile-img-container-tabs {
        top: 0;
    }
    .mobile-img-container-tabs ul li>div p {
        font-size: 14px;
    }
    .mobile-img-container-tabs ul li span {
        font-size: 18px;
    }
    .siteDiscover .mobile-img-pad {
        padding-top: 0;
    }
    .mobile-img-container-tabs ul li>div p:before,
    .mobile-img-container-tabs ul li.activeMIC-tabs>div p:before {
        width: 50%;
    }

    /*Holiday and service agreement*/
    #privacy_terms table{
        width: 100%;
    }
    #holidays h1 {
        font-size: 2rem;
    }
    .ptop80 {
        padding-top: 50px;
    }
    .holiday_layout_mob{
        display: block;
        visibility: visible;
        margin: 2rem 0;
    }
    .holiday-table{
        display: none;
        visibility: hidden;
    }
    .holiday_layout_mob p{
        font-family: 'SF-UI-Display-Light';
        border-bottom: 1px solid #ccc;
        padding-bottom: 15px;
        margin-bottom: 15px;
    }
    .holiday_layout_mob p strong{
    font-size: 16px;
    color: #444444;
    font-family: "SF-UI-Display-Bold";
    }
    /*End off Holiday and service agreement*/
    

    /* .siteDiscover .content, .about .content {
        padding: 30px 10px 0;
    } */
}


/* comment by kruti */

@media all and (max-width: 460px) {
    .mobile-img {
        width: 360px;
        top: -20px;
        float: none;
        margin: 0;
        left: -1%;
    }
    .mobile-img .carousel {
        width: 267px;
        top: 46px;
        left: 51px;
    }
    .mobile-img .carousel-item img {
        height: 168px;
    }
    .mobile-img .carousel-indicators {
        bottom: -80px;
        margin: 0;
    }
    .mobile-desk-img {
        width: 360px;
    }
    .desk-videoplayer.video20 {
        top: 58px;
        width: 340px;
        left: -25px;
    }
    .mobile-dev-img {
        width: 360px;
    }
    .siteDiscover .content,
    .about .content {
        padding: 40px 10px 0;
    }
    .siteDirect .content {
        padding: 40px 20px 0;
    }
    #siteplug-brands .partnersLogo>div {
        flex-direction: column;
    }
    #siteplug-brands .partnersLogo .logo-partners {
        height: 100px;
        padding: 30px 50px;
        width: 70%;
        margin: 0;
    }
    .accordion-item .accordion-button,
    .stories-title {
        width: 100%;
    }
    .cs-content {
        width: 100%;
    }
    .testimonials .testimonial-item {
        width: 100%;
    }
    .swiper-button-next::after,
    .swiper-button-prev::after {
        z-index: 99;
    }
    .swiper-button-next::before {
        content: "";
        position: absolute;
        width: 55px;
        height: 300px;
        top: -90px;
        left: -3px;
        background: #000;
        z-index: 90;
    }
    .swiper-button-prev::before {
        content: "";
        position: absolute;
        width: 55px;
        height: 300px;
        top: -90px;
        left: -21px;
        background: #000;
        z-index: 90;
    }
    .platformContent {
        width: 100%;
    }
    .platform_logos {
        flex-direction: column;
    }
    .platform_logos {
        flex-direction: column;
        flex-wrap: nowrap;
        justify-content: stretch;
    }
    .platform_logos .logo-partners {
        padding: 30px;
        min-height: 100px;
        flex-basis: 100%;
    }
    .platform_logos .logo-partners .img-fluid {
        max-height: 50px;
    }
    .affinity_sites {
        padding: 10px;
    }
    #siteplug-brands h2,
    #about.siteDiscover .section-header,
    .testimonials h2,
    .clients h2,
    .contact h2,
    .about h2,
    #brands_globally h2 {
        font-size: 24px;
    }
    #about.siteDiscover .section-header {
        margin: 0 0 50px;
    }
    #brands_globally .heroImg {
        display: none;
    }
    .heroImg2 {
        display: block;
    }
    .platform img {
        max-height: 70px;
    }
    .partnersLogo {
        display: none;
    }
    .mobileBrands {
        display: block;
    }
    .shoppingLogos .logo-partners,
    .travelLogos .logo-partners,
    .telecomLogos .logo-partners,
    .finance_bankingLogos .logo-partners,
    .entertainment_streamingLogos .logo-partners,
    .food_drinkLogos .logo-partners,
    .health_fitnessLogos .logo-partners,
    .technologyLogos .logo-partners,
    .autoLogos .logo-partners {
        display: none;
    }
    .mobileBrands .shoppingLogos .logo-partners,
    .mobileBrands .travelLogos .logo-partners,
    .mobileBrands .telecomLogos .logo-partners,
    .mobileBrands .finance_bankingLogos .logo-partners,
    .mobileBrands .entertainment_streamingLogos .logo-partners,
    .mobileBrands .food_drinkLogos .logo-partners,
    .mobileBrands .health_fitnessLogos .logo-partners,
    .mobileBrands .technologyLogos .logo-partners,
    .mobileBrands .autoLogos .logo-partners {
        width: 38%;
        margin: 0 10px 15px;
        padding: 0 20px;
        height: 80px;
        display: flex;
    }
    .mobileBrands .carousel-item>div {
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
        margin: 45px 0 0 10%;
        padding: 0 0 10px;
    }
    .mobileBrands .carousel-item>div .logo-partners:nth-child(5) {
        margin: 0 auto;
        position: relative;
        left: -5%;
    }
    .mobileBrands .carousel-item>div::before {
        position: absolute;
        color: #000;
        font-size: 22px;
        top: -5px;
        width: 75%;
        text-align: center;
        font-family: 'SF-UI-Display-Light';
    }
    #siteplug-brands .mobileBrands .carousel-control-prev,
    #siteplug-brands .mobileBrands .carousel-control-next {
        opacity: 1;
        background: none;
        border: 0;
    }
    #siteplug-brands .mobileBrands .carousel-control-prev-icon {
        background: url("../../assets/images/prevIcon.jpg") no-repeat;
        width: 22px;
        height: 22px;
        background-size: 16px;
    }
    #siteplug-brands .mobileBrands .carousel-control-next-icon {
        background: url("../../assets/images/nextIcon.jpg") no-repeat;
        width: 22px;
        height: 22px;
        background-size: 16px;
    }
    #siteplug-brands .swiper-button-next::before,
    #siteplug-brands .swiper-button-prev::before {
        content: "";
        position: absolute;
        width: 55px;
        height: 300px;
        top: -90px;
        left: -10px;
        background: #fdf2e5;
        z-index: 90;
    }
    .platformMobileSliderWrapper .swiper-button-next::before,
    .platformMobileSliderWrapper .swiper-button-prev::before {
        background: #fff;
    }
    #siteplug-brands .swiper-button-next::before,
    #siteplug-brands .swiper-button-next::before {
        left: 0;
    }
    #siteplug-brands .swiper-button-next::after,
    #siteplug-brands .swiper-button-prev::after {
        z-index: 99;
        color: #000;
    }
    .siteplug-patners .logo-partners {
        height: 60px;
        padding: 0 20px;
        border-radius: 10px;
        width: 100%;
    }
    .siteplug-patners .logo-partners .img-fluid {
        max-height: 30px;
    }
    #siteplug-partners .swiper-slide {
        margin-top: 0 !important;
    }
    #siteplug-pi .swiper-slide {
        margin-top: 5px !important;
    }
    .platfom-integrated .logo-partners {
        width: 100%;
        height: 65px;
        padding: 0 15px;
        border-radius: 10px;
    }
    #brands_globally h2 span {
        display: inline;
    }
    .country img {
        width: 90%;
    }
    .countryList {
        width: 90%;
    }
    .country p {
        font-size: 13px;
        margin: 20px 0;
    }
    .testimonials .testimonial-item p::before {
        width: 25px;
        top: -9px;
    }
    .testimonials .testimonial-item p {
        padding: 0 0 0 20px;
    }
    .thank_you,
    .not-found {
        flex-direction: column;
        padding: 20px;
    }
    .thank_you>div,
    .not-found>div {
        width: 100%;
        margin: 0 0 20px;
    }
    .not-found_contents {
        order: 2;
    }
    #brands .mobileFunnel .funnelWrapper p {
        top: 18%;
        font-size: 12px;
    }
    #brands .mobileFunnel .funnelWrapper p.para2 {
        top: 27%;
    }
    #brands .mobileFunnel .funnelWrapper p.para3,
    #brands .mobileFunnel .funnelWrapper p.para4 {
        width: 41%;
        left: 29%;
        top: 10%;
    }
    #brands .mobileFunnel .funnelWrapper p.para4 {
        top: -3%;
        width: 40%;
        opacity: 0;
    }
    .blink::before {
        left: 124%;
        top: 107px;
        width: 14px;
    }
    .siteplug_bandage_mobile::after {
        width: 55px;
        height: 103px;
        background-size: 100%;
        bottom: -113px;
        right: -13%;
    }
    /* .blink::after {
        height: 18px;
        width: 18px;
        bottom: -67%;
        right: 6%;
    } */
    .funneldesc {
        left: 0;
    }
    .landingFixedHeadline {
        padding: 10px 20px;
    }
    .landingFixedHeadline span.triangle_bg {
        top: 75px;
    }
    .landingContact {
        padding: 160px 0 0;
    }
    .landing_form h1 {
        font-size: 18px;
        padding: 0 20px;
    }
}

@media all and (max-width: 376px) {
    .blink::before {
        left: 127%;
        top: 95px;
        width: 14px;
    }
    .siteplug_bandage_mobile::after {
        width: 50px;
        height: 93px;
        background-size: 100%;
        bottom: -96px;
        right: -15%;
    }
}

@media all and (max-width: 360px) {
    .accordion-collapse.show {
        max-height: 96px;
        margin: 2px 0;
    }
    .storyDetails {
        padding: 10px 0;
    }
    /* .blink::after {
        height: 18px;
        width: 18px;
        bottom: -27%;
        right: 6%;
    } */
}