.herosection {
  background-image: url(../images/homepage/hero__background.jpg);
  background-repeat: no-repeat;
  max-height: 550px;
  height: 100vh;
}

.herosection__container {
  display: flex;
  justify-content: space-between;
}

.herosection__container img {
  max-width: 400px;
  padding: 35px;
}

.herosection__text {
  max-width: 550px;
  padding: 85px 0px;
}

.herosection h1 {
  color: var(--maincolor);
}

.hero__para {
  padding-bottom: 40px;
}

@media (max-width: 979px) {
  .herosection__container {
    display: block;
  }
  .herosection__container img {
    display: none;
  }
}

@media (max-width: 576px) {
  .herosection__text {
    max-width: 550px;
    padding: 65px 0px;
  }
  .main__cards {
    transform: translateY(-50px);
  }
}

.main__cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  gap: 20px;
  transform: translateY(-100px);
}

.ourmission {
  display: flex;
  margin-top: 15px;
  margin-bottom: 115px;
  color: var(--white);
}

.ourmission__image {
  width: auto;
}

.ourmission__text {
  width: 50%;
}

.ourmission__image img {
  height: 100%;
}

.ourmission__text h2 {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 20px;
}

.ourmission__text {
  background: var(--maincolor);
  padding: 90px 60px;
}
@media (max-width: 979px) {
  .ourmission {
    display: block;
  }
  .ourmission__image img {
    width: 100%;
  }
  .ourmission__image {
    width: auto;
    text-align: center;
  }

  .ourmission__text {
    width: auto;
  }
}

.ourservices {
  background: var(--backgroundcolor);
  padding: 115px 0px;
}

.ourservices__cards {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
  margin: 20px 0px;
  justify-content: space-around;
}

.getquote {
  background-image: url(../images/homepage/quote__background.jpg);
  background-repeat: no-repeat;
  color: var(--white);
  height: auto;
  background-size: cover;
}

.getquote {
  display: flex;
  gap: 60px;
  align-items: center;
  margin: 0 auto;
  padding-top: 30px;
  padding-bottom: 30px;
  justify-content: space-around;
  flex-wrap: wrap;
}

.contactform__text {
  padding: 20px 0px;
  max-width: 450px;
}

.contact__form form {
  display: flex;
  flex-direction: column;
  min-width: 550px;
}

.contact__form input,
.contact__form textarea {
  padding: 15px 20px;
  outline: var(--maincolor);
  max-width: 100%;
}

.contact__form button {
  margin-top: 20px;
}

@media (max-width: 666px) {
  .contact__form form {
    min-width: 300px;
  }
}

input::placeholder,
textarea::placeholder {
  font-family: "Montserrat", sans-serif;
}

