.contact{
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.contact_content{
    height: 50%;
    display: flex;
    width: 100%;
}

.contact_left{
    width: 50%;
    display: flex;
    flex-direction: column;
}

.social_links{
    width: 100%;
    display: flex;
    gap: 50px;
}

.social_links> a{
    text-decoration: none;
    cursor: url("../assets/images/cursor_action.svg"), auto;
}

.social_links> a:hover{
    transition: 500ms;
    transform: scale(1.5);
}

.social_links> a> img{
    max-width: 50px;
    cursor: url("../assets/images/cursor_action.svg"),auto;
}

.contact_hero{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50%;
}



@media screen and (max-width: 991px) {
    
    .contact{
        min-height: 100%;
    }

    .contact_content{
        height: 100%;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-top: -80px;
        gap: 20px;
    }

    .contact_left{
        width: 100%;
        height: 50%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .social_links> a> img{
        max-width: 30px;
    }

    .social_links{
        align-items: center;
        justify-content: center;
    }

    model-viewer{
        align-self: center;
        justify-self: center;
        height: 350px !important;
        width: 50%;
    }
}