
.home-about-us {
}
.home-about-us .container-fluid {
  padding: 0;
}
.home-about-wapper {
  position: relative;
  overflow: hidden;
}
.home-about-wapper img {
  width: 100%;
}
.home-about-wapper:hover .home-about-content {
  bottom: -10%;
  transform: translateY(-50%);
  transition: .5s ease-in-out;
}
.home-about-content h1 {
  font-family: var(--font-04);
  font-size: 40px;
  line-height: 40px;
  font-weight: 400;
  color: var(--color-1);
  text-transform: capitalize;
}
.home-about-content h2 {
  font-size: 30px;
  font-weight: bold;
  text-transform: uppercase;
  color: var(--white);
  font-family: var(--font-03);
}
.home-about-content p {
max-width: 400px;
}
.hr-text {
  margin: 0;
  color: #555555;
  font-size: 18px;
  line-height: 1.722;
  font-family: var(--font-03);
  text-align: center;
}
.home-about-content {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  align-items: center;
  position: absolute;
  transition: .5s ease-in-out;
  bottom: -1000px;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 20px;
}
.home-about-wapper::after {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: #000;
	opacity: .4;
}
.home-about-content p {
  color: #fff;
}
.home-about-wapper figure {
	margin: 0;
}

@media(max-width:1200px){
  .hr-text {
  font-size: 16px;
}
.home-about-wapper:hover .home-about-content {
  transform: inherit;
  transition: .5s ease-in-out;
  bottom: 0;
}
.home-about-content h1 {
  font-size: 24px;
}
.home-about-content h2 {
  font-size: 22px;
}
}

@media(max-width:992px){
  .home-about-content h2 {
  font-size: 18px;
  margin: 0;
}
.home-about-content {
  padding: 10px;
}
.home-about-content h1 {
  font-size: 18px;
  margin: 0;
}
}

@media(max-width:768px){
  .home-about-us {
  padding: 20px;
}
.home-about-wapper img {
  width: 100%;
  height: 400px;
}
.home-about-inner .row {
  row-gap: 20px;
}
}