.full-nav ul li:nth-child(3){
    text-decoration: underline;
}
.service-list {
    position: relative;
    display: inline-block;
    margin-bottom: 150px;
}
.service-list img {
    width: 100vw;
    display: block;
    box-shadow: 10px 10px 5px 2px #a6776aaf;
    border-radius: 5px;
}

.service-text {
    background-color: #a6776a;
    width: 75%;
    position: absolute;
    top: 85%;
    left: 20px;
    padding: 10px;
    border-radius: 5px;
}

#fade-in-1 {
    animation: fadeIn 2s;
}
#fade-in-2 {
    animation: fadeIn 2.5s;
}
#fade-in-3{
    animation: fadeIn 3s;
}
#fade-in-4 {
    animation: fadeIn 3.5s;
}

@media only screen and (min-width:800px){

    .service-list img {
        width: 800px;
    }
}

@media only screen and (max-width:400px){
    .service-list{
        margin-bottom: 200px;
    }
}

@keyframes fadeIn {
    0% {opacity: 0;}
    100% {opacity: 1}
}