/* Service cards */
.services_container{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 70px 0;
}

.services_heading{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-bottom: 20px;
    gap: 10px;
}

.services_heading > h1{
    width: 100%;
    text-align: center;
    color: var(--gold-primary);
}

.subheading{
    text-align: center;
}

.services{
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.services > .service_card:nth-child(1) {
    background-color: var(--gold-primary);
    color: white;
}

.services > .service_card:nth-child(2) {
    background-color: var(--blue-primary);
    color: white;
}

.services > .service_card:nth-child(3) {
    background-color: var(--whitegrey-background);
    color: black;
}

.service_card{
    width: 100%;
    max-height: 700px;
    height: 100%;
    display: flex;
    flex-direction: column;
    border-radius: 10px;
}

.servicecard_image{
    width: 100%;
    height: auto;
    max-height: 500px;
}

.servicecard_image > img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.servicecard_content{
    width: 100%;
    padding: 20px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.servicecard_content > h1{
    width: 100%;
    text-align: center;
    font-size: 30px !important;
}

.servicecard_content > p{
    width: 100%;
    padding: 15px;
}

/* Queries */
@media screen and (max-width: 900px) {
    .services{
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 600px) {
    .services{
        grid-template-columns: repeat(1, 1fr);
    }
}