/* FONT SIZE SYSTEM (rem)
1 / 1.2 / 1.4 / 1.6 / 1.8 / 2 / 2.4 / 3 / 3.6 / 4.4 / 5.2 / 6.2 / 7.4 / 8.6 / 9.8

SPACING SYSTEM (rem)
0.2 / 0.4 / 0.8 / 1.2 / 1.6 / 2.4 / 3.2 / 4.8 / 6.4 / 8 / 9.6 / 12.8


https://maketintsandshades.com/#78ae3f

font-family: "Bebas Neue", sans-serif;
font-family: "Roboto", sans-serif;

 */

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;

  scroll-behavior: smooth;
}

body {
  font-family: "Roboto", sans-serif;
  line-height: 1;
  font-weight: 400;
  color: #231f20;
  overflow-x: hidden;
}

p,
ul {
  font-size: 1.6rem;
  line-height: 1.5;
  margin-bottom: 3.2rem;
}

/* ************************************** */
/* REUSABLE COMPONENTS */
/* ************************************** */

.container {
  max-width: 130rem;
  padding: 0 3.2rem;
  margin: 0 auto;
}

.grid {
  display: grid;
  row-gap: 3.2rem;
  column-gap: 3.2rem;
}

.grid:not(:last-child) {
  margin-bottom: 9.6rem;
}

.grid--center--v {
  align-items: center;
}

.grid--2--cols {
  grid-template-columns: repeat(2, 1fr);
}

.grid--3--cols {
  grid-template-columns: repeat(3, 1fr);
}

.grid--4--cols {
  grid-template-columns: repeat(4, 1fr);
}
.grid--5--cols {
  grid-template-columns: repeat(5, 1fr);
}

.heading-1 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 6.2rem;
  color: #fff;

  margin-bottom: 2.4rem;
}

.heading-2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 3.6rem;
  color: #78ae3f;

  margin-bottom: 2.4rem;
}

.heading-3 {
  color: #fff;
  font-size: 2rem;
  margin-bottom: 1.6rem;
}

.heading-4 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.8rem;
  margin-bottom: 1.6rem;
  color: #231f20;
}

/* ************************************** */
/* HELPER CLASSES */
/* ************************************** */

.margin-bottom-large {
  margin-bottom: 12.8rem;
}

.margin-bottom-medium {
  margin-bottom: 3rem;
}

.padding-top-large {
  padding-top: 8rem;
}

.centre {
  text-align: center;
}

/* ************************************** */
/* HEADER */
/* ************************************** */

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;

  height: 9.6rem;
  max-width: 130rem;
  margin-top: 3.2rem;

  position: relative;
}

.logo {
  height: 3.2rem;
}

.main-nav-list {
  list-style: none;
  font-family: "Bebas Neue", sans-serif;
  font-size: 3.2rem;

  display: flex;
  align-items: center;
  gap: 3.2rem;
  margin-bottom: 0;
}

.main-nav-link:link,
.main-nav-link:visited {
  display: inline-block;
  text-decoration: none;
  color: #231f20;
  font-weight: 500;
  transition: all 0.3s;
}

.main-nav-link:hover,
.main-nav-link:active {
  color: #78ae3f;
}

.main-nav-link.nav-cta:link,
.main-nav-link.nav-cta:visited {
  padding: 0.8rem 1.2rem;
  border-radius: 8px;
  color: #fff;
  background-color: #78ae3f;
}

.main-nav-link.nav-cta:hover,
.main-nav-link.nav-cta:active {
  background-color: #608b32;
}

.btn {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.4rem;
  padding: 0.8rem 2.4rem;
  text-decoration: none;
  text-align: center;

  color: #78ae3f;
  background-color: #fff;
  border: 2px solid #78ae3f;

  border-radius: 8px 0 8px 0;

  cursor: pointer;
}

/* MOBILE  */

.btn-mobile-nav {
  border: none;
  background: none;
  cursor: pointer;

  display: none;
}

.icon-mobile-nav {
  height: 3rem;
}

.icon-mobile-nav[name="close-icon"] {
  display: none;
}

/* STICKY  */

.sticky {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 8rem;
  background-color: rgba(255, 255, 255, 0.8);
  box-shadow: 0 2 3 rgba(0, 0, 0, 0.2);

  margin-top: 0;
  z-index: 999;
}

/* ************************************** */
/* BACK TO TOP BUTTON */
/* ************************************** */

/* .top {
  text-decoration: none;
  padding: 10px;
  font-family: sans-serif;
  color: #fff;
  background: #000;
  border-radius: 100px;

  position: sticky;
  bottom: 20px;

  --offset: 100px;

  margin-top: calc(100vh + var(--offset));
} */

/* ************************************** */
/* HERO */
/* ************************************** */
.section-hero {
  padding: 4.8rem 0 0 0;
  /* background-image: url("../ClientPreview/img/hero-bg.webp"); */
  background-image: url("../img/hero-bg.webp");
  box-shadow: inset 0 0 50px #231f20;
}

.hero {
  max-width: 130rem;
  margin: 0 auto;
  padding: 0 4.8rem;

  align-items: center;
  gap: 9.6rem;

  display: grid;
  grid-template-columns: 1fr 1fr;
}

.hero-img-box {
  align-self: end;
}

.hero-text-box {
  padding-bottom: 4.8rem;
}

.hero-img {
  height: 100%;
  width: 50rem;
}

.hero-description {
  color: #fff;
  font-size: 1.6rem;
  line-height: 1.5;

  margin-bottom: 3.2rem;
}

.cta-hero {
  font-family: "Bebas Neue", sans-serif;
  font-size: 3.2rem;
  padding: 1.2rem 2.8rem;
  text-decoration: none;

  color: #78ae3f;
  background-color: #fff;
  /* border: 2px solid #78ae3f; */

  border-radius: 8px 0 8px 0;

  cursor: pointer;
}

/* ************************************** */
/* FEATURED CLIENTS */
/* ************************************** */

.section-featured-clients h2 {
  text-align: center;
}

.client-logos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 2.4rem;
  row-gap: 2.4rem;
  justify-items: center;
}

.anglo-center {
  grid-column: 1 / 5;
}

.client-logos img {
  height: 8rem;
}

/* ************************************** */
/* ABOUT US SECTION */
/* ************************************** */

.about-us-section {
  background-color: #78ae3f;
  padding-top: 10rem;
  padding-bottom: 6.4rem;
}

.about-us-section h2,
.about-us-section p {
  color: #fff;
}

.about-gallery {
  column-gap: 2.4rem;
  row-gap: 2.4rem;
}

.about-image-lrg {
  grid-column: 1 / 3;
  justify-self: center;
}

.about-img {
  overflow: hidden;
  width: 100%;

  transition: all 0.4s;
}

.about-img img:hover {
  transform: scale(1.1);
}

/* ************************************** */
/* SERVICE CARDS */
/* ************************************** */

.service-card {
  /* background-color: aqua; */
  padding: 6rem 1.8rem;
  box-shadow: 0 2.4rem 4.8rem rgba(0, 0, 0, 0.1);
  border-radius: 11px;

  display: flex;
  flex-direction: column;
  align-items: center;

  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translatey(-1.2rem);
}

.card-img {
  height: 12rem;
  margin-bottom: 4.8rem;
}

.card-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 3.2rem;
  text-align: center;

  margin-bottom: 1.2rem;
}

.card-description {
  font-size: 1.6rem;
  text-align: center;

  margin-bottom: 4.8rem;
}

.card-text-box {
  display: flex;
  flex-direction: column;
}

.green-bar {
  width: 100%;
  height: 2rem;
  background-image: linear-gradient(to right, #608b32, #78ae3f);

  position: absolute;
  bottom: 0%;
}

.card-btn {
  position: absolute;
  bottom: 4rem;
  left: 2rem;
  right: 2rem;
  /* left: 25%; */
  margin: 0 auto;
}

/* ************************************** */
/* SERVICES */
/* ************************************** */

/* .service-description {
  font-size: 1.6rem;
  line-height: 1.5;

  margin-bottom: 3.2rem;
} */

.service-img {
  width: 100%;
}

.img-hidden2 {
  display: none;
}

.other-services-container {
  background-color: #78ae3f;
  padding: 6.4rem;
  border-radius: 11px;

  /* background-image: url("../ClientPreview/img/other-services-img.webp"); */
  background-image: url("../img/other-services-img.webp");
  background-size: cover;
  background-position: center;

  box-shadow: inset 0 0 50px #231f2059;
}

.other-services-container h2,
.other-services-container p,
.other-services-container ul {
  color: #fff;
}

.other-services-box {
  border: 2px solid #fff;
  border-radius: 11px;
  padding: 2rem;
}

.other-services-grid {
  grid-template-rows: repeat(2, 1fr);
}

.other-services-box li {
  list-style: none;
  font-weight: 700;
}

/* ************************************** */
/* GALLERY */
/* ************************************** */

.section-gallery {
  background-color: #78ae3f;
  padding-bottom: 6.2rem;
}

.section-gallery h2 {
  color: #fff;
  padding-top: 6.2rem;

  margin-bottom: 3.2rem;
}

.gallery-img {
  width: 100%;
  overflow: hidden;

  transition: all 0.4s;
}

.gallery-img img:hover {
  transform: scale(1.1);
}

/* ************************************** */
/* CALL TO ACTION */
/* ************************************** */

.cta-box {
  background-color: #78ae3f;
  border-radius: 11px;
  overflow: hidden;

  box-shadow: 0 2.4rem 2rem rgba(0, 0, 0, 0.15);

  margin-bottom: 8rem;
}

.cta-form-box {
  padding: 3.2rem 3.2rem;
}

.cta-form-box h2 {
  color: #fff;
}

.cta-description {
  font-size: 1.6rem;
  color: #fff;
  margin-bottom: 3.6rem;
}

.cta-img-box {
  /* background-image: linear-gradient(
      45deg,
      hsla(89, 47%, 46%, 0.411),
      hsla(89, 47%, 46%, 0.144)
    ),
    url("../ClientPreview/img/cta-img.webp"); */

  background-image: linear-gradient(
      45deg,
      hsla(89, 47%, 46%, 0.411),
      hsla(89, 47%, 46%, 0.144)
    ),
    url("../img/cta-img.webp");
  background-size: cover;
  background-position: center;
}

.cta-form label {
  display: block;
  font-size: 2.4rem;
  margin-bottom: 0.8rem;

  font-family: "Bebas Neue", sans-serif;
  color: #fff;
}

.cta-form input {
  width: 100%;
  padding: 1.2rem;
  border: none;
  border-radius: 8px;
  margin-bottom: 2.4rem;
}

.cta-btn {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.4rem;
  padding: 0.8rem 2.4rem;
  width: 100%;

  color: #fff;
  background-color: #243413;
  border: none;

  border-radius: 8px 0 8px 0;

  cursor: pointer;
}

/* ************************************** */
/* FOOTER SECTION */
/* ************************************** */

footer {
  border-top: 2px solid #e6e7e8;
}

.footer-wrapper {
  padding-top: 8rem;
}

.footer-logo {
  width: 25rem;
  margin-bottom: 3.2rem;
}

.copy-right {
  font-size: 1.2rem;
  line-height: 2;
}

.footer-fix {
  margin-bottom: 0;
}

.address,
.footer-link:link,
.footer-link:visited {
  font-size: 1.2rem;
  line-height: 2;
  margin-bottom: 0;
  color: #231f20;

  text-decoration: none;
}

.footer-link:hover,
.footer-link:active {
  font-size: 1.2rem;
  line-height: 2;
  color: #608b32;

  text-decoration: none;
}

.social-links {
  list-style: none;
  display: flex;
  flex-direction: row;

  gap: 2rem;
}

.social-icon {
  height: 2.4rem;
  width: 2.4rem;
  fill: #231f20;
}

/* ************************************** */
/* WHATSAPP BUTTON */
/* ************************************** */

.float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #78ae3f;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  /* box-shadow: 3px 3px 5px #00000041; */
  box-shadow: 0px 0px 10px #ffffff;
  z-index: 100;

  transition: all 0.3s;
}

.float:hover {
  transform: scale(1.1);
  box-shadow: 0px 0px 10px #ffffff;
}

.my-float {
  margin-top: 16px;
}
