.services{
    background: radial-gradient(circle, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 93%), url("../images/hexagon.jpg");
    width: calc(100% - 20px);
    font-family: 'Montserrat', sans-serif;
    color: white;
    padding: 10px 10px 50px;
    background-size: contain;
}
.services-container{
    margin: auto;
    width: 1200px;
}
.services-title{
    margin-left: 50px;
    margin-top: 30px;
    font-size: 30px;
    font-weight: 700;
}
.services-content{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
}
.services-point{
    background: url("../images/wash-car.jpg");
    background-size: cover;
    width: 320px;
    height: 220px;
    border: 2px solid darkred;
    border-radius: 5px;
    margin-top: 40px;
    margin-right: 10px;
    margin-left: 10px;
}
.services-point-title{
    height: 50px;
    width: calc(100% - 10px);
    background: rgba(0,0,0,0.7);
    padding-left: 10px;
    padding-top: 5px;
    font-size: 20px;
    font-weight: bold;
}
.services-point-desc{
    height: 0;
    width: calc(100% - 10px);
    background: rgba(0,0,0,0.7);
    padding-left: 10px;
    padding-top: 5px;
    transition: 0.3s;
    overflow: hidden;
}
.services-point-more{
    height: 0;
    width: calc(100% - 10px);
    padding-left: 10px;
    background: rgba(0,0,0,0.7);
    transition: 0.3s;
    overflow: hidden;
}
.services-point:hover .services-point-desc{
    height: 115px;
}
.services-point:hover .services-point-more{
    height: 45px;
}
.more-button{
    width: 120px;
    height: 30px;
    border-radius: 15px;
    background: #E31E24;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-top: 5px;
    cursor: pointer;
}
/*#sp-1{*/
/*    background: url(../images/price-list.jpg);*/
/*    background-size: cover;*/
/*}*/
/*#sp-2{*/
/*     background: url('../images/auto-detailing.jpg');*/
/*     background-size: cover;*/
/*}*/
/*#sp-3{*/
/*    background: url(../images/price-list.jpg);*/
/*}*/
/*#sp-4{*/
/*    background: url(../images/price-list.jpg);*/
/*}*/
/*#sp-5{*/
/*    background: url(../images/price-list.jpg);*/
/*}*/
/*#sp-6{*/
/*    background: url(../images/price-list.jpg);*/
/*}*/
@media(max-width: 1200px) {
    .services-container {
        width: 100%;
    }
}