#contact-page {
    #contact-nav-link {
        color: var(--gold) !important;
    };

#latest-contact-us-1 {
    background-color: #dcdcdc;
    max-width: 100%;
    
    .heading {
        text-align: center;
        color: var(--blue);
        max-width: 870px;
        margin: 0 auto;
    }

    .intro {
            text-align: center;
            max-width: 900px;
            margin: 0 auto;
            color: var(--black);
            padding-bottom: 40px;
    }
    
    .flex_container {
            display: flex; 
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;

            form {
                padding: 0 20px 0 0;

                label {
                    display: none;
                };
                .input {
                    padding: 15px 15px 15px 20px; 
                    border: 1px solid #fff;
                    border-radius: 5px;
                    margin-bottom: 15px;
                };

                textarea {
                    border: 1px solid #fff;
                    resize: none;
                    padding: 15px;
                    height: 158px;
                    border-radius: 5px;
                };

                .submit {
                    background-color: var(--blue);
                };

                .submit:hover {
                    background-color: var(--highlight-blue);
                };
            };

            .address_content {
                background-color: #00224e;
                color: var(--white);
                display: flex; 
                flex-direction: column;
                justify-content: flex-start;
                padding: 20px 30px 20px 30px;
                margin-bottom: 20px;
                height: auto;
                gap: 5px;

                .subheading {
                    padding-top: 0;
                };

                .contact_details {
                    display: flex;
                    flex-direction: column;

                    .key {
                        flex-basis: 25px;
                        font-weight: 700;
                        flex-wrap: wrap;
                    };
                };
            };

        };

    @media screen and (min-width: 320px) {

        .flex_container {
            flex-direction: column-reverse;
            form {
                .input {
                    width: 100%;
                };

                textarea {
                    width: 100%;
                };
            };

             .address_content { 
                text-align: center;
                max-width: 100%;

                .subheading {
                    font-size: 16px;
                }
                .contact_details {
                    font-size: 14px;
                };
             };
            
        };

    };

    @media screen and (min-width: 425px) {
        .flex_container {

            .address_content {

                .subheading {
                    font-size: 18px;
                }
                .contact_details {
                    font-size: 15px;
                };
             };
            
        };
    };

    @media screen and (min-width: 600px) {

        .flex_container {

            .address_content {

                .subheading {
                    font-size: 16px;
                }
                .contact_details {
                    font-size: 17px;
                };
             };
            
        };
    };

    @media screen and (min-width: 767px) {

        .flex_container {
            flex-direction: row;

            form {
                .input {
                    width: 250px;
                };

                textarea {
                    width: 250px;
                };  
            };

            .address_content {
                text-align: left;
                max-width: 250px;
                height: 285px;

                .contact_details {
                    font-size: 14px;

                    .key {
                        flex-basis: 15px;
                    }
                };
            };

        };
    }

    @media screen and (min-width: 1024px) {
        .flex_container {
            flex-direction: row;

            form {
                .input {
                    width: 450px;
                };

                textarea {
                    width: 450px;
                };  
            };

            .address_content {
                max-width: 400px;

                .subheading {
                    font-size: 18px;
                    padding-bottom: 16px;
                };

                .contact_details {

                    .key {
                        flex-basis: 23px;
                    }
                };

            };

        };
    };

};

};
