.--wrapper,
.--404-wrapper {
  width: 100%;
  margin-inline: auto;
}

.--container,
.--404-container {
  width: 100%;
  padding: 48px 0;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 48px;
}

.--hero-name {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
  width: 100%;
}

.--hero-name p {
  max-width: 696px;
}

.--button-location {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 24px;
  min-height: 44px;
}

.--hero-maps {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 24px;
}

.--hero-map {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  min-width: 141px;
}

.--project-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 24px;
  row-gap: 48px;
  width: 100%;
}

.--project-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  padding-bottom: 24px;
  cursor: pointer;
}

.--project-img {
  width: 100%;
  height: auto;
  overflow: hidden;
  border-radius: 12px;
}

.--project-img img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  object-position: top;
  transition: transform 0.3s ease;
}

.--project-card:hover .--project-img img {
  transform: scale(1.1);
  width: 100%;
}

.--project-content {
  display: flex;
  flex-direction: column;
  gap: 6px;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  transition: 0.3s;
}

.--project-card:hover .--project-content {
  padding-left: 20px;
}

.--project-content p {
  font-size: var(--categorytext);
  text-transform: uppercase;
  color: var(--secondary);
}

.--stack-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 24px;
  cursor: pointer;
}

.--stack-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 24px;
  width: 100%;
  background: var(--graydarkmain);
  border-radius: 12px;
}

.--stack-card img {
  width: 48px;
  height: 48px;
  object-fit: cover;
}

.--stack-card-two {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 24px;
  width: 100%;
  background: var(--graydarkmain);
  border-radius: 12px;
}

.--stack-card-two img {
  width: 48px;
  height: 48px;
  object-fit: cover;
}

.--stack-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.--stack-content-two {
  display: flex;
  justify-content: flex-start;
  width: 100%;
  gap: 24px;
  align-items: center;
}

@keyframes slider {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-101.5%);
  }
}

.--testimonials-list-container {
  display: flex;
  align-items: center;
  gap: 24px;
  transition: 0.3s ease-in-out;
  overflow: hidden;
}

.--testimonials-list-container:hover .--testimonials-list {
  animation-play-state: paused;
}

.--testimonials-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  width: 100%;
  animation: 40s slider infinite linear;
  transition: 0.3s ease-in-out;
}

.--testimonials-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
  padding: 48px;
  min-width: 360px;
  min-height: 434px;
  background: var(--graydarkmain);
  border-radius: 12px;
}

.--testimonials-star {
  display: flex;
  gap: 2px;
}

.--testimonials-name {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  border-radius: 12px;
}

.--testimonials-name img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 6px;
}

.--testimonials-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* about page */

.--know-content {
  display: flex;
  flex-direction: column;
  gap: 48px;
  justify-content: center;
  align-items: flex-start;
}

.--know-content p {
  max-width: 696px;
}

.--exp-container .dotted-margin {
  margin-top: 43px;
}

.--exp-contents {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.--exp-content {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 6px;
}

/* stack page */

.--stack-lists {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 24px;
  align-items: center;
  justify-content: center;
}

.--stack-info p {
  max-width: 571px;
}

/* contact page */

.--contact-forms-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 48px;
}

.--contact-form,
.--contact-socmed {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 24px;
  padding-top: 48px;
}

.--contact-input {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.--contact-input button {
  justify-content: center;
}

.--contact-name {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.--contact-input input,
.--contact-input textarea {
  font-size: 16px;
  padding: 15px;
  border-radius: 12px;
  background: var(--graydarkmain);
  width: 100%;
  color: var(--whitemain);
}

.--contact-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.--contact-icontext {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 6px;
}

.--contact-text {
  display: flex;
  align-items: center;
  gap: 6px;
  width: 100%;
  padding: 6px 0;
  cursor: pointer;
}

.--contact-forms-info,
.--contact-info,
.--contact-socmed,
.--contact-form,
.--contact-input,
.--contact-name {
  width: 100%;
}

/* 404 page */

.--404-wrapper {
  height: 100vh;
  display: flex;
}

.--404-container {
  align-items: center;
}

.--404-container p {
  text-align: center;
}

.--404-container button {
  max-width: 105px;
}
