body {
  min-width: 300px;
  margin: 0 auto; /* centers the web page when the device width is more than 1450px */
  width: 100vw; /* sets full width assuming device width is equal or less than 1450px */
}

.maxwidthcontainer {
  max-width: 1450px;
  margin: auto;
  display: block;
}

@media screen and (max-width: 430px) {
  h1 {
    font-family: "Metamorphous", serif;
    font-optical-sizing: auto;
    font-size: 40px;
    font-weight: 500;
    margin: 0;
  }
}
@media screen and (min-width: 430px) and (max-width: 789px) {
  h1 {
    font-family: "Metamorphous", serif;
    font-optical-sizing: auto;
    font-size: 52px;
    font-weight: 500;
    margin: 0;
  }
}
@media screen and (min-width: 790px) {
  h1 {
    font-family: "Metamorphous", serif;
    font-optical-sizing: auto;
    font-size: 64px;
    font-weight: 500;
    margin: 0;
    line-height: 1.2;
  }
}

@media screen and (max-width: 430px) {
  h2 {
    font-family: "Metamorphous", serif;
    font-optical-sizing: auto;
    font-size: 32px;
    font-weight: 500;
    margin: 0;
  }
}
@media screen and (min-width: 430px) and (max-width: 789px) {
  h2 {
    font-family: "Metamorphous", serif;
    font-optical-sizing: auto;
    font-size: 40px;
    font-weight: 500;
    margin: 0;
  }
}
@media screen and (min-width: 790px) {
  h2 {
    font-family: "Metamorphous", serif;
    font-optical-sizing: auto;
    font-size: 44px;
    font-weight: 400;
    margin: 0;
    line-height: 1.2;
  }
}

@media screen and (max-width: 430px) {
  h3 {
    font-family: "Metamorphous", serif;
    font-optical-sizing: auto;
    font-size: 24px;
    font-weight: 300;
    margin: 0;
  }
}
@media screen and (min-width: 430px) and (max-width: 789px) {
  h3 {
    font-family: "Metamorphous", serif;
    font-optical-sizing: auto;
    font-size: 28px;
    font-weight: 300;
    margin: 0;
  }
}
@media screen and (min-width: 790px) {
  h3 {
    font-family: "Metamorphous", serif;
    font-optical-sizing: auto;
    font-size: 30px;
    font-weight: 300;
    margin: 0;
    line-height: 1.2;
  }
}

@media screen and (max-width: 430px) {
  h4 {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-size: 22px;
    font-weight: 200;
    margin: 0;
  }
}
@media screen and (min-width: 430px) and (max-width: 789px) {
  h4 {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-size: 22px;
    font-weight: 200;
    margin: 0;
  }
}
@media screen and (min-width: 790px) {
  h4 {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-size: 22px;
    font-weight: 200;
    margin: 0;
    line-height: 1.2;
  }
}

@media screen and (max-width: 430px) {
  p {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-size: 16px;
    font-weight: 500;
    margin: 0;
    color: #070707;
  }
}
@media screen and (min-width: 430px) and (max-width: 789px) {
  p {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-size: 16px;
    font-weight: 500;
    margin: 0;
    color: #070707;
  }
}
@media screen and (min-width: 790px) {
  p {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-size: 16px;
    font-weight: 500;
    margin: 0;
    color: #070707;
  }
}

.herosection {
  background-image: url(./images/hero.webp);
  min-height: 800px;
  max-height: 800px;
  width: 100%; /* sets width the same at the width of the window */
  background-size: cover;
  padding: 250px 0px 80px 0px;
  box-sizing: border-box;
  background-position: left top;
}

.navbar {
  top: 0;
  height: 115px;
  width: 100%;
  background: rgba(217, 217, 217, 0.6509803922);
  position: fixed;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  transition: 0.5s;
  z-index: 20;
  border-bottom: #EA6C2C 3px solid;
  justify-content: center;
}

.logo {
  height: 100%;
  display: flex;
  align-items: center;
  max-width: 200px;
}
@media screen and (min-width: 790px) {
  .logo {
    padding-left: 20px;
  }
}

.logo > img {
  height: 60%;
  width: auto;
  padding: 0 20px;
}

@media screen and (max-width: 430px) {
  .navbarheadings {
    display: none;
  }
}
@media screen and (min-width: 430px) and (max-width: 789px) {
  .navbarheadings {
    display: none;
  }
}
@media screen and (min-width: 790px) {
  .navbarheadings {
    height: 100%;
    padding-right: 20px;
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    color: white;
  }
}

.navbarheadings > a > img {
  height: 30px;
  padding: 0 10px;
}

@media (hover: hover) and (pointer: fine) {
  .navbarheadings > a > img:hover {
    cursor: pointer;
    scale: 1.1;
    transition: scale 0.1s linear;
  }
}

@media screen and (min-width: 790px) {
  .navbarheading {
    padding: 0 20px;
  }
}

@media (hover: hover) and (pointer: fine) {
  .navbarheading:hover {
    cursor: pointer;
    scale: 1.1;
    transition: scale 0.1s linear;
  }
}

@media screen and (max-width: 430px) {
  .navicon {
    height: 100%;
    display: flex;
    align-items: center;
  }
}
@media screen and (min-width: 430px) and (max-width: 789px) {
  .navicon {
    height: 100%;
    display: flex;
    align-items: center;
  }
}
@media screen and (min-width: 790px) {
  .navicon {
    display: none;
  }
}

@media screen and (max-width: 430px) {
  .navicon > img {
    height: 30px;
    width: auto;
    padding: 0 20px 0 0;
  }
}
@media screen and (min-width: 430px) and (max-width: 789px) {
  .navicon > img {
    height: 30px;
    width: auto;
    padding: 0 20px;
  }
}
@media screen and (max-width: 430px) {
  .navicon > a > img {
    height: 30px;
    width: auto;
    padding: 0 20px 0 0;
  }
}
@media screen and (min-width: 430px) and (max-width: 789px) {
  .navicon > a > img {
    height: 30px;
    width: auto;
    padding: 0 20px 0 0;
  }
}
@media (hover: hover) and (pointer: fine) {
  .navicon > a > img:hover, .navicon > img:hover {
    cursor: pointer;
    scale: 1.1;
    transition: scale 0.1s linear;
  }
}

@media screen and (max-width: 430px) {
  .herowrapper {
    margin: 0px 20px;
    width: calc(100% - 40px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    justify-self: center;
    align-items: center;
    box-sizing: border-box;
  }
}
@media screen and (min-width: 430px) and (max-width: 789px) {
  .herowrapper {
    margin: 0px 40px;
    width: calc(100% - 80px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    justify-self: center;
    align-items: center;
    box-sizing: border-box;
  }
}
@media screen and (min-width: 790px) {
  .herowrapper {
    margin: 0px 100px;
    max-width: 1000px;
    width: 80%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    justify-self: center;
  }
}

@media screen and (max-width: 430px) {
  .heroline {
    border: solid 2px #EA6C2C;
    width: 100%;
    margin: 10px 0px;
  }
}
@media screen and (min-width: 430px) and (max-width: 789px) {
  .heroline {
    border: solid 2px #EA6C2C;
    width: 100%;
    margin: 10px 0px;
  }
}
@media screen and (min-width: 790px) {
  .heroline {
    border: solid 2px #EA6C2C;
    width: inherit;
    margin: 10px 0px;
  }
}

@media screen and (max-width: 430px) {
  .strapline {
    text-align: center;
  }
}
@media screen and (min-width: 430px) and (max-width: 789px) {
  .strapline {
    text-align: center;
  }
}
@media screen and (max-width: 430px) {
  .getintouchbutton {
    margin: 20px 0px 10px 0px;
    width: 220px;
    height: 60px;
    background: linear-gradient(to right, #EA6C2C, #e95a12);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    align-content: center;
    border-radius: 30px;
  }
}
@media screen and (min-width: 430px) and (max-width: 789px) {
  .getintouchbutton {
    margin: 20px 0px 10px 0px;
    width: 220px;
    height: 60px;
    background: linear-gradient(to right, #EA6C2C, #e95a12);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    align-content: center;
    border-radius: 30px;
  }
}
@media screen and (min-width: 790px) {
  .getintouchbutton {
    margin: 20px 0px 10px 0px;
    width: 220px;
    height: 60px;
    background: linear-gradient(to right, #EA6C2C, #e95a12);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    align-content: center;
    border-radius: 30px;
  }
}

@media (hover: hover) and (pointer: fine) {
  .getintouchbutton:hover {
    cursor: pointer;
    scale: 1.1;
    transition: scale 0.1s linear;
  }
}

.getintouchbutton > h4 {
  margin: 0;
  display: flex;
  width: 180px;
  justify-content: center;
}

.sheen {
  position: relative;
  overflow: hidden;
}

.sheen:after {
  animation: sheen 5s 5s forwards infinite;
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 200px;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.5) 50%, transparent);
  transform: rotateZ(60deg) translate(-2em, 8em);
}

@keyframes sheen {
  80% {
    transform: rotateZ(60deg) translate(-2em, 8em);
  }
  100% {
    transform: rotateZ(60deg) translate(2em, -8em);
  }
}
/* SECTION 2 STARTS HERE */
@media screen and (max-width: 430px) {
  .section2 {
    width: 100%;
    height: auto;
    background-color: rgb(255, 253, 240);
    padding: 50px 20px 80px 20px;
    box-sizing: border-box;
  }
}
@media screen and (min-width: 430px) and (max-width: 789px) {
  .section2 {
    width: 100%;
    height: auto;
    background-color: rgb(255, 253, 240);
    padding: 50px 40px 80px 40px;
    box-sizing: border-box;
  }
}
@media screen and (min-width: 790px) {
  .section2 {
    width: 100%;
    height: auto;
    background-color: rgb(255, 253, 240);
    padding: 50px 100px 80px 100px;
    box-sizing: border-box;
  }
}
@media screen and (max-width: 430px) {
  .aboutwrapper {
    max-height: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    text-align: center;
    gap: 40px;
    padding-bottom: 40px;
  }
}
@media screen and (min-width: 430px) and (max-width: 789px) {
  .aboutwrapper {
    max-height: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    text-align: center;
    gap: 30px;
    padding-bottom: 40px;
  }
}
@media screen and (min-width: 790px) {
  .aboutwrapper {
    max-height: auto;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    text-align: center;
    gap: 40px;
    padding-bottom: 80px;
  }
}

@media screen and (max-width: 430px) {
  .about {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
}
@media screen and (min-width: 430px) and (max-width: 789px) {
  .about {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
}
@media screen and (min-width: 790px) {
  .about {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: space-evenly;
  }
}
@media screen and (max-width: 789px) {
  .about h2, .about p {
    text-align: center;
  }
}
@media screen and (min-width: 790px) {
  .about h2, .about p {
    text-align: left;
  }
}

@media screen and (max-width: 430px) {
  .aboutimage {
    width: 100%;
    display: flex;
    min-height: 300px;
    max-height: 300px;
    justify-content: center;
    border-radius: 30px;
    overflow: hidden;
    background-image: url("./images/patio.webp");
    background-position: right;
    background-size: cover;
  }
}
@media screen and (min-width: 430px) and (max-width: 789px) {
  .aboutimage {
    width: 100%;
    min-height: 300px;
    max-height: 300px;
    display: flex;
    justify-content: center;
    border-radius: 30px;
    overflow: hidden;
    background-image: url("./images/patio.webp");
    background-position: center;
    background-size: cover;
  }
}
@media screen and (min-width: 790px) {
  .aboutimage {
    width: 50%;
    height: auto;
    background-image: url("./images/patio.webp");
    background-position: center;
    background-size: cover;
    display: flex;
    justify-content: center;
    border-radius: 30px;
    overflow: hidden;
  }
}

@media screen and (max-width: 430px) {
  .aboutimage > img {
    height: auto;
    position: relative;
    display: block;
    object-fit: cover;
    width: 100%;
  }
}
@media screen and (min-width: 430px) and (max-width: 789px) {
  .aboutimage > img {
    height: auto;
    position: relative;
    display: block;
    object-fit: cover;
    width: 100%;
  }
}
@media screen and (min-width: 790px) {
  .aboutimage > img {
    height: auto;
    position: relative;
    display: block;
    object-fit: cover;
    object-position: top;
    width: 100%;
  }
}

/* Services */
@media screen and (min-width: 790px) {
  .services {
    display: none;
  }
}

/* Services box */
#flex-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  min-height: 800px;
  max-height: 850px;
  margin: auto;
  background-color: rgba(255, 255, 255, 0.2784313725);
  -webkit-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  box-sizing: border-box;
  border-radius: 10px;
}
@media (min-width: 789px) {
  #flex-container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    min-height: auto;
    height: 500px;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
  }
}

#left-zone {
  height: auto;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  box-sizing: border-box;
  padding: 20px 0px;
  border-bottom: 1px rgb(210, 210, 210) solid;
}
#left-zone .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  margin: auto;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media (min-width: 789px) {
  #left-zone .list {
    padding: 20px;
  }
}
@media (min-width: 789px) {
  #left-zone {
    width: 35%;
    height: 100%;
  }
}

#right-zone {
  width: 100%;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  height: auto;
}
@media (min-width: 789px) {
  #right-zone {
    height: 100%;
    width: 65%;
    border-left: 1px rgb(210, 210, 210) solid;
    box-sizing: border-box;
  }
}

.item input {
  display: none;
}
.item > label {
  font-size: 1.3rem;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-size: 16px;
  font-weight: 500;
}

.label_testimonial-1, .label_testimonial-2, .label_testimonial-3, .label_testimonial-4, .label_testimonial-5 {
  display: block;
  opacity: 0.5;
  min-height: 50px;
  text-align: center;
  line-height: normal;
  position: relative;
  align-content: center;
  padding: 7px;
  box-sizing: border-box;
}
@media (hover: hover) and (pointer: fine) {
  .label_testimonial-1:hover, .label_testimonial-2:hover, .label_testimonial-3:hover, .label_testimonial-4:hover, .label_testimonial-5:hover {
    cursor: pointer;
    scale: 1.1;
    transition: scale 0.1s linear;
  }
}
.label_testimonial-1:first-letter, .label_testimonial-2:first-letter, .label_testimonial-3:first-letter, .label_testimonial-4:first-letter, .label_testimonial-5:first-letter {
  text-transform: uppercase;
}

input:checked ~ .content-test {
  -webkit-transform: translateY(0%);
  -ms-transform: translateY(0%);
  transform: translateY(0%);
  -webkit-transition: -webkit-transform 1s;
  transition: -webkit-transform 1s;
  -o-transition: transform 1s;
  transition: transform 1s;
  transition: transform 1s, -webkit-transform 1s;
  opacity: 1;
}
input:checked ~ label {
  opacity: 1;
  -webkit-animation: all 1s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  animation: all 1s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  font-weight: 600;
  color: #466653;
  text-decoration: underline #466653;
  cursor: pointer;
  transition: scale 0.1s linear;
}

.content-test {
  position: absolute;
  right: 0;
  bottom: 0;
  opacity: 0;
  -webkit-transform: translateY(100%);
  -ms-transform: translateY(100%);
  transform: translateY(100%);
  height: 62%;
  width: 100%;
  gap: 10px;
  -webkit-transition: 0.5s ease-out;
  -o-transition: 0.5s ease-out;
  transition: 0.5s ease-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  pointer-events: none;
  padding: 0px 20px 20px 20px;
  box-sizing: border-box;
}
@media (min-width: 789px) {
  .content-test {
    justify-content: start;
    gap: 40px;
    padding-top: 20px;
  }
}
@media (max-width: 789px) {
  .content-test {
    justify-content: start;
    gap: 40px;
    padding-top: 20px;
  }
}
.content-test h2:first-letter {
  text-transform: uppercase;
}
@media (min-width: 789px) {
  .content-test h2 {
    font-size: clamp(24px, 4vw, 44px);
    -webkit-line-clamp: 2;
  }
}
@media (max-width: 789px) {
  .content-test h2 {
    font-size: clamp(24px, 6vw, 44px);
    -webkit-line-clamp: 3;
  }
}
@media (min-width: 789px) {
  .content-test {
    width: 65%;
    height: 100%;
    pointer-events: auto;
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
  }
}

.content_testimonial-1 .picto {
  width: 100%;
  height: 150px;
  background-image: url("./images/hard-landscaping.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.content_testimonial-1 h2 {
  color: #466653;
  text-align: center;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.content_testimonial-2 .picto {
  width: 100%;
  height: 150px;
  background-image: url("./images/built-features.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.content_testimonial-2 h2 {
  color: #466653;
  text-align: center;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.content_testimonial-3 .picto {
  width: 100%;
  height: 150px;
  background-image: url("./images/soft-landscaping.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.content_testimonial-3 h2 {
  color: #466653;
  text-align: center;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.content_testimonial-4 .picto {
  width: 100%;
  height: 150px;
  background-image: url("./images/garden-infrastructure.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.content_testimonial-4 h2 {
  color: #466653;
  text-align: center;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.content_testimonial-5 .picto {
  width: 100%;
  height: 150px;
  background-image: url("./images/fencing.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.content_testimonial-5 h2 {
  color: #466653;
  text-align: center;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.service-list {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  width: 100%;
}
.service-list span {
  text-align: center;
  width: 40%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  line-height: 1;
}
.service-list span p {
  text-align: center;
  width: 100%;
}

/* footer */
.footer {
  width: 100vw;
  height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  background-color: #466653;
  align-content: center;
}
.footer .imagecontainer {
  height: 30px;
  margin: 0 auto;
  flex-direction: row;
  display: flex;
  width: 100vw;
  justify-content: center;
  gap: 10px;
  overflow: hidden;
}
.footer img {
  height: 100%;
  width: 30px;
}
@media (hover: hover) and (pointer: fine) {
  .footer img:hover {
    cursor: pointer;
    scale: 1.1;
    transition: scale 0.1s linear;
  }
}
.footer .credit {
  margin: 0 auto;
  color: white;
  text-align: center;
  width: 90vw;
}
.footer .credit span, .footer .credit a {
  max-width: 100%;
  font-size: 12px;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  text-decoration: none;
  color: white;
}

/* Pop out form */
.popoutcontainer {
  display: none;
  /* Hidden by default */
  position: fixed;
  /* Stay in place */
  z-index: 99;
  /* Sit on top */
  left: 0;
  top: 0;
  width: 100%;
  /* Full width */
  height: 100%;
  /* Full height */
  overflow: auto;
  /* Enable scroll if needed */
  background-color: rgb(0, 0, 0);
  /* Fallback color */
  background-color: rgba(0, 0, 0, 0.567);
  /* Black w/ opacity */
  opacity: 0;
  transition-duration: 0.5s;
}
.popoutcontainer .popoutcontent {
  display: block;
  height: -moz-fit-content;
  height: fit-content;
  justify-content: space-between;
  flex-direction: row-reverse;
  background-color: #fefefe;
  margin: auto;
  /* 15% from the top and centered */
  padding: 25px;
  border-radius: 6px;
  width: 80%;
  max-width: 800px;
  /* Could be more or less, depending on screen size */
}
.popoutcontainer .popoutcontent .popoutheader {
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
  vertical-align: middle;
  margin-bottom: 20px;
}
.popoutcontainer .popoutcontent .popoutheader .close {
  color: #aaa;
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  width: auto;
  height: 100%;
  margin: auto 0;
}
@media (hover: hover) and (pointer: fine) {
  .popoutcontainer .popoutcontent .popoutheader .close:hover, .popoutcontainer .popoutcontent .popoutheader .close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
  }
}
.popoutcontainer .popoutcontent .contactform {
  display: block;
  flex-grow: 1;
  position: relative;
  z-index: 99;
}
.popoutcontainer .popoutcontent .contactform .formlabel {
  color: #070707;
  padding-bottom: 5px;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-size: 16px;
  font-weight: 500;
  color: #070707;
}
.popoutcontainer .popoutcontent .contactform #name, .popoutcontainer .popoutcontent .contactform #email, .popoutcontainer .popoutcontent .contactform #query, .popoutcontainer .popoutcontent .contactform #tel {
  background-color: rgb(255, 255, 255);
  border: 0.2px solid rgb(180, 180, 180);
  border-radius: 10px;
  padding: 8px 8px;
  width: 100%;
  box-sizing: border-box;
  display: block;
  resize: vertical;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-size: 16px;
  font-weight: 500;
  color: #070707;
}
.popoutcontainer .popoutcontent .contactform #formbutton {
  background-color: #070707;
  border: 0.2px solid rgb(180, 180, 180);
  width: 120px;
  height: 45px;
  color: white;
  text-align: center;
  border-radius: 4px;
  margin-right: 15px;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-size: 16px;
  font-weight: 500;
}
@media (hover: hover) and (pointer: fine) {
  .popoutcontainer .popoutcontent .contactform #formbutton:hover {
    cursor: pointer;
    scale: 1.1;
    animation: none;
    transition: scale 0.2s linear;
  }
}
.popoutcontainer .popoutcontent .contactform .formsubmitted {
  color: #585858;
  display: none;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-size: 16px;
  font-weight: 500;
  color: #070707;
  padding-top: 30px;
}

/* Get in touch button */
@media screen and (max-width: 430px) {
  .getintouch {
    margin: auto;
    font-family: "Open Sans", sans-serif;
    color: white;
    text-decoration: none;
    display: none;
    position: fixed;
    bottom: 15px;
    right: 15px;
    z-index: 9;
    border-radius: 50%;
    height: 80px;
    width: 80px;
    background: linear-gradient(to right, #EA6C2C, #e95a12);
    transition: all 0.2s ease-in-out;
    text-align: center;
    align-items: center;
    padding: 10px;
    box-shadow: rgba(0, 0, 0, 0.09) 0px 2px 1px, rgba(0, 0, 0, 0.09) 0px 4px 2px, rgba(0, 0, 0, 0.09) 0px 8px 4px, rgba(0, 0, 0, 0.09) 0px 16px 8px, rgba(0, 0, 0, 0.09) 0px 32px 16px;
  }
}
@media screen and (min-width: 430px) and (max-width: 789px) {
  .getintouch {
    margin: auto;
    font-family: "Open Sans", sans-serif;
    color: white;
    text-decoration: none;
    display: none;
    position: fixed;
    bottom: 15px;
    right: 15px;
    z-index: 9;
    border-radius: 50%;
    height: 80px;
    width: 80px;
    background: linear-gradient(to right, #EA6C2C, #e95a12);
    transition: all 0.2s ease-in-out;
    text-align: center;
    align-items: center;
    padding: 10px;
    box-shadow: rgba(0, 0, 0, 0.09) 0px 2px 1px, rgba(0, 0, 0, 0.09) 0px 4px 2px, rgba(0, 0, 0, 0.09) 0px 8px 4px, rgba(0, 0, 0, 0.09) 0px 16px 8px, rgba(0, 0, 0, 0.09) 0px 32px 16px;
  }
}
@media screen and (min-width: 790px) {
  .getintouch {
    display: none;
  }
}
@media (hover: hover) and (pointer: fine) {
  .getintouch:hover {
    cursor: pointer;
    scale: 1.1;
  }
}
.getintouch p {
  display: flex;
  text-align: center;
  margin: 0 auto;
}

/*
    @media screen and (max-width: $small) {
    }
    @media screen and (min-width: $small) and (max-width: $medium) {
    }
    @media screen and (min-width: $large) {
    } 
    @media (hover: hover) and (pointer: fine) {
    }   
*/

/*# sourceMappingURL=styles.css.map */
