@import url("https://fonts.googleapis.com/css2?family=Bitter:ital,wght@0,100..900;1,100..900&family=Young+Serif&display=swap");
html {
  scroll-behavior: smooth;
}

body {
  background-color: #fff;
  color: #182229;
  font-family: "Bitter", sans-serif;
  margin: 0;
}

div {
  box-sizing: border-box;
}

ul {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4 {
  font-family: "Young Serif", serif;
  font-weight: 500;
  padding: 0;
}

h1 {
  font-size: 60px;
}
@media (max-width: 700px) {
  h1 {
    font-size: 40px;
  }
}

h2 {
  font-size: 40px;
  margin: 0 0 40px 0;
}
@media (max-width: 700px) {
  h2 {
    font-size: 30px;
  }
}

h3 {
  font-size: 25px;
  margin: 0 0 20px 0;
}
@media (max-width: 700px) {
  h3 {
    font-size: 20px;
  }
}

h4 {
  font-size: 20px;
  margin: 0 0 20px 0;
  padding-top: 20px;
}

p {
  margin: 0;
  color: #182229;
  font-family: "Bitter", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  display: block;
  padding: 0 20px;
}

.header {
  padding: 20px;
}

.navbar {
  display: flex;
  align-items: center;
}
.navbar a {
  line-height: 0;
}

.nav {
  list-style: none;
  margin-left: auto;
  display: flex;
  gap: 24px;
  align-items: center;
}
@media (max-width: 760px) {
  .nav {
    display: none;
  }
}
.nav li a {
  font-size: 16px;
  text-decoration: none;
  color: #182229;
}

.banner {
  min-height: 640px;
  background-color: black;
  display: flex;
  align-items: center;
  vertical-align: middle;
  color: #fff;
  background-image: url("background.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 0%;
}
@media (max-width: 700px) {
  .banner {
    min-height: 500px;
  }
}

.banner-container {
  width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.spacing {
  padding: 80px 0;
}

.row {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 40px;
}
.row .block {
  width: 31%;
}
@media (max-width: 1200px) {
  .row .block {
    width: 48%;
  }
}
@media (max-width: 1060px) {
  .row .block {
    width: 100%;
  }
}

.brands .row .site {
  width: 48%;
  display: flex;
  padding: 40px;
  flex-direction: column;
  border: 1px solid #182229;
  background: #fff;
}
@media (max-width: 1060px) {
  .brands .row .site {
    width: 100%;
  }
}
.brands .row div:nth-child(1),
.brands .row div:nth-child(4) {
  background-color: #f6f7f9;
}

.contact {
  border: 1px solid #1d4a1f;
  background: #1d4a1f;
}

.cta {
  width: 100%;
  display: flex;
  flex-direction: column;
  color: #fff;
}
.cta p {
  color: #fff;
  max-width: 1000px;
}

.clients {
  background-color: #f6f7f9;
  text-align: center;
}

.logos {
  display: flex;
  flex-flow: wrap;
  gap: 30px;
  justify-content: center;
}
.logos img {
  max-width: 160px;
  width: 100%;
}

.btn {
  text-decoration: none;
  color: #fff;
  padding: 15px 20px;
  border-radius: 7px;
  background: #182229;
  width: fit-content;
  margin-top: 20px;
}
.btn:hover {
  background: #263641;
}

.btn-green {
  text-decoration: none;
  color: #fff;
  padding: 15px 20px;
  border-radius: 7px;
  background: #297e2a;
  width: fit-content;
  margin-top: 20px;
}
.btn-green:hover {
  background: #226a23;
}

.button-group {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

footer {
  padding: 60px 0;
  background-color: #f6f7f9;
}
footer .top-section {
  display: flex;
  border-bottom: 1px solid rgba(24, 34, 41, 0.16);
  padding-bottom: 30px;
  margin-bottom: 30px;
  align-items: center;
}
footer .bottom-section {
  display: flex;
  align-items: center;
}
@media (max-width: 700px) {
  footer .bottom-section {
    display: block;
  }
}

.footer-copyright {
  font-size: 14px;
  line-height: 24px;
}

.lower-nav {
  font-size: 14px;
  list-style: none;
  margin-left: auto;
  display: flex;
  gap: 20px;
  align-items: center;
}
@media (max-width: 700px) {
  .lower-nav {
    padding-top: 40px;
    width: 100%;
  }
}
