/*
Theme Name: OceanWP Child Theme
Theme URI: https://oceanwp.org/
Description: OceanWP WordPress theme. Sample child theme.
Author: OceanWP
Author URI: https://oceanwp.org/
Template: oceanwp
Version: 1.0
*/

/* Parent stylesheet should be loaded from functions.php not using @import */

/* Homepage Styles */
#site-header {
	display: none !important;
}

/* Kill the default WPForms green confirmation box */
#wpforms-1740 .wpforms-confirmation-container-full {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 60px 40px !important;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Teal circle with checkmark, drawn via inline SVG data-uri */
#wpforms-1740 .wpforms-confirmation-container-full::before {
    content: "";
    display: block;
    width: 56px;
    height: 56px;
    margin: 0 auto 28px;
    border-radius: 50%;
    background-color: #087f83;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 28px 28px;
}

/* Heading */
#wpforms-1740 .wpforms-confirmation-container-full h3 {
    margin: 0 0 16px !important;
	font-family: Manrope, system-ui, sans-serif;
    font-size: 24px !important;
    font-weight: 700 !important;
    color: #111 !important;
    text-align: center !important;
}

/* Body text */
#wpforms-1740 .wpforms-confirmation-container-full p {
    margin: 0 !important;
    font-size: 17px !important;
    line-height: 1.5 !important;
    color: #526273 !important;
    text-align: center !important;
}/* =========================================
   WPForms #1740 - Target Design
   ========================================= */

#wpforms-1740 {
    --wpforms-field-border-color: #d9d9d9;
    --wpforms-field-text-color: #222;
    --wpforms-label-color: #111;
    --wpforms-button-background-color: #087f83;

    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    font-family: inherit;
}

/* -----------------------------------------
   Form fields layout
   ----------------------------------------- */

#wpforms-1740 .wpforms-field-container {
    display: flex;
    flex-wrap: wrap;
    column-gap: 24px;
    row-gap: 26px;
}

/* Two-column fields */
#wpforms-1740 .wpforms-one-half {
    width: calc(50% - 12px);
    margin: 0;
    padding: 0;
}

/* Full-width fields */
#wpforms-1740 .wpforms-field-textarea {
    width: 100%;
    margin: 0;
    padding: 0;
}

/* -----------------------------------------
   Labels
   ----------------------------------------- */

#wpforms-1740 .wpforms-field-label {
    display: block;
    margin: 0 0 12px;
    color: #111;
    font-size: 14px !important;
    line-height: 1.3;
    font-weight: 600;
}

#wpforms-1740 .wpforms-required-label {
    color: #008b8f;
}

/* -----------------------------------------
   Inputs / Select
   ----------------------------------------- */
#wpforms-1740 input,
#wpforms-1740 select,
#wpforms-1740 textarea {
    margin: 0 !important;
    padding: 12px 18x !important;
    box-sizing: border-box;
}

#wpforms-1740 input.wpforms-field-medium,
#wpforms-1740 select.wpforms-field-medium,
#wpforms-1740 textarea.wpforms-field-medium {
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    margin: 0;
    border: 1px solid #d9d9d9;
    border-radius: 18px;
    background: #fff;
    color: #222;
    font-size: 15px;
    font-weight: 400;
    box-shadow: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

/* Textarea */
#wpforms-1740 textarea.wpforms-field-medium {
    min-height: 164px;
    padding: 12px 16px;
    resize: vertical;
    line-height: 1.5;
}

/* Placeholder */
#wpforms-1740 input::placeholder,
#wpforms-1740 textarea::placeholder {
    color: #8794a1;
    opacity: 1;
}

/* Select */
#wpforms-1740 select.wpforms-field-medium {
    appearance: auto;
    cursor: pointer;
}

/* Focus state */
#wpforms-1740 input.wpforms-field-medium:focus,
#wpforms-1740 select.wpforms-field-medium:focus,
#wpforms-1740 textarea.wpforms-field-medium:focus {
    border-color: #087f83;
    outline: none;
    box-shadow: 0 0 0 2px rgba(8, 127, 131, 0.08);
}

/* -----------------------------------------
   Comments / textarea spacing
   ----------------------------------------- */

#wpforms-1740-field_5-container {
    margin-top: 0;
}

/* -----------------------------------------
   Submit section
   ----------------------------------------- */

#wpforms-1740 .wpforms-submit-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 26px;
    padding: 0;
}

/* "Fields marked * are required." */
#wpforms-1740 .wpforms-submit-container::before {
    content: "Fields marked * are required.";
    display: block;
    margin-bottom: 22px;
    color: #526273;
    font-size: 12px;
    line-height: 1.4;
    font-weight: 400;
}

/* -----------------------------------------
   Submit button
   ----------------------------------------- */

#wpforms-1740 button.wpforms-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: auto;
    min-width: 240px;
    height: 49px;

    margin: 0;
    padding: 0 12px !important;

    border: 0;
    border-radius: 20px;

    background: #087f83;
    color: #fff;

    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0;
    text-transform: none;

    box-shadow: 0 12px 22px rgba(8, 127, 131, 0.18);

    cursor: pointer;
    transition: all 0.2s ease;
}

/* Button hover */
#wpforms-1740 button.wpforms-submit:hover {
    background: #076f73;
    transform: translateY(-1px);
    box-shadow: 0 14px 25px rgba(8, 127, 131, 0.22);
}

/* Button active */
#wpforms-1740 button.wpforms-submit:active {
    transform: translateY(0);
}

/* -----------------------------------------
   Hide honeypot fields
   ----------------------------------------- */

#wpforms-1740 #wpforms-1740-field_4-container,
#wpforms-1740 #wpforms-1740-field_7-container {
    display: none !important;
}

/* -----------------------------------------
   Validation messages
   ----------------------------------------- */

#wpforms-1740 .wpforms-field-error {
    margin-top: 7px;
    font-size: 13px;
}

#wpforms-1740 input.wpforms-error,
#wpforms-1740 textarea.wpforms-error,
#wpforms-1740 select.wpforms-error {
    border-color: #d63638;
}

/* =========================================
   Mobile
   ========================================= */

@media (max-width: 767px) {

    #wpforms-1740 .wpforms-field-container {
        display: block;
    }

    #wpforms-1740 .wpforms-one-half,
    #wpforms-1740 .wpforms-field-textarea {
        width: 100%;
        margin-bottom: 22px;
    }

    #wpforms-1740 .wpforms-field-label {
        font-size: 16px;
        margin-bottom: 9px;
    }

    #wpforms-1740 input.wpforms-field-medium,
    #wpforms-1740 select.wpforms-field-medium {
        height: 58px;
        border-radius: 16px;
        padding: 0 17px;
        font-size: 16px;
    }

    #wpforms-1740 textarea.wpforms-field-medium {
        min-height: 145px;
        border-radius: 16px;
        padding: 17px;
        font-size: 16px;
    }

    #wpforms-1740 .wpforms-submit-container {
        margin-top: 4px;
    }

    #wpforms-1740 .wpforms-submit-container::before {
        margin-bottom: 18px;
        font-size: 14px;
    }

    #wpforms-1740 button.wpforms-submit {
        width: 100%;
        min-width: 0;
        max-width: 260px;
        height: 58px;
        font-size: 15px;
    }
}

@media (max-width: 767px) {

  /* ---------------------------------------------------------
     0) Image box wrapper + title (BUSINESSES THINK / I USUALLY
        FIND labels) - scoped to page ID 650 only, applies
        across all four tabs since it targets the shared class,
        not a specific element ID
     --------------------------------------------------------- */
	body.page-id-650 .elementor-element-1c9ccda .elementor-image-box-description,
body.page-id-650 .elementor-element-4cc662b .elementor-image-box-description,
body.page-id-650 .elementor-element-a3964ae .elementor-image-box-description,
body.page-id-650 .elementor-element-f440ee7 .elementor-image-box-description {
    /* CSS */
	font-size: 14.5px !important;
}
	
body.page-id-650 .elementor-element-f03c018 .elementor-image-box-wrapper,
body.page-id-650 .elementor-element-4cb8143 .elementor-image-box-wrapper,
body.page-id-650 .elementor-element-8c915e4 .elementor-image-box-wrapper,
body.page-id-650 .elementor-element-a0d2649 .elementor-image-box-wrapper,
body.page-id-650 .elementor-element-46c499d .elementor-image-box-wrapper,
body.page-id-650 .elementor-element-8638de1 .elementor-image-box-wrapper,
body.page-id-650 .elementor-element-abf2e0c .elementor-image-box-wrapper,
body.page-id-650 .elementor-element-bd5e4d4 .elementor-image-box-wrapper {
    display: flex !important;
		gap: 10px !important;
  }

body.page-id-650 .elementor-element-f03c018 .elementor-image-box-title,
body.page-id-650 .elementor-element-4cb8143 .elementor-image-box-title,
body.page-id-650 .elementor-element-8c915e4 .elementor-image-box-title,
body.page-id-650 .elementor-element-a0d2649 .elementor-image-box-title,
body.page-id-650 .elementor-element-46c499d .elementor-image-box-title,
body.page-id-650 .elementor-element-8638de1 .elementor-image-box-title,
body.page-id-650 .elementor-element-abf2e0c .elementor-image-box-title,
body.page-id-650 .elementor-element-bd5e4d4 .elementor-image-box-title {
		font-family: 'Inter' !important;
    font-size: 10px !important;
    font-weight: 600 !important;
		letter-spacing: 0.16em !important;
		line-height: 1.25 !important;
  }

body.page-id-650 .elementor-element-92d5ab6 .elementor-heading-title,
body.page-id-650 .elementor-element-8c08634 .elementor-heading-title,
body.page-id-650 .elementor-element-f114935 .elementor-heading-title,
body.page-id-650 .elementor-element-839bf87 .elementor-heading-title,
body.page-id-650 .elementor-element-be2e6eb .elementor-heading-title,
body.page-id-650 .elementor-element-0f29c17 .elementor-heading-title,
body.page-id-650 .elementor-element-571c2fa .elementor-heading-title,
body.page-id-650 .elementor-element-ae48156 .elementor-heading-title {
		font-family: 'Inter' !important;
	font-size: 13px !important;
    font-weight: 600 !important;
		line-height: 1.375 !important;
}
}



body.page-id-650 .elementor-element-9ea5ba0 h2.elementor-heading-title,
body.page-id-650 .elementor-element-ffcc06a h2.elementor-heading-title {
    font-size: 4.8rem !important;
	font-weight: 700 !important;
}


.elementor-650 .elementor-element.elementor-element-6b707d4{
	width: fit-content !important;
}

.elementor-650 .elementor-element.elementor-element-4a0b815 {
	width: fit-content !important;
}

/* Header color in responsive */
@media only screen and (max-width: 959px) { #site-header.transparent-header { background-color: #333; } }

/* Width buttons in the pricing tables */
.elementor .pricing-btn .elementor-button { max-width: 213px; width: 100%; }
