@import "custom-variables/variables";
@import "_bootstrap";
//@import "layout/header";
//@import "layout/footer";
@import "plugins/font-face";
@import "plugins/icomoon";
@import "plugins/slick";

html {
  font-size: 100%;
  @include media-breakpoint-down(md) {
    font-size: 87.5% !important;
  }
  @include media-breakpoint-down(sm) {
    font-size: 81.3% !important;
  }
}
.font-weight-medium {
  font-weight: $font-weight-medium;
}
.font-weight-normal {
  font-weight: $font-weight-normal;
}
.font-weight-semibold {
  font-weight: $font-weight-semibold;
}
.font-weight-exbold {
  font-weight: $font-weight-exbold;
}

.font-xl {
  font-size: rem(18);
}
.font-sm {
  font-size: 13px;
}
.font-xs {
  font-size: 12px;
}
.font-md {
  font-size: 14px;
}
.font-lg {
  font-size: 15px;
}
.font-base {
  font-size: 16px;
}

.line-height-normal {
  line-height: normal;
}

.text-transform-none {
  text-transform: none;
}

a:hover {
  text-decoration: none;
}
button,
input,
textarea,
select {
  outline: 0;
}

.btn-default {
  background-color: #e9e9e9;
  color: #b0b0b0;
  transition: all 0.5s ease-in-out;
  &:hover {
    background-color: $primary;
    color: $secondary;
  }
}

.img-fluid {
  max-width: 100%;
  width: auto;
  height: auto;
}
a.link-style1 {
  color: #797979;
  font-size: 13px;
  display: inline-block;
  position: relative;
  &:after {
    border-bottom: $primary 2px solid;
    content: "";
    display: block;
    width: 0;
    opacity: 0;
    transition: all ease 0.5s;
  }
  &:hover {
    &:after {
      opacity: 1;
      width: 100%;
    }
  }
}
.main {
  transition: all ease 0.5s;
}

.nav-btn {
  border: 0;
  background: transparent;
  border-top: $black 2px solid;
  border-bottom: $black 2px solid;
  width: 30px;
  padding: 6px 0;
  right: 15px;
  top: 50%;
  margin-top: -11px;
  outline: 0;
  span {
    border-top: $black 2px solid;
    display: block;
    margin-left: 5px;
  }
  &:focus,
  &:hover {
    outline: 0;
  }
}
@include media-breakpoint-up(lg) {
  .menu-slide-outer > ul:not(.slick-initialized) {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    li {
      display: inline-block;
      float: none;
      white-space: normal;
    }
  }
}
.menu-slide-outer .slick-slider {
  padding: 0px 50px !important;
}
.menu-slide-outer .slick-dots li.slick-active button {
  background: $secondary !important ;
  border-color: $secondary !important;
}
.menu-slide-outer .slick-arrow {
  width: 40px;
  height: 40px;
  text-align: center !important;
  padding-left: 13px;
  border: 2px solid #ddd;
  border-radius: 50%;
  cursor: pointer;
  &:before {
    width: 0.7rem;
    height: 0.7rem;
  }
  &:hover {
    border-color: $secondary;
    &:before {
      border-color: $secondary !important;
    }
  }
}
.menu-slide-outer .slick-next {
  padding-left: 10px !important;
}
.menu-slide-outer .slick-prev:before {
  border-left: #b3b3b3 2px solid !important;
  border-bottom: #b3b3b3 2px solid !important;
}
.main-nav {
  > li {
    @include media-breakpoint-up(lg) {
      display: inline-block;
      vertical-align: top;
      padding: 0 rem(20);
    }
    @include media-breakpoint-down(lg) {
      padding: 0 rem(17);
    }
    @include media-breakpoint-down(md) {
      padding: 0 0 5px;
      display: block;
    }
    a,
    span {
      cursor: pointer;
      display: block;
      color: #7a7a7a;
      padding: rem(7) 0;
      font-weight: $font-weight-medium;
      position: relative;
      @include media-breakpoint-up(lg) {
        font-size: rem(16);
      }
      @include media-breakpoint-down(md) {
        font-size: rem(22);
      }
      @include media-breakpoint-up(lg) {
        &:after {
          border: $primary 1px solid;
          content: "";
          width: 0;
          opacity: 0;
          position: absolute;
          left: 0;
          bottom: 0;
          transition: all ease 0.5s;
        }
        &:hover {
          &:after {
            width: 100%;
            opacity: 1;
          }
        }
      }
    }
    span:after {
      display: none;
    }
    > ul {
      background-color: #fff;
      z-index: 9999;
      display: block;
      @include media-breakpoint-down(md) {
        position: relative;
        display: none;
        padding: 0;
        margin: 0;
      }
      @include media-breakpoint-up(lg) {
        position: fixed;
        left: 0;
        right: 0;
        padding: 50px 0 20px;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.2);
        transition: all ease 0.8s;
        visibility: hidden;
        opacity: 0;
        transform: translateY(1em);
        transition: all 0.3s ease-in-out 0s, visibility 0s linear 0.2s,
          z-index 0s linear 0.01s;
      }
    }
  }
  @include media-breakpoint-up(lg) {
    li:hover > ul {
      visibility: visible !important;
      opacity: 1;
      transition: all ease 0.8s;
      transform: translateY(0%);
      transition-delay: 0s, 0s, 0.2s;
    }
  }
  .container {
    list-style: none;
    ul {
      padding: 0;
    }
  }

  .container li {
    display: inline-block;
    text-align: left;
    list-style: none;
    padding-left: 15px;
    padding-right: 15px;
    @include media-breakpoint-up(lg) {
      float: left;
      width: 33.33%;
      a {
        display: block;
        padding: 40px 0;
      }
      img {
        max-width: 100%;
      }
    }
    a {
      color: $secondary;
      font-size: 1.2rem;
      &:after {
        content: "Know More" !important;
        width: auto;
        position: relative !important;
        opacity: 1 !important;
        border: none;
        border-bottom: #fff 2px solid !important;
        color: $body-color;
        font-size: small;
        margin-top: 40px;
      }
      &:hover {
        &:after {
          border-bottom: #34cc67 2px solid !important;
        }
      }
      &:focus {
        outline: 0 !important;
      }
    }
    span {
      font-weight: 400;
      line-height: 1.4rem;
      font-size: 0.9rem;
      padding-bottom: 20px;
      text-transform: inherit;
    }
  }
  img {
    display: block;
    padding-bottom: 10px;
    margin: inherit;
  }
  schedule-demo .container li span:after {
    border: none !important;
  }

  // @include media-breakpoint-down(md){
  //     height: 100%;overflow: auto;
  //  }
}
.show-menu {
  overflow: hidden;
  .main-nav-outer {
    right: 0;
    background-color: #fff;
    height: 100%;
    overflow: auto;
  }
  .close-btn {
    display: block;
    opacity: 1;
    font-size: 17px;
    color: #686767;
  }
}
.close-btn {
  border: 0;
  background: 0 0;
  padding: 0;
  margin: 0;
  font-size: 25px;
  right: 15px;
  top: 15px;
  display: none;
  opacity: 0;
  transition: all ease 0.8s;
  outline: 0;
  z-index: 100;
}
.main-nav-outer {
  @include media-breakpoint-down(md) {
    position: fixed;
    z-index: $zindex-fixed;
    right: -100%;
    top: 0;
    width: 100%;
    transition: all ease 0.5s;
    height: 100%;
    background-color: #fff;
  }
}
header {
  .schedule-demo a,
  a.schedule-demo {
    background: $primary;
    color: $white;
    border-radius: 40px;
    text-transform: uppercase;

    @include media-breakpoint-up(lg) {
      padding: 0.4375rem 1.4375rem;
      font-size: 12px !important;
    }
    @include media-breakpoint-down(md) {
      font-size: 15px !important;
      font-weight: $font-weight-bold;
    }
    text-align: center;
    display: inline-block;
    &:after {
      display: none;
    }
  }
  .conatiner {
    transition: all ease 0.5s;
  }
}
body.fixed-header {
  padding-top: 78px;
  header {
    position: fixed;
    width: 100%;
    z-index: 10000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    background: #fff;
    top: 0;
    animation: slideInDown 0.8s;
    overflow: hidden;
    .container {
      padding: 10px 15px !important;
    }
  }
}

.banner-container {
  overflow: hidden;
  position: relative;
  img.banner-img {
    width: 100%;
    height: auto;
  }
  .banner-content {
    left: 0;
    top: 0;
  }
  .get-itnow {
    background: rgba($black, 0.3);
    width: 204px;
    height: 51px;
    line-height: 47px;
    border: 2px solid $white;
    border-radius: 30px;
    font-size: 16px;
    &.playbtn {
      padding-right: 35px;
    }
    @include media-breakpoint-down(sm) {
      height: 33px;
      line-height: 29px;
      -webkit-border-radius: 20px;
      border-radius: 20px;
      width: 150px;
      font-size: 14px;
      &.playbtn {
        width: 180px;
        height: 45px;
        line-height: 42px;
        border-radius: 25px;
      }
    }

    &.playbtn:before {
      position: absolute;
      right: 15px;
      content: "";
      border: #fff 1px solid;
      width: 21px;
      height: 21px;
      border-radius: 50%;
      top: 50%;
      margin-top: -11px;
    }
    &.playbtn:after {
      position: absolute;
      right: 22px;
      content: "";
      border-left: #fff 5px solid;
      border-top: transparent 5px solid;
      border-bottom: transparent 5px solid;
      width: 0;
      height: 0;
      top: 50%;
      margin-top: -5px;
    }
  }
  @include media-breakpoint-down(sm) {
    .display-1 {
      font-size: rem(26);
      font-weight: 600 !important;
    }
    .appstore {
      width: 100px;
      height: auto;
    }
    .playstore {
      width: 110px;
      height: auto;
    }
  }
}

.footer-top-block {
  border-bottom: #5e77c8 1px solid;
}
.footerlink-block {
  @include media-breakpoint-only(xl) {
    padding-left: 60px;
  }
  @include media-breakpoint-up(lg) {
    border-right: #5e77c8 1px solid;
  }
  ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  li {
    display: inline-block;
    vertical-align: top;
    width: 50%;
    margin-bottom: 25px;
    @include media-breakpoint-up(sm) {
      width: 33%;
      margin-bottom: 0;
    }
    li {
      display: block;
      width: 100%;
      padding: 0 0 5px;
      margin-bottom: 0;
      img {
        display: none;
      }
      a span {
        display: none;
      }
    }
    &:last-child {
      margin-bottom: 0;
    }
  }
  span {
    font-weight: $font-weight-medium;
    display: block;
    padding-bottom: 10px;
  }
  a {
    font-size: 13px;
    color: #fff;
    font-weight: $font-weight-light;
  }
}
.footer-right {
  .input-group {
    @include media-breakpoint-up(lg) {
      width: 90%;
    }
    .form-control {
      padding: 0 0 0 16px;
      line-height: 1;
      border: 0;
      outline: 0;
      box-shadow: none;
    }
    .btn-sm {
      font-size: 13px;
    }
  }
}
.social-networks i {
  @include media-breakpoint-only(xs) {
    font-size: 18px;
  }
  font-size: 25px;
  @include media-breakpoint-up(lg) {
    font-size: 18px;
  }
  display: block;
}
.social-networks a {
  display: inline-block;
  vertical-align: middle;
  padding: 5px 5px 5px 0;
  margin-right: 5px;
}
.subscribe-block {
  form {
    max-width: 340px;
    position: relative;
    padding-bottom: 25px;
  }
  .message_validation {
    position: absolute;
    left: 10px;
    bottom: -25px;
    color: #ff9696;
  }
}
/*BREADCRUMB*/

.bread-crumb {
  padding: 5px 0 3px 0;
  ul {
    margin: 0;
    padding: 0;
    list-style: none;
    li {
      display: inline-block;
      font-size: 12.5px;
      position: relative;
      padding-right: 20px;
      margin-right: 7px;
      &:after {
        position: absolute;
        right: 0;
        top: 4px;
        content: "";
        border-right: #666 1px solid;
        border-top: #666 1px solid;
        width: 7px;
        height: 7px;
        transform: rotate(45deg);
      }
      &:last-child {
        &:after {
          display: none;
        }
      }
      a {
        color: #a8a8a8;
        font-weight: $font-weight-normal;
        &:hover {
          color: $primary;
        }
      }
      &.active {
        a {
          color: $gray-500;
        }
      }
    }
  }
}

.message_validation {
  color: $danger;
  font-size: 13px;
  &.hide {
    display: none;
  }
}

.message_error,
.error-message,
.message_info,
.info-message,
.message_success,
.success-message,
.message_success_custom {
  text-align: center;
  font-size: 30px;
  padding: 8px 10px;
  font-weight: 300;
}
.message_error,
.error-message {
  background: #ef302f;
  color: $white;
}
.message_info,
.info-message {
  background: #fdf0d0;
  color: #ef1d1c;
}
.message_success,
.success-message,
.message_success_custom {
  background: #34cc67;
  color: $white;
}

.btn-primary {
  text-transform: uppercase;
  font-weight: $font-weight-bold;
}

.hv-cls img {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  transition: all ease 0.5s;
  &:hover {
    -webkit-filter: grayscale(0%);
    filter: grayscale(0%);
  }
}
.client-slider:not(.slick-initialized) {
  white-space: nowrap;
  overflow: hidden;
  display: block;
  .hv-cls {
    display: inline-block;
  }
}

@include media-breakpoint-up(md) {
  .logo {
    max-width: 75%;
  }
}
.footer_logo {
  -webkit-filter: brightness(100);
  filter: brightness(100);
}
.listing-im li {
  display: flex;
  &:before {
    font-family: "icomoon" !important;
    content: "\e907";
    padding-right: 10px;
    color: $primary;
  }
}
.tik-points p {
  display: flex;
  &:before {
    font-family: "icomoon" !important;
    content: "\e907";
    padding-right: 10px;
    padding-left: 1px;
  }
}

::-webkit-input-placeholder {
  color: $input-placeholder-color;
}

:-ms-input-placeholder {
  color: $input-placeholder-color;
}

::placeholder {
  color: $input-placeholder-color;
}

.accordion {
  cursor: pointer;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  transition: 0.4s;
  background-color: transparent;
  position: relative;
  outline: 0px !important;
  border-top: 1px solid #ddd;
  padding: 20px 0px;
  &.active:after {
    content: "\2212";
    color: $secondary;
  }
  h6 {
    top: 16px;
    padding-right: 35px;
    left: 0;
    padding-bottom: 10px;
    margin: 0;
    padding-top: 5px;
    font-weight: normal;
    line-height: 2rem;
    font-size: 1.2rem;
  }
}
.active .accordion:hover {
}
.accordion:after {
  content: "\002B";
  color: #b1b1b1;
  float: right;
  margin-left: 5px;
  font-size: 38px;
  font-weight: 100;
  position: absolute;
  right: 0;
  top: 10px;
}
.panel {
  padding: 0 18px;
  background-color: white;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}
.collapsing {
  margin-bottom: 5rem;
  border-bottom: 1px solid #ddd;
}

.text-white h1 {
  font-size: 3.7rem;
  opacity: 0.7;
}

@include media-breakpoint-down(md) {
  .main-nav img {
    display: none;
  }
  .main-nav .container li span {
    display: none;
  }
  .main-nav ul > li > a:after {
    display: none;
  }

  .main-nav .container li {
    width: 100%;
    padding: 0px;
  }
  .main-nav .container li a {
    color: $body-color;
    font-size: 1.1rem;
    font-weight: 300;
  }
  .main-nav .container {
    padding: 0;
  }
}
.slick-dots {
  position: relative !important;
  margin-top: 10px;
  li {
    width: auto !important;
    float: none !important;
  }
}
.slick-dots li button {
  background-color: #e9e9e9;
  width: 15px;
  height: 3px;
  border-radius: 0% !important;
  opacity: 1;
}
.send-mail ul li:nth-child(7) {
  flex: auto;
  max-width: 100%;
}
.send-mail .custom-button01 {
  width: auto !important;
  font-weight: 400;
}
.shedule-demo-form ul li:nth-child(9) {
  flex: auto;
  max-width: 100%;
}

.rounded {
  border-radius: $border-radius !important;
}
.line-height-sm {
  line-height: 1.5rem;
}

@-webkit-keyframes slideInDown {
  0% {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes slideInDown {
  0% {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

select.form-control {
  min-height: 50px;
  padding-right: 35px;
  @include media-breakpoint-down(md) {
    min-height: 42px !important;
  }
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  text-indent: 1px;
  text-overflow: "";
}

.country:after {
  content: "";
  border-right: #757575 2px solid;
  border-bottom: #757575 2px solid;
  width: 7px;
  height: 7px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  right: 20px;
  top: 20px;
  display: block;
}
.country {
  position: relative;
}
.select {
  position: relative;
}
.select:after {
  content: "";
  border-right: #757575 2px solid;
  border-bottom: #757575 2px solid;
  width: 7px;
  height: 7px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  right: 20px;
  top: 20px;
  display: block;
}

.key-points p {
  display: flex;
  &:before {
    font-family: "icomoon" !important;
    content: "\e907";
    padding-right: 10px;
    padding-left: 1px;
  }
}
.over-y-rem {
  overflow-y: hidden;
}

body {
  overflow-x: hidden;
}

.thin {
  font-weight: 100 !important;
  font-size: 1.6rem;
}
.col-dark {
  color: #666666;
}
.light-one {
  color: #b9b9b9;
}

.slick-dots li {
  padding-left: 3px !important;
  padding-right: 3px !important;
}
.key-points p:before {
  color: $primary !important;
}

.plus-points li:before {
  font-family: "icomoon" !important;
  content: "\e906";
  padding-right: 10px;
  color: #34cc67;
}

.norm-text {
  text-transform: initial;
  font-size: 0.9rem;
}

.recaptche {
  position: relative;
}

.field-error {
  border: 2px solid #d9534f !important;
}
.get-start-check .message_validation {
  display: none !important;
}
.pop_loader {
  background: rgba(255, 255, 255, 0.8);
  position: fixed;
  width: 100%;
  height: 100%;
  white-space: nowrap;
  text-align: center;
  color: gray;
  z-index: 99000;
}
.hide {
  display: none !important;
}

.mndty {
  font-size: 16px;
  color: #f51b1b;
}
#submitFormStepLast,
#submitContact {
  @include media-breakpoint-down(sm) {
    width: 100%;
  }
}
.zopim {
  position: fixed;
}
