.title-container {
    width: 20vw;
    padding: 50px;
    box-shadow: 0px 0px 20px black;
    border-radius: 20px;
    position: absolute;
    left: 50%;
    transform: translate(-50%,0);
    top: 80px;
    background-color: white;
}
.title {
    text-align: center;
    font-size: 80px;
    font-weight: 100;
    margin-top: 100px;
    margin-bottom: 100px;
    width: 90%;
    margin-left: 5%;
    color: #62A432;
}
.banner {
    width: 100vw;
    height: 50vh;
    margin-bottom: 100px;
    box-shadow: 0px 0px 50px black;
}
.service-container {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    background-color: #1B252F;
    padding-top: 100px;
}

.service {
    width: 30vw;
    margin-left: 15vw;
    padding: 20px;
    box-shadow: 0px 0px 15px rgb(39, 39, 39);
    margin-bottom: 100px;
    border-left: solid 3px #D3CECE;
    border-top: solid 3px #D3CECE;
    box-sizing: border-box;
}
.service-img {
    position: absolute;
}

.service-name {
    text-align: center;
    font-size: 30px;
    width: 90%;
    margin-left: 5%;
    margin-bottom: 30px;
    padding: 10px;
    box-shadow: 0px 0px 15px rgb(36, 36, 36);
    color: #62A432;

}
.service-description {
    font-size: 20px;
    text-align: center;
    color: #D3CECE;

}   

@media (max-width: 850px) {
    .service-img {
        width: 30px;
    }
    .banner {
        height: 25vh;
    }
    .title {
        font-size: 35px;
        margin-bottom: 30px;
        margin-top: 30px;
    }
    .service-name {
        font-size: 25px;
    }
    .service {
        width: 90%;
        margin: 0;
        margin-bottom: 50px;
        margin-left: 5%;
    }
}

@media (max-width: 550px) {
    .title-container {
        width: 15vw;
        padding: 20px;
        width: max-content;
    }  
    .service-name {
        font-size: 18px;
    }
    .service-description {
        font-size: 15px;
    }
}