/* Ignito page css */
.ignito-hero-section h1 {
    font-size: 62px;
    text-transform: uppercase;
    font-weight: bold;
    line-height: 81px;
    color: #000000;
}
.ignito-hero-section {
    height: 825px;
    display: flex;
    align-items: center;
}
.highlight-text {
    color: #15744F;
}
.banner-icon-list li {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 400;
    color: #000;
    line-height: 29px;
}
.banner-icon-list {
    padding: 0 !important;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.cst-btn {
    padding: 17px 45px;
    text-decoration: none;
    background-color: #15744F;
    color: #fff;
    font-size: 18px;
}
.ignito-banner-btns {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.cst-btn.black {
    background-color: #000;
}


/* slider css */
/* ── SECTION WRAPPER ── */
    .feature-section {
      background: #15744F;
      display: flex;
      align-items: stretch;
      overflow: hidden;
      min-height: 110px;
      position: relative;
    }

    /* ── LEFT: FIXED TEXT ── */
    .fixed-label {
      flex-shrink: 0;
      width: 400px;
      padding: 2rem 2rem 2rem 2.5rem;
      display: flex;
      align-items: center;
      background: #15744F;
      position: relative;
      z-index: 2;
    }

    .fixed-label::after {
      content: '';
      position: absolute;
      right: -18px;
      top: 0;
      bottom: 0;
      width: 18px;
      background: linear-gradient(to right, #15744F, transparent);
      z-index: 3;
    }

    .fixed-label h2 {
      font-size: 30px;
      font-weight: 600;
      color: #ffffff;
      line-height: 1.4;
      letter-spacing: 0.01em;
    }

    .fixed-label h2 span {
      display: block;
    }

    /* ── RIGHT: SLIDING TRACK ── */
    .slider-viewport {
      flex: 1;
      overflow: hidden;
      position: relative;
      mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
      -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
      display: flex;
      align-items: center;
    }

    .slider-track {
      display: flex;
      gap: 11px;
      width: max-content;
      animation: slideLeft 28s linear infinite;
    }

    .slider-track:hover {
      animation-play-state: paused;
    }

    @keyframes slideLeft {
      0%   { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    /* ── CARD ── */
    .feature-card {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        padding: 20px 35px;
        cursor: default;
        transition: background 0.3s ease;
        flex-shrink: 0;
        background: #000;
        border-radius: 10px;
    }
    .feature-card:hover {
      background: #000;
      box-shadow: 0px 12px 28px 0px #00000033;
    }
    .card-icon {
      width: 44px;
      height: 44px;
      border-radius: 10px;
      /* background: rgba(255,255,255,0.1);
      border: 1px solid rgba(255,255,255,0.15); */
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: background 0.3s ease, transform 0.3s ease;
    }

    .feature-card:hover .card-icon {
      background: rgba(255,255,255,0.18);
      transform: scale(1.08);
    }

    .card-icon svg {
      width: 22px;
      height: 22px;
      stroke: #a8d5b5;
      fill: none;
      stroke-width: 1.6;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .card-text {
      display: flex;
      flex-direction: column;
      gap: 0.2rem;
    }

    .card-title {
      font-size: 20px;
      font-weight: 600;
      color: #fff;
      line-height: 29px;
      white-space: nowrap;
    }

    .card-sub {
      display: none;
    }

    /* ── BELOW SECTION (demo) ── */
    .below {
      padding: 4rem 2.5rem;
      background: #f2ede8;
      text-align: center;
      color: #444;
      font-size: 0.9rem;
    }


    /* ********************************* */
    .page-id-1047 .et_pb_row,
    .page-id-1285 .et_pb_row,
    .page-id-1245 .et_pb_row,
    .page-id-1220 .et_pb_row {
        max-width: 1320px !important;
    }

    .page-id-1220 .tag-row,
    .page-id-1245 .tag-row{
        gap: 10px;
    }
    .page-id-1220 .description ,
    .page-id-1245 .description {
        font-size: 20px;
    }
    .page-id-1220 .app-card-footer,
    .page-id-1245 .app-card-footer{
        font-size: 12px;
    }
    .page-id-1220 .ignito-cta-section .et_pb_module_heading,
    .page-id-1245 .ignito-cta-section .et_pb_module_heading{
        font-size: 48px;
    }

/* ── RIGHT CONTENT ── */
.right-content {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Eyebrow label */
.eyebrow {
  font-size: 24px;
  font-weight: 400;
  text-transform: uppercase;
  color: #15744F;
  margin-bottom: 1.1rem;
  padding-bottom: 0 !important;
}

/* Main heading */
.main-heading {
  font-size: 40px;
  font-weight: 700;
  color: #000;
  line-height: 1.25;
  margin-bottom: 15px;
}

/* Description paragraph */
.description {
  font-size: 20px;
  color: #000;
  line-height: normal;
  margin-bottom: 2rem;
  font-weight: 400;
}

/* ── FEATURE LIST ── */
.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  padding-left: 0 !important;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.feature-icon {
  flex-shrink: 0;
  width: 35px;
  height: 35px;
}

.feature-icon svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: #fff;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-text {
  font-size: 18px;
  color: #000;
  line-height: 1.6;
  font-weight: 400;
}

.feature-text strong {
  font-weight: 400;
  color: #111;
}

/* ── BOTTOM TAG ROW ── */
.tag-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  background: #F2F2F2;
  justify-content: center;
  padding: 16px 20px;
  border-radius: 6px;
}

.tag {
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
  color: #161616;
  padding: 0 1rem;
}

.tag:first-child {
  padding-left: 0;
}

.tag-divider {
  width: 2px;
  height: 12px;
  background: #000;
}

.main-heading br {
  display: none;
}



/* **************************************************** */
.cst-col-wd{
    width: 40% !important;
}
.cst-col-wd + .et_pb_column{
    width: 54% !important;
}

/* ── EACH TOGGLE ITEM ── */
.cst-accordion .et_pb_toggle {
  border: none;
  border-bottom: none;
  padding: 1.6rem 0.5rem;
  cursor: pointer;
  background: transparent;
}

/* ── OPEN (active) ITEM ── */
.cst-accordion .et_pb_toggle_open {
  background: transparent;
  border: none;
  padding: 0;
  margin-bottom: 0.5rem !important;
}

/* ── TITLE ROW ── */
.cst-accordion .et_pb_toggle_title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.1rem;
  font-weight: 700;
  color: #111;
  margin: 0;
  padding: 0;
}


/* Arrow icon via pseudo element */
.cst-accordion .et_pb_toggle_title::after {
  content: '→';
  font-size: 1.1rem;
  color: #2d7a50;
  font-weight: 400;
  flex-shrink: 0;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

/* ── CONTENT (only visible when open) ── */
.cst-accordion .et_pb_toggle_content {
  font-size: 0.92rem;
  color: #555;
  line-height: 1.75;
  margin-top: 1rem;
  padding: 0 0 0 20px;
}

.cst-accordion .et_pb_toggle_content p {
  margin: 0;
}

/* Hide content on closed items */
.cst-accordion .et_pb_toggle_close .et_pb_toggle_content {
  display: none;
}

/* Closed item title styling */
.cst-accordion .et_pb_toggle_close .et_pb_toggle_title {
  color: #222;
  font-weight: 700;
}

.cst-accordion .et_pb_toggle_title::before {
    display: none;
}

.cst-accordion .et_pb_toggle_open h5.et_pb_toggle_title {
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.cst-accordion h5.et_pb_toggle_title {
    background: transparent;
    padding: 18px 22px !important;
    font-size: 18px !important;
    font-weight: 600 !important;
}

.cst-accordion .et_pb_toggle_open::before {
    content: '';
    display: block;
    background: #b3ccc640;
    width: 650px;
    height: 180px !important;
    position: absolute;
    box-shadow: inset 0 0 500px 20px #ffffff;
    border-radius: 100px;
    left: -70px;
    top: -30px;
}


/* ************************************ */
.cst-future-sec h2 {
    font-size: 42px;
    font-weight: 700;
    line-height: normal;
}
.cst-future-sec h2 + p {
    color: #161616;
    font-size: 24px;
    line-height: 39px;
    font-weight: 600;
    margin-bottom: 30px;
}
.cst-future-sec li {
    color: #161616;
    font-size: 18px;
    font-weight: 400;
    line-height: 29px;
}

.cst-future-sec ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}


/* ********************************** */
/* ── SECTION ── */
.applications-section {
  background: #fff;
  padding: 5rem 2rem;
}

.applications-title {
  text-align: center;
  font-size: 42px;
  font-weight: 700;
  color: #111;
  margin-bottom: 3rem;
}

/* ── GRID ── */
.apps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1320px;
  margin: 0 auto;
}

/* Last 2 cards center mein aayenge */
.apps-grid .app-card:nth-child(4) {
  grid-column: 1 / 2;
  margin-left: auto;
  width: 100%;
}

.apps-grid .app-card:nth-child(4),
.apps-grid .app-card:nth-child(5) {
  grid-row: 2;
}

.apps-grid .app-card:nth-child(4) {
  grid-column: 1 / 2;
}

.apps-grid .app-card:nth-child(5) {
  grid-column: 2 / 3;
}

/* Center last 2 cards row */
.apps-grid {
  grid-template-rows: auto auto;
}

/* ── CARD ── */
.app-card {
  background: #FCFCFC;
  border-radius: 10px;
  padding: 2rem 1.8rem 0 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  overflow: hidden;
  border: 1px solid var(--Light-Gray, #DADADA);
}

/* ── ICON ── */
.app-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 1.4rem;
}

.app-icon svg {
  width: 100%;
  height: 100%;
}

/* ── CARD TITLE ── */
.app-card-title {
  font-size: 32px;
  font-weight: 600;
  color: #000000;
  line-height: normal;
  margin-bottom: 1.2rem;
}

/* ── LIST ── */
.app-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.app-list li {
  font-size: 20px;
  color: #000000;
  line-height: 1.5;
  position: relative;
  font-weight: 400;
}

/* ── FOOTER BAR ── */
.app-card-footer {
  background: #000;
  color: #fff;
  font-size: 13px;
  padding: 0.75rem 1rem;
  margin: 0 -1.8rem 50px;
  line-height: 1.5;
  font-weight: 600;
  min-height: 60px;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .apps-grid {
    grid-template-columns: 1fr;
  }

  .apps-grid .app-card:nth-child(4),
  .apps-grid .app-card:nth-child(5) {
    grid-column: auto;
    grid-row: auto;
  }
}

.app-list li::marker {
    font-size: 14px;
}


/* ********************************* */
/* ── SECTION ── */
.why-section {
  display: flex;
  align-items: stretch;
  max-width: 100%;
  overflow: hidden;
  min-height: 280px;
  background: #000;
  padding-right: 50px;
}

/* ── LEFT CONTENT ── */
.why-content {
  flex: 0 0 52%;
  padding: 3rem 3.5rem 3rem 170px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}

/* ── HEADING ── */
.why-title {
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  line-height: 1.35;
  margin-bottom: 1rem;
}

/* ── DESCRIPTION ── */
.why-desc {
  font-size: 24px;
  color: #FFFFFF;
  line-height: 39px;
  margin-bottom: 1.4rem;
  font-weight: 600;
}

/* ── LIST ── */
.why-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.why-list li {
  font-size: 20px;
  color: #fff;
  line-height: 29px;
  position: relative;
  font-weight: 400;
}

/* ── RIGHT IMAGE ── */
.why-image {
  flex: 1;
  overflow: hidden;
  position: relative;
}

.why-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .why-section {
    flex-direction: column-reverse;
  }

  .why-content {
    flex: none;
    padding: 2rem 1.5rem;
  }

  .why-image {
    min-height: 240px;
  }
}

/* ************************* */
.tech-overview-content-area h2{
    font-size: 42px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 20px;
}
.tech-overview-box {
    background: #f2f2f2;
    box-shadow: 0px 10px 36px 0px #00000029;
    border-radius: 10px;
    padding: 40px;
    width: 630px;
}

.tech-overview-box li {
    font-size: 20px;
    font-weight: 400;
    color: #000;
    line-height: 29px;
}

.tech-overview-box ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-bottom: 0 !important;
}

.tech-overview-content-area {
    min-height: 575px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    padding-left: 150px;
    z-index: 1;
    position: relative;
    padding-bottom: 30px;
}

.page-id-1047 .et_pb_section_7 .et-last-child,
.page-id-1285 .et_pb_section_7 .et-last-child,
.page-id-1245 .et_pb_section_7 .et-last-child,
.page-id-1220 .et_pb_section_7 .et-last-child {
    z-index: 0;
}

.page-id-1047 .et_pb_section_7 .et_pb_row,
.page-id-1285 .et_pb_section_7 .et_pb_row,
.page-id-1245 .et_pb_section_7 .et_pb_row,
.page-id-1220 .et_pb_section_7 .et_pb_row {
    background: #fff;
    border-radius: 20px;
    padding: 100px 0;
}


/* cta section */
.ignito-cta-section {
    position: relative;
    max-height: 689px;
    height: 100%;
    min-height: 689px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: baseline;
    padding-bottom: 0 !important;
    overflow: hidden;
}
.ignito-cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url(https://feneco.ca/wp-content/uploads/2026/02/ignito-cta-banner-img-new.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
    opacity: 1;
    transition: opacity 0.8s ease;
    z-index: 0;
}
.ignito-cta-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url(https://feneco.ca/wp-content/uploads/2026/02/ignito-cta-banner-hover-img-new.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
    opacity: 0;
    transition: opacity 0.8s ease;
    z-index: 0;
}
.ignito-cta-section > * {
    position: relative;
    z-index: 1;
}
@media (hover: hover) {
    .ignito-cta-section:hover::before { opacity: 0; }
    .ignito-cta-section:hover::after  { opacity: 1; }
}
.ignito-cta-section.is-active::before { opacity: 0; }
.ignito-cta-section.is-active::after  { opacity: 1; }

/* ----------------------------------------------------------------------------------------------------------------------------------------- */

.cst-cta-container {
    margin-bottom: 0 !important;
    background-color: #000;
    padding: 40px !important;
}

.ignito-cta-section .et_pb_module_heading {
    font-size: 51.23px;
    color: #fff;
    font-weight: 700;
}

.cst-cta-container ul {
    padding: 0 !important;
}

.cst-cta-container ul li {
    list-style: none;
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 24.39px;
    font-weight: 700;
    line-height: 35.37px;
    color: #fff;
}

.ignito-cta-section .et_pb_text_inner {
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
    color: #fff;
}
.ignito-cta-section .cst-btn {
    font-size: 14px !important;
}
.ignito-cta-section .cst-btn.black {
    background: #fff !important;
    color: #000 !important;
}
.cst-cta-container::before {
    content: '';
    background-image: url(https://feneco.ca/wp-content/uploads/2026/02/graphic-11.png);
    display: block;
    width: 100%;
    height: 180px;
    position: absolute;
    left: -10px;
    bottom: 0;
    background-repeat: no-repeat;
}
.cst-cta-container {
    position: relative;
    overflow: hidden;
}

/* about section */
.about-ignito-section p {
    font-size: 20px;
    font-weight: 400;
    color: #000;
    line-height: 39px;
}

/* extra */
.cst-accordion .et_pb_toggle_close {
    margin: 0 !important;
    padding-bottom: 0;
}
.cst-accordion .et_pb_toggle_open {
    margin-top: 40px;
}
.cst-accordion .et_pb_toggle:first-child {
    margin-top: 0 !important;
    padding-top: 0;
}

.cst-col-wd {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 623px;
}


/*------------------------------------------ mobile responsive css ------------------------------------------*/
body.page-id-1047,
body.page-id-1285,
body.page-id-1245,
body.page-id-1220{
    overflow-x: hidden !important;
}
@media(max-width: 767px){
    .ignito-hero-section h1{
        font-size: 32px;
        line-height: normal;
    }
    .ignito-hero-section .cst-btn {
        font-size: 14px;
        padding: 12px 24px;
    }
    .ignito-hero-section {
        height: auto;
        padding-bottom: 0;
    }
    .banner-icon-list li{
        font-size: 16px;
    }
    .fixed-label{
        width: 100%;
        justify-content: center;
        padding-bottom: 20px;
    }
    .fixed-label h2{
        font-size: 22px !important;
        text-align: center;
    }
    .feature-section {
        flex-direction: column;
    }
    .slider-viewport{
        padding-bottom: 32px;
    }
    .feature-card{
        padding: 10px 15px;
    }
    .card-title {
        font-size: 16px;
        line-height: normal;
    }
    .page-id-1047 .et_pb_section_2,
    .page-id-1285 .et_pb_section_2,
    .page-id-1245 .et_pb_section_2,
    .page-id-1220 .et_pb_section_2 {
        padding: 20px 0;
    }
    .page-id-1047 .et_pb_section_2 .eyebrow,
    .page-id-1285 .et_pb_section_2 .eyebrow,
    .page-id-1245 .et_pb_section_2 .eyebrow,
    .page-id-1220 .et_pb_section_2 .eyebrow {
        font-size: 18px;
        line-height: normal;
    }
    .page-id-1047 .et_pb_section_2 .main-heading,
    .page-id-1285 .et_pb_section_2 .main-heading,
    .page-id-1245 .et_pb_section_2 .main-heading,
    .page-id-1220 .et_pb_section_2 .main-heading {
        font-size: 28px !important;
        line-height: normal;
    }
    .page-id-1047 .et_pb_section_2 .description,
    .page-id-1285 .et_pb_section_2 .description,
    .page-id-1245 .et_pb_section_2 .description,
    .page-id-1220 .et_pb_section_2 .description {
        font-size: 18px;
        line-height: 1.6;
    }
    .feature-list .feature-text {
        font-size: 16px;
    }
    .page-id-1047 .et_pb_section_3 .cst-col-wd,
    .page-id-1285 .et_pb_section_3 .cst-col-wd,
    .page-id-1245 .et_pb_section_3 .cst-col-wd,
    .page-id-1220 .et_pb_section_3 .cst-col-wd {
        height: auto;
        margin-top: 30px;
        width: 100% !important;
    }
    .page-id-1047 .et_pb_section_3 .et_pb_row,
    .page-id-1285 .et_pb_section_3 .et_pb_row,
    .page-id-1245 .et_pb_section_3 .et_pb_row,
    .page-id-1220 .et_pb_section_3 .et_pb_row {
        display: flex;
        flex-direction: column-reverse;
    }
    .cst-col-wd + .et_pb_column {
        width: 100% !important;
    }
    .page-id-1047 .et_pb_section_3,
    .page-id-1285 .et_pb_section_3,
    .page-id-1245 .et_pb_section_3,
    .page-id-1220 .et_pb_section_3 {
        padding-bottom: 0;
    }
    .cst-future-sec {
        padding: 20px 0;
    }
    .cst-future-sec h2 + p {
        font-size: 18px;
        line-height: 1.7;
    }
    .cst-future-sec h2 {
        margin-bottom: 15px;
    }
    .cst-future-sec li {
        font-size: 16px;
    }
    .cst-future-sec ul {
        padding-bottom: 0 !important;
    }
    .applications-section {
        padding: 50px 20px;
    }
    .app-card-title {
        font-size: 20px !important;
    }
    .app-list li {
        font-size: 16px !important;
    }
    .app-card-footer {
        margin-bottom: 25px;
    }
    .why-section {
        padding-right: 0 !important;
    }
    .why-desc {
        font-size: 18px;
        line-height: 1.7;
    }
    .why-list li {
        font-size: 16px;
    }
    .why-list {
        gap: 6px;
    }
    .page-id-1047 .et_pb_section_7 .et_pb_row,
    .page-id-1285 .et_pb_section_7 .et_pb_row,
    .page-id-1245 .et_pb_section_7 .et_pb_row,
    .page-id-1220 .et_pb_section_7 .et_pb_row {
        padding: 0px 20px !important;
        display: flex;
        flex-direction: column-reverse;
    }
    .tech-overview-content-area {
        min-height: unset;
        padding-left: 0px !important;
        padding-bottom: 0px !important;
    }
    .tech-overview-box {
        width: auto !important;
        padding: 30px;
    }
    .tech-overview-box li {
        font-size: 16px !important;
        line-height: 1.7;
    }
    .tech-overview-box ul {
        gap: 10px;
    }
    .ignito-cta-section {
        padding: 0 !important;
    }
    .ignito-cta-section .et_pb_module_heading {
        font-size: 28px !important;
        line-height: normal;
    }
    .cst-cta-container ul li {
        font-size: 18px !important;
        line-height: 1.7;
    }
    .cst-cta-container ul {
        gap: 8px;
        display: flex;
        flex-direction: column;
    }
    .ignito-cta-section .et_pb_text_inner {
        font-size: 16px !important;
    }
    .ignito-cta-section .cst-btn {
        padding: 12px 25px;
    }
    .about-ignito-section p {
        font-size: 16px !important;
        line-height: 1.7;
    }
    .about-ignito-section {
        padding: 20px 0;
    }
    .ignito-hero-section .et_pb_row {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }
    .ignito-hero-section .et_pb_row .et_pb_column_0 {
        margin-bottom: 0 !important;
    }
    .apps-grid {
        display: flex !important;
        overflow-x: auto;
        margin: 0;
    }
    .app-card {
        min-width: 100%;
    }
    .page-id-1047 .et_pb_section_7 .et_pb_column_8,
    .page-id-1285 .et_pb_section_7 .et_pb_column_8,
    .page-id-1245 .et_pb_section_7 .et_pb_column_8,
    .page-id-1220 .et_pb_section_7 .et_pb_column_8 {
        margin: 0 !important;
    }
    .page-id-1047 .et_pb_section_7 .et_pb_column_9,
    .page-id-1285 .et_pb_section_7 .et_pb_column_9,
    .page-id-1245 .et_pb_section_7 .et_pb_column_9,
    .page-id-1220 .et_pb_section_7 .et_pb_column_9 {
        margin-bottom: 40px !important;
    }
    .ignito-cta-section .cst-cta-container {
        display: none;
    }
    .ignito-cta-section {
        min-height: 200px !important;
    }
    /* 2nd */
    .ignito-cta-section-mv .cst-cta-container {
        display: block;
    }
    .ignito-cta-section.ignito-cta-section-mv {
        background: unset !important;
        background-image: unset !important;
        display: block !important;
    }
    .about-ignito-section .et_pb_row {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }
    .page-id-1047 .cst-accordion,
    .page-id-1285 .cst-accordion,
    .page-id-1245 .cst-accordion,
    .page-id-1220 .cst-accordion{
        overflow-x: hidden !important;
    }
    .page-id-1047 .cst-future-sec,
    .page-id-1285 .cst-future-sec,
    .page-id-1245 .cst-future-sec,
    .page-id-1220 .cst-future-sec {
        background-size: cover !important;
        background-repeat: no-repeat;
    }
    .page-id-1245 .ignito-hero-section h1,
    .page-id-1285 .ignito-hero-section h1 {
        font-size: 16px !important;
    }
    .page-id-1245 .ignito-hero-section,
    .page-id-1285 .ignito-hero-section{
        min-height: 350px;
    }
    .page-id-1245 .ignito-hero-section h1 span + span,
    .page-id-1285 .ignito-hero-section h1 span + span {
        right: 0px !important;
        transform: translateY(-65%) !important;
    }
    .tech-overview-content-area h2 {
        margin-top: 25px;
    }
    .page-id-1245 .ignito-hero-section h1 span + span, .page-id-1285 .ignito-hero-section h1 span + span {
        position: relative !important;
        right: unset !important;
        transform: unset !important;
        bottom: unset !important;
        padding-left: 5px !important;
    }
    .page-id-1245 .ignito-hero-section h1, .page-id-1285 .ignito-hero-section h1 {
        flex-direction: row !important;
        font-size: 12px !important;
        justify-content: center;
    }
    .page-id-1245 .ignito-hero-section h1 span, .page-id-1285 .ignito-hero-section h1 span {
        padding: 0 2px !important;
    }
}


/* Above Mobile view css */

@media(min-width: 768px){
    .ignito-cta-section.ignito-cta-section-mv {
        display: none !important;
    }
}


/* -------------------------------------------------------------------FR--------------------------------------------------------------------- */
/* -------------------------------------------------------------------FR--------------------------------------------------------------------- */
/* -------------------------------------------------------------------FR--------------------------------------------------------------------- */
/* -------------------------------------------------------------------FR--------------------------------------------------------------------- */

.page-id-1245 .ignito-hero-section h1 span,
.page-id-1285 .ignito-hero-section h1 span {
    background: #000;
    color: #fff;
    padding: 0 20px;
}
.page-id-1245 .ignito-hero-section h1,
.page-id-1285 .ignito-hero-section h1  {
    font-size: 50px;
    display: flex;
    flex-direction: column;
    width: fit-content;
    position: relative;
    align-items: center !important;
    width: 100%;
}
.page-id-1245 .ignito-hero-section h1 span + span,
.page-id-1285 .ignito-hero-section h1 span + span {
    position: absolute;
    right: 180px;
    bottom: -100%;
    transform: translateY(-10px);
}
.page-id-1245 .ignito-hero-section .et_pb_column_0,
.page-id-1285 .ignito-hero-section .et_pb_column_0 {
    width: 100%;
}


.hero-ignito-para {
    text-align: center;
    width: fit-content;
    margin: auto;
    background: #000;
    padding: 0 8px;
    color: #fff;
    position: absolute;
    left: 50%;
    transform: translate(-50%, 130px);
    bottom: 0;
    font-size: 20px;
}
.ignito-hero-section {
    position: relative;
}


/* .cst-cta-sec {
    padding-top: 0 !important;
} */

.nav li > a + ul.sub-menu {
    padding: 0 !important;
    width: fit-content !important;
}


.nav li > a + ul.sub-menu li:last-child {
    padding: 0;
}
.nav ul.sub-menu li a{
    width: fit-content !important;
}

.et_mobile_menu ul.sub-menu li {
    padding: 0 !important;
}

.et_mobile_menu ul.sub-menu {
    padding: 0 !important;
}

.page-id-928 .cst-advantage-animation,
.page-id-1186 .cst-advantage-animation {
    display: none !important;
}


.hero-slider-btns a {
    background: #fff !important;
    color: #000 !important;
}
.hero-slider-btns a:hover {
    background: #008250 !important;
    border-color: #008250 !important;
    color: #fff !important;
}

.et_pb_slide_overlay_container {
    background: #00000078 !important;
}

.divi-learn-more-btn {
    font-size: 16px !important;
    text-decoration: none !important;
}
.divi-learn-more-btn:after, .divi-learn-more-btn:before {
    font-size: 26px !important;
}


.cst-why-feneco-section .cst-flex,
.cst-who-we-serve-section .cst-flex {
    display: flex;
    align-items: center;
    padding-top: 0;
    padding-bottom: 0;
}
.cst-why-feneco-section ,
.cst-who-we-serve-section {
    padding-bottom: 0;
}
.cst-who-we-serve-section {
    padding-top: 0;
}


@media(max-width: 767px){
    .cst-why-feneco-section .cst-flex {
        flex-direction: column-reverse;
        padding-bottom: 0 !important;
    }
    .cst-why-feneco-section {
        padding-bottom: 0 !important;
    }
    .cst-why-feneco-section .cst-flex > div:last-child{
        margin-bottom: 20px;
    }
    .cst-who-we-serve-section .cst-flex {
        flex-direction: column;
    }
    .cst-who-we-serve-section {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }
    .cst-who-we-serve-section + div{
        padding-bottom: 0 !important;
    }
    .hero-ignito-para {
        width: 90%;
        font-size: 13px;
        transform: translate(-50%, 80px);
    }
}

@media(max-width: 991px){
    .cst-ignito-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .cst-ignito-header .et_pb_button_module_wrapper {
        margin: 0 !important;
        text-align: end !important;
    }
    .cst-ignito-header .et_pb_column {
        margin-bottom: 0 !important;
        /* padding: 14px 0; */
    }
    .cst-ignito-header .et_pb_image_wrap img {
        width: 120px !important;
    }
    .cst-ignito-header .et_pb_image_0_tb_header {
        width: 100% !important;
    }
    .cst-ignito-header a.et_pb_button {
        font-size: 12px !important;
    }
}


/* contact us page */
.cst-contact-sec .et_pb_blurb_container {
    display: flex !important;
    align-items: center;
    gap: 20px;
}
.cst-contact-sec .et_pb_blurb_content {
    display: flex !important;
    align-items: center !important;
}
.cst-contact-sec .et_pb_main_blurb_image {
    margin-bottom: 0 !important;
}
.cst-contact-sec .et_pb_module_header {
    padding: 0;
}
.cst-contact-sec .et_pb_blurb_description {
    color: #000 !important;
}


@media(min-width: 400px) and (max-width: 575px){
    .page-id-1245 .ignito-hero-section h1, .page-id-1285 .ignito-hero-section h1 {
        font-size: 14px !important;
    }
}