@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
:root {
  --primary-color: rgba(0, 179, 229, 1);
  --secondary-color: #2ecc71;
  --background-color: #ecf0f1;
  --text-color: #2c3e50;
  --white-color: #ffffff;
  --blueMeta: rgba(0, 52, 183, 1);
}
body,
html {
  margin: 0;
  padding: 0;
  overflow: hidden;
  height: 100%;
  font-size: clamp(0.6rem, 0.7vw + 0.2rem, 0.8rem);
  font-family: "Inter", sans-serif !important;
}

#firstPage {
  background-image: url("../images/home-background.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.page {
  width: 100vw;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden; /* prevent inner scroll unless you specifically allow */
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
  z-index: 0;
}

.page.active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.topTitle {
  font-size: 5rem;
  font-weight: 400;
  color: var(--primary-color);
  text-align: center;
  line-height: 1;
  width: 100%;
  margin: 0 auto;
}
.heightManager {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.setterContent {
  max-width: 850px;
  margin: 0 auto;
}
.subTitle {
  color: var(--white-color);
  font-size: 2rem;
  font-weight: 400;
  text-align: center;
  width: 80%;
  margin: 0 auto;
}
.row.customSet {
  margin-top: 4%;
}
.bolder {
  font-weight: 700;
}
.bgModalContent {
  padding: 20px;
}
img#arrowButton {
  width: 80%;
  cursor: pointer;
}
.pageContent {
  margin-top: -23%;
}
.topNav {
  display: flex;
  justify-content: center;
  align-items: center;
}

.metatext {
  background-image: url(../images/background-top.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 20vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.topText {
  font-size: 2rem;
  font-weight: 500;
  color: var(--primary-color);
  text-align: center;
}
.subtitle {
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--white-color);
  text-align: center;
}
.heroImage {
  width: 15%;
  margin-top: -3%;
}
#contentBoxes {
  background-image: url(../images/benefits-background.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 80vh;
}
#secondPage {
  position: relative;
}
#kitsBox {
  position: absolute;
  width: 100%;
  z-index: 2;
}
.learnMoreTxt {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--text-color);
  text-align: center;
  width: 35%;
  margin: 0 auto;
  margin-top: 1% !important;
  line-height: 1;
}
.learnMoreTxt strong {
  color: var(--blueMeta);
  font-weight: 600;
  cursor: pointer;
}
.exploreBtn {
  background-color: var(--blueMeta);
  color: var(--white-color);
  font-size: 1.5rem;
  font-weight: 500;
  padding: 1% 2%;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  margin-top: 2%;
  transition: all 0.3s ease;
}
#contentBoxes {
  position: absolute;
  width: 100%;
  display: flex;
}
.box.box1 {
  width: 17%;
  top: 25%;
  position: absolute;
  left: 6%;
  text-align: right;
}
.box.box2 {
  width: 41%;
  top: 65%;
  position: absolute;
  left: 31%;
  text-align: center;
  /* margin: 0 auto; */
}
.box.box3 {
  width: 17%;
  top: 25%;
  position: absolute;
  left: 76%;
  text-align: left;
}
.iconTitle {
  color: var(--text-color);
  font-size: 1.3rem;
  font-weight: 400;
}
.boxDesc {
  color: var(--text-color);
  font-size: 1.2rem;
  font-weight: 300;
}
p.modelIntro {
  font-size: 1.8rem;
  font-weight: 400;
}
p.modalPara {
  font-size: 1.5rem;
  font-weight: 300;
}
.introMainscreen {
  padding: 10px;
}
.kitsnames {
  color: var(--blueMeta);
  font-size: 1.2rem;
  font-weight: 400;
  margin-top: 10px;
  text-align: center;
}
.kistSets {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.MatModal {
  background-color: var(--background-color);
  /* margin: 3rem 0; */
  padding: 1rem 0;
  position: relative;
}
.kitsMega {
  width: 86%;
}
@media (max-width: 1920px) {
  .heroImage {
    width: 12%;
    margin-top: -2%;
  }
}

/* mode lcss */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
}
.modal-content {
  display: flex;
  flex-direction: column;
  width: 90%;
  max-width: 1200px;
  background: #fff;
  border-radius: 8px;
  overflow: auto;
  transition: all 0.3s ease;
  height: 90%;
}
.modal-header {
  display: flex;
  justify-content: flex-end;
  padding: 0 10px;
  /* background-color: #f1f1f1; */
  border-bottom: 0;
}
.modal-body {
  display: flex;
  flex-direction: row; /* Arrange mix-types and details-popup in a row */
  gap: 20px; /* Add spacing between the two sections */
  padding: 20px;
}
.mix-types {
  flex: 1; /* Take up equal space */
  display: flex;
  /* flex-wrap: wrap; */
  gap: 15px;
  justify-content: space-between;
}
.modalCaution {
  background-color: rgba(217, 217, 217, 1);
  display: flex;
  flex-direction: column;
  padding: 10px 20px;
}

.footerText {
  font-size: 1.5rem;
  font-weight: 300;
}
.footertext {
  padding: 3rem 20px;
  width: 80%;
  padding-bottom: 0;
}
.cautionText {
  font-size: 0.8rem;
  margin-top: 3%;
}
.details-popup {
  /* flex: 1; Take up equal space */
  display: none; /* Hidden by default */
  background: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  padding-top: 0;
}
.closeBox {
  padding-top: 1rem;
}
.mix-header {
  border-bottom: 1px solid var(--white-color);
}
ul {
  padding: 0;
}
li {
  margin-bottom: 10px;
  font-size: 1.2rem;
  font-weight: 200;
}
p.mixStab {
  font-size: 1.3rem;
  line-height: 1.2;
  font-size: 300;
  font-weight: 200;
  font-style: normal;
}
.details-popup.active {
  display: block; /* Show when active */
}
.details-header {
  display: flex;
  justify-content: flex-end;
  padding: 10px;
  /* background-color: #f1f1f1; */
}
.details-header #closePopup {
  font-size: 24px;
  font-weight: bold;
  color: #000;
  cursor: pointer;
}
/* Add styles for the modal close button */
#modalCloseBtn {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 24px;
  font-weight: bold;
  color: #000;
  cursor: pointer;
}
/* Close button for details popup */
.details-header #closePopup {
  position: absolute;
  top: 17px;
  right: 31px;
  font-size: 24px;
  font-weight: bold;
  color: #000;
  cursor: pointer;
}
.mix-name {
  margin-bottom: 1rem;
  padding: 1rem;
  border-radius: 5px;
  cursor: pointer;
  color: var(--white-color);
  font-size: 1.2rem;
  font-weight: 200;
}
.mix-column {
  width: 20%;
  text-align: center;
}
.setContent {
  gap: 20px;
  padding: 0 20px;
}
.mixSubtitle {
  gap: 20px;
  padding: 0 20px;
  margin-bottom: 1rem;
}
p.m-0.subttext {
  font-size: 1.8rem;
  font-weight: 400;
  /* text-align: center; */
}
.colorHead {
  border-bottom: 1px solid #000;
  margin-bottom: 1rem;
}
.marginTop {
  margin-top: 4%;
}
p.projectNme {
  font-size: 3rem;
  color: var(--primary-color);
  line-height: 1;
  font-weight: 700;
}
p.sutNmea {
  font-size: 2.5rem;
  color: #fff;
  font-weight: 400;
  line-height: 1.1;
}
.sectionMobile {
  background-image: url(../images/home-background.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 25vh;
}
.mobileBoxKits {
  margin-top: -14%;
}
p.mobileKits {
  font-size: 1.4rem;
  text-align: center;
}
.matFinish {
  background-color: rgba(230, 250, 255, 1);
  height: 40vh;
  display: grid;
}
.loopMate img {
  width: 70%;
}
.mtitles {
  font-size: 1rem;
  font-weight: 600;
  margin-top: 1rem;
}
p.titlemate {
  font-size: 1.5rem;
  font-weight: 600;
  /* margin: 1rem 0; */
}
.explorebtnMobile {
  background-color: var(--blueMeta);
  color: var(--white-color);
  font-size: 1.2rem;
  padding: 1rem 2rem;
  border-radius: 30px;
  border: none;
}
#learnMoreBtn2 {
  color: var(--blueMeta);
}
.infoicons {
  width: 2%;
  margin-right: 5px;
}
#closeModal {
  width: 5%;
  cursor: pointer;
}

#closePopup {
  width: 9%;
  cursor: pointer;
}
.navigation {
  background-image: url(../images/title-background.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  /* height: 10vh; */
}
.titleLab {
  color: var(--white-color);
  font-size: 2.5rem;
  /* align-items: center; */
  font-weight: 200;
}
span.lantitles {
  font-size: 1.4rem;
  color: var(--white-color);
  font-weight: 300;
  padding: 0 5px;
  line-height: 0;
}
.aboutKits {
  cursor: pointer;
}
#thirdPage {
  background-image: url(../images/lab.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100dvh;
}
.landDoors {
  display: grid;
  grid-template-columns: repeat(7, 18rem);
  grid-template-rows: repeat(4, 4rem);
}
.boxLab3 {
  grid-row: 2;
  grid-column: 5/7;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem 0;
  margin-left: 39%;
}
.boxLab2 {
  grid-row: 2;
  grid-column: 3/5;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem 0;
  margin-left: 11%;
}
.boxLab1 {
  grid-row: 2;
  grid-column: 1/3;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem 0;
  margin-left: -5%;
}
.labkeys {
  cursor: pointer;
}
.labkeys img {
  width: 50px;
}
.labkeys p {
  color: var(--blueMeta);
  font-size: 1.5rem;
  font-weight: 400;
  text-align: center;
  width: 80%;
}
.offersection {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 1;
  height: 100vh; /* Always full height */
  transform: translateY(calc(100vh - 80px)); /* Only 80px visible when closed */
  transition: 0.5s cubic-bezier(0.4, 2, 0.6, 1), box-shadow 0.3s;
  /* will-change: transform; */
}

.offer-content {
  width: 100%;
  max-height: 0;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.08);
  border-radius: 0;
  transition: 0.1s, padding 0.3s;
  padding: 0 32px;
  position: relative;
}

.offersection.expanded {
  transform: translateY(0); /* Slide up into view */
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.15);
  top: 8%;
}
.resource-item.pe-3.video-thumb {
  width: 32%;
}
.offersection.expanded .offer-content {
  max-height: 100vh; /* Make it fill the expanded section */
  padding: 32px;
  overflow-y: auto;
}

.offersection.expanded .offer-content {
  /* height: 100%; */
  padding: 32px;
  padding-top: 0;
}
#offerImage,
#closeOffer {
  cursor: pointer;
  width: 16%;
}
.offer-header {
  display: flex;
  justify-content: flex-end;
}

.offer-body {
  padding-top: 8px;
}
#contentData {
  padding: 0 1.8rem;
  /* padding-left: 0; */
}
#fourthPage {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-color: #e3eeff;
  /* transition: background-image 0.5s ease-in-out; */
}
.sequncerHead {
  color: var(--primary-color);
  font-size: 2rem;
}
.sequPara {
  font-size: 1.5rem;
  line-height: 1.2;
  font-weight: 300;
}
.KnowMoreBtn {
  font-size: 1.2rem;
  color: var(--blueMeta);
}
#headerExpand hr {
  color: var(--blueMeta) !important;
  border-top: 2px solid var(--blueMeta) !important;
}
.titelBoxNmmer {
  color: var(--blueMeta);
  font-weight: 600;
  font-size: 1.3rem;
  white-space: nowrap;
}
div#prodcutofferData {
  margin-bottom: 4%;
}
.noteTxt {
  font-size: 1.2rem;
  font-style: italic;
}
.setmgea {
  margin-top: 6%;
  cursor: pointer;
}
/* Responsive Design */

/* model css end  */

/* Fourth page styles */
/* #fourthPage {
  padding: 20px;
  background-color: var(--background-color);
  color: var(--text-color);
  overflow-y: auto;
} */

.workflow-header h2 {
  font-size: 2rem;
  color: var(--primary-color);
}

.workflow-header p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.workflow-steps {
  margin-top: 20px;
}

.workflow-step {
  margin-bottom: 15px;
}

.workflow-step h4 {
  font-size: 1.5rem;
  color: var(--secondary-color);
}

.workflow-step p {
  font-size: 1.2rem;
}

.workflow-navigation label {
  font-size: 1.2rem;
  margin-right: 10px;
}

.workflow-navigation select {
  padding: 5px 10px;
  font-size: 1rem;
}
.step-tab-container {
  display: flex;
  gap: 10px;
  padding: 0;
  cursor: pointer;
  margin-bottom: 10px;
  /* margin: 30px 0; */
  align-items: center;
  margin-bottom: 0;
}
.step-tab-btn {
  /* background-color: #444; */
  color: #444;
  border: none;
  cursor: pointer !important;
  transition: background 0.3s ease;
  font-size: 1.5rem;
  font-weight: 300;
}
#fullModel,
#closeContentDataModal {
  cursor: pointer;
}

.step-tab-btn.active {
  border-bottom: 2px solid var(--blueMeta);
  font-weight: 600;
  color: var(--blueMeta);
}

.step-content-container {
  display: flex;
  /* flex-direction: column; */
  gap: 15px;
  justify-content: space-between;
}
.arrowIcons {
  height: max-content;
  pointer-events: none;
}
.step-card {
  /* background: #f4f4f4; */
  border-left: 5px solid blue;
  /* border-radius: 8px; */
  width: 20%;
  height: max-content;
}
.spaber {
  margin-left: 5px;
}
/* Stepper navigation styles */
.navigation-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  /* background: #eaf2fe; */
  padding: 26px 20px 10px 20px;
  border-radius: 12px;

  position: relative;
}

.nav-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1 1 0;
  position: relative;
  z-index: 1;
}

.nav-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #a0a9b8;
  color: #1a47c6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 8px;
  z-index: 2;
  transition: background 0.2s, color 0.2s;
}

.nav-step.active .nav-circle {
  background: #1a47c6;
  color: #fff;
  border-color: #1a47c6;
}
.clostTExt {
  color: var(--blueMeta);
  font-size: 1.5rem;
  font-weight: 500;
}
#closeResources {
  cursor: pointer;
}
.nav-title {
  font-size: 1.1rem;
  color: #a0a9b8;
  text-align: center;
  margin-top: 5px;
  font-weight: 300;
  /* width: 150px; */
  max-width: 90vw;
  white-space: normal;
}

.nav-step.active .nav-title {
  color: #1a47c6;
  font-weight: 600;
}

.nav-line {
  position: absolute;
  top: 24px;
  left: 10%;
  width: 173%;
  height: 2px;
  background: #bfcbe6;
  z-index: 0;
}
.nav-step:not(:last-child) .nav-line {
  display: block;
}

.nav-step:last-child .nav-line {
  display: none;
}

.resources-section {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 2;
  transition: bottom 0.5s, box-shadow 0.3s;
}
.resources-content {
  width: 100%;
  height: 100%;
  max-height: 0;
  overflow: hidden;
  background: #fff;
  border-radius: 0;
  transition: max-height 0.5s, padding 0.3s;
  padding: 0 32px;
  position: relative;
}
div#resourcesData {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
p.resourcesPara {
  font-size: 1.5rem;
}
.resources-section.expanded {
  bottom: 0;
  top: 9%;
  height: 100vh;
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.15);
}
.resources-section.expanded .resources-content {
  max-height: 100vh;
  padding: 32px;
  overflow-y: auto;
  padding-top: 0;
}
.resources-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  border-bottom: 1.2px solid var(--blueMeta);
  padding-left: 0 !important;
}
img#closeResources {
  width: 5%;
}
.resources-tab {
  padding: 12px 24px;
  border: 1px solid #0033cc;
  border-bottom: none;
  background-color: white;
  color: #0033cc;
  font-size: 18px;
  cursor: pointer;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  transition: background-color 0.3s;
}
.resources-tab.active {
  background: #1a47c6;
  color: #fff;
}
.resources-body {
  min-height: 120px;
}

.arrow-ripple-wrapper {
  display: inline-block;
  position: relative;
  overflow: visible;
}

.arrow-ripple-wrapper::after {
  content: "";
  position: absolute;
  left: 40%;
  top: 50%;
  width: 100%;
  height: 100%;
  background: rgba(0, 179, 229, 0.3);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0);
  opacity: 0.7;
  z-index: 2;
  animation: ripple-once 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.2s infinite;
}

/* @keyframes ripple-once {
  0% {
    transform: translate(-50%, -50%) scale(0);
    opacity: 0.7;
  }
  70% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.2;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.4);
    opacity: 0;
  }
} */

.oxford-special-btn {
  position: fixed;
  bottom: 161px;
  right: 105px;
  z-index: 1;
  /* background: #fff; */
  /* border-radius: 50%; */
  /* box-shadow: 0 2px 12px rgba(0, 0, 0, 0.18); */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  cursor: pointer;
  transition: box-shadow 0.2s;
  width: 10%;
  text-align: center;
}
.spclCaseHead {
  font-size: 1.2rem;
  color: var(--blueMeta);
  line-height: 1.2;
}
.oxford-special-btn img {
  width: 31%;
  height: 60%;
  object-fit: contain;
}
.aboutKits {
  display: flex;
  justify-content: center;
  align-items: center;
}
.mix-name {
  /* border: 2px solid transparent; */

  transition: border 0.2s;
}
.mix-name.active {
  background: none !important;
}
#offerImage {
  margin-left: 2%;
}
.legend-row {
  margin-top: 24px;
}
.legend-box {
  border: 1px solid #ccc;
}
.arrow-block {
  min-width: 60px;
  text-align: center;
}
.arrow-text {
  font-weight: 500;
  color: #0033cc;
}
.aboutKits img {
  width: 32px;
}
.bottom-band {
  width: 100%;
  height: 32px;
  background: #0034b8; /* or any color/gradient you want */
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 10;
}
.bottom-band2 {
  width: 100%;
  height: 15px;
  background: #00b4e6; /* or any color/gradient you want */
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 10;
}
.megenta {
  width: 100%;
  margin: 0 auto;
  margin-top: 6%;
}
p.m-0.literatureText {
  font-size: 1.2rem;
}
.openPdfHere {
  display: block;
}
.openPdfHere {
  width: 100% !important;
  max-width: 100% !important;
}
.workflow-main {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  background-color: #e3eeff;
  width: 100vw;
  height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.workflow-navigation {
  position: sticky; /* or fixed if you want it always visible */
  top: 0;
  z-index: 10;
  width: 100%;
  /* background: rgba(255,255,255,0.8); optional for overlay */
}
.mapView {
  flex: 1 1 auto;
  overflow-x: auto;
  overflow-y: hidden;
  width: 100%;
  height: 100%;
}
.biotechneLogo {
  width: 70%;
}
.italicMat {
  font-style: italic;
}
.gifsMaker {
  width: 92%;
  margin: 0 auto;
}
.lastStep {
  margin-top: 6% !important;
}
.textJus {
  padding-right: 10px;
}
.videoBox {
  position: relative;
  width: 80vw;
  max-width: 900px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  line-height: 0;
}
.f8Btn {
  font-style: normal !important;
}
.etextmage {
  position: absolute;
  top: 90%;
  right: 1%;
}
.marginSett {
  margin-left: 4% !important;
}

.rightArrow img,
.leftArrow img {
  width: 225px;
}
.centerInferp {
  width: 5%;
  margin: 0 auto;
}
.centTop {
  width: 45%;
  position: absolute;
  /* top: 102%; */
  bottom: 11%;
  padding-left: 5px;
  padding-right: 5px;
}
.vertical-line-stem {
  /* position: absolute; */
  display: none;
  width: 2px;
  background-color: transparent;
  border-right: 2px dashed gray;
  /* bottom: 70px; */
  height: 100%;
  /* top: 5%; */
  margin-top: 5%;
}

.mix-column:first-child .vertical-line-stem {
  display: block;
}

.centTop2 {
  width: 70.5%;
  position: absolute;
  /* top: 111%; */
  bottom: 5%;
  padding-left: 5px;
  padding-right: 5px;
}
.videoMageBox {
  width: 97%;
}
.leftArrow2 img,
.rightArrow2 img {
  width: 100%;
}
.centerInferp {
  font-size: 1rem;
  font-weight: 600;
}

.centerInferp2 {
  width: 13%;
  margin: 0 auto;
  text-align: center;
  font-weight: 600;
}
.vertica {
  /* border-left: 2px dashed red; */
  /* position: absolute; */
  display: none;
  width: 2px;
  background: transparent;
  /* background-color: red; */
  /* bottom: 70px; */
  /* height: 132px; */
  height: 56%;
  box-sizing: border-box;
  /* left: 100%; */
  /* top: -83%; */
  background-color: transparent;
  border-right: 2px dashed gray;
}

.mix-column:nth-child(2) .vertica {
  display: block;
  float: right;
}

.vertica2 {
  /* border-left: 2px dashed red; */
  /* position: absolute; */
  display: none;
  width: 2px;
  background: transparent;
  /* background-color: red; */
  /* bottom: 70px; */
  height: 100%;
  /* left: 100%; */
  /* top: -164%; */
  background-color: transparent;
  border-right: 2px dashed gray;
  margin-top: 2%;
}

.mix-column:nth-child(3) .vertica2 {
  display: block;
  float: right;
}

.mix-types {
  overflow: hidden;
}
@media screen and (max-width: 1536px) and (max-height: 697px) {
  .step-tab-container.container {
    width: 67%;
  }
  .gifsMaker {
    width: 69%;
    margin: 0 auto;
  }
  .oxford-special-btn {
    position: fixed;
    bottom: 139px;
    right: 198px;
  }
}
@media (max-width: 1439px) {
  #contentData {
    padding: 0;
  }
  p.m-0.titleLabName {
    font-size: 2.5rem;
  }
  .boxDesc {
    font-size: 1rem;
    line-height: 1.2;
  }
  .box img {
    width: 70px;
  }
  .navigation-row {
    padding: 4px 20px 00px 20px;
    border-radius: 12px;
    position: relative;
  }
  .pageContent {
    margin-top: -17%;
  }
  .setmgea {
    width: 90% !important;
    margin: 0 auto;
    margin-right: 0;
    /* margin-left: 28px; */
  }

  .step-content-container {
    width: 78%;
    margin: 0 auto;
  }
  .megenta {
    width: 92%;
    margin: 0 auto;
    margin-top: 11%;
    margin-right: 0;
  }
  .nav-title,
  .nav-circle {
    margin: 0;
  }
  .oxford-special-btn {
    position: fixed;
    bottom: 151px;
    right: 179px;
  }
  .btnKop {
    margin-left: 4%;
  }
  .metatext {
    height: 25vh;
  }
  .boxLab2,
  .boxLab1,
  .boxLab3 {
    margin-top: -4%;
    padding: 0;
  }
  .setmgea {
    margin-top: 11% !important;
    width: 92% !important;
  }
  .fullBox {
    width: 30px;
  }
  .step-tab-container {
    width: 80%;
  }
  .lastStep #fullModel {
    margin-right: 2%;
  }
}

@media (max-width: 1370px) {
  #contentData {
    padding: 0;
  }
  p.m-0.titleLabName {
    font-size: 2.5rem;
  }
  .boxDesc {
    font-size: 1rem;
    line-height: 1.2;
  }
  .box img {
    width: 70px;
  }
  .navigation-row {
    padding: 4px 20px 00px 20px;
    border-radius: 12px;
    position: relative;
  }
  .pageContent {
    margin-top: -17%;
  }
  .setmgea {
    width: 90% !important;
    margin: 0 auto;
    margin-right: 0;
    /* margin-left: 28px; */
  }

  .step-content-container {
    width: 78%;
    margin: 0 auto;
  }
  .megenta {
    width: 89%;
    margin: 0 auto;
    margin-top: 6%;
    margin-right: 0;
  }
  .nav-title,
  .nav-circle {
    margin: 0;
  }
  .oxford-special-btn {
    position: fixed;
    bottom: 118px;
    right: 203px;
  }
  .btnKop {
    margin-left: 4%;
  }
  .metatext {
    height: 25vh;
  }
  .boxLab2,
  .boxLab1,
  .boxLab3 {
    margin-top: -4%;
    padding: 0;
  }
  .setmgea {
    margin-top: 6% !important;
    width: 89% !important;
  }
  .fullBox {
    width: 30px;
  }
  .step-tab-container {
    width: 77%;
  }
  .lastStep #fullModel {
    margin-right: 2%;
  }
  .offersection.expanded {
    top: 12%;
  }
  .resources-section.expanded {
    top: 11%;
  }
  #thirdPage {
    background-image: url(../images/mainX120.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100dvh;
  }
  /* .centTop {
    width: 43%;
    position: absolute;
    top: 135%;
  }
  .centTop2 {
    width: 68.5%;
    position: absolute;
    top: 148%;
  } */
}
@media screen and (max-width: 1366px) and (max-height: 1024px) {
  .box.box1 {
    width: 17%;
    top: 35%;
    position: absolute;
    left: 1%;
    text-align: right;
  }
  .box.box3 {
    width: 17%;
    top: 35%;
    position: absolute;
    left: 81%;
    text-align: left;
  }
  /* .centTop {
    width: 43%;
    position: absolute;
    top: 79%;
  }
  .centTop2 {
    width: 68.5%;
    position: absolute;
    top: 86%;
  } */
  .setmgea {
    margin-top: 40% !important;
    width: 115% !important;
    margin-left: -17%;
  }
  .gifsMaker {
    width: 92%;
    margin: 0 auto;
  }
  .oxford-special-btn {
    position: fixed;
    bottom: 275px;
    right: 93px;
  }

  .megenta {
    width: 98%;
    margin: 0 auto;
    margin-top: 39%;
    margin-right: 0;
  }
  .offersection.expanded {
    top: 7%;
  }
  .resources-section.expanded {
    top: 7%;
  }
}
@media screen and (max-width: 1366px) and (max-height: 620px) {
  /* .centTop2 {
    width: 68.5%;
    position: absolute;
    top: 146%;
  }

  .centTop {
    width: 43%;
    position: absolute;
    top: 134%;
  } */
  .setmgea {
    margin-top: 6% !important;
    width: 118% !important;
    margin-left: -17%;
  }
  .step-tab-container {
    width: 39%;
  }
  .step-tab-btn {
    /* background-color: #444; */
    color: #444;
    border: none;
    cursor: pointer !important;
    transition: background 0.3s ease;
    font-size: 1.2rem;
    font-weight: 300;
  }

  .step-content-container {
    width: 77%;
    margin: 0 auto;
  }
  .step-tab-container {
    width: 41%;
  }
  .oxford-special-btn {
    position: fixed;
    bottom: 124px;
    right: 196px;
  }
  .boxLab2,
  .boxLab1,
  .boxLab3 {
    margin-top: -10%;
    padding: 0;
  }
  .labkeys p {
    color: var(--blueMeta);
    font-size: 1.2rem;
  }
  .offersection.expanded {
    top: 12%;
  }
  .resources-section.expanded {
    top: 12%;
  }
  .step-tab-btn.active {
    font-weight: 500;
  }
  .megenta {
    width: 98%;
    margin: 0 auto;
    margin-top: 5%;
    margin-right: 0;
  }
  .step-tab-btn {
    font-size: 1rem;
    font-weight: 300;
  }
  .gifsMaker {
    width: 97%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 1344px) {
  .setmgea {
    margin-top: 11% !important;
    width: 96% !important;
    margin: 0 auto;
  }
  .oxford-special-btn {
    position: fixed;
    bottom: 138px;
    right: 173px;
  }
  .megenta {
    width: 96%;
    margin: 0 auto;
    margin-top: 10%;
    margin-right: 0;
    margin-left: 2%;
  }
}
@media (max-width: 1280px) {
  .pageContent {
    margin-top: -15%;
  }
  .row.customSet {
    margin-top: 1%;
  }
  .box2 img {
    width: 12%;
  }
  .box1 img,
  .box3 img {
    width: 27%;
  }
  .navigation {
    padding: 0.2rem !important;
  }
  .boxLab2,
  .boxLab1,
  .boxLab3 {
    padding: 0;
    margin-top: -4%;
  }
  .oxford-special-btn {
    position: fixed;
    bottom: 66px;
    right: 108px;
  }
  .navigation-row {
    padding-top: 5px;
    padding-bottom: 0;
  }
  .nav-title {
    margin: 0;
  }
  .nav-circle {
    margin-bottom: 0px;
  }
  p.m-0.titleLabName {
    font-size: 2.5rem;
  }
  .step-tab-container {
    margin-bottom: 10px;

    margin-bottom: 0;
  }
  .step-content-container {
    margin-top: -1% !important;
    width: 90%;
    /* margin: 0 auto; */
  }
  #contentData {
    padding: 0 1.8rem;
    margin-left: 5%;
    width: 47% !important;
  }
  .setmgea {
    padding: 0px;
    margin-top: 8% !important;
  }
  .setmgea {
    width: 91% !important;
    margin: 0 auto;
    margin-right: 0;
    margin-top: 7% !important;
  }
  div#fullModel {
    margin-right: 1%;
  }
  .boxDesc {
    font-size: 1rem;
  }
  .metatext {
    height: 25vh;
  }
  .boxLab2 {
    margin-left: -5%;
  }
  .boxLab3 {
    margin-left: 7%;
  }
  .boxLab1 {
    margin-left: -11%;
  }
  .step-tab-btn.btnKop {
    margin-left: 11%;
  }
  .modelGifs {
    margin-top: 0 !important;
  }
  .setmgea {
    margin-top: 8% !important;
  }
  .pfInfo {
    margin-bottom: 18%;
  }
  .videoBox {
    width: 60vw;
  }
  .fullBox {
    width: 30px;
  }
  .setmgea {
    margin-top: 6%;
  }
  .oxford-special-btn {
    position: fixed;
    bottom: 120px;
    right: 212px;
  }
}
@media only screen and (max-width: 1280px) and (max-height: 800px) {
  .step-tab-container {
    width: 111%;
  }
  .setmgea {
    margin-top: 29% !important;
  }
  #contentData {
    padding: 0 1.8rem;
    margin-left: -8%;
    width: 58% !important;
  }
  .setmgea {
    margin-top: 28% !important;
  }
  .oxford-special-btn {
    position: fixed;
    bottom: 146px;
    right: 77px;
  }
  .megenta {
    width: 96%;
    margin: 0 auto;
    margin-top: 28%;
    margin-right: 0;
    margin-left: 2%;
  }
  .workflow-main {
    height: 111vh;
  }
}
@media screen and (max-width: 1280px) and (max-height: 767px) {
  #contentData {
    padding: 0 1.8rem;
    margin-left: -7%;
    width: 56% !important;
  }
  .setmgea {
    margin-top: 19% !important;
  }
  .workflow-main {
    height: 100vh;
  }
}
@media screen and (max-width: 1280px) and (max-height: 721px) {
  .bottom-band {
    height: 36px;
  }
  .gifsMaker {
    width: 80%;
    margin: 0 auto;
  }
}

@media screen and (max-width: 1280px) and (max-height: 632px) {
  .setmgea {
    width: 100% !important;
  }
  .setmgea {
    margin-top: 12% !important;
  }
  .gifsMaker {
    width: 93%;
    margin: 0 auto;
  }
  #contentData {
    padding: 0;
    margin-left: 2%;
    width: 47% !important;
  }
  .oxford-special-btn {
    position: fixed;
    bottom: 130px;
    right: 147px;
  }
  .offersection.expanded {
    top: 8%;
  }
  .resources-section.expanded {
    top: 8%;
  }
  .etextmage {
    position: absolute;
    top: 90%;
    right: 1%;
  }
  /* .centTop {
    width: 43%;
    position: absolute;
    top: 122%;
  }
  .centTop2 {
    width: 68.5%;
    position: absolute;
    top: 134%;
  } */

  .megenta {
    width: 96%;
    margin: 0 auto;
    margin-top: 12%;
    margin-right: 0;
    margin-left: 2%;
  }
}

@media screen and (max-width: 1280px) and (max-height: 600px) {
  .setmgea {
    width: 92% !important;
    margin: 0 auto;
    margin-right: 0;
    margin-top: 11%;
  }
  .step-tab-btn.active {
    font-weight: 400;
  }
  .megenta {
    width: 91%;
    margin: 0 auto;
    margin-top: 11%;
    margin-right: 0;
  }
  #contentData {
    padding: 0 1.8rem;
    margin-left: 3%;
    width: 48% !important;
  }
  .step-tab-btn.btnKop {
    margin-left: 5%;
  }
  .oxford-special-btn {
    position: fixed;
    bottom: 118px;
    right: 165px;
  }
  .iconTitle {
    margin-top: 1% !important;
  }
  .setmgea {
    margin-top: 12% !important;
  }
  .step-tab-container {
    width: 87%;
  }
  .gifsMaker {
    width: 93%;
    margin: 0 auto;
  }
  /* .centTop {
    width: 43%;
    position: absolute;
    top: 129%;
  }
  .centTop2 {
    width: 68.5%;
    position: absolute;
    top: 141%;
  } */
  .bottom-band {
    height: 27px;
  }
}
@media screen and (max-width: 1280px) and (max-height: 552px) {
  .setmgea {
    margin-top: 8% !important;
  }
  .gifsMaker {
    width: 90%;
    margin: inherit;
  }
  .step-tab-btn {
    font-size: 1.2rem;
    font-weight: 500;
  }
  .step-tab-container {
    width: 77%;
  }
  .oxford-special-btn {
    position: fixed;
    bottom: 112px;
    right: 199px;
  }
  .step-content-container {
    margin-right: -2%;
  }
  .megenta {
    margin-top: 7%;
    margin-right: 0;
  }
  /* .centTop {
    width: 43%;
    position: absolute;
    top: 141%;
  }
  .centTop2 {
    width: 68.5%;
    position: absolute;
    top: 154%;
  } */
}
@media screen and (max-width: 1200px) {
  #contentData {
    padding: 0 1.8rem;
    margin-left: -13%;
    width: 65% !important;
  }
  .setmgea {
    margin-top: 17% !important;
  }
  .oxford-special-btn {
    position: fixed;
    bottom: 162px;
    right: 102px;
  }
  .megenta {
    width: 100%;
    margin: 0 auto;
    margin-top: 17%;
  }
  .offersection.expanded {
    top: 6%;
  }
  .resources-section.expanded {
    bottom: 0;
    top: 6%;
  }
}
@media screen and (max-width: 1024px) and (max-height: 768px) {
  .boxLab1 {
    margin-left: -35%;
  }
  .boxLab2 {
    margin-left: -29%;
  }
  .boxLab3 {
    margin-left: -11%;
  }
  .labkeys p {
    width: 49%;
  }
  .setmgea {
    margin-top: 12% !important;
  }
  .step-tab-container {
    width: 62%;
  }
  .oxford-special-btn {
    position: fixed;
    bottom: 131px;
    right: 72px;
  }
  .megenta {
    width: 100%;
    margin: 0 auto;
    margin-top: 12%;
  }
  .gifsMaker {
    width: 66%;
    margin: 0 auto;
  }
  .step-tab-btn {
    font-size: 1.3rem;
    font-weight: 300;
  }
  .gifsMaker {
    width: 78%;
    margin: 0 auto;
  }
  .offersection {
    position: absolute;
    left: 0;
    bottom: -4px;
  }
  .offersection.expanded {
    top: 6%;
  }
}
@media screen and (max-width: 1025px) and (orientation: portrait) {
  #contentBoxes {
    background-image: none;
    background-color: var(--primary-color);
    height: 80vh;
  }
  .heroImage {
    width: 34%;
    margin-top: -7%;
  }
  .learnMoreTxt {
    font-size: 2rem;
    font-weight: 300;
    color: var(--text-color);
    text-align: center;
    width: 39%;
    margin: 0 auto;
    margin-top: 5% !important;
    line-height: 1.2;
  }
  .exploreBtn {
    background-color: var(--blueMeta);
    color: var(--white-color);
    font-size: 1.5rem;
    font-weight: 500;
    padding: 2% 3%;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    margin-top: 4%;
    transition: all 0.3s ease;
  }
  .topText {
    font-size: 3rem;
    font-weight: 500;
    color: var(--primary-color);
    text-align: center;
  }
  .box.box2 {
    width: 41%;
    top: 44%;
    position: absolute;
    left: 31%;
    text-align: center;
    /* margin: 0 auto; */
  }
  .box.box1 {
    width: 17%;
    top: 44%;
    position: absolute;
    left: 6%;
    text-align: right;
  }
  .box.box3 {
    width: 17%;
    top: 46%;
    position: absolute;
    left: 76%;
    text-align: left;
  }
  .heroImage {
    width: 31%;
    margin-top: -9%;
  }
}
@media (max-width: 768px) {
  .mix-column {
    flex: 1 1 calc(50% - 20px); /* Adjust columns for smaller screens */
  }

  #firstPage {
    background-image: url(../images/mobile-home-background.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  #closeModal,
  #closePopup {
    width: 10%;
    cursor: pointer;
  }
  #offerImage,
  #closeOffer {
    cursor: pointer;
    width: 29%;
  }
  img#closeResources {
    width: 15%;
  }
  /* #thirdPage,
  #fourthPage {
    width: 400vw;
    overflow: auto;
  } */
  body,
  html {
    overflow: auto;
  }
}
@media (max-width: 480px) {
  .mix-column {
    flex: 1 1 100%; /* Stack columns on very small screens */
  }
}
@media (max-width: 768px) {
  .navigation {
    position: fixed;
    top: 4%;
    left: 0;
    width: 100vw;
    z-index: 100;
    /* background: #0034b8; */
  }
  .page {
    overflow: visible !important; /* Allow overflow for scrollable children */
  }
  .labSetup {
    background-image: url("../images/lab.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    overflow-x: auto;
    overflow-y: hidden;
    width: 300vw; /* or as needed */
    min-width: 990px;
    max-width: none;
    height: 100dvh; /* or a fixed px value, e.g. 300px */
    position: static;
    white-space: nowrap;
    /* Enable scrolling */
    -webkit-overflow-scrolling: touch;
  }
  .landDoors,
  .labMegaViwer {
    width: 300vw;
    min-width: 990px;
    max-width: none;
    display: flex;
    justify-content: center;
    /* flex-direction: column; */
  }
  .aboutKits img {
    width: 18px;
  }
  #thirdPage,
  #fourthPage {
    /* padding-top: 70px; */
    background-image: none !important;
    overflow: visible !important; /* Allow child scroll */
  }
  .mapView,
  .pageHolder {
    width: 100%;
    overflow: auto;
  }
  .boxLab2,
  .boxLab1,
  .boxLab3 {
    padding: 0;
    margin-top: 8%;
  }
  .boxLab2 {
    margin-left: 26%;
  }
  p.m-0.titleLabName {
    font-size: 1rem;
  }
  span.lantitles {
    font-size: 1rem;
    color: var(--white-color);
    font-weight: 300;
    padding: 0 5px;
  }
  .labkeys p {
    width: 100%;
    white-space: break-spaces;
  }

  .navigation-row {
    margin-top: 5%;
  }
  .labSetup {
    background-size: cover; /* or 'contain' if you want the whole image visible */
    background-repeat: no-repeat; /* do not repeat */
    background-position: center center;
    overflow-x: auto;
    overflow-y: hidden;
    width: 300vw; /* or as needed */
    min-width: 990px;
    max-width: none;
    height: 100dvh;
    position: static;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }
  .labMegaViwer {
    width: 300vw;
    min-width: 990px;
    display: flex;
    flex-direction: column;
  }
  .resource-item.pe-3.video-thumb {
    width: 100%;
  }
}
