﻿.service-itm{
    display: flex;
    justify-content: space-between;padding: 55px 70px;
}
.service-itm-img, .service-itm-txt{
    width:48%
}
.service-itm-ttl{
    display: inline-block;
    background: #d0932d;
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    text-transform: uppercase;
    padding: 10px 30px;
    line-height: 1.5em;
    font-family: 'UTMAvo';
    transition: all 0.5s;
    margin-bottom: 20px;
}
.service-itm-sub{font-size:18px;}
.service-itm:nth-child(2n){background:#f8f8f8;}
.service-itm:nth-child(2n) .service-itm-txt{order:2;}
.service-itm-txt a{
display: inline-block;
    color: #fff;
    text-decoration: none;
    background: #07716b;
    padding: 12px 30px;
    text-transform: uppercase;
    text-align: center;
    position: relative;
    transition: all 0.5s;
}
.service-itm-txt a:hover {
  background: #d0932d;
  transform: translateY(-10px);
  -webkit-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.4);
  -moz-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.4);
  box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.4);
}
.service-itm-img{position:relative;z-index:1;}
.service-itm-img:before {
    position: absolute;
    left: -4%;
    top: 24%;
    height: 360px;
    width: 390px;
    background-image: url(/W_images/pattern.png);
    background-repeat: repeat;
    content: "";
    z-index: -1;
}
.service-itm:nth-child(2n) .service-itm-img:before {
    position: absolute;
    left:unset;
    right: -3%;
    top: 24%;
    height: 360px;
    width: 390px;
    background-image: url(/W_images/pattern-2.png);
    background-repeat: repeat;
    content: "";
    
}
@media screen and (max-width: 480px) {
.service-itm {
    display: block;
    justify-content: space-between;
    padding: 30px 20px;margin-bottom: 30px;
}
.service-itm-img, .service-itm-txt {
    width: 100%;
}
 .service-itm-txt {
    margin-bottom:20px;
}
 .service-itm-img:before {
    position: absolute;
    left: -9px;
    top: 30px;
    height: 267px;
    width: 360px;
    background-image: url(/W_images/pattern.png);
    background-repeat: repeat;
    content: "";
    z-index: -1;
}
 .service-itm:nth-child(2n) .service-itm-img:before {
    position: absolute;
    left: unset;
    right: -9px;
    top: 30px;
    height: 267px;
    width: 360px;
    background-image: url(/W_images/pattern-2.png);
    background-repeat: repeat;
    content: "";
}
}