/* Importing Font Files */
@font-face {
    font-family: 'Raleway';
    src: url('fonts/Raleway-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Raleway';
    src: url('fonts/Raleway-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}
@font-face {
    font-family: 'Raleway';
    src: url('fonts/Raleway-Black.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}
@font-face {
    font-family: 'Raleway';
    src: url('fonts/Raleway-Medium.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'Raleway';
    src: url('fonts/Raleway-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}
@font-face {
    font-family: 'Raleway';
    src: url('fonts/Raleway-Italic.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
}

/* Animation for headers */
@keyframes slideUpFadeIn {
    0% {
        opacity: 0;
        transform: translateY(60px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-header {
    opacity: 0; /* Ensure headers are hidden initially */
    animation: slideUpFadeIn .5s forwards; /* Apply the animation */
}

/* Animation for SUPPORT LOCAL sliding in from the right */
@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(200px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-support-local {
    opacity: 0;
    animation: slideInRight 0.5s forwards;
    animation-delay: var(--animation-delay);
}

/* Scaling up core value images on hover */
.value img {
    transition: transform 0.5s ease-in-out;
}

.value:hover img {
    transform: scale(1.5);
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Default Items */
body {
    color: #fff;
    font-family: 'Raleway', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #133870;
}
h2 {
    font-family: Raleway;
    font-weight: bold;
    color: #fff;
    margin-top: 0;
    margin-bottom: 30px;
    padding: 15px 0px;
    font-size: 2.5em;
}
h3 {
    color: #7fcbff;
    font-weight: 400;
    margin-bottom: 30px;
    padding: 0px 0px;
    font-size: 1.6em;
}
img {
    max-width: 100%;
    height: auto;
}

a{
    text-decoration: none;
    color: inherit;
}

a:hover{
    text-decoration: underline;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 20px;
    max-width: 1200px;
    margin: 0 auto;
}
.logo {
    height: 70px;
}

/* Navbar Styles */
.navbar {
    display: flex;
    z-index: 1000;
}
.navbar a {
    color: #fff; /* Default text color */
    text-decoration: none;
    margin-left: 20px;
    transition: color 0.3s ease; /* Smooth transition for color change */
}
.navbar a img {
    width: 20px;
    height: auto;
    margin: 0;
    padding: 0;
}
.navbar a:hover {
    color: #0386dd; /* Text color on hover */
}
.navbar a.current {
    font-weight: bold; /* Bold for active link */
}
.menu-toggle {
    display: none;
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
    color: #0e76bc;
}

/* Close menu button */
.close-menu {
    display: none;
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
    color: #0e76bc;
    align-self: flex-end;
}
.social-icons {
    margin-left: 10px;
}
.social-icons a {
    margin-left: 0;
}

/* Hero Banner */
.hero-banner {
    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: #f3f3f3;
    display: flex;
    justify-content: center;
    align-items: center;
}
.carousel {
    width: 100%;
    position: relative;
    overflow: hidden;
    max-width: 100%;
    margin: 0 auto;
}
.carousel .slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%; /* Assuming you have 4 slides */
    will-change: transform;
}
.carousel .slide {
    position: relative;
    width: 100%;
    flex-shrink: 0;
    overflow: hidden; /* Ensure no overflow */
}
.carousel .slides img {
    width: 100%;
    object-fit: cover;
}
.carousel img {
    display: block;
}
.carousel-indicators {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
}
.carousel-indicators .indicator {
    width: 10px;
    height: 10px;
    background-color: #fff;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
}
.carousel-indicators .indicator.active {
    background-color: #8dc63f;
}
/* Carousel Arrows */
.arrow {
    color: #fff;
    position: absolute;
    top: 50%;
    font-size: 1.8em;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 900;
}
.arrow.prev {
    left: 20px;
}
.arrow.next {
    right: 10px;
}
.scroll-arrow {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 4em;
    color: #fff;
    cursor: pointer;
    animation: bounce 2s infinite;
}
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-15px);
    }
    60% {
        transform: translateX(-50%) translateY(-10px);
    }
}
/* CTA Button */
.cta-button {
    position: absolute;
    bottom: 32%;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 20px;
    background-color: #8dc63f;
    color: #fff;
    text-decoration: none;
    font-size: 1.5em;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}
.cta-button:hover {
    background-color: #74a62d;
}

/* Sections */
.section {
    padding: 25px 20px 40px 20px;
    margin: 0 auto;
    text-align: center;
}
.grid {
    display: grid;
    gap: 5px;
    justify-items: center;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 25px 15px; /* Add some padding for better alignment */
}


/* About Us */

.about-us{
    background-image: url('images/bg_about.png'); /* Your transparent image */
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover; /* Ensures the image scales properly */
}

.about-section {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;

}
.about-section img {
    width: 50%;
    margin-right: 20px;
}

.about-text{
    padding: 0 10px;
}
/* Support Local */

.support-local {
    background: #2c4707;
    color: #ffa620;
    background-image: url('images/bg_located.png'); /* Your transparent image */
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover; /* Ensures the image scales properly */
}

.support-local h2, .support-local h2 span {
    color: #ffa620;
}

.values-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.value {
    width: 22%;
    text-align: center;
}
.value .icon {
    margin-bottom: 10px;
}
.value img {
    width: 100px;
    height: auto;
}



/* Recent Work */

.recent-work{
    background-color: #133870;
    background-image: url('images/bg_gallery.png'); /* Your transparent image */
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover; /* Ensures the image scales properly */
}
/* Full-width background for Recent Work section */
.full-width-background {
    width: 100%;
    padding: 30px 0; /* Adjust padding as necessary */
    box-sizing: border-box;
}
.recent-work-inner {
    max-width: 1300px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px; /* Add padding to center the content */
}
.recent-work h2 {
    color: white;
}

/* Gallery styles */
.gallery-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center; /* Center the gallery container */
}
.gallery-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative; /* Added to ensure arrows are positioned correctly */
}
.gallery {
    display: flex;
    transition: transform 1s linear;
    gap:10px;
    margin-top: 10px;
}
.gallery img {
    width: 100%; 
    height: auto;
    border-radius: 5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.gallery-arrow {
    color: #fff;
    top: 50%;
    font-size: 2em;
    transform: translateY(-9%);
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 1000;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.gallery-prev {
    left: -50px; /* Move it outside the left boundary */
}
.gallery-next {
    right: -50px; /* Move it outside the right boundary */
}



/* Products */
.promo-products {
    background-color: #ffffff;
    padding: 15px 0; /* Add padding to make the section look better */
}
.promo-products h2,
.promo-products .product-details {
    color: #133870;
}
.promo-products h3{
 color: #133870;   
}
.button {
    padding: 10px 20px;
    border-radius: 8px;
    background-color: #133870;
    color: white;
    cursor: pointer;
    width: 150px; /* Set a fixed width for the buttons */
    height: 70px;
    box-sizing: border-box;
    font-size: 1em;
    font-weight: bold;
    display: flex; /* Enable flexbox */
    flex-direction: column; /* Arrange items vertically */
    align-items: center; /* Center items horizontally */
    justify-content: center; /* Center items vertically */
    text-align: center; /* Ensure text is centered */
}
.product-button {
    padding: 10px 20px;
    border-radius: 5px;
    background-color: #133870;
    color: white;
    cursor: pointer;
    text-decoration: none;
    margin-top: 20px;
    margin-right: auto;
    margin-left: auto;
    width: 400px;
    height: 60px;
    text-align: center;
    box-sizing: border-box;
    font-size: 1.2em;
    font-weight: bold;
    display: flex; /* Enable flexbox */
    flex-direction: column; /* Arrange items vertically */
    align-items: center; /* Center items horizontally */
    justify-content: center; /* Center items vertically */
}

.backto-button {
    padding: 10px 20px;
    border-radius: 5px;
    background-color: #133870;
    color: white;
    cursor: pointer;
    text-decoration: none;
    margin: 0 auto;
    width: 200px;
    height: 30px;
    text-align: center;
    box-sizing: border-box;
    font-size: 1.2em;
    font-weight: bold;
    display: flex; /* Enable flexbox */
    flex-direction: column; /* Arrange items vertically */
    align-items: center; /* Center items horizontally */
    justify-content: center; /* Center items vertically */
}

.range-button {
    padding: 10px 20px;
    border-radius: 5px;
    background-color: #0386dd;
    color: white;
    cursor: pointer;
    text-decoration: none;
    margin: 0 auto;
    width: 600px;
    height: 30px;
    text-align: center;
    box-sizing: border-box;
    font-size: 1.2em;
    font-weight: bold;
    display: flex; /* Enable flexbox */
    flex-direction: column; /* Arrange items vertically */
    align-items: center; /* Center items horizontally */
    justify-content: center; /* Center items vertically */
}

.button:hover, .button.active {
    background-color: #0e76bc;
    color: white;
    box-shadow: 0px 5px 15px rgba(0,0,0,0.2);
    transform: translateY(-2px);
}

.product-button:hover {
    background-color: #0e76bc;
    color: white;
    box-shadow: 0px 5px 15px rgba(0,0,0,0.2);
    transform: translateY(-2px);
}

.promo-products a {
    text-decoration: none;
}

.button-text {
    display: block; /* Ensure text is treated as block-level element */
}
.product-about-section {
    display: flex;
    gap: 20px;
    text-align: left;
    padding: 30px;
}
.product-details {
    text-align: left;
    margin-top: 50px;
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap; /* Allows wrapping on smaller screens */
}
.product-details strong{
    color: #5cbdfd;
}
.product-description {
    max-width: 60%; /* Adjust the width as needed */
    flex: 1 1 auto; /* Allows the description to resize */
}
/* Ensure the images and text align properly */
.productimage {
    max-width: 50%; /* Adjust the width as needed */
    height: 50%;
    flex: 1 1 auto; /* Allows the image to resize */
}
.product-description h3 {
    margin: 0;
    padding: 0;
    padding-left: 10px;
}
.product-description p {
    margin: auto 0;
    padding: 10px 12px;
    text-align: left;
}
.product-description div img {
    width: 10%;
    height: 10%;
    margin: 4px 10px;
}

/*Services*/
.printing-services {
    padding: 15px 0; /* Add padding to make the section look better */
    background-image: url('images/bg_printing.png'); /* Your transparent image */
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover; /* Ensures the image scales properly */
}
.printing-services h2,
.printing-services .product-details {
    color: #fff;
}
.printing-services h3{
    text-transform: uppercase; 
    color: #fff;   
}
.button2 {
    padding: 10px 20px;
    border-radius: 8px;
    background-color: #fff;
    color: #133870;
    cursor: pointer;
    width: 150px; /* Set a fixed width for the buttons */
    height: 70px;
    box-sizing: border-box;
    font-size: 1em;
    font-weight: bold;
    display: flex; /* Enable flexbox */
    flex-direction: column; /* Arrange items vertically */
    align-items: center; /* Center items horizontally */
    justify-content: center; /* Center items vertically */
    text-align: center; /* Ensure text is centered */
}
.button2:hover, .button2.active {
    background-color: #0e76bc;
    color: white;
    box-shadow: 0px 5px 15px rgba(0,0,0,0.2);
    transform: translateY(-2px);
}

.service-button {
    padding: 10px 20px;
    border-radius: 5px;
    background-color: #0e76bc;
    color: white;
    cursor: pointer;
    text-decoration: none;
    margin-top: 20px;
    margin-right: auto;
    margin-left: auto;
    width: 400px;
    height: 60px;
    text-align: center;
    box-sizing: border-box;
    font-size: 1.2em;
    font-weight: bold;
    display: flex; /* Enable flexbox */
    flex-direction: column; /* Arrange items vertically */
    align-items: center; /* Center items horizontally */
    justify-content: center; /* Center items vertically */
}

.service-button:hover {
    background-color: #fff;
    color: #133870;
    box-shadow: 0px 5px 15px rgba(0,0,0,0.2);
    transform: translateY(-2px);
}

.printing-services a {
    text-decoration: none;
}

/* Seasonal Brochures Section */
.seasonal-brochures {
    background-color: #fff;  /* Optional: set a background color */
    padding: 40px 0;
    text-align: center;
}

.seasonal-brochures h2 {
    color: #133870;  /* Same color scheme as the site */
    font-size: 2.5em;
    margin-bottom: 20px;
}

.brochures-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.brochure-item {
    display: block;
    width: 250px;  /* Adjust as per your design */
    transition: transform 0.3s ease;
}

.brochure-item img {
    width: 100%;
    height: auto;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.brochure-item:hover {
    transform: scale(1.05);
}

/* OUR CLIENTS section */
.our-brands {
    text-align: center;
    padding: 50px 0;
    background-color: #fff;
}

.our-brands h2{
    color: #133870;
}

.our-brands .brands-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.our-brands .brands-container img {
    max-width: 120px;
    height: auto;
}

.glossary{
    background-color: rgb(252, 236, 217);
}

.glossary h2{
    color: #133870;
}

.glossary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 20px;
    padding: 20px;
}

.glossary-item {
    padding: 20px;
    text-align: center;
    cursor: pointer;
    border-radius: 10px;
    color: #133870;
}

.glossary-item:hover {
    color: #2c2c2c;
    font-weight: bold;
}

.glossary-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.glossary-modal h2{
    color: #133870;
    margin-bottom: 20px;
}
.glossary-modal-content {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    max-width: 500px;
    text-align: center;
    position: relative;
    color: #133870;
}

.glossary-modal-content p{
    margin-bottom: 40px;
    padding: 0 30px;
}

.glossary-modal img {
    max-width: 100px;
    margin-bottom: 20px;
}

.close-btn {
    position: relative;
    top: -10px;
    right: -235px;
    font-size: 2em;
    cursor: pointer;
    color: #133870;
}

.close-btn:hover {
    color: red;
}




/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #0e76bc;
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    display: none;
    z-index: 1000;
}
.back-to-top:hover {
    background-color: #aaaca7;
}

/* Footer Styles */
.footer {
    color: #fff;
    padding: 20px;
}
.footer-content {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}
.footer-left {
    flex-direction: column;
    align-items: flex-start;
}
.footer .contact-info {
    margin-top: 10px;
}
.footer .contact-info div {
    margin-bottom: 10px;
}
.footer .social-icons {
    margin-left: 0;
}
.footer .social-icons a {
    color: #fff;
}
.footer-right iframe {
    width: 500px;
    height: 250px;
    border: 0;
}

/* Modal styles */
.emailmodal {
    display: none; 
    position: fixed; 
    z-index: 1; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: auto; 
    background-color: rgb(0,0,0); 
    background-color: rgba(0,0,0,0.4); 
}

.emailmodal-content {
    background-color: #133870;
    color: #fff;
    margin: 15% auto; 
    padding: 20px;
    border: 1px solid #888;
    width: 80%; 
    max-width: 500px;
    text-align: center;
}

.email-close-btn {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.email-close-btn:hover,
.email-close-btn:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

#companyInput {
    width: 80%;
    padding: 10px;
    margin: 10px 0;
}

#emailInput {
    width: 80%;
    padding: 10px;
    margin: 10px 0;
}

button[type="submit"] {
    padding: 10px 20px;
    background-color: #0386dd;
    color: white;
    border: none;
    cursor: pointer;
}

button[type="submit"]:hover {
    background-color: #45a049;
}

/* Media Queries for Responsivity */
@media (max-width: 1200px) {
    .header, .section {
        padding: 20px;
    }
    .hero-banner {
        height: 350px;
    }

}

@media (max-width: 768px) {
    h2{
        font-size: 1.5em;
        margin: 0;
    }

    h3{
        margin: 0;
    }
    
    .header {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 10px 20px;
    }

    .logo {
        order: 1;
    }

    .navbar {
        display: none;
        flex-direction: column;
        align-items: flex-start;
        background-color: #fff;
        position: absolute;
        top: 70px;
        right: 0px;
        width: 40%;
        box-shadow: 0 8px 16px rgba(0,0,0,0.1);
        z-index: 1000;
        padding: 15px 0;
    }
    .navbar a {
        margin: 4px 6px;
        width: calc(100% - 40px);
        text-align: right;
        color: #133870;
    }
    .navbar.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
        order: 2;
    }

    .navbar.active .close-menu {
        display: block;
    }

    .social-icons {
        margin-top: 10px;
        display: none;
    }
    .hero-banner {
        height: 340px;
    }

    .cta-button {
        position: absolute;
        bottom: 22%;
        left: 50%;
        transform: translateX(-50%);
        padding: 10px 20px;
        font-size: .75em;
        border-radius: 5px;
        transition: background-color 0.3s ease;
    }

    .scroll-arrow {
        display: none;
    }

    .container{
        padding: 15px;
    }

    .grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-section {
        flex-direction: column;
        text-align: center;
        text-align: left;
    }
    .about-section img {
        margin-right: 0;
        margin-bottom: 20px;
        margin-top: 12px;
        width: 100%;
    }

    .value {
        width: 30%;
    }
  
    
    .button {
        width: calc(50% - 20px); /* Ensure buttons are half-width on smaller screens */
        height: 45px;
        margin: 10px 10px; /* Adjust margins for consistent spacing */
        font-size: .8em;
    }

    .button2 {
        width: calc(50% - 20px); /* Ensure buttons are half-width on smaller screens */
        height: 45px;
        margin: 10px 10px; /* Adjust margins for consistent spacing */
        font-size: .8em;
    }

    .product-details {
        margin-top: 10px;
    }

    .product-about-section {
        padding: 10px;
    }

    .range-button{
        width: 300px;
        font-size: .95em;
    }

    .seasonal-brochures h2 {
        font-size: 1.5em;
        margin-bottom: 0;
    }
    
    .brochures-grid {
        display: flex;
        justify-content: center;
        gap: 10px;
        flex-wrap: nowrap;
        flex-direction: row;
    }

    .glossary-grid {
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
        gap: 6px;
        padding: 20px;
        text-align: center;
        justify-content: center;
    }

    .glossary-item {
        padding: 5px;
        text-align: center;
    }

    .glossary-modal{
        width: 77%;
    }

    .close-btn {
        right: -156px;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
    }
    .footer-right iframe {
        width: 100%;
        height: 150px;
    }
    
    .product-about-section {
        flex-direction: column;
        align-items: center;
        margin: auto;
    }

    .product-about-section img{
        max-width: 100%;
        height: auto;
        flex: none;
    }

    .product-description {
        max-width: 100%;
        flex: none; /* Prevents flex resizing */
    }

    .product-description {
        text-align: center;
    }

    .product-button {
        width: 265px;
    }
    
    .our-brands .brands-container img {
        margin-bottom: 20px;
    }
}

@media (max-width: 540px) {
    .hero-banner {
        height: 160px;
    }
}


@media (max-width: 480px) {
    h2 {
        text-transform: uppercase;
        color: #fff;
        padding: 10px 0px;
    }

    h3 {
        padding: 10px 0px;
        font-size: 1.2em;
    }

    .header, .section {
        padding: 10px;
    }
    .hero-banner {
        height: 169px;
    }
    .grid {
        grid-template-columns: 1fr;
    }
    .about-section img {
        margin: 0 auto;
    }
    .button {
        width: 80%; /* Full width for buttons on very small screens */
        margin: 0;
    }

    .button2 {
        width: 80%;
        margin: 0;
    }

    .product-about-section {
        max-width: 265px;
    }

    .our-brands .brands-container {
/*        display: grid;*/
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        justify-items: center;
    }

    .our-brands .brands-container img {
        margin-bottom: 0;
        max-width: 80px;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer-right iframe {
        width: 100%;
        height: 150px;
    }
}

@media (max-width: 375px) {
    .hero-banner {
        height: 158px;
    }
    .product-about-section {
        max-width: 235px;
    }
    .product-button {
    width: 230px;
}

}

@media (max-width: 345px) {
    .hero-banner {
        height: 150px;
    }

}


@media (min-width: 1024px) {
    .grid {
        grid-template-columns: repeat(8, 1fr);
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .grid {
        grid-template-columns: repeat(2, 1fr);
    }
}