body {
  background: var(--backgroundcolor);
}

.herosection {
  background-image: url(../images/about/herosimage.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  height: 200px;
  background-position: center;
  color: var(--white);
}
.herosection h1 {
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.aboutus {
  background: var(--white);
  padding: 95px 80px;
}

.swiper {
  width: 100%;
  height: 500px;
}

.slider__image1 {
  background-image: url(../images/slider/about1.jpg);
  height: 500px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.slider__image2 {
  background-image: url(../images/slider/about2.jpg);
  height: 500px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.ourmission__panel {
  background: var(--white);
  padding: 95px 80px 0 80px;
}

.ourmission {
  display: flex;
  color: var(--white);
}

.ourmission__image {
  width: 50%;
}

.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;
  }
}

.contactform {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
  align-items: center;
  background: var(--white);
  padding: 50px 0;
  margin-bottom: 50px;
}

.contact__image {
  text-align: center;
}

.contact__image img {
  max-width: 300px;
}

form {
  display: flex;
  flex-direction: column;
}

form input,
textarea,
form select {
  display: block;
  width: auto;
  border: 1px solid #e2e2e2;
  padding: 11px 20px;
  outline: none;
  max-width: 100%;
  margin-bottom: 15px;
}



input::placeholder,
textarea::placeholder {
  font-family: "Montserrat", sans-serif;
}
@media(max-Width:576px) {
    .aboutus {
        padding: 20px 16px;
    }

    .ourmission__panel {
        padding: 20px 16px 0 16px
    }

    .heading__main {
        font-size: 30px;
    }
}
