* {
  box-sizing: border-box;
    color: #384C3A;
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
}

body {
  font-family: "Merriweather", serif;
  font-size: 16px;
  line-height: 1.5;
}


.wrapper {
  margin: 0 auto;
  width: 90%;
  max-width: 1120px;
}

@media only screen and (min-width: 43.75em) {
  .wrapper {
    width: 60%;
  }
}


.section {
  padding: 60px 0;
}
.section__title {
  font-size: 24px;
  color: #384C3A;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  margin: 14px 0;
}
.section__intro {
  display: block;
  text-align: center;
  margin: 0 5% 30px;
    font-size: 18px;
}
@media only screen and (min-width: 43.75em) {
  .section__intro {
    margin-left: 15%;
    margin-right: 15%;
  }
}
.ul__intro{
    text-align: justify;
  margin: 0 5% 30px;
    font-size: 18px;
}
    
@media only screen and (min-width: 43.75em) {
  .ul__intro {
    margin-left: 15%;
    margin-right: 15%;
  }
}


.section__info {
    display: block;
  text-align: left;
  margin: 0 5% 30px;
    font-size: 20px;
}

@media only screen and (min-width: 43.75em) {
  .section__info {
    margin-left: 15%;
    margin-right: 15%;
  }
}

.section--cta {
  color: #384C3A;
  background: #f9f9f9;
}

.box {
  display: flex;
  flex: 1 0 100%;
  margin-bottom: 20px;
  background: #f9f9f9;
}
.box__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.box__title {
  font-family: "Montserrat", sans-serif;
}

.box__content {
  color: #384C3A;
  text-align: center;
  padding: 20px;
}
.box__content > i {
  color: #384C3A;
}

@media only screen and (min-width: 43.75em) {
  .box {
    flex: 0 0 30%;
  }
}

.btn {
  font-family: "Montserrat", sans-serif;
  text-align: center;
  display: block;
  margin: 0 auto;
  max-width: 300px;
  padding: 12px 18px;
  border-radius: 100px;
}
.btn2 {
  font-family: "Montserrat", sans-serif;
  text-align: center;
  position: relative;
  margin: 0 auto;
  max-width: 300px;
  padding: 12px 18px;
  border-radius: 100px;
}
.center{
    display: block;
  margin-left: auto;
  margin-right: auto;
}

.btn_red{
    color: #fff;
    background: #C51130;
    border: 2px solid #384C3A;
}
.btn_wht{
    border: 2px solid #384C3A;
    background: #fff;
    border-color: #384C3A;
}
.btn_grn{
    color: #fff;
    background: #006F49;
    border: 2px solid #384C3A;
}
.btn_wht:hover {
  background-image: linear-gradient(to right, #006F49, #fff, #fff, #C51130)
}
.btn_grn:hover {
    color: #384C3A;
  background-image: linear-gradient(to right, #006F49, #fff, #fff, #C51130)
}
.btn_red:hover {
    color: #384C3A;
  background-image: linear-gradient(to right, #006F49, #fff, #fff, #C51130)
}


.sep{
    background-color: #fff;
    padding: 10px;
}

.zoom:hover{
    transform: scale(1.1);
}
.footer {
  text-align: center;
  padding: 10px 0;
  background: #006F49;
}
.footer p {
  opacity: 0.65;
    color: #fff;
}