.s7-wrap {
    margin-top: 40px;
    background-color: #023A15;
    text-align: center;
    position: relative;
}
.s7-wrap-text {
    padding-top: 120px;
    font-size: 20px;
    color: white;
}
.s7-wrap-icons {
    max-width: 1200px;
    margin: 0 auto;
    padding: 64px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.s7-wrap-icons__item {
    margin-bottom: 30px;
    margin-right: 40px;
}
.s7-go-top {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -20px;
    margin-left: auto;
    margin-right: auto;
    width: 40px;
}
.s7-icon {
    width: 40px;
    height: 40px;
    background-color: #023A15;
    color: white;
    cursor: pointer;
    text-align: center;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .7s;
}
.s7-icon:hover {
    color: #76C741;
    font-weight: bold;
}
@media screen and (max-width: 700px){
    .s7-wrap-text {
        padding-top: 40px;
    }
    .s7-wrap-icons__item {
        max-width: 320px;
    }
}
@media screen and (max-width: 400px){
    .s7-wrap-icons__item {
        box-sizing: border-box;
        margin: 0 auto;
        padding: 10px;
    }
    .s7-wrap-icons__item img {
        width: 100%;
    }
}

