


.services-container{
    width: 100%;
    display: flex;
    justify-content: center;
}

.services{
    width: 800px; 
    height: min-content;
    /* background-color: red; */
    /* outline: 2px dashed red; */
}
.services-services{
    margin-top: 20px;
    margin-bottom: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: min-content min-content;
    gap: 20px;

}
.services-services > a{
    text-decoration: none;
    text-align: center;
    font-size: 20px;
    background-color: var(--black);
    color: white;
    padding: 4px 0px;
    box-shadow: 4px 4px 0px 0px rgb(134, 131, 131);
    border: 2px var(--blue2) solid;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    
}
.services-services > a > svg{
    fill: var(--white);
    height: 20px;
}



/* ! DESC */

.services-desc{
    display: flex;
    gap: 28px;
    width: 100%;
    /* background-color: red; */
    height: max-content;
    margin-top: 60px;
}
.services-desc .text{
    flex: 1;
    display: flex;
    flex-direction: column;
}
.services-desc .text > span{
    color: var(--blue2);
    font-size: 20px;
    /* font-weight: bold; */
    font-family: "Montserrat", Verdana, sans-serif;

}
.services-desc .text h2{
    color: var(--white);
    font-size: 28px;
    font-family: "Montserrat", Verdana, sans-serif;

}
.services-desc .text p{
    color: var(--white);
    font-size: 18px;
}
.services-desc .text p > span{
    color: var(--blue2);
    font-weight: bold;
    /* text-transform: uppercase; */
}
.services-desc .text p > strong{
    color: white;
}
.services-desc .text > p.small{
    margin-top: 20px;
}
.services-desc .img-container{
    flex: 1;
    /* outline: 2px dashed red; */
    height: auto;
    width: 100%;
}
.services-desc .img-container img{
    height: 400px;
    width: 100%;
    object-fit: cover;
}
.services-desc .text .CTA{
    width: max-content;
    color: white;
    margin-top: 12px;
}


@media screen and (max-width: 830px){
    .img-container{
        display: none;
    }
    .services-desc .text{
        padding: 10px 26px;
    }
    .services-services{
        padding: 10px 26px;
    }
}
@media screen and (max-width: 570px){
    .services-services{
        display: flex;
        flex-direction: column;
    }
}