:root {
  --green: #4cbb73;
  --white: white;
  --black: black;
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.w-backgroundvideo-backgroundvideoplaypausebutton:focus-visible {
  outline-offset: 2px;
  border-radius: 50%;
  outline: 2px solid #3b79c3;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

body {
  color: #333;
  font-family: Plusjakartasans, sans-serif;
  font-size: 16px;
  line-height: 24px;
}

h1 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Merriweather, serif;
  font-size: 44px;
  font-style: italic;
  font-weight: 900;
  line-height: 58px;
}

h2 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Merriweather, serif;
  font-size: 34px;
  font-style: italic;
  font-weight: 900;
  line-height: 46px;
}

h3 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Merriweather, serif;
  font-size: 24px;
  font-style: italic;
  font-weight: 700;
  line-height: 30px;
}

.logo {
  width: 400px;
  margin-bottom: 40px;
}

.hero-content {
  flex-direction: column;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.hero-section {
  background-image: linear-gradient(rgba(238, 238, 238, .34), #fff 55%), url('../images/bg.jpg');
  background-position: 0 0, 0 0;
  background-size: auto, cover;
  padding: 100px 20px;
}

.hero-paragraph {
  margin-bottom: 20px;
  font-size: 24px;
  line-height: 36px;
}

.container {
  z-index: 2;
  width: 100%;
  max-width: 1350px;
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
}

.grid-hero {
  grid-column-gap: 4em;
  grid-row-gap: 4em;
  grid-template-rows: auto;
  grid-template-columns: 1fr .75fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid;
}

.button {
  background-color: #4cbb73;
  border-radius: 12px;
  padding: 20px 24px;
  font-size: 20px;
  font-weight: 700;
}

.button.hero-button {
  background-color: var(--green);
  text-align: center;
  min-width: 300px;
}

.button.black {
  background-color: #000;
}

.button-wrapper {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  margin-top: 40px;
  display: flex;
}

.button-wrapper.center {
  justify-content: center;
  align-items: center;
}

.hero-image {
  z-index: 1;
  border: 9px solid #fff;
  border-radius: 10%;
  width: 100%;
  max-width: 500px;
  height: 500px;
  position: relative;
  box-shadow: 0 2px 40px 20px rgba(0, 0, 0, .08);
}

.section {
  padding-top: 60px;
  padding-bottom: 60px;
  padding-left: 20px;
}

.section.green {
  color: #fff;
  background-color: #358b53;
}

.section.gray {
  background-color: #f5f5f5;
}

.hero-right {
  position: relative;
}

.grid-3-column {
  grid-column-gap: 4em;
  grid-row-gap: 4em;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.section-heading-block {
  text-align: center;
  max-width: 800px;
  margin-bottom: 40px;
  margin-left: auto;
  margin-right: auto;
}

.icon {
  width: 74px;
}

.section-cta {
  background-color: var(--green);
  padding-top: 60px;
  padding-bottom: 60px;
}

.grid-list {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.list-item {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.number {
  background-color: var(--green);
  color: var(--white);
  border-radius: 100%;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  line-height: 16px;
  display: flex;
}

.list-title {
  font-family: Merriweather, serif;
  font-size: 22px;
  font-style: italic;
  font-weight: 700;
}

.contact-block {
  background-color: var(--white);
  text-align: center;
  border-radius: 12px;
  margin-top: 60px;
  padding: 30px;
  font-size: 24px;
  font-weight: 500;
  line-height: 30px;
}

@media screen and (max-width: 991px) {
  .grid-hero {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 38px;
    line-height: 48px;
  }

  h2 {
    font-size: 28px;
    line-height: 36px;
  }

  .button-wrapper {
    flex-flow: column;
  }

  .grid-3-column {
    grid-template-columns: 1fr 1fr;
  }

  .contact-block {
    font-size: 18px;
  }
}

@media screen and (max-width: 479px) {
  h1 {
    font-size: 30px;
    line-height: 40px;
  }

  .hero-paragraph {
    font-size: 18px;
    line-height: 24px;
  }

  .grid-3-column {
    grid-template-columns: 1fr;
  }

  .contact-block {
    font-size: 22px;
  }
}


@font-face {
  font-family: 'Plusjakartasans';
  src: url('../fonts/PlusJakartaSans-ExtraBold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Plusjakartasans';
  src: url('../fonts/PlusJakartaSans-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Plusjakartasans';
  src: url('../fonts/PlusJakartaSans-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Plusjakartasans';
  src: url('../fonts/PlusJakartaSans-ExtraLight.ttf') format('truetype');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Plusjakartasans';
  src: url('../fonts/PlusJakartaSans-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Plusjakartasans';
  src: url('../fonts/PlusJakartaSans-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}