.instagram-container{
    max-width: 1250px;
    margin: 100px auto 50px auto;
    padding: 0 15px;
}

.instagram-container > a{
    text-decoration: none;
}

.instagram-container > a > h2{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    font-size: 28px;
    font-weight: 500;
    text-align: center;
    margin: 0 0 25px 0;
}

.instagram-container > a > h2 > img{
    width: 30px;
    height: auto;
    margin-bottom: -2px;
}

.instagram-container > a:hover > h2{
    color: var(--rozeDefaultHover);
    transition: .2s ease;
}

@media only screen and (max-width: 1237px) {
    .instagram-container > a > h2 {
        font-size: 26px;
    }
}

#footer > .top{
    background-color: #fff4f8;
    border-top: 2px solid #ffbcd4;
    border-bottom: 2px solid #ffbcd4;
}

#footer > .top > div{
    max-width: 1250px;
    margin: 0 auto;
    padding: 25px 15px;
}

#footer > .top .swiper-wrapper{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#footer > .top .swiper-slide{
    width: 180px;
    height: auto;
    display: flex;
    align-items: center;
    gap: 8px;
}

#footer > .top .swiper-slide > p{
    font-size: 15px;
    font-weight: 500;
    margin: 0;
}

#footer > .top .swiper-slide > img{
    width: 40px;
    height: auto;
    background-color: var(--rozeDefault);
    border-radius: 100%;
    padding: 6px;
}


@media only screen and (max-width: 850px){
    #footer > .top .swiper-wrapper{
        justify-content: initial;
    }

    #footer > .top .swiper-slide{
        width: auto;
        justify-content: center;
    }
}

@media only screen and (max-width: 650px){
    #footer > .top .swiper-slide > p{
        font-size: 17px;
    }
    
    #footer > .top .swiper-slide > img{
        width: 36px;
        padding: 6px;
    }
}


#footer > .middle{
    background-color: var(--rozeDefault);
}

#footer > .middle > div{
    max-width: 1250px;
    margin: 0 auto;
    padding: 100px 15px 25px 15px;
    display: grid;
    grid-template-columns: 20% 20% 20% 20%;
    justify-content: space-between;
}


#footer > .middle > div > ul li h2{
    font-size: 26px;
    font-weight: 500;
    color: #ffff;
    margin: 0 0 10px 0;
}

#footer > .middle > div > ul li a,
#footer > .middle > div > ul li p{
    display: block;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.3;
    color: #ffff;
    text-decoration: none;
    padding: 6px 0;
}

#footer > .middle > div > ul li a:hover{
    color: var(--rozeDefaultHover);
    transition: .2s ease;
}

#footer > .middle > div > ul li p span{
    font-size: 12px;
    font-weight: 400;
    margin: 5px 0;
    display: block;
}

#footer > .middle > .socials{
    display: flex;
    padding: 15px 15px 50px 15px;
}

#footer > .middle > .socials > ul{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

#footer > .middle > .socials > ul li a{
    background-color: red;
    border: 1px solid #0047bc;
    width: 50px;
    height: 50px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
}

#footer > .middle > .socials > ul li a > img{
    width: 25px; 
    height: auto;
}

#footer > .middle > .socials > ul li a:hover{
    opacity: .7;
    box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
    transition: .2s;
}

#footer > .middle > .socials > ul li a.instagram{
    background-color: #8134af;
    border: 1px solid #6e1d9e;
}

#footer > .middle > .socials > ul li a.facebook{
    background-color: #1877F2;
    border: 1px solid #0047bc;
}

#footer > .middle > .socials > ul li a.tiktok{
    background-color: #252525;
    border: 1px solid #000;

}

#footer > .middle > .socials > ul li a.pinterest{
    background-color: #bd081c;
    border: 1px solid #8b010f;
}


#footer > .bottom{
    background-color: #ffff;
}

#footer > .bottom > div{
    max-width: 1250px;
    margin: 0 auto;
    padding: 25px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 35px;
}

#footer > .bottom > div .betaalmethodes{
    width: 55%;
    height: auto;
}

#footer > .bottom > div .betaalmethodes.mobile{
    display: none;
}

#footer > .bottom > div #copyright{
    font-size: 12px;
    font-weight: 200;
    font-family: "Onest";
    line-height: 1.3;
    color: #5c5c5c;
}

@media only screen and (max-width: 950px) {
    #footer > .middle > div{
        grid-template-columns: 45% 45%;
        gap: 50px;
    }
    
    #footer > .bottom > div{
        align-items: baseline;
    }
    
    #footer > .bottom > div .betaalmethodes{
        width: 90%;
    }
}

@media only screen and (max-width: 450px) {
    #footer > .middle > div{
        grid-template-columns: 100%;
        padding: 75px 15px 35px 15px;
    }
    
    #footer > .middle > .socials > ul{
        grid-template-columns: 43% 43%;
        gap: 25px;
    }
    
    #footer > .bottom > div .betaalmethodes{
        display: none;
    }

    #footer > .bottom > div .betaalmethodes.mobile{
        display: block;
    }
}