/* CSS Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  height: 100%;
}

body {
  font-family: "Montserrat", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, main, menu, nav, section {
  display: block;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input, button, textarea, select {
  font: inherit;
  color: inherit;
}

button {
  background: none;
  border: none;
  cursor: pointer;
}

input, textarea {
  border: none;
  outline: none;
}

/* Remove default focus styles */
*:focus {
  outline: none;
}

/* Remove tap highlight on mobile */
* {
  -webkit-tap-highlight-color: transparent;
}

.hero-image {
  height: 100vh;
  background-size: cover;
  background-position: center center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero-image .logo {
  display: table;
  margin: 0 auto;
  position: relative;
  z-index: 9;
}
.hero-image .text {
  text-align: center;
  color: #fff;
  margin-top: 20px;
  font-size: 18px;
  margin-top: 40px;
  padding: 0 20px;
  line-height: 22px;
}
@media (min-width: 992px) {
  .hero-image .text {
    display: table;
    margin: 0 auto;
    width: 600px;
    letter-spacing: 5%;
    margin-top: 110px;
  }
}

.hero-image .iframe {
  display: table;
  margin: 0 auto;
  margin-top: 90px;
}

.content {
  text-align: center;
  padding: 50px 0;
  
}
.content .title {
  font-family: "EB Garamond", serif;
  font-size: 40px;
  color: #2f4523;
  font-weight: 700;
  line-height: 40px;
  margin-bottom: 20px;
}

.widget {
  display: table;
  margin: 0 auto;
}

.section-2 {
  padding: 110px 0;
}
@media (max-width: 992px) {
  .section-2 {
    padding: 40px 0;
  }
}


.section-2 p {
  text-align: center;
  font-size: 22px;
  line-height: 22px;
  letter-spacing: 5%;
  color: #1C5200;
  margin-top: 30px;
  font-style: italic;
  font-weight: 600;
}
@media (min-width: 992px) {
  .section-2 p {
    display: table;
    margin-left: auto;
    margin-right: auto;
    width: 500px;
  }
}
.section-2 .image {
  display: table;
  margin: 0 auto;
  margin-top: 30px;
}
.section-3 {
  background: #000;
  padding: 115px 0;
  position: relative;
  overflow: hidden;
}
@media (max-width: 992px) {
  .section-3 {
    padding: 40px 0;
  }
}
.section-3 .flower1,
.section-3 .flower2 {
  position: absolute;
}
@media (max-width: 1280px) {
  .section-3 .flower1,
  .section-3 .flower2 {
    width: 320px;
  }
}
@media (max-width: 992px) {
  .section-3 .flower1,
  .section-3 .flower2 {
    width: 180px;
  }
}
.section-3 .flower1 {
  left: 0;
  top: 0;
}
.section-3 .flower2 {
  right: 0;
  bottom: 0;
}
.section-3 iframe {
  display: table;
  margin: 0 auto;
}
@media (max-width: 992px) {
  .section-3 .infos {
    margin: 0 auto;
    display: table;
  }
}
.section-3 .infos ul li {
  position: relative;
  font-size: 20px;
  color: #fff;
  line-height: 22px;
  padding-left: 50px;
}
.section-3 .infos ul li + li {
  margin-top: 40px;
}
.section-3 .infos ul li img {
  position: absolute;
  left: 0;
  top: 14px;
  transform: translateY(-50%);
}

.button-menu a {
  font-size: 16px;
  font-weight: bold;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 14px 26px;
  border-radius: 15px;
  transition: all 0.3s ease;
  background: #9abb44;
  color: #fff;
  border: 1px solid #9abb44;
}

.address {
  margin-top: 30px;
  text-align: center;
}
.address ul {
  padding: 0;
}
.address ul li {
  display: inline-block;
  position: relative;
  padding-left: 20px;
  white-space: break-spaces;
}
@media (max-width: 992px) {
  .address ul li.map {
    padding-left: 15px;
  }
}
.address ul li img {
  position: absolute;
  left: 0;
  top: 2px;
}/*# sourceMappingURL=style.css.map */