* {
  padding: 0;
  margin: 0;
}

/* Hero Section */
.hero-section {
  width: 100vw;
  /* background-color: #0c1017; */
}
.hero-container {
  height: 50vh;
  background-color: #0c1017;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-container h1 {
  color: white;
  font-size: 3.25rem;
  font-weight: 600;
}
.hero-section-image {
  z-index: 10;
  width: 70vw;
  margin: auto;
  margin-top: -7.5rem;
}
.hero-section-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Content */
.content-container {
  margin-top: 3rem;
}
.content {
  padding: 5rem 8vw;
}
.content p {
  color: #0c1017;
  color: #55585d;
  font-size: 1.25rem;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  font-weight: 400;
  margin: 1rem 0rem;
}
.content p:first-child {
  color: #0c1017;
  font-size: 1.5rem;
  font-family: "Poppins", sans-serif;
  font-weight: lighter;
}

/* Caraousel */
.img-container {
  width: 100vw;
  height: 70vh;
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.img-container img {
  /* width: 800px; */
  height: 500px;
  background-color: #87a0e2;
  border-radius: 16px;
  position: absolute;
  user-select: none;
  transition-property: transform, opacity, zIndex;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
}
.arrows {
  width: 900px;
  height: auto;
  display: flex;
  justify-content: space-between;
  z-index: 100;
}
.arrows svg {
  width: 60px;
  height: 60px;
  position: relative;
  fill: black;
  opacity: 0.8;
  cursor: pointer;
}

.arrows svg:active {
  transform: scale(0.9);
  opacity: 1;
  transition-property: transform, opacity;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
}

/* Services content */

.services-content {
  height: 40vh;
  width: 70%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 3rem;
}

.services-content p {
  color: #55585d;
  font-size: 1.25rem;
  margin-top: 100px;
  line-height: 1.5;
}
/* .services-content button {
  padding: 1rem 2.5rem;
  font-size: 1rem;
  background: linear-gradient(to right, black 50%, white 50%);
  background-position: right bottom;
  border: none;
  border: 1px solid #0c1017;
  color: black;
  text-transform: uppercase;
  transition: all 0.4s ease-in-out;
}

.services-content button:hover {
  background-color: black;
  color: white;
  cursor: pointer;
  background-position: left bottom;
} */
.outer {
  margin: 50px;
  cursor: pointer;
}

.button {
  border: 1px solid black;
  border-radius: 3px;
  width: 250px;
  height: fit-content;
  display: block;
  background: linear-gradient(to right, black 50%, white 50%);
  background-size: 200% 100%;
  background-position: right bottom;
  transition: all 0.5s ease-out;
  text-transform: uppercase;
}

.button:hover {
  background-position: left bottom;
  color: white;
}

.text {
  text-align: center;
  font-size: 16px;
  line-height: 30px;
  color: black;
  transition: all 0.6s ease-out;
  display: block;
  padding: 0.5rem 1.5rem;
}

.text:hover {
  color: white;
}

/* Card Layout */

.project-card {
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5rem;
  flex-direction: column;
  background-color: #f5f5f6;
}
.project-card h1 {
  color: #9e9fa2;
  text-transform: uppercase;
}
.project-card-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  /* gap: 29rem; */
  width: 100%;
  flex-direction: row;
  flex-wrap: wrap;
}

.card {
  width: 300px;
  height: 450px;
  margin: 30px 0;
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px,
    rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
  transition: all 0.6s ease;
}

.card:hover {
  box-shadow: rgba(255, 172, 28, 0.199) -10px 10px,
    rgba(255, 172, 28, 0.19) -20px 20px;
}

.card .image {
  height: 40%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.image3 {
  background: url("./assets/painting2.webp");
}
.image4 {
  background: url("./assets/carpentry2.webp");
  background-size: contain;
}
.image5 {
  background: url("./assets/wallboard2.webp");
  background-size: contain;
}

.image6 {
  background: url("./assets/hardwood2.webp");
  background-size: contain;
}

.card .content {
  display: flex;
  flex-direction: column;
  padding: 20px;
  font-weight: 300;
}

.card .content h3 {
  width: 200px;
  font-weight: 300;
  font-size: 30px;
  padding-bottom: 5px;
  border-bottom: 4px solid #ffac1c;
}

.card .content p {
  font-size: 18px;
  margin-top: 20px;
  margin-bottom: 15px;
}

.card .content a {
  list-style-type: none;
  text-decoration: none;
}

.card .content button {
  font-weight: 100;
  font-size: 20px;
  color: #ffac1c;
  width: 100%;
  height: 45px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: none;
  border-radius: 5px;
  background-color: #ffac1c26;
  transition: 0.2s ease-in-out;
}

.card .content button:hover {
  background-color: #ffac1c3f;
  cursor: pointer;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: Arial, Helvetica, sans-serif;
}
