.main-content {
    background-color: none;
    min-height: auto;
}

.main-content .main-content__wrapper {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    
    position: relative;
    top: -170px;
    background: none !important;
    padding: 100px 50px;
    height: auto !important;
    width: 80%;
    
}
.main-content .main-content__wrapper .service-item {
    width: 300px !important;
    height: 200px;
    margin: 20px;
    margin-bottom: 50px;
    text-decoration: none;
    color: black;
    font-weight: 400;

    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .4s all;
}

.main-content .main-content__wrapper .service-item:hover{
    transform: translateY(-50px);
    font-weight: bold;
}

.main-content .main-content__wrapper .service-item .text__wrapper{
    transition: 0.4s all;
}
.main-content .main-content__wrapper .service-item:hover .text__wrapper {
    background-color: rgba(255, 255, 255, 0.80);;
}


.main-content .main-content__wrapper .service-item .text__wrapper p{
text-align: center;
}

@media (max-width:  800px) {
    .main-content {
        background-color: none;
        min-height: auto;
    }
    .main-content .main-content__wrapper {
        padding: 0px;
        width: 90%;
        top: -120px;
        
    }
    .main-content .main-content__wrapper .service-item {
        width: 90%;

    }
}