.section-title {
    font-weight: 700;
    font-size: 35px;
    position: relative;
    color: #090a0c;
    margin-bottom: 20px;
    padding-bottom: 20px;
    text-transform: uppercase;
  }
  .section-title::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    background: #FA8C16;
    width: 50px;
    height: 2px;
  }

  .services {
    width: 100%;
    padding: 50px 0px;
  }
  @media (max-width: 992px) {
    .services {
      padding: 25px 0px;
    }
  }
  .services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    grid-gap: 30px;
    margin-top: 35px;
  }
  @media (max-width: 1200px) {
    .services__grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  @media (max-width: 610px) {
    .services__grid {
      grid-template-columns: repeat(1, 1fr);
    }
  }
  .services__item {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid #eee;
    height: 100%;
    border-radius: 5px;
    -webkit-box-shadow: 0px 30px 60px 0px rgba(38, 59, 94, 0.1);
    box-shadow: 0px 30px 60px 0px rgba(38, 59, 94, 0.1);
    background-color: white;
    padding: 20px;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    text-align: center;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}
  .services__item a {
    display: inline-block;
    color: #090a0c;
    font-weight: 500;
    font-size: 16px;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
  }
  [data-wpdm-scheme=dark] .services__item_price {
    color: rgb(233, 228, 218);
  }
  .services__item:hover .more__block_hidden {
    opacity: 1;
  }
  .services__item:hover {
    background-color: #FA8C16;
  }
  .services__item:hover a {
    color: #ffffff;
  }
  .services__item:hover .services__subTitle {
    color: white;
  }
  .services__item:hover .services__text {
    color: white;
  }
  .services__item:hover .services__item_price {
    color: white;
  }
  .services__icon {
    text-align: center;
    margin: 0 auto;
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    overflow: hidden;
  }
  .services__icon img {
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .services__item .more__block_hide_btn {
    top: 42%;
  }
  .services__subTitle {
    min-height: 30px;
    margin-top: 20px;
    margin-bottom: 20px;
    color: #090a0c;
    font-weight: 600;
    font-size: 13px;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    text-align: left;
    text-transform: uppercase;
  }
  .services__text {
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    text-align: left;
    color: #7A7A7A;
    font-size: 14px;
    margin-bottom: 20px;
  }
  .services__item_footer {
    display: flex;
    justify-content: space-between;
  }
  .services__item_price {
    transition: .3s;
    font-weight: 600;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
}