.header-contact {      
    height: 80dvh; 
    width: 100%;

    .container {
        position: inherit;
        width: 100%;
        height: 100%;

        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;

        div {
            height: 70%;
            margin: 0 25px;
        }

        .left {
            display: flex;
            flex-direction: column;
            top: 0;
            left: 0;
            right: 0;

            width: 40%;
            max-width: 500px;
            color: white;

            justify-content: start;
            align-items: flex-start;

            p {
                text-align: justify;
                color: white;
            }
        }

        z-index: 500;
    }

    .right {
        width: 380px;
        height: 70%;

        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;

        border-radius: 5px;
        background-color: var(--color-bg);
        color: var(--color-primary);

        h3 {
            font-size: 1.5em;
            margin-bottom: 20px;
            text-align: start;

            width: 80%;
        }

        form {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            width: 80%;
            height: 80%;

            input, textarea {
                width: 80%;
                margin: 5px;
                padding: 10px;
                border: none;
                border-radius: 5px;
            }

            button {
                border: none;
                border-radius: 100px;
                background-color: var(--color-primary);

                color: var(--color-bg);
                cursor: pointer;

                padding: 10px 30px;
                margin: 5px;

                transition: all 0.3s ease;
            }

            button:hover {
                background-color: var(--color-bg-secondary);
            }

            textarea {
                resize: none;
                height: 100%;
            }
        }
    }

    .bg {
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        z-index: 100;

        background-color: var(--color-primary);
        img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: right;
            opacity: 0.15;
        }
    }
}

@media screen and (max-width: 500px) {
    .header-contact {
        height: fit-content;

        .container {
            flex-direction: column;

            margin-top: 50px;

            div {
                width: 95%;
                min-width: 95%;
                margin: 0;
                padding: 20px;
            }

            .left {
                margin-bottom: 50px;

                h1 {
                    font-size: 1.5em;
                }

                h4 {
                    font-size: 1.15em;
                }

                p {
                    font-size: 0.8em;
                }

                .btn-more-GTB {
                    font-size: 0.8em;
                    padding: 7px 15px;
                }
            }

            .right {
                width: 100%;

                form {
                    input {
                        width: 95%;
                        padding: 7px;
                    }

                    textarea {
                        width: 95%;
                        height: 150px;
                        padding: 7px;
                    }

                    button {
                        padding: 5px 15px;
                    }
                }
            }
        }
    }
}

@media screen and (min-width: 500px) and (max-width: 850px) {
    .header-contact {
        height: fit-content;

        .container {
            flex-direction: column;

            margin: 100px 0;

            div {
                width: 70%;
                min-width: 70%;
                margin: 0;
                padding: 20px;
            }
        }
    }
}