/* variables for text */
/* Main Color Palet */
/*
Green Dark: #5bbd80, rgb(91 189 128)
Green light: #c0d72f, rgb(192 215 47)

*/
/* variables for bg */
/* variables for fonts */
/* ================================ Global Mixins =========================== */
/*
** Transition use **
    .foo {
        @include transition(all 0.35s ease-in-out);
    }
*/
/*
** Position use **
    .foo {
        @include position(both);
    }
*/
/*
**clearfix use **
    .foo {
        @include clearfix;
    }
*/
/*
** center-auto **
    .foo {
        @include center-auto;
    }
*/
/*
** placeholder use **
    input,
    textarea {
        @include input-placeholder {
            color: $grey;
        }
    }
*/
/*
** pseudo use **
    div::after {
        @include pseudo;
        top: -1rem; left: -1rem;
        width: 1rem; height: 1rem;
    }
*/
/*
** prefix use **
    div {
       @include css3-prefix(transform, scale3d(2.5, 2, 1.5));
    }
}*/
/* Animation use
**
    @include keyframes(fade-out) {
        0% { opacity: 1; }
        90% { opacity: 0; }
    }
*/
.cmr-encorage {
  padding: 80px 0;
}
@media only screen and (max-width: 1500px) and (min-width: 992px) {
  .cmr-encorage {
    padding: 5.33vw 0;
  }
}
@media only screen and (max-width: 767px) {
  .cmr-encorage {
    padding: 40px 0;
  }
}
.cmr-encorage .ln-row {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -20px;
}
@media only screen and (max-width: 1500px) and (min-width: 992px) {
  .cmr-encorage .ln-row {
    margin: 0 -1.333vw;
  }
}
@media only screen and (max-width: 991px) {
  .cmr-encorage .ln-row {
    margin: 0 -15px;
  }
}
.cmr-encorage .ln-row .items {
  width: 25%;
  padding: 0 20px;
}
@media only screen and (max-width: 1500px) and (min-width: 992px) {
  .cmr-encorage .ln-row .items {
    padding: 0 1.333vw;
  }
}
@media only screen and (max-width: 991px) {
  .cmr-encorage .ln-row .items {
    width: 50%;
    padding: 0 15px;
  }
}
@media only screen and (max-width: 767px) {
  .cmr-encorage .ln-row .items {
    width: 100%;
  }
}
@media only screen and (max-width: 991px) {
  .cmr-encorage .ln-row .items:nth-child(n+3) {
    margin-top: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .cmr-encorage .ln-row .items:nth-child(n+2) {
    margin-top: 30px;
  }
}
.cmr-encorage__header {
  text-align: center;
  margin-bottom: 40px;
}
.cmr-encorage__box .icon {
  text-align: center;
}
.cmr-encorage__box .icon svg {
  display: block;
  margin: auto;
  width: 60px;
  height: 60px;
}
@media only screen and (max-width: 1500px) and (min-width: 992px) {
  .cmr-encorage__box .icon svg {
    width: 4vw;
    height: 4vw;
  }
}
.cmr-encorage__box .content {
  text-align: center;
  margin-top: 20px;
}
@media only screen and (max-width: 1500px) and (min-width: 992px) {
  .cmr-encorage__box .content {
    margin-top: 1.333vw;
  }
}
.cmr-encorage__box .content h3 {
  line-height: 1.2;
  font-size: 28px;
}
@media only screen and (max-width: 1500px) and (min-width: 992px) {
  .cmr-encorage__box .content h3 {
    font-size: 1.867vw;
  }
}
@media only screen and (max-width: 767px) {
  .cmr-encorage__box .content h3 {
    font-size: 22px;
  }
}
.cmr-encorage__box .content .ln-dis {
  margin-top: 10px;
}
@media only screen and (max-width: 1500px) and (min-width: 992px) {
  .cmr-encorage__box .content .ln-dis {
    margin-top: 0.667vw;
  }
}