
.services__cards .cards img{
    width: 60px;
    height: 60px;
}

.services__cards{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px,1fr));
    gap: 15px;
}
 .services__cards .cards{
    border-radius: 24px;
    text-align: center;
    padding: 20px 30px;
}


.container__heading{
    text-align: center;
    padding-bottom: 15px;
    color: #e3e3e3;
    text-shadow: 0 0 10px black;
    font-size: 50px;
    font-weight: 600;
}
.services__cards .cards{
    border: 3px solid var(--o_cyan);
    color: var(--o_white);
    min-width: 350px;
    min-height: 350px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-direction: column;
    position: relative;
}
.services__cards .cards_image{
    position: absolute;
    top: 12px;
    left: 12px;
}
.services__cards .cards:nth-child(2) {
    border: 3px solid var(--o_white);
}
.services__cards .cards:nth-child(4) {
    border: 3px solid var(--o_white);
}
 .cards h3{

    font-size: 2rem;
    font-weight: 600;
}

.cards p{
    font-size: 1.3rem;
    font-weight: 100;

}
.cards a{
    border-radius: 4px;
    font-size: 2rem;
    color: var(--o_white);
}
.container .services__cards .cards a:hover{
}