@font-face {
  font-family: "Founders";
  src: url("../fonts/foundersgrotesk-regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 56px;
  background: #609300
}

.header-row {
  height: 56px;
  align-items: center
}

.header-col {
  display: flex;
  align-items: center
}

.header-col--left {
  justify-content: flex-start
}

.header-col--center {
  justify-content: center
}

.header-col--right {
  justify-content: flex-end
}

.burger {
  width: 44px;
  border: 0;
  background: transparent;
  display: grid;
  place-items: center;
  cursor: pointer
}

.burger-line {
  display: block;
  width: 18px;
  height: 2px;
  background: #fff;
  margin: 2px 0;
  border-radius: 2px
}

.brand {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none
}

.brand-logo {
  max-width: 200px;
}

.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .45);
  z-index: 60
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: min(320px, 88vw);
  background: #fff;
  z-index: 70;
  transform: translateX(-110%);
  transition: transform .25s ease;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .25);
  padding: 14px 14px 18px
}

.mobile-menu.is-open {
  transform: translateX(0)
}

.mobile-menu__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 6px 6px 10px;
  border-bottom: 1px solid #e5e7eb
}

.mobile-menu__logo {
  height: 18px
}

.mobile-menu__close {
  width: 40px;
  height: 40px;
  border: 0;
  background: #f3f4f6;
  border-radius: 10px;
  cursor: pointer;
  font-size: 22px;
  line-height: 1
}

.mobile-menu__list {
  list-style: none;
  padding: 12px 6px 0;
  margin: 0;
  display: grid;
  gap: 6px
}

.mobile-menu__list a {
  display: block;
  padding: 12px 10px;
  border-radius: 10px;
  text-decoration: none;
  color: #0f172a;
  font-weight: 600
}

.mobile-menu__list a:hover {
  background: #f3f4f6
}

.hero {
  min-height: 100vh;
  background: linear-gradient(rgba(0,0,0,.5), rgba(0,0,0,.5)), url(../img/1.webp) center center / cover no-repeat;
  padding: 18px 0 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-row {
  justify-content: center;
}

.hero-card__logo img {
  max-width: 200px;
  display: block;
  margin-bottom: 10px
}

.hero-card__title {
  color: #fff;
  margin: 0 0 10px
}

.hero-card__text {
  margin: 0 0 16px;
  color: #fff;
  font-size: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 6px;
  padding: 12px 16px;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .02em;
  text-transform: uppercase
}

.btn-primary {
  background: #fff;
  color: #000;
  border: 1px solid #d1d5db
}

.btn-primary:hover {
  background: #609300;
  border-color: #609300;
}

.hero-media {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
  background: #dbe5e8;
  height: 100%;
  min-height: 280px
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

@media (max-width:991.98px) {
  .hero-media {
    min-height: 220px
  }
}

h1,
h2,
h3, h4, h5 {
  font-family: "Founders", serif;
}

section {
  padding: 70px 0;
}
img{
  max-width: 100%;
}
footer {
  padding: 50px 0;
  background: #000;
  text-align: center;
  color: white;
}

footer a {
  color: white;
}

footer a:hover {
  color: #609300;
  text-decoration: underline;
}

footer ul {
  padding: 0;
}

footer ul li {
  list-style-type: none;
  text-decoration: none;
}

footer ul li a {
  color: white;
}

footer ul li a:hover {
  color: #609300;
}
.logo{
  max-width: 200px;
  margin: 30px 0;
}
section>.container>.row {
  justify-content: center;
}
.banner>.container>.row {
  justify-content: start;
}
.copyright {
  text-align: center;
}

.about, .service_img {
  max-width: 100%;
}
.heading{
  text-align: center;
  margin-bottom: 50px;
}
.banner {
  background: url(../img/9.webp) center center / cover no-repeat;
}
.banner-info{
  color: white;
}
.wrapper {
  padding: 100px 0;
}

.wrapper h1 {
  text-align: center;
}

.wrapper a{
  color: #609300;
}

.card-info{
  height: 100%;
  margin: 20px 0;
}
.card-info img{
  margin: 30px 0;
}
.contact-section {
  padding: 60px 0;
}

.contact-input {
  height: 44px;
  border-radius: 4px;
  border: 1px solid #000;
  box-shadow: none;
}

.contact-input:focus {
  border-color: #000;
  box-shadow: none;
}

.contact-btn {
  background: #609300;
  color: #fff;
  border: 0;
  border-radius: 20px;
  padding: 12px 56px;
  font-weight: 700;
  letter-spacing: .02em;
  text-transform: uppercase;
  min-width: 260px;
}

.contact-btn:hover {
  background: #18814b;
  color: #fff;
}
.link {
  color: #000;
}
.link:hover{
  color:#609300;
}
.custom-form-group {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 10px;
  color: #334155;
}

.custom-form {
  margin-bottom: 15px;
}

.custom-form-group input[type="checkbox"] {
  margin-top: 3px;
}
@media(max-width: 720px) {
  section{
    padding: 30px 0;
  }
}