a {
    text-decoration: none;
  }


    @media (max-width:576px){
      .a_detail img{
        width: 100% !important;
      }
    }

.ux_install_but {
    display: block;
    text-transform: uppercase;
    width: calc(100% - 75px);
    padding: 15px 50px 15px 25px;
    border-radius: 5px;
    filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
    font-size: 18px;
    line-height: 1;
    letter-spacing: 0.03em;
    text-align: left;
    color: #fff;
    position: relative;
    font-family: "Motiva Sans", Sans-serif;
    font-weight: normal; 
    background: linear-gradient(to right, #06bfff 50%, #2b74ff 100%);
    background-size: 200%;
    background-position: right 0;
    transition: background-position 300ms ease-in;
}
.ux_install_but:hover {
background-position: 0 0;
}

.ux_install_but:after{
    content: "";
    background-position: top right;
    background-size: auto 100%;
    background-repeat: no-repeat;
    width: 18px;
    height: 18px;
    position: absolute;
    right: 25px;
    background-image: url(/template/51ux/img/icon-windows.svg);
}

.nav-link.active {
    color: #1a9fff !important;
}

.nav-link.active:after {
    content: "";
        display: block;
        width: 100%;
        height: 2.5px;
        background: #1a9fff;
        border-radius: 3px;
        animation: slide 0.1s;
        margin-top: 2px;
}

.ux_row_bg{
    background-image: radial-gradient(ellipse farthest-side, rgba(0, 111, 255, 0.15), transparent);
	background-size: 100%;
	background-repeat: no-repeat;
	background-position: center center;
	/* position: absolute; */
	/* top: -15%; */
	/* bottom: -20%; */
	/* left: 0; */
	/* right: 0; */

}

.ux_service_item .item_icon{
  background-color: rgba(62, 62, 62, .5);
  background-image: none;
  margin: 0 auto -42px;
  border-radius: 50%;
  width: 85px;
  height: 85px;
  transition: background-image 600ms ease;
  overflow: hidden;
  display: flex;
    flex-flow: row;
    align-content: center;
    justify-content: center;
    z-index: 1;
    position: relative;
}

.ux_service_item .item_icon img{
  width:50%;
  z-index: 2;
}

.ux_service_item .item_icon:after{
  background-image: linear-gradient(to right, #06BFFF, #2B74FF);
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  content: "";
  opacity: 0;
  transition: opacity 600ms ease;
}

.ux_service_item:hover .item_icon:after {
  opacity: 1;
}

.ux_service_item .item_content{
  background: transparent;
        border-radius: 30px;
        padding: 50px 10px 30px;
        margin-left: 15px;
        margin-right: 15px;
        height: calc(100% - 50px);
        transition: background 600ms ease;
        box-sizing: border-box;
        text-align: center;
}

.ux_service_item .item_content h3{
  font-family: "Motiva Sans", Sans-serif;
        font-weight: bold;
        font-size: 2rem;
        margin-bottom: 10px;
}

.ux_service_item .item_text{
  font-family: "Motiva Sans", Sans-serif;
  font-weight: 300;
}

.ux_service_item .item_text .item_kw{
  font-weight: bold;
  color: #06BFFF;
  font-size: 1.5rem;
}


/* .ux_service_item:hover .item_text:hover {
  background: rgba(29, 32, 36, 0.9);
} */