@charset "UTF-8";
/* reset lists */
/* flex - center */
.m-1 {
  margin: 1rem;
}

.my-1 {
  margin: 1rem 0;
}

.mx-1 {
  margin: 0 1rem;
}

.p-1 {
  padding: 1rem;
}

.py-1 {
  padding: 1rem 0;
}

.px-1 {
  padding: 0 1rem;
}

.m-2 {
  margin: 2rem;
}

.my-2 {
  margin: 2rem 0;
}

.mx-2 {
  margin: 0 2rem;
}

.p-2 {
  padding: 2rem;
}

.py-2 {
  padding: 2rem 0;
}

.px-2 {
  padding: 0 2rem;
}

.m-3 {
  margin: 3rem;
}

.my-3 {
  margin: 3rem 0;
}

.mx-3 {
  margin: 0 3rem;
}

.p-3 {
  padding: 3rem;
}

.py-3 {
  padding: 3rem 0;
}

.px-3 {
  padding: 0 3rem;
}

.m-4 {
  margin: 4rem;
}

.my-4 {
  margin: 4rem 0;
}

.mx-4 {
  margin: 0 4rem;
}

.p-4 {
  padding: 4rem;
}

.py-4 {
  padding: 4rem 0;
}

.px-4 {
  padding: 0 4rem;
}

.m-5 {
  margin: 5rem;
}

.my-5 {
  margin: 5rem 0;
}

.mx-5 {
  margin: 0 5rem;
}

.p-5 {
  padding: 5rem;
}

.py-5 {
  padding: 5rem 0;
}

.px-5 {
  padding: 0 5rem;
}

.animateme.fade-in-1 {
  opacity: 0.1;
}
.animateme.fade-in-1.appear {
  opacity: 1;
  transition-duration: 3s;
}

.animateme.fade-in-2 {
  opacity: 0.2;
}
.animateme.fade-in-2.appear {
  opacity: 1;
  transition-duration: 2s;
  transition-delay: 1s;
}

@font-face {
  font-family: "Roboto", sans-serif;
  src: url("../fonts/Roboto-Regular.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: "Glyphicons Halflings";
  src: url("../fonts/glyphicons-halflings-regular.ttf");
}
.glyphicon {
  font-family: "Glyphicons Halflings";
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  margin-right: 5px;
}

:root {
  --primary-col: #669d7d;
  --accent-col: #f6c115;
  --secondary-col: #ffaa00;
  --dark-bg: #2c503b;
  --dark-col: #292b2c;
  --white-col: #ffffff;
  --backdrop: rgba(0, 0, 0, 0.7);
  --ff: Roboto;
  --fs: 62.5%;
  --fs-h1: 4rem;
  --fs-h2: 2rem;
  --fs-h3: 1.5rem;
  --fs-p: 1rem;
  --fw-n: 400;
  --fw-m: 500;
  --fw-b: 700;
  --f-col: var(--dark-col);
  --sec-pad: 70px 0;
  --spacer: 1rem;
  --spacer-md: calc(var(--spacer) * 2);
  --spacer-lg: calc(var(--spacer) * 3);
  --shadow: 0 0 1em rgba(0, 0, 0, 0.25);
  --br: 0.25rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
ul,
ol,
dl,
dd {
  margin: 0;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
  height: auto;
}

nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.btn:focus,
.btn:hover,
a {
  text-decoration: none;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
*::before,
*::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: inherit;
  font-weight: 400;
  line-height: 1.1;
  color: inherit;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

p {
  font-size: 1rem;
}

.home h1 {
  font-size: 3rem;
  font-weight: 500;
  color: red;
}
@media only screen and (max-width: 40em) {
  .home h1 {
    font-size: 2rem;
  }
}

.section h1 {
  padding-bottom: 30px;
}

.ecofriendly h2 {
  color: #ffaa00;
  color: var(--secondary-col);
  font-weight: 500;
}

.service h4 {
  height: 80px;
}

.testimonials h1 {
  color: #ffffff;
  color: var(--white-col);
  margin-top: 3rem;
  padding-bottom: 40px;
}

.contact h4 {
  color: #f6c115;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 3rem;
  scrollbar-color: var(--primary-col) var(--white-col);
}

body {
  font-size: 62.5%;
  font-size: var(--fs);
  font-family: "Roboto";
  font-family: var(--ff);
  font-weight: 400;
  font-weight: var(--fw-n);
  color: var(--dark-col);
  color: var(--f-col);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

.container {
  width: 70%;
  max-width: 100%;
  margin: auto;
}

.row {
  display: flex;
  flex-wrap: wrap;
}

hr {
  margin: 1rem 0;
  border: 0;
  border-top: 1px solid #669d7d;
}

.text-center {
  text-align: center;
}

.hidden {
  display: none;
}

.glyphicon-envelope::before {
  content: "✉";
}

.glyphicon-earphone::before {
  content: "\e182";
}

.glyphicon-road::before {
  content: "\e024";
}

.glyphicon-globe::before {
  content: "\e135";
}

address {
  font-style: normal;
}

.rel {
  position: relative;
}

.ma {
  margin: auto;
}

.w-25 {
  flex: 0 0 25%;
  max-width: 25%;
}
@media only screen and (max-width: 65em) {
  .w-25 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media only screen and (max-width: 40em) {
  .w-25 {
    flex: 0 0 95%;
    max-width: 95%;
    margin: auto;
  }
}

.w-33 {
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
@media only screen and (max-width: 65em) {
  .w-33 {
    flex: 0 0 50%;
    max-width: 50%;
    margin: auto;
  }
}
@media only screen and (max-width: 40em) {
  .w-33 {
    flex: 0 0 95%;
    max-width: 95%;
    margin: auto;
  }
}

.w-45 {
  width: 45%;
}
@media only screen and (max-width: 40em) {
  .w-45 {
    width: 95%;
    margin: auto;
  }
}

.w-50 {
  width: 50%;
}
@media only screen and (max-width: 40em) {
  .w-50 {
    width: 95%;
    margin: auto;
  }
}

.w-80 {
  width: 80%;
}

.mt-20 {
  margin-top: 2rem;
}

.ml-16 {
  margin-left: 16.666667%;
}
@media only screen and (max-width: 40em) {
  .ml-16 {
    margin-left: 0;
  }
}

.ml-33 {
  margin-left: 33.333333%;
}
@media only screen and (max-width: 40em) {
  .ml-33 {
    margin-left: 0;
  }
}

.ml-50 {
  margin-left: 50%;
}
@media only screen and (max-width: 40em) {
  .ml-50 {
    margin-left: 0;
  }
}

.mr-16 {
  margin-right: 16.66667%;
}

.pt-20 {
  padding-top: 2rem;
}

.section1 {
  padding-bottom: 100px;
}

.nav {
  height: 124px;
  padding: 2rem;
}
@media only screen and (max-width: 78em) {
  .nav {
    padding: 1rem;
  }
}
.nav-brand-link {
  display: inline-block;
  margin-left: 2rem;
  width: 100%;
}
.nav-group {
  width: 100%;
}
.nav-list {
  margin: auto;
}
.nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 20px;
  font-weight: 600;
  color: #669d7d;
  color: var(--primary-col);
  padding: 0.5rem;
}
.nav-link.active {
  color: #f6c115;
  color: var(--accent-col);
  background-color: #669d7d;
  background-color: var(--primary-col);
  transition: all ease-in 1s;
}
@media only screen and (max-width: 65em) {
  .nav-toggle {
    position: relative;
    padding: 1.5rem 1.5rem;
    font-size: 1rem;
    background: #669d7d url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(246,193,21, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E") center/2rem no-repeat;
  }
}
.nav-contacts {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
@media only screen and (max-width: 65em) {
  .nav-contacts {
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background-color: #669d7d;
    background-color: var(--primary-col);
  }
}
@media only screen and (max-width: 78em) {
  .nav-contact.btn-lg {
    padding: 0.5rem 0.5rem;
    font-size: 1rem;
  }
}
@media only screen and (max-width: 65em) {
  .nav-contact.btn-lg-a {
    display: block;
  }
}
.nav-contact-a.accent-btn {
  font-size: 1rem;
  color: #000;
}
.nav-contact-details {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
@media only screen and (max-width: 52em) {
  .nav-contact .tel {
    display: none;
  }
}
@media only screen and (min-width: 52em) {
  .nav-contact .tel-mobile {
    display: none;
  }
}
.nav-checkbox {
  display: none;
}

.nav,
.nav-group,
.nav-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (max-width: 65em) {
  .nav,
.nav-group,
.nav-list {
    display: flex;
    align-items: center;
    justify-content: space-around;
  }
}

@media only screen and (max-width: 65em) {
  .nav-group,
.nav-list,
.nav-contact-q {
    display: none;
  }
}

.fixed-top {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--primary-col);
}

#dropdown:checked + .nav-group {
  display: block;
  position: absolute;
  top: 120px;
  left: 0;
  background-color: rgba(0, 0, 0, 0.7);
  background-color: var(--backdrop);
  width: 100%;
  z-index: 9999;
  height: 100vh;
}

#dropdown:checked + .nav-group .nav-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background-color: #669d7d;
  background-color: var(--primary-col);
}
#dropdown:checked + .nav-group .nav-list-item {
  width: 100%;
  padding: 1rem;
  border-bottom: 1px solid var(--dark-col);
}
#dropdown:checked + .nav-group .nav-link {
  color: #ffffff;
  color: var(--white-col);
}
#dropdown:checked + .nav-group .nav-link.active {
  color: #f6c115;
  color: var(--accent-col);
}

.collapse.show {
  display: block;
}

.collapse {
  display: none;
}
@media only screen and (max-width: 65em) {
  .collapse {
    display: block;
  }
}

[role=button],
a,
area,
button,
input,
label,
select,
summary,
textarea {
  touch-action: manipulation;
}

button,
select {
  text-transform: none;
  cursor: pointer;
  font-weight: 400;
  line-height: 1.25;
  text-align: center;
}

.btn-group-lg > .btn,
.btn-lg {
  padding: 0.75rem 1.5rem;
  font-size: 1.25rem;
  border-radius: 0.2rem;
}
@media only screen and (max-width: 25em) {
  .btn-group-lg > .btn,
.btn-lg {
    font-size: 1.1rem;
  }
}

.accent-btn {
  color: #669d7d;
  color: var(--primary-col);
  background-color: #f6c115;
  background-color: var(--accent-col);
}

.primary-btn,
.primary-btn:hover {
  background-color: #669d7d;
  background-color: var(--primary-col);
  color: #f6c115;
  color: var(--accent-col);
  font-weight: 700 !important;
}

.section {
  padding: 70px 0;
  padding: var(--sec-pad);
}

.formWidth {
  width: 100%;
}

label,
output {
  display: inline-block;
}

label {
  touch-action: manipulation;
  margin-bottom: 0.5rem;
  font-size: 1rem;
  font-weight: 400;
  font-weight: var(--fw-n);
}

input,
textarea {
  font-size: 1.1rem;
  font-family: inherit;
  color: inherit;
  padding: 1rem 2rem;
  border-radius: 2px;
  background-color: rgba(102, 157, 125, 0.2);
  border: none;
  border-bottom-color: currentcolor;
  border-bottom-style: none;
  border-bottom-width: medium;
  border-bottom: 3px solid transparent;
  width: 90%;
  display: block;
  transition: all 0.3s;
}
input:focus,
textarea:focus {
  border-bottom: 3px solid #669d7d;
}
input:focus:focus-visible,
textarea:focus:focus-visible {
  outline: currentColor;
}

#Form_Form_Phone {
  width: 100%;
}

#Form_Form_action_submit {
  padding: 0.75rem 1.5rem;
  font-size: 1.25rem;
  border: none;
  border-radius: 0.2rem;
  background-color: #669d7d;
  background-color: var(--primary-col);
  color: #f6c115;
  color: var(--accent-col);
  font-weight: 400 !important;
}

.copyright {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  font-size: initial;
  width: 100%;
}

footer {
  padding: 2rem;
}

body {
  background: url(../images/energy-efficient_modern-house-system-solar-and-heat-pump.jpg) center center no-repeat fixed;
  background-size: cover;
}

.home {
  height: 100vh;
}
.home-button {
  position: absolute;
  top: 17%;
}
@media only screen and (max-width: 40em) {
  .home-button {
    bottom: 1%;
    top: auto;
  }
}
.home-button-left {
  left: 4rem;
}
@media only screen and (max-width: 78em) {
  .home-button-left {
    left: 3rem;
  }
}
@media only screen and (max-width: 65em) {
  .home-button-left {
    left: 0;
  }
}
@media only screen and (max-width: 40em) {
  .home-button-left {
    left: 11%;
  }
}
@media only screen and (max-width: 25em) {
  .home-button-left {
    display: none;
  }
}
.home-button-right {
  left: 17rem;
}
@media only screen and (max-width: 78em) {
  .home-button-right {
    left: 16rem;
  }
}
@media only screen and (max-width: 65em) {
  .home-button-right {
    left: 0;
    top: 12rem;
  }
}
@media only screen and (max-width: 40em) {
  .home-button-right {
    top: auto;
    right: 11%;
    left: auto;
  }
}
@media only screen and (max-width: 25em) {
  .home-button-right {
    left: 50%;
    transform: translateX(-50%);
    right: auto;
  }
}
.home-heading {
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
}
@media only screen and (max-width: 40em) {
  .home-heading {
    bottom: 8%;
  }
}

.about,
.services,
footer,
nav {
  background-color: #ffffff;
  background-color: var(--white-col);
}

.about .lead {
  font-size: 1.25rem;
}

#Services {
  padding-top: 20px;
}

.services img.round {
  width: 120px;
  height: 120px;
  border: 2px solid #f6c115;
  border-radius: 50%;
  padding: 15px;
}
.services .service {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 0 0 25%;
  padding: 0rem 1.5rem;
}
@media only screen and (max-width: 78em) {
  .services .service {
    flex: 0 0 50%;
  }
}
@media only screen and (max-width: 40em) {
  .services .service {
    flex: 0 0 100%;
  }
}
@media only screen and (max-width: 78em) {
  .services .service.fade-in-2 {
    margin-top: 2.5rem;
  }
}
@media only screen and (max-width: 40em) {
  .services .service.mq-min {
    margin-top: 2.5rem;
  }
}
.services .logos {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.testimonials {
  background-color: #2c503b;
  background-color: var(--dark-bg);
}
.testimonials-section {
  width: 80vw;
  margin: auto;
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  margin-top: 5rem;
  gap: 9%;
}
.testimonials .testimonial {
  margin-bottom: 4rem;
}
@media only screen and (min-width: 40em) {
  .testimonials .testimonial-5 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }
  .testimonials .testimonial-5:hover {
    margin-left: -10%;
    width: 130%;
  }
}
.testimonials .blurb,
.testimonials .full-statement {
  display: block;
  padding: 25px 15px 0 15px;
}
.testimonials .blurb .btn {
  color: #f6c115;
  color: var(--accent-col);
}
.testimonials .statement {
  display: none;
}
.testimonials .handwriting {
  font-family: Caveat, cursive;
  font-size: 1.8rem;
}
.testimonials .bubble-l, .testimonials .bubble-m, .testimonials .bubble-r {
  position: relative;
  font-size: 1em;
  font-family: helvetica, tahoma;
  border: 4px solid;
  border-color: #f6c115;
  border-color: var(--accent-col);
  margin: 0 auto;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  text-align: center;
  background: #ffffff;
  background: var(--white-col);
  padding: 0 2rem;
  transition-delay: 2s;
  transition: all 2s ease;
}
.testimonials .bubble-r::before {
  content: " ";
  position: absolute;
  width: 0;
  height: 0;
  left: 10%;
  top: 100%;
  border: 20px solid;
  border-top-color: currentcolor;
  border-right-color: currentcolor;
  border-bottom-color: currentcolor;
  border-left-color: currentcolor;
  border-color: #f6c115 transparent transparent #f6c115;
  border-color: var(--accent-col) transparent transparent var(--accent-col);
}
.testimonials .bubble-l::before {
  content: " ";
  position: absolute;
  width: 0;
  height: 0;
  right: 10%;
  top: 100%;
  border: 20px solid;
  border-top-color: currentcolor;
  border-right-color: currentcolor;
  border-bottom-color: currentcolor;
  border-left-color: currentcolor;
  border-color: #f6c115 #f6c115 transparent transparent;
  border-color: var(--accent-col) var(--accent-col) transparent transparent;
}
.testimonials .bubble-m::before {
  content: " ";
  position: absolute;
  width: 0;
  height: 0;
  left: 50%;
  top: 100%;
  border: 20px solid;
  border-top-color: currentcolor;
  border-right-color: currentcolor;
  border-bottom-color: currentcolor;
  border-left-color: currentcolor;
  border-color: #f6c115 #f6c115 transparent transparent;
}

.contact {
  background-color: #ffffff;
  background-color: var(--white-col);
}

#map {
  height: 400px;
  margin-left: 50px;
}
@media only screen and (max-width: 40em) {
  #map {
    margin-left: auto;
  }
}

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