﻿/*-- -------------------------- -->
<---          Contact           -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #contact-2251 {
        background-color: #FBF5F1;
        overflow: hidden;
        position: relative;
        z-index: 1;
    }

        #contact-2251 .cs-container {
            width: 100%;
            margin: auto;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        #contact-2251 .cs-wrapper {
            width: 100%;
            /* removed at tablet */
            max-width: 36.5rem;
            padding: var(--sectionPadding);
            /* 16px - 100px */
            padding-left: clamp(1rem, 4.5vw, 6.25rem);
            padding-right: clamp(1rem, 4.5vw, 6.25rem);
            box-sizing: border-box;
            display: flex;
            flex-direction: column;
            /* 48px - 64px */
            gap: 0;
        }

        #contact-2251 .cs-content {
            /* set text align to left if content needs to be left aligned */
            text-align: center;
            width: 100%;
            max-width: 48.125rem;
            display: flex;
            flex-direction: column;
            /* centers content horizontally, set to flex-start to left align */
            align-items: center;
        }

        #contact-2251 iframe {
            width: 100%;
            height: 20rem;
        }

        #contact-2251 .cs-title {
            max-width: 24ch;
        }

        #contact-2251 .cs-form {
            width: 100%;
            max-width: 48.125rem;
            /* prevents flexbox from affecting height and width */
            box-sizing: border-box;
            display: grid;
            grid-template-columns: repeat(12, 1fr);
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 0.75rem;
            position: relative;
        }

        #contact-2251 .cs-form-content {
            text-align: center;
            width: 100%;
            display: flex;
            justify-content: center;
        }

        #contact-2251 .cs-form-title {
            font-size: 1rem;
            line-height: 1.5em;
            margin: 0 0 0.75rem 0;
            color: var(--bodyTextColor);
            display: block;
        }

        #contact-2251 .cs-label {
            font-size: 1rem;
            width: 100%;
            display: flex;
            flex-direction: column;
            grid-column: span 12;
            align-items: flex-start;
            gap: 0.25rem;
        }

        #contact-2251 .cs-input,
        #contact-2251 .cs-select {
            font-size: 1rem;
            width: 100%;
            /* 46px - 56px */
            height: clamp(2.875rem, 5.5vw, 3.5rem);
            /* prevents padding from adding to height and width */
            box-sizing: border-box;
            padding: 0 1.5rem;
            background-color: #fff;
            color: #767676;
            border: none;
        }

            #contact-2251 .cs-input::placeholder,
            #contact-2251 .cs-select::placeholder {
                color: #767676;
            }

        #contact-2251 .cs-textarea {
            font-family: inherit;
            min-height: 7.5rem;
            margin: 0 0 1.25rem 0;
            padding-top: 1.5rem;
        }

        #contact-2251 .cs-button-solid {
            font-size: 1rem;
            font-weight: 700;
            /* 46px - 56px */
            line-height: clamp(2.875em, 5.5vw, 3.5em);
            text-align: center;
            text-decoration: none;
            min-width: 9.375rem;
            margin: 0;
            /* prevents padding from adding to the width */
            box-sizing: border-box;
            /* 32px - 48px */
            padding: 0 clamp(2rem, 4vw, 3rem);
            background-color: var(--primary);
            overflow: hidden;
            color: #fff;
            border: none;
            display: inline-block;
            position: relative;
            z-index: 1;
            transition: color 0.3s;
        }

            #contact-2251 .cs-button-solid:before {
                content: "";
                width: 0%;
                height: 100%;
                background: #000;
                opacity: 1;
                position: absolute;
                top: 0;
                left: 0;
                z-index: -1;
                transition: width 0.3s;
            }

            #contact-2251 .cs-button-solid:hover:before {
                width: 100%;
            }

        #contact-2251 .cs-submit {
            width: 100%;
        }

            #contact-2251 .cs-submit:hover {
                cursor: pointer;
            }

        #contact-2251 .cs-button-wrapper {
            display: flex;
            justify-content: center;
            grid-column: span 12;
        }
}
/* Tablet - 768px */
@media only screen and (min-width: 600px) {
    #contact-2251 .cs-container {
        flex-direction: row;
        align-items: stretch;
    }

    #contact-2251 iframe {
        width: 50%;
        height: auto;
    }

    #contact-2251 .cs-wrapper {
        width: 50%;
        max-width: 100%;
    }

    #contact-2251 .cs-button-solid {
        width: auto;
    }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
    #contact-2251 .cs-label {
        grid-column: span 6;
    }

        #contact-2251 .cs-label.cs-message {
            grid-column: span 12;
        }
}