* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-family: "Plus Jakarta Sans", serif;
}

::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-thumb {
  background-color: rgb(216, 216, 216);
  border-radius: 40px;
}

::-webkit-scrollbar-track {
  background-color: transparent;
}

body {
  margin: 0;
  line-height: 1.5;
  background-color: #fefefe;
  color: #32323b;
}

.header .video-overlay {
  mix-blend-mode: screen;
  position: -webkit-sticky;
  position: absolute;
  opacity: 1;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.contain {
  max-width: 1000px;
  margin: auto;
  padding-left: 2rem !important;
  padding-right: 2rem !important;
}

@keyframes bounce {
  0% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(20px);
  }

  100% {
    transform: translateX(0);
  }
}

ul {
  padding-left: 0 !important;
}

button {
  color: #ced3d5;
  padding: 0.75rem 3rem;
  font-size: 1.05rem;
  border: none;
  outline: 0;
}

button.submit {
  font-size: 1.25rem;
  font-weight: 600;
  background-color: #082b34;
  width: 100%;
  padding: 1.25rem;
  color: white;
}

button.submit:hover {
  transform: translateY(-10px);
  transition: ease-in-out 700ms;
  background-color: #082b3485;
}

a#start {
  transition: all 0.3s;
  position: relative;
  text-decoration: none;
  color: white !important;
  z-index: 1;
  font-size: 14px;
  border-radius: 0rem;
  font-weight: 300;
  letter-spacing: 1px;
}

a#start::after {
  content: "\27F6";
  margin-left: 5px;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  transform-origin: bottom;
}

a#start:hover {
  color: white !important;
}

a#start:hover::after {
  display: inline-block;
  animation-name: bounce;
  animation-timing-function: ease;
}

::selection {
  color: white;
  background: #082b34;
}

.header {
  background-color: #082b34;
  color: white;
  min-height: 100vh;
  position: relative;
}

.header::before {
  width: 100%;
  opacity: 0.6;
  position: absolute;
  content: "";
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  background: url(../images/pattern-3.png) no-repeat center;
  background-size: cover;
}

.header .contain {
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  padding-top: 7rem;
  min-height: 100vh;
}

.header nav {
  display: flex;
  align-items: center;
  justify-content: center;
}

.header .logo {
  width: 90px;
}

.header .header-text {
  text-align: center;
  padding-top: 15.5rem;
}

.header .header-text h1 {
  line-height: 1.25;
  margin: 1rem;
  font-size: 3.2rem;
  font-weight: 600 !important;
}

.header .header-text h1 span {
  color: #87989e;
}

.header .header-text p {
  font-size: 1.25rem;
  letter-spacing: 0.3em;
  font-weight: 500;
  line-height: 1;
  color: #bebebe !important;
}

#changeText {
  opacity: 1;
  transition: opacity 0.5s;
}

.hide2 {
  opacity: 0 !important;
}

.partners .all-logos {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  place-items: center;
  position: absolute;
  top: 0;
  animation: scroll 10s linear 1s infinite;
}

.partners .all-logos img {
  /* width: 100%; */
  filter: saturate(0);
  /* height: 100px; */
  margin: auto;
  display: block;
  max-width: 75%;
  height: 85px;
  padding: 1rem;
}

.partners .all-logos div {
  width: 100%;
  padding: 1rem;
}

.partners .holder {
  position: relative;
  max-height: 450px;
  width: 100%;
  height: 230px;
  overflow: hidden;
  overflow-y: hidden;
  padding-bottom: 0.75rem;
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
  margin: auto;
}

.partners .holder::after {
  position: absolute;
  content: "";
  z-index: 10;
  background: linear-gradient(0deg, rgba(204, 204, 204, 0) 0%, #082b34f2 100%);
  top: 0;
  left: 0;
  height: 70%;
  width: 100%;
}

.partners .holder::before {
  position: absolute;
  content: "";
  z-index: 10;
  background: linear-gradient(360deg, rgba(204, 204, 204, 0) 0%, #082b34f2 100%);
  bottom: -30px;
  left: 0;
  transform: rotate(180deg);
  height: 70%;
  width: 100%;
}

.partners .holder::-webkit-scrollbar {
  display: none;
}

.services {
  padding: 4.5rem 0;
}

.services p {
  text-transform: uppercase;
  font-weight: 900;
  font-size: 12px;
}

.services h1 {
  font-weight: 700;
  font-size: 2.5rem;
}

.services .features {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  margin: 3rem 0;
  gap: 2rem;
  grid-gap: 2rem;
}

.services .features ul li {
  line-height: 2;
  font-size: 14px;
}

.services .features ul li:nth-of-type(1) {
  list-style: none;
  font-weight: 700;
  text-transform: uppercase;
}

.services .features ul li:nth-of-type(2) {
  list-style: none;
  margin: 2.5rem 0;
}

@keyframes scroll {
  100% {
    top: -351.5px;
  }
}

.project {
  padding: 4rem 0;
  position: relative;
  color: black;
}

.project::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
  background-color: #f1f1f1;
}

.project .contain {
  position: relative;
  z-index: 30;
}

.project .contain .flex-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  grid-gap: 1.5rem;
}

.project .contain .flex-item h2 {
  font-size: 2.25rem;
  font-weight: 600;
  margin-bottom: 3rem;
}

.project .form-control {
  border: none;
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
  background-color: transparent;
}

.project .form-control input,
.project .form-control textarea {
  background-color: transparent;
  padding: 10px;
  border: 1px solid #79a4b0;
  border-radius: 0.25rem;
}

.project .form-control label {
  font-size: 15px;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.project .accordion {
  margin-top: 2rem;
}

.project .accordion h3 {
  cursor: pointer;
  background-color: #d2dfe5;
  border-radius: 0.25rem;
  color: black;
  font-size: 1rem;
  padding: 0.75rem;
  margin-bottom: 0.75rem;
}

.project .accordion h3.ui-state-active {
  background-color: #286a7a;
  color: white;
}

.project .accordion div {
  padding-left: 1rem;
  margin-bottom: 1.5rem;
  height: auto !important;
}

.accordionContent {
  position: relative;
}

footer {
  /* background-color: #082b34; */
  /* color: white !important; */
  background-color: #dce3e3;
  padding: 1rem;
}

footer .contact {
  max-width: 600px;
  margin: auto;
  padding-top: 5rem;
}

footer .contact h3 {
  font-weight: 700;
  margin-bottom: 1.5rem;
}

footer .contact a {
  font-weight: 700;
  color: black;
  text-decoration: none;
  font-size: 19px;
}

footer .contact p {
  line-height: 1.75;
  font-size: 1.25rem;
}

footer .contact div.nike-info {
  display: flex;
  align-items: center;
  justify-content: left;
  gap: 1rem;
  grid-gap: 1rem;
  padding: 2rem 0;
}

footer .contact div.nike-info a.mail {
  color: #a2a2a7;
  font-weight: 500;
}

footer .contact div.nike-info img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
}

footer .contact div.nike-info div {
  width: auto;
}

footer section.holder {
  max-width: 1400px;
  margin: auto;
  padding: 6rem 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  place-items: center;
}

footer section.holder img.logo {
  width: 80px;
  /* filter: grayscale(1); */
}

footer section.holder .certificate {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 1rem;
  gap: 1rem;
}

footer section.holder .certificate img {
  /* filter: grayscale(1); */
  width: auto;
  height: 50px;
}

footer section.holder .socials img {
  /* filter: grayscale(1); */
  width: 40px;
  cursor: pointer;
}

footer section.holder div a {
  margin: 0 0.5rem;
}

footer small {
  padding-bottom: 2rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-align: center;
  display: block;
  opacity: 0.6;
  /* color: #a2a2a7; */
}

@media (max-width: 768px) {

  footer section.holder .certificate {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .contain {
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
  }

  a#start {
    font-size: 0.875rem !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .header {
    min-height: 100vh;
  }

  .header .contain {
    padding-left: 0.875rem !important;
    padding-right: 0.875rem !important;
  }

  .header .header-text {
    padding-top: 3.5rem;
  }

  .header .header-text h1 {
    line-height: 1.25;
    margin: 1rem;
    font-size: 2rem;
    font-weight: 600 !important;
  }

  .header .header-text h1 span {
    color: #87989e;
  }

  @keyframes scroll {
    100% {
      top: -500.5px;
    }
  }

  .partners .all-logos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .partners .all-logos img {
    height: 85px;
    padding: 0;
  }

  .partners .all-logos div {
    width: 100%;
  }

  .partners .holder {
    position: relative;
    max-height: 450px;
    width: 100%;
    height: 230px;
    overflow: hidden;
    overflow-y: hidden;
    padding-bottom: 0.75rem;
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
    margin: auto;
  }

  .services {
    padding: 2rem 0;
  }

  .services h1 {
    font-size: 1.75rem;
  }

  .services .features {
    grid-template-columns: 1fr;
    margin: 2.25rem 0;
    gap: 2rem;
    grid-gap: 2rem;
  }

  .services .features ul {
    padding: 0;
  }

  .services .features ul li:nth-of-type(2) {
    margin: 1.25rem 0;
  }

  .project {
    padding: 2rem 0;
  }

  .project .contain .flex-item {
    grid-template-columns: 1fr;
  }

  .project h2 {
    font-size: 1.5rem;
    margin-bottom: 1.75rem;
  }

  .project .form-control {
    padding: 0;
    margin-bottom: 1.5rem;
  }

  .project .form-control input,
  .project .form-control textarea {
    padding: 10px;
  }

  .project .form-control label {
    font-size: 12px;
  }

  footer section.holder {
    grid-template-columns: 1fr;
    grid-gap: 2rem;
    gap: 2rem;
  }
}


.gr-text-2 {
  font-size: 3.75rem;
  letter-spacing: -2px;
  line-height: 1.083;
}

@media (max-width: 1200px) {
  .gr-text-2 {
    font-size: calc(1.5rem + 3vw);
  }
}

@media (max-width: 480px) {

  footer section.holder .certificate {
    grid-template-columns: 1fr 1fr;
  }
}

.gr-text-8 {
  font-size: 1.1875rem;
  letter-spacing: -0.2px;
  line-height: 1.69;
}

.gr-text-9 {
  font-size: 1.0625rem;
  letter-spacing: -0.2px;
  line-height: 1.71;
}

.gr-text-10 {
  font-size: 1rem;
}

.gr-text-11 {
  font-size: 0.9375rem;
  letter-spacing: -0.1px;
  line-height: 1.73;
}

.gr-text-12 {
  font-size: 0.8125rem;
  line-height: 1.63;
}

.mb-6,
.my-6 {
  margin-bottom: 1rem !important;
}

.tac ul li {
  margin-bottom: 1rem;
}

.mb-9 {
  margin-bottom: 1.875rem
}

.philosophy-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
}

.capabilities-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
  /* background-color: #082b34; */
  /* background-image: url(https://live.21lab.co/mlab/wp-content/uploads/2023/08/bg-1.png); */
  background-repeat: no-repeat;
  background-size: contain;
}

.capabilities-wrapper>* {
  position: relative;
  z-index: 2;
}

.philosophy-container {
  display: flex;
  padding: 72px 12px;
  width: 100%;
  justify-content: space-between;
  max-width: 1200px;
  flex-direction: row;
  align-items: stretch;
  gap: 48px;
}

.capabilities-container {
  display: flex;
  padding: 72px 12px;
  width: 100%;
  justify-content: flex-end;
  max-width: 1200px;
  flex-direction: row;
  align-items: stretch;
  gap: 48px;
}

.contact-container {
  display: flex;
  width: 100%;
  justify-content: space-between;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-container-03 {
  display: flex;
  width: 100%;
  justify-content: space-between;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}

.contact-container-02 {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: space-between;
  flex-direction: row;
  align-items: center;
}

.contact-container-04 {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: space-between;
  flex-direction: row;
  align-items: center;
}

.contact-container-header {
  color: #00003C;
  font-size: 21px;
  font-weight: 400;
  line-height: 32px;
}

.philosophy-container-02 {
  display: flex;
  padding: 72px 12px;
  width: 100%;
  justify-content: space-between;
  max-width: 1200px;
  flex-direction: row;
  align-items: first baseline;
  gap: 48px;
}

.philosophy-container-03 {
  display: flex;
  padding: 72px 12px;
  width: 100%;
  justify-content: space-between;
  max-width: 1200px;
  flex-direction: column;
  align-items: first baseline;
  gap: 48px;
}

.custom-card {
  height: 172px;
  cursor: pointer;
  width: 172px;
  background-color: #fff;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  padding-bottom: 24px;
  border-radius: 16px;
  transition: all 0.2s ease-in-out 0s;
}

.custom-card-text {
  font-size: 16px;
  text-align: center;
  padding: 12px;
  font-weight: 600;
  line-height: 22px;
  color: #595980;
}

.custom-card:hover {
  border: 1px solid #082b34;
}

.philosophy-image-container {
  position: relative;
  width: 100%;
  height: 100%;
  max-height: 650px;
  max-width: 475px;
  min-width: 475px;
  overflow: hidden;
  border-radius: 16px;
  overflow: hidden;
}

.philosophy-image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 2s ease-in-out;
}

.philosophy-image.active {
  opacity: 1;
}


.philosophy-subcontainer {
  display: flex;
  height: 100%;
  padding: 24px 0 0 0;
  gap: 24px;
  flex-direction: column;
  align-items: flex-start;
  border-top: 1px solid #e0e0e7;
}

.philosophy-subcontainer-03 {
  display: flex;
  width: 100%;
  gap: 24px;
  flex-direction: column;
  align-items: flex-start;
}

.philosophy-subcontainer-02 {
  display: flex;
  width: 100%;
  height: 100%;
  gap: 24px;
  flex-direction: row;
  align-items: flex-start;
}

.philosophy-subcontainer-04 {
  display: flex;
  width: 100%;
  padding: 24px 0 0 0;
  gap: 24px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}


.philosophy-subcontainer-05 {
  display: flex;
  width: 100%;
  padding: 24px 0 0 0;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
}

.flex-end-con {
  gap: 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: stretch;
}

.solution-list {
  background-color: #eff4f8;
  text-decoration: none;
  color: #00003c;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  padding: 20px 35px;
  flex-direction: row;
  justify-content: space-between;
  border: 1px solid transparent;
  gap: 20px;
  border-radius: 15px;
  transition: all 0.3s ease; 
}
.solution-list:hover {
  color: #082b34;
  color: #082b34;
  background-color: #d8e9f5;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
  transform: translateY(-5px);
}

.solution-list p {
  margin: 0;
  font-size: 17px;
  line-height: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.solution-list img {
  height: 40px;
  flex-shrink: 0; 
}

.philosophy-card {
  display: flex;
  height: 100%;
  padding: 24px 0 0 0;
  gap: 24px;
  flex-direction: column;
  align-items: flex-start;
  border-top: 1px solid #e0e0e7;
}

.philosophy-card:hover {
  border-top: 1px solid #000000;
}

.philosophy-subcontainer-heading-text {
  color: #5E566A;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 15px;
  letter-spacing: 1px;
}

.philosophy-subcontainer-heading-text-02 {
  color: #000000;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.5em;
}

.philosophy-subcontainer-btn {
  background-color: #082b34;
  /* padding-top: 18px;
  padding-bottom: 18px; */
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px;
  font-size: 17px;
  color: #ffffff;
  width: 100%;
  max-width: 290px;
  font-weight: 600;
  border-radius: 15px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.075);
}

.philosophy-card-header {
  color: #0A0000;
  font-size: 16px;
  font-weight: 800;
  line-height: 21px;
}

.philosophy-subcontainer-heading-desc {
  color: #082b34;
  font-size: 44px;
  font-weight: normal;
  line-height: 1.18em;
}

.philosophy-subcontainer-heading-desc-02 {
  color: #082b34;
  font-size: 44px;
  text-align: center;
  font-weight: normal;
  line-height: 1.18em;
}

.philosophy-subcontainer-desc {
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
  color: #595980;
}

.philosophy-subcontainer-desc-02 {
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
  text-align: left;
  width: 100%;
  max-width: 70%;
  color: #595980;
}

.philosophy-features {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.philosophy-feature-btn {
  padding: 12px 22px;
  cursor: pointer;
  color: #595980;
  border-radius: 10px;
  background-color: #eff4f8;
  transition: all 0.2s ease-in-out 0s;
}

.philosophy-feature-btn:hover {
  color: #fff;
  background-color: #082b34;
}

@media (max-width: 1016px) {
  .philosophy-container {
    flex-direction: column;
    align-items: center;
  }

  .capabilities-container {
    flex-direction: column;
    align-items: center;
  }

  .contact-container {
    justify-content: center;
  }

  .philosophy-container-02 {
    flex-direction: column;
  }
}

@media (max-width: 526px) {
  .philosophy-subcontainer-02 {
    flex-direction: column;
    align-items: center;
  }


  .contact-container-03 {
    flex-direction: column;
  }
}


@media (max-width: 726px) {
  .form-group {
    max-width: none !important;
  }

  .philosophy-image-container {
    min-width: none;
  }

  .solution-list p {
    font-size: 16px;
    padding-right: 10px;
    right: 20px;
  }

  .philosophy-subcontainer-05 {
    flex-direction: column;
  }

  .flex-end-con {
    grid-template-columns: repeat(1, 1fr);
  }

  .philosophy-subcontainer-desc-02 {
    max-width: none;
  }
}

.contact-form {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  width: 100%;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 48%;
  gap: 6px;
}


.form-group input,
.form-group textarea {
  background: rgba(0, 0, 60, 0.085);
  border: none;
  max-width: 100%;
  font-size: 15px;
  line-height: 18px;
  padding: 15px 20px;
  background-color: rgba(0, 0, 60, 0.12);
  border-radius: 15px;
  width: 100%;
}

.grid-container {
  padding: 24px 0;
  display: grid;
  width: 100%;
  grid-template-columns: repeat(2, 1fr);
  /* grid-template-columns: repeat(3, 1fr); */
  gap: 20px;
}

.grid-item {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 12px;
  color: #ffffffb3;
}

.grid-item a {
  color: #ffffff;
}

/* @media (max-width: 1024px) {
  .grid-container {
    grid-template-columns: repeat(2, 1fr);
  }
} */

@media (max-width: 726px) {
  .grid-container {
    grid-template-columns: 1fr;
  }
}

#playButton {
  position: fixed;
  bottom: 20px;
  right: 20px;
  border-radius: 100%;
  z-index: 999999999;
  /* background-color: #333; */
  border: none;
  cursor: pointer;
  display: flex;
  padding: 12px;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

#playButton:hover {
  transform: scale(1.1);
}

.play-icon, .pause-icon {
  width: 30px;
  height: 30px;
  fill: #333;
}

.pause-icon {
  display: none;
}