.promotions-div {
    display: flex;
    padding-left: 1rem;
    padding-right: 1rem;
    flex-direction: column;
    padding-bottom: 5rem;
    max-width: 1100px;
    width: 100%;
}

.promotions-section {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.promotions-title {
    display: flex;
    align-items: center;
    max-width: 100%;
    justify-content: center;
    padding-bottom: 1.5rem;
    gap: 1rem;
}

.promotions-title hr {
    background-color: #1F74B7;
    border-radius: .5rem;
    width: 100%;
    border-color: #1F74B7;
    height: 4px;
}
.promotions-title h2 {
    font-weight: 700;
    line-height: 2rem;
}


.promotions-img {
    display: grid;
    gap: 2.5rem;
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.promotions-img img {
    transform: scale(1);
    transition: transform 0.3s ease-in-out;
}

.promotions-img img:hover {
    transform: scale(0.9);
}

.promotions-img article {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.promotions-img article a img {
    border-radius: 1rem;
    box-shadow: 0px 8px 5px rgba(0, 0, 0, 0.226);
    width: 100%;
}

.promotions-button {
    display: flex;
    height: 44px;
    width: 141px;
    background-color: #FF6B47;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    color: white;
    font-weight: 600;
    transition: box-shadow 0.3s ease-in-out;
}

.promotions-button:hover {
    box-shadow: 0px 8px 5px rgba(0, 0, 0, 0.226);
}

@media (min-width: 768px){
    .promotions-img {
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    place-items: center;
    margin: auto;
    width: 90%;
    }
    .promotions-div {
    width: 90%;
    }
}

@media (min-width: 1024px){
    .promotions-img {
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    place-items: center;
    margin: auto;
    width: 80%;
    }
    .promotions-title {
        justify-content: space-between;
        gap: 9rem;
        font-size: 1.875rem;
        padding-bottom: 2rem;
    }
}