:root {
  /* Colors */
  --themecolor: #af0909;
  --secondary-color: #f9e8e8;
  --white: #fff;
  --dark: #090b0e;
  --text-light: #111;
  --bg-light: #fdf7f7;
  --bg-lighter: #f7f6f6;
  --border-dark: #585858;
  --border-light: #e1e3e8;

  /* Typography */
  --font-family: "Figtree", sans-serif;
  --heading-1: 64px;
  --heading-2: 44px;
  --heading-3: 24px;
  --text-lg: 20px;
  --text-md: 18px;
  --text-base: 16px;

  --line-h-xl: 70px;
  --line-h-lg: 52px;
  --regular: 400;
  --medium: 500;
  --semibold: 600;
  --bold: 700;

  --mb-base: 16px;

  /* Shadows */
  --shadow-lg: rgba(0, 0, 0, 0.2) 0 20px 30px;

  /* Transitions */
  --transition: all 0.4s;
}
.m-auto{ margin: 0 auto;}
.font20 {
  font-size: 20px;
}
p {
  line-height: 27px; margin: 0 0 15px 0;
}
.d-flex {
  display: flex !important;
}
.ps-4 {
  padding-left: 30px;
}
.container {
  max-width: 1320px;
  margin: 0 auto;
}
*,
::after,
::before {
  box-sizing: border-box;
}
.text-center {
  text-align: center !important;
}
.align-items-center {
  align-items: center !important;
}
.justify-content-between {
  justify-content: space-between !important;
}
.justify-content-center {
  justify-content: center !important;
}
.flex-row-reverse {
  flex-direction: row-reverse !important;
}
.position-relative {
  position: relative;
}
.gapy-4 {
  gap: 17px 0;
}
.gap2{gap: 20px}
.mt-0 {
  margin-top: 0px !important;
}
.mx-auto {
  margin: auto !important;
}
.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
}
.col-md-6 {
  flex: 0 0 auto;
  width: 50%;
}
.col-md-3 {
  flex: 0 0 auto;
  width: 25%;
}
.col-md-8 {
  flex: 0 0 auto;
  width: 66.66666667%;
}
.col-md-4 {
  flex: 0 0 auto;
  width: 33.33333333%;
}
.col-md-7 {
  flex: 0 0 auto;
  width: 58.33333333%;
}
.col-md-5 {
  flex: 0 0 auto;
  width: 41.66666667%;
}
.col-md-9 {
  flex: 0 0 auto;
  width: 75%;
}
.col-md-2 {
  flex: 0 0 auto;
  width: 16.66666667%;
}
.col-md-10 {
  flex: 0 0 auto;
  width: 83.33333333%;
}
.py-4 {
  padding: 30px 0px;
}
.py-3 {
  padding: 20px 0px;
}
.mb-2{ margin-bottom: 15px;}
.mb-3{ margin-bottom: 20px;}
.p-3 {
  padding: 20px !important;
}
.radius-10 {
  border-radius: 10px;
}
.bgwhite {
  background-color: var(--white);
}
.py-5 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}
.m-0 {
  margin: 0px !important;
}
.p-0 {
  padding: 0px !important;
}
.pt-0 {
  padding-top: 0px !important;
}
.row > * {
  flex-shrink: 0;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}
body {
  font-family: var(--font-family);
  font-size: var(--text-base);
  color: var(--text-light);
  font-weight: var(--regular);
  overflow-x: hidden; margin: 0;
}
a {
  text-decoration: none;
  transition: var(--transition);
}
img {
  max-width: 100%;
  height: auto;
}
.bglight {
  background-color: var(--bg-light);
}
.sp {
  padding: 80px 0px;
}
.w-100{
  width: 100%;
}
/* header css */
.header-app {
  position: absolute;
  width: 100%; top: 0;
  z-index: 9999;
  transition: all 0.4s;
  padding: 0;
}
.header-app.fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  transform: translate3d(0, 0, 0);
  z-index: 111;
  animation-name: fade-in-down;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  background: #fff;
  transition: all 0.4s;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 20px 30px;
}
@keyframes fade-in-down {
  0% {
    transform: translate3d(0, -50px, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
.header-elements {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  transition: var(--transition);
}
.main-navigation {
  display: flex;
  justify-content: center;
  align-items: center;
}
.main-navigation > ul {
  display: flex;
  margin: 0;
}
.p_num a {
  border: 1px solid #585858;
  padding: 10px 20px;
  border-radius: 30px;
  color: #282828;
  font-weight: 600;
  display: inline-block;
  margin-left: 20px;
}
.p_num a:hover {
  background: var(--themecolor);
  color: #fff;
  border: 1px solid #fff;
}
.main-navigation ul{ list-style: none; padding: 0;}
.main-navigation ul li{ margin: 0;}
.main-navigation > ul > li > a.dd-drops{ padding-right: 15px;}
.main-navigation > ul > li > a {
  font-size: 18px;
  color: #111;
  font-weight: 400; position: relative;
  display: block;
  padding: 30px 11px;
}
.main-navigation > ul > li > a i {
  font-size: 13px;
}
.main-navigation > ul > li > .megamenu {
  padding: 20px;
  position: absolute;
  z-index: 1;
  width: 100%;
  background: #fff;
  left: 0;
  display: none;
  top: 77px;
  border-radius: 0 0 6px 6px;
  box-shadow: 0 9px 18px -4px hsl(0deg 0% 0% / 18%);
  border: 1px solid #ddd8d8;
  border-top: 0;
}
.main-navigation > ul > li:hover > .megamenu {
  display: block;
}
.megamenu .menu-title {
  padding-left: 10px;
}
.menu-head-box {
  position: relative;
  width: 100%;
  display: block;
}
.menu-links-info {
  padding-left: 0;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 9px;
}
.menu-links-info li {
  margin: 0;
  padding: 0;
  position: relative;
  cursor: pointer;
}
.menu-links-info li a {
  font-size: 18px;
  font-weight: 500;
  border-radius: 6px;
  padding: 19px 6px 18px 39px;
  box-shadow: 0 0.4rem 1.1rem #ecf7ff;
  border: 1px solid #e5e2e2;
  line-height: 1.2;
  color: #000;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-content: center;
  background: #f5f5f5;
}
.menu-links-info li a:hover {
  background-color: #f5f5f5;
  border-radius: 4px;
}
.menu-links-info li a img {
  position: absolute;
  left: 17px;
  top: 18px;
}
.menu-links-info li.active a .menu-icon,
.menu-links-info li a .menu-icon:hover {
  filter: brightness(0) saturate(100%) invert(18%) sepia(88%) saturate(4000%)
    hue-rotate(340deg) brightness(90%) contrast(90%);
}
.menu-links-info li a:hover,
.menu-links-info li.active a {
  border: 1px solid var(--themecolor);
  background: #f9e8e8;
  color: var(--themecolor);
}
.menu-links-info li.active a::before {
  content: "";
  position: absolute;
  left: 47%;
  bottom: -8px;
  background: #f9e8e8;
  border: 1px solid var(--themecolor);
  width: 15px;
  height: 15px;
  transform: rotate(42deg);
  border-top: 0;
  border-left: 0;
}

.dropdown_menus .menu {
  padding: 20px;
  position: absolute;
  z-index: 1;
  width: 250px;
  background: #fff;
  left: 0;
  top: 77px;
  display: none;
  border-radius: 0 0 6px 6px;
  box-shadow: 0 9px 18px -4px hsl(0deg 0% 0% / 18%);
  border: 1px solid #ddd8d8;
  border-top: 0;
}
.dropdown_menus:hover .menu {
  display: block;
}
.dropdown_menus .menu li a {
  color: #111;
  display: block;
  padding: 4px 0;
  font-size: 16px;
  line-height: 25px;
}
.dropdown_menus .menu li a:hover {
  color: var(--themecolor);
  padding-left: 10px;
}

.dd_menu {
  position: relative;
  width: 100%;
  background: transparent;
  padding: 20px 0;
  display: block;
}
.dd_menu_list {
  display: none;
  animation: slideDown 0.3s ease;
  width: 100%;
  padding: 15px 0;
  box-sizing: border-box;
}
.dd_menu_list:first-child {
  display: block;
}
.seo-list > li {
  width: 100%;
}
.seo-list > li > a:hover,
.seo-list > li.active > a {
  background: #fbfbfb;
  color: #000;
  border: 1px solid #d7d7d7;
  font-weight: 600;
}
.seo-list li a {
  border: 1px solid #e9e9e9;
  border-radius: 6px;
  background: #fcfcfc;
  width: 100%;
  cursor: pointer;
  color: #2e2d2d;
  font-size: 16px;
  display: inline-block;
  transition: ease all 0.4s;
  padding: 9px 0 9px 22px;
  position: relative;
  line-height: 24px;
}
.seo-list li.has-submenu.active a::after {
  content: "";
  position: absolute;
  right: -33px;
  top: 37%;
  background: #fcfcfc;
  border: 1px solid #e9e9e9;
  width: 15px;
  height: 15px;
  transform: rotate(134deg);
  border-top: 0;
  border-left: 0;
}
.seo-list > li > a:before {
  display: none;
}
.sub-menu-level-3 li {
  float: left;
  width: 33%;
}
.sub-menu-level-3 {
  padding: 0 15px;
}
.sub-menu-level-3 {
  display: none;
  width: 100%;
  background: #fcfcfc;
  height: 100%;
  padding: 8px 28px!important;
  border: 1px solid #e9e9e9;
  border-radius: 4px;
}
.sub-menu-level-3 li a {
  color: #000;
  font-size: 16px;
  display: inline-block;
  transition: var(--transition);
  padding: 9px 0 9px 22px;
  background: url(https://www.brainpulse.com/wp-content/themes/brainpulse/assets/img/menu-link-arrow.png)
    no-repeat 0 16px;
  position: relative;
  line-height: 24px;
}
.sub-menu-level-3 li a:hover {
  color: var(--themecolor);
  background: url(https://www.brainpulse.com/wp-content/themes/brainpulse/assets/img/menu-link-arrow-red.png)
    no-repeat 7px 16px;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    -o-transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.seo-menu {
  width: 100%;
}
.seo-menu h3 {
  margin: 0 0 15px 0;
  font-size: 18px;
  font-weight: 600;
  color: #333;
}
.seo-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.dd-drops:before{     border: 1px solid #272525;
    width: 7px;
    height: 7px;
    position: absolute;
    right:3px;
    top: 36px;
    content: '';
    border-top: 0;
    border-left: 0;
    transform: rotate(45deg);}
/* header css end */

.hero-section {
  position: relative;
  padding: 180px 0 120px;
}
.tagline {
  position: relative;
  color: var(--themecolor);
  font-weight: 500;
  line-height: var(--line-h-sm);
  margin-bottom: var(--mb-base);
}
.tagline::after {
  position: absolute;
  content: "";
  left: 0;
  top: -6px;
  width: 20px;
  height: 2px;
  transition: all 0.4s;
  background: var(--secondary-color);
}
.hero-section h1 {
  font-size: var(--heading-1);
  font-weight: var(--bold);
  line-height: var(--line-h-xl);
  color: var(--dark);
  margin-bottom: var(--mb-base);
}
.hero-btn a {
  display: inline-block;
  margin-top: 32px;
  font-size: var(--text-md);
  line-height: 18px;
  font-weight: var(--bold);
  color: var(--white);
  background: var(--themecolor);
  padding: 16px 24px;
  transition: var(--transition);
  border: 1px solid var(--themecolor);
  border-radius: 30px;
}
.hero-btn a:hover {
  background: var(--dark);
  transform: translateY(-5px);
  border-color: var(--white);
}

h2,
h3 {
  color: var(--dark);
  font-weight: 600;
}
h2 {
  font-size: var(--heading-2);
  margin: 15px 0 20px;
}
h3 {
  font-size: var(--heading-3);
  line-height: var(--line-h-md);
  margin-bottom: var(--mb-base);
}
.content-section h2 {    font-size: 32px; color: var(--themecolor);}
.about-section h3 {
  font-size: var(--text-lg);
  margin: 32px 0 8px;
}
.slist {
  padding-left: 0;
  list-style: none;
}
.slist li {    background: url(../img/tickmark-icon.png) no-repeat 0px 0px;
    background-size: 16px;
    padding-left: 28px;
    margin-top: 16px;
}

.service-cards,
.mobweb-cards {
  margin-top: 50px;
}
.service-card {
  border: 1px solid var(--border-light);
  transition: var(--transition);
  border-radius: 10px;
  background: var(--white);
  padding: 24px;
  height: 100%;
}
.service-card:hover {
  transform: translateY(-5px);
  border: 1px solid var(--themecolor);
  background: var(--bg-light);
}
.service-card .icon {
  height: 70px;
  width: 70px;
  margin-bottom: 30px;
  border-radius: 50%;
  background: var(--bg-light);
  transition: var(--transition);
}
.service-card:hover .icon {
  transform: rotateY(180deg);
}

.mobweb-card {
  position: relative;
  z-index: 1;
  transition: var(--transition);
  padding: 26px 24px 10px 46px;
  border-radius: 8px;
  background: var(--bg-lighter);
  margin: 25px 0px 0px 40px;
}
.mobweb-card::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 1px;
  left: 50%;
  top: 0;
  background: var(--secondary-color);
  transition: var(--transition);
  z-index: -1;
  visibility: hidden;
  opacity: 0;
}
.mobweb-card:hover::before {
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 1;
  visibility: visible;
}
.mobweb-card:nth-child(even) {
  margin: 25px 0px 0px 5px;
}
.mobweb-card .icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--bg-light);
  display: grid;
  place-items: center;
  position: absolute;
  left: -30px;
  top: 50%;
  transform: translateY(-50%);
  transition: var(--transition);
}
.mobweb-card:hover .icon {
  transform: translateY(-50%) rotateY(180deg);
  background: var(--white);
}
.mobweb-card h3 {
  font-size: var(--text-lg);
}

.yr25grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 50px;
}
.yr25-card {
  padding: 20px 40px;
  border-right: 1px solid var(--border-light);
  text-align: center;
  font-size: 17px;
  color: var(--dark);
}
.yr25-card:nth-child(even) {
  border-right: none;
}
.yr25-card h3 {
  font-size: 19px;
  margin-bottom: 13px;
  color: var(--themecolor);
  text-align: center;
  background: #f2f2f2;
  display: inline-block;
  padding: 7px 20px;
  border-radius: 30px;
  font-weight: 700;
}

.blog-cards {
  margin-top: 50px;
}
.blog-cards .img-card {
  overflow: hidden;
  height: 250px;
  border-radius: 10px;
}
.blog-cards .img-card img {
  width: 100%;
  height: 100%;
  object-position: center;
  object-fit: cover;
  transition: var(--transition);
}
.blog-cards .img-card:hover img {
  transform: scale(1.1) rotate(-4deg);
}
.blog-cards .blog-content {
  border-radius: 10px;
  padding: 24px 20px;
  position: relative;
  margin: -110px 30px 0;
  background: var(--white);
  border: 1px solid var(--border-light);
}
.blog-cards .blog-content h3 a {
  transition: var(--transition);
  color: var(--themecolor);
  display: block;
  margin-top: 9px;
  font-size: 20px;
}
.blog-cards .blog-content h3 a:hover {
  color: #0d6efd;
  transform: translateY(-5px);
}

.ft-box ul {
  list-style: none;
  padding: 0;
}
.ft-box ul li a {
  display: block;
  padding: 8px 0;
  color: #3c3c3c;
}
.ft-box ul li a:hover,
.copyright-area ul li a:hover {
  color: var(--themecolor);
  padding-left: 10px;
  transition: var(--transition);
}
.copyright-area ul {
  padding: 0; list-style: none;
  display: flex;
  gap: 16px;
}
.copyright-area ul li a {
  color: var(--dark);
  display: block;
  padding: 4px;
}
.copyright-area {
  padding: 30px 0 24px 0;
  border-top: 1px solid #e5e7eb;
  margin-top: 50px;
}
.footer3-section-area {
  margin-top: 60px;
}

.ft-box .get-in-touch ul li a {
  display: flex;
  align-items: flex-start;
}
.ft-box .get-in-touch ul li a img {
  margin-right: 10px;
}
.request-call-back {
  position: fixed;
  right: 0;
  bottom: 0;
  display: flex;
  flex-wrap: wrap;
  z-index: 152;
}
.cta_btn { position: fixed; left: 0; bottom: -5px; width: 100%; z-index: 123; display: none;}
.sticky_btn {
  position: fixed;
  right: 20px;
  bottom: 40%;
  z-index: 12;
  background: #e1e0e0;
  width: 59px;
  padding: 9px 9px;
  border-radius: 30px;
}
.sticky_btn .btn4 {
  text-align: center;
  background: var(--themecolor);
  position: relative;
  color: #fff;
  cursor: pointer;
  border: 0;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  font-size: 20px;
  margin: 3px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.sticky_btn .btn4:before {
  background: url(../img/sprite-img.png) no-repeat;
  content: "";
  width: 30px;
  height: 30px;
  display: block;
}
.sticky_btn .btn4.call_back_btn:before {
  background-position: -9px -3px;
}
.sticky_btn .btn4.wts_btn:before {
  background-position: -9px -40px;
}

.btn4 .bp-tooltip {
  position: absolute;
  right: 51px;
  width: 141px;
  line-height: 14px;
  font-size: 13px;
  text-align: center;
  background: #333;
  padding: 6px 15px 8px;
  z-index: 99;
  border-radius: 4px;
  transform-origin: 50% 0;
  transform: scaleY(0) translateZ(0);
  opacity: 0;
  transition:
    transform 0.3s,
    opacity 0.3s;
  top: 9px;
  display: block;
}
.btn4:hover .bp-tooltip {
  opacity: 1;
  transform: scaleY(1) translateZ(0);
}
.request-call-fields {
  position: absolute;
  bottom: 0;
  z-index: 23;
  background: #fff4f4;
  transform: translateY(329px);
  width: 360px;
  right: 0;
  transition: 0.4s;
  padding: 20px;
  box-shadow: 0 0 12px 0 #000;
  border-radius: 6px 6px 0 0;
}
.request-call-fields.op {
  transform: translateY(0);
}
.request-call-fields .rqt {
  font-size: 21px;
  margin: 0 0 11px;
  color: var(--themecolor);
  font-weight: 600;
}
.request-call-fields p {
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 23px;
  color: #111;
}
.request-call-fields #countrycode {
  width: 93px;
  padding: 3px;
  font-size: 13px;
  height: 40px;
  border: 1px solid #ccc;
  float: left;
  border-right: 0;
}
.request-call-fields .textboxS3 {
  width: 210px;
  height: 40px;
  border: 1px solid #ccc;
  font-size: 13px;
  padding: 2px 4px 2px 12px;
  color: #111;
  background: #fff;
}
.sbt-btn11 {
  width: 100%;
  background: #b21414;
  border: 1px solid #ccc;
  padding: 10px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 5px;
  color: #fff;
  margin-top: 12px;
  font-size: 17px;
}
.sticky_btn .btn4.___mb {
  display: none;
}
.sticky_btn .btn4.wts_btn {
  background: #29a71a;
}

.marquee-section {
  width: 100%;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: scrollMarquee 25s linear infinite;
}
.marquee-section:hover .marquee-track {
  animation-play-state: paused;
}
.marquee-item {
  flex-shrink: 0;
  padding: 0 20px;
}
.marquee-item img {
  height: 60px;
  width: auto;
  display: block;
  transition: 0.3s ease;
}
.marquee-item img:hover {
  transform: scale(1.05);
}
@keyframes scrollMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.content-area {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.images-content {
  display: flex;
  gap: 10px;
  align-items: center;
}
.images-content img {
  width: 62px;
  height: 62px;
  border-radius: 100%;
}

.circle-shape:before {
  position: absolute;
  top: 50%;
  margin-top: -250px;
  width: 500px;
  content: "";
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(196, 0, 0, 0.12) 0%,
    transparent 70%
  );
  filter: blur(70px);
  pointer-events: none;
  -webkit-filter: blur(70px);
}
.circle-shape.possition-left:before {
  left: -120px;
}
.circle-shape.possition-right:before {
  right: -120px;
}

.circle-shape2:after {
  position: absolute;
  top: 50%;
  width: 500px;
  margin-top: -250px;
  content: "";
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(196, 0, 0, 0.12) 0%,
    transparent 70%
  );
  filter: blur(70px);
  pointer-events: none;
}
.circle-shape2.possition-left:after {
  right: -120px;
}
.mob-hamburger,
.mob-sidebar {
  display: none;
}

.social_links{    list-style: none;}
.social_links img{ width: 25px;}

/* =========================
   ROW
========================= */
.timeline-row{
  display:flex;
  align-items:center;
  margin:0px 0;
  position:relative;
}

.timeline-row.left{justify-content:flex-start;}
.timeline-row.right{justify-content:flex-end;}

.col_bx{
  width:50%;
  position:relative;
}

/* DOT */
.timeline-dot{
  position:absolute;
  left:50%;
  top:50%;
  transform:translate(-50%,-50%);
  width:14px;
  height:14px;
  background:#fff;
  border:3px solid #111;
  border-radius:50%;
  z-index:10;
}

/* CONNECTOR */
.timeline-row.left .col_bx:first-child::after,
.timeline-row.right .col_bx:last-child::after{
  content:"";
  position:absolute;
  top:50%;
  width:60px;
  border-top:2px dashed #ccc;
}

.timeline-row.left .col_bx:first-child::after{ right: 0px;}
.timeline-row.right .col_bx:last-child::after{ left: 0px;}

/* CARD */
.timeline_card{
  background:#fff; overflow: hidden;
     padding: 0;
    border-radius: 10px;
    width: 90%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
}
.timeline_card img {
      width: 167px; height: 100%;
    border-radius:0 0 0 10px;object-fit: cover;
}
.timeline_card .year{    background:var(--themecolor);
    color: #fff;
    padding: 1px 8px;
    font-size: 16px;
    border-radius: 10px 0 0 0;
    display: inline-block;
    margin-bottom: 10px;
    position: absolute;
    left: 0;
    top: 0;
    font-weight: 800;
}

.card_content h3{margin-bottom:8px; font-size: 22px;}
.card_content p{    color: #2f2d2d;  font-size: 16px;    line-height: 24px;}



.top-categories ul li a:hover{ color: var(--themecolor);}

.post-info{  height: 100%;   border: 1px solid #dbd4d4;
    box-shadow: 0px 0px 4px 0px #ddd5d5;
    border-radius: 10px;
    overflow: hidden;
    margin: 10px 0px;}
    .post-content-data p{    min-height: 128px;}
.post-info figure{ position: relative; height: 200px; overflow: hidden; margin: 0;}
.post-content-data{ padding: 25px 25px 5px 25px;}
.post-content-data h2{ margin: 0; font-size: 23px;}
.post-content-data h2 a{ color: #111;}
.post-content-data .dt{    font-size:15px;
    margin-bottom: 19px;
    display: flex;
    justify-content: space-between;
}
.author-post-dt{    background: #f9e8e8;
    text-align: center;
    border: 1px solid #ffbfbf;
    border-radius: 30px;
    font-size: 14px;
    font-style: italic;
    font-weight: 500;}
.post-info  .past-cat-name {
    background: #ffffff;
    position: absolute;
    display: block;
    bottom: -1px;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, 0%);
    border-radius: 11px 7px 0 0;
    border: 1px solid #bc293c;
    border-bottom: 0;
}
.post-info  .past-cat-name  a{text-transform: uppercase;
    font-size: 14px;
    font-weight: 700;
    padding: 1px 20px;
    display: block;}
.p-pic {
    position: relative;
    overflow: hidden;
    border: solid 1px #a3a1a1;
    margin: 10px 0px;
    border-radius: 5px;
    box-shadow: 0px 0px 5px 2px #ccc;
}.p-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / 78%);
    padding: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: perspective(700px) rotateX(40deg);
    visibility: hidden;
    opacity: 0;
    color: #fff;
    transition: all .5s;
}.p-pic:hover .p-wrap {
    transform: perspective(700px) rotateX(0deg);
    visibility: visible;
    opacity: 1;
}
.card-list {
    padding: 14px 10px 10px 10px;
    margin: 14px 0;
    text-align: center;
    height: 96%;
    width: 100%;
    border-radius: 15px;
    box-shadow: rgb(100 100 111 / .2) 0 7px 29px 0;
    position: relative;
}
.newcard-head {    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid #e9e9e9;
    padding-bottom: 7px;
    margin-bottom: 21px;
}
.newcard-head figure {
    width: 70px;
    height: 70px;    margin: 0;
    flex-shrink: 0;
}
.newcard-head h3 a {font-size: 20px;
    color: #323131 !important;
}
.card-list p {
    padding: 0 10px;
}.seo_companies {
    display: flex;
    width: 100%;
    gap: 10px;
    margin: 20px 0 30px;
}
.seo_box {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.seo-1 {
    width: 50%;
    border-right: 1px solid #d9d9d9;
    border-bottom: 1px solid #d9d9d9;
    padding: 22px;
    line-height: 29px;
    text-align: center;
}
.seo-1 h3 {    font-size: 20px;
    padding: 32px 2px 8px;
    position: relative;
    text-align: center;
    margin: 0 0 8px;
    font-weight: 700;
}
.custome-_hr {
    background-color: #fff;
    padding: 0;
    border: 0;    margin: 38px 0px;
    height: 1px;
    width: 100%;
    background-image: linear-gradient(to right, #fff0, rgb(0 0 0 / .75), #fff0);
}.seo-1:nth-child(3) {
    border-bottom: 0;
}.seo-1:nth-child(4) {
    border: none;
}
.customise_seo_pack {
    display: flex;
    justify-content: space-between;
    float: left;
    padding: 0 5px 22px;
    width: 100%;
    margin: 15px 0;flex-wrap: wrap;
}
.four-box {
    width: 23%;
    text-align: center;
    padding: 27px 16px;
    border-radius: 6px;
}
.four-box.fb1 {
    background: #fff2e7;
    border: 1px solid #ffc99b;
}

.four-box.fb2 {
    background: #f5f5f5;
    border: 1px solid #e1e1e1;
}.four-box.fb3 {
    background: #fff7e2;
    border: 1px solid #ffedbd;
}.four-box.fb4 {
    background: #f9f9f9;
    border: 1px solid #eaeaea;
}
.four-box img {
    background: #fff;
    border-radius: 50%;
    padding: 5px;
    width: 25%;
    margin-bottom: 7px;
}.four-box .price_month {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}.four-box strong {
    font-size: 22px;
    margin-right: 4px;
}
.four-box h3 {
    color: #c43131;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
}

.content-section ul,.content-section ul li{ list-style:disc;}
.content-section ul{ padding:0 0 20px 20px;}
.content-section ul li{ margin: 5px 0px;}

.inner-banner-section {
    background: linear-gradient(90deg, rgb(255 0 0 / 5%) 0%, rgb(255 80 80 / 9%) 50%, rgb(255 0 0 / 8%) 100%);
    backdrop-filter: blur(10px);
    margin-top: 77px;
    padding-bottom: 60px;
    padding-top: 60px;
}
.inner-banner-section h1{
    font-size:55px; margin-top: 0;
    color: #000;
    margin-bottom: 18px;
}
.breadcrmb a{ color: #111;}
.top-categories ul {
    display: flex;
    margin: 0 auto; list-style: none;
    padding: 0;
    flex-wrap: wrap;
    border-bottom: 1px solid #dddddd;
}
.top-categories ul li a {
    color: #111;
    font-weight: 500;
    padding: 17px 15px;
    font-size: 18px;
    position: relative;
    z-index: 12;
    display: flex;
    align-items: center;
    gap: 9px;
}
.sds span {
    display: block;
    text-align: center;
    font-weight: 700;
}.button_wdgt {
    border: none;
    border-radius: 30px;
    box-shadow: 0 8px 15px rgb(0 0 0 / .1);
    transition: all 0.3s ease 0s;
    cursor: pointer;
    outline: none;
    padding: 9px 36px;
    display: flex;
    gap: 7px;
    align-items: center;
    justify-content: center;
    font-weight: 400;
}.button_wdgt.whtsapp {
    background: #29a71a;
    color: #fff;
}.or_ {
    margin: 30px 0 22px;
    position: relative;
    text-align: center;
}.cta_wraaper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}.sds {
    width: 100%;
}.rqt {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #b81321;
}.form_field_ .dd5 {
    display: flex;
    justify-content: center;
    margin-bottom: 7px;
    margin-top: 26px;
}.form_field_ select {
    font-size: 15px;
    border: 1px solid #c4c4c4;
    padding: 7px;
    border-radius: 30px 0 0 30px;
}.form_field_ .textboxS3 {
    width: 100%;
    border: 1px solid #c4c4c4;
    border-left: 0;
    padding: 10px 20px;
    border-radius: 0 30px 30px 0;
    font-size: 15px;
}
.or_:before {
    background: #ececec;
    height: 1px;
    position: absolute;
    left: 0;
    top: 10px;
    content: '';
    width: 100%;
}.or_ span {
    position: relative;
    background: #fff;
    padding: 0 10px;
    border: 1px solid #e1dcdc;
    border-radius: 30px;
}.mob_whtsapp {
    display: none;
}
.custom-widget #searchsubmit {    border: 1px solid #ddced0;
    border-radius: 3px;
    width: 40px;
    background: #ffeff1
}
.custom-widget #searchsubmit img{ height: auto;}
.widget {margin:0 0 20px 0px;
    background: #fff;
    box-shadow: 0px 0px 10px 0px #e9e9e9;
    border: 1px solid #e3dddd;
    border-radius: 6px;}
  .custom-widget {margin: 20px 20px;
    background: #fff;
    box-shadow: 0px 0px 10px 0px #e9e9e9;
    border: 1px solid #e3dddd;
    border-radius: 6px;}
.widget  ul li a {padding: 10px 0 10px 38px;
    color: #505050;
    border-bottom: 1px solid #e5e5e5;
    display: block;    line-height: 24px;
    font-size: 16px;
    background: url(../img/tick-2.png) no-repeat 12px 15px;
    background-size: 16px;
}
.widget  ul li{ width: 100%; margin: 0;}
.widget  ul li strong{ font-weight: 400;}
.widget  ul {
    padding: 0;
    margin: 0 0 0 0;
    list-style: none; 
    display: flex;
    width: 100%;
    flex-wrap: wrap;
}
.widget  h3 {color: var(--themecolor);
    font-size: 19px;
    padding: 14px 0 14px 15px;
    border-radius: 3px;
    margin: 0;
    border-bottom: 1px solid #e7e3e3;
    background: #fbf8f8;
}

.widget ul li a:hover { color: #000;  background:#f2f2f2 url(../img/tick-2.png) no-repeat 18px 15px; background-size: 16px;}
.entry-meta a{ color: #111;}
.entry-meta .entry-date{ margin-right: 4px;}
.single-blog .post-thumbnail img{ width: 100%; margin-bottom: 20px;}
.single-blog h2{ font-size: 28px; color: var(--themecolor);}
ul{ padding-left: 20px;}
ul li{ margin:8px 0px;}
.search_input{    width: 100%;
    height: 42px;
    padding: 10px;
    border: 1px solid #ccc;}

@media (max-width: 768px) {
    .timeline-row{
    flex-direction:column;
    align-items:flex-start;
  }

  .col_bx{
    width:100%;
  }

 
.timeline-row.right .col_bx:last-child::after,.timeline-row.left .col_bx:first-child::after{content: unset;}
  .timeline_card{width:100%; margin: 7px 0px;}
  .four-box { width: 49%; margin: 4px 0px;}
  .sp,.hero-section {
    padding: 50px 0px;
  }
  
  .hero-section h1,
  h2 {
    font-size: 32px;
    line-height: 40px;
  }
  h3 {
    font-size: 20px;
  }
  .hero-btn a {
    margin-top: 8px;
  }
  .mobweb-card {
    margin: 25px 0px 0px 5px;
  }
  .yr25grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .yr25-card {
    border: none;
    padding: 14px;
  }
  .blog-cards .blog-content {
    margin: -110px 10px 0;
    padding: 14px;
  }
  .col-md-2,.col-md-7,
  .col-md-4,
  .col-md-8,
  .col-md-3,
  .col-md-5,
  .col-md-6,.col-md-10 {
    width: 100%;
  }
  .flex-wrap{
    flex-wrap: wrap;
  }
  .container {
    padding: 0 15px;
  }
  .site-logo img {
    width: 280px;
    height: auto;
  }
  .main-navigation,.sticky_btn .call_back_btn.btn4  { display: none;  }
  .mob-hamburger,
  .mob-sidebar {
    display: block;
  }
  .mob-hamburger {
    width: 40px;
    height: 40px;
    border: 0.5px solid var(--border-dark);
    border-radius: 6px;
    background: var(--white);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
  }
  .mob-hamburger.mob-open {
    border: none;
    background: transparent;
  }
  .mob-bar {
    width: 18px;
    height: 1.5px;
    background: #1a1a1a;
    border-radius: 2px;
    transition:
      transform 0.3s,
      opacity 0.3s;
  }
  .mob-hamburger.mob-open .mob-bar {
    background: var(--themecolor);
  }
  .mob-hamburger.mob-open .mob-bar:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
  }
  .mob-hamburger.mob-open .mob-bar:nth-child(2) {
    opacity: 0;
  }
  .mob-hamburger.mob-open .mob-bar:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
  }

  .mob-sidebar {
    position: fixed;
    height: 100vh;
    width: 100%;
    background: var(--secondary-color);
    z-index: 9999;
    left: -100%;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s;
    top: 0;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 16px;
  }

  .mob-sidebar.mob-open {
    left: 0;
    visibility: visible;
    opacity: 1;
    transition: all 0.3s;
    overflow-y: scroll;
  }

  #mob-sidebar .sub-menu {
    display: none;
  }
  #mob-sidebar .sub-menu.open-sub {
    display: block;
    margin-top: 14px;
  }
  .mob-sidebar ul {
    list-style: none;
    padding-left: 0;
  }
  .mob-sidebar ul li {        position: relative;
        padding: 9px 0 9px 0;
        margin: 0;
  }
  .mob-sidebar .submenu-button {
    transition: var(--transition);
    display: block;
    border-top: 2px solid #a1a1aa;
    border-right: 2px solid #a1a1aa;
    width: 10px;
    height: 10px;
    position: absolute;
    top: 15px;
    right: 20px;
    transform: rotate(45deg);
  }
  .mob-sidebar .submenu-button.submenu-opened {
    border-color: var(--themecolor);
    transform: rotate(136deg);
  }

  .mob-sidebar ul li a {
    color: var(--dark);
    font-weight: var(--semibold);
  }
  .mob-sidebar 
  .menu-item-has-children ul{
    padding-left: 20px;
  }
  .mob-sidebar .menu{
    margin-top: 16px;
  }
  .mob-sidebar ul .sub-menu.open-sub a {
    color: #333;
  }
  .circle-shape:before,
  .circle-shape2:after {
    display: none;
  }
  .header-app {
    position: sticky;
    top: 0;    
    box-shadow: 0 0 3px 0 #ddd8d8;
    background: var(--white);
    padding: 5px 0px;
  }
  .mob-info{margin-top: 16px; display: flex; flex-direction: column; gap: 16px;}
  .mob-info .get-started{
    margin-bottom: 30px;
    width: 100%;
    text-align: center;
    border: 1px solid #b81321;
    color: var(--themecolor);
    background: #fff;
    display: block;
    border-radius: 30px;
    padding: 16px 24px;
    font-weight: var(--semibold);
  }
.m-center { text-align: center;}
.ms-box img{ max-width: 210px; margin-top: 20px;}
.blog-cards .col-lg-6{ margin-bottom: 20px;}
.ft-box .ps-4{ padding-left: 0;}
.cta_btn{display: block;}
.copyright-area {  padding: 24px 0 54px 0; margin-top: 20px;}
.copyright-area ul {  gap: 0px; flex-wrap: wrap;}
.copyright-area ul li{ width: 100%; text-align: center;}
.sticky_btn .btn4.___dx { display: none;}
.sticky_btn .btn4.___mb {display: flex;}
.inner-banner-section{ margin-top: 0;padding-bottom: 31px; padding-top: 10px;}
.inner-banner-section h1 {font-size: 34px;}
}

