/* start hero section*/
.heroContainer {
  height: 100vh;
  height: 100svh;
  width: 100%;

  padding: 10%;

  background: url("../assets/image/heroBackground.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;

  display: flex;
  align-items: center;

  overflow: hidden !important;
}

.heroContainer .textContainer {
  display: flex;
  flex-direction: column;
  max-width: 70%;
  text-transform: uppercase;
}
.heroContainer .textContainer p {
  font-family: "Saira", sans-serif;
  font-weight: 400;
  font-size: 62px;
  line-height: 65px;
  color: white;
}

.heroContainer .textContainer p.subTitle {
  font-weight: 700;
  font-size: 77px;
  line-height: 77px;
  color: var(--textHover);
}
/* end hero section */

/* start think section */
.thinkContainer {
  width: 100%;
  height: 130vh;
  height: 130svh;

  padding-left: 10%;

  background-image: linear-gradient(
    90.05deg,
    #ffffff 0.86%,
    rgba(255, 255, 255, 0) 81.86%
  );
  background-color: #eaeaeaa6;

  display: flex;
  align-items: center;
}

.thinkContainer .thinkWrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  height: 100%;
}
.thinkContainer .itemsSection {
  width: 50%;
  flex-basis: 50%;

  display: flex;
  flex-direction: column;
  gap: 40px;
}

.thinkWrapper .firstText {
  display: flex;
  flex-direction: column;
  margin-top: 20px;
}
.thinkSubtitle {
  color: #000000;

  font-family: "Saira", sans-serif;
  font-weight: 300;
  line-height: 53px;
  font-size: 35px;
}
.thinkSubtitle .thinkTitle {
  display: inline-block;
  font-weight: 700;
  font-size: 40px;
}

.thinkWrapper .secondText {
  font-family: "Saira", sans-serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 33px;
  color: var(--linksColor);
}
.thinkWrapper .imageSection {
  width: 50%;
  flex-basis: 50%;
  height: 100%;
  display: flex;
  align-items: flex-end;
}
.thinkWrapper .imageSection img {
  width: 100%;
}
/* end think section  */

/* start solution section */
.solution {
  width: 100%;
  height: 120vh;
  height: 100svh;

  /* background-image: url("../assets/image/solution.webp");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat; */
}
.solutionContainer {
  width: 100%;
}
.solutionheader {
  padding: 0 5% 0 10%;
  height: 30vh;
  height: 30svh;

  display: flex;
  align-items: center;
  flex-direction: column;

  background-color: white;
  background-image: linear-gradient(
    180deg,
    #f1f1f1 43.98%,
    rgba(241, 241, 241, 0) 100%
  );
}

.solutionheader h2 {
  font-family: "Saira", sans-serif;
  line-height: 70px;
  background-image: linear-gradient(
    180deg,
    #f1f1f1 43.98%,
    rgba(241, 241, 241, 0) 100%
  );
  width: 100%;
  color: var(--title);

  /* updated properties */

  font-size: 45px;
  font-weight: 700;
}
.solutionheader .Text {
  font-size: 16px;
  font-family: "Saira", sans-serif;
  font-weight: 400;
  color: var(--linksColor);
  line-height: 20px;
}
.solutionContainer .cardContainer {
  height: 70vh;
  height: 70svh;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
}

.cardContainer.scrollAction {
  width: 90%;
  margin: auto;
  border-radius: 10%;
  overflow: hidden;
}
.cardContainer.scrollAction .RowContainer {
}
.solutionContainer .RowContainer {
  display: grid;
  grid-template-columns: 40% 60%;
  overflow: hidden !important;
}
.solutionContainer .RowContainer .card {
  overflow: hidden;
  max-width: 100%;
  max-height: 100%;
  position: relative;
}

/* solution card image -- image style */
.solutionContainer .RowContainer .card .imageContainer {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;

  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;

  transition: 0.5s;
}
.solutionContainer .RowContainer .card:hover .imageContainer {
  transform: scale(1.05);
}
.solutionContainer .firstRow .firstCard .imageContainer {
  background-image: url("../assets/image/intelligent.webp");
}
.solutionContainer .firstRow .secondCard .imageContainer {
  background-image: url("../assets/image/ecosystem.webp");
}
.solutionContainer .secondRow .firstCard .imageContainer {
  background-image: url("../assets/image/integrat.webp");
}
.solutionContainer .secondRow .secondCard .imageContainer {
  background-image: url("../assets/image/information.webp");
} /* end solution card image */

.solution .solutionContainer .overLayer {
  background-color: var(--overlay);
  position: absolute;
  transition: 0.5s;
  display: flex;
}

/* each card text style */
.solution .solutionContainer .overLayer .textSection {
  color: white;
  font-family: "Poppins", sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 33px;
  padding: 20px;
  /* width: 100%; */
  text-transform: uppercase;
}
.solution .solutionContainer .overLayer .textSection a {
  text-decoration: none;
  color: inherit;
}

/* overlay hover effect and position  */
.solutionContainer .firstRow .firstCard .overLayer {
  width: 100%;

  bottom: 0;
  left: 0;
  right: 0;
  top: 70%;

  align-items: center;
  padding: 0 10%;
}
.solutionContainer .firstRow .firstCard:hover .overLayer {
  top: 0;
} /*  first row first card animation effect */

.solutionContainer .firstRow .secondCard .overLayer {
  bottom: 0;
  left: 0;
  right: 70%;
  top: 0;

  align-items: flex-end;
  padding-bottom: 10%;
  justify-content: center;
}
.solutionContainer .firstRow .secondCard:hover .overLayer {
  right: 0;
} /*  first row second card animation effect */
.solutionContainer .secondRow .firstCard .overLayer .textSection {
  width: 200px;
}
.solutionContainer .secondRow .firstCard .overLayer {
  bottom: 0;
  right: 0;
  left: 60%;
  top: 0;

  align-items: flex-end;
  padding-bottom: 10%;
  justify-content: center;
}
.solutionContainer .secondRow .firstCard:hover .overLayer {
  left: 0;
} /*  second row first card animation effect */
.solutionContainer .secondRow .secondCard .overLayer {
  bottom: 0;
  left: 0;
  right: 60%;
  top: 0;

  align-items: flex-end;
  padding-bottom: 10%;
  justify-content: center;
}
.solutionContainer .secondRow .secondCard .overLayer .textSection {
  width: 200px;
  padding-left: 0;
}
.solutionContainer .secondRow .secondCard:hover .overLayer {
  right: 0;
} /*  first row second card animation effect */

/* end solution section */

/* start service section */

.service {
  width: 100%;
  background-color: white;
  /* height: 100vh;
  height: 100svh; */

  /* background-image: url("../assets/image/solution.webp");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat; */
}

.serviceheader {
  padding: 0 10%;
  height: 20vh;
  height: 20svh;

  display: flex;
  align-items: center;

  background-image: linear-gradient(
    180deg,
    #f1f1f1 43.98%,
    rgba(241, 241, 241, 0) 100%
  );
}
.serviceheader h2 {
  font-family: "Saira", sans-serif;
  line-height: 90px;
  color: var(--title);

  font-size: 45px;
  font-weight: 700;
}
/* their is a file for service style */
/* end service section */

.lastCardSectionContainer {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  min-height: 100vh;
  max-height: 100vh;
  height: 100vh;
  min-height: 100svh;
  max-height: 120svh;
  position: relative;
  overflow: hidden;
  width: 94%;
  margin: auto;
}
.lastCardSectionContainer::after {
  content: "";
  position: absolute;
  height: 300.2px;
  width: 2177px;
  /* background-color: red; */
  top: 0;
  left: -300px;
  z-index: -1;
  background-image: url("../assets/vectors/lastSectionVector.webp");
  opacity: 0.2;
  /* background-color: red; */
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: -1;
}
/* .lastCardSectionContainer .CardContainerAbout {
  width: 94%;
  margin: 3% auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background-color: transparent;
  height: 80vh;
} */

.lastCardSectionContainer .CardContainerAbout {
  display: flex;
  /* align-items: center; */
  /* justify-content: flex-start; */
  flex-wrap: nowrap;
  overflow: scroll;
  gap: 20px;
  height: 80vh !important;
  min-width: 94%;
  margin: 3% auto;
}
.lastCardSectionContainer .CardContainerAbout::-webkit-scrollbar {
  display: none;
}
.lastCardSectionContainer .CardContainerAbout > * {
  min-width: 300px;
  height: 100%;
}
.lastCardSectionContainer .About-card {
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  position: relative;
  background-position: center center;
  background-size: cover;
}

.lastCardSectionContainer .About-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  background-image: url("../assets/image/AboutUsOverLayer.png");
  background: #06374c80;
  /* opacity: 0.8; */
}

.lastCardSectionContainer .textShowed {
  z-index: 2;
  position: absolute;
  font-family: "Poppins", sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 33px;
  letter-spacing: 0em;
  text-align: center;
  transition: 0.5s ease all;
}
.lastCardSectionContainer .DescriptionText {
  z-index: 2;
  font-family: "Poppins", sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0em;
  text-align: center;
  transform: translate(20%, 100%);
  opacity: 0;
  transition: 0.5s ease all;
  padding: 0 10px;
}

.lastCardSectionContainer .About-card:hover .textShowed {
  transform: translateY(-50%);
}
.lastCardSectionContainer .About-card:hover .DescriptionText {
  transform: translate(0, 50%);
  opacity: 1;
}

/* float action button -- contact us  */
aside .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100px;
}
aside .container button {
  position: relative;
  z-index: 10;
}

aside.flaot-btn .container button {
  position: absolute;
  bottom: 10%;
  right: 10%;
  width: 100px;
  height: 50px;
  border: 0;
  cursor: pointer;
  font-size: 1em;
  transition: all 0.8s cubic-bezier(0.645, 0.045, 0.355, 1),
    transform 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955),
    box-shadow 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  overflow: hidden;
}
aside.flaot-btn .container button img {
  width: 100%;
  height: 110% !important;
  object-position: center center;
  object-fit: contain;
}

aside.flaot-btn .container.open button {
  width: 50px;
  border-radius: 50%;
}

aside.flaot-btn .container.open button.menu {
  width: 400px;
  height: 450px;
  bottom: 10%;
  border-radius: 0;
  display: inline;
}
aside.flaot-btn .container.open button.menu img {
  width: 100%;
  object-fit: cover;
}

aside.flaot-btn .mainContactData {
  position: fixed;
  width: 400px;
  height: 450px;
  /* left: 70%; */
  right: 10%;
  bottom: 10%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  /* display: none; */
  z-index: 10000;
  background-color: #434343;

  display: none;
}
aside.flaot-btn .ContainerOpenWrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  color: white;
  background-color: #434343 !important;
}

aside.flaot-btn .ContainerOpenWrapper .title {
  font-family: "Saira", sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 22px;
  letter-spacing: 0em;
  text-align: center;
  max-width: 400px;
  background-color: #434343;
}
aside.flaot-btn .ContainerOpenWrapper .formContainer {
  font-family: "Saira", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
}

aside.flaot-btn .ContainerOpenWrapper .formContainer .row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex: 1;
  width: 100%;
}

aside.flaot-btn .ContainerOpenWrapper .formContainer .row input,
textarea {
  background-color: #f1f1f1b2;
  width: 100%;
}

aside.flaot-btn .ContainerOpenWrapper .formContainer .row input {
  padding: 5px;
  border: none;
  outline: none;
}
aside.flaot-btn .textArea {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-direction: column;
  width: 100%;
}
aside.flaot-btn .textArea label {
  width: 100%;
  text-align: left;
}
aside.flaot-btn .inputGroup {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 5px;
}

aside.flaot-btn .rowButton {
  width: 100%;
  display: flex;
  /* align-items: center; */
  justify-content: space-between !important;
  /* gap: 100px; */
}
aside.flaot-btn .btn_submit {
  background-color: #39ab48;
  width: 143.84px;
  height: 25px;
  color: white;
  border: none;

  font-size: 13px;
  font-weight: 500;
  line-height: 1px;
  letter-spacing: 1px;
  text-align: center;
  width: max-content;
  padding: 10px 20px;
}

aside.flaot-btn .mainContactData #nav-close {
  cursor: pointer;
  animation-delay: 1.1s;
}

@media only screen and (max-width: 500px) {
  aside.flaot-btn .mainContactData {
    max-width: calc(100vw - 50px);
    margin: auto;
    right: 0;
    left: 0;
  }
  aside.flaot-btn .ContainerOpenWrapper {
    width: 100%;
  }
  aside.flaot-btn .container.open button.menu {
    width: calc(100vw - 50px);
    left: 0;
    right: 0;
    margin: auto;
  }
}
