/* Responsive critical: layout/typography rules that affect initial geometry */
:root {
  --rv-primary: #a2c256;
  --rv-black: #000;
  --rv-white: #fff;
}

html,
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  overflow-x: hidden;
  overflow-y: auto;
}

header {
  position: absolute;
  width: 100%;
  z-index: 10;
  min-height: 80px;
  height: 80px;
}

.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
  max-width: 1140px;
}

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

.row > [class*="col-"] {
  padding-right: 15px;
  padding-left: 15px;
}

.col-lg-6 {
  width: 100%;
}

@media (min-width: 992px) {
  .col-lg-6 {
    width: 50%;
  }
}

.align-items-center {
  align-items: center;
}

.d-flex {
  display: flex;
}

.top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 80px;
}

.logo img {
  display: block;
  max-width: 100%;
  height: auto;
}

.hero-section {
  padding-top: 80px;
  padding-bottom: 60px;
  background: var(--rv-primary);
  overflow: hidden;
}

.hero-text h1 {
  font-size: 56px;
  line-height: 66px;
  color: #1f2a0d;
  font-weight: 700;
  margin: 0 0 16px;
}

.hero-text p {
  font-size: 22px;
  line-height: 36px;
  color: #1f2a0d;
  margin: 0;
}

.hero-section .hero-text h1 span {
  color: #1f2a0d;
}

.hero-section .hero-text span {
  color: #2c3a12;
}

.hero-img {
  width: 100%;
  aspect-ratio: 600 / 485;
  min-height: 220px;
}

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

@media (max-width: 1200px) {
  .navbar {
    display: none;
  }

  .top-bar ul {
    display: none;
  }

  .hero-section {
    padding-top: 105px;
  }

  .hero-text h1 {
    font-size: 56px;
    line-height: 66px;
  }
}

@media (max-width: 993px) {
  .top-bar {
    padding: 0 20px;
    height: 75px;
  }

  .hero-section {
    padding-top: 105px;
  }

  .hero-text {
    text-align: center;
  }

  .hero-text {
    padding-bottom: 30px;
  }

  .hero-text h1 {
    padding-bottom: 10px;
  }
}

@media (max-width: 768px) {
  .gap {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .hero-section {
    position: relative;
  }

  .hero-section .container {
    position: relative;
    z-index: 1;
  }
}

@media (max-width: 576px) {
  .top-bar {
    padding: 0 16px;
    height: 70px;
  }

  .logo img {
    width: 150px;
  }

  .gap {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .hero-text h1 {
    font-size: 40px;
    line-height: 50px;
  }

  .hero-text p {
    font-size: 18px;
    line-height: 28px;
  }

  ul.shaps-img {
    display: none;
  }
}

@media (max-width: 500px) {
  .hero-text h1 {
    font-size: 36px;
    line-height: 44px;
  }

  .hero-text p {
    font-size: 18px;
    line-height: 28px;
  }
}

@media (max-width: 450px) {
  .hero-text h1 {
    font-size: 34px;
    line-height: 42px;
  }
}

@media (max-width: 380px) {
  .hero-text h1 {
    font-size: 30px;
    line-height: 38px;
  }
}
