/* 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; }
    }
*/
.chatbot {
  overflow: hidden;
  background: rgba(185, 213, 54, 0.1294117647);
}
.chatbot .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;
}
@media only screen and (max-width: 991px) {
  .chatbot .ln-row {
    flex-direction: column;
  }
}
.chatbot__logoSlider {
  width: 50%;
  overflow: hidden;
}
@media only screen and (max-width: 991px) {
  .chatbot__logoSlider {
    width: 100%;
  }
}
.chatbot__logoSlider .innerWrap {
  height: 100%;
  width: 150%;
}
.chatbot__logoSlider .ln-innerRow {
  transform: rotate(-38deg) translate(-20%, -50%);
}
@media only screen and (max-width: 991px) {
  .chatbot__logoSlider .ln-innerRow {
    transform: rotate(-38deg) translate(-20%, -20%);
  }
}
.chatbot__logoSlider .ln-innerRow .logo-slider {
  position: relative;
  width: 100%;
  white-space: nowrap;
  display: flex;
  flex-direction: row;
  padding: 20px 0;
}
@media only screen and (max-width: 1500px) and (min-width: 992px) {
  .chatbot__logoSlider .ln-innerRow .logo-slider {
    padding: 1.333vw 0;
  }
}
.chatbot__logoSlider .ln-innerRow .logo-slider .marquee-content {
  display: flex;
  flex-direction: row;
  will-change: transform;
  user-select: none;
  flex-wrap: nowrap;
  white-space: nowrap;
  will-change: transform;
}
.chatbot__logoSlider .ln-innerRow .logo-slider .item {
  width: 100%;
  padding: 5px 20px;
  max-width: 200px;
  min-width: 200px;
}
@media only screen and (max-width: 1500px) and (min-width: 992px) {
  .chatbot__logoSlider .ln-innerRow .logo-slider .item {
    padding: 0.333vw 1.333vw;
    max-width: 13.333vw;
    min-width: 13.333vw;
  }
}
.chatbot__logoSlider .ln-innerRow .logo-slider .item .logo-slide .wrap {
  position: relative;
  padding-bottom: 35%;
}
.chatbot__logoSlider .ln-innerRow .logo-slider .item .logo-slide .wrap img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.chatbot__logoSlider .ln-innerRow .logo-slider .item:hover .logo-slide {
  -webkit-filter: blur(0) !important;
  -moz-filter: blur(0) !important;
  -o-filter: blur(0) !important;
  -ms-filter: blur(0) !important;
  filter: blur(0) !important;
}
.chatbot__logoSlider .ln-innerRow .logo-slider:hover .item .logo-slide {
  -webkit-transition: all 500ms linear 0s;
  -moz-transition: all 500ms linear 0s;
  -o-transition: all 500ms linear 0s;
  transition: all 500ms linear 0s;
  -webkit-filter: blur(3px);
  -moz-filter: blur(3px);
  -o-filter: blur(3px);
  -ms-filter: blur(3px);
  filter: blur(3px);
}
.chatbot__content {
  width: 50%;
  padding: 80px 0 80px 50px;
}
@media only screen and (max-width: 1500px) and (min-width: 992px) {
  .chatbot__content {
    padding: 5.333vw 0 5.333vw 3.333vw;
  }
}
@media only screen and (max-width: 991px) {
  .chatbot__content {
    width: 100%;
    padding: 40px 0;
  }
}
.chatbot__content .wrap {
  width: 100%;
  max-width: 600px;
}
@media only screen and (max-width: 1500px) and (min-width: 992px) {
  .chatbot__content .wrap {
    max-width: 40vw;
  }
}
@media only screen and (max-width: 991px) {
  .chatbot__content .wrap {
    margin: auto;
    padding: 0 20px;
    max-width: 710px;
  }
}
@media only screen and (max-width: 767px) {
  .chatbot__content .wrap {
    max-width: 520px;
  }
}
@media only screen and (max-width: 575px) {
  .chatbot__content .wrap {
    max-width: 100%;
  }
}
.chatbot__content .wrap .ln-subtitle {
  margin-top: 20px;
}
@media only screen and (max-width: 1500px) and (min-width: 992px) {
  .chatbot__content .wrap .ln-subtitle {
    margin-top: 1.333vw;
  }
}
.chatbot__content .wrap .ln-btn {
  margin-top: 30px;
}
@media only screen and (max-width: 1500px) and (min-width: 992px) {
  .chatbot__content .wrap .ln-btn {
    margin-top: 2vw;
  }
}
@media only screen and (max-width: 767px) {
  .chatbot__content .wrap .ln-btn {
    width: 100%;
    text-align: center;
  }
}