
/* The Title Section */
#graphic_design_title {
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--Brand-Color-003);
    font-size: 22px;
}

.Logo {
    margin-bottom: 20px;
    width: 250px;
}

#graphic_design_gallery {
    background-color: #f4f4f4;
    margin-top: 20px;
    padding: 20px;
    text-align: center;
    transition: 0.5s ease-in-out;
}

.image-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: flex-end;
    /* Align items to the bottom */
}

.image-item {
    text-align: center;
    margin: 20px;
    width: 200px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    /* Align children to the bottom */
}

.image-item img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}

.image-item h3 {
    margin: 10px 0;
}

.image-item p {
    margin: 0;
    font-size: 16px;
}

.image-item:hover {
    flex-direction: column;
    cursor: pointer;
    transform: scale(1.25);
    background-color: #f4f4f4;
}

/* Call Back Section */
#callBackSection {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 25px 0;
    width: 100vw;
    min-height: 200px;
    color: var(--Brand-Color-001);
}

.callBackDiv {
    font-size: 20px;
}

.callBackDiv h2 {
    font-size: 40px;
}