/* Banner Section  */
.banner-section {
  height: 450px;
  background: url(../assets/contact.jpeg) no-repeat center/cover;
  padding-top: 150px;
}
.banner-section h1 {
  color: azure;
  text-align: center;
}
/* about section */
.about-section {
  padding: 50px 0;
  background-color: rgb(243, 243, 243);
}
.cont {
  padding: 12px 15px;
  border-left: 5px solid #3ab052;
  box-shadow: 0 1px 4px gray;
  background-color: white;
}
/* cart section */
.cart-section {
  padding: 20px 0 50px;
  background-color: rgb(243, 243, 243);
}
.cart {
  background-color: beige;
  padding: 40px 25px;
  box-shadow: 1px 1px 3px black;
  height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.cart p {
  text-align: center;
  font-size: 14px;
  color: rgb(80, 80, 80);
}
.cart h3 {
  text-align: center;
  color: black;
  font-weight: 700;
}
.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
  font-size: 40px;
  text-align: center;
}
.cart-icon {
  font-size: 40px;
  text-align: center;
}
.cart .fa-location-dot {
  font-size: 40px;
  text-align: center;
}
.cart a {
  color: rgb(80, 80, 80);
}
/* Contatct-section */
.contact-sec {
  padding: 30px 0;
  background-color: rgb(233, 233, 233);
}
.contact-box {
  padding: 20px 20px 30px;
  background-color: rgb(255, 255, 255);
  box-shadow: 4px 5px 10px gray;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.contact-box h2 {
  margin-bottom: 20px;
}
.contact-form label {
  margin-bottom: 10px;
}
.form-in {
  outline: none;
  padding: 12px 10px;
  margin-bottom: 15px;
}
textarea.form-in {
  height: 120px !important;
}
.submit-btn {
  padding: 14px 45px;
  background-color: #25801d;
  color: white;
  border-radius: 25px;
  border: 0;
  outline: 0;
}
.submit-btn:hover {
  background-color: rgb(3, 63, 87);
  transition: all 0.3s ease-in;
}
.contact-cont {
  margin-bottom: 5px;
}
h4,
.title4 {
  font-size: 20px;
  font-weight: 500;
  position: relative;
  margin-bottom: 30px !important;
  color: #25801d;
  text-transform: capitalize;
  text-align: center;
}

.location-map {
  margin-top: 40px;
  padding: 6px;
  padding-bottom: 0;
  background-color: #060633;
}
.map {
  width: 100%;
  height: 200px;
  /* border-radius: 8px; */
}
@media screen and (max-width: 992px) {
  .cart {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 576px) {
  .banner-section {
    height: 130px;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .about-section {
    padding-block: 25px;
  }
  .cart {
    padding: 15px 10px;
    height: 210px;
    gap: 8px;
  }
  .submit-btn {
    width: 100%;
  }
  .contact-box{
    padding: 15px 10px ;
  }
}
