main {
  margin-top: 100px;
}

.first-section{
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 420px 800px;
  justify-content: center;
  align-items: center;
  row-gap: 40px;
  border-bottom: 1px solid #07301a;
  border-top:  1px solid #07301a;
}

@media screen and (min-width: 768px) {
  .first-section {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 420px 1fr;
    row-gap: 40px;
    border-bottom: 1px solid #07301a;
  }
}


@media screen and (min-width: 1200px) {
  .first-section {
    display: grid;
    grid-template-columns: 470px 1fr;
    grid-template-rows: 1fr;
  }
}

.greenerhub-service-location {
  height: 420px;
  text-align: center;
  padding: 10px;
  margin: auto;
  padding-bottom: 0;
}

.australia-map {
  height: 80%;
}

.greenerhub-service-headline {
  margin-top: 10px;
  font-size: 18px;
  padding-bottom: 20px;
}


.slider-section {
  position: relative;
}

.slider-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; 
}


@media screen and (min-width: 768px) {
  .slider-content {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    border-top: 1px solid white;
  }
}

@media screen and (min-width: 1200px) {
  .slider-content {
    border-top: none;
  }
}

.slider-section-image-container {
  width: 400px;
  height: 420px;
}

.sale-image {
  width: 400px;
  height: 420px;
}

.sale-details {
  padding: 70px 30px 20px;
}

@media screen and (min-width: 1200px) {
  .sale-details {
    padding: 10px 30px 40px;
  }
}


.sale-title {
  display: block;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 30px;
}

.sale-description {
  display: block;
  font-size: 18px;
  margin-bottom: 30px;
}

.sale-discount-price {
  font-size: 18px;
  display: inline-block;
  margin-right: 10px;
  margin-bottom: 10px;
}

.sale-discount-price span {
  font-size: 18px;
  color: rgb(248, 223, 80);  
  padding-left: 4px;     
}

.sale-original-price {
  display: inline-block;
  font-size: 18px;
  color: rgb(247, 105, 5);
}

.t-c {
  display: block;
  font-size: 12px;
}

.slider {
  display: flex;
  width: 200px;
  height: 20px;
  align-items: center;
  justify-content: space-between;

  position: absolute;
  bottom: 320px;
  right: 108px;
}

@media screen and (min-width: 768px) {
  .slider {
    bottom: 16px;
    right: 12em;
  }
}

@media screen and (min-width: 1200px) {
  .slider {
    bottom: 42px;
    right: 130px;
  }
}

.left-arrow,
.right-arrow {
  width: 30px;
  height: 30px;
  display: inline-block;
  font-size: 20px;
  margin: 0;
  padding: 0;
  text-align: center;
  border: none;
  background-color: inherit;
  color: white;
}

.dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  background-color: white;
  border: 2px solid #07301a;
  border-radius: 50%;
  margin: 0;
  margin-right: 5px;
  padding: 0;
}

.services-section {
  margin-top: 40px;
}

.services-title {
  height: 70px;
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  padding: 16px 0;
  color: white;
}

.services-container {
  display: grid;
  grid-template-rows: 320px 320px 320px 320px;
  grid-template-columns: auto;
  align-items: center;
  justify-content: center;
}

@media screen and (min-width: 768px) {
  .services-container {
    display: grid;
    grid-template-rows: 320px 320px;
    grid-template-columns: 280px 280px;
    row-gap: 40px;
    column-gap: 40px;
    align-items: center;
    justify-content: center;
  }
}

@media screen and (min-width: 1200px) {
  .services-container {
    display: grid;
    grid-template-columns: 280px 280px 280px 280px;
    grid-template-rows: none;
    row-gap: 0;
    column-gap: 36px;
    margin: 0;
    margin-bottom: 30px;
    padding: 40px;
    justify-content: space-around;
  }
}

.service {
  height: 320px;
}

.service .service-image-container {
  height: 280px;
  width: 280px;
  display: grid;
  justify-content: center;
  align-items: center;
}

.service .service-image {
  height: 240px;
}

.service .service-title {
  height: 40px;
  font-size: 18px;
  text-align: center;
  padding-top: 5px;
  margin: auto;
  border-radius: 4px;
}

.why-choose-greenerhub-section {
  display: block;
  padding-bottom: 10px;
  width: 90%;
  margin: auto;
  margin-top: 40px;
  margin-bottom: 20px;
  font-size: 18px;
  border-radius: 8px;
}

.why-choose-greenerhub-title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  padding-top: 16px;
  padding-bottom: 16px;
  border-bottom: 2px solid white;
}

.why-choose-greenerhub-description {
  display: grid;
  grid-template-columns: none;
  grid-template-rows: 1fr 1fr 1fr 1fr;
  row-gap: 80px;
  padding-top: 40px;
  padding-bottom: 40px;
}


@media screen and (min-width: 768px) {
  .why-choose-greenerhub-description {
    padding: 40px;
    padding-bottom: 80px;
    display: grid;
    grid-template-columns: 280px 280px;
    grid-template-rows: 1fr 1fr;
    column-gap: 16px;
    justify-content: space-around;
  }
}

@media screen and (min-width: 1200px) {
  .why-choose-greenerhub-description {
    padding: 40px;
    padding-bottom: 80px;
    display: grid;
    grid-template-columns: 280px 280px 280px 280px;
    grid-template-rows: none;
    column-gap: 16px;
    justify-content: center;
  }
}

.why-choose-gh {
  display: grid;
  grid-template-rows: 100px 200px;
  row-gap: 30px;
}

.why-choose-gh-icon-container {
  height: 100px;
  text-align: center;
  align-content: center;
}

.why-choose-gh-icon {
  width: 80px;
}

.img-invert {
  filter: invert(1);
}

.why-choose-gh-desc-container {
  display: flex;
  flex-direction: column;
  vertical-align: center;
  align-items: center;
  justify-content: start;
  row-gap: 20px;
}

.why-choose-gh-title {
  font-size: 20px;
  text-align: center;
}

.why-choose-gh-desc {
  font-size: 18px;
  text-align: center;
  width: 240px;
}



.faq-section {
  width: 70%;
  margin: auto;
  text-align: center;
}

@media (max-width: 500px) {
  .faq-section {
    width: 90%;
  }
}

.faq-title {
  font-size: 36px;
  font-weight: 700;
  padding: 20px;
  width: 100%;
  text-align: center;
  background-color: inherit;
  color: inherit;
  margin-bottom: 24px;
}

.faq {
  margin-bottom: 20px;
}

.faq-question {
  background-color: gainsboro;
  color: inherit;
  font-size: 18px;
  font-weight: 600;
  text-align: left;
  padding: 10px 40px;

  border: 2px solid #07301a;
  border-radius: 12px;

  cursor: pointer;
}

.faq-answer {
  font-size: 18px;
  text-align: left;
  padding: 10px 40px;
  margin-top: 4px;
  
  border-left: 2px solid gainsboro;
  border-right: 2px solid gainsboro;;
  border-radius: 12px;
}

@media (max-width: 500px) {
  .faq-question,
  .faq-answer {
    padding: 10px 20px;
  }
}


.contact-us-section {
  width: 60%;
  margin: auto;
  margin-top: 40px;
  text-align: center;
  margin-bottom: 40px;
}

@media (max-width: 500px) {
  .contact-us-section {
    width: 90%;
  }
}

.contact-us-title {
  font-size: 36px;
  font-weight: 700;
  padding: 20px;
  width: 100%;
  text-align: center;
  color: inherit;
  margin-bottom: 24px;
}

.contact-us-form {
  font-size: 18px;
  border: 2px solid #07301a;
  border-radius: 20px;
  padding: 40px 5px 20px 5px;
}

.contact-us-input,
.contact-us-select-options {
  display: block;
  width: 94%;
  margin: auto;
  margin-bottom: 30px;
  color: inherit;
  font-size: inherit;
  font-weight: 400;
  text-align: left;
  padding: 10px 40px;
  
  border: 2px solid #07301a;
  border-radius: 12px;
}

.contact-us-label {
  display: block;
  width: 94%;
  margin: auto;
  text-align: left;
  padding-left: 10px;
  color: white;
  font-size: 18px;
  margin-bottom: 6px;
}

.contact-us-submit {
  display: block;
  width: 120px;
  margin: auto;
  padding: 10px;
  border: 2px solid white;
  border-radius: 12px;
  font-size: 20px;
  font-weight: 700;
}

.form-submission-message {
  height: 40px;
  font-size: 18px;
  border-radius: 4px;
  width: 300px;
  margin: auto;
  margin-top: 10px;
  text-align: center;
  padding-top: 10px;
}