html,
body {
  height: 100%;
}
body {
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: $font-regular;
  font-size: $base-font-size;
  color: $base-color;
  font-weight: 400;
  line-height: normal;
}
p {
  font-size: $base-font-size;
  line-height: $base-font-size + 10px;
}
a {
  color: $primary-color;
  @include transition($transition-time);
}

a:hover {
  text-decoration: none;
  @include transition($transition-time);
  color: $primary-color;
}
ul {
  margin-bottom: 0;
}
a:focus,
button:focus,
input[type="checkbox"],
input[type="radio"] {
  outline: none;
}
:focus {
  @include box-shadow(none);
  outline: none;
}
.text-underline {
  text-decoration: underline;
}
.primary-text {
  color: $primary-color !important;
}
.secondary-text {
  color: $secondary-color !important;
}
.text-black{
  color: $black !important;
}

.md-font {
  font-size: $md-font;
}
.f-light {
  font-family: $font-light;
}
.f-semibold {
  font-family: $font-semibold;
}
.f-bold {
  font-family: $font-bold;
}
.f-medium {
  font-family: $font-medium;
}
.line-clamp-1 {
  @include line-clamp-1;
}
.line-clamp-2 {
  @include line-clamp-2;
}
.line-clamp-3 {
  @include line-clamp-3;
}
.line-clamp-4 {
  @include line-clamp-4;
}
.bg-none {
  background-color: transparent !important;
}



.btn {
  line-height: normal;
  font-size: $btn-font;
  @include border-radius(4px);
  @extend .f-medium;
  @include transition($transition-time);
  padding: 0.65rem 1.2rem;
  text-transform: capitalize;
  &:focus {
    @include box-shadow(none !important);
    outline: 0 !important;
  }
  &:hover {
    @include transition($transition-time);
  }
}

.btn-primary {
  background-color: $btn-primary;
  border-color: $btn-primary;
  color: $white;
  &:hover,
  &:focus,
  &.focus {
    background-color: darken($btn-primary, 15%) !important;
    border-color: darken($btn-primary, 15%) !important;
    color: $white;
  }
  &.disabled{
    background-color: $btn-primary;
    border-color: $btn-primary;
    color: $white;
    opacity: 0.5;
    // pointer-events: none;
    cursor: not-allowed;
  }
  &:disabled{
    @extend .disabled;
  }
}
.btn-white{
  background-color: $white;
  border-color: $white;
  color: $primary-color;
  &:hover,
  &:focus,
  &.focus {
    background-color: $secondary-color !important;
    border-color: $secondary-color !important;
    color: $white;
  }
}
.btn-secondary{
  background-color: $secondary-color;
  border-color: $secondary-color;
  color: $white;
  &:hover,
  &:focus,
  &.focus {
    background-color: darken($secondary-color, 15%) !important;
    border-color: darken($secondary-color, 15%) !important;
    color: $white;
  }
}
.full-section{
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  .body-middle{
    display: flex;
    flex-direction: column;
    flex: 1 1 0%;
    position: relative;
    // height: 100%;
  }
}
.pt-section{
  padding-top: $section-space;
}
.pb-section{
  padding-bottom: $section-space;
}
section {
  // padding-top: $section-space;
  padding-bottom: $section-space;
}
.section-heading {
  color: $primary-color;
  font-size: $section-heading-font;
  font-family: $font-medium;
  padding-bottom: $section-space;
  text-align: center;
  margin-bottom: 0;
  text-transform: capitalize;
  line-height: $section-heading-font + 10px;
}
.section-sub-heading{
  color: $black;
  font-size: $section-sub-heading-font;
  font-family: $font-medium;
  padding-bottom: 0.5rem;
  text-align: center;
  margin-bottom: 0;
  text-transform: capitalize;
  line-height: $section-sub-heading-font + 10px;
}
.center-table{
  display: table;
  width: 100%;
  height: 100%;
  .center-section{
    display: table-cell;
    vertical-align: middle;
  }
}

.card {
  @include border-radius(0);
  border: 0;
  @include box-shadow(none);
}
.planning-list{
  li{
    position: relative;
    padding-left: 40px;
    margin-bottom: 20px;
    font-size: 18px;
    &:last-child{
      margin-bottom: 0;
    }
    &:before{
      content: '';
      background: url(../img/icons/tick.svg) no-repeat;
      background-size: 22px auto;
      position: absolute;
      left: 0;
      top: 2px;
      width: 30px;
      height: 22px;
    }
  }
}
.card-cap-heading {
  font-size: $inner-heading-font;
  color: $primary-color;
  margin-bottom: 30px;
  font-family: $font-medium;
  text-transform: capitalize;
  @include respond-to(xs) {
    font-size: $md-font;
  }
}
.card-cap-sub{
  font-size: 18px;
  margin-bottom: 30px;
  @extend .f-semibold;
}
.card-caption {
  padding: 0;
}
.card-image{
  text-align: center;
}
.plan-box{
  // padding-top: $section-space;
  padding-bottom: $section-space;
  &:last-child{
    padding-bottom: 0;
  }
  &:nth-child(even){
    .img-section{
      order: 2;
    }
    .content-section{
      order: 1;
    }
  }
  p{
    margin-bottom: 0;
  }
}
.card{
  &.new-card{
    .new-card-image{
      width: 100%;
      @include border-radius(9px);
      // height: 225px;
      text-align: center;
      display: flex;
      justify-content: center;
      align-items: center;
      img{
        @include border-radius(9px);
        width: 100%;
      }
    }
    .new-content{
      color: $primary-color;
      font-size: 18px;
      @extend .f-bold;
      margin-top: 20px;
      margin-bottom: 0;
      line-height: 28px;
    }
    .card-footer{
      background-color: transparent;
      padding: 0;
      border: 0;
    }
  }
}
.back-top {
  width: 40px;
  height: 40px;
  line-height: 40px;
  background-color: $primary-color;
  @include border-radius(9px);
  overflow: hidden;
  z-index: 999;
  display: none;
  cursor: pointer;
  position: fixed;
  bottom: 50px;
  right: 50px;
  text-align: center;
  .top-arrow {
    width: 15px;
  }
}
.back-top:hover {
  background-color: darken($secondary-color, 10%);
}
.hyper-product{
  background-color: $primary-color;
  padding: 10px 0;
  ul{
    li{
      display: inline-block;
      margin-right: 15px;
      a{
        color: $white;
        padding: 10px;
        display: block;
        @include border-radius($radius-common);
        &:hover{
          background-color: $secondary-color;
        }
      }
      &.active{
        a{
          background-color: $secondary-color;
        }
      }
    }
  }
  &.product-page{
    padding: 20px 15px 50px;
    background: #6C8DE3;
    background: -webkit-gradient(linear, left top, right top, from(#6c8de3), to(#2351a5));
    background: linear-gradient(to right, #6c8de3 0%, #2351a5 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='$light-blue', endColorstr='$dark-blue',GradientType=1 );
    .container{
      background-color: transparent;
      border-radius: 40px;
      padding: 0px 0;
      position: relative;
      &::after{
        content: '';
        border-bottom: 1px dashed $white;
        width: calc(100% - 75%);
        position: absolute;
        top: -20px;
        left: 25%;
        margin: 0 auto;
      }
      &:before{
        content: '';
        border-left: 1px dashed #FFFFFF;
        height: 20px;
        width: 1px;
        position: absolute;
        top: -20px;
        right: 50%;
        margin: 0 auto;
      }
      h4{
        margin-left: auto;
      }
      button{
        margin-right: auto;
      }
    }
  }
  &.provider{
    .container{
      &::after{
        right: 25%;
        left: auto;
      }
    }
  }
}
.custom-wrap{
  max-width: 1000px;
  margin: 0 auto;
}
.common-listing{
  @extend .planning-list;
  li{
    padding-left: 20px;
    &:before{
      content: '';
      background: none;
      background-size: auto;
      position: absolute;
      left: 0;
      top: 3px;
      width: 10px;
      height: 10px;
      background-color: $primary-color;
      @include border-radius($round-radius)
    }
  }
}
.blog-page{
  >.row{
    >[class*="col-"]{
        padding-top: 15px;
        padding-bottom: 15px;
    }
  }
  .new-card{
    height: 100%;
    .new-content{
      @include line-clamp-2;
    }
    .content-para{
      margin-top: 5px;
      @include line-clamp-2;
      height: 55px;
    }
    
  }
}
.address-block{
  margin-bottom: $section-space;
  &:last-child{
    margin-bottom: 0;
  }
  a{
    color: $base-color;
  }
}
.contact-form{
  background-color: $primary-color;
  padding: 1.5rem;
  @include border-radius(10px);
  .label-control{
    color: $white;
    display: block;
  }
}

.culture{
  .career-culture-content{
    background-color: $white;
    @include border-radius(15px);
    @include box-shadow($box-shadow);
    padding: $section-space;
    text-align: center;
    z-index: 2;
    position: relative;
    p{
      margin-bottom: 0;
    }
  }
  .career-image{
    margin-top: -60px;
    .img-section{
      width: 100%;
    }
  }
}
.required-qual{
  margin-bottom: 30px;
  &:last-child{
    margin-bottom: 0;
    p{
      margin-bottom: 0;
    }
  }
  .req-head{
    font-size: 18px;
    @extend .f-bold;
    color: $black;
    margin-bottom: 15px;
  }
}
.faq-tabs{
  border-bottom: 0;
  .nav-item{
    .nav-link{
      padding: 10px;
      @include border-radius($radius-common);
      border: 0;
      color: rgba($white, 0.5);
      &.active, &:hover{
        border: 0;
        background-color: $secondary-color;
        color: rgba($white, 1);
      }
    }
  }
}
#faqTabContent{
  padding: $section-space 0;
}
.faqs{
  .accordion{
    .card{
      @include border-radius(0);
      .card-header{
        background-color: $white;
        border-bottom: 0;
        padding: 0;
        @include border-radius(0);
        .btn-link{
          display: block;
          width: 100%;
          text-align: left;
          color: $primary-color;
          font-family: $font-regular;
          font-size: 18px;
          border-bottom: 1px solid $primary-color;
          @include border-radius(0);
          padding: 0.65rem 1rem 0.65rem 0;
          position: relative;
          &:hover, &:focus{
            text-decoration: none;
          }
          &:after{
            content: '-';
            position: absolute;
            right: 0;
            top: 11px;
            @extend .f-bold;
          }
          &.collapsed{
            border-bottom: 0;
            &:after{
              content: '+';
            }
          }
        }
      }
      .card-body{
        padding-left: 0;
        padding-right: 0;
      }
    }
  }
}
.read-more{
  img{
    max-width: 15px;
  }
  &:hover{
    color: $secondary-color;
  }
}

.body-top-space{
  margin-top: 70px;
}
.resource-banner{
  @include border-radius(15px);
  margin: 20px 0;
  height: auto;
  img{
    width: 100%;
    height: 100%;
    @include object-fit(cover);
    @include border-radius(15px);
  }
}
.resource-heading{
  .title{
    font-size: 20px;
    @extend .f-bold;
    color: $primary-color;
  }
}
.more-resource{
  border-bottom: 1px solid $stroke-color;
  padding-bottom: 15px;
  padding-top: 15px;
  &:last-child{
    border-bottom: 0;
  }
  &:first-child{
    padding-top: 0;
  }
  .rs-hd{
    font-size: 18px;
    @extend .f-bold;
    line-height: 26px;
  }
  ul{
    li{
      display: block;
      margin-bottom: 1rem;
      &:last-child{
        margin-bottom: 0;
      }
      p{
        margin-bottom: 0;
      }
      .lr-mr{
        margin-top: 0.3rem;
      }
    }
  }
}
#tabs.scroll-to-fixed-fixed {
  position: fixed;
  // top: 70px !important;
}
.content-pages{
  padding-top: $section-space;
  .content-section{
    margin-bottom: 30px;
    &:last-child{
      margin-bottom: 0;
    }
    .content-inner-section{
      .h5{
        @extend .f-semibold;
      } 
    }
    li{
      line-height: 26px;
    }
  }
}
.scs-img{
  margin-bottom: 20px;
  img{
    max-width: 90px;
  }
}
label.error{
  color: #f74343;
  font-size: 12px;
  @extend .f-semibold
}
.form-group{
  .form-control{
    &.error{
      border-color: #f74343;
    }
  }
} 
.quote-text{
  font-size: 18px;
}
.overview-wrapper{
  max-width: 1110px;
  margin: 0 auto;
}
$list-img: 80px;
.overview-list{
  >.row{
    [class*="col-"]{
      padding: 15px;
    }
  }
  .card{
    background: $white;
    @include box-shadow(0 0 20px rgba($black, 0.08));
    min-height: 120px;
    @include border-radius(10px);
    height: 100%;
    .card-body{
      padding: 20px;
      .card-list-img{
        width: $list-img;
        height: $list-img;
        display: flex;
        align-items: center;
        text-align: center;
        margin-right: 25px;
        img{
          max-width: 100%;
          max-height: 100%;
        }
      }
      .card-list-title{
        font-size: 18px;
        @extend .f-semibold;
        color: $black;
        margin-bottom: 0;
        line-height: 26px;
      }
    }
  }
}