.contact_section {
    background: var(--primary);
    overflow: hidden;

    & .container {
        position: relative;
        z-index: 2;

        & .section_inner {
            display: flex;
            justify-content: space-between;

            @media (max-width: 991px) {
                flex-direction: column;
            }

            & .left_side {
                width: 48%;

                @media (max-width: 991px) {
                    width: 100%;
    
                    &:not(:last-child) {
                        margin-bottom: 5rem;
                    }
                }

                & h3 {
                    color: var(--white);
                    margin: 0 0 3rem;
                }

                & p {
                    color: var(--white);
                }

                & ul {
                    margin-bottom: 2rem;

                    & li {
                        color: var(--white);
                        margin: 0;
                    }
                }

                & .buttons_area {
                    display: flex;
                    flex-direction: column;
                    align-items: flex-start;
                    margin-top: 2rem;

                    & div.button {
                        max-width: 100%;

                        &:not(:last-of-type) {
                            width: 20rem;
                            margin-bottom: 2rem;
                        }

                        &:last-of-type {
                            width: 30rem;
                        }
                    }
                }
            }

            & .form_area {
                width: 48%;

                @media (max-width: 991px) {
                    width: 100%;
                }

                & .form_wrapper {
                    width: 100%;

                    & .gform_wrapper {
                        width: 100%;
        
                        & form {
                            background: var(--white);
                            padding: 4rem;
                            border-radius: 1rem;
        
                            & .gform_body {
                                & input[type=text], & input[type=email] & select, & textarea {
                                    padding: 1rem;
                                    box-shadow: none;
                                    outline: 0;
                                }
        
                                & .gfield_description:not(.ginput_counter) {
                                    margin: 0;
                                    padding: 0 0 1rem;
                                }
                                
                                & .ginput_counter {
                                    margin: 1rem 0 0;
                                }
                            }
        
                            & .gform_footer {
                                width: 100%;
                                margin: 2rem 0 0;
                                padding: 0;
        
                                & input {
                                    margin: 0 !important;
                                    width: auto !important;
                                    display: inline-block !important;
                                    text-decoration: none !important;
                                    outline: none !important;
                                    cursor: pointer !important;
                                    text-align: center !important;
                                    border-radius: 500px !important;
                                    padding: 1.4rem 4rem !important;
                                    font-family: 'DM Sans', 'arial' !important;
                                    font-size: 1.6rem !important;
                                    font-weight: 400 !important;
                                    font-style: normal !important;
                                    line-height: normal !important;
                                    transition: all .5s ease !important;
                                    border: 1px solid transparent !important;
                                    color: var(--white) !important;
                                    background-color: var(--primary) !important;
                                    border-color: var(--primary) !important;
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}