#page-contact {
    margin: 40px 0 60px;
    .contact--wrapper {
        display: grid;
        grid-template-columns: 50% 1fr;
        grid-template-areas: "header header" "form box";
        row-gap: 40px;
        column-gap: 120px;
        @media (max-width:1280px) {
            column-gap: 40px;
        }
        @media (max-width:992px) {
            grid-template-columns: 100%;
            grid-template-areas: "header" "box" "form" ;
        }
    }
    header {
        grid-area: header;
    }
    #contactInfo {
        grid-area: box;
        .box {
            padding: 30px 70px;
            background: var(--clr-qtr-100);
            border-radius: 5px;
            .item {
                padding: 50px 0;
                display: grid;
                grid-template-columns: 60px 1fr;
                gap: 50px;
                .image {
                    img {
                        width: 60px;
                        height: 60px;
                        display: block;
                        object-fit: contain;
                        object-position: center;
                    }
                }
                .content {
                    > * {
                        display: block;
                    }
                    .title {
                        font-size: 1.5rem;
                        color: var(--clr-prm-400);
                        line-height: 1.1;
                    }
                    a {
                        font-size: 1.75rem;
                        font-weight: 700;
                        color: var(--clr-prm-400);
                        line-height: 1.1;
                    }
                    .info {
                        margin: 8px 0 0;
                        font-size: 1.125rem;
                        font-weight: 300;
                        color: var(--clr-prm-400);
                    }
                }
            }
        }
        @media (max-width:992px) {
            .box {
                padding: 0px 30px;
                .item {
                    padding: 20px 0;
                    gap: 30px;
                    .content {
                        .title {
                            font-size: 1rem;
                        }
                        a {
                            font-size: 1.125rem;
                        }
                        .info {
                            font-size: 0.875rem;
                        }
                    }
                }
            }
        }
    }
    #contactForm {
        grid-area: form;
        form {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            > span {
                    grid-column: span 2;
                
            }
            .form--options {
                width: 100%;
                grid-column: span 2;
                display: flex;
                column-gap: 60px;
                row-gap: 30px;
                flex-wrap: wrap;
            }
            label {
                &:nth-of-type(1),
                &:nth-of-type(2),
                &:nth-of-type(3),
                &:nth-of-type(8) {
                    grid-column: span 2;
                }
            }
            .footnote {
                font-size: 0.875rem;
                font-style: italic;
                grid-column: span 2;
            }
            .form--optin {
                grid-column: span 2;
                > * {
                    width: 100%;
                    margin: 0 0 10px;
                }
            }
            @media (max-width:1280px) {
                label {
                    grid-column: span 2 !important;
                }
            }
        }
    }
    .jsDisableButton {
        cursor: not-allowed;
        opacity: 0.4;
    }
}