/*
  SERVICES - Features
*/
/* ===== Buttons Css ===== */
.services-section .primary-btn-outline {
    border-color: var(--primary);
    color: var(--primary);
  }
  
  .services-section .active.primary-btn-outline,
  .services-section .primary-btn-outline:hover,
  .services-section .primary-btn-outline:focus {
    background: var(--primary-dark);
    color: var(--white);
  }
  
  .services-section .deactive.primary-btn-outline {
    color: var(--dark-3);
    border-color: var(--gray-4);
    pointer-events: none;
  }
  
  /* Services CSS */
  .services-section {
    background-color: var(--light-2);
    padding: 120px 0;
  }
  
  .services-section .section-title {
    padding-bottom: 10px;
  }
  
  .services-section .title {
    font-size: 50px;
    font-weight: 600;
    color: var(--black);
    line-height: 55px;
  }
  
  @media (max-width: 767px) {
    .services-section .title {
      font-size: 40px;
      line-height: 35px;
    }
  }
  
  .services-section .text {
    font-size: 16px;
    line-height: 24px;
    color: var(--dark-3);
    margin-top: 24px;
  }
  
  .services-style-one {
    background-color: var(--white);
    padding: 40px 20px;
    margin-top: 40px;
    box-shadow: var(--shadow-2);
    border-radius: 4px;
    transition: all 0.3s;
  }
  
  .services-style-one:hover {
    box-shadow: var(--shadow-4);
  }
  
  .services-style-one .services-icon {
    position: relative;
    display: inline-block;
    z-index: 1;
    height: 100px;
    width: 100px;
    line-height: 100px;
    text-align: center;
    font-size: 40px;
    color: var(--primary);
    border: 2px solid rgba(187, 187, 187, 0.192);
    border-radius: 50%;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
  }
  
  @media (max-width: 767px) {
    .services-style-one .services-icon {
      height: 70px;
      width: 70px;
      line-height: 70px;
      font-size: 35px;
    }
  }
  
  .services-style-one:hover .services-icon {
    border-color: transparent;
    color: var(--white);
    background-color: var(--primary);
  }
  
  .services-style-one .services-content {
    margin-top: 24px;
  }
  
  .services-style-one .services-title {
    font-size: 26px;
    line-height: 35px;
    font-weight: 600;
    color: var(--black);
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1199px),
  (max-width: 767px) {
    .services-style-one .services-title {
      font-size: 22px;
    }
  }
  
  .services-style-one .text {
    color: var(--dark-3);
    margin-top: 16px;
  }
  
  .services-style-one .services-btn {
    margin-top: 32px;
  }
  