.down ul {
    margin-bottom: 20%;
}

.down > p {
	text-transform:uppercase;
    margin-top: 70px;
    margin-bottom: 65px;
    font-size: 30px;
    line-height: 35px;
    font-weight: bold;
}

.down ul > li:first-child {
    border-top: 1px solid #ededed;
}

.down ul > li {
    position: relative;
    height: 80px;
    line-height: 80px;
    padding: 0 20px;
    box-sizing: border-box;
    border-bottom: 1px solid #ededed;
}

.down ul > li a {
    position: relative;
    display: block;
    font-size: 18px;
    transition: all .2s;
}

.down ul > li a::after {
    content:"";
    position: absolute;    
    width: 24px;
    height: 24px;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center center;
    background-image: url(../img/download.png);
}

.down ul > li:hover {
    background-color: #007338;
}

.down ul > li:hover a {
    color: white;
}

.down ul > li:hover a::after {
    background-image: url(../img/download_h.png);
}



@media (max-width:480px) {
.down > p{ font-size:20px; margin:5% 0;}
.down ul > li a{ font-size:15px;}
.down ul > li{ height:50px; line-height:50px;}
.down ul > li a::after{ background-size:15px;}
}

















