.top-bar2 {
    padding-top: 10px;
    padding-bottom: 10px;
}
.about-btn{
    width: 32%;
}
.about-page li span,
.about-page p span {
    color: #db4e36;
    font-weight: 500;
}
.about-page h6{
  color: #000;
  font-weight: 600;
}
.office-location-area .office-location .single-location ul li .icon i{
  color: #47bfc3;
}
.location-area img{
  width: 100%;
  object-fit: contain;
  padding: 15px 0;
}
.servic-det img {
  width: 100%;
  object-fit: cover;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
  border-radius: 15px;
}
ul {
  line-height: 2;
}

.header-logo img{
  width: 100%;
  height: 120px;
  object-fit: contain;
}
.home5-category-area{
  position: relative;
}
.home5-category-area .top-right-img{
  position: absolute;
  right: 0;
  top: 5%;
  width: 9%;
  animation-duration: 3s;
  animation-name: slideout;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}
@keyframes slideout {
  from {
    translate: 0 0;
    scale: 100% 1;
  }

  to {
    translate: -10vw 0;
    scale: 100% 1;
  }
}
.home5-category-area .left-bottom-img {
  position: absolute;
  left: 0;
  bottom: 20%;
  width: 9%;
  animation-duration: 3s;
  animation-name: slidein;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}
@keyframes slidein {
  from {
    translate: 10vw 0;
    scale: 100% 1;
  }

  to {
    translate: 0 0;
    scale: 100% 1;
  }
}
.go-corner {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 50px;
  height: 45px;
  overflow: hidden;
  top: 0;
  right: 0;
  background-color:#db4e36;;
  border-radius: 0 4px 0 32px;
}
.go-arrow {
  margin-top: -10px;
  margin-right: 0px;
  color: white;
  font-family: courier, sans;
  font-size: 45px;
}
.card1 {
  display: block;
  position: relative;
  background-color: #fff;
  border-radius: 10px;
  padding: 25px 24px;
  margin: 12px;
  text-decoration: none;
  z-index: 0;
  overflow: hidden;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
  border-bottom: 4px solid #db4e36;
  height: 223px;
}
.card1:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -16px;
  right: -16px;
  background: #db4e36;
  height: 32px;
  width: 48px;
  border-radius: 32px;
  transform: scale(1);
  transform-origin: 50% 50%;
  transition: transform 0.25s ease-out;
}
.card1:hover:before {
  transform: scale(21);
}
.card1:hover p {
  transition: all 0.3s ease-out;
  color: rgba(255, 255, 255, 0.8);
}
.card1:hover h3 {
  transition: all 0.3s ease-out;
  color: #fff;
}
.btn-flex{
  display: flex;
  gap: 13px;
  align-items: center;
  justify-content: left;
}