/*======================= VET CLINIC ============================*/
.vet__section {
    background-color: var(--secondary);
}

.vet__content {
    padding: 50px 0;
    row-gap: 50px;
    flex-direction: column;
    align-items: center;
}

.vet__content > .service__tile > h2 {
    color: var(--primary);
}

.vet__content > .service__tile::after {
    background-color: var(--primary);
}

/*======================= SERVICES ============================*/
.vet__service {
    width: 75%;
}

.vet__service__container {
    width: 100%;
    display: flex;
    flex-direction: column;
    row-gap: 50px;
    align-items: center;
}

.vet__service__thumbnail {
    width: 100%;
    padding: 15px 0;
}

.vet__service__thumbnail > img {
    width: 100%;
}

.vet__service__title {
    padding-top: 15px;
    width: 100%;
    text-align: center;
}

.vet__service__title > h2 {
    color: var(--primary);
}

/* For spaces */
@media screen and (min-width: 1000px) {
    .vet__content {
        row-gap: 100px;
        padding: 100px 0;
    }
    .vet__service__container {
        row-gap: 100px;
    }
}

/* For larger devices */
@media screen and (min-width: 800px) {
    .vet__service__container {
        flex-direction: row;
        justify-content: space-between;
    }
    .vet__service {
        width: 25%;
    }
}