.list {
    position: relative;
    margin: 2rem 0;
}
.service-box{
   position: relative;
	padding: 50px 30px;
    background: #fff;
    margin-bottom: 30px;
    box-shadow: 5px 5px 20px 0 rgba(0,0,0,0.05);
	z-index: 0;
}

.service-box:before{
	content: attr(data-name);
    position: absolute;
    font-size: 100px;
    right: 30px;
    top: 30px;
    line-height: 80px;
    font-weight: 700;
    color: #000;
    opacity: 0.05;
	transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
}
.service-box:after {
    content: "";
    height: 100%;
    width: 0;
    background-color: var(--main);
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1;
    transform-origin: left;
    -moz-transform-origin: left;
    -ms-transform-origin: left;
    -webkit-transform-origin: left;
    -o-transform-origin: left;
    transition: all 0.8s;
    -moz-transition: all 0.8s;
    -webkit-transition: all 0.8s;
    -ms-transition: all 0.8s;
    -o-transition: all 0.8s;
}
.service-box:hover,
.service-box:hover:before
{
	color:white;
}
.service-box:hover:before{
	opacity:0.2;
}
.service-box:hover:after {
    width: 100%;
    left: 0;
    right: auto;
    transform-origin: right;
    -moz-transform-origin: right;
    -ms-transform-origin: right;
    -webkit-transform-origin: right;
    -o-transform-origin: right;
}

.service-box>.icon{
	margin-bottom: 25px;
}
.service-box>.icon>a{
-webkit-transition: all 0.5s linear;
    -moz-transition: all 0.5s linear;
    -ms-transition: all 0.5s linear;
    -o-transition: all 0.5s linear;
    transition: all 0.5s linear;
}
.service-box>.icon>a>img{
	width: 70px;
  height: 70px;
  object-fit: contain;
  margin-bottom: 20px;
	transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
}

.service-box>a.text {
    overflow: hidden;
}
.service-box>a.text>h2{
  font-weight: 600;
	margin-bottom: 15px;
}
.service-box>.text>p{

}
.service-box>a.text:hover {
    color: white;
}


.sidebar{
    background-color: white;
    padding: 1rem;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.sidebar-form{
    margin-bottom: .5rem;
}


.sidebar-form>h3{
    margin-bottom: 20px;
    font-weight: 500;
    position: relative;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.sidebar-form>h3:after {
    border-radius: 0;
    bottom: -2px;
    content: "";
    display: inline-block;
    height: 3px;
    left: 0;
    margin: 0;
    position: absolute;
    vertical-align: bottom;
    width: 50px;
    background-color: var(--main);
}

.sidebar form> dl{
    display: grid;
    grid-template-columns: 20% 78%;
   
}

@media(max-width:767px){
    .sidebar{
       display: none; 
    }

}