*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
  }


.product-link {
    width: 100%;
    background-color: var(--accentdark);
    padding: 20px;
    border-radius: 5px;
    margin-top: 20px;
    text-align: center;
}

.product-link a {
    text-decoration: none;
    color: var(--white);
}


.service-container2 {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.service-card {
    width: 340px;
    padding: 10px;
}

.service-card-info {
    width: 100%;
    height: 450px;
    display: flex;
    align-items: center;
    flex-direction: column;
    background-color: var(--lighttext);
    box-shadow: 2px 2px 5px rgb(0, 0, 0, 0.3);
    background-color: var(--white);
    border-radius: 5px;
}

.service-card-info img {
    width: 100%;
    height: 200px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    object-fit: cover;
}

.service-card-info h2 {
    width: 100%;
    height: 50px;
    margin-top: 0px;

}

.service-card-info a {
    text-decoration: none;
    margin-top: 10px;
    color: var(--navy);
}

.service-card-info p {
    margin-top: 10px;
    height: 200px;
    text-align: left;
    color: var(--navy);
    text-align: left;
    padding: 0px 15px;

}

.sample-btn {
    border: 1px solid var(--navy);
    background-color: transparent;
    color: var(--navy);
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 3px;
}

.sample-btn:hover {
    background-color: var(--navy);
    color: var(--lighttext);
}

.promo-details {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 5px;
}


.promo-details p {
    width: 100%;
    padding: 5px;
    font-size: 22px;
    font-weight: 600;
    text-align: center;
    color: var(--navy);
    background-color: var(--accentlight);
    border-radius: 5px 5px 0px 0px;
   
}

.promo-btn {
    position: absolute;
    text-decoration: none;
}



/*GALLERY */

.gallery-container {
    width: 100%;
}

.gallery-box {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.gallery-img {
    width: 400px;
    height: 400px;
    padding: 5px;
    display: flex;
    position: relative;
}

.gallery-img img {
    width: 100%;
    height: 100%;
    border-radius: 5px;
    object-fit: cover;
}

@media only screen and (max-width: 700px) { 

    .service-container2 {
        margin-bottom: 20px;
    }

    .service-card {
        width: 80%;
    }

    .gallery-img {
        width: 260px;
        height: 260px;
    }

    .promo-details p {
        font-size: 16px;
    }
    
    .product-link {
        width: 80%;
        font-size: 14px;
        padding: 10px;

    }

}



