*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
  /* --heading-font: "lato",  sans-serif !important; */
  --nav-font: "Poppins",  sans-serif !important;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff !important; /* Background color for the entire website, including individual sections */
  --default-color: #444444 !important; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #111111 !important; /* Color for headings, subheadings and title throughout the website */
  --accent-color: rgb(40 116 158) !important; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: rgb(224, 235, 245) !important; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff !important; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #212529;  /* The default color of the main navmenu links */
  --nav-hover-color: rgb(40 116 158); /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #212529; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: rgb(40 116 158); /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
  --sectionheading: 40px;
  --section-para:20px;
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f9f9f9;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: rgb(40 116 158);
  --default-color: #212529;
  --heading-color: #212529;
  --surface-color: rgb(224, 235, 245);
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
   width: 100%;
    scroll-padding-top: 100px; 
}

a {
  color: #ffc107;
  text-decoration: none !important;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, #ffc107, transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

.sectionheadings
{
  font-size: var(--sectionheading);
  color: var(--accent-color);
}

.section-para
{
  font-size: var(--section-para);
}

/* Navbar */

navbar
{
    width: 100%;
    background-color: #F1F5F9;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
}

.logo
{
    width: 160px;
    object-fit: cover;
}

.navbtn
{
    background-color:transparent;
    position: relative;
    overflow: hidden;
}
.navbtn1
{
  border: none;
  color: #000000A6 !important;
  transition: all ease 0.3s;
  background-color: transparent;
}

.navbtn1:hover
{
  color: #fff;
}
.navbtn a
{
  text-decoration: none;
  color: #000000A6;
}
.navbtn a:hover
{
  color: #000000 !important;
}

section {
  scroll-margin-top: 100px; /* Better than adding margin-top manually */
}

.btntext
{
    position: relative;
    z-index: 10;
}
.btntext #signin
{
  text-decoration: none;
  color: #000000A6;
}
.navbtn1:hover #signin
{
  color: #000000 !important;
}

.navbtn:hover::after
{
  left: 0;
}

.navlinkbox .navlinks .navlink 
{
    color: #000000A6;
    font-weight: 400;
    font-size: 16px !important;
}

.navanchor
{
  text-decoration: none;
  color: #000000A6;
}
.navanchor:hover
{
  color: #000000;
}
.navlink.active
{
    color: #000000 !important;
}
.navlinkbox .navlinks .navlink:hover
{
    color: #000000;
}

.mobilenavlinkbox
{
    position: absolute;
    background-color: #fff;
    width: 100%;
    top: 110%;
    left: 0;
    z-index: 100;
    border-radius: 10px;
    color: #fff !important;
    display: none;
}

.mobilenavlinkbox.active
{
    display: block;
}
.mobilenavlinkbox .navlinks .navlink 
{
    color: #000;
}

.mobilenavlinkbox .navlinks .navlink.active
{
    color: #28749e;
}
.ham
{
    position: relative;
    cursor: pointer;
    top: -1px;
    transition: all ease 0.3s;
}
.ham span
{   
    display: block;
    background-color: #535353;
    width: 23px !important;
    height: 2px !important;
    color: #000;
    border-radius: 50px;
    margin-bottom: 2px;
    transition: all ease 0.3s;
}

.ham.active span:nth-child(1) {
  transform: rotate(45deg) translate(3px, 6px) !important;
  
}

.ham.active span:nth-child(2) {
  display: none;
}

.ham.active span:nth-child(3) {
  transform: rotate(-45deg) translate(-1px, -2px) !important;
  
}

@media screen and (max-width:500px) {
    .logo
{
    max-height: 30px !important;
}
.btntext
{
    font-size: 14px;
}
.herobtnext
{
  font-size: 14px;
}

.ham span
{   
   
    width: 24px !important;
    height: 2px !important;
    color: #000;
    border-radius: 50px;
    transition: all ease 0.3s;
}
}


/* hero section */

section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 100px;
  overflow: clip;
}
section 
.section-bg {
  background-color: transparent;
  padding: 160px 0;
  position: relative;
}

.section-bg:before {
  content: "";
  background-color: var(--background-color);
  position: absolute;
  bottom: 60px;
  top: 60px;
  left: 0;
  right: 0;
  transform: skewY(-3deg);
}

.section-bg .container {
  position: relative;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}


/* =============================================================================== */
.tam-title {
  color: var(--accent-color);
}

.tam-btn-get-started {
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  /* padding: 10px 30px; */
  border-radius: 4px;
  transition: 0.3s;
  background: var(--accent-color);
  color: var(--contrast-color);
}

.tam-btn-get-started:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.glass-effect {
   background-color: rgba(0,0,0,0.5)
}

.fs-fluid-1 {
  font-weight: 500;
  font-family: var(--heading-font);
  font-size: clamp(1.85rem, 3vw, 3.5rem);
}

.fs-fluid-2 {
  font-weight: 500;
  font-family: var(--heading-font);
  font-size: clamp(1rem, 1.5vw, 2rem);
}

/* Typerwriter with JS */
.typewriter-js {
  display: inline-block;
}

.typewriter-js h3 {
  color: #ffc107;
  overflow: hidden; 
  white-space: nowrap;
  margin: 0 auto;
}

#tw-text {
  border-right: 2px solid rgb(255, 255, 255);
  white-space: nowrap;
  overflow: hidden;
  display: inline-block;
  animation: blink-caret 0.7s step-end infinite;
}

@keyframes blink-caret {
  from, to { border-color: transparent }
  50% { border-color: #ffc107}
}


/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/

.scroll-top
{
  position: fixed;
  background-color: #28749e;
  z-index: 10;
  right: 50px;
  bottom: 50px;
  width: 40px;
  height: 40px;
  opacity: 0;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  color: #fff;
  font-size: 20px;
}
.scroll-top.active{
  opacity: 1;
}
.scroll-top:hover
{
color: #fff;
}

@media screen and (max-width:500px) {
  .scroll-top
{
  
  right: 10px;
  bottom: 10px;
  width: 40px;
  height: 40px;
 
}
}
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  text-transform: uppercase;
  color: #ffffff;
}

.section-title h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--contrast-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title p {
  margin-bottom: 0;
  color: #ffffff;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  --default-color: #ffffff;
  --background-color: #000000;
  --heading-color: #ffffff;
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--default-color);
}

.hero video {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

#herocontent-us
{
  display: none;
}

#herocontent-ind
{
  display: none;
}
.hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero .container {
  position: relative;
  z-index: 3;
}

.hero h2 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
}

.hero p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 10px 0 0 0;
  font-size: 24px;
  font-family: monospace;
}

.hero .btn-get-started {
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: fit-content;
  padding: 10px 30px;
  border-radius: 4px;
  transition: 0.3s;
  background: var(--accent-color);
  color: var(--contrast-color);
}

.hero .btn-get-started:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.hero .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  font-weight: 600;
  color: var(--default-color);
}

.hero .btn-watch-video i {
  color: var(--accent-color);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero .btn-watch-video:hover {
  color: var(--accent-color);
}

.hero .btn-watch-video:hover i {
  color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 32px;
  }

  .hero p {
    font-size: 18px;
  }
}


/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats i {
  background-color: var(--surface-color);
  color: var(--accent-color);
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
  width: 54px;
  height: 54px;
  font-size: 24px;
  border-radius: 50px;
  border: 2px solid var(--background-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.stats .stats-item {
  background-color: var(--surface-color);
  margin-top: -27px;
  padding: 30px 30px 25px 30px;
  width: 100%;
  position: relative;
  text-align: center;
  box-shadow: 0px 2px 35px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  z-index: 0;
}

#us-stats
{
  display: none;
}

#nonus-stats
{
  display: none;
}

.stats .stats-item span {
  font-size: 36px;
  display: block;
  font-weight: 700;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.stats .stats-item p {
  padding: 0;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 16px;
}

/* =============================wowleadsfor====================== */

.demovideo
{
  border-radius: 10px;
}
.videosection
{
  position: relative;
  z-index: 2;
}
.wowleadsfor
{
    position: relative;
    height: fit-content;
    width: 100%;
    background-image: url(../assets/images/sectbg.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 2;
    padding: 10vh 0;
}

.wowleadsfor::after
{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0d3d619a;
    z-index: -1;
}
/* .sectionheadings H2
{
    font-weight: 600;
    font-size: 40px !important;
    color: #fff;
} */

.sectionheadings P
{
    width: 60%;
}
 .flipcard {
      width: 100%;
      height: 240px;
      perspective: 1000px;
    }

    .flipcardinner {
      position: relative;
      width: 100%;
      height: 100%;
      transition: transform 0.8s;
      transform-style: preserve-3d;
      z-index: 5;
    }

    .flipcard:hover .flipcardinner {
      transform: rotateY(180deg);
    }

    .flipfront, .flipback {
      position: absolute;
      height: 100%;
      width: 100%;
      -webkit-backface-visibility: hidden;
      backface-visibility: hidden;
    }

     .flipfront
     {
        background-color: #F1F5F9;
        color:#28749e;
     }
    .flipback {
      transform: rotateY(180deg);
      background-color: #28749e;
    }

    @media screen and (max-width:768px) {
      .sectionheadings P
{
    width: 100%;
}
      
    }
   /* powerfull multichannel outreach platform  */

.tutorials .swiper-slide
{
 border-radius: 10px !important;
 background-color: #fff;
 margin-bottom: 40px;
}

   .tutorials .slidecard
   {
    max-height: 300px;
    height: 100%;
    position: relative;
    overflow: hidden;
     border-radius: 10px  !important;
   }
   .tutorials .slidecard::after
   {
   content: "▶";
  font-size: 38px;
  color: white;
  text-shadow: 0 0 8px rgba(0,0,0,0.7);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
   }
   .tutorials img
   {
    height: 100%;
    width: 100%;
    object-fit: cover;
    display: block;
   }

   .outreachplatform
   {
        padding: 10vh 0;
        position: relative;
        background-color: #F1F5F9;
   }
   
   /* .outreachplatform .sectionheadings h2
   {
     color: #28749e;
   } */


   .multichannelbox
   {
    border: 1px solid #28749e;
    height: 100%;
    border-radius: 10px;
    transition: all ease 0.3s;
   }

   .multichannelbox:hover
   {
    background-color: #28749e;
   }
  
   .multichannelbox svg
   {
    color: #28749e;
    height: 50px;
    transition: all ease 0.3s;
   }
   .multichannelbox:hover.multichannelbox svg
   {
   color: #fff;
   }

   .multichannelbox h4
   {
    color: #28749e;
    font-weight: 600;
   }

   .multichannelbox:hover.multichannelbox h4
   {
   color: #fff;
   }

   .multichannelbox:hover.multichannelbox p
   {
    color: #fff;
   }
   /* .swipecardimg
   {
    height: 100px;
    width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border: none;
    border-radius: 50%;
    padding: 10px;
   }

     .swiper {
      width: 100%;
      height: 100%;
    }

    .swiper-wrapper
    {
        display: flex !important;
        align-items: stretch !important;
      
    }
    .swiper-slide {
      display: flex;
      align-items: stretch !important;
      background-color: #28749e;
      height: 100%;
      border-radius: 8px;
    }

    .swiper-slide img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      width: 100%;
    }

    .swipecard
    {
        border-radius: 8px;
        color: #fff;
         flex: 1;
  display: flex;
  flex-direction: column !important;
  justify-content:space-evenly !important;
  height: 320px;
    }
  
    .swipecard p
    {
        font-weight: 600;
    }
    .swipecard p span
    {
        color: #37b34a;
    }
    .swiper-pagination
    {
        position: static !important;
    } */

    @media screen and (max-width:500px) {
           .swipecard
    {
       
  height: 350px;
    }
    }


    /* categories */

    .categories
    {
      position: relative;
      background-color: #000000;
      height: 70vh;
      overflow-y: hidden;
      z-index: 1;
      /* scrollbar-width: none; */
    }

    .categorycontent .box h2
    {
      line-height: 43px;
      font-size: 3rem;
      font-weight: 200 !important;
    }
    .categorycontent .box .muted
    {
      color: #ffffff42;
    }
    .categorycontent p
    {
      color: #fff;
    }
    .categorycontent .box a
    {
      color: #ffffff;
    }

    .categorycontent .box a:hover
    {
      color: #28749e;
    }

    @media screen and (max-width:500px) {
       .categorycontent .box h2
    {
      line-height: 25px;
      font-size: 1.5rem;
    }
    }
    /* about us */

    .about
    {
        background-color: #28749e;
        position: relative;
        z-index: 2;
    }

     .about .aboutimg img
     {
        min-height: 300px !important;
        height: 100%;
        width: 100%;
        aspect-ratio: 4/2;
        object-fit: cover;
     }
    /* about us */

    .abouttext h2
    {
    color: #fff;
    }

    .abouttext p
    {
        color: #fff;
        font-weight: 500;
        /* font-size: 24px; */
    }

   .aboutimg, .abouttext {
  height: 100%;
  width: 100%;
}

.aboutimg img {
  height: 100%;
  width: auto;
  object-fit: cover; /* or 'contain' if you don't want cropping */
  border-radius: 8px; /* optional: for better UI */
}

/* projects */

.project
{
  position: relative;
  height: auto;
  width: 100%;
  z-index: 2;
  background-color: #F1F5F9;
}

/* how wowleads works */

.howworks
{
  position: relative;
  z-index: 2;
  background-color: #fff;
}
/* .howworks .sectionheadings h2
{
    color: #28749e;

} */


.wowworksbox img
{
    height: 120px;
}

.wowworksbox  .wowworkstext h4
{
    font-weight: 600;
}

.howworks .workimg img
{
 border-radius: 10px;
 /* max-height: 500px; */
 height: 100%;
 width: 100%;
 object-fit: cover;
}

@media screen and (max-width:768px) {
    .wowworksbox img
{
    height: 80px;
}
}

@media screen and (max-width:500px) {
    .wowworksbox img
{
    height: 60px;
}
}

/* testimonials */

.testimonial-card {
  transition: all 0.35s ease;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  background: #fff;
}

.testimonial-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.img-black {
  filter: brightness(0) invert(1);
  transition: filter 0.3s ease;
}

/* serives */
.services
{
    background-color: #F1F5F9;
    position: relative;
    z-index: 2;
    height: auto;
}

/* .services .sectionheadings h2
{
    color: #28749e;
} */

.services .sectionheadings p
{
    color: #000;
}
.services .accordion-item
{
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #000;
}
.services .accordion-button
{
  background-color: #fff !important;
  border: none !important;
  color: #28749e;
  padding: 10px;
  /* font-size: 25px; */
}
.accordion-button:not(.collapsed) {
  color: #37b34a !important;
}

.services .tabcontent
{
  border: none;
  padding: 10px 0;
  border: none;
  /* background-color: #37b34a; */
}
.accordion-button::after 
{
  transform: scale(0.6);
}
.accordion-button:not(.collapsed)::after
{
  transform: scale(0.6);
}
.services .tabcontent.active
{
     background-color: #28749e;
     color: #fff;
}

.services .campaigntabcontent
{
  border: none;
  padding: 20px 0;
}

.services .campaigntabcontent.active
{
  background-color: #28749e;
  color: #fff;
}

.servicecontent
{
  height: 100%;
  display: flex;
  align-items: stretch !important;
  /* background-color: #37b34a; */
}

.servicecontent .imgbox
{
  height:100% !important;
}
.serviceimg
{
  height: 100%;
  aspect-ratio: 3/1.8;
  object-fit: cover;
}
.servicereadmore
{
  color: #28749e;
}



/* resources */

.resources
{
  background-color: #F1F5F9;
  position: relative;
}

/* .resources .sectionheadings h2
{
  color: #28749e;
} */

.resources .sectionheadings p
{
    color: #000;
    width: 100%;
}

/* swiper */

 .swiper {
      width: 100%;
      height: 100%;
    }

    .swiper-slide {
      text-align: center;
      font-size: 18px;
      background: #444;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .swiper-slide img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

/* difference  */
.difference
{
  background-color: #fff;
  position: relative;
  z-index: 2;
}

/* .difference .sectionheadings h2
{
    color: #28749e;
} */

.difference .sectionheadings p
{
    color: #000;
    width: 100%;
}

.difference .ri-close-fill
{
    font-weight: 700 !important;
    font-size: 30px;
}

.difference .ri-check-fill
{
   font-weight: 700 !important;
    font-size: 30px;
}
.difference .tablebox .rightbox i
{
    color: green;
}

.difference .table
{
  position: relative;
  background-color: #F1F5F9;
  border-radius: 10px;
}

.difference .table .tablevr
{
  width: 1px;
  height: 95%;
  background-color: #000;
  top: 20px;
  left: 49%;
  transform: translateX(-50%);
  position: absolute;
  z-index: 100;
}

.difference .table tr td
{
  width: 50%;
}

.difference .card-title 
{
  color: #28749e;
}

.difference .card-body
{
  border-top: 5px solid #28749e;
}

/* usecaes */

.usecases
{
  position: relative;
  z-index: 2;
  background-color: #F1F5F9;
}
.usecases .sectionheadings h2
{
  color: #28749e;
}

.usecases .usecasecard
{
  background-color: #28749e;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: start;
  position: relative;
  height: 100%;
}

.usecasebox
{
  margin-top: 50px !important;
}
.usecases .usecasecard .cardicon
{
  position: absolute;
  height: 150px;
  width: 150px;
  background-color: #fff;
  border-radius: 50%;
  top: -75px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0px 0px 13px 0px rgba(0,0,0,0.75);
-webkit-box-shadow: 0px 0px 13px 0px rgba(0,0,0,0.75);
-moz-box-shadow: 0px 0px 13px 0px rgba(0,0,0,0.75);
}
.usecases .usecasecard .cardicon img
{
  height: 90px;
  width: 90px;
}

.usecases .usecasecard .usecasetickbox
{
  height: 20px !important;
  width: 20px !important;
  background-color: #fff;
  color: #28749e;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 10px;
}

.usecases .usecaserow
{
  margin-top: 80px;
  display: flex;
  align-items: stretch;
  justify-content: center;
}
.usecases .usecasecard h4
{
  margin-top: 100px;
  color: #fff;
  margin-bottom: 20px;
}

.usecases .usecasecard p
{
  color: #fff;
}

@media screen and (max-width:992px) {
  .usecasebox
  {
    margin-top: 100px !important;
  }
.usecases .usecaserow
{
  margin-top: 0px !important;
}
}

@media screen and (max-width:500px) {
.usecases .usecasecard .cardicon
{
  height: 120px;
  width: 120px;
   top: -60px;
}
.usecases .usecasecard .cardicon img
{
  height:60px;
  width: 60px;
}
}


/* founding team */

.foundingteam 
{
  background-color: #28749e;
  position: relative;
  z-index: 2;
}

.foundingteam .sectionheadings p
{
  width: 100%;
}
.foundingteam .teamcontent p
{
  font-weight: 600;
}

.foundingteam  .teamheadings h4
{
  font-weight: 600;
  color: #fff;
  font-size: 32px;
}

.foundingteam  .teamheadings p
{
 color: #fff;
}



/* testimonials and social proofs */

.testimonials
{
  background-color: #F1F5F9;
  position: relative;
  z-index: 2;
}

/* .testimonials .sectionheadings h2
{
  color: #28749e;
} */

.testimonials .testimonialcard
{
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: stretch;
  border-radius: 10px;
  height: 100%;

}
.testimonials .testimonialcard .testimonialimg
{
  height: 100px;
  width: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  /* border: 5px solid #28749e; */
}

.testimonials .testimonialcard .testimonialimg i
{
  font-size: 50px;
  color: #28749e;
}
.testimonials .testimonialcard h4
{
  color: #28749e;
}

.testimonials .testimonialcard .teststars i
{
  color: #ffc505;
}

/* faqs */

.faqs
{
  background-color: #28749e;
  position: relative;
  z-index: 2;
}
.faqs .faqbox .fquestion
{
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.faqimg
{
  border-radius: 10px;
}
.faqs .faqbox .fquestion h4
{
  color: #fff;
   font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.faqs .faqbox .fquestion i
{
  color: #fff;
  font-weight: 500;
  font-size: 30px;
  transition: all ease 0.3s;
}

.faqs .faqbox .fanswer
{
  color: #fff;
  display: none;
   font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.faqs .faqbox
{
  border-bottom: 1px solid #fff;
}

.faqs .faqbox .fanswer.active
{
 
  display: block;
}

.faqbox:nth-child(1)
{
  border-top: 1px solid #fff;
}

 .fquestion i.rotate
{
  transform: rotate(45deg);
}

/* contact */

.contact
{
  position: relative;
  z-index: 2;
  background-color: #F1F5F9;
}
/* .contact .sectionheadings h2
{
  color: #28749e;
} */

.contact .sectionheadings p
{
  color: #000;
  width: 90%;
}

.contact .contactbox
{
  background-color: #28749e;
  border-radius: 10px;
}

.contact .contactbox .contacticonbox .contactitem
{
  display: flex;
  align-items: center;
  justify-content: start;
}

.contact .contactbox .contactitem span
{
  color: #fff;
  font-size: 20px;
}
.contact .contactbox p a
{
   color: #fff;
   /* font-size: 20px; */
   font-weight: 600;
}
.contact .contactbox p 
{
   color: #fff;
   /* font-size: 20px; */
   font-weight: 600;
}

.contact .contactbox .contactitem .contacticonbox
{
  height: 50px;
  width: 50px;
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.contact .contactform label
{
  font-size: 20px;
  font-weight: 500;
}

.contact .contactform input
{
  background-color: #F1F5F9;
  border: 1px solid #28749e;
}

.contact .contactform  textarea
{
  background-color: #F1F5F9;
  border: 1px solid #28749e;
}

.contact .contactform button
{
  padding: 7px 20px;
  border: none;
  background-color: #28749e;
  color: #fff;
  border-radius: 5px;
}

/* footer */

.footer
{
  background-color: #28749e;
  position: relative;
  z-index: 2;
}

.footer .footerleft img
{
  height: 50px;
  filter: invert(1);
}

.footer .footerleft h4
{
  color: #fff;
}

.footer .footerleft p
{
  color: #fff;
  /* font-size: 20px; */
}

.footer .footerleft p a
{
  color: #fff;
  /* font-size: 20px; */
}

.footer .footermiddle
{
  height: 100%;
  /* background-color: #37b34a; */
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
}

.footer .footermiddle h4
{
 color: #fff;
}

.footer .footermiddle ul li
{
  margin-bottom: 5px;
}
.footer .footermiddle ul li a
{
  text-decoration: none;
  color: #fff;
  /* font-size: 20px; */
  transition: all ease-in-out 0.3s;
}

.footer .footermiddle ul li a:hover
{
  color: #37b34a;
}
.footer .footerright
{
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
}
.footer .footerright h4
{
  color: #fff;
}

.footer .footerright .footerbuttons a
{
  background-color: #37b34a;
  text-decoration: none;
  color: #fff;
  padding: 7px 20px;
  border-radius: 5px;
  transition: all ease 0.3s;
}


.footer .footerright .footerlinks .linkbox
{
  height: 30px;
  width: 30px;
  background-color: #37b34a;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  cursor: pointer;
}
.footer .footerright .footerlinks .linkbox a
{
  text-decoration: none;
}
.footer .footerright .footerlinks .linkbox i
{
  color: #fff;
  font-size: 20px;
}

.footer .rights p
{
  margin-bottom: 0;
}

#bookdemo
{
  display: none;
}

#contactus
{
  display: none;
}
/* direct mail page */

.herobanner
{
  height: 40vh;
  width: 100%;
  background-image: url(../assets/images/direct-mail-bg.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.herobanner::after
{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
 background: #000000;
background: linear-gradient(90deg, rgba(0, 0, 0, 1) 32%, rgba(255, 255, 255, 0) 100%, rgba(255, 255, 255, 0) 100%);
}

.herobanner .bannerdiv
{
  position: relative;
  z-index: 10;
  top: 20%;
}

.herobanner .bannerdiv h2
{
  font-size: 30px;
  font-weight: 600;
  color: #fff;
}

.herobanner .bannerdiv p
{
  color: #ffffff9a;
  width: 70%;
}

.matricsimg img
{ 
 border-radius: 10px;
}
/* .whyb2b .sectionheadings h2
{
  color: #28749e;
} */

.whyb2b .sectionheadings p
{
  color: #000000;
}
.whyb2b .contentdiv .contentbox .content .box
{
  height: 70px;
  width: 70px;
  background-color: #28749e;
  border-radius: 10px;
  flex: 0 0 auto
}

.whyb2b .contactbox h4
{
  color: #28749e;
}

.whyb2b .contentdiv .contentbox .content .box i
{
  font-size: 40px;
  color: #fff;
}

@media screen and (max-width:768px) {
  .herobanner
{
  height: 60vh;
  width: 100%;
}
}
@media screen and (max-width:500px) {
    .herobanner
{
  height: 80vh;
  width: 100%;
}
  .whyb2b .contentdiv .contentbox .content .box
{
  height: 50px;
  width: 50px;
}
.whyb2b .contentdiv .contentbox .content .box i
{
  font-size: 20px;
  
}
}



/* why it works */
.whyworksslider .swiper-slide
{
  background-color: #fff;
  height: auto !important;
  display: flex;
  
}
.whyworkscard
{
  background-color: #fff;
  border-radius: 10px;
  transition: all ease 0.3s;
  height: 100%;
  position: relative;
}
.whyworkscard .circle
{
  height: 60px;
  width: 60px;
  background-color: #28749e;
  border-radius: 50%;
  transition: all ease 0.3s;
}
.circle i
{
  color: #fff;
  transition: all ease 0.3s;
}

.whyworkscard h4
{
  color: #28749e;
  transition: all ease 0.3s;
}
.whyworkscard p
{
  color: #000;
  transition: all ease 0.3s;
}
.whyworkscard .linebox
{
  position: absolute;
  bottom: 10px;
}
.whyworkscard .line
{
  position: relative;
  transition: all ease 0.3s;
}
.whyworkscard .line::after
{
content: "";
position: absolute;
top: 0;
left: 0;
height: 1px;
width: 70px;
background-color: #28749e;
transition: all ease 0.3s;
}

.whyworkscard .linetext
{
  color: #28749e;
  transition: all ease 0.3s;
}
.whyworkscard:hover
{
  background-color: #28749e;
}
.whyworkscard:hover .circle
{
   background-color: #fff;
}

.whyworkscard:hover .circle i
{
  color: #28749e;
}
.whyworkscard:hover h4
{
  color: #fff;
}
.whyworkscard:hover p
{
  color: #fff;
}
.whyworkscard:hover .linetext
{
  color: #fff !important;
  transform: translateX(80px);
  transition: all ease 0.3s;
}

.whyworkscard:hover .line::after
{
  background-color: #fff;
  transform: translateX(-25px);
}

.swiper-button-prev,
.swiper-button-next {
  position: relative !important;
  inset: 0;
  bottom: 0;
  background-color: #28749e;
  color: white;
  height: 40px !important;
  width: 40px !important;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
  font-size: 18px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.swiper-button-next:after
{
  font-size: 15px !important;
  color: #fff;
}
.swiper-button-prev:after
{
  font-size: 15px !important;
  color: #fff;
}
.swiper-button-prev:hover,
.swiper-button-next:hover {
  background-color: #28749e;
  transform: scale(1.1);
}

/* our Strategic Framework */

.framework
{
background-color: #fff;
}

/* .framework .sectionheadings h2
{
  color: #28749e;
} */

.frameworkbox
{
  background-color: #F1F5F9;
  border-radius: 10px;
  border-top: 4px solid #28749e;
  height: 100%;
}

.frameworkbox h4
{
  font-weight: 500;
  color: #28749e;
}

/* services in direct mail */

.directmailservices
{

}

/* .directmailservices .sectionheadings h2
{
  color: #28749e;
} */

.directmailcard
{
  background-color: #fff;
  border-radius: 10px;
}

.directmailcard hr
{
  color: #28749e;
  height: 4px !important;
  border-radius: 50px;
}

.directmailcard h4
{
  color: #28749e;
}

/* where to use direct mail */

.whentouse
{
  background-color: #28749e;
}

/* .whentouse .sectionheadings h2
{
  color: #fff;
} */

.whentousebox
{
  background-color: #fff;
  border-radius: 10px;
}

.whentousebox .icon
{
  height: 80px;
  width: 80px;
  background-color: #28749e;
  border-radius: 10px;
  flex: 0 0 auto;
}
.whentousebox .icon i
{
 font-size: 50px;
 color: #fff;
}

.whentouse .content h4
{
  color: #28749e;
}

.whentouseimg
{
  border-radius: 10px;
  overflow: hidden;
}
.whentouseimg img
{
  border-radius: 10px;
}

/* multichannel integration */

/* 
.integration .sectionheadings h2
{
  color: #28749e;
} */

.integration .sectionheadings p
{
  color: #000000;
}

.integration .table thead
{
  border-bottom: 1px solid #28749e;
  color: #28749e;
}


/* .industriesserve .sectionheadings h2
{
  color: #28749e;
} */

.industryslider .swiper-slide
{
  overflow: hidden;
}

.industriesserve .industrybox
{
  display: flex;
  align-items: start;
  justify-content: end;
  flex-direction: column;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
   transition: all ease;
   min-height: 250px;
   height: 100%;
}

.industriesserve .industrybox::after
{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: #000000;
background: linear-gradient(0deg, rgba(0, 0, 0, 1) 32%, rgba(255, 255, 255, 0) 100%, rgba(255, 255, 255, 0) 100%);
}

.industrycontent
{
  position: relative;
  z-index: 10;
  bottom: 0;
}
.industriesserve  .industrybox h4
{
  color: #fff;
}
.industriesserve  .industrybox .industrypara
{
  max-height: 0;
  opacity: 0;
  color: #fff;
  transition: all ease;
}
.industriesserve .industrybox:hover .industrypara
{
 max-height: 100%;
opacity: 1;
}

.industriesserve .industrybox:hover::after
{
 background: #000000e0 !important;
}


#industry1
{
  background-image: url(../assets/images/Direct-mail/techandsoft.webp);
 width: 100%;
}

#industry2
{
  background-image: url(../assets/images/Direct-mail/profservices.webp);
 width: 100%;
}

#industry3
{
  background-image: url(../assets/images/Direct-mail/manufacture.webp);
 width: 100%;
}

#industry4
{
  background-image: url(../assets/images/Direct-mail/gifts.webp);
 width: 100%;
}

#industry5
{
  background-image: url(../assets/images/Direct-mail/realestate.webp);
 width: 100%;
}

#industry6
{
  background-image: url(../assets/images/Direct-mail/financial.webp);
 width: 100%;
}

#industry7
{
  background-image: url(../assets/images/Direct-mail/marketing.webp);
 width: 100%;
}
#industry8
{
  background-image: url(../assets/images/Direct-mail/training.webp);
 width: 100%;
}
#industry9
{
  background-image: url(../assets/images/Direct-mail/publishing.webp);
 width: 100%;
}
#industry10
{
  background-image: url(../assets/images/Direct-mail/staffing.webp);
 width: 100%;
}

/* campaign types */
/* 
.campaign-types .sectionheadings h2
{
  color: #28749e;
  text-align: center;
} */
 .camapigncard
{
  border-radius: 10px !important;
  background-color: #fff !important;
  transition: all ease 0.3s;
}
.campaigncards  .camapigncard h4
{
  color: #28749e;
}

 .camapigncard:hover
{
  background-color: #28749e;
  transform: translateY(-10px);
}


/* direct mail in india */

/* .direct-mail-india .sectionheadings h2
{
  color: #28749e;
} */

.direct-mail-india .sectionheadings p
{
  text-align: center !important;
  width: 100%;
}

.startcampaign
{
  color: #28749e;
}

.startcampaignheading
{
  color: #28749e;
}
.startcampaign ul li i
{
  color: #28749e !important;
}

.directmailbtn
{
  border: none;
  background-color: #28749e;
  text-decoration: none;
  color: #fff;
  display: flex;
  align-items: center;
  border-radius: 50px;
  transition: all ease 0.3s;
}
.directmailbtn:hover
{
  color: #fff;
  background-color: #37b34a;
}

.directmailbtn1
{
   border: 1px solid #28749e;
  background-color: transparent;
  text-decoration: none;
  color: #28749e;
  display: flex;
  align-items: center;
  border-radius: 50px;
  transition: all ease 0.3s;
}

.directmailbtn1:hover
{
  background-color: #37b34a;
  border: #37b34a;
  color: #fff;
}

.directmaillink
{
  color: #28749e;
}

/* 404 page */
   .errorhero
    {
        height: 70vh;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
   .errorhero h1 {
      font-size: 8rem;
      margin: 0;
      color: #28749e;
    }

    .errorhero h2 {
      margin: 10px 0;
      font-size: 2rem;
    }

    .errorhero p {
      margin-bottom: 20px;
      color: #555;
      text-align: center;
    }
   
    .errorhero a
    {
      text-decoration: none;
      color: #28749e;
    }

    @media screen and (max-width:768px) {
     .errorhero h1 {
      font-size: 4rem;
    }
    }
