#services_cnt>div {
    position: relative;
    float: left;
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
}

#services_cnt>div:first-child, #services_cnt>div:nth-child(2) {
    width: 47%;
    margin: 5px 1.5%;
}

#services_cnt>div:last-child {
    width: 97%;
    margin: 5px 1.5%;
}

#services_cnt>div>img {
    width: 100%;
}

#services_cnt>div>div {
    background: linear-gradient(to left, rgb(1 2 3 / .8), rgb(9 29 50 / .8));
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#services_cnt>div:hover>img {
    filter: blur(5px);
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
}

#services_cnt>div:hover>div {
    background: linear-gradient(to left, rgb(1 2 3 / .5), rgb(9 29 50 / .5));
    cursor: pointer;
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
}

#services_cnt>div>div>h3 {
    width: 100%;
    height: 60px;
    padding-right: 25px;
    color: gold;
    font-size: 25px;
    line-height: 120px;
}

#services_cnt>div>div>p {
    width: 100%;
    height: 180px;
    padding: 40px 15px;
    color: #bab9bb;
    line-height: 36px;
}

#services_cnt>div>div>a {
    display: inline-block;
    width: 150px;
    height: 40px;
    border: solid 1px #f9d40a;
    border-radius: 10px;
    margin-left: 20px;
    text-decoration:none;
}

#services_cnt>div>div>a>i {
    float: left;
    width: 39px;
    height: 39px;
    color: #f9d40a;
    line-height: 39px;
    font-size: 15px;
}

#services_cnt>div:first-child>div>a>i {
    font-size: 8px;
}

#services_cnt>div:nth-child(2)>div>a>i {
    font-size: 25px;
}

#services_cnt>div:last-child>div>a>i {
    font-size: 16px;
}

#services_cnt>div>div>a>span {
    float: left;
    width: calc(100% - 39px);
    padding-right:10px;
    color: #f9d40a;
    line-height: 39px;
    text-align: right;
    font-size: 13px;
}

#services_cnt>div>div>a:hover, #services_cnt>div>div>a:hover>i, #services_cnt>div>div>a:hover>span {
    color: #bab9bb;
    border-color: #bab9bb;
}

@media screen and (max-width: 1199.98px) {}

@media screen and (max-width: 991.98px) {
    #services_cnt>div:first-child, #services_cnt>div:nth-child(2), #services_cnt>div:last-child {
        width: 97%;
        margin: 10px 1.5%;
    }
}

@media screen and (max-width: 767.98px) {}

@media screen and (max-width: 575.98px) {
    #services_cnt>div {
        background: linear-gradient(to left, #010203cc, #091d32cc);
        height: auto;
    }
    #services_cnt>div>div {
        position: initial;
    }
    #services_cnt>div>div>h3 {
        height: 40px;
        line-height: 50px;
        font-size: 20px;
    }
    #services_cnt>div>div>p {
        height: auto;
        padding: 10px 20px;
        margin-bottom: 20px;
    }
}