@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
:root {
  --blue:#1D5DB3;
  --green-light:#7CB342;
  --green-dark:#5A9E2F;
  --bg-warm:#F2F2F2;
  --text-dark:#1E293B;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg-warm);
  margin: 1em;
  font-family: "Poppins";
}

.navbar {
  background: white;
  margin: 0;
  padding: -1em;
}
.navbar .logo {
  text-decoration: none;
  font-weight: bold;
  color: var(--blue);
  font-size: 1.2em;
  line-height: 30px;
}
.navbar .logo span {
  color: var(--green-light);
}
.navbar nav {
  display: none;
}
.navbar .container {
  display: flex;
  place-content: space-between;
}
.navbar .mobile-menu {
  cursor: pointer;
}

a {
  color: var(--text-dark);
}

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

section {
  padding: 5em 2em;
}

.hero {
  text-align: center;
}

.left-col .subhead {
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 0.3em;
  color: grey;
}
.left-col h1 {
  font-size: 2.5em;
  line-height: 1.3em;
  margin-top: 0.2em;
}
.left-col .our-services {
  background: var(--blue);
  color: white;
  text-decoration: none;
  padding: 0.6em 1.3em;
  font-size: 1.4em;
  border-radius: 5em;
  font-weight: bold;
  display: inline-block;
}

.hero-img {
  width: 50%;
  margin-top: 3em;
  border-radius: 10px;
}

.services-section {
  background: var(--text-dark);
  color: white;
}

ul.services-list {
  margin: 0;
  padding-left: 0.1em;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(19rem, 1fr));
}
ul.services-list li {
  font-size: 1.1em;
  margin-bottom: 1em;
  margin-left: 2em;
  position: relative;
}
ul.services-list li:before {
  content: "";
  left: -2em;
  position: absolute;
  width: 20px;
  height: 20px;
  background-image: url(..//images/bullet.svg);
  background-size: contain;
  margin-right: 0.5em;
}

.services-section img {
  display: none;
}

.testimonials-section {
  background: var(--blue);
  color: white;
}
.testimonials-section li {
  background: #006BD6;
  text-align: center;
  padding: 2em 1em;
  width: 80%;
  margin: 0 auto 5em auto;
  border-radius: 1em;
}
.testimonials-section img {
  width: 5em;
  height: 5em;
  border: 5px solid #006BD6;
  border-radius: 50%;
  margin-top: -4.5em;
}

h2 {
  font-size: 2em;
}

label {
  display: block;
  font-size: 1.2em;
  margin-bottom: 0.5em;
}

input, textarea {
  width: 100%;
  padding: 0.8em;
  margin-bottom: 1em;
  border-radius: 0.3em;
  border: 1px solid grey;
  box-sizing: border-box;
}

button[type=button] {
  background-color: var(--blue);
  color: white;
  font-weight: bold;
  font-size: 1.3em;
  border: none;
  margin-bottom: 5em;
  border-radius: 5em;
  display: inline-block;
  padding: 0.8em 2em;
  width: unset;
  cursor: pointer;
}

img.google-map {
  width: 100%;
  height: 300px;
}

nav.menu-btn {
  display: block;
}

nav {
  position: fixed;
  z-index: 999;
  width: 66%;
  right: 0;
  top: 0;
  background: var(--text-dark);
  height: 100vh;
  padding: 1em;
}
nav ul.primary-nav {
  margin-top: 6em;
}
nav li a {
  color: white;
  text-decoration: none;
  display: block;
  padding: 0.5em;
  font-size: 1.3em;
  text-align: right;
}
nav li a:hover {
  font-weight: bold;
}

.mobile-menu-exit {
  float: right;
  margin: 0.5em;
  cursor: pointer;
}

@media only screen and (min-width: 768px) {
  .mobile-menu, .mobile-menu-exit {
    display: none;
  }
  .navbar.container {
    display: grid;
    grid-template-columns: 180px auto;
    justify-content: unset;
  }
  .navbar nav {
    display: flex;
    justify-content: space-between;
    background: none;
    position: unset;
    height: auto;
    width: 100%;
    padding: 0;
  }
  .navbar nav ul {
    display: flex;
  }
  .navbar nav a {
    color: var(--text-dark);
    font-size: 1em;
    padding: 0.1em 1em;
  }
  .navbar nav ul.primary-nav {
    margin: 0;
  }
  .navbar nav li.current a {
    font-weight: bold;
  }
  .navbar nav li.services-cta a {
    color: var(--blue);
    border: 2px solid var(--blue);
    font-weight: bold;
    border-radius: 5em;
    margin: 0.1em;
  }
  .navbar nav li.services-cta a:hover {
    background: var(--blue);
    color: white;
  }
}
@media only screen and (min-width: 1080px) {
  .container {
    width: 1080px;
    margin: 0 auto;
  }
  section {
    padding: 10em 4em;
  }
  .hero .container {
    display: flex;
    justify-content: space-between;
    text-align: left;
  }
  .hero .container .left-col {
    margin: 3em 3em 0 5em;
  }
  .hero .container .left-col h1 {
    font-size: 3em;
    width: 90%;
  }
  .hero-img {
    width: 30%;
    margin-right: 8em;
  }
  ul.services-list {
    display: block;
    margin-left: 5em;
  }
  ul.services-list li {
    font-size: 1.4em;
  }
  ul.services-list li:before {
    width: 30px;
    height: 30px;
  }
  .services-section {
    position: relative;
  }
  .services-section:before {
    content: "";
    position: absolute;
    width: 15%;
    height: 8em;
    background: var(--blue);
    left: 0;
    top: -1em;
  }
  .services-section:after {
    content: "";
    position: absolute;
    width: 10%;
    height: 4.5em;
    background: var(--green-light);
    left: 5.5em;
    top: 1em;
  }
  .services-section img {
    display: block;
    position: absolute;
    right: 0;
    width: 350px;
    bottom: -2em;
  }
  .testimonials-section ul {
    display: flex;
  }
  .testimonials-section ul li {
    margin: 0 1em;
  }
  .contact-section {
    position: relative;
  }
  .contact-section .container {
    display: flex;
  }
  .container-right {
    position: absolute;
    right: 0;
    top: 0;
    width: 45%;
    height: 100%;
  }
  .container-right img {
    height: 100%;
  }
}
footer {
  padding: 5px 0 10px;
  border-top: 1px solid var(--text-dark);
  border-bottom: 1px solid var(--text-dark);
}

.foot-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1px;
  margin-bottom: 3px;
}

.logo {
  font-weight: bold;
  color: var(--blue);
  margin-bottom: 10px;
  display: inline-block;
  text-decoration: none;
}
.logo span {
  color: #5A9E2F;
}

.foot-logo p {
  color: var(--bg-warm);
  font-size: 0.92rem;
  max-width: 24ch;
}

.foot-col h5 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dark);
  margin-bottom: 10px;
  font-weight: 700;
}

.foot-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.foot-col a {
  color: var(--text-dark);
  font-size: 0.92rem;
  transition: color 0.2s;
  text-decoration: none;
}

.foot-col a:hover {
  font-weight: bold;
}

.foot-bottom {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-dark);
  flex-wrap: wrap;
  gap: 20px;
  opacity: 0.7;
}

@media (max-width: 820px) {
  .foot-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero::before, .cta-band::before {
    animation: none;
    opacity: 0.7;
  }
  .gallery-grid a:hover img {
    transform: none;
  }
}/*# sourceMappingURL=main.css.map */