footer{
    background: #060606;
}

.footerTop{
    display: flex;
    justify-content: center;
    background: #060606;
    padding: 40px 0;
}

.footerContainer{
    display: flex;
    justify-content: space-between;
}

.footerItem p{
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
}

.footerItem a{
    display: flex;
    width: 100%;
    margin-top: 12px;
    color: #fff;
    font-size: 14px;
    transition: .4s;
}

.footerItem a:hover{
    color: #A19467;
}

.footerBottom{
    display: flex;
    justify-content: center;
    padding: 10px 0;
    background: #A19467;
}

.footerBottomContainer{
    display: flex;
    justify-content: space-between;
    color: #fff;
}

.footerBottomContainer p{
    font-size: 14px;
}

.footerBottomContainer a{
    color: #fff;
    text-decoration: underline;
}

/* contacts */

.contacts{
    background: #010101;
    padding: 60px 0;
}

.contactTitle h2{
    color: #fff;
    font-size: 48px;
    font-weight: 100;
}

.contactContent{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contactForm{
    width: 420px;
}

.contactForm form{
    margin-top: 20px;
}

.contactForm input{
    border-bottom: 1px solid #fff;
    padding: 16px 0;
    width: 100%;
    color: #fff;
    margin-top: 10px;
}

.contactSubmitContent{
    display: flex;
    align-items: center;
    margin-top: 30px;
    width: 100%;
}

.contactSubmitContent input{
    width: auto;
    padding: 12px 24px;
    outline: none;
    border: 1px solid #A19467;
    margin: 0;
}

.contactSubmitContent p{
    color: #fff;
    font-size: 12px;
    margin-left: 10px;
}

.contactSubmitContent p a{
    color: #fff;
    text-decoration: underline;
}

.contactMap{
    display: flex;
    flex-grow: 1;
    height: 300px;
    border-radius: 20px;
    overflow: hidden;
    margin-left: 100px;
}


@media(min-width: 320px) and (max-width: 620px){
    
    .footerTop{
        padding: 20px 0;
    }
    
    .footerContainer{
        justify-content: center;
        flex-wrap: wrap;
    }

    .footerItem{
        width: 100%;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        margin: 25px 0;
    }
    
    .footerItem a{
        justify-content: center;
    }

    .footerBottomContainer{
        justify-content: center;
        flex-wrap: wrap;
    }

    .footerBottomContainer p:nth-child(2){
        margin-top: 10px;
    }

    /* contacts */

    .contactContent{
        flex-wrap: wrap;
    }

    .contactForm{
        width: 100%;
    }

    .contactForm form{
        margin-top: 20px;
    }

    .contactForm input{
        width: 100%;
        margin-top: 10px;
    }

    .contactSubmitContent{
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        margin-top: 20px;
        width: 100%;
    }

    .contactSubmitContent p{
        margin-left: 0;
        margin-top: 10px;
    }

    .contactMap{
        width: 100%;
        height: 320px;
        margin-left: 0;
        margin-top: 35px;
    }
}

@media(min-width: 620px) and (max-width: 980px){
    
    .footerTop{
        padding: 20px 0;
    }
    
    .footerContainer{
        justify-content: center;
        flex-wrap: wrap;
    }

    .footerItem{
        width: 48%;
        display: flex;
        justify-content: start;
        flex-wrap: wrap;
        margin: 25px 0;
    }
    
    .footerItem a{
        justify-content: start;
    }

    .footerBottomContainer{
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .footerBottomContainer p{
        width: 48%;
    }

    
    /* contacts */

    .contactContent{
        flex-wrap: wrap;
    }

    .contactForm{
        width: 100%;
    }

    .contactForm form{
        margin-top: 20px;
    }

    .contactForm input{
        margin-top: 10px;
    }

    .contactSubmitContent{
        display: flex;
        align-items: center;
        margin-top: 20px;
        width: 100%;
    }

    .contactSubmitContent p{
        margin-left: 10px;
    }

    .contactMap{
        width: 100%;
        height: 320px;
        margin-left: 0;
        margin-top: 35px;
    }
}