@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500&display=swap');

@font-face {
  font-family: 'ConnectedHelvetica';
  src: url('../fonts/Montserrat.ttf') format('truetype');
}

body,
html {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: 'Montserrat', sans-serif;
}

section {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Home Page Styles */
.home {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.home::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../assets/bk1.jpg') no-repeat center center;
  background-size: cover;
  z-index: -1;
}

.home::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  z-index: 1;
  pointer-events: none;
}

@keyframes fadeInAfterDelay {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.5);
  }

  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

.home .reddish-overlay {
  position: absolute;
  top: 100%;
  left: 50%;
  width: 125rem;
  height: 125rem;
  background: radial-gradient(circle, rgba(202, 28, 28, 0) 0%, rgba(255, 0, 0, 0) 70%);
  transform: translate(-50%, -50%);
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  animation: fadeInAfterDelay 0.5s ease-out 1s forwards;
}

.home nav {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 1);
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.625rem 1.25rem;
  box-sizing: border-box;
}

.home .logo {
  height: 5.9375rem;
}

.home nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: nowrap;
}

.home nav ul li {
  margin: 0 0.9375rem;
}

.home nav ul li a {
  color: black;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 600;
  transition: color 0.3s ease;
}

.home nav ul li a:hover {
  color: #E2353E;
}

.nav-toggle {
  z-index: 1001;
  cursor: pointer;
}

.nav-toggle .bar {
  width: 25px;
  height: 3px;
  background-color: #fff;
  margin: 5px 0;
  transition: 0.4s;
}

.home .home-content p {
  font-family: 'Montserrat', sans-serif;
  font-size: 4rem;
  color: #E2353E;
  font-weight: 800;
  margin: 1.25rem 0;
  line-height: 1.2;
}

.home header,
.home main {
  text-align: center;
  color: #fff;
  z-index: 3;
  position: relative;
}


.home header h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  text-shadow: 0.125rem 0.125rem 0.5rem rgba(0, 0, 0, 1);
}

.home main p {
  font-family: 'Montserrat', sans-serif;
  font-size: 4rem;
  color: #E2353E;
  font-weight: 800;
  margin: 1.25rem 0;
  line-height: 1.2;
  text-shadow: 0.1875rem 0.1875rem 0.375rem rgba(0, 0, 0, 1);
}

.home .dynamic-text {
  position: relative;
  height: 3.5rem;
  overflow: hidden;
  text-shadow: 0.1875rem 0.1875rem 0.375rem rgba(0, 0, 0, 1);
}

.home .text-line {
  position: absolute;
  width: 100%;
  font-family: 'Montserrat', sans-serif;
  font-size: 2.25rem;
  font-weight: normal;
  font-style: italic;
  color: #fff;
  margin: 0;
  line-height: 1.2;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.home .guardians-text {
  animation: fadeInOut 5s infinite;
}

.home .safe-text {
  animation: fadeInOut 5s infinite 2.5s;
}

@keyframes fadeInOut {

  0%,
  100% {
    opacity: 0;
  }

  10%,
  40% {
    opacity: 1;
  }

  50%,
  90% {
    opacity: 0;
  }
}

.home button {
  padding: 0.9375rem 2.5rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  font-style: bold;
  cursor: pointer;
  border: none;
  background-color: #fff;
  color: #000;
  border-radius: 0.3125rem;
  z-index: 3;
  margin-top: 3.75rem;
  transition: background-color 0.3s ease, color 0.3s ease;
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 1);
}

.home button:hover {
  background-color: #E2353E;
  color: #fff;
  box-shadow: 0 0.375rem 0.75rem rgba(0, 0, 0, 1);
}

.home .mouse-container {
  position: absolute;
  bottom: 0.625rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  text-align: center;
}

.home .mouse-icon {
  width: 2.5rem;
  height: auto;
  opacity: 0.8;
  animation: bounce 1.5s infinite;
}

.home .scroll-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: #ffffff;
  margin-top: 0.625rem;
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-1.25rem);
  }

  60% {
    transform: translateY(-0.625rem);
  }
}

.home .nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.home .nav-toggle .bar {
  width: 1.5625rem;
  height: 0.1875rem;
  background-color: #fff;
  margin: 0.1875rem 0;
  transition: 0.3s;
}

.home .nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: nowrap;
}

.home .nav-menu.active {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 3.75rem;
  right: 1.25rem;
  background: rgba(109, 96, 96, 0.8);
  padding: 1.25rem;
  border-radius: 0.3125rem;
  box-shadow: 0px 0.25rem 0.375rem rgb(72, 4, 4);
}

.home .nav-menu.active li {
  margin: 0.625rem 0;
}

/* About us */
.about {
  background-color: #e0e0e0;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100vh;
}


.about-heading h1 {
  font-family: 'ConnectedHelvetica', sans-serif;
  font-size: 8.4375rem;
  font-weight: 800;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  color: black;
  z-index: 2;
}

.grey-triangle {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  background-color: transparent;
  border-left: 101vw solid grey;
  border-bottom: 101vh solid transparent;
  transform: translateX(-100%);
  z-index: 1;
  filter: blur(0.3125rem);
}


.black-triangle {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  background-color: transparent;
  border-left: 100vw solid black;
  border-bottom: 100vh solid transparent;
  transform: translateX(-100%);
  z-index: 1;
}

.about-content {
  position: absolute;
  top: 40%;
  left: 5%;
  transform: translateY(-50%);
  color: white;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.6;
  max-width: 45%;
  z-index: 2;
  padding: 1.25rem;
  overflow: visible;
  white-space: normal;
}

.tight-spacing {
  margin-bottom: 0.0625rem;
}

.red-line {
  position: relative;
  height: 0.1875rem;
  background-color: #E2353E;
  width: 0;
  max-width: 80%;
  margin-top: 1.25rem;
  transition: width 0.5s ease;
}

.learn-more {
  position: relative;
  display: inline-block;
  background-color: white;
  color: black;
  font-size: 1.25rem;
  font-weight: 650;
  width: 0;
  max-width: 80%;
  padding: 0.9375rem 1.875rem;
  text-align: left;
  border: 0.125rem solid black;
  cursor: pointer;
  margin-top: 1.25rem;
  transition: background-color 0.3s ease, color 0.3s ease, width 0.5s ease, opacity 0.5s ease;
  clip-path: polygon(0 0, 100% 0, 83% 100%, 0% 100%);
  overflow: hidden;
  white-space: nowrap;
  opacity: 0;
  transform: scale(0);
}


.learn-more.left-align {
  text-align: left;
  padding-left: 1.875rem;
}

.learn-more::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: -1;
  transition: background 0.3s ease;
}

.learn-more:hover {
  background-color: #f0f0f0;
  color: #E2353E;
}

.learn-more:hover::after {
  width: 50%;
}

.white-side-content {
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  color: black;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.6;
  max-width: 30%;
  text-align: right;
  z-index: 2;
  padding: 1.25rem;
  overflow: visible;
  white-space: normal;
}

.red-text {
  color: #E2353E;
}

.white-side-content .red-line {
  height: 0.1875rem;
  background-color: #E2353E;
  width: 0;
  margin-top: 1.25rem;
  position: relative;
  display: inline-block;
  transition: width 0.5s ease;
  top: -1.875rem;
  transform: translateX(0);
}

.horizontal-image-container {
  display: flex;
  overflow: hidden;
  width: 88%;
  height: 18.75rem;
  position: relative;
  margin-bottom: 0.9375rem;
  z-index: 3;
}

.image-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  transition: opacity 1s ease-in-out;
  opacity: 0;
}

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

/* MILESTONES */
.milestones {
  height: auto;
  background-color: rgb(23, 23, 23);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  position: relative;
  padding: 1.25rem;
  gap: 1.875rem;
}

.milestones h1 {
  font-family: 'ConnectedHelvetica', sans-serif;
  font-size: 3.125rem;
  font-weight: 600;
  color: white;
  margin: 0;
}

.milestone-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1.875rem;
  justify-content: center;
}

.milestone-box {
  position: relative;
  width: 15.625rem;
  height: 12.5rem;
  background-color: transparent;
  border-radius: 0.625rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: background-color 0.5s ease;
}

.milestone-box::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background-color: #E2353E;
  border-radius: 0.625rem;
  transition: height 0.5s ease, background-color 0.5s ease;
  z-index: 1;
}

.milestone-box .number {
  position: absolute;
  top: 0.625rem;
  left: 0;
  width: 100%;
  text-align: center;
  font-size: 1.5625rem;
  color: white;
  z-index: 2;
}

.milestone-box .text {
  position: absolute;
  bottom: 1.25rem;
  left: 0;
  width: 100%;
  text-align: center;
  font-size: 0.75rem;
  color: white;
  z-index: 2;
}

.milestone-box:hover {
  background-color: white;
}

.milestone-box:hover::before {
  height: 100%;
  background-color: white;
}

.milestone-box:hover .number,
.milestone-box:hover .text {
  color: #E2353E;
}

/* Our Team */
.our-team-heading {
  font-family: 'ConnectedHelvetica', sans-serif;
  font-size: 3.125rem;
  font-weight: 700;
  color: white;
  text-align: center;
  margin: 6.25rem 0;
}

.passport-section {
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}

.passport-box {
  width: 10.75rem;
  height: 12.625rem;
  background-color: transparent;
  border: 2px solid #E2353E;
  margin: -0.625rem;
  position: relative;
  display: inline-block;
  transition: transform 0.5s ease;
  border-radius: 0.625rem;
  overflow: hidden;
  z-index: 1;
}

.passport-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.3s ease;
}

.passport-box:nth-child(odd) {
  transform: translateY(-6.25rem);
  z-index: 2;
}

.passport-box:nth-child(even) {
  transform: translateY(0.625rem);
}

.person-name {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 95%;
  height: 2.5rem;
  background-color: #E2353E;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.5s ease;
  transform: translateY(100%);
  border-radius: 0.925rem 0 0.5rem 0.5rem;

}

.person-name .name {
  font-size: 0.6rem;
}

.person-name .designation {
  font-size: 0.6rem;
  margin-top: 0.3125rem;
}

.passport-box:hover .person-name {
  opacity: 1;
  transform: translateY(0);
}

.read-more-team-button {
  display: inline-block;
  margin-top: 1.25rem;
  padding: 0.625rem 1.25rem;
  background-color: #E2353E;
  color: white;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: 0.125rem solid #181818;
  border-radius: 0.5rem;
}

.read-more-team-button:hover {
  background-color: #E2353E;
  color: black;
}

/*What we do section*/
.what-we-do {
  background-color: #f0f0f0;
  padding: 3.125rem;
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.what-we-do h2 {
  font-family: 'ConnectedHelvetica', sans-serif;
  font-size: 6.25rem;
  font-weight: 800;
  position: absolute;
  top: 1.25rem;
  left: -100%;
  transform: translateX(0);
  text-align: left;
  transition: left 1s ease-out;
}

.card-container {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin-top: 12.5rem;
  position: relative;
}

.card-wrapper {
  display: flex;
  transition: transform 0.5s ease;
  gap: 2.5rem;
  width: max-content;
}

.card {
  background-color: #d0d0d0;
  padding: 1.25rem;
  width: 18.75rem;
  height: 31.25rem;
  box-shadow: 0 0.625rem 1.25rem rgba(15, 15, 15, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 1.875rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  filter: none;
}

.card h3 {
  font-size: 1.875rem;
  font-weight: 900;
  margin-bottom: 0.625rem;
  font-family: 'Montserrat', sans-serif;
}

.card p {
  font-size: 1rem;
  color: #666;
}

.card:hover {
  transform: translateY(-2.5rem);
  box-shadow: 0 1.25rem 2.5rem rgba(0, 0, 0, 0.485);
}


.card-heading {
  font-size: 1.5rem;
  font-weight: bold;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 0.625rem;
}

.card-description {
  list-style-type: disc;
  margin: 0;
  margin-top: 2.5rem;
  padding: 0 1.25rem;
  text-align: left;
  font-size: 1rem;
  color: black;
  flex: 1;
}

.card-description li {
  margin-bottom: 0.625rem;
}

.learn-more-card-button {
  background-color: #E2353E;
  color: white;
  border: none;
  border-radius: 0.5rem;
  width: 15.625rem;
  height: 3.75rem;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  margin: 0 auto 1.25rem auto;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
  text-decoration: none;
}

.learn-more-card-button:hover {
  color: black;
}

.reveal-button {
  background-color: #E2353E;
  color: white;
  border: none;
  border-radius: 50%;
  width: 4.375rem;
  height: 4.375rem;
  font-size: 1.5rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: absolute;
  top: 50%;
  right: -2.5rem;
  transform: translateY(-50%);
  transition: right 0.5s ease;
  z-index: 2;
}

.card-wrapper .card.third-blurred {
  filter: blur(0.3125rem);
  transition: filter 0.5s ease;
}

.hidden-cards .card:first-child {
  filter: blur(0.3125rem);
  transition: filter 0.5s ease;
}

.hidden-cards {
  display: flex;
  gap: 2.5rem;
  position: absolute;
  left: 100%;
  transition: left 0.5s ease;
  padding-left: 2.5rem;
}

.hidden-cards .card {
  background-color: #d0d0d0;
  padding: 1.25rem;
  width: 18.75rem;
  height: 31.25rem;
  box-shadow: 0 0.625rem 1.25rem rgba(0, 0, 0, 0.1);
  border-radius: 1.875rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  filter: none;
}

.hidden-cards .card:hover {
  transform: translateY(-2.5rem);
  box-shadow: 0 1.25rem 2.5rem rgba(0, 0, 0, 0.485);
}

.reveal-button.flip {
  transform: translateY(-50%) rotateY(180deg);
}

@keyframes flip {
  from {
    transform: rotateY(0deg);
  }

  to {
    transform: rotateY(180deg);
  }
}

/*Our clients*/
.our-clients {
  position: relative;
  overflow: hidden;
  padding: 3.125rem 0;
}

.client-heading {
  position: absolute;
  left: -100%;
  top: 0.3125rem;
  font-size: 6.25rem;
  font-family: 'ConnectedHelvetica', sans-serif;
  font-weight: 800;
  transition: left 1s ease-out;
  line-height: 1.2;
  z-index: 3;
}

.client-heading .our,
.client-heading .clients {
  display: block;
}

.client-subtext {
  position: absolute;
  left: -100%;
  top: 21.875rem;
  font-size: 1.5rem;
  font-family: 'Montserrat', sans-serif;
  line-height: 1.5;
  transition: left 1s ease-out;
  max-width: 37.5rem;
  z-index: 3;
}

.client-subtext .highlight {
  color: #E2353E;
}

.client-image {
  position: absolute;
  left: -100%;
  top: 31.25rem;
  width: 50%;
  max-width: 100%;
  height: auto;
  transition: left 1s ease-out;
  z-index: 3;
}

.black-overlay-clients {
  position: absolute;
  top: 0;
  right: -50%; /* Start off-screen to the right */
  width: 50%;
  height: 100%;
  background-color: black;
  transition: right 1s ease-out;
  overflow: hidden;
}

.black-overlay-clients {
  z-index: 1;
}

.clients-vector {
  position: absolute;
  top: 50%;
  right: 0;
  width: 50%;
  height: auto;
  transform: translateY(-50%);
  transition: right 1s ease-out;
  z-index: 0;
}


.hexagon-overlay {
  position: absolute;
  width: 18%;
  height: auto;
  transition: right 1s ease-out, top 1s ease-out;
  z-index: 4;
}


.hexagon-1 {
  right: -40%;
  top: 50%;
  transform: translateY(-50%);
}

.hexagon-2 {
  right: -50%;
  top: 28%;
}

.hexagon-3 {
  right: -75%;
  top: 28%;
}

.hexagon-4 {
  right: -85%;
  top: 50%;
}

.hexagon-5 {
  right: -75%;
  top: 72%;
}

.hexagon-6 {
  right: -50%;
  top: 72%;
}

.hexagon-7 {
  right: -62.5%;
  top: 50%;
}

.hexagon-1,
.hexagon-2,
.hexagon-3,
.hexagon-4,
.hexagon-5,
.hexagon-6,
.hexagon-7 {
  display: flex;
  justify-content: center;
  align-items: center;
}

.client-logo {
  position: absolute;
  width: 85%;
  height: auto;
  object-fit: contain;
  transition: opacity 1s ease;
}

.default-logo {
  opacity: 1;
}

.hover-logo {
  opacity: 0;
}

.hexagon-overlay:hover {
  opacity: 1;
}

.hexagon-overlay:hover .default-logo {
  opacity: 0;
}

.hexagon-overlay:hover .hover-logo {
  opacity: 1;
}

/* Get in Touch section */
.get-in-touch {
  background-color: #181818;
  padding: 3.125rem 0;
  position: relative;
  overflow: hidden;
  height: 100vh;
}

.get-in-touch-heading {
  font-family: 'ConnectedHelvetica', sans-serif;
  font-size: 9.375rem;
  font-weight: 800;
  color: white;
  position: absolute;
  top: -5%;
  left: -100%;
  transition: top 1s ease-out, left 1s ease-out;
}

.get-in-touch-heading .get-in,
.get-in-touch-heading .touch {
  display: block;
}

.get-in-touch-subtext {
  position: absolute;
  left: -100%;
  top: 45%;
  font-size: 1.5rem;
  font-family: 'Montserrat', sans-serif;
  color: white;
  max-width: 37.5rem;
  transition: left 1s ease-out;
}

.get-in-touch-subtext .highlight-red {
  color: #E2353E;
}

.contact-us-button {
  position: absolute;
  left: -100%;
  top: 60%;
  background-color: #E2353E;
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.125rem;
  font-weight: bold;
  padding: 0.9375rem 1.875rem;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease, left 1s ease-out;
  transform: perspective(500px) rotateY(-15deg);
  box-shadow: 0.3125rem 0.3125rem 0 rgba(0, 0, 0, 0.2);
  border-radius: 0.3125rem;
}

.contact-us-button::after {
  content: '>';
  margin-left: 0.625rem;
}

.contact-us-button:hover {
  color: black;
}

.git-image {
  position: absolute;
  right: -100%;
  top: 35%;
  transform: translateY(-50%);
  max-width: 50%;
  height: auto;
  transition: right 1s ease-out, transform 0.3s ease;
}

.git-image:hover {
  transform: translateY(-50%) scale(1.05);
}

.black-overlay-git {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 35%;
  background-color: black;
  transform: scaleY(0);
  transform-origin: bottom;
  z-index: 1;
  display: flex;
  align-items: center;
  padding: 0 4.6875rem;
}

.get-in-touch-heading,
.get-in-touch-subtext,
.contact-us-button,
.git-image {
  z-index: 2;
}

.contact-icons {
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
}

.icon-container {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.contact-icon {
  width: 3rem;
  height: 3rem;
  stroke: white;
}

.icon-text {
  color: white;
  font-size: 1.25rem;
  font-family: 'Montserrat', sans-serif;
}

.icon-text.address {
  max-width: 36.875rem;
}

.vertical-line {
  width: 0.0625rem;
  height: 80%;
  background-color: white;
  position: absolute;
  left: 45%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.right-content {
  flex: 1;
  display: flex;
  justify-content: space-around;
  padding-right: 2.5rem;
  height: 80%;
}

.work-section,
.support-section {
  color: white;
  font-family: 'Montserrat', sans-serif;
}

.work-section h3,
.support-section h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  text-align: center;
  transition: color 0.3s ease;
}

.work-section h3:hover,
.support-section h3:hover {
  color: #E2353E;
}

.work-columns {
  display: flex;
  gap: 2.5rem;
}

.work-column {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.work-column li,
.support-section li {
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
  transition: color 0.3s ease;
}

.work-column li:hover,
.support-section li:hover {
  color: #E2353E;
  cursor: pointer;
}

.support-section ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.no-style {
  color: inherit;
  text-decoration: none;
}

.no-style:hover {
  color: inherit;
  text-decoration: none;
}

.footer {
  background-color: #000000;
  color: #ffffff;
  text-align: center;
  padding: 1rem 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  position: relative;
  width: 100%;
}

.footer p {
  margin: 0;
}

.disclaimer {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  max-width: 50rem;
  max-height: 80vh;
  background-color: rgba(0, 0, 0, 0.9);
  color: white;
  padding: 1.875rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  z-index: 9999;
  font-family: 'Montserrat', sans-serif;
  text-align: justify;
  overflow-y: auto;
  border-radius: 0.625rem;
  box-shadow: 0 0 1.25rem rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.disclaimer-content {
  width: 100%;
  margin-bottom: 1.25rem;
  position: relative;
}

.disclaimer h2 {
  text-align: center;
  margin-bottom: 1.25rem;
}

.disclaimer p {
  margin: 0 0 0.9375rem 0;
  line-height: 1.6;
}

.disclaimer button#accept-disclaimer {
  padding: 0.625rem 1.25rem;
  border: none;
  border-radius: 0.3125rem;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s ease;
  background-color: white;
  color: black;
}

.disclaimer button#accept-disclaimer:hover {
  color: white;
  background-color: #E2353E;
}

.close-button {
  position: absolute;
  top: 0;
  right: 0;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

.close-button:hover {
  color: #E2353E;
}

/* Responsive styles */
/*Mobile*/
@media screen and (max-width: 660px) {
  /*Disclaimer*/
  .disclaimer {
    width: 90%;
    padding: 1rem;
    max-height: 90vh;
  }

  .disclaimer h2 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
  }

  .disclaimer p {
    font-size: 0.7rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
  }

  .disclaimer button#accept-disclaimer {
    padding: 0.5rem 1rem;
    font-size: 0.7rem;
  }

  .close-button {
    font-size: 1rem;
  }

  /*Home*/
  .home .logo {
    height: 3.2rem;
  }

  .home nav ul {
    gap:0.1rem;
  }

  .home nav ul li a {
    font-size: 0.6rem;
  }

  .home nav ul li {
    margin: 0 0.3125rem;
  }

  .home header h1 {
    font-size: 1.5rem;
  }

  .home main p {
    font-size: 2.25rem;
  }

  .home .dynamic-text .text-line {
    font-size: 1.5rem;
  }

  .home button {
    font-size: 1.125rem;
    padding: 0.625rem 1.25rem;
  }

  .home .mouse-icon {
    width: 1.5625rem;
  }

  .home .scroll-text {
    font-size: 1rem;
  }

  /*About Us*/
  .about-heading h1 {
    font-size: 3rem;
  }

  .about-content {
    top: 30%;
    font-size: 0.7rem;
    max-width: 50%;
    padding: 0.625rem;
  }

  .white-side-content {
    top: 65%;
    font-size: 0.7rem;
    max-width: 50%;
    padding: 0.625rem;
  }

  .learn-more {
    font-size: 0.4rem;
    padding: 0.3rem 0.6rem;
  }

  .horizontal-image-container {
    height: 7.5rem;
    width: 90%;
  }

  /*Milesotnes*/
  .milestones h1 {
    font-size: 1.5rem;
  }

  .milestone-container {
    gap: 2rem;
  }

  .milestone-box {
    width: 7rem;
    height: 7rem;
  }

  .milestone-box::before {
    width: 7rem;
    height: 3rem;
  }

  .milestone-box .number {
    font-size: 0.8rem;
  }

  .milestone-box .text {
    font-size: 0.8rem;
  }

  .passport-section {
    flex-direction: row;
    margin-top: -1rem;
  }

  .our-team-heading {
    font-size: 1.5rem;
    margin-top: 1rem;
  }

  .passport-box {
    width: 3.4rem;
    height: 4.625rem;
  }

  .passport-box:nth-child(odd) {
    transform: translateY(-3.25rem);
    z-index: 2;
  }

  .passport-box:nth-child(even) {
    transform: translateY(0.325rem);
  }

  .person-name {
    height: 1.5rem;
    width: 100%;
  }

  .person-name .name {
    font-size: 0.23rem;
  }

  .person-name .designation {
    font-size: 0.2rem;
    margin-top: 0.03rem;
  }

  .read-more-team-button {
    padding: 0.425rem 0.8rem;
    font-size: 0.5rem;
  }

  /*What we do section*/
  .what-we-do h2 {
    font-size: 2rem;
  }

  .card-container {
    margin-top: 0rem;
  }

  .card-wrapper,
  .hidden-cards {
    gap: 0.2rem;
  }

  .card {
    width: 3.5rem;
    height: 16.5rem;
  }

  .card h3 {
    font-size: 0.5rem;
  }

  .card p {
    font-size: 0.4rem;
  }

  .card-description {
    font-size: 1rem;
    margin-top: 0.5rem;
    padding: 0rem;
  }

  .card-description {
    font-size: 0.9rem;
  }

  .card-description li {
    font-size: 0.5rem;
  }

  .learn-more-card-button {
    width: 3rem;
    height: 1rem;
    font-size: 0.35rem;
  }

  .reveal-button {
    width: 1.8rem;
    height: 1.8rem;
    font-size: 0.6rem;
    right: -0.8rem;
  }

  .hidden-cards .card {
    width: 3.5rem;
    height: 16.5rem;
  }

  .hidden-cards {
    gap: 0.2rem;
    padding-left: 0.3rem;
  }

  /*Our clients*/
  .client-heading {
    font-size: 2rem;
    top: 1rem;
  }

  .client-subtext {
    font-size: 0.7rem;
    top: 20%;
    max-width: 30%;
  }

  .client-image {
    top: 40%;
    width: 50%;
  }

  .hexagon-overlay {
    width: 18%;
  }

  .hexagon-1 {
    right: -30%;
    top: 50%;
  }

  .hexagon-2 {
    right: -40%;
    top: 43.5%;
  }

  .hexagon-3 {
    right: -65%;
    top: 43.5%;
  }

  .hexagon-4 {
    right: -75%;
    top: 50%;
  }

  .hexagon-5 {
    right: -65%;
    top: 56.5%;
  }

  .hexagon-6 {
    right: -40%;
    top: 56.5%;
  }

  .hexagon-7 {
    right: -52.5%;
    top: 50%;
  }

  /*Get In touch*/
  .get-in-touch-heading {
    font-size: 3rem;
    top: 1%;
  }

  .get-in-touch-subtext {
    font-size: 0.7rem;
    margin-top: -30%;
    max-width: 50%;
  }

  .contact-us-button {
    font-size: 0.75rem;
    padding: 0.5rem 0.75rem;
    margin-top: -11%;
  }

  .git-image {
    top: 40%;
    max-width: 35%;
  }

  .black-overlay-git {
    height: 35%;
    align-items: left;
    margin-left: -15%;
  }

  .contact-icons {
    gap: 1rem;
  }

  .contact-icon {
    width: 1rem;
    height: 1rem;
  }

  .icon-text {
    font-size: 0.7rem;
  }

  .icon-text.address {
    max-width: 60%;
  }

  .vertical-line {
    left: 52%;
  }

  .work-section,
  .support-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .work-section {
    margin-left: 1%;
  }

  .support-section {
    margin-left: 7%;
  }

  .work-section h3,
  .support-section h3 {
    font-size: 0.7rem;
  }

  .work-columns {
    flex-direction: column;
    gap: 0.2rem;
  }

  .work-column {
    width: 100%;
  }

  .work-column li,
  .support-section li {
    font-size: 0.5rem;
  }

  .footer {
    padding: 0.7rem 0;
    font-size: 0.6rem;
  }
}

/*Tablet*/
@media screen and (min-width: 661px) and (max-width: 800px) {

  /*Home*/
  .home .logo {
    height: 5.2rem;
  }

  .home header h1 {
    font-size: 2rem;
  }

  .home nav ul li a {
    font-size: 1rem;
  }

  .home main p {
    font-size: 4.5rem;
  }

  .home .dynamic-text .text-line {
    font-size: 2.25rem;
  }

  .home button {
    font-size: 1.5rem;
    padding: 1rem 1.5rem;
  }

  .home .mouse-icon {
    width: 2.125rem;
  }

  .home .scroll-text {
    font-size: 1.5rem;
  }

  /*About Us*/
  .about-heading h1 {
    font-size: 4.3rem;
  }

  .about-content {
    top: 30%;
    font-size: 0.8rem;
    max-width: 50%;
    padding: 0.625rem;
  }

  .white-side-content {
    top: 65%;
    font-size: 0.8rem;
    max-width: 50%;
    padding: 0.625rem;
  }

  .learn-more {
    font-size: 0.7rem;
    padding: 0.3rem 0.6rem;
  }

  .horizontal-image-container {
    height: 10rem;
    width: 90%;
  }

  /*Milestones*/
  .milestones h1 {
    font-size: 1.2rem;
  }

  .milestone-container {
    gap: 2.5rem;
  }

  .milestone-box {
    width: 9rem;
    height: 7rem;
  }

  .milestone-box::before {
    width: 9rem;
    height: 3.6rem;
  }

  .milestone-box .number {
    font-size: 1rem;
  }

  .milestone-box .text {
    font-size: 1rem;
  }

  .passport-section {
    flex-direction: row;
    margin-top: -2rem;
  }

  .our-team-heading {
    font-size: 1.5rem;
  }

  .passport-box {
    width: 6.75rem;
    height: 7.625rem;
  }

  .passport-box:nth-child(odd) {
    transform: translateY(-3.25rem);
    z-index: 2;
  }

  .passport-box:nth-child(even) {
    transform: translateY(0.325rem);
  }

  .person-name {
    height: 2rem;
    width: 100%;
    border-radius: 0.925rem 0 0.5rem 0.5rem;
  }

  .person-name .name {
    font-size: 0.4rem;
  }

  .person-name .designation {
    font-size: 0.3rem;
    margin-top: 0.07rem;
  }

  .read-more-team-button {
    padding: 0.6rem 1rem;
    font-size: 0.6rem;
  }

  /*What we do section*/
  .what-we-do h2 {
    font-size: 4rem;
  }

  .card-container {
    margin-top: 0rem;
  }

  .card-wrapper,
  .hidden-cards {
    gap: 1rem;
  }

  .card {
    width: 10rem;
    height: 20rem;
  }

  .card h3 {
    font-size: 0.9rem;
  }

  .card p {
    font-size: 0.7rem;
  }

  .card-description {
    font-size: 0.7rem;
    margin-top: 1.5rem;
    padding: 0rem;
  }

  .card-description {
    font-size: 1rem;
  }

  .card-description li {
    font-size: 0.7rem;
  }

  .learn-more-card-button {
    width: 8rem;
    height: 1.5rem;
    font-size: 0.6rem;
  }

  .reveal-button {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 0.6rem;
    right: -0.8rem;
  }

  .hidden-cards .card {
    width: 10rem;
    height: 20rem;
  }

  .hidden-cards {
    gap: 1rem;
    padding-left: 1rem;
  }

  /*Our clients*/
  .client-heading {
    font-size: 4rem;
    top: 1rem;
  }

  .client-subtext {
    font-size: 1rem;
    margin-top: -10%;
    max-width: 35%;
  }

  .client-image {
    top: 40%;
    width: 60%;
  }

  .clients-vector {
    height: 100%;
  }

  .hexagon-overlay {
    width: 18%;
  }

  .hexagon-1 {
    right: -30%;
    top: 50%;
  }

  .hexagon-2 {
    right: -40%;
    top: 35%;
  }

  .hexagon-3 {
    right: -65%;
    top: 35%;
  }

  .hexagon-4 {
    right: -75%;
    top: 50%;
  }

  .hexagon-5 {
    right: -65%;
    top: 65%;
  }

  .hexagon-6 {
    right: -40%;
    top: 65%;
  }

  .hexagon-7 {
    right: -52.5%;
    top: 50%;
  }

  /*Get In touch*/
  .get-in-touch-heading {
    font-size: 4rem;
    top: 1%;
  }

  .get-in-touch-subtext {
    font-size: 1rem;
    margin-top: -15%;
    max-width: 50%;
  }

  .contact-us-button {
    font-size: 0.75rem;
    padding: 0.5rem 0.75rem;
    margin-top: -15%;
  }

  .git-image {
    top: 40%;
    max-width: 35%;
  }

  .black-overlay-git {
    height: 35%;
    align-items: left;
    margin-left: -5%;
  }

  .contact-icons {
    gap: 1rem;
  }

  .contact-icon {
    width: 1.5rem;
    height: 1.5rem;
  }

  .icon-text {
    font-size: 0.9rem;
  }

  .icon-text.address {
    max-width: 60%;
  }

  .vertical-line {
    left: 52%;
  }

  .work-section,
  .support-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .work-section {
    margin-left: -20%;
  }

  .support-section {
    margin-left: 0%;
  }

  .work-section h3,
  .support-section h3 {
    font-size: 0.9rem;
  }

  .work-columns {
    flex-direction: column;
    gap: 0.01rem;
  }

  .work-column {
    width: 100%;
  }

  .work-column li,
  .support-section li {
    font-size: 0.7rem;
  }

  .footer {
    padding: 0.7rem 0;
    font-size: 0.6rem;
  }
}

/*Laptop S*/
@media screen and (min-width: 801px) and (max-width: 1100px) {

  /*Home*/
  .home .logo {
    height: 6.25rem;
  }

  .home nav ul li a {
    font-size: 1.3rem;
  }

  .home header h1 {
    font-size: 2.5rem;
  }

  .home main p {
    font-size: 4.5rem;
  }

  .home .dynamic-text .text-line {
    font-size: 2.5rem;
  }

  .home button {
    font-size: 1.2rem;
    padding: 1rem 2.5rem;
    margin-top: 0.5rem;
  }

  .home .mouse-icon {
    width: 2.125rem;
  }

  .home .scroll-text {
    font-size: 1.5rem;
  }

  /*About Us*/
  .about-heading h1 {
    font-size: 5.5rem;
  }

  .about-content {
    top: 40%;
    font-size: 0.8rem;
    max-width: 45%;
    padding: 0.625rem;
  }

  .white-side-content {
    top: 55%;
    font-size: 0.8rem;
    max-width: 40%;
    padding: 0.625rem;
  }

  .learn-more {
    font-size: 0.7rem;
    padding: 0.3rem 0.6rem;
  }

  .horizontal-image-container {
    height: 11rem;
    width: 90%;
  }

  /*Milestones*/
  .milestones h1 {
    font-size: 2rem;
  }

  .milestone-container {
    gap: 3rem;
  }

  .milestone-box {
    width: 10rem;
    height: 8rem;
  }

  .milestone-box::before {
    width: 10rem;
    height: 3.6rem;
  }

  .milestone-box .number {
    font-size: 1rem;
  }

  .milestone-box .text {
    font-size: 1rem;
  }

  .passport-section {
    flex-direction: row;
    margin-top: -2rem;
  }

  .our-team-heading {
    font-size: 2rem;
  }

  .passport-box {
    width: 7.75rem;
    height: 8.625rem;
  }

  .passport-box:nth-child(odd) {
    transform: translateY(-3.25rem);
    z-index: 2;
  }

  .passport-box:nth-child(even) {
    transform: translateY(0.325rem);
  }

  .person-name {
    height: 2.5rem;
    width: 100%;
    border-radius: 0.925rem 0 0.5rem 0.5rem;
  }

  .person-name .name {
    font-size: 0.5rem;
  }

  .person-name .designation {
    font-size: 0.5rem;
    margin-top: 0.07rem;
  }

  .read-more-team-button {
    padding: 0.6rem 1rem;
    font-size: 0.7rem;
  }

  /*What we do section*/
  .what-we-do h2 {
    font-size: 4rem;
  }

  .card-container {
    margin-top: 0rem;
  }

  .card-wrapper,
  .hidden-cards {
    gap: 2rem;
  }

  .card {
    width: 15rem;
    height: 25rem;
  }

  .card h3 {
    font-size: 1.2rem;
  }

  .card p {
    font-size: 1rem;
  }

  .card-description {
    font-size: 1rem;
    margin-top: 2rem;
  }

  .card-description {
    font-size: 1rem;
  }

  .card-description li {
    font-size: 0.9rem;
  }

  .learn-more-card-button {
    width: 10rem;
    height: 2rem;
    font-size: 0.7rem;
  }

  .reveal-button {
    width: 3rem;
    height: 3rem;
    font-size: 1rem;
  }

  .hidden-cards .card {
    width: 15rem;
    height: 25rem;
  }

  .hidden-cards {
    gap: 2rem;
    padding-left: 2rem;
  }

  /*Our clients*/
  .client-heading {
    font-size: 4rem;
    top: 1rem;
  }

  .client-subtext {
    font-size: 1rem;
    margin-top: -10%;
    max-width: 35%;
  }

  .client-image {
    top: 40%;
    width: 60%;
  }

  .clients-vector {
    height: 100%;
  }

  .hexagon-overlay {
    width: 18%;
  }

  .hexagon-1 {
    right: -30%;
    top: 50%;
  }

  .hexagon-2 {
    right: -40%;
    top: 30%;
  }

  .hexagon-3 {
    right: -65%;
    top: 30%;
  }

  .hexagon-4 {
    right: -75%;
    top: 50%;
  }

  .hexagon-5 {
    right: -65%;
    top: 70%;
  }

  .hexagon-6 {
    right: -40%;
    top: 70%;
  }

  .hexagon-7 {
    right: -52.5%;
    top: 50%;
  }

  /*Get In touch*/
  .get-in-touch-heading {
    font-size: 5rem;
    top: 1%;
  }

  .get-in-touch-subtext {
    font-size: 1rem;
    margin-top: -8%;
    max-width: 35%;
  }

  .contact-us-button {
    font-size: 0.75rem;
    padding: 0.5rem 0.75rem;
    margin-top: -10%;
  }

  .git-image {
    top: 35%;
    max-width: 35%;
  }

  .black-overlay-git {
    height: 35%;
    align-items: left;
    margin-left: -5%;
  }

  .contact-icons {
    gap: 1rem;
  }

  .contact-icon {
    width: 1.5rem;
    height: 1.5rem;
  }

  .icon-text {
    font-size: 0.9rem;
  }

  .icon-text.address {
    max-width: 80%;
  }

  .vertical-line {
    left: 45%;
  }

  .work-section {
    margin-left: 5%;
  }

  .support-section {
    margin-left: 0%;
  }

  .work-section h3,
  .support-section h3 {
    font-size: 1rem;
  }

  .work-column li,
  .support-section li {
    font-size: 0.8rem;
  }

  .footer {
    padding: 0.8rem 0;
    font-size: 0.7rem;
  }
}

/*Laptop L*/
@media screen and (min-width: 1101px) and (max-width: 1500px) {

  /*Home*/
  .home .logo {
    height: 4rem;
  }

  .home nav ul li a {
    font-size: 1.2rem;
  }

  .home header h1 {
    font-size: 3rem;
  }

  .home main p {
    font-size: 5rem;
  }

  .home .dynamic-text .text-line {
    font-size: 3rem;
  }

  .home button {
    font-size: 1.5rem;
    padding: 1.5rem 4rem;
    margin-top: 8.5rem;
  }

  .home .mouse-icon {
    width: 2rem;
  }

  .home .scroll-text {
    font-size: 1.2rem;
  }

  /*About Us*/
  .about-heading h1 {
    font-size: 6.3rem;
  }

  .about-content {
    top: 40%;
    font-size: 1.2rem;
    max-width: 45%;
    padding: 1.25rem;
  }

  .white-side-content {
    top: 50%;
    font-size: 1.2rem;
    max-width: 30%;
    padding: 1.25rem;
  }

  .learn-more {
    font-size: 1.25rem;
    padding: 0.9375rem 1.875rem;
  }

  .horizontal-image-container {
    height: 18.75rem;
    width: 88%;
  }

  /*Milestones*/
  .milestones h1 {
    font-size: 3rem;
  }

  .milestone-container {
    gap: 3rem;
  }

  .milestone-box {
    width: 14rem;
    height: 10rem;
  }

  .milestone-box::before {
    width: 14rem;
    height: 4rem;
  }

  .milestone-box .number {
    font-size: 1.5rem;
  }

  .milestone-box .text {
    font-size: 1.5rem;
  }

  .passport-section {
    flex-direction: row;
    margin-top: -2rem;
  }

  .our-team-heading {
    font-size: 3rem;
  }

  .passport-box {
    width: 10.5rem;
    height: 12.5rem;
  }

  .passport-box:nth-child(odd) {
    transform: translateY(-3.25rem);
    z-index: 2;
  }

  .passport-box:nth-child(even) {
    transform: translateY(0.325rem);
  }

  .person-name {
    height: 3.5rem;
    width: 100%;
    border-radius: 1.5rem 0 0.5rem 0.5rem;
  }

  .person-name .name {
    font-size: 0.6rem;
  }

  .person-name .designation {
    font-size: 0.5rem;
    margin-top: 0.01rem;
  }

  .read-more-team-button {
    font-size: 1rem;
  }

  /*What we do section*/
  .what-we-do h2 {
    font-size: 6rem;
  }

  .card-container {
    margin-top: 12.5rem;
  }

  .card-wrapper,
  .hidden-cards {
    gap: 2.5rem;
  }

  .card {
    padding: 1.25rem;
    width: 18.75rem;
    height: 31.25rem;
  }

  .card h3 {
    font-size: 1.5rem;
  }

  .card p {
    font-size: 1.2rem;
  }

  .card-description {
    font-size: 1.2rem;
    margin-top: 3rem;
    padding: 0 1.25rem;
  }

  .card-description {
    font-size: 1.2rem;
  }

  .card-description li {
    font-size: 1.2rem;
  }

  .learn-more-card-button {
    width: 15.625rem;
    height: 3.125rem;
    font-size: 1rem;
  }

  .reveal-button {
    width: 4.375rem;
    height: 4.375rem;
    font-size: 1.5rem;
    right: -2.5rem;
  }

  .hidden-cards .card {
    width: 18.85rem;
    height: 31.25rem;
  }

  .hidden-cards {
    gap: 2.5rem;
    padding-left: 2.5rem;
  }

  /*Our clients*/
  .client-heading {
    font-size: 6rem;
    top: 1rem;
  }

  .client-subtext {
    font-size: 1.5rem;
    margin-top: 2%;
    max-width: 35%;
  }

  .client-image {
    top: 40%;
    width: 60%;
  }

  .black-overlay-clients {
    width: 50.7%;
  }

  .clients-vector {
    height: 100%;
  }

  .hexagon-overlay {
    width: 18%;
  }

  .hexagon-1 {
    right: -40%;
    top: 50%;
  }

  .hexagon-2 {
    right: -50%;
    top: 28%;
  }

  .hexagon-3 {
    right: -75%;
    top: 28%;
  }

  .hexagon-4 {
    right: -85%;
    top: 50%;
  }

  .hexagon-5 {
    right: -75%;
    top: 72%;
  }

  .hexagon-6 {
    right: -50%;
    top: 72%;
  }

  .hexagon-7 {
    right: -62.5%;
    top: 50%;
  }

  /*Get In touch*/
  .get-in-touch-heading {
    font-size: 6rem;
    top: 1%;
  }

  .get-in-touch-subtext {
    font-size: 1.5rem;
    margin-top: -6%;
    max-width: 35%;
  }

  .contact-us-button {
    font-size: 1rem;
    padding: 0.7rem 0.9rem;
    margin-top: -7%;
  }

  .git-image {
    top: 35%;
    max-width: 35%;
  }

  .black-overlay-git {
    height: 35%;
    align-items: left;
    margin-left: 0%;
  }

  .contact-icons {
    gap: 1rem;
  }

  .contact-icon {
    width: 2rem;
    height: 2rem;
  }

  .icon-text {
    font-size: 1.2rem;
  }

  .icon-text.address {
    max-width: 80%;
  }

  .vertical-line {
    left: 45%;
  }

  .work-section {
    margin-left: 5%;
  }

  .support-section {
    margin-left: -5%;
  }

  .work-section h3,
  .support-section h3 {
    font-size: 1.2rem;
  }

  .work-column li,
  .support-section li {
    font-size: 1rem;
  }

  .footer {
    padding: 1rem 0;
    font-size: 0.9rem;
  }
}

/*Desktop*/
@media screen and (min-width: 1501px) {

  /*Home*/
  .home .logo {
    height: 4rem;
  }

  .home nav ul li a {
    font-size: 1.3rem;
  }

  .home header h1 {
    font-size: 3rem;
  }

  .home main p {
    font-size: 5rem;
  }

  .home .dynamic-text .text-line {
    font-size: 2.5rem;
  }

  .home button {
    font-size: 1.5rem;
    padding: 1.5rem 3rem;
  }

  .home .mouse-icon {
    width: 2rem;
  }

  .home .scroll-text {
    font-size: 1rem;
  }

  /*About Us*/
  .about-heading h1 {
    font-size: 8.3rem;
  }

  .red-line {
    height: 0.3rem;
  }

  .about-content {
    top: 45%;
    font-size: 1rem;
    max-width: 40%;
    padding: 1.5rem;
  }

  .white-side-content {
    top: 50%;
    font-size: 1rem;
    max-width: 30%;
    padding: 1.5rem;
  }

  .white-side-content .red-line {
    height: 0.3rem;
  }

  .learn-more {
    font-size: 1rem;
    padding: 1rem 1.5rem;
  }

  .horizontal-image-container {
    height: 14.75rem;
    width: 88%;
  }

  /*Milestones*/
  .milestones h1 {
    font-size: 5rem;
  }

  .milestone-container {
    gap: 4rem;
  }

  .milestone-box {
    width: 16rem;
    height: 15rem;
  }

  .milestone-box::before {
    width: 16rem;
    height: 4rem;
  }

  .milestone-box .number {
    font-size: 1.5rem;
  }

  .milestone-box .text {
    font-size: 1.5rem;
  }

  .passport-section {
    flex-direction: row;
    margin-top: 0rem;
  }

  .our-team-heading {
    font-size: 5rem;
  }

  .passport-box {
    width: 13.75rem;
    height: 15.625rem;
  }

  .passport-box:nth-child(odd) {
    transform: translateY(-3.25rem);
    z-index: 2;
  }

  .passport-box:nth-child(even) {
    transform: translateY(0.325rem);
  }

  .person-name {
    height: 4rem;
    width: 100%;
    border-radius: 1.9rem 0 0.5rem 0.5rem;
  }

  .person-name .name {
    font-size: 0.8rem;
  }

  .person-name .designation {
    font-size: 0.8rem;
    margin-top: 0.07rem;
  }

  .read-more-team-button {
    padding: 0.8rem 1.5rem;
    font-size: 1.5rem;
  }

  /*What we do section*/
  .what-we-do h2 {
    font-size: 5rem;
  }

  .card-container {
    margin-top: 15rem;
  }

  .card-wrapper,
  .hidden-cards {
    gap: 3rem;
  }

  .card {
    padding: 1.5rem;
    width: 20rem;
    height: 30rem;
  }

  .card h3 {
    font-size: 1.5rem;
  }

  .card p {
    font-size: 1rem;
  }

  .card-description {
    font-size: 1rem;
    margin-top: 1rem;
    padding: 1.5rem;
    margin-left: 3rem;
  }

  .card-description li {
    font-size: 1rem;
  }

  .learn-more-card-button {
    width: 15rem;
    height: 4rem;
    font-size: 1rem;
  }

  .reveal-button {
    width: 5rem;
    height: 5rem;
    font-size: 2rem;
    right: -3rem;
  }

  .hidden-cards .card {
    width: 20rem;
    height: 30rem;
  }

  .hidden-cards {
    gap: 3rem;
    padding-left: 3rem;
  }

  /*Our clients*/
  .client-heading {
    font-size: 5rem;
    top: 1rem;
  }

  .client-subtext {
    font-size: 1rem;
    margin-top: -2rem;
    max-width: 35%;
  }

  .client-image {
    top: 40%;
    width: 40%;
  }

  .clients-vector {
    height: 100%;
  }

  .black-overlay-clients {
    width: 54%;
  }

  .hexagon-overlay {
    width: 18%;
  }

  .hexagon-1 {
    right: -40%;
    top: 50%;
  }

  .hexagon-2 {
    right: -50%;
    top: 28%;
  }

  .hexagon-3 {
    right: -75%;
    top: 28%;
  }

  .hexagon-4 {
    right: -85%;
    top: 50%;
  }

  .hexagon-5 {
    right: -75%;
    top: 72%;
  }

  .hexagon-6 {
    right: -50%;
    top: 72%;
  }

  .hexagon-7 {
    right: -62.5%;
    top: 50%;
  }

  /*Get In touch*/
  .get-in-touch-heading {
    font-size: 5rem;
    top: 1%;
  }

  .get-in-touch-subtext {
    font-size: 1rem;
    margin-top: -3%;
    max-width: 35%;
  }

  .contact-us-button {
    font-size: 1rem;
    padding: 0.7rem 1.5rem;
    margin-top: -3%;
  }

  .git-image {
    top: 35%;
    height: 30%;
  }

  .black-overlay-git {
    height: 35%;
    align-items: left;
    margin-left: 0%;
  }

  .contact-icons {
    gap: 1rem;
  }

  .contact-icon {
    width: 1rem;
    height: 1rem;
  }

  .icon-text {
    font-size: 1rem;
  }

  .icon-text.address {
    max-width: 80%;
  }

  .vertical-line {
    left: 40%;
  }

  .work-section {
    margin-left: 5%;
  }

  .support-section {
    margin-left: -5%;
  }

  .work-section h3,
  .support-section h3 {
    font-size: 1rem;
    margin-bottom: 1rem;
  }

  .work-columns {
    gap: 1rem;
  }

  .work-column li,
  .support-section li {
    font-size: 1rem;
  }

  .footer {
    padding: 1.1rem 0;
    font-size: 1rem;
  }
}