/* 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; }
    }
*/
.key-elements {
  padding: 80px 0;
}
@media only screen and (max-width: 1500px) and (min-width: 992px) {
  .key-elements {
    padding: 5.333vw 0;
  }
}
@media only screen and (max-width: 767px) {
  .key-elements {
    padding: 40px 0;
  }
}
.key-elements .ln-title {
  text-align: center;
}
.key-elements__detail {
  margin-top: 60px;
}
@media only screen and (max-width: 1500px) and (min-width: 992px) {
  .key-elements__detail {
    margin-top: 4vw;
  }
}
@media only screen and (max-width: 767px) {
  .key-elements__detail {
    margin-top: 40px;
  }
}
.key-elements__detail .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;
}
.key-elements__detail .row .item {
  width: 20%;
}
.key-elements__detail .row .item:not(:nth-child(n+6)) {
  border-bottom: 1px solid #dddddd;
}
.key-elements__detail .row .item:not(:nth-child(5n)) {
  border-right: 1px solid #dddddd;
}
@media only screen and (max-width: 991px) {
  .key-elements__detail .row .item {
    width: 33.3333%;
  }
  .key-elements__detail .row .item:not(:nth-child(n+10)) {
    border-bottom: 1px solid #dddddd;
  }
  .key-elements__detail .row .item:not(:nth-child(3n)) {
    border-right: 1px solid #dddddd;
  }
  .key-elements__detail .row .item:nth-child(3n) {
    border-right: 0;
  }
}
@media only screen and (max-width: 767px) {
  .key-elements__detail .row .item {
    width: 50%;
  }
  .key-elements__detail .row .item:not(:nth-child(n+8)) {
    border-bottom: 1px solid #dddddd;
  }
  .key-elements__detail .row .item:nth-child(n+9) {
    border-bottom: 0;
  }
  .key-elements__detail .row .item:not(:nth-child(2n)) {
    border-right: 1px solid #dddddd;
  }
  .key-elements__detail .row .item:nth-child(2n) {
    border-right: 0;
  }
}
.key-elements__detail .wrap {
  text-align: center;
  padding: 50px 40px;
}
@media only screen and (max-width: 1500px) and (min-width: 992px) {
  .key-elements__detail .wrap {
    padding: 3.333vw 2.667vw;
  }
}
@media only screen and (max-width: 767px) {
  .key-elements__detail .wrap {
    padding: 40px 20px;
  }
}
.key-elements__detail .wrap .media svg {
  width: auto;
  height: 50px;
}
@media only screen and (max-width: 1500px) and (min-width: 992px) {
  .key-elements__detail .wrap .media svg {
    height: 3.333vw;
  }
}
@media only screen and (max-width: 767px) {
  .key-elements__detail .wrap .media svg {
    height: 40px;
  }
}
.key-elements__detail .wrap p {
  line-height: 1.5;
  font-size: 16px;
  margin-top: 10px;
}
@media only screen and (max-width: 1500px) and (min-width: 992px) {
  .key-elements__detail .wrap p {
    font-size: 1.067vw;
    margin-top: 0.667vw;
  }
}