@media (min-width: 922px) {
    .site-content .ast-container {
        display: flex;
        justify-content: center;
        background-color: #f6f1eb;
    }
}
@media (min-width: 922px) {
    .ast-container {
        max-width: 3252px;
    }
}
.contact{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 50px;
    margin: 80px;
    width: 75%;
    gap: 20px;
    /*border: 1px solid #333333;*/
    /*border-radius: 50px;*/
    img {
        width: 55%;
        border-radius: 35px;
        margin-bottom: 20px;
    }
}
.contact-us{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border: 5px ridge black;
    div{
        display: flex;
        flex-direction: row;
        justify-content: center;
        img{
            width: 15%;
        }
        a{
            color: #1a1a1a;
            font-size: 20px;
            text-decoration: none;
            transition: all 0.25s ease;
            &:hover{
                font-size: 30px;
                color: #593723;
            }
        }

    }
}
@media (max-width: 768px){
    .contact{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 10px;
        margin: 10px;
        width: 90%;
        gap: 20px;
        /*border: 1px solid #333333;*/
        /*border-radius: 50px;*/
        img {
            width: 85%;
            border-radius: 35px;
            margin-bottom: 20px;
        }
    }
}