/*
   INTRODUCTION
*/
.introduction-section {
    background: var(--white);
    padding: 120px 0;
    position: relative;
  }
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .introduction-section {
      padding: 120px 0;
    }
  }
  @media (max-width: 767px) {
    .introduction-section {
      padding: 120px 0;
    }
  }
  .introduction-section .section-title {
    margin-bottom: 30px;
  }
  .introduction-section .section-title span {
    font-size: 20px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 10px;
  }
  .introduction-section .section-title h2 {
    font-size: 45px;
    line-height: 55px;
  }
  @media (max-width: 767px) {
    .introduction-section .section-title h2 {
      font-size: 38px;
      line-height: 45px;
    }
  }
  .introduction-section .introduction-img-wrapper {
    position: absolute;
    left: 0;
    top: 50%;
    width: 46%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .introduction-section .introduction-img-wrapper {
      position: relative;
      top: 0;
      -webkit-transform: translateY(0);
      -moz-transform: translateY(0);
      -ms-transform: translateY(0);
      -o-transform: translateY(0);
      transform: translateY(0);
      width: 100%;
      margin-bottom: 50px;
    }
  }
  @media (max-width: 767px) {
    .introduction-section .introduction-img-wrapper {
      position: relative;
      top: 0;
      -webkit-transform: translateY(0);
      -moz-transform: translateY(0);
      -ms-transform: translateY(0);
      -o-transform: translateY(0);
      transform: translateY(0);
      width: 100%;
      margin-bottom: 50px;
    }
  }
  .introduction-section .introduction-img-wrapper img {
    width: 100%;
  }
  .introduction-section .introduction-img-wrapper .introduction-experience {
    width: 300px;
    border-radius: 27px;
    background: linear-gradient(to top left, var(--primary) 0%, var(--primary-dark) 100%);
    border: 5px solid #eff2f9;
    padding: 40px 20px;
    position: absolute;
    right: -40px;
    bottom: 10px;
  }
  @media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .introduction-section .introduction-img-wrapper .introduction-experience {
      right: 40px;
    }
  }
  .introduction-section .introduction-img-wrapper .introduction-experience h3 {
    color: var(--white);
    margin-bottom: 15px;
  }
  .introduction-section .introduction-img-wrapper .introduction-experience p {
    color: var(--white);
  }
  .introduction-section .introduction-content-wrapper .introduction-content > p {
    margin-bottom: 45px;
  }
  .introduction-section .introduction-content-wrapper .introduction-content .counter-up {
    display: flex;
    justify-content: space-between;
  }
  @media (max-width: 767px) {
    .introduction-section .introduction-content-wrapper .introduction-content .counter-up {
      display: block;
    }
  }
  @media only screen and (min-width: 576px) and (max-width: 767px) {
    .introduction-section .introduction-content-wrapper .introduction-content .counter-up {
      display: flex;
    }
  }
  .introduction-section .introduction-content-wrapper .introduction-content .counter-up .counter {
    margin-right: 10px;
  }
  .introduction-section .introduction-content-wrapper .introduction-content .counter-up .counter:last-child {
    margin-right: 0;
  }
  .introduction-section .introduction-content-wrapper .introduction-content .counter-up .counter span {
    font-size: 40px;
    font-weight: 600;
    color: var(--primary);
    display: block;
    margin-bottom: 8px;
  }
  .introduction-section .introduction-content-wrapper .introduction-content .counter-up .counter h4 {
    font-weight: 500;
    margin-bottom: 10px;
  }