.services-top-top {
    min-height: 90vh;
    margin: 5rem 0;
}

h2.header-title {
    font-size: 35px;
    color: #f5f823;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 7rem;
}

.scaling-card {
    background-color: #000;
    box-shadow: 0px 30px 30px rgba(0, 0, 0, 0.5);
    height: 400px;
    position: relative;
    margin-bottom: 2.5rem;
}

.scaling-card .content {
    position: absolute;
    bottom: 0;
    width: 80%;
    height: 5px;
    border-radius: 5px;
    left: 10%;
    text-align: center;
    overflow: hidden;
    background-color: #fbff00;
    transition: 0.5s;
}

.scaling-card:hover .content {
    height: 100%;
    width: 100%;
    left: 0%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
}

.scaling-card .content p,
.scaling-card .content a,
.scaling-card .content .header {
    opacity: 0;
    transition: 0.5s;
    text-align: center;
    width: 80%;
    color: #000;
    font-size: 17px;
}

.scaling-card .content .header {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
}

.scaling-card .content .header .logo {
    width: 30px;
    margin-top: 0;
    margin-right: 0.5rem;
    border-radius: 50%;
}

.scaling-card .content a {
    font-weight: bold;
    cursor: pointer;
}

.scaling-card:hover .content p,
.scaling-card:hover .content a,
.scaling-card:hover .content .header {
    opacity: 1;
    transition-delay: 0.5s;
}

.scaling-card .image-box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: 0.5s;
}

.scaling-card .image-box img {
    width: 100%;
    height: 100%;
    transition: 0.5s;
}

.scaling-card:hover .image-box img {
    opacity: 0;
}

.content-details{
    display: flex;
}

.flex-dir-col {
    flex-direction: column;
}

.mt-16 {
    margin-top: 16px !important;
}