/* partner newtimeline css  */

/* ====================================
           SECTION
        ==================================== */

.nb-26-partner-ship {
  position: relative;
  /* padding: 100px 0; */
  overflow: hidden;
}

.nb-26-partner-ship .container {
  position: relative;
  /* max-width: 1200px; */
}

/* ====================================
           CENTER LINE
        ==================================== */

.nb-26-partner-ship .nb-26-main-line {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #5C11A2 0%, #DB2777 12.98%, #0384C7 26.44%, #024A33 39.9%, #6F2B06 50.96%, #5C11A2 64.9%, #0384C7 76.44%, #DB2777 87.98%, #024A33 100%);
  opacity: .5;
  border-radius: 50px;
}

/* ====================================
           ROW
        ==================================== */

.nb-26-partner-ship .nb-26-step-row {
  position: relative;
  margin-bottom: 50px;
}

.nb-26-partner-ship .nb-26-step-row:last-child {
  margin-bottom: 0;
}

/* ====================================
           CARD
        ==================================== */

.nb-26-partner-ship .nb-26-step-card {
  position: relative;
  background: #fff;
  border-radius: 12px;
  /* padding: 38px 40px; */
  padding: 30px 30px 30px 50px;
  box-shadow: 2px 4px 19px 0px #00000026;
  transition: 0.4s;
}

@media(min-width:991px) {
  .nb-26-partner-ship .nb-26-step-card.nb-26-left-card {
    padding: 30px 30px 30px 50px;
  }

  .nb-26-partner-ship .nb-26-step-card.nb-26-right-card {
    padding: 30px 50px 30px 30px;
  }
}


/* ====================================
   NUMBER DEFAULT
==================================== */

.nb-26-partner-ship .nb-26-step-number {
  transition: 0.35s ease;
}

/* ====================================
   DEEP COLORS ON HOVER
==================================== */

.nb-26-partner-ship .nb-26-purple:hover .nb-26-step-number {
  background: #6d28d9;
}

.nb-26-partner-ship .nb-26-pink:hover .nb-26-step-number {
  background: #be185d;
}

.nb-26-partner-ship .nb-26-blue:hover .nb-26-step-number {
  background: #0369a1;
}

.nb-26-partner-ship .nb-26-green:hover .nb-26-step-number {
  background: #047857;
}

.nb-26-partner-ship .nb-26-orange:hover .nb-26-step-number {
  background: #c2410c;
}

/* ====================================
           ABSOLUTE ICON IMAGE
        ==================================== */

.nb-26-partner-ship .nb-26-icon-box {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 70px;
  height: 70px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  /* box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12); */
  z-index: 5;
}

.nb-26-partner-ship .nb-26-left-card .nb-26-icon-box {
  left: -35px;
}

.nb-26-partner-ship .nb-26-right-card .nb-26-icon-box {
  right: -35px;
}

.nb-26-partner-ship .nb-26-icon-box img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

/* ====================================
           CARD TITLE
        ==================================== */

.nb-26-partner-ship .nb-26-title {
  position: relative;
  font-size: 22px;
  font-weight: 700;
  color: #000;
  margin-bottom: 20px;
  padding-bottom: 15px;
}

.nb-26-partner-ship .nb-26-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 70px;
  height: 3px;
  border-radius: 30px;
}

/* ====================================
           TITLE COLORS
        ==================================== */

.nb-26-partner-ship .nb-26-purple .nb-26-title::after {
  background: #5C11A2;
}

.nb-26-partner-ship .nb-26-pink .nb-26-title::after {
  background: #DB2777;
}

.nb-26-partner-ship .nb-26-blue .nb-26-title::after {
  background: #014465;
}

/* ====================================
           TEXT
        ==================================== */

.nb-26-partner-ship .nb-26-desc {
  font-size: 16px;
  line-height: 1.5;
  color: #6B7280;
  /* margin-bottom: 25px; */
}

/* ====================================
           DELIVERABLE
        ==================================== */

.nb-26-partner-ship .nb-26-deliverable {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.nb-26-partner-ship .nb-26-deliverable img {
  width: 20px;
  margin-top: 4px;
}

.nb-26-partner-ship .nb-26-deliverable span {
  display: block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.nb-26-partner-ship .nb-26-deliverable p {
  margin: 0;
  font-size: 16px;
  color: #111;
  font-weight: 500;
}

/* ====================================
           CENTER DOTS
        ==================================== */

.nb-26-partner-ship .nb-26-step-number {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 58px;
  height: 58px;
  border-radius: 50%;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}



.nb-26-partner-ship .nb-26-left-card .nb-26-step-number::after {
  right: -18px;
}

.nb-26-partner-ship .nb-26-right-card .nb-26-step-number::after {
  left: -18px;
}

/* ====================================
           NUMBER COLORS
        ==================================== */

.nb-26-partner-ship .nb-26-purple .nb-26-step-number {
  background: #5C11A2;
}

.nb-26-partner-ship .nb-26-purple .nb-26-step-number::after {
  background: #5C11A2;
}

.nb-26-partner-ship .nb-26-pink .nb-26-step-number {
  background: #DB2777;
}

.nb-26-partner-ship .nb-26-pink .nb-26-step-number::after {
  background: #DB2777;
}

.nb-26-partner-ship .nb-26-blue .nb-26-step-number {
  background: #014465;
}

.nb-26-partner-ship .nb-26-blue .nb-26-step-number::after {
  background: #014465;
}





/* ====================================
   DASHED CONNECTOR LINE
==================================== */

/* LEFT CARD */
.nb-26-partner-ship .nb-26-left-card::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -68px;
  transform: translateY(-50%);
  width: 62px;
  border-top: 1px dashed #5C11A2;
  z-index: 1;
}

/* Small Round Dot */
.nb-26-partner-ship .nb-26-left-card::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -6px;
  transform: translateY(-50%);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #5C11A2;
  z-index: 2;
}

/* RIGHT CARD */
.nb-26-partner-ship .nb-26-right-card::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -68px;
  transform: translateY(-50%);
  width: 62px;
  border-top: 1px dashed #DB2777;
  z-index: 1;
}

/* Small Round Dot */
.nb-26-partner-ship .nb-26-right-card::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -6px;
  transform: translateY(-50%);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #DB2777;
  z-index: 2;
}

/* ====================================
   STEP 3 BLUE COLOR
==================================== */

.nb-26-partner-ship .nb-26-blue.nb-26-step-row .nb-26-left-card::before {
  border-color: #014465;
}

.nb-26-partner-ship .nb-26-blue.nb-26-step-row .nb-26-left-card::after {
  background: #014465;
}

/* ====================================
   TITLE LINE COLORS
==================================== */

.nb-26-partner-ship .nb-26-purple .nb-26-title::after {
  background: #5C11A2;
}

.nb-26-partner-ship .nb-26-pink .nb-26-title::after {
  background: #810E47;
}

.nb-26-partner-ship .nb-26-blue .nb-26-title::after {
  background: #014465;
}

.nb-26-partner-ship .nb-26-green .nb-26-title::after {
  background: #024A33;
}

.nb-26-partner-ship .nb-26-orange .nb-26-title::after {
  background: #6F2B06;
}

/* ====================================
   CENTER NUMBER COLORS
==================================== */

.nb-26-partner-ship .nb-26-purple .nb-26-step-number {
  background: #5C11A2;
}

.nb-26-partner-ship .nb-26-pink .nb-26-step-number {
  background: #810E47;
}

.nb-26-partner-ship .nb-26-blue .nb-26-step-number {
  background: #014465;
}

.nb-26-partner-ship .nb-26-green .nb-26-step-number {
  background: #024A33;
}

.nb-26-partner-ship .nb-26-orange .nb-26-step-number {
  background: #6F2B06;
}

/* ====================================
   ICON BOX COLORS
==================================== */

.nb-26-partner-ship .nb-26-purple .nb-26-icon-box {
  border: 5px solid #fff;
  background: #F3E8FF;
  box-shadow: 0px 1px 3px 0px #0000001A;
}

.nb-26-partner-ship .nb-26-pink .nb-26-icon-box {
  border: 5px solid #fff;
  background: #FCE7F3;
  box-shadow: 0px 1px 3px 0px #0000001A;
}

.nb-26-partner-ship .nb-26-blue .nb-26-icon-box {
  border: 5px solid #fff;
  background: #E0F2FE;
  box-shadow: 0px 1px 3px 0px #0000001A;
}

.nb-26-partner-ship .nb-26-green .nb-26-icon-box {
  border: 5px solid #fff;
  background: #D1FAE5;
  box-shadow: 0px 1px 3px 0px #0000001A;
}

.nb-26-partner-ship .nb-26-orange .nb-26-icon-box {
  border: 5px solid #fff;
  background: #FFEDD5;
  box-shadow: 0px 1px 3px 0px #0000001A;
}

/* ====================================
   DASHED CONNECTOR COLORS
==================================== */

.nb-26-partner-ship .nb-26-purple .nb-26-left-card::before,
.nb-26-partner-ship .nb-26-purple .nb-26-right-card::before {
  border-color: #5C11A2;
}

.nb-26-partner-ship .nb-26-purple .nb-26-left-card::after,
.nb-26-partner-ship .nb-26-purple .nb-26-right-card::after {
  background: #5C11A2;
}

.nb-26-partner-ship .nb-26-pink .nb-26-left-card::before,
.nb-26-partner-ship .nb-26-pink .nb-26-right-card::before {
  border-color: #810E47;
}

.nb-26-partner-ship .nb-26-pink .nb-26-left-card::after,
.nb-26-partner-ship .nb-26-pink .nb-26-right-card::after {
  background: #810E47;
}

.nb-26-partner-ship .nb-26-blue .nb-26-left-card::before,
.nb-26-partner-ship .nb-26-blue .nb-26-right-card::before {
  border-color: #014465;
}

.nb-26-partner-ship .nb-26-blue .nb-26-left-card::after,
.nb-26-partner-ship .nb-26-blue .nb-26-right-card::after {
  background: #014465;
}

.nb-26-partner-ship .nb-26-green .nb-26-left-card::before,
.nb-26-partner-ship .nb-26-green .nb-26-right-card::before {
  border-color: #024A33;
}

.nb-26-partner-ship .nb-26-green .nb-26-left-card::after,
.nb-26-partner-ship .nb-26-green .nb-26-right-card::after {
  background: #024A33;
}

.nb-26-partner-ship .nb-26-orange .nb-26-left-card::before,
.nb-26-partner-ship .nb-26-orange .nb-26-right-card::before {
  border-color: #6F2B06;
}

.nb-26-partner-ship .nb-26-orange .nb-26-left-card::after,
.nb-26-partner-ship .nb-26-orange .nb-26-right-card::after {
  background: #6F2B06;
}

/* ====================================
   MOBILE
==================================== */

@media(max-width:991px) {

  .nb-26-partner-ship .nb-26-left-card::before,
  .nb-26-partner-ship .nb-26-right-card::before {
    left: -42px;
    right: auto;
    width: 42px;
  }

  .nb-26-partner-ship .nb-26-left-card::after,
  .nb-26-partner-ship .nb-26-right-card::after {
    left: -46px;
    right: auto;
  }
}

/* ====================================
           RESPONSIVE
        ==================================== */

@media(max-width:991px) {

  .nb-26-partner-ship {
    /* padding: 70px 0; */
  }

  .nb-26-partner-ship .nb-26-main-line {
    left: 30px;
  }

  .nb-26-partner-ship .nb-26-step-number {
    left: 30px;
    width: 48px;
    height: 48px;
    font-size: 15px;
    display: none;
  }

  .nb-26-partner-ship .nb-26-step-number::after {
    display: none;
  }

  .nb-26-partner-ship .nb-26-step-card {
    margin-left: 70px;
    padding: 30px 25px;
  }

  .nb-26-partner-ship .nb-26-icon-box {
    left: auto !important;
    right: -27px !important;
    width: 58px;
    height: 58px;
  }

  .nb-26-partner-ship .nb-26-title {
    font-size: 22px;
  }

  .nb-26-partner-ship .nb-26-desc {
    font-size: 16px;
  }

  .nb-26-partner-ship .nb-26-step-row {
    margin-bottom: 40px;
  }
}

@media(max-width:575px) {

  .nb-26-partner-ship .nb-26-step-card {
    padding: 25px 20px;
  }

  .nb-26-partner-ship .nb-26-title {
    font-size: 24px;
  }

  .nb-26-partner-ship .nb-26-desc {
    font-size: 15px;
    line-height: 1.7;
  }

  .nb-26-partner-ship .nb-26-deliverable p {
    font-size: 14px;
  }

  .nb-26-partner-ship .nb-26-icon-box {
    display: none;
  }

  .nb-26-partner-ship .nb-26-step-row {
    margin-bottom: 25px;
  }
}