* {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
}

.header {
  min-height: 100vh;
  width: 100%;
  background-image: linear-gradient(rgba(4, 9, 30, 0.7), rgba(4, 9, 30, 0.7)),
    url(images/main.jpg);
  background-position: center;
  background-size: cover;
  position: relative;
}

nav {
  display: flex;
  padding: 2% 6%;
  justify-content: space-between;
  align-items: center;
}

nav img {
  width: 100px;
}

.nav-links {
  flex: 1;
  text-align: right;
}

/* For hover under Menu */
.nav-links ul li {
  list-style: none;
  display: inline-block;
  padding: 8px 12px;
  position: relative;
}

.nav-links ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 24px;
}

.nav-links ul li::after {
  content: "";
  width: 0%;
  height: 2px;
  background: #0dd943;
  display: block;
  margin: auto;
  transition: 0.5s;
}

.nav-links ul li:hover::after {
  width: 100%;
}

.text-box {
  width: 90%;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.text-box h1 {
  font-size: 62px;
}

.text-box p {
  margin: 10px 0 40px;
  font-size: 18px;
  color: #fff;
}

.whatsapp {
  display: table;
  font-family: sans-serif;
  text-decoration: none;
  margin: 1em auto;
  color: #fff;
  font-size: 0.9em;
  padding: 1em 2em 1em 2em;
  border-radius: 2em;
  font-weight: bold;
  background: #25d366 url("https://tochat.be/click-to-chat-direc...") no-repeat
    1.5em center;
  background-size: 1.6em;
  text-align: center;
}

nav .fa {
  display: none;
}

@media (max-width: 700px) {
  .text-box h1 {
    font-size: 20px;
  }
  .nav-links ul li {
    display: block;
  }

  .nav-links {
    position: fixed;
    background: #fff;
    height: 100vh;
    width: 200px;
    top: 0;
    right: -200px;
    text-align: left;
    z-index: 2;
    transition: 1s;
  }
  nav .fa {
    display: block;
    color: #000;
    margin: 10px;
    font-size: 22px;
    cursor: pointer;
  }
  .nav-links ul {
    padding: 30px;
  }

  .nav-links ul li a {
    color: #333;
  }
}

/*------ About Us ----- */

.about-us {
  width: 80%;
  margin: auto;
  text-align: center;
  padding-top: 100px;
}

h1 {
  font-size: 36px;
  font-weight: 600px;
}

p {
  color: #777;
  font-size: 16px;
  font-weight: 300px;
  line-height: 22px;
  padding: 10px;
}

.row {
  margin-top: 5%;
  display: flex;
  justify-content: space-between;
}

.mission,
.service,
.work {
  flex-basis: 31%;
  background: #fff3f3;
  border-radius: 10px;
  margin-bottom: 5%;
  padding: 20px 12px;
  box-sizing: border-box;
  transition: 0.5s;
}

h3 {
  text-align: center;
  font-weight: 600px;
  margin: 10px 0;
}

.mission:hover,
.service:hover,
.work:hover {
  box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.2);
}

@media (max-width: 700px) {
  .row {
    flex-direction: column;
  }
}

/*----- Even more -----*/

.colour-f7f7f7 {
  width: 100%;
  background-color: #f7f7f7;
}

.evenmore {
  width: 80%;
  margin: auto;
  text-align: center;
  padding: 100px;
}

.home,
.office,
.garden {
  margin-top: 100px;
  display: inline-block;
  vertical-align: top;
  width: 31%;
}
.specfic-services img {
  height: 175px;
  width: 175px;
}

.home h4,
.office h4,
.garden h4 {
  color: #0dd943;
  font-size: 24px;
  font-weight: 300;
  margin-top: 30px;
}

/* Quote Button */

.hero-button {
  display: inline-block;
  text-decoration: none;
  color: #0dd943;
  border: 1px solid #0dd943;
  padding: 12px 34px;
  font-size: 16px;
  position: relative;
  cursor: pointer;
  margin-top: 40px;
}

.hero-button:hover {
  color: #fff;
  border: 1px solid #0dd943;
  background: #0dd943;
  transition: 1s;
}

@media (max-width: 700px) {
  .evenmore {
    padding: 0px;
    padding-top: 30px;
    padding-bottom: 30px;
    margin: 0px;
    width: 100%;
    text-align: center;
  }

  .home,
  .office,
  .garden {
    display: block;
    float: center;
    width: 100%;
  }

  .evenmore img {
    float: center;
  }

  .specfic-services img {
    width: 123px;
    height: 123px;
  }
}

/*----- Reviews -----*/

.reviews {
  padding: 40px 0;
  background: #f1f1f1;
  color: #434343;
  text-align: center;
}

.reviews h2 {
  max-width: 1200px;
  margin: auto;
  overflow: hidden;
  padding: 0 20px;
}

.border {
  width: 160px;
  height: 5px;
  background: #6ab04c;
  margin: 26px auto;
}

.row2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.col2 {
  flex: 33.33%;
  max-width: 33.33%;
  box-sizing: border-box;
  padding: 15px;
}

.review {
  background: #fff;
  padding: 30px;
}

.review img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
}

.name {
  font-size: 20px;
  text-transform: uppercase;
  margin: 20px 0;
}

.stars {
  color: #6ab05c;
  margin-bottom: 20px;
}

@media screen and (max-width: 960px) {
  .col2 {
    flex: 100%;
    max-width: 80%;
  }
}

/*----- FAQS -----*/

.bottom-section {
  margin-bottom: 30px;
  position: absolute;
  width: 100%;
  padding-bottom: 30px;
}

.faq {
  margin-top: 30px;
  margin-right: 30px;
  width: 50%;
  float: right;
  font-size: 25px;
}

.faq h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 20px;
  color: #000;
}

.faq .contentbox {
  position: relative;
  margin: 10px 20px;
}

.faq .contentbox .label {
  position: relative;
  padding: 10px;
  color: #fff;
  background-color: #2694af;
  cursor: pointer;
}

.faq .contentbox .label::before {
  content: "+";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  font-size: 1.5rem;
}

.faq .contentbox.active .label::before {
  content: "-";
}

.faq .contentbox .content {
  position: relative;
  padding: 10px;
  background: #fff;
  height: 0px;
  overflow: hidden;
  transition: 0.5s;
}

.faq .contentbox.active .content {
  height: 40px;
  padding: 10px;
}

.faq .contentbox .label {
  width: 100%;
}

/* ----- Aside: typeform ------*/

.typeform h2 {
  margin-top: 30px;
  font-size: 2.5rem;
  text-align: center;
}

.form-index {
  width: 45%;
  text-align: left;
  margin: 0;
  padding-left: 20px;
  background-color: #fff;
  border-radius: 8px;
}

.form-group-index {
  width: 100%;
  margin-top: 20px;
  font-size: 20px;
}

.form-group-index input,
.form-group-index textarea {
  width: 98.4%;
  padding: 5px;
  font-size: 18px;
  border: 1px solid rgba(128, 128, 128, 0.199);
  margin-top: 5px;
}

.form-group-index textarea {
  resize: vertical;
}

.submit-index {
  width: 100%;
  margin-top: 10px;
  text-align: center;
  display: inline-block;
  text-decoration: none;
  color: #0dd943; /* #35322f*/
  border: 1px solid #0dd943;
  padding: 12px 34px;
  font-size: 13px;
  background: transparent;
  position: relative;
  cursor: pointer;
  box-sizing: border-box;
}

.submit-index:hover {
  color: #fff;
  border: 1px solid #fff;
  background: #0dd943;
  transition: 1s;
}

.submit:hover {
  color: #fff;
  border: 1px solid #fff;
  background: #0dd943;
  transition: 1s;
}

.optional {
  display: inline-block;
  font-size: 16px;
  color: rgb(211, 211, 211);
  font-style: italic;
}

@media (max-width: 700px) {
  .bottom-section {
    padding: 0px;
    padding-top: 30px;
    padding-bottom: 30px;
    margin: 0px;
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
  }

  .faq {
    display: flex;
    flex-direction: column;
    width: 80%;
    font-size: 18px;
    justify-content: center;
    margin: 40px;
  }

  .faq .contentbox.active .content {
    height: 90px;
    padding: 10px;
  }

  .faq .contentbox.active .located {
    height: 100px;
    padding: 10px;
    font-size: 16px;
  }

  .typeform {
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: center;
  }

  .form-index {
    width: 90%;
  }

  .submit-index {
    margin-top: 20px;
  }

  .typeform h2 {
    text-align: center;
  }
}

/* ----- Footer ------*/

.image {
  width: 100%;
  height: 600px;
}

.footer {
  background-color: #000;
  color: #fff;
  margin: 700px auto;
  position: absolute;
  width: 100%;
  text-align: center;
  padding: 30px 0;
  margin-left: 0px;
  margin-right: 0px;
}

.footer h4 {
  margin-bottom: 25px;
  margin-top: 20px;
  font-weight: 600;
}

.icons .fa {
  color: #0dd943;
  margin: 0 13px;
  cursor: pointer;
  padding: 18px 0;
}

.footer-gallery-contact {
  background-color: #000;
  color: #fff;
  margin-top: 30px;
  position: relative;
  width: 100%;
  text-align: center;
  padding: 30px 0;
  margin-left: 0px;
  margin-right: 0px;
}

.footer-gallery-contact h4 {
  margin-bottom: 25px;
  margin-top: 20px;
  font-weight: 600;
}

.icons .fa {
  color: #0dd943;
  margin: 0 13px;
  cursor: pointer;
  padding: 18px 0;
}

@media (max-width: 700px) {
  .footer {
    margin-top: 1250px;
  }
}

/* ----- Gallery Page------*/

.sub-header {
  height: 50vh;
  width: 100%;
  background-image: linear-gradient(rgba(4, 9, 30, 0.7), rgba(4, 9, 30, 0.7)),
    url(images/secondary.jpeg);
  background-position: center;
  background-size: cover;
  text-align: center;
  color: #fff;
  z-index: 1;
}

.gallery-title {
  text-align: center;
  margin: 30px;
  font-size: 4vh;
}

.photo {
  width: 80%;
  margin-top: 30px;
  margin-bottom: 30px;
  margin-left: 200px;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.slider {
  margin-left: 25px;
  width: 900px;
  height: 900px;
  border-radius: 10px;
  overflow: hidden;
}

.slides {
  width: 500%;
  height: 500px;
  display: flex;
}

.slides input {
  display: none;
}

.slide {
  width: 20%;
  transition: 2s;
}

.slide img {
  width: 900px;
  height: 900px;
}

.navigation-manual {
  position: absolute;
  width: 800px;
  margin-top: 350px;
  display: flex;
  justify-content: center;
  margin-left: 25px;
}

.manual-btn {
  border: 2px solid #40d3dc;
  padding: 5px;
  border-radius: 10px;
  cursor: pointer;
  transition: 1s;
}

.manual-btn:not(:last-child) {
  margin-right: 40px;
}

.manual-btn:hover {
  background: #40d3dc;
}

#radio1:checked ~ .first {
  margin-left: 0;
}

#radio2:checked ~ .first {
  margin-left: -20%;
}

#radio3:checked ~ .first {
  margin-left: -40%;
}

#radio4:checked ~ .first {
  margin-left: -60%;
}

.navigation-auto {
  position: absolute;
  display: flex;
  width: 800px;
  justify-content: center;
  margin-top: 850px;
  margin-left: 25px;
}

.navigation-auto div {
  border: 2px solid #40d3dc;
  padding: 5px;
  border-radius: 10px;
  transition: 1s;
}

.navigation-auto div:not(:last-child) {
  margin-right: 40px;
}

#radio1:checked ~ .navigation-auto .auto-btn1 {
  background: #40d3dc;
}

#radio2:checked ~ .navigation-auto .auto-btn2 {
  background: #40d3dc;
}

#radio3:checked ~ .navigation-auto .auto-btn3 {
  background: #40d3dc;
}

#radio4:checked ~ .navigation-auto .auto-btn4 {
  background: #40d3dc;
}

@media (max-width: 700px) {
  .gallery-title {
    width: 80%;
    justify-content: center;
    text-align: center;
  }
  .photo {
    width: 95%;
    margin-bottom: 30px;
    overflow-x: hidden;
    justify-content: center;
    align-items: center;
    margin: auto;
    margin-left: -2px;
  }
  .slider {
    width: 355px;
    height: 355px;
  }

  .slide img {
    width: 355px;
    height: 355px;
    overflow-x: hidden;
  }

  .navigation-manual {
    width: 350px;
    margin-top: -130px;
    margin-left: 0px;
    overflow-x: hidden;
  }

  .navigation-auto {
    width: 350px;
    margin-top: 370px;
    margin-left: 0px;
    overflow-x: hidden;
  }
}

/* ----- Contact Page ------*/

.map {
  text-align: center;
  width: 80%;
  margin: auto;
  padding: 80px 0;
}

.map h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.map p {
  margin: 20px;
}

.contact-us {
  width: 80%;
  text-align: left;
  justify-content: center;
  margin: auto;
}

.form {
  width: 100%;
  text-align: left;
  justify-content: center;
  margin: auto;
  padding: 20px;
  /*   box-shadow: 0px 0px 20px #00000010; */
  background-color: #fff;
  border-radius: 8px;
  margin-bottom: 20px;
}

.form-group {
  width: 60%;
  margin-top: 20px;
  font-size: 20px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 5px;
  font-size: 18px;
  border: 1px solid rgba(128, 128, 128, 0.199);
  margin-top: 5px;
}

.form-group textarea {
  resize: vertical;
}

.submit {
  width: 60%;
  margin-top: 10px;
  text-align: center;
  display: inline-block;
  text-decoration: none;
  color: #0dd943; /* #35322f*/
  border: 1px solid #0dd943;
  padding: 12px 34px;
  font-size: 13px;
  background: transparent;
  position: relative;
  cursor: pointer;
  box-sizing: border-box;
}

.submit:hover {
  color: #fff;
  border: 1px solid #fff;
  background: #0dd943;
  transition: 1s;
}

.optional {
  display: inline-block;
  font-size: 16px;
  color: rgb(211, 211, 211);
  font-style: italic;
}

.otherways {
  margin: 50px auto;
  font-size: 36px;
}

.contact-col {
  flex-basis: 48%;
  margin-bottom: 30px;
}

.contact-col div {
  display: flex;
  align-items: center;
  margin-bottom: 75px;
}

.contact-col div .fa {
  font-size: 50px;
  color: #0dd943;
  margin: 10px;
  margin-right: 30px;
}

.contact-col div p {
  padding: 0;
  text-align: left;
}

.contact-col div h5 {
  font-size: 24px;
  margin-bottom: 5px;
  color: #555;
  font-weight: 400;
}

.beforefooter {
  margin-bottom: 90px;
}

@media (max-width: 700px) {
  .map iframe {
    width: 90%;
    height: 400px;
  }

  .contact-col div h5 {
    font-size: 18px;
  }

  .contact-us {
    width: 80%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .form {
    margin: 0;
    padding: 0;
  }

  .form-group {
    width: 90%;
    padding-left: 0px;
    margin-right: 0px;
  }

  .submit {
    width: 94%;
  }

  .otherways {
    font-size: 22px;
  }

  .contact-col div .fa {
    font-size: 40px;
  }

  .contact-col div {
    overflow-x: 0%;
  }

  .form-group textarea {
    height: 100px;
  }
}

/* ----- Submission Page ------*/

.submission {
  text-align: center;
}
