/*

0 - 600px        phone

600 - 900px      tablet portrait 
900 - 1200px     tablet landscape
1200 - 1800px    i where our normal styles apply  
1800px +         big desktop 


break point argument choices

- phone
- tab-port
- tab-land
-big-desktop

ORDER: Base + typography > layout + grid > page layout > components

1em = 16px

*/
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
  font-size: 63.5%;
}
@media only screen and (max-width: 75em) {
  html {
    font-size: 50%;
  }
}

html, body {
  scroll-behavior: smooth;
}

::-moz-selection {
  background-color: #F2BE22;
  color: white;
}

::selection {
  background-color: #F2BE22;
  color: white;
}

body {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  line-height: 1.7;
  color: #000;
}

[class^=heading-] {
  font-family: "Barlow Condensed", sans-serif;
  color: #0d8b5f;
}

.heading-primary {
  color: white;
  text-transform: uppercase;
  font-size: 8.5rem;
}
@media screen and (max-width: 37.5em) {
  .heading-primary {
    font-size: 6rem;
  }
}

.bold {
  color: #F2BE22;
}

.heading-secondary {
  font-size: 3.5rem;
  text-transform: uppercase;
  font-weight: 700;
  display: inline-block;
  letter-spacing: 0.2rem;
  transition: all 0.2s;
  border-bottom: 4px solid #0d8b5f;
}
@media only screen and (max-width: 50em) {
  .heading-secondary {
    font-size: 3.5rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .heading-secondary {
    font-size: 2.5rem;
  }
}

.heading-secondary-white {
  font-size: 3.5rem;
  text-transform: uppercase;
  font-weight: 700;
  display: inline-block;
  color: white;
  letter-spacing: 0.2rem;
  transition: all 0.2s;
  border-bottom: 4px solid white;
}
@media only screen and (max-width: 50em) {
  .heading-secondary-white {
    font-size: 3.5rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .heading-secondary-white {
    font-size: 2.5rem;
  }
}

.heading-tertiary {
  font-size: 2rem;
  text-transform: uppercase;
  padding-bottom: 1.5rem;
  color: #F2BE22;
}
@media only screen and (max-width: 50em) {
  .heading-tertiary {
    font-size: 2.5rem;
  }
}

.quote {
  font-size: 3.5rem;
  font-weight: 700;
  font-style: italic;
}

.paragraph {
  font-size: 1.7rem;
}
.paragraph:not(:last-child) {
  margin-bottom: 3rem;
}
@media only screen and (max-width: 50em) {
  .paragraph {
    font-size: 1.7rem;
  }
}

.btn {
  background-color: #0d8b5f;
  color: #fff;
  border: 3px solid #0d8b5f;
  border-radius: 5px;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
  font-size: 1.5rem;
  text-transform: uppercase;
  padding: 1.2rem 2.4rem;
  cursor: pointer;
  transition: all 0.2s;
}
.btn:hover {
  background-color: transparent;
  color: white;
  border: 3px solid #0d8b5f;
}

.medium-top-margin {
  margin-top: 2.3rem;
}

.aboutUs {
  padding: 7rem 5rem;
  background-color: white;
  color: #000;
  display: grid;
  grid-template-columns: [full-start] 3rem [content-start] 1fr [content-end] 3rem;
}
@media screen and (max-width: 50em) {
  .aboutUs {
    padding: 7rem 2rem 4rem 2rem;
  }
}

.about {
  grid-column: full-start/content-end;
  display: grid;
  grid-column-gap: 4rem;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, maxcontent);
}
@media screen and (max-width: 37.5em) {
  .about {
    text-align: justify;
    padding: 3rem;
    grid-row-gap: 3rem;
  }
}
.about__heading {
  margin-bottom: 3rem;
  grid-column: 2/3;
}
.about__picture {
  grid-column: 1/2;
  grid-row: 1/-1;
}
@media screen and (max-width: 37.5em) {
  .about__picture {
    grid-row: 2/3;
    grid-column: 1/-1;
    justify-self: center;
  }
}
.about__img {
  width: 95%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 15px;
}
@media screen and (max-width: 50em) {
  .about__img {
    transform: translateX(1rem);
    height: 100%;
  }
}
@media screen and (max-width: 37.5em) {
  .about__img {
    width: 100%;
    height: 70%;
  }
}
.about__content {
  transform: translateY(-2rem);
  grid-column: 2/3;
  align-self: center;
  justify-self: center;
}
@media screen and (max-width: 37.5em) {
  .about__content {
    grid-row: 1/2;
    grid-column: 1/-1;
    justify-self: center;
  }
}

.Quote-before {
  border-top: 3px solid #0d8b5f;
  margin-top: 4rem;
}
@media screen and (max-width: 50em) {
  .Quote-before {
    margin-top: -3.5rem;
  }
}

.Quote-after {
  border-bottom: 3px solid #0d8b5f;
  margin-bottom: 5rem;
}

.Quote-1 {
  margin: 6rem 0;
  padding: 1rem 10rem;
  background-color: white;
  display: grid;
  grid-template-columns: min-content 1fr;
  grid-column-gap: 2rem;
}
.Quote-1__text {
  padding-top: 3rem;
  font-size: 2.3rem;
  text-align: center;
  color: #000;
}
@media screen and (max-width: 50em) {
  .Quote-1__text {
    padding-top: 4rem;
    font-size: 2rem;
  }
}
@media screen and (max-width: 37.5em) {
  .Quote-1__text {
    grid-column: 1/-1;
  }
}
.Quote-1__img {
  height: 13rem;
}
@media screen and (max-width: 50em) {
  .Quote-1__img {
    height: 13rem;
  }
}

.whatWeDo {
  transform: translateY(-1rem);
  background-color: white;
  padding: 3rem;
  display: grid;
  justify-content: center;
}
.whatWeDo__heading {
  color: #0d8b5f;
  border-bottom: 4px solid #0d8b5f;
  grid-column: 1/-1;
  justify-self: center;
}
.whatWeDo__img {
  margin: 7rem;
  padding-left: 3rem;
  height: 54rem;
  width: auto;
  justify-self: center;
}
@media screen and (max-width: 600px) {
  .whatWeDo__img {
    height: 40rem;
  }
}
@media screen and (max-width: 400px) {
  .whatWeDo__img {
    height: 28rem;
  }
}

.whyUs {
  padding: 7rem 0 10rem 0;
  background-image: linear-gradient(to right bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(/recources/img/header1.jpg);
  background-attachment: fixed;
  background-size: cover;
  display: grid;
  grid-gap: 8rem;
}
@media only screen and (max-width: 50em) {
  .whyUs {
    padding: 10rem 0 15rem 0;
  }
}
.whyUs__heading {
  justify-self: center;
  align-self: center;
  color: #F2BE22;
  border-bottom: 4px solid #F2BE22;
}
.whyUs .whyUs-box {
  font-size: 0.9rem;
  padding: 2.5rem;
  text-align: center;
  border-radius: 3px;
  color: white;
  background-color: rgba(13, 139, 95, 0.7);
}
@media only screen and (max-width: 56.25em) {
  .whyUs .whyUs-box {
    padding: 2rem;
  }
}
.whyUs .whyUs-box__icon {
  font-size: 6rem;
  margin-bottom: 0.5rem;
  background-image: linear-gradient(to right, #999, white);
  display: inline-block;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  transition: transform 0.3s;
}
@media only screen and (max-width: 56.25em) {
  .whyUs .whyUs-box__icon {
    margin: 0;
  }
}

.ourProducts {
  display: flex;
  padding: 6rem 4em 13rem 4em;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
}
.ourProducts__heading {
  color: #0d8b5f;
  width: 100%;
  text-align: center;
  margin-bottom: 5rem;
  border-bottom: none;
}

.product {
  perspective: 1000px;
  height: 35vh;
  width: 100%;
  cursor: pointer;
}
@media screen and (max-width: 1000px) {
  .product {
    margin-bottom: 20rem;
  }
}

.card {
  transform-style: preserve-3d;
  height: 130%;
  width: 93%;
  transition: 0.5s ease;
}

.front,
.back {
  height: 100%;
  width: 100%;
  transform-style: preserve-3d;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 0.4em;
  position: absolute;
  top: 0;
  bottom: 0;
  backface-visibility: hidden;
}

.front {
  background: linear-gradient(to right, #28b485, #7ed56f);
}

.front img {
  width: 8em;
}

.content {
  transform: translateZ(60px);
}

.content h3 {
  font-size: 22px;
  margin-top: 1em;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: white;
}

.content p {
  padding: 0 3em;
}

.back {
  background-color: #eee;
  transform: rotateX(180deg);
}

.product:hover .card {
  transform: rotateX(180deg);
}

@media screen and (min-width: 992px) {
  section {
    padding: 0 1em;
  }
  .product {
    flex-basis: 0 0 33.33%;
    max-width: 33.33%;
    padding: 0 1.5em;
  }
}
.whereWeStand {
  padding: 4rem 2rem;
  display: grid;
  grid-template-columns: [full-start] 3rem [content-start] 1fr [content-end] 3rem;
}

.weStand {
  grid-column: content-start/full-end;
  display: grid;
  grid-column-gap: 4rem;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, maxcontent);
}
@media screen and (max-width: 37.5em) {
  .weStand {
    text-align: justify;
    padding: 3rem;
    grid-row-gap: 3rem;
  }
}
.weStand__heading {
  margin-bottom: 3rem;
  grid-column: 1/2;
}
.weStand__picture {
  grid-column: 2/3;
  grid-row: 1/-1;
}
@media screen and (max-width: 37.5em) {
  .weStand__picture {
    grid-row: 2/3;
    grid-column: 1/-1;
    justify-self: center;
  }
}
.weStand__img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 50em) {
  .weStand__img {
    height: 100%;
  }
}
@media screen and (max-width: 37.5em) {
  .weStand__img {
    width: 80%;
    height: 70%;
  }
}
.weStand__content {
  transform: translateY(-2rem);
  grid-column: 1/2;
  align-self: center;
  justify-self: center;
}
@media screen and (max-width: 37.5em) {
  .weStand__content {
    grid-row: 1/2;
    grid-column: 1/-1;
    justify-self: center;
  }
}

.eco-bricks {
  padding: 6rem 6rem 10rem 6rem;
  display: grid;
  grid-row-gap: 4.5rem;
  grid-template-columns: [full-start] 6rem [content-start] 1fr [content-end] 6rem [full-end];
}
@media screen and (max-width: 37.5em) {
  .eco-bricks {
    padding: 3rem 1rem 7rem 1rem;
  }
}
.eco-bricks__heading {
  grid-column: content-start/content-end;
  justify-self: center;
}
.eco-bricks__text {
  grid-column: content-start/content-end;
}

.ourTeam {
  width: 100%;
  padding: 5px 15px 15px 15px;
  margin: 40px auto;
}

.section-title {
  flex: 0 0 100%;
  max-width: 100%;
  margin-bottom: 80px;
  margin-top: 40px;
  text-align: center;
}

.section-title h1 {
  display: inline-block;
  font-size: 35px;
  text-transform: uppercase;
  font-weight: 700;
  color: #0d8b5f;
  margin: 0 0 5px;
  position: relative;
}

.section-title h1::before {
  content: "";
  left: 0;
  position: absolute;
  height: 3px;
  right: 0.1%;
  background-color: #0d8b5f;
  bottom: -5px;
}

.row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.column {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  flex: 0 0 100%;
  max-width: 100%;
}

.team {
  margin-bottom: 30px;
}

.team .team-img {
  position: relative;
  font-size: 0;
  text-align: center;
}

.team .team-img img {
  width: 160px;
  height: auto;
  border-radius: 100%;
  border: 20px solid #f3f4fa;
}

.team .team-content {
  padding: 80px 20px 20px 20px;
  margin-top: -80px;
  text-align: center;
  background: #f3f4fa;
  color: #000;
  border-radius: 10px;
}

.team .team-content h2 {
  font-size: 25px;
  font-weight: 400;
  letter-spacing: 2px;
}

.team .team-content h3 {
  font-size: 16px;
  font-weight: 300;
  color: #0d8b5f;
  font-weight: bold;
  margin-bottom: 1rem;
}

.team .team-content h4 {
  font-size: 1.2rem;
  font-weight: 300;
  letter-spacing: 1px;
  font-style: italic;
  margin-bottom: 0;
}

.team .team-content p {
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  margin-bottom: 1rem;
}

.team .team-social {
  position: absolute;
  width: 100%;
  height: 100%;
  padding: 35px;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.6);
  transition: all 0.3s;
  font-size: 0;
  z-index: 1;
  opacity: 0;
}

.team:hover .team-social {
  opacity: 1;
}

.team .team-social a {
  display: inline-block;
  width: 40px;
  height: 40px;
  margin-right: 5px;
  padding: 11px 0 10px 0;
  font-size: 16px;
  font-weight: 300;
  line-height: 16px;
  text-align: center;
  color: #ffffff;
  border-radius: 10px;
  transition: all 0.3s;
  margin-top: 50px;
}

.team .team-social a.social-tw {
  background: #00acee;
}

.team .team-social a.social-li {
  background: #0e76a8;
}

.team .team-social a.social-yt {
  background: #c4302b;
}

.team .team-social a:last-child {
  margin-right: 0;
}

.team:hover .team-social a {
  margin-top: 0;
}

.team .team-social a:hover {
  background: #222222;
}

/* Mobile Responsive */
@media (min-width: 990px) {
  .ourTeam {
    max-width: 540px;
    padding: 5px 10px 15px 10px;
  }
  .column {
    max-width: 60%;
  }
}
@media (min-width: 992px) {
  .ourTeam {
    max-width: 960px;
  }
  .column {
    max-width: 25%;
  }
}
@media (min-width: 1200px) {
  .ourTeam {
    max-width: 1140px;
  }
}
.Contact {
  padding: 7rem 0 2.5rem 0;
  display: grid;
  grid-gap: 8rem;
}
@media only screen and (max-width: 50em) {
  .Contact {
    padding: 10rem 0 15rem 0;
  }
}
.Contact__heading {
  justify-self: center;
  align-self: center;
}
.Contact__heading-secondary {
  margin-top: 1rem;
}
.Contact__btn {
  border-radius: 50%;
}
.Contact__btn:hover {
  border: transparent;
}
.Contact__btn:hover .Contact__icon {
  color: #0d8b5f;
}
.Contact .Contact-box {
  font-size: 1.5rem;
  padding: 1.6rem;
  text-align: center;
  border-radius: 3px;
  color: #000;
}
@media only screen and (max-width: 56.25em) {
  .Contact .Contact-box {
    padding: 2rem;
  }
}
.Contact .Contact-box__icon {
  font-size: 3rem;
  padding-top: 0.4rem;
  margin-bottom: 0.5rem;
  color: white;
  display: inline-block;
  transition: transform 0.3s;
}
@media only screen and (max-width: 56.25em) {
  .Contact .Contact-box__icon {
    margin: 0;
  }
}
.Contact .Contact-box__icon:hover {
  color: #0d8b5f;
}

.footer {
  z-index: 12;
  padding: 3rem;
  background-attachment: fixed;
  background-image: linear-gradient(to bottom right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.65)), url(/recources/img/header.jpg);
  background-size: cover;
  background-position: center;
  display: grid;
  grid-template-columns: min-content max-content;
  grid-column-gap: 3rem;
  grid-row-gap: 10rem;
  justify-content: space-between;
}
.footer__logo {
  height: 9rem;
}
.footer__heading {
  color: white;
  font-size: 2rem;
}
.footer__nav {
  padding-right: 3rem;
  list-style: none;
}
@media screen and (max-width: 50em) {
  .footer__nav {
    padding-right: 0.6rem;
  }
}
.footer__nav__item {
  display: inline-block;
  margin: 3rem;
}
@media screen and (max-width: 50em) {
  .footer__nav__item {
    display: block;
  }
}
.footer__nav__link {
  font-size: 2rem;
  color: white;
  padding: 0.3rem 0;
  transition: all 0.2s;
}
.footer__copyright {
  grid-column: 1/-1;
  justify-self: center;
  color: white;
  font-size: 1.2rem;
}

.link-1:hover {
  color: #00acee;
}

.link-2:hover {
  color: #c71610;
}

.link-3:hover {
  color: #c13584;
}

.link-4:hover {
  color: #0072b1;
}

.link-5:hover {
  color: #3b5998;
}

@media screen and (max-width: 50em) {
  .link-1,
  .link-2,
  .link-3,
  .link-4,
  .link-5 {
    padding-left: 6rem;
  }
}

.footerContact {
  z-index: 12;
  padding: 3rem;
  background-attachment: fixed;
  background-image: linear-gradient(to bottom right, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.65)), url(/recources/img/contact.jpg);
  background-size: cover;
  background-position: center;
  display: grid;
  grid-template-columns: min-content max-content;
  grid-column-gap: 3rem;
  grid-row-gap: 10rem;
  justify-content: space-between;
}
.footerContact__logo {
  height: 9rem;
}
.footerContact__heading {
  color: white;
  font-size: 2rem;
}
.footerContact__nav {
  padding-right: 3rem;
  list-style: none;
}
@media screen and (max-width: 50em) {
  .footerContact__nav {
    padding-right: 0.6rem;
  }
}
.footerContact__nav__item {
  display: inline-block;
  margin: 3rem;
}
@media screen and (max-width: 50em) {
  .footerContact__nav__item {
    display: block;
  }
}
.footerContact__nav__link {
  font-size: 2rem;
  color: white;
  padding: 0.3rem 0;
  transition: all 0.2s;
}
.footerContact__copyright {
  grid-column: 1/-1;
  justify-self: center;
  color: white;
  font-size: 1.2rem;
}

.link-1:hover {
  color: #00acee;
}

.link-2:hover {
  color: #c71610;
}

.link-3:hover {
  color: #c13584;
}

.link-4:hover {
  color: #0072b1;
}

.link-5:hover {
  color: #3b5998;
}

@media screen and (max-width: 50em) {
  .link-1,
  .link-2,
  .link-3,
  .link-4,
  .link-5 {
    padding-left: 6rem;
  }
}

.footerProduct {
  z-index: 12;
  padding: 3rem;
  background-attachment: fixed;
  background-image: linear-gradient(to bottom right, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.65)), url(/recources/img/header-product.jpeg);
  background-size: cover;
  background-position: center;
  display: grid;
  grid-template-columns: min-content max-content;
  grid-column-gap: 3rem;
  grid-row-gap: 10rem;
  justify-content: space-between;
}
.footerProduct__logo {
  height: 9rem;
}
.footerProduct__heading {
  color: white;
  font-size: 2rem;
}
.footerProduct__nav {
  padding-right: 3rem;
  list-style: none;
}
@media screen and (max-width: 50em) {
  .footerProduct__nav {
    padding-right: 0.6rem;
  }
}
.footerProduct__nav__item {
  display: inline-block;
  margin: 3rem;
}
@media screen and (max-width: 50em) {
  .footerProduct__nav__item {
    display: block;
  }
}
.footerProduct__nav__link {
  font-size: 2rem;
  color: white;
  padding: 0.3rem 0;
  transition: all 0.2s;
}
.footerProduct__copyright {
  grid-column: 1/-1;
  justify-self: center;
  color: white;
  font-size: 1.2rem;
}

.link-1:hover {
  color: #00acee;
}

.link-2:hover {
  color: #c71610;
}

.link-3:hover {
  color: #c13584;
}

.link-4:hover {
  color: #0072b1;
}

.link-5:hover {
  color: #3b5998;
}

@media screen and (max-width: 50em) {
  .link-1,
  .link-2,
  .link-3,
  .link-4,
  .link-5 {
    padding-left: 6rem;
  }
}

.row {
  max-width: 114rem;
  margin: 0 auto;
}
@media only screen and (max-width: 56.25em) {
  .row {
    max-width: 50rem;
    padding: 0 3rem;
  }
}
.row:not(:last-child) {
  margin-bottom: 8rem;
}
@media only screen and (max-width: 56.25em) {
  .row:not(:last-child) {
    margin-bottom: 6rem;
  }
}
.row::after {
  content: "";
  float: both;
  display: table;
}
.row [class^=col-] {
  float: left;
}
.row [class^=col-]:not(:last-child) {
  margin-right: 6rem;
}
@media only screen and (max-width: 56.25em) {
  .row [class^=col-]:not(:last-child) {
    margin-right: 0;
    margin-bottom: 6rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .row [class^=col-] {
    width: 100% !important;
  }
}
.row .col-1-of-2 {
  width: calc((100% - 6rem) / 2);
}
.row .col-1-of-3 {
  width: calc((100% - 2 * 6rem) / 3);
}
.row .col-2-of-3 {
  width: calc(2 * (100% - 2 * 6rem) / 3 + 6rem);
}
.row .col-1-of-4 {
  width: calc((100% - 3 * 6rem) / 4);
}
.row .col-2-of-4 {
  width: calc(2 * (100% - 3 * 6rem) / 4 + 6rem);
}
.row .col-3-of-4 {
  width: calc(3 * (100% - 3 * 6rem) / 4 + 2 * 6rem);
}

.header {
  display: grid;
  grid-template-rows: 13rem 1fr;
  background-attachment: fixed;
  background-image: linear-gradient(to bottom right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.65)), url(/recources/img/header.jpg);
  background-size: cover;
  background-position: center;
}
.header__head {
  padding-top: 38rem;
  justify-self: center;
  display: grid;
  justify-content: center;
  align-content: center;
}
.header__text {
  display: grid;
  color: white;
}
@media screen and (max-width: 62.5em) {
  .header__text {
    transform: translateY(33rem);
  }
}
@media screen and (max-width: 50em) {
  .header__text {
    transform: translateY(28rem);
  }
}
@media screen and (max-width: 450px) {
  .header__text {
    transform: translateY(25rem);
  }
}
.header__heading {
  justify-self: center;
}
.header__btn {
  align-self: center;
  justify-self: center;
}
.header__para {
  font-family: "Merriweather", serif;
  font-style: italic;
  align-self: center;
  justify-self: center;
  word-spacing: 0.5rem;
  font-size: 2rem;
}
@media screen and (max-width: 300px) {
  .header__para {
    font-size: 1.5rem;
  }
}
.header__link {
  align-self: center;
  justify-self: center;
}

.whats_btn {
  z-index: 10;
  position: fixed;
  top: 85%;
  left: 93.5%;
  font-size: 4rem;
  color: #25d366;
}
@media screen and (max-width: 800px) {
  .whats_btn {
    left: 90%;
  }
}
@media screen and (max-width: 500px) {
  .whats_btn {
    left: 85%;
  }
}
@media screen and (max-width: 500px) {
  .whats_btn {
    display: none;
    left: 40%;
  }
}

.header-product {
  display: grid;
  grid-template-rows: 13rem 1fr;
  background-attachment: fixed;
  background-image: linear-gradient(to bottom right, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.65)), url(/recources/img/header-product.jpeg);
  background-size: cover;
  background-position: center;
}
.header-product__head {
  padding-top: 38rem;
  justify-self: center;
  display: grid;
  justify-content: center;
  align-content: center;
}
.header-product__text {
  display: grid;
  color: white;
}
@media screen and (max-width: 62.5em) {
  .header-product__text {
    transform: translateY(33rem);
  }
}
@media screen and (max-width: 50em) {
  .header-product__text {
    transform: translateY(28rem);
  }
}
@media screen and (max-width: 450px) {
  .header-product__text {
    transform: translateY(25rem);
  }
}
.header-product__heading {
  justify-self: center;
}
.header-product__btn {
  align-self: center;
  justify-self: center;
}
.header-product__para {
  font-family: "Merriweather", serif;
  font-style: italic;
  align-self: center;
  justify-self: center;
  word-spacing: 0.5rem;
  font-size: 2rem;
}
@media screen and (max-width: 300px) {
  .header-product__para {
    font-size: 1.5rem;
  }
}
.header-product__link {
  align-self: center;
  justify-self: center;
}

.whats_btn {
  z-index: 10;
  position: fixed;
  top: 85%;
  left: 93.5%;
  font-size: 4rem;
  color: #25d366;
}
@media screen and (max-width: 800px) {
  .whats_btn {
    left: 90%;
  }
}
@media screen and (max-width: 500px) {
  .whats_btn {
    left: 85%;
  }
}
@media screen and (max-width: 500px) {
  .whats_btn {
    display: none;
    left: 40%;
  }
}

.header-contact {
  display: grid;
  grid-template-rows: 13rem 1fr;
  background-attachment: fixed;
  background-image: linear-gradient(to bottom right, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.65)), url(/recources/img/contact.jpg);
  background-size: cover;
  background-position: center;
}
.header-contact__head {
  padding-top: 38rem;
  justify-self: center;
  display: grid;
  justify-content: center;
  align-content: center;
}
.header-contact__text {
  display: grid;
  color: white;
}
@media screen and (max-width: 62.5em) {
  .header-contact__text {
    transform: translateY(33rem);
  }
}
@media screen and (max-width: 50em) {
  .header-contact__text {
    transform: translateY(28rem);
  }
}
@media screen and (max-width: 450px) {
  .header-contact__text {
    transform: translateY(25rem);
  }
}
.header-contact__heading {
  justify-self: center;
}
.header-contact__btn {
  align-self: center;
  justify-self: center;
}
.header-contact__para {
  font-family: "Merriweather", serif;
  font-style: italic;
  align-self: center;
  justify-self: center;
  word-spacing: 0.5rem;
  font-size: 2rem;
}
@media screen and (max-width: 300px) {
  .header-contact__para {
    font-size: 1.5rem;
  }
}
.header-contact__link {
  align-self: center;
  justify-self: center;
}

.whats_btn {
  z-index: 10;
  position: fixed;
  top: 85%;
  left: 93.5%;
  font-size: 4rem;
  color: #25d366;
}
@media screen and (max-width: 800px) {
  .whats_btn {
    left: 90%;
  }
}
@media screen and (max-width: 500px) {
  .whats_btn {
    left: 85%;
  }
}
@media screen and (max-width: 500px) {
  .whats_btn {
    display: none;
    left: 40%;
  }
}

nav {
  height: 16vh;
  width: 100%;
  display: flex;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.7);
  position: fixed;
}

.logo {
  padding: 2.5vh 3vw;
  text-align: left;
  width: 20vw;
}

.logo img {
  height: auto;
  width: 8.5rem;
}

.nav-links {
  width: 80vw;
  overflow: hidden;
  display: flex;
  padding: 0 0.7vw;
  justify-content: space-evenly;
  align-items: center;
  text-transform: uppercase;
  list-style: none;
}

.nav-links li a {
  text-transform: uppercase;
  font-size: 1.5rem;
  text-decoration: none;
  color: #000;
  padding: 0.3rem 0;
  transition: all 0.1s;
  word-spacing: 0.35rem;
}

.nav-links li a:hover {
  color: #0d8b5f;
  border-bottom: 1.5px solid #0d8b5f;
}

.nav-links li {
  position: relative;
}

.nav-links li a:hover::before {
  width: 80%;
}

.main-link {
  color: #0d8b5f;
  border-bottom: 1.5px solid #0d8b5f;
}

.hamburger div {
  width: 30px;
  height: 2px;
  background: #f2f5f7;
  margin: 5px;
  transition: all 0.1s ease;
}

.hamburger {
  display: none;
}

@media screen and (max-width: 50em) {
  nav {
    position: fixed;
    z-index: 3;
    background-color: transparent;
    width: 98%;
  }
  .hamburger {
    display: block;
    position: absolute;
    cursor: pointer;
    right: 5%;
    top: 50%;
    transform: translate(-5%, -60%);
    z-index: 2;
    transition: all 0.7s ease;
  }
  .nav-links {
    background: #0d8b5f;
    position: fixed;
    opacity: 1;
    height: 100vh;
    flex-direction: column;
    clip-path: circle(50px at 90% -20%);
    -webkit-clip-path: circle(50px at 90% -10%);
    transition: all 1s ease-out;
    pointer-events: none;
  }
  .nav-links.open {
    clip-path: circle(1000px at 90% -10%);
    -webkit-clip-path: circle(1000px at 90% -10%);
    pointer-events: all;
  }
  .nav-links li {
    opacity: 0;
    color: white;
  }
  .nav-links li a:hover {
    color: #F2BE22;
    border-bottom: 1.5px solid #F2BE22;
  }
  .nav-links li:nth-child(1) {
    transition: all 0.5s ease 0.2s;
  }
  .nav-links li:nth-child(2) {
    transition: all 0.5s ease 0.4s;
  }
  .nav-links li:nth-child(3) {
    transition: all 0.5s ease 0.6s;
  }
  .nav-links li:nth-child(4) {
    transition: all 0.5s ease 0.7s;
  }
  .nav-links li:nth-child(5) {
    transition: all 0.5s ease 0.8s;
  }
  .nav-links li:nth-child(6) {
    transition: all 0.5s ease 0.9s;
    margin: 0;
  }
  .nav-links li:nth-child(7) {
    transition: all 0.5s ease 1s;
    margin: 0;
  }
  .nav-links li a {
    font-size: 1.8rem;
  }
  li.fade {
    opacity: 1;
  }
  .toggle .bars1 {
    transform: rotate(-45deg) translate(-5px, 6px);
  }
  .toggle .bars2 {
    transition: all 0s ease;
    width: 0;
  }
  .toggle .bars3 {
    transform: rotate(45deg) translate(-5px, -6px);
  }
}
.container {
  display: grid;
  grid-template-rows: 100vh repeat(7, min-content);
  grid-template-columns: [full-start] minmax(6rem, 1fr) [center-start] repeat(8, [col-start] minmax(min-content, 14rem) [col-end]) [center-end] minmax(6rem, 1fr) [full-end];
  background-color: white;
}

.header,
.header-product,
.header-contact {
  grid-column: full-start/full-end;
}

.aboutUs {
  grid-column: full-start/full-end;
}
@media screen and (max-width: 50em) {
  .aboutUs {
    height: 80vh;
  }
}
@media screen and (max-width: 37.5em) {
  .aboutUs {
    height: 100%;
  }
}

.Quote-before,
.Quote-after {
  grid-column: col-start 2/col-end 7;
}

.Quote-1 {
  grid-column: full-start/full-end;
}

.whatWeDo {
  grid-column: 1/-1;
}

.eco-bricks {
  grid-column: full-start/full-end;
}

.whyUs {
  grid-column: 1/-1;
}

.Quote-2 {
  grid-column: full-start/full-end;
}

.ourProducts {
  grid-column: center-start/center-end;
}

.whereWeStand {
  grid-column: full-start/full-end;
}
@media screen and (max-width: 50em) {
  .whereWeStand {
    height: 80vh;
  }
}
@media screen and (max-width: 37.5em) {
  .whereWeStand {
    height: 100%;
  }
}

.Contact {
  grid-column: full-start/ful-end;
}

.ourTeam {
  grid-column: full-start/full-end;
}

.footer,
.footerContact,
.footerProduct {
  grid-column: full-start/full-end;
}/*# sourceMappingURL=main.css.map */