/* 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; }
    }
*/
.services-industries {
  padding: 80px 0;
}
@media only screen and (max-width: 1500px) and (min-width: 992px) {
  .services-industries {
    padding: 5.333vw 0;
  }
}
@media only screen and (max-width: 767px) {
  .services-industries {
    padding: 40px 0;
  }
}
.services-industries__list {
  list-style: none;
  padding: 0;
  margin: 0;
  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-align-items: flex-end;
  -moz-align-items: flex-end;
  -ms-align-items: flex-end;
  align-items: flex-end;
}
.services-industries__list .items {
  width: 14%;
}
@media only screen and (max-width: 991px) {
  .services-industries__list .items {
    width: 33.3333%;
  }
}
@media only screen and (max-width: 767px) {
  .services-industries__list .items {
    width: 50%;
  }
}
.services-industries__list .items:first-child {
  width: 56%;
}
@media only screen and (max-width: 991px) {
  .services-industries__list .items:first-child {
    width: 100%;
    margin-bottom: 30px;
  }
}
.services-industries__list .items:first-child .wrap {
  padding-bottom: 0;
  padding: 20px 20px 40px 0;
}
@media only screen and (max-width: 1500px) and (min-width: 992px) {
  .services-industries__list .items:first-child .wrap {
    padding: 1.333vw 1.333vw 2.67vw 0;
  }
}
@media only screen and (max-width: 767px) {
  .services-industries__list .items:first-child .wrap {
    padding: 0;
  }
}
.services-industries__list .items:first-child .wrap .ln-subtitle {
  margin-top: 20px;
}
@media only screen and (max-width: 1500px) and (min-width: 992px) {
  .services-industries__list .items:first-child .wrap .ln-subtitle {
    margin-top: 1.333vw;
  }
}
.services-industries__list .items .wrap {
  position: relative;
  padding-bottom: 120%;
  transition: transform 1s;
  transform-style: preserve-3d;
}
.services-industries__list .items .wrap:empty {
  display: block;
  background-color: rgba(185, 213, 54, 0.1294117647) !important;
}
.services-industries__list .items .wrap .content {
  position: absolute;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  -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;
  text-align: center;
  padding: 20px;
  backface-visibility: hidden;
}
@media only screen and (max-width: 1500px) and (min-width: 992px) {
  .services-industries__list .items .wrap .content {
    padding: 1.333vw;
  }
}
@media only screen and (max-width: 767px) {
  .services-industries__list .items .wrap .content {
    padding: 15px;
  }
}
.services-industries__list .items .wrap .content .in-icon img {
  width: auto;
  height: 60px;
}
@media only screen and (max-width: 1500px) and (min-width: 992px) {
  .services-industries__list .items .wrap .content .in-icon img {
    height: 4vw;
  }
}
@media only screen and (max-width: 767px) {
  .services-industries__list .items .wrap .content .in-icon img {
    height: 45px;
  }
}
.services-industries__list .items .wrap .content p {
  line-height: 1.5;
  font-size: 18px;
  margin-top: 10px;
}
@media only screen and (max-width: 1500px) and (min-width: 992px) {
  .services-industries__list .items .wrap .content p {
    font-size: 1.2vw;
    margin-top: 0.667vw;
  }
}
@media only screen and (max-width: 767px) {
  .services-industries__list .items .wrap .content p {
    font-size: 16px;
    margin-top: 8px;
  }
}
.services-industries__list .items .wrap .media {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  backface-visibility: hidden;
  transform: rotateY(180deg);
}
.services-industries__list .items .wrap .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.services-industries__list .items:not(:first-child):hover .wrap {
  transform: rotateY(180deg);
  transition: transform 0.5s;
}
.services-industries__list .items:nth-child(odd) .wrap {
  background-color: #fff;
}
.services-industries__list .items:nth-child(odd) .wrap .content p {
  color: #28282B;
}
.services-industries__list .items:nth-child(even) .wrap {
  background-color: #28282B;
}
.services-industries__list .items:nth-child(even) .wrap .content p {
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .services-industries__list .items:nth-child(4n+3) .wrap, .services-industries__list .items:nth-child(4n+4) .wrap {
    background-color: #fff;
  }
}
@media only screen and (max-width: 767px) {
  .services-industries__list .items:nth-child(4n+3) .wrap .content p, .services-industries__list .items:nth-child(4n+4) .wrap .content p {
    color: #28282B;
  }
}
@media only screen and (max-width: 767px) {
  .services-industries__list .items:nth-child(4n+2) .wrap, .services-industries__list .items:nth-child(4n+5) .wrap {
    background-color: #28282B;
  }
}
@media only screen and (max-width: 767px) {
  .services-industries__list .items:nth-child(4n+2) .wrap .content p, .services-industries__list .items:nth-child(4n+5) .wrap .content p {
    color: #fff;
  }
}