/* update navabr for this section */
.mainNavContainer {
  background-color: #fff;
  position: fixed;
  min-height: 100px;
  z-index: 20;
}
.mainNavContainer .iconSection img {
  display: none !important;
}
.mainNavContainer .iconSection {
  background-image: url("./sectionLogo.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
/* end */
/* start header section style */
.sections-HeadersMainContainer.information {
  background-image: url("../assets/image/information.webp");
} /* information background image  */
.sections-HeadersMainContainer.integrate {
  background-image: url("../assets/image/integrat.webp");
} /* information background image  */
.sections-HeadersMainContainer.Intelligent {
  background-image: url("../assets/image/intelligent.webp");
} /* Intelligent background image  */
.sections-HeadersMainContainer.ecosystem {
  background-image: url("../assets/image/ecosystem.webp");
} /* Intelligent background image  */

.sections-HeadersMainContainer {
  width: 100%;
  height: 100vh;
  height: 100svh;

  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;

  position: relative;
}
.sections-HeadersMainContainer .sections-HeaderWrapper {
  width: 100%;
  height: 100%;
  position: relative;
}

.sections-HeadersMainContainer .sections-HeaderWrapper .section-overLay {
  width: 40%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 40%;
  background-color: black;
  opacity: 0.8;

  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  transition: 0.5s;
}

.section-textContainer {
  font-family: "Poppins";
  font-size: 40px;
  font-weight: 700;
  line-height: 45px;
  letter-spacing: 0em;
  text-align: left;
  width: 100%;
  padding: 0 20px;
  max-width: 400px;
}
.section-textContainer .content {
  margin: auto;
  text-transform: uppercase;
}

.section-hiddenText {
  opacity: 0;
  /* max-width: 00px; */

  color: var(--linkColor);

  font-family: "Saira";
  font-size: 30px;
  font-weight: 400;
  line-height: 33px;
  text-align: left;
}

.sections-HeadersMainContainer .sections-HeaderWrapper:hover .section-overLay {
  right: 0;
  width: 100%;
}
.sections-HeadersMainContainer
  .sections-HeaderWrapper:hover
  .section-overLay
  .section-hiddenText {
  opacity: 1;
}

/* .sectionHeaderShadow {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, rgba(7, 8, 22, 0) 0%, #070816 86.98%);
  height: 150px;
} shadow cover the end of header section */

/* end header section style */

/* start main body style */

.section-main {
  width: 100%;
  /* background-image: url("../assets/image/aboutMainBody.webp");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover; */
  position: relative;

  padding-top: 10%;
}

/* .sectionMainShadow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(0deg, rgba(7, 8, 22, 0) 0%, #070816 86.98%);
  height: 350px;
} shadow cover the top section of the body  */
.section-ContainerWrapper {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  padding-bottom: 2%;
}

.section-ContainerWrapper .cardSection {
  display: grid;
}
/* handle image and text order with a grid system */
.section-ContainerWrapper .cardSection.odd {
  grid-template-columns: 70% 30%;
}
.section-ContainerWrapper .cardSection.even {
  grid-template-columns: 30% 70%;
}
.section-ContainerWrapper .cardSection.even .sectionCard-textContainer {
  order: 1;
  padding-left: 15%;
}
.section-ContainerWrapper .cardSection.even .imageSection {
  order: 2;
}

/* end  */

.section-ContainerWrapper .cardSection .imageSection img {
  width: 100%;
}
.section-ContainerWrapper .cardSection .sectionCard-textContainer {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 20px;

  color: black;
}

.section-ContainerWrapper .cardSection .sectionCard-textContainer .header {
  /* font-family: "Poppins", sans-serif; */
  font-family: "Saira";
  font-size: 30px;
  font-weight: 600;
  line-height: 37px;
  letter-spacing: 1px;
  text-align: left;
}
.section-ContainerWrapper .cardSection .sectionCard-textContainer .bodytext {
  /* font-family: "Poppins", sans-serif; */
  font-family: "Saira";

  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 0.5px;
}
/* end main body style */
