/* banner-instagram */

.banner-instagram .social-description {
    margin-bottom: 30px;
    font-family: Amiri-Slanted, sans-serif;
    font-size: 1.75rem;
    line-height: 120%;
    letter-spacing: normal;
    font-weight: 400;
    color: #000;
    font-style: italic;
}

.banner-instagram a.black.link-button {
    max-width: fit-content;
    font-family: Barlow, sans-serif;
    font-size: .9375rem;
    font-weight: 700;
}

.banner-instagram .black-btn-container {
    margin-bottom: 20px;
    display: flex;
    justify-content: end;
}

.banner-instagram .social-img-group {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
    margin-right: auto;
}

.banner-instagram .img-wrapper {
    display: inline-block;
    overflow: hidden;
    width: 255px;
    height: 255px;
    border-radius: 10px;
    margin: 15px 0;
}

.banner-instagram .img-wrapper img {
    width: 255px;
    transform: scale(1);
    transition: transform 0.5s linear;
}

.banner-instagram .img-wrapper img:hover {
    transform: scale(1.2);
    transition: transform 0.5s linear;
}

@media only screen and (max-width: 992px) {
    .banner-instagram .img-wrapper {
        width: calc(50% - 30px);
    }
    .banner-instagram .img-wrapper img {
        width: 100%;
    }
}

@media only screen and (max-width: 768px) {
    .banner-instagram h2 {
        font-size: 2.5rem;
    }
    .banner-instagram .social-img-group {
        flex-direction: column;
        justify-content: center;
    }
    .banner-instagram .img-wrapper {
        margin-left: auto;
        margin-right: auto;
    }
    .banner-instagram .img-wrapper {
        width: calc(100% - 30px);
        height: auto;
    }
    .banner-instagram .img-wrapper img {
        width: 100%;
        height: auto;
    }
    .banner-instagram a.black.link-button {
        max-width: 100%;
        font-size: 1.3rem;
    }
}


/* END banner-instagram */