/* 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; }
    }
*/
.thinker {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}
@media only screen and (max-width: 1500px) and (min-width: 992px) {
  .thinker {
    padding: 5.33vw 0;
  }
}
@media only screen and (max-width: 767px) {
  .thinker {
    padding: 40px 0;
  }
}
.thinker__header {
  width: 100%;
  margin: auto;
  text-align: center;
  max-width: 1000px;
  margin-bottom: 40px;
}
@media only screen and (max-width: 1500px) and (min-width: 992px) {
  .thinker__header {
    max-width: 66.667vw;
    margin-bottom: 2.667vw;
  }
}
@media only screen and (max-width: 767px) {
  .thinker__header {
    margin-bottom: 22px;
  }
}
.thinker__header .ln-dis {
  margin-top: 20px;
}
@media only screen and (max-width: 1500px) and (min-width: 992px) {
  .thinker__header .ln-dis {
    margin-top: 1.333vw;
  }
}
@media only screen and (max-width: 767px) {
  .thinker__header .ln-dis {
    margin-top: 10px;
  }
}
.thinker__header .ln-dis p:not(:first-child) {
  margin-top: 15px;
}
@media only screen and (max-width: 1500px) and (min-width: 992px) {
  .thinker__header .ln-dis p:not(:first-child) {
    margin-top: 1vw;
  }
}
.thinker .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 -5px;
}
@media only screen and (max-width: 1500px) and (min-width: 992px) {
  .thinker .ln-row {
    margin: 0 -0.333vw;
  }
}
.thinker .ln-row .items {
  padding: 0 5px;
}
@media only screen and (max-width: 1500px) and (min-width: 992px) {
  .thinker .ln-row .items {
    padding: 0 0.333vw;
  }
}
.thinker .ln-row .items.ln-sm {
  width: 100%;
  max-width: 16.67%;
}
@media only screen and (max-width: 991px) {
  .thinker .ln-row .items.ln-sm {
    max-width: 33.3333%;
  }
}
@media only screen and (max-width: 767px) {
  .thinker .ln-row .items.ln-sm {
    max-width: 100%;
  }
}
.thinker .ln-row .items.ln-lg {
  width: 100%;
  max-width: 33.3%;
}
@media only screen and (max-width: 991px) {
  .thinker .ln-row .items.ln-lg {
    max-width: 66.6%;
  }
}
@media only screen and (max-width: 767px) {
  .thinker .ln-row .items.ln-lg {
    max-width: 100%;
  }
}
.thinker .ln-row .items .wrap:not(:first-child) {
  margin-top: 10px;
}
@media only screen and (max-width: 1500px) and (min-width: 992px) {
  .thinker .ln-row .items .wrap:not(:first-child) {
    margin-top: 0.667vw;
  }
}
@media only screen and (max-width: 991px) {
  .thinker .ln-row .items .wrap {
    margin-top: 10px;
  }
}
.thinker .ln-row .items .wrap figure {
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  position: relative;
  padding-bottom: 100%;
}
.thinker .ln-row .items .wrap figure img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
  object-position: center;
}