@import url("https://fonts.googleapis.com/css2?family=Michroma&display=swap");
a{
    text-decoration: none;
}
.wrapper{
    padding: 125px 1 0 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.services{
    width: 1100px;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    margin: 0 auto;
}
.single-img{
    border-radius: 25px;
    display: flex;
    flex-direction: column-reverse;
    flex-wrap: nowrap;
    width: 325px;
    height: 400px;
    overflow: hidden;
    box-shadow: 5px 5px 20px rgba(0,0,0,0.3);
    transform: translate(0, 0);
    transition: .3s;
    margin: 25px;

}
.single-img:hover{
    transform: translate(0, -9px);
}
.img-one{
    background-image: url(ada1.png);
    background-size: cover;
    background-position: center center;
}
.img-two{
    background-image: url(ams1.png);
    background-size: cover;
    background-position: center center;
}
.img-text{
    background: linear-gradient(transparent,rgb(0, 0, 0),rgba(0, 0, 0, 0.981));
    padding:auto;
    width: 100%;
    height: auto;
    position: relative;
    transform: translate(0, 110px);
    line-height: 50px;
    transition: 0.5s ease;
    display: inline-block;
    text-align: center;
    color:#00eeff;
    font-family: "Michroma", sans-serif;

}
.img-text h4{
    line-height: 15px;
    padding: 0;
    margin: 16px 0;
    font-family: 'Alfa Slab One', cursive;
    font-size: 25px;
}
.services button{
    background: transparent;
    color: #fff;
    border: none;
    border-radius: 50px;
    line-height: 14px;
    display:inline-flexbox;
    margin-bottom: 10px;
}
.single-img:hover .img-text{
    transform: translate(0, 0);
}
.fa-linkedin-in{
    color: #0072b1;
    font-size: 40px;
    
}
.fa-github{
    color: #2b3137;
    font-size: 40px;
}
.fa-whatsapp{
    color: rgb(7, 94, 84);
    font-size: 40px;
}
.fa-instagram{
    color: rgb(225,48,108);
    font-size: 40px;
}

@media (max-width: 991px){
    .wrapper{
        padding: auto;
    }
    .services{
        width: 100%;
        display: flex;
        flex-direction: column;
    }
    a{
        margin-bottom: 15px;
    }
}
