/* 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; }
    }
*/
.ln-sector {
  padding: 80px 0;
}
@media only screen and (max-width: 1500px) and (min-width: 992px) {
  .ln-sector {
    padding: 5.333vw 0;
  }
}
@media only screen and (max-width: 767px) {
  .ln-sector {
    padding: 40px 0;
  }
}
.ln-sector__header {
  text-align: center;
  width: 100%;
  margin: auto;
  max-width: 1000px;
}
@media only screen and (max-width: 1500px) and (min-width: 992px) {
  .ln-sector__header {
    max-width: 66.67vw;
  }
}
.ln-sector__header .ln-subtitle {
  font-size: 18px;
  margin-top: 10px;
}
@media only screen and (max-width: 1500px) and (min-width: 992px) {
  .ln-sector__header .ln-subtitle {
    font-size: 1.2vw;
    margin-top: 0.667vw;
  }
}
.ln-sector__body {
  margin-top: 60px;
}
@media only screen and (max-width: 1500px) and (min-width: 992px) {
  .ln-sector__body {
    margin-top: 4vw;
  }
}
@media only screen and (max-width: 767px) {
  .ln-sector__body {
    margin-top: 40px;
  }
}
.ln-sector__body .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;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  margin: 0 -15px;
  row-gap: 30px;
}
@media only screen and (max-width: 1500px) and (min-width: 992px) {
  .ln-sector__body .ln-row {
    margin: 0 -1vw;
    row-gap: 2vw;
  }
}
@media only screen and (max-width: 767px) {
  .ln-sector__body .ln-row {
    margin: 0 -10px;
    row-gap: 20px;
  }
}
.ln-sector__body .ln-row .item {
  width: 100%;
  max-width: 16.66%;
  padding: 0 15px;
}
@media only screen and (max-width: 1500px) and (min-width: 992px) {
  .ln-sector__body .ln-row .item {
    padding: 0 1vw;
  }
}
@media only screen and (max-width: 991px) {
  .ln-sector__body .ln-row .item {
    max-width: 25%;
  }
}
@media only screen and (max-width: 767px) {
  .ln-sector__body .ln-row .item {
    max-width: 50%;
    padding: 0 10px;
  }
}
.ln-sector__body .item .wrap {
  border: 1px solid #c0d72f;
  border-radius: 100%;
  overflow: hidden;
}
.ln-sector__body .item .wrap .flipper {
  position: relative;
  padding-bottom: 100%;
  border-radius: 100%;
}
.ln-sector__body .item .wrap .flipper .front,
.ln-sector__body .item .wrap .flipper .back {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 100%;
}
.ln-sector__body .item .wrap .flipper .front {
  padding: 20px;
  text-align: center;
}
@media only screen and (max-width: 1500px) and (min-width: 992px) {
  .ln-sector__body .item .wrap .flipper .front {
    padding: 1.333vw;
  }
}
.ln-sector__body .item .wrap .flipper .front p {
  text-transform: uppercase;
  font-size: 20px;
}
@media only screen and (max-width: 1500px) and (min-width: 992px) {
  .ln-sector__body .item .wrap .flipper .front p {
    font-size: 1.333vw;
  }
}
@media only screen and (max-width: 767px) {
  .ln-sector__body .item .wrap .flipper .front p {
    font-size: 16px;
  }
}
.ln-sector__body .item .wrap .flipper .back {
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.8s cubic-bezier(0.46, 0.54, 0.21, 0.94);
  -webkit-clip-path: ellipse(0 0 at 50% 100%);
  clip-path: ellipse(0 0 at 50% 100%);
}
.ln-sector__body .item .wrap .flipper .back img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  object-position: center;
}
.ln-sector__body .item .wrap .flipper.active .back {
  -webkit-clip-path: ellipse(100% 100% at 100% 100%);
  clip-path: ellipse(100% 100% at 50% 100%);
}