* {
  margin: 0;
  padding: 0;
}
body {
  font-family: "Plus Jakarta Sans", sans-serif;
}
a {
  text-decoration: none;
  color: inherit;
}
.no-scroll {
  overflow: hidden;
}
.burger-active {
  background-color: white;
}
@media (max-width: 1000px) {
  .secondLandingTextsHeader {
    width: auto;
  }
  .secondLandingTextsTextBox {
    width: auto;
  }
}
.arrow {
  border-bottom: black 2px solid;
}

.scroller {
  max-width: 1258px;
  background-color: white;
  border-radius: 10px;
  background: linear-gradient(
      to left,
      rgba(237, 237, 237, 0.1),
      rgba(255, 255, 255, 0.5)
    ),
    rgba(237, 237, 237, 0.1);
  margin-bottom: 30px;
}
.scrollersize {
  width: 10.5rem;
  height: 3.75rem;
}

.scroller__inner {
  padding-block: 1rem;
  padding-inline: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.scrollerpadding {
  padding-left: 10px;
  padding-right: 10px;
}
.scroller[data-animated="true"] {
  overflow: hidden;
  -webkit-mask: linear-gradient(
    90deg,
    transparent,
    white 20%,
    white 80%,
    transparent
  );
  mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
}

.scroller[data-animated="true"] .scroller__inner {
  width: max-content;
  flex-wrap: nowrap;
  animation: scroll var(--_animation-duration, 40s)
    var(--_animation-direction, forwards) linear infinite;
}

.scroller[data-direction="right"] {
  --_animation-direction: reverse;
}

.scroller[data-direction="left"] {
  --_animation-direction: forwards;
}

.scroller[data-speed="fast"] {
  --_animation-duration: 40s;
}

.scroller[data-speed="slow"] {
  --_animation-duration: 60s;
}
.scroller__inner .client-logo {
  transition: transform 0.3s ease;
  padding-left: 10px;
  padding-right: 10px;
}
.scroller__inner img:hover {
  transform: translateY(-3px);
}

/*stop the animation when hovered*/
.scroller[data-animated="true"]:hover .scroller__inner {
  animation-play-state: paused;
}

@keyframes scroll {
  to {
    transform: translate(calc(-50% - 0.5rem));
  }
}

.header {
  font-size: 50px;
  font-weight: 700;
}

.landingContainer {
  height: 1030px;
  background-image: url("../Asset/Home/landingContainer/landingBg.svg");
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.landingFirstNav {
  background-color: black;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.landingFirstBox {
  width: 158px;
  display: flex;
  justify-content: flex-start;
}
.landingFirstNavElements {
  height: 22px;
  width: 70px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  color: white;
  font-size: 10px;
  font-weight: 700;
}
.landingFirstNavElement {
  width: 30px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.secondNav {
  height: 9.5625rem;
  color: white;
}
.secondNavElements {
  padding-left: 6.24%;
  padding-right: 6.24%;
  padding-top: 2rem;
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.SecondNavLogo {
  width: 14.0625rem;
}
.SecondNavLogoA {
  height: 5.3125rem;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.SecondNavNav {
  width: 26.8125rem;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.SecondNavDropdown {
  position: relative;
  display: inline-block;
  width: 7.5rem;
}
.SecondNavDrop {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.SecondNavDrop svg {
  padding-left: 0.5rem;
}
.chevron {
  vertical-align: middle;
  display: inline-block; /* Ensure it is treated as an inline block element */
}

.chevron__group {
  transform: translateY(0);
  transition: transform 0.1s linear;
}
.chevron__box {
  fill: white;
}
.chevron__box--left,
.chevron__box--right {
  transform: rotate(0) translateY(0);
  transition: transform 0.1s linear;
}

.chevron__box--left {
  transform-origin: 0.063rem 0.063rem;
}

.chevron__box--right {
  transform-origin: 0.438rem 0.063rem;
}

.SecondNavDropdown:hover .chevron__box--left {
  transform: rotate(-90deg) translateY(0);
}

.SecondNavDropdown:hover .chevron__box--right {
  transform: rotate(90deg) translateY(0);
}

.SecondNavDropdown:hover .chevron__group {
  transform: translateY(0.188rem);
}
.SecondNavDropEBox {
  margin-top: 0.625rem;
  backdrop-filter: blur(3.125rem);
  background-color: rgba(255, 255, 255, 0.5);
}
.SecondNavDropE {
  display: none;
  text-align: center;
  font-size: 0.625rem;
  width: 12.5rem;
  color: black;
  border-radius: 0.3125rem;
}
.SecondNavDropE a {
  display: block;
  height: 1.5625rem;
  font-size: small;
  padding: 0.3125rem 0.9375rem;
  text-align: start;
  transition: background-color 0.3s ease, transform 0.5s ease;
  font-weight: 400;
}
.SecondNavDropE a:hover {
  transform: translateY(-0.1875rem);
  background-color: #98a4a7;
}
.webNav .SecondNavDropdown:hover .SecondNavDropE {
  display: block;
  position: absolute;
}
.SecondNavNavE {
  width: 7.125rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
#SecondNavContact {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0.125rem solid #f92937;
}
.landingTexts {
  width: 37.5rem;
  height: 30.3125rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-left: 6.24%;
}
.landingTextsHeader {
  font-size: 6.875rem;
}
.LandingTextsText {
  width: 32rem;
  font-size: 1.5rem;
  font-weight: 400;
}
.LandingTextsArrow {
  width: 9.375rem;
  font-size: 1.5rem;
  font-weight: 700;
}
.LandingTextsArrow span {
  color: #f92937;
}
.partnerDataBox {
  display: flex;
  justify-content: center;
}
.secondLandingContainer {
  height: 56.75rem;
}
.secondLandingBox {
  height: 38.375rem;
  background-image: url("../Asset/Home//secondLanding/homeRedBg.svg");
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
}
.secondLanding {
  height: 50.625rem;
  width: 78.75rem;
  padding-top: 8.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: white;
}
.secondLandingTexts {
  height: 11.25rem;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.secondLandingTextsTextBox {
  height: 10rem;
  font-size: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.secondLandingTextsText span {
  font-weight: 800;
}

.secondLandingTextsArrow {
  width: 10rem;
  border-bottom: white 0.125rem solid;
}
.secondLandingImg {
  height: 23.75rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 1rem;
}

.secondLandingImgImg {
  position: relative;
}

.secondLandingImgImg img {
  transition: z-index 0.3s ease-in-out;
  width: 100%;
  height: auto;
}

.secondLandingImgImg .color-img {
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
}

.secondLandingImgImg:hover .color-img {
  z-index: 1;
}

.secondLandingMotto {
  display: flex;
  justify-content: center;
}
.solutionsBeSafe {
  height: 42.8125rem;
  background-color: #e8e8e8;
  display: flex;
  justify-content: center;
}
.solutionsHeader {
  height: 12.625rem;
  display: flex;
  align-items: center;
}
.solutionsBox {
  display: flex;
  gap: 5rem;
}
.solutionsBoxElements {
  width: 32.5rem;
  height: 23.125rem;
  padding-top: 3.125rem;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.solutionsBoxTexts {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.solutionsBoxText {
  font-size: 1.5rem;
  font-weight: 400;
}
.solutionsBoxText span {
  font-weight: 800;
}
.solutionsBoxTextArrow {
  width: 21.25rem;
  font-size: 1.5rem;
  font-weight: 700;
}
.solutionsBoxTextArrow span {
  color: #a90014;
}
.solutionsBeEnvi .solutionsBoxTextArrow span {
  color: #6bb46a;
}
.solutionsBeSolz .solutionsBoxTextArrow span {
  color: #3ec6cf;
}
.solutionsBeEnvi {
  height: 42.8125rem;    
  display: flex;
  justify-content: center
}
.solutionsBeEnviBox {
  padding-top: 12.5rem;
}
.solutionsBeSolz {
  height: 56.25rem;
  background-color: #e8e8e8;
  display: flex;
  justify-content: center;
}
.solutionsBeSolzBox {
  padding-top: 12.5rem;
}
.clientsContainer {
  height: 26rem;
  display: flex;
  justify-content: center;
}
.clientsBox {
  width: 100%;
  max-width: 78.75rem; /* This is equivalent to 1260px */
  padding-top: 8.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.clientsLogos {
  height: 5.5rem;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.clientsArrowBox {
  display: flex;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
}
.clientsArrow {
  width: 14.375rem;
}
.specsContainer {
  padding: 10rem 0;
}
.specsBoxBox {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 5rem;
}
.specsBoxImg img {
  width: 100%;
  height: auto;
}
.specsBoxText {
  width: 35rem;
  height: 28.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.specsTextText {
  font-size: 1.5rem;
  font-weight: 400;
}
.specsTextArrow {
  width: 10.625rem;
  font-size: 1.5rem;
  font-weight: 700;
}
.cooperateContainer {
  background-color: #f3f3f3;
  padding-bottom: 5rem;
}
.cooperateHeadersBox {
  height: 18.75rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cooperateHeaders {
  height: 7.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.cooperate {
  display: flex;
  justify-content: center;
}
.coopAllSteps {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 8%;
}
.coopGrid {
  display: grid;
  grid-template-columns: repeat(5, auto);
  gap: 2.5rem;
}
.coopGridItem {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.coopGridItem{
  height: auto;
  width: 100%;
}
.coopGridItem h2 {
  padding: 2rem 0;
}
.coopGridItem h4 {
  text-align: center;
  font-weight: 400;
}
.newsResContainer {
  height: 44.375rem;
  background-image: url("../Asset/Home/newsRes/redBG.svg");
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
}
.newsResBox {
  padding-top: 7.125rem;
  height: 40.3125rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.newsResText {
  color: white;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.newsResGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 33.0625rem;
  gap: 5.25rem;
}
.newsGridItem {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: white;
  border: 0.25rem solid #f92937;
}
.newsGTB {
  height: 13.75rem;
  width: 19.375rem;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  padding-left: 1.875rem;
}
.newsGTB h1 {
  height: 6.75rem;
}
.arrowNewsBox {
  width: 6.875rem;
}
.arrowNews {
  border-bottom: 0.125rem solid white;
  font-size: 1rem;
  font-weight: 700;
}
.futureContainer {
  height: 40.125rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.futureBox {
  width: 36.875rem;
  height: 17.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  align-items: center;
}
.futureText {
  font-weight: 400;
}
.futureBox span {
  color: #f92937;
}
.burgerMenuContent .SecondNavDropE {
  position: relative;
}
.burgerMenuContent a {
  display: block;
  padding: 1rem;
  color: #000000;
  font-size: 1.5rem;
  border-bottom: 1px solid #444;
  text-decoration: none;
}
@media (max-width: 78.75rem) {
  .newsResGrid {
    grid-template-columns: repeat(2, 1fr);
  }
  .newsResGrid :nth-child(3) {
    display: none;
  }
}
/* Styles for mobile screens */
@media screen and (max-width: 845px) {
  .webNav .secondNav {
    display: none;
  }

  .burgerMenu {
    display: block;
    position: relative;
  }
  .burgerMenu img {
    width: 15%;
    padding: 0.5rem;
    display: inline-block;
  }
  .burgerIcon {
    display: block;
    width: 30px;
    height: 25px;
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    padding: 0.5rem;
  }

  .burgerIcon span {
    display: block;
    width: 100%;
    height: 3px;
    margin-bottom: 5px;
    background-color: #333;
    transition: 0.3s;
  }

  #burgerToggle {
    display: none;
  }

  #burgerToggle:checked + .burgerIcon span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  #burgerToggle:checked + .burgerIcon span:nth-child(2) {
    opacity: 0;
  }

  #burgerToggle:checked + .burgerIcon span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .burgerMenuContent {
    display: none;
    background-color: #fff;
    z-index: 1000;
    width: 100%;
  }

  #burgerToggle:checked ~ .burgerMenuContent {
    display: block;
    position: fixed;
    top: 3.5rem;
    bottom: 0;
  }
  .burgerMenuContent .SecondNavNav {
    display: block;
    width: 100%;
  }
  .burgerMenuContent .SecondNavDropdown {
    width: auto;
    display: block;
  }
  .burgerMenuContent .SecondNavDrop {
    font-size: 1.5rem;
    justify-content: space-between;
    padding: 1.5rem;
    border-bottom: 0.1rem solid #ededed;
  }
  .new-chevron {
    display: inline-block;
    vertical-align: middle;
    width: 1.5rem;
    height: 0.5rem;
  }

  .burgerMenuContent .SecondNavDropE {
    width: auto;
    border-radius: 0;
  }
  .burgerMenuContent .SecondNavDropEBox {
    padding: 0.5rem;
  }
  .open {
    display: block;
  }
  .burgerMenuContent .SecondNavNavE {
    width: auto;
    height: auto;
    display: block;
  }
  #SecondNavContact {
    border: none;
    display: block;
  }
  .burgerMenuContent .SecondNavNav a {
    display: block;
    padding: 0;
    text-decoration: none;
    color: #333;
    border-bottom: none;
  }
  .burgerMenuContent .SecondNavDropE a {
    height: auto;
    padding: 1rem;
  }
  .burgerMenuContent .SecondNavNav a:hover {
    background-color: #f5f5f5;
  }
  .landingContainer {
    background-image: url(../Asset/Home/landingContainer/MobilelandingBg2.svg);
  }
  .SecondNavLogoA {
    display: inline;
  }
  .landingContainer {
    height: auto;
  }
  .landingTexts {
    width: auto;
    height: auto;
    padding-bottom: 2rem;
  }
  .landingTextsHeader {
    word-wrap: break-word;
    padding-bottom: 2rem;
  }
  .LandingTextsText {
    width: auto;
    word-wrap: break-word;
    padding-bottom: 2rem;
  }
  .secondLandingContainer {
    height: auto;
  }
  .secondLandingBox {
    height: auto;
  }
  .secondLanding {
    height: auto;
    width: auto;
    padding-top: 5rem;
    display: block;
    padding-left: 8%;
    padding-right: 8%;
  }
  .secondLandingTexts {
    height: auto;
    display: block;
  }
  .secondLandingTextsTextBox {
    padding-top: 2rem;
  }
  .secondLandingImg {
    height: auto;
    display: block;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .secondLandingMotto {
    display: none;
  }
  .solutionsContainer {
    height: auto;
  }
  .solutionsBeSafe {
    height: auto;
    display: block;
    padding-left: 8%;
    padding-right: 8%;
  }
  .solutionsBeSafeBox {
    width: auto;
  }
  .solutionsBox {
    height: auto;
    display: flex;
    flex-direction: column;
    padding-top: 2rem;
  }
  .solutionsBoxElements {
    width: auto;
    padding-bottom: 2rem;
    order: 2;
  }
  .solutionsBoxMotto {
    display: none;
  }
  .solutionsBeEnvi {
    height: auto;
    display: block;
    padding-left: 8%;
    padding-right: 8%;
  }
  .solutionsBeEnviBox {
    width: auto;
    padding-top: 0;
  }
  #beEnviLogo {
    padding-bottom: 2rem;
  }
  .solutionsBeSolz {
    height: auto;
    display: block;
    padding-left: 8%;
    padding-right: 8%;
  }
  .solutionsBeSolzBox {
    width: auto;
    padding-top: 0;
  }
  #beSolzLogo {
    padding-top: 2rem;
  }
  .specsContainer {
    height: auto;
    padding-top: 0;
  }
  .specsBoxBox {
    display: block;
    padding-left: 8%;
    padding-right: 8%;
  }
  .specsBoxImg {
    width: auto;
  }
  .clientsBox {
    padding-bottom: 4rem;
  }
  .specsBoxText {
    width: auto;
    padding-bottom: 4rem;
  }
  .cooperateContainer {
    height: auto;
    padding-top: 6rem;
  }
  .cooperateHeadersBox {
    height: auto;
    padding-bottom: 4rem;
  }
  .cooperateHeaders {
    width: auto;
    height: auto;
    text-align: center;
  }
  .coopGrid {
    grid-template-columns: repeat(1, 12rem);
  }
  .newsResContainer {
    height: auto;
  }
  .newsResBox {
    height: auto;
    padding: 4.5rem 8%;
  }
  .arrowNews {
    display: none;
  }
  .newsResGrid {
    grid-template-columns: repeat(1, 1fr);
    grid-auto-rows: auto;
    padding-top: 4rem;
  }
}

/* Hide burger menu on larger screens */
@media screen and (min-width: 846px) {
  .burgerMenu {
    display: none;
  }

  .SecondNavNav {
    display: flex;
  }
  .landingTexts {
    padding-bottom: 4rem;
  }
}
