.hero {
	height: 100dvh;
	width: 100%;
	padding: 0 5rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.heading {
	font-size: 6rem;
	font-weight: 500;
	text-transform: uppercase;
	line-height: 1;
	color: var(--olive);
}

.tagline {
	margin-top: 2rem;
	font-size: 1.2rem;
	color: var(--olive);
}

.hero-btn {
	margin-top: 1rem;
	color: var(--olive);
	background-color: var(--white);
}

.hero-btn:hover {
	color: var(--white);
	background-color: var(--olive);
	transition: color 1s ease, background-color 0.2s linear;
}

.intro-vid {
	height: 100dvh;
	width: 100%;
}

video {
	height: 100dvh;
	width: 100%;
	object-fit: cover;
}

.description {
	height: 40dvh;
	width: 100%;
	padding: 1rem 5rem;
	display: flex;
	justify-content: space-between;
	border-bottom: 1px solid var(--olive);
}

.texts {
	width: 40%;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.txt {
	font-size: 1rem;
	color: var(--olive);
}

.work {
	height: 80dvh;
	width: 100%;
	display: flex;
	padding: 1rem 0;
	border-bottom: 1px solid var(--olive);
}

.work-info {
	min-width: 30%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 0 5rem;
	border-right: 1px solid var(--olive);
}

.tag,
.cat-q {
	font-size: 0.8rem;
	text-transform: uppercase;
	color: var(--green);
}

.work-name {
	font-size: 2rem;
	line-height: 1;
	text-transform: capitalize;
	color: var(--olive);
}

.type {
	font-size: 1rem;
	text-transform: capitalize;
	color: var(--olive);
}

.work-slider {
	display: flex;
	align-items: center;
	margin-left: 1rem;
	padding: 0 5rem 0 0;
	gap: 1rem;
	overflow-x: auto;
	scrollbar-width: none;
}

.slider-img {
	height: 100%;
	width: auto;
	object-position: center;
	object-fit: cover;
}

.grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 4rem;
	padding: 1rem 5rem 4rem;
	border-bottom: 1px solid var(--olive);
}

.service {
	padding: 1rem;
	border: 1px solid var(--olive);
}

.service-img {
	height: 250px;
	width: 100%;
	object-fit: cover;
	object-position: center;
}

.service-name {
	margin-top: 0.5rem;
	font-size: 1.2rem;
	line-height: 1;
	text-transform: capitalize;
	color: var(--olive);
}

@media screen and (max-width: 480px) {
  .hero {
    padding: 0 2rem;
  }
	.heading {
		font-size: 3rem;
	}
	.tagline {
		font-size: 1rem;
	}
	.description {
		height: 50dvh;
    padding: 2rem;
	}
	.title {
		font-size: 1.5rem;
	}
	.txt {
		font-size: 0.8rem;
	}
	.work-info {
		min-width: 45%;
		padding: 0 2rem;
	}
	.tag,
	.cat-q {
		font-size: 0.6rem;
	}
	.work-name {
		font-size: 1.5rem;
	}
	.work-slider {
		padding: 0 2rem 0 0;
	}
  .email{
    display: none;
  }
  .grid {
  	grid-template-columns: repeat(1, 1fr);
  	gap: 2rem;
  	padding: 1rem 2rem 4rem;
  }
}

@media screen and (max-width: 960px) and (min-width: 481px) {
  .hero {
    padding: 0 2rem;
  }
	.heading {
		font-size: 3rem;
	}
	.tagline {
		font-size: 1rem;
	}
	.description {
		height: 50dvh;
    padding: 2rem;
	}
	.title {
		font-size: 1.5rem;
	}
	.txt {
		font-size: 0.8rem;
	}
	.work-info {
		min-width: 45%;
		padding: 0 2rem;
	}
	.tag,
	.cat-q {
		font-size: 0.6rem;
	}
	.work-name {
		font-size: 1.5rem;
	}
	.work-slider {
		padding: 0 2rem 0 0;
	}
  .email{
    display: none;
  }
  .grid {
  	grid-template-columns: repeat(2, 1fr);
  	gap: 2rem;
  	padding: 1rem 2rem 4rem;
  }
}

@media screen and (min-width: 1366px) {
  .hero {
    padding: 0 10rem;
  }
	.heading {
		font-size: 5rem;
	}
	.tagline {
		font-size: 1.2rem;
	}
	.description {
		height: 50dvh;
    padding: 5rem 10rem;
	}
	.title {
		font-size: 2.5rem;
	}
	.txt {
		font-size: 1rem;
	}
	.work-info {
		min-width: 45%;
		padding: 5rem 10rem;
	}
	.tag,
	.cat-q {
		font-size: 0.8rem;
	}
  .type {
    font-size: 1.2rem;
  }
	.work-name {
		font-size: 2rem;
	}
	.work-slider {
		padding: 0 10rem 0 0;
	}
  .grid {
  	gap: 5rem;
  	padding: 1rem 10rem 4rem;
  }
}