.contact{
    padding: var(--half-space) 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--bg-color1);
    color: var(--script-color1);
}

.contact-info{
    display: flex;
    gap: 100px;
    max-width: var(--max-width);
    justify-content: center;
    width: 100%;
    margin: auto;
    
}

.owner{
    width: 30%;
}

.portrait{
    width: 100%;
    border-radius: 20px;
}

.office{
    display: flex;
    flex-direction: column;
}

.owner-details{
    display: flex;
    flex-direction: column;
}

.owner-details-green{
    color: var(--main-color);
}

.adress{
    width: 30%;
}

.adress a{
    color: var(--main-color);
    text-decoration: none;
    transition: all 1s ease-in-out;
}

.adress a:hover{
    text-decoration: underline;
    transition: all 1s ease-in-out;
}

.adress h3{
    margin-block-start: 40px;
    margin-block-end: 10px;
}

.showroom{
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
}

@media (max-width: 1100px){
    .contact-info{
        justify-content: space-between;
    }

    .adress{
        width: fit-content;
    }

    .owner{
        width: 40%;
    }
}


@media(max-width: 675px){
    .contact-info{
        flex-direction: column;
        align-items: center;
        gap: 50px;
    }

    .owner{
        width: 70%;
    }
}

@media(max-width: 500px){
    .contact-info{
        text-align: center;
    }
}