:root {
  --smith-red: #ef1122;
  --royal-blue: #1a74e2;
  --neo-bg: #ecf0f3;
  --black: #101010;
  --medium-aquamarine: #7ec4bd;
  --white-smoke: whitesmoke;
  --midnight-blue: #073266;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

body {
  color: #333;
  font-family: Vollkorn, serif;
  font-size: 14px;
  line-height: 20px;
}

h1 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 32px;
  font-weight: 700;
  line-height: 38px;
}

h2 {
  text-align: center;
  text-transform: uppercase;
  margin: 10px 0;
  font-family: Montserrat, sans-serif;
  font-size: 23px;
  font-weight: 400;
  line-height: 36px;
}

h3 {
  text-transform: uppercase;
  margin: 0 0 20px;
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
}

h4 {
  margin: 10px 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
}

h5 {
  margin: 10px 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
}

h6 {
  margin: 10px 0;
  font-size: 12px;
  font-weight: 700;
  line-height: 18px;
}

p {
  margin-top: 0;
  margin-bottom: 5px;
  font-family: Vollkorn, serif;
  font-size: 15px;
  line-height: 22px;
}

.button {
  color: #47474f;
  text-align: center;
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid #47474f;
  border-bottom-width: 2px;
  padding: 15px 33px;
  font-family: Vollkorn, serif;
  font-size: 19px;
  font-style: italic;
  text-decoration: none;
  transition: background-color .3s;
  display: inline-block;
}

.button:hover {
  background-color: #fff;
}

.button.form {
  color: #7ec4bd;
  border-width: 1px 1px 2px;
  border-color: #7ec4bd;
  margin-top: 23px;
  margin-bottom: 24px;
  padding-left: 54px;
  padding-right: 54px;
  font-family: Varela, sans-serif;
  font-style: normal;
}

.button.form:hover {
  background-color: rgba(126, 196, 189, .34);
}

.header {
  color: #fff;
  text-align: left;
  background-image: linear-gradient(rgba(0, 0, 0, .33), rgba(0, 0, 0, .33)), url('../images/Header-Image.png');
  background-position: 0 0, 51%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  background-attachment: scroll, scroll;
  margin-left: auto;
  margin-right: auto;
  padding: 184px 10px 149px;
  display: block;
}

.header.project-page {
  background-image: linear-gradient(rgba(100, 209, 198, .55), rgba(100, 209, 198, .55)), url('../images/lake.jpg');
  padding-top: 77px;
  padding-bottom: 77px;
}

.navbar {
  background-color: #fff;
  width: 100%;
  height: 100px;
  position: fixed;
}

.nav-link {
  color: #404040;
  text-transform: uppercase;
  border-bottom: 2px solid rgba(0, 0, 0, 0);
  margin-left: 34px;
  padding: 0;
  font-family: Montserrat, sans-serif;
  font-size: 12px;
  font-weight: 400;
  transition: border-color .3s;
  transform: translate(0);
}

.nav-link:hover {
  border-bottom-color: #7ec4bd;
}

.logo-title {
  float: left;
  text-transform: uppercase;
  margin-top: 13px;
  font-family: Oswald, sans-serif;
  font-size: 22px;
  font-weight: 400;
}

.logo-img {
  float: left;
  width: 300px;
  margin-right: 18px;
}

.main-heading {
  text-align: left;
  text-transform: uppercase;
  margin-top: -25px;
  padding-top: 0;
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  font-size: 60px;
  font-weight: 500;
  line-height: 55px;
  display: block;
}

.divider {
  background-color: #fff;
  width: 80px;
  height: 2px;
  margin: 30px auto;
  display: block;
}

.divider.grey {
  text-align: left;
  background-color: rgba(0, 0, 0, .09);
  margin-bottom: 43px;
  position: relative;
  top: 0;
}

.divider.black {
  border-bottom: 2px solid var(--smith-red);
}

.main-subtitle {
  color: rgba(226, 221, 221, .81);
  text-align: center;
  font-family: Droid Serif, serif;
  font-size: 18px;
  font-style: italic;
}

.about-section {
  text-align: center;
  background-color: #f6f6f6;
  padding-top: 57px;
  padding-bottom: 57px;
}

.about-text {
  color: #47474f;
  margin-bottom: 40px;
  font-size: 18px;
  line-height: 25px;
}

.x-icon {
  margin-top: -26px;
  margin-bottom: 34px;
}

.section {
  text-align: center;
  background-image: url('../images/Header-BG.jpg'), url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%, 0 0;
  background-repeat: no-repeat, repeat;
  background-size: cover, 125px;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  height: 100%;
  display: block;
  position: relative;
}

.section.grey {
  background-color: #00b8ff;
  background-image: linear-gradient(134deg, #0c89ec, #5fdce0);
  margin-top: 93px;
  margin-bottom: 124px;
  padding-top: 44px;
}

.section.contact {
  background-image: none;
  padding-bottom: 210px;
  font-family: Vollkorn, serif;
}

.section.footer {
  background-color: #d8d8d8;
  background-image: linear-gradient(#fafafa, #fff);
  margin-top: -46px;
  padding-top: 1px;
}

.grey-icon-wrapper {
  background-color: #f5f5f5;
  margin-bottom: 38px;
  padding-top: 50px;
  padding-bottom: 50px;
}

.grey-icon-wrapper.push-top {
  cursor: pointer;
  border-radius: 10px;
  padding-top: 32px;
  padding-bottom: 32px;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, .07);
}

.grey-icon-wrapper.push-top:hover {
  box-shadow: 4px 4px 20px rgba(0, 0, 0, .24);
}

.big-icon {
  text-align: center;
  width: 200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2px;
  display: block;
}

.project-wrapper {
  color: #333;
  text-decoration: none;
  transition: bottom .3s;
  display: block;
  position: relative;
  bottom: 0;
}

.project-wrapper:hover {
  bottom: 8px;
}

.team-image {
  border-radius: 100%;
  margin-bottom: 21px;
}

.role {
  margin-bottom: 16px;
  font-family: Vollkorn, serif;
  font-size: 17px;
  font-style: italic;
}

.social-link {
  background-color: #f5f5f5;
  border-radius: 100%;
  width: 29px;
  height: 29px;
  margin: 3px;
  padding-top: 5px;
  padding-left: 1px;
  transition: box-shadow .3s;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0);
}

.social-link:hover {
  box-shadow: inset 0 0 0 2px #7ec4bd;
}

.team-title {
  margin-bottom: 7px;
}

.testimonial-slider {
  background-color: rgba(0, 0, 0, 0);
  height: auto;
}

.quote-icon {
  float: left;
  text-align: center;
  margin-bottom: 37px;
  padding-top: 17px;
  padding-left: 443px;
}

.arrow {
  color: #e3e3e3;
  width: 40px;
  font-size: 30px;
  transition: color .3s;
}

.arrow:hover {
  color: #333;
}

.testimonial-slide {
  text-align: center;
  width: 50%;
  height: 500px;
  padding: 30px 34px 29px;
}

.testimonial-slide.left-border {
  border-left: 2px solid rgba(0, 0, 0, .04);
}

.mask {
  width: 95%;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.team-row {
  margin-bottom: 20px;
}

.testimonial {
  margin-bottom: 46px;
  padding-top: 6px;
  padding-bottom: 0;
  font-size: 26px;
  line-height: 33px;
  position: absolute;
  top: 54px;
}

.from {
  color: #ababab;
  text-transform: uppercase;
  margin-bottom: 0;
  font-family: Montserrat, sans-serif;
  font-size: 14px;
  font-weight: 400;
  position: absolute;
  top: 232px;
}

.icon-wrapper {
  height: 95px;
  margin-bottom: 10px;
  padding-top: 13px;
}

.icon-wrapper._2 {
  padding-top: 20px;
}

.footer-logo {
  opacity: .4;
  margin-bottom: 15px;
}

.contact-text {
  color: #212121;
  text-align: center;
  font-size: 17px;
}

.link {
  color: #1c1c1c;
}

.social-wrapper {
  text-align: left;
  margin-bottom: 11px;
  margin-left: 33%;
  text-decoration: none;
  transition: opacity .3s;
  display: block;
}

.social-wrapper:hover {
  opacity: .43;
}

.footer-text {
  color: rgba(255, 255, 255, .4);
}

.social-link-text {
  display: inline-block;
}

.social-icon {
  margin-top: -6px;
  margin-right: 9px;
}

.field {
  color: #7ec4bd;
  background-color: rgba(255, 255, 255, .2);
  border: 0 solid #000;
  height: 57px;
  margin-bottom: 0;
  padding-top: 17px;
  padding-bottom: 17px;
  font-size: 18px;
  font-style: italic;
  box-shadow: inset 3px 0 rgba(0, 0, 0, 0);
}

.field:focus {
  box-shadow: inset 3px 0 #7ec4bd;
}

.field.large {
  height: 127px;
}

.field.darker {
  background-color: rgba(255, 255, 255, .18);
  transition: box-shadow .3s;
}

.form-wrapper {
  padding: 28px 20% 21px;
}

.success-message {
  color: #7ec4bd;
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid #7ec4bd;
  border-bottom-width: 2px;
  padding-top: 82px;
  padding-bottom: 82px;
}

.project-info {
  background-color: #fff;
  margin-bottom: 20px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.project-title {
  margin-bottom: 4px;
}

.nav-menu {
  align-items: center;
  height: 100px;
  margin-right: 57px;
  display: flex;
}

.grow-row {
  margin-bottom: 42px;
}

.screenshot {
  margin-bottom: 43px;
}

.face {
  border-radius: 100%;
  margin-bottom: 10px;
  position: absolute;
  top: 240px;
  bottom: -32px;
}

.paragraph {
  text-align: center;
  max-width: 1000px;
  margin-bottom: 0;
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
  text-decoration: none;
}

.paragraph.white {
  color: #fff;
  font-size: 22px;
  line-height: 32px;
}

.paragraph.link {
  text-transform: uppercase;
  margin: 10px auto;
  display: block;
}

.heading, .heading-2, .paragraph-2, .heading-3, .paragraph-3 {
  text-align: center;
}

.button-2 {
  letter-spacing: 5px;
  text-transform: uppercase;
  margin-top: 46px;
  padding-top: 7px;
  padding-bottom: 11px;
  font-family: Verdana, Geneva, sans-serif;
}

.image {
  margin-top: -25px;
  margin-bottom: -25px;
  padding-bottom: 0;
}

.div-block {
  background-image: url('../images/lance-anderson-228670-unsplash.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 216px;
  padding-bottom: 216px;
}

.text-span {
  color: rgba(252, 252, 252, .81);
  text-align: center;
  margin-top: -20px;
  margin-bottom: -18px;
  padding-top: 40px;
  padding-bottom: 3px;
}

.image-2 {
  display: inline-block;
  box-shadow: 0 0 6px #fff;
}

.bold-text {
  float: none;
  opacity: 1;
  text-align: center;
  padding-left: 18px;
  font-size: 55px;
  line-height: 65px;
  display: block;
}

.container {
  opacity: 1;
  perspective: 1072px;
  background-image: linear-gradient(rgba(12, 137, 236, .57), rgba(12, 137, 236, .57));
}

.text-block {
  text-align: left;
  margin-right: 13px;
  padding-top: 0;
  padding-left: 313px;
  padding-right: 47px;
  font-size: 20px;
  position: absolute;
  top: -19px;
  left: 8px;
}

.image-3 {
  width: 800px;
  height: 500px;
  margin-top: -247px;
  padding-top: 0;
}

.container-3 {
  margin-bottom: 10px;
  padding-bottom: 5px;
}

.slide {
  height: 500px;
  margin-bottom: 178px;
  padding-bottom: 0;
  top: -132px;
  bottom: 22px;
}

.right-arrow {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 0 0;
  background-size: 125px;
}

.slide-2 {
  text-align: center;
  background-image: url('../images/electrician-1080563_1920.jpg');
  background-position: 100%;
  background-size: cover;
  height: 1000px;
  max-height: 500px;
}

.heading-4 {
  font-family: Tahoma, Verdana, Segoe, sans-serif;
  position: absolute;
  top: 29px;
  left: 0;
  right: 0;
}

.text-block-2 {
  text-align: center;
  letter-spacing: 3px;
  text-transform: none;
  border-left-style: none;
  font-family: Varela, sans-serif;
  font-size: 30px;
  font-style: italic;
  line-height: 35px;
  text-decoration: none;
  display: flex;
  position: relative;
  top: 172px;
}

.heading-5 {
  font-family: Ubuntu, Helvetica, sans-serif;
  font-size: 50px;
  display: inline;
  position: absolute;
  top: 88px;
  left: 0;
  right: 0;
}

.slider {
  height: 500px;
}

.heading-6 {
  text-align: left;
  letter-spacing: 5px;
  border-bottom: 5px solid #000;
  padding-right: 333px;
  font-family: Impact, Haettenschweiler, Franklin Gothic Bold, Charcoal, sans-serif;
  font-size: 45px;
  line-height: 60px;
  position: relative;
  top: -58px;
  left: -19px;
  right: 163px;
}

.heading-7 {
  color: #f5f5f5;
  letter-spacing: 5px;
  font-family: Impact, Haettenschweiler, Franklin Gothic Bold, Charcoal, sans-serif;
  font-size: 45px;
  position: relative;
  top: -23px;
}

.image-4 {
  position: relative;
  left: 0;
}

.heading-8 {
  color: #f5f5f5;
  letter-spacing: 5px;
  font-family: Impact, Haettenschweiler, Franklin Gothic Bold, Charcoal, sans-serif;
  font-size: 45px;
}

.div-block-2 {
  background-image: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5));
}

.container-4 {
  margin-bottom: -58px;
  padding-bottom: 0;
}

.heading-9 {
  letter-spacing: 5px;
  font-family: Impact, Haettenschweiler, Franklin Gothic Bold, Charcoal, sans-serif;
  font-size: 45px;
  position: relative;
}

.slide-3 {
  background-image: url('../images/electrician-1080563_1920.jpg');
  background-position: 0;
  background-size: cover;
  font-family: Varela, sans-serif;
  font-size: 30px;
}

.mask-2 {
  top: -1px;
}

.text-block-3 {
  direction: ltr;
  text-align: center;
  letter-spacing: 3px;
  text-indent: 3px;
  font-style: italic;
  line-height: 35px;
  text-decoration: none;
  position: relative;
  top: 198px;
}

.button-3 {
  color: #0d13b3;
  text-align: center;
  background-color: #f5f5f5;
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  position: relative;
  bottom: 11px;
  left: 384px;
}

.header-content {
  text-align: center;
  background-color: rgba(0, 0, 0, 0);
  border-radius: 10px;
  max-width: 1250px;
  margin-left: auto;
  margin-right: auto;
  padding: 40px 20px;
  display: block;
}

.heading-10 {
  font-family: Lato, sans-serif;
  font-size: 55px;
  line-height: 65px;
}

.image-5 {
  width: 205px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.navbar-2 {
  border-width: 1px 1px 5px;
  border-color: #efc51b #efc51b var(--smith-red);
  background-color: #101010;
  border-bottom-style: solid;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 10px 31px 0;
  display: block;
  position: relative;
}

.nav-link-new {
  color: #f5f5f5;
  text-transform: uppercase;
  margin-top: 10px;
  margin-bottom: -19px;
  font-family: Lato, sans-serif;
  font-weight: 400;
  text-decoration: none;
}

.nav-link-new:hover, .nav-link-new.w--current {
  color: var(--smith-red);
}

.nav-menu-2 {
  margin-top: 5px;
  display: block;
}

.heading-11 {
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: Montserrat, sans-serif;
  font-size: 55px;
  font-weight: 700;
  line-height: 65px;
}

.text-block-4 {
  letter-spacing: 1px;
  font-family: Montserrat, sans-serif;
  font-size: 18px;
  font-style: italic;
  line-height: 28px;
}

.button-4 {
  background-color: var(--neo-bg);
  color: var(--black);
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 0;
  margin-top: 30px;
  margin-bottom: 30px;
  padding: 15px 30px;
  font-family: Lato, sans-serif;
  font-size: 15px;
  font-weight: 700;
}

.button-4:hover {
  color: var(--smith-red);
  background-color: #131313;
  font-weight: 700;
}

.content-div {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 1250px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 50px;
  display: flex;
}

.about-us {
  background-color: var(--neo-bg);
  padding-top: 100px;
  padding-bottom: 50px;
}

.services {
  padding-top: 50px;
  padding-bottom: 100px;
}

.heading-h2 {
  color: #313131;
  letter-spacing: 1px;
  font-family: Montserrat, sans-serif;
  font-size: 45px;
  font-weight: 700;
  line-height: 55px;
}

.heading-h2.white {
  color: #fff;
  text-align: center;
  text-transform: uppercase;
}

.paragraph-4 {
  font-family: Lato, sans-serif;
  font-size: 18px;
  line-height: 28px;
}

.row-3 {
  margin-top: 40px;
}

.div-block-4 {
  max-width: 1250px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
  display: block;
}

.div-block-5 {
  margin-bottom: 0;
}

.row-4 {
  margin-top: 10px;
  margin-bottom: 10px;
}

.row-5 {
  width: 100%;
  margin-top: 11px;
  margin-bottom: 11px;
}

.heading-12, .paragraph-5, .heading-13, .paragraph-6, .heading-14, .paragraph-7 {
  text-align: center;
}

.testimonials {
  background-image: linear-gradient(rgba(0, 0, 0, .67), rgba(0, 0, 0, .67)), url('../images/Electrician-Working-on-House-169270331-56a4a0fe3df78cf772835262.jpg');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  padding: 100px 50px;
}

.div-block-6 {
  text-align: center;
  max-width: 1250px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.slider-2 {
  background-color: rgba(0, 0, 0, 0);
}

.div-block-7 {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding-left: 100px;
  padding-right: 100px;
  display: flex;
}

.sub-paragraph {
  font-family: Montserrat, sans-serif;
  line-height: 25px;
}

.sub-heading {
  text-transform: uppercase;
  font-family: Lato, sans-serif;
  font-size: 25px;
  line-height: 35px;
}

.services-heading {
  color: #efc51b;
  text-align: center;
  font-family: Montserrat, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
}

.quote-marks {
  color: rgba(255, 255, 255, .63);
  font-family: Passionone, sans-serif;
  font-size: 94px;
  font-weight: 400;
  position: relative;
  top: 37px;
  right: 30px;
}

.quote-marks.closed {
  top: 32px;
  right: -26px;
}

.contact {
  padding-top: 100px;
  padding-bottom: 100px;
}

.image-6 {
  width: 80px;
  margin-bottom: 25px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.heading-15 {
  text-align: center;
  font-size: 18px;
  line-height: 28px;
}

.row-6 {
  width: 100%;
  max-width: 1250px;
  margin-top: 60px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.div-block-8 {
  width: 80%;
  max-width: 1250px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.div-block-9 {
  margin-top: 50px;
  padding-left: 50px;
  padding-right: 50px;
}

.form-label {
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: Lato, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
}

.div-block-10 {
  column-count: 2;
  flex-direction: column;
  justify-content: space-around;
  margin-top: 15px;
  margin-bottom: 15px;
  display: block;
}

.checkbox-field {
  justify-content: flex-start;
  align-items: center;
  margin-top: 10px;
  margin-bottom: 10px;
  display: flex;
}

.checkbox {
  width: 18px;
  height: 18px;
  margin-top: 0;
  margin-right: 20px;
}

.text-field {
  font-family: Lato, sans-serif;
}

.text-field-2, .text-field-3, .textarea {
  border-radius: 5px;
  font-family: Lato, sans-serif;
}

.submit-button {
  letter-spacing: 1px;
  background-color: #efc51b;
  border-radius: 5px;
  width: 100%;
  margin-top: 30px;
  margin-bottom: 30px;
  padding-top: 15px;
  padding-bottom: 15px;
  font-family: Lato, sans-serif;
  font-size: 15px;
}

.submit-button:hover {
  box-shadow: 4px 4px 15px rgba(0, 0, 0, .24);
}

.footer {
  background-color: #1a1a1a;
  padding-top: 40px;
  padding-bottom: 40px;
}

.div-block-11 {
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.image-7 {
  width: 80%;
}

.footer-heading {
  color: #f5f5f5;
  text-transform: uppercase;
  font-family: Lato, sans-serif;
  font-size: 25px;
  font-weight: 400;
}

.footer-divider {
  border-bottom: 2px solid #5d5d5d;
  width: 150px;
  height: 2px;
  margin-top: 15px;
  margin-bottom: 15px;
}

.unordered-list {
  color: #f5f5f5;
  padding-left: 25px;
}

.footer-links {
  color: #fff;
  text-transform: uppercase;
  margin-left: 11px;
  font-family: Lato, sans-serif;
  text-decoration: none;
}

.list-item, .list-item-2, .list-item-3 {
  margin-top: 10px;
  margin-bottom: 10px;
}

.image-8 {
  width: 65%;
  margin-bottom: 30px;
}

.promise-icons {
  width: 120px;
  margin-bottom: 30px;
}

.image-10, .image-11 {
  width: 50%;
  margin-bottom: 30px;
}

.div-block-12 {
  width: 50%;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.image-12 {
  width: 150px;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.text-block-5 {
  color: #f5f5f5;
  text-align: center;
  width: 40%;
  margin-left: auto;
  margin-right: auto;
  font-family: Lato, sans-serif;
  display: block;
}

.link-2 {
  color: #fff;
  text-decoration: none;
}

.text-block-6 {
  font-family: Montserrat, sans-serif;
  font-size: 30px;
  line-height: 45px;
}

.services-divide {
  background-color: var(--neo-bg);
  height: auto;
  padding-top: 100px;
  padding-bottom: 100px;
}

.grid {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  justify-content: space-between;
  width: 100%;
}

.services-block {
  border-radius: 10px;
  height: 400px;
  box-shadow: -3px -3px 8px -4px rgba(0, 0, 0, .22), 4px 4px 8px -2px rgba(0, 0, 0, .3);
}

.neoboxout {
  border-radius: 30px;
  box-shadow: -14px -14px 30px #fff, 14px 14px 30px #d1d9e6;
}

.neoboxout.size200 {
  border: 1px solid var(--smith-red);
  box-shadow: none;
  border-radius: 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px;
  display: flex;
}

.neoboxout.size200.image {
  background-image: url('../images/-_0002_IMG_1198.png');
  background-position: 50%;
  background-size: cover;
  margin-top: 0;
  margin-bottom: 0;
  padding: 0;
}

.neoboxout.size200.image.no-line {
  border-width: 0;
}

.neoboxout.size200.min-size {
  justify-content: flex-start;
  height: auto;
  min-height: 463px;
}

.neoboxout.size200.min-size-small {
  justify-content: flex-start;
  align-items: center;
  min-height: 467px;
}

.image-13 {
  width: 120px;
  margin-bottom: 10px;
}

.services-divide-heading {
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 30px;
  font-family: Montserrat, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  transform: skew(0deg);
}

.services-divide-heading.smaller {
  letter-spacing: 2px;
  font-size: 15px;
}

.services-divide-heading.white {
  color: #fff;
  text-decoration: none;
}

.paragraph-8 {
  font-family: Montserrat, sans-serif;
}

.div-block-13 {
  border-top: 1px solid rgba(0, 0, 0, .2);
  width: 70%;
  height: 1px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.divider-s {
  background-image: linear-gradient(to right, #f7f7f7, rgba(247, 247, 247, 0) 20%, rgba(247, 247, 247, 0) 80%, #f7f7f7), linear-gradient(#f7f7f7, #fff 10%, rgba(243, 243, 243, .75) 20%, #f7f7f7), radial-gradient(circle farthest-side at 50% 0, rgba(85, 85, 85, .5), #f7f7f7);
  height: 20px;
  margin-top: 40px;
  margin-bottom: 60px;
}

.divider-s.soft {
  filter: blur(2px);
  background-image: linear-gradient(to right, var(--neo-bg), rgba(247, 247, 247, 0) 20%, rgba(247, 247, 247, 0) 80%, var(--neo-bg)), linear-gradient(to bottom, var(--neo-bg), #fff 10%, rgba(243, 243, 243, .75) 20%, var(--neo-bg)), radial-gradient(circle farthest-side at 50% 0%, rgba(85, 85, 85, .5), var(--neo-bg));
  width: 40%;
  margin-top: 10px;
  margin-bottom: 31px;
}

.button-m {
  color: #000;
  letter-spacing: 1px;
  text-transform: uppercase;
  background-color: #f7f7f7;
  background-image: radial-gradient(circle farthest-side at 0 0, #f7f7f7, rgba(255, 255, 255, .5));
  border-radius: 10px;
  margin-top: 40px;
  margin-bottom: 20px;
  padding: 10px 30px;
  font-family: Montserrat, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 32px;
  text-decoration: none;
  transition: all .4s cubic-bezier(.215, .61, .355, 1);
  display: none;
  transform: translate(0, 1px);
  box-shadow: -3px -3px 4px #fff, 8px 8px 16px -4px rgba(0, 0, 0, .1);
}

.button-m:hover {
  color: #2b19f5;
  transform: translate(0);
  box-shadow: -6px -6px 8px #fff, 11px 11px 24px rgba(0, 0, 0, .15);
}

.button-m:active {
  background-image: none;
  transform: translate(0, 1px);
  box-shadow: inset -3px -3px 4px #fff, inset 3px 3px 8px -1px rgba(0, 0, 0, .15);
}

.button-m.w--current {
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 700;
  transition: all .3s cubic-bezier(.215, .61, .355, 1);
}

.neoout {
  color: #646464;
  letter-spacing: 1px;
  text-transform: uppercase;
  background-color: #ecf0f3;
  border-radius: 30px;
  margin-left: 20px;
  margin-right: 20px;
  padding: 15px 40px;
  font-family: Montserrat, sans-serif;
  font-size: 15px;
  font-weight: 600;
  box-shadow: -14px -14px 30px #fff, 14px 14px 30px #d1d9e6;
}

.neoout.neoin {
  margin-top: 25px;
  margin-bottom: 10px;
  box-shadow: inset -11px -11px 20px #fff, inset 11px 11px 20px #d1d9e6;
}

.h1-heading {
  letter-spacing: 2px;
  margin-bottom: 10px;
  font-family: Montserrat, sans-serif;
  font-weight: 300;
}

.h1-heading.white {
  color: #fff;
}

.spacer {
  width: 100px;
  height: 20px;
}

.body {
  background-color: var(--neo-bg);
}

.grid-2 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

.image-14, .image-15 {
  border-radius: 15px;
}

.grid-content-div {
  text-align: left;
  padding: 30px;
}

.gallery {
  background-color: rgba(0, 0, 0, 0);
  padding-top: 50px;
  padding-bottom: 50px;
}

.image-16 {
  background-image: url('../images/Solar-House2.png');
  background-position: 0 0;
  background-size: auto;
  width: 300px;
}

.image-17 {
  background-image: url('../images/Solar-House2.png');
  background-position: 50%;
  background-size: auto;
}

.galleries-link {
  flex-direction: row;
  justify-content: center;
  padding: 10px;
  display: flex;
}

.link-block {
  background-image: url('../images/6.png');
  background-position: 50%;
  background-size: cover;
  border-radius: 15px;
  width: 100%;
  max-width: none;
  margin-bottom: 20px;
  margin-left: 20px;
  margin-right: 20px;
  padding-top: 160px;
  padding-bottom: 160px;
  text-decoration: none;
  box-shadow: -14px -14px 30px rgba(0, 0, 0, .03), 14px 14px 30px rgba(0, 0, 0, .2);
}

.link-block.solar {
  background-image: url('../images/-_0001_IMG_1202.png');
  background-position: 50%;
  background-size: cover;
  width: 100%;
  max-width: none;
  box-shadow: 14px 14px 30px rgba(0, 0, 0, .2), -14px -14px 30px rgba(0, 0, 0, .03);
}

.link-block-2 {
  border-radius: 15px;
  width: 450px;
  height: 50px;
  margin-left: 20px;
  padding-top: 120px;
  padding-bottom: 120px;
  text-decoration: none;
}

.link-block-container {
  flex-direction: column;
  align-items: center;
  width: 650px;
  max-width: 40%;
  margin-left: 20px;
  margin-right: 20px;
  display: flex;
  position: relative;
}

.elect-gallery {
  background-color: rgba(0, 0, 0, 0);
  border-radius: 15px;
  flex-direction: column;
  align-items: center;
  width: 85%;
  height: 80%;
  margin-left: auto;
  margin-right: auto;
  padding: 40px 30px;
  display: none;
}

.slider-3 {
  background-color: rgba(221, 221, 221, 0);
  border-radius: 15px;
  width: 80vw;
  height: 70vh;
}

.slide-4 {
  background-image: url('../images/1.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
}

.icon-4, .icon-5 {
  color: var(--black);
}

.slide-5 {
  background-image: url('../images/2.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
}

.slide-6 {
  background-image: url('../images/3.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
}

.slide-7 {
  background-image: url('../images/4.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
}

.slide-8 {
  background-image: url('../images/5.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
}

.slide-9 {
  background-image: url('../images/6.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
}

.gallery-electrical-close {
  color: var(--black);
  text-align: center;
  letter-spacing: 3px;
  margin-top: 12px;
  margin-left: auto;
  margin-right: auto;
  font-family: Montserrat, sans-serif;
  font-weight: 400;
  text-decoration: none;
}

.solar-gallery {
  flex-direction: column;
  width: 85vw;
  height: 80vh;
  margin-left: auto;
  margin-right: auto;
  padding: 40px 30px;
  display: none;
}

.slider-4 {
  background-color: rgba(0, 0, 0, 0);
  width: 85vw;
  height: 70vh;
}

.slide-10 {
  background-image: url('../images/-_0002_IMG_1198.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
}

.slide-11 {
  background-image: url('../images/-_0004_IMG_1372.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
}

.slide-12 {
  background-image: url('../images/-_0000_IMG_1270.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
}

.slide-13 {
  background-image: url('../images/-_0003_IMG_1135.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
}

.slide-14 {
  background-image: url('../images/-_0001_IMG_1202.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
}

.gallery-solar-close {
  color: var(--black);
  margin-left: auto;
  margin-right: auto;
  font-family: Montserrat, sans-serif;
  text-decoration: none;
}

@media screen and (min-width: 1920px) {
  .elect-gallery {
    display: none;
  }

  .gallery-electrical-close {
    font-size: 19px;
  }

  .solar-gallery {
    align-items: center;
    width: 85%;
    height: 80%;
    display: none;
  }

  .slide-10 {
    background-image: url('../images/-_0000_IMG_1270.png');
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: contain;
  }

  .slide-11 {
    background-image: url('../images/-_0005_IMG_1370.png');
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: contain;
  }

  .slide-12 {
    background-image: url('../images/-_0004_IMG_1372.png');
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: contain;
  }

  .slide-13 {
    background-image: url('../images/1_1.png');
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: contain;
  }

  .slide-14 {
    background-image: url('../images/-_0001_IMG_1202.png');
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: contain;
  }

  .slide-15 {
    background-image: url('../images/2_1.png');
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: contain;
  }

  .slide-16 {
    background-image: url('../images/-_0002_IMG_1198.png');
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: contain;
  }

  .slide-17 {
    background-image: url('../images/-_0003_IMG_1135.png');
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: auto;
  }

  .gallery-solar-close {
    color: var(--black);
    text-align: center;
    letter-spacing: 2px;
    margin-top: 12px;
    font-family: Montserrat, sans-serif;
    font-size: 19px;
    text-decoration: none;
  }
}

@media screen and (max-width: 991px) {
  .nav-link {
    margin: 0 auto;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .nav-link:hover {
    border-bottom-color: rgba(0, 0, 0, 0);
  }

  .main-heading {
    font-size: 38px;
    line-height: 44px;
  }

  .project-wrapper:hover {
    transform: translate(0);
  }

  .social-wrapper {
    margin-left: 30%;
  }

  .menu-button {
    margin-top: 7px;
    padding: 10px;
    font-size: 32px;
  }

  .menu-button.w--open {
    color: #7ec4bd;
    background-color: rgba(0, 0, 0, 0);
  }

  .nav-menu {
    background-color: #f5f5f5;
  }

  .nav-link-new {
    text-align: center;
  }

  .nav-link-new:hover {
    background-color: rgba(0, 163, 255, .09);
  }

  .nav-menu-2 {
    background-color: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .25);
  }

  .heading-11 {
    font-size: 45px;
    line-height: 45px;
  }

  .menu-button-2 {
    margin-top: 10px;
  }

  .menu-button-2.w--open {
    background-color: #19c8ff;
  }

  .icon {
    filter: invert();
    font-size: 40px;
  }

  .about-us {
    padding-bottom: 50px;
  }

  .services {
    padding-top: 50px;
  }

  .row-4 {
    flex-direction: column;
    display: block;
  }

  .row-5 {
    flex-direction: row;
    height: auto;
    display: block;
  }

  .promise-icons {
    width: 100px;
  }

  .text-block-6 {
    font-size: 20px;
    line-height: 35px;
  }

  .column-3, .column-4, .column-5, .column-6 {
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .icon-2, .icon-3 {
    font-size: 30px;
  }

  .grid {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    flex-direction: column;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    display: flex;
  }

  .neoboxout.size200.image {
    width: 100%;
    height: 300px;
  }

  .neoboxout.size200.min-size {
    height: auto;
    min-height: 0;
    margin-top: 15px;
    margin-bottom: 15px;
  }

  .neoboxout.size200.min-size-small {
    height: auto;
    min-height: 395px;
    margin-top: 15px;
    margin-bottom: 15px;
  }

  .image-13 {
    width: 100px;
  }

  .services-divide-heading {
    font-size: 18px;
  }

  .paragraph-8 {
    font-size: 13px;
  }

  .button-m {
    display: none;
  }

  .h1-heading {
    font-size: 20px;
  }

  .grid-2 {
    flex-direction: column;
    align-items: center;
    display: flex;
  }

  .galleries-link {
    flex-direction: column;
    display: flex;
  }

  .link-block-container {
    max-width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .header {
    padding-top: 120px;
    padding-bottom: 120px;
  }

  .navbar {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .nav-link {
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 10px;
  }

  .logo-title {
    margin-top: 6px;
  }

  .logo-img {
    width: 50px;
  }

  .about-section {
    padding-bottom: 30px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .x-icon {
    margin-bottom: 21px;
  }

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

  .grey-icon-wrapper {
    margin-bottom: 16px;
    padding: 34px 56px;
    display: inline-block;
  }

  .grey-icon-wrapper.push-top {
    width: 80%;
    margin-top: 30px;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }

  .testimonial-slide {
    width: 100%;
  }

  .testimonial-slide.left-border {
    border-left-width: 0;
  }

  .icon-wrapper {
    height: 85px;
  }

  .icon-wrapper._2 {
    margin-top: 37px;
  }

  .social-wrapper {
    text-align: center;
    margin-left: 0%;
  }

  .form-wrapper {
    padding-left: 10%;
    padding-right: 10%;
  }

  .menu-button {
    margin-top: 0;
  }

  .member {
    padding-bottom: 47px;
  }

  .grow-row {
    margin-bottom: 0;
  }

  .screenshot {
    width: 90%;
  }

  .navbar-2 {
    padding-top: 0;
    padding-bottom: 0;
  }

  .nav-link-new:hover {
    color: var(--royal-blue);
  }

  .nav-menu-2 {
    background-color: #505050;
  }

  .heading-11 {
    font-size: 35px;
  }

  .text-block-4 {
    font-size: 15px;
  }

  .menu-button-2.w--open {
    background-color: var(--royal-blue);
  }

  .heading-12, .paragraph-5 {
    text-align: center;
  }

  .div-block-6 {
    max-width: 1250px;
  }

  .div-block-10 {
    column-count: 1;
    padding-top: 7px;
    padding-bottom: 7px;
  }

  .image-8 {
    width: 50%;
  }

  .promise-icons {
    width: 100px;
  }

  .image-10, .image-11 {
    width: 50%;
  }

  .text-block-6 {
    font-size: 20px;
    line-height: 30px;
  }

  .link-block-container {
    width: 300px;
  }
}

@media screen and (max-width: 479px) {
  .main-heading {
    font-size: 34px;
    line-height: 38px;
  }

  .grey-icon-wrapper {
    display: block;
  }

  .grey-icon-wrapper.push-top {
    margin-bottom: 30px;
    padding-left: 40px;
    padding-right: 40px;
  }

  .big-icon {
    width: 250px;
  }

  .form-wrapper {
    padding-left: 5%;
    padding-right: 5%;
  }

  .paragraph.white {
    font-size: 15px;
  }

  .image-5 {
    width: 152px;
    margin-top: 18px;
    margin-bottom: 15px;
    margin-left: 10px;
  }

  .navbar-2 {
    padding: 10px 0;
  }

  .heading-11 {
    font-size: 35px;
    line-height: 45px;
  }

  .content-div {
    padding-left: 40px;
    padding-right: 40px;
    display: block;
  }

  .services {
    padding-bottom: 50px;
  }

  .heading-h2 {
    font-size: 35px;
  }

  .row-4 {
    margin-bottom: -1px;
  }

  .row-5 {
    margin-top: 1px;
  }

  .testimonials {
    padding-left: 20px;
    padding-right: 20px;
  }

  .slider-2 {
    height: 100%;
  }

  .div-block-7 {
    padding-left: 30px;
    padding-right: 30px;
  }

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

  .quote-marks {
    font-size: 50px;
    top: 18px;
    right: 12px;
  }

  .quote-marks.closed {
    top: 17px;
    right: -12px;
  }

  .div-block-9 {
    padding-left: 0;
    padding-right: 0;
  }

  .form-label.check {
    margin-left: 20px;
  }

  .div-block-10 {
    column-count: 1;
  }

  .checkbox {
    position: absolute;
  }

  .text-block-6 {
    font-size: 15px;
    line-height: 25px;
  }

  .icon-2 {
    margin: 40px 15px 40px 30px;
    font-size: 20px;
  }

  .icon-3 {
    float: right;
    margin: 40px 15px 40px 30px;
    font-size: 20px;
  }

  .brand {
    margin-top: 7px;
    padding-left: 0;
  }

  .left-arrow {
    text-align: center;
    height: 108px;
    top: 266px;
  }

  .right-arrow-2 {
    height: 108px;
    top: 266px;
  }

  .services-divide-heading {
    text-align: center;
  }

  .button-m {
    display: none;
  }

  .grid-2 {
    display: flex;
  }

  .grid-content-div, .galleries-link {
    padding-left: 0;
    padding-right: 0;
  }

  .link-block-container {
    width: auto;
  }
}

#w-node-d7eb7896-7da4-83ad-f062-9e0142e84203-e99597bb {
  grid-area: span 1 / span 1 / span 1 / span 1;
}


@font-face {
  font-family: 'Passionone';
  src: url('../fonts/PassionOne-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: auto;
}
@font-face {
  font-family: 'Passionone';
  src: url('../fonts/PassionOne-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: auto;
}
@font-face {
  font-family: 'Passionone';
  src: url('../fonts/PassionOne-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: auto;
}
@font-face {
  font-family: 'Conthrax sb';
  src: url('../fonts/conthrax-sb.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}