* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* carousel */
.cera-cleaner-carousel {
  /* width: 100vw; */
  display: flex;
  height: 50vh;
  position: relative;
  padding-bottom: 50px;
}

.banner-heading {
  color: white;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  /* padding-left: 50px; */
}

.banner-heading h1 {
  font-size: 5rem;
}

.cera-cleaner-carousel::before {
  content: "";
  position: absolute;
  background: url(../assets/contactUsBanner.png);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-size: cover;
  z-index: -1;
}

.cera-cleaner-carousel::after {
  content: "";
  position: absolute;
  background: black;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-size: cover;
  z-index: -1;
  opacity: 0.6;
}

/* end */

.contact_container {
  display: flex;
  width: 80%;
  margin: auto;
  padding: 70px;
}

.compuny_information {
  background-image: url("../assets/contactus_leftpart.JPG");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: white;
  padding: 40px;
  width: 38%;
}

.compuny_information h2 {
  margin-bottom: 15px;
  font-weight: 500;
}

.compuny_information p {
  margin-bottom: 40px;
}

.compuny_information ul {
  margin-bottom: 100px;
}

.compuny_information ul li {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  gap: 10px;
}

.social_media_icons a {
  margin-right: 10px;
}

.social_media_icons img {
  width: 24px;
  height: 24px;
}

.compuny_contact_form {
  background-color: #ededed;
  padding: 40px;
  width: 60%;
}

.compuny_contact_form h2 {
  margin-bottom: -2px;
  font-weight: 600;
}

.compuny_contact_form form {
  margin-top: 15px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.form_group {
  width: 48%;
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
}

.form_group label {
  margin-bottom: 5px;
  font-weight: 550;
}

.form_textarea {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
}

.form_textarea label {
  margin-bottom: 5px;
  font-weight: 550;
}

.compuny_contact_form input {
  padding: 8px;
  border: 1px solid #000000;
}

.compuny_contact_form textarea {
  padding: 8px;
  border: 1px solid #000000;
  width: 100%;
}

.compuny_contact_form button {
  margin-top: 40px;
  background-color: #008385;
  color: white;
  padding: 10px 25px;
  border: none;
  cursor: pointer;
  margin-left: 71%;
}

.compuny_contact_form button:hover {
  background-color: #008385;
  color: white;
  border: 1px solid #008385;
}

.line {
  display: flex;
}

.line .l1 {
  width: 45px;
  height: 2px;
  background-color: rgb(0, 131, 133);
  margin-top: 2px;
}

.line .l2 {
  width: 8px;
  height: 2px;
  background-color: rgb(0, 131, 133);
  margin-top: 2px;
  margin-left: 2px;
}

.line .l3 {
  width: 10px;
  height: 2px;
  background-color: rgb(0, 131, 133);
  margin-top: 2px;
  margin-left: 2px;
}

@media (max-width: 1100px) {
  /* carousel */
  .cera-cleaner-carousel {
    height: 25vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .banner-heading {
    color: white;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 0;
  }

  .banner-heading h1 {
    font-size: 3rem;
  }

  .banner {
    height: 25vh;
    padding-bottom: 50px;
  }

  /* end */

  .compuny_information {
    width: 100%;
    margin-left: 0px;
  }

  .compuny_contact_form {
    width: 100%;
  }

  .compuny_contact_form button {
    width: 100%;
    margin-left: 0;
    transform: none;
  }

  .form_group {
    width: 100%;
  }

  .contact_container {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .contact_container {
    padding: 20px;
  }

  .compuny_contact_form h2 {
    font-size: 24px;
  }

  .compuny_contact_form button {
    padding: 10px;
  }
}
