.hero_bg {
  width: 100%;
  height: 650px;
  background-image: url(../images/home_banner.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero_text {
  background-color: #000000ab;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 15%;
}

.hero_text h1 {
  font-size: 65px;
  color: #fff;
  text-align: center;
}

.hero_btn button {
  padding: 15px 45px;
  border: none;
  color: #fc7100;
  font-size: 20px;
  margin-top: 35px;
  font-weight: 300;
  border-radius: 30px;
}

.hero_text button:hover {
  background-color: #000;
  color: #fff;
  cursor: pointer;
}

.hero_text h4 {
  font-size: 20px;
  text-transform: uppercase;
  color: #fff;
  font-weight: 400;
}

.about_all {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  padding: 0 8%;
  margin-top: 50px;
}
.about_img img {
  width: 100%;
}

.about_text h1 {
  font-size: 45px;
  padding-block: 15px;
}
.about_text h4 {
  color: #fc7100;
}
.about_text p {
  margin-top: 15px;
}
.about_btn button {
  padding: 15px 45px;
  background-color: #fc7100;
  color: #fff;
  border: none;
  margin-top: 15px;
  border-radius: 30px;
}
.services_all {
  background-color: #fc7100;
  padding: 0 8%;
  padding-block: 50px;
  margin-top: 50px;
}
.services_title h1{
    font-size: 55px;
    text-align: center;
}
.services_title p{
    margin-top: 15px;
    text-align: center;
}

.services_box{
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: 50px;
    padding: 0 2%;
    padding-block: 3%;
}
.services_box img{
    width: 100%;
    height: 300px;
    object-fit: cover;
}
.services_box_text{
    padding-block: 10px;
    width: 100%;
}

.services_text_btn{
 
    width: 100%;
}
.services_text_btn a{
    width: 100%;
    height: 40px;
}
.services_text_btn button{
    width: 100%;
    height: 40px;
    background-color: #000;
    color:#fff ;
    border: none;
}
.services_text_btn button:hover{
    background-color: #fc7100;
    color: #fff;
}
.contact_all{
    margin-top: 50px;
}

.contact_all h1{
    text-align: center;
    font-size: 45px;
}

.contact_title{
  padding: 0 8%;
}

.contact_grid{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    padding: 0 8%;

}

.contact_box{
    margin-top: 50px;
    background-color: #fff;
    padding: 0 10%;
    padding-block: 30px;
    text-align: center;
}
.contact_box a{
    margin-top: 15px;
    color: #000;
}
.contact_box h3{
    margin-top: 15px;
}
.contact_title P{
    text-align: center;
    margin-top: 15px;
}
.contact_box h1{
    font-size: 45px;
    text-align: center;
    color: #fc7100;
}
.about_title{
    text-align: center;
    margin-top: 50px;
}

.customize_all{
  padding: 0 8%;
  margin-top: 50px;
}
.customize_title h1{
  text-align: center;
  font-size: 55px;
}
.customize_title p{
  text-align: center;
  margin-top: 15px;
}
.gallery_all {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 0 8%;
  gap: 30px;
}

.gallery {
  width: 100%;
  height: 300px;
  margin-top: 50px;
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media only screen and (max-width: 1110px) {
  .hero_text {
    padding: 0 5%;
  }
  .hero_text h1 {
    font-size: 45px;
  }
  .about_all {
    display: grid;
    grid-template-columns: 1fr;
  }
  .about_text h1 {
    font-size: 35px;
    padding-top: 15px;
    padding-bottom: 0;
  }
  .contact_grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }
  .gallery_all {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 0 5%;
    gap: 0px;
  }
}

@media only screen and (max-width: 810px) {
    .contact_grid{
        display: grid;
        grid-template-columns: 1fr;
      }
      .gallery_all {
        display: grid;
        grid-template-columns: 1fr;
        padding: 0 5%;
        gap: 0px;
      }
}
