/* START OF HOMEPAGE MID SECTION STYLING */

#home-mid-section {
    padding-top: 45px;
    padding-bottom: 67px;
}
#home-mid-section .container {
    display: grid;
    grid-template-columns: 677px auto;
}
@media screen and (min-width: 1700px) {
    #home-mid-section .container {
        max-width: 1646px;
        padding: 0;
    }
}
#home-mid-section .text-content {
    background-image: url("/images/home/bgrnd-home-welcome.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 15px 7px;
    text-align: center;
    color: var(--primary-color);
}
#home-mid-section h2 {
    color: #000;
    text-align: center;
    font-family: var(--archivo-font);
    font-size: 32px;
    font-weight: 300;
    line-height: 38px; 
    margin-bottom: 21px;
    max-width: 447px;
}
#home-mid-section h3 {
    font-size: 15px;
    text-align: center;
    font-size: 15px;
    font-weight: 500;
    line-height: 26px; 
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 21px;
}
#home-mid-section a.home-btn {
    width: 131px;
    height: 50px;
    border-bottom: 1px solid var(--primary-color);
    background: transparent;
    font-size: 16px;
    font-weight: 500;
    line-height: unset;
    letter-spacing: 0.48px;
    text-transform: uppercase;
    padding: 13px;
    border-radius: 0;
}
#home-mid-section a.home-btn:hover {
    color: var(--primary-color);
}

@media screen and (max-width: 1700px) and (min-width: 992px) {
    #home-mid-section .container {
        max-width: 95%;
        padding: 0;
    }
    #home-mid-section .image-content img {
        width: 100%;
    }
    #home-mid-section .container {
        grid-template-columns: auto 55%;
    }
}
@media screen and (max-width: 992px) {
    #home-mid-section .text-content {
        height: 364px;
        padding-inline: 20px;
        background-image: url(/images/home/home-welcome-mobile.jpg);
    }
    #home-mid-section .container {
        grid-template-columns: 1fr;
    }
    #home-mid-section .image-content img {
        width: 100%;
    }
}
@media screen and (max-width: 767px) {
    #home-mid-section {
        padding: 67px 0 31px;
        order: 3;
    }
    #home-mid-section .container {
        padding-inline: 0;
    }
    #home-mid-section h3 {
        font-size: 12px;
        line-height: 26px;
        letter-spacing: 2.4px;
        margin-bottom: 22px;
        margin-bottom: 11px;
    }
    #home-mid-section h2 {
        font-size: 24px;
        line-height: 28px;
    }
}
/* END OF HOMEPAGE MID SECTION STYLING */

/* START OF INSTA FEED STYLING */

#homepage #social-feed {
    padding-bottom: 53px;
	order: 5;
}

#social-feed {
    background: linear-gradient(180deg, #D2D2D2 0%, #FFF 100%);
    padding-top: 40px;
    padding-bottom: 72px;
    text-align: center;
}

@media screen and (min-width: 1200px) {
    #social-feed .container {
        max-width: 1099px;
        padding: 0;
    }
    #social-feed .posts {
        grid-template-columns: repeat(4, 1fr) !important;
    }
}
#social-feed h2 {
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 500;
    line-height: 26px; 
    letter-spacing: 0.18px;
    text-transform: uppercase;
    margin-top: 7px;
    margin-bottom: 46px;
}
@media screen and (max-width: 767px) {
    #homepage #social-feed {
        padding-bottom: 0;
    }
    #social-feed .container {
        padding-inline: 20px;
    }
    #social-feed {
        padding-bottom: 23px;
    }
    #social-feed h2 {
        font-size: 18px;
        font-weight: 400;
        line-height: 25px;
        letter-spacing: auto;
        margin-top: 4px;
        margin-bottom: 28px;
        font-family: var(--body-font);
        text-transform: none;
    }
}
/* END OF INSTA FEED STYLING */