﻿/*
Theme Name: themediare-guru
Theme URI: https://wordpress.org/
Author: Henry Rojas
Description: Medicare related theme for WordPress.
Version: 1.0.26
Requires at least: 5.0
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: The Meciare Guru
*/
/* style.css */
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root {
    --primary-color: #a40000;
    --primary-hover: #7f0000;
    --secondary-color: #646464;
    --background-light: #f8f9fa;
    --text-black: #000000;
    --text-dark: #1c1c1c;
    --text-light: #ffffff;
    --text-light-black: #333333;
    --text-light-gray: #555555;
    --color-gray: #343a40;
    --color-blue: #002cb9;
    --light-blue: #1B8198;
    --dark-blue: #032b7d;
    --darker-blue: #004eec;
    --darkest-blue: #052973;
    --dark-gray: #5e5b5b;
    --color-green: #12a999;
    --color-red: #ad0706;
    --color-dark-green: #8c8c8c99;
    --color-light-green: #8c8c8c80;
    --color-pale: #faf8f3;
    --progress-background: rgba(192, 194, 203, 0.2);
    --review-background: #1d3a70;
    --footer-background: #f1f1f1;
    --border-color: rgba(0, 0, 0, 0.1);
    --invert-color-white: brightness(0) invert(1);
    /* Typography */
    --font-family-base: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    --font-family-secondary: "Montserrat", Arial, sans-serif;
    --font-family-tertiary: "Poppins", Arial, sans-serif;
    --font-family-cuartery: "Inter", sans-serif;
    --font-size-base: 1rem;
    --font-size-sm: 0.875rem;
    --font-size-xs: 0.75rem;
    --font-size-md: 1.0625rem;
    --font-size-lg: 1.25rem;
    --font-size-xlg: 1.312rem;
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-bold: 700;
    --font-weight-black: 900;
    --line-height-base: 1.5;
}

html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-family-secondary);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    background-color: var(--text-light);
    color: var(--text-dark);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1 0 auto;
}

.admin-bar .navbar {
    margin-top: 1.94rem;
}

header#masthead {
    background-color: var(--text-light);
    padding: 1rem;
}

@media screen and (max-width: 600px) {
    header#masthead .navbar {
        min-height: 4.38rem;
    }

    header .phone {
        text-align: center;
    }

        header .phone .d-flex {
            justify-content: center !important;
        }
}

.site-branding img {
    max-width: 12.5rem;
    width: 100%;
    height: auto;
}

.review-section .site-branding img {
    filter: var(--invert-color-white);
}

.navbar .short-form-content {
    color: var(--secondary-color);
    font-size: var(--font-size-xs);
    font-family: var(--font-family-secondary);
}

    .navbar .short-form-content .blue-phone-lg {
        color: transparent;
        width: auto;
        height: auto;
        max-width: 100%;
        margin-right: 0.18rem;
    }

    .navbar .short-form-content a,
    .navbar .short-form-content span {
        font-size: var(--font-size-xlg);
        color: var(--dark-blue);
        font-family: var(--font-family-tertiary);
        font-weight: 700;
        vertical-align: middle;
    }

        .navbar .short-form-content span,
        .navbar .short-form-content a:last-of-type {
            font-weight: 500;
        }

.navbar .short-form-header-call-section {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    aspect-ratio: 1;
    background-color: var(--color-red);
}

.main-navigation .short-form-content p,
.main-navigation .short-form-content a {
    font-size: var(--font-size-sm);
    color: var(--text-dark);
    margin-bottom: 0;
}

.main-content-section {
    padding-top: 0;
    padding-bottom: 0;
    flex: 1 0 auto;
    display: flex;
    flex-direction: row;
    align-items: stretch;
}

.form-container {
    padding: 2rem;
    min-height: 600px;
    position: relati1ve;
}

.form-container__header h1 {
    color: var(--light-blue);
    font-size: 1.56rem;
    font-family: var(--font-family-tertiary);
    font-weight: var(--font-weight-bold);
    line-height: 34px;
    letter-spacing: 0;
    word-break: break-word;
}

.form-container__header p {
    font-family: var(--font-family-tertiary);
    font-weight: 500;
    font-size: 1.25rem;
    line-height: 30px;
    vertical-align: middle;
    color: var(--text-dark);
    margin-top: 1.56rem;
    margin-bottom: 1.56rem;
}

form input.form-control {
    margin-bottom: 1rem;
    font-size: var(--font-size-base);
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    font-weight: var(--font-weight-bold);
}

    .btn-primary:hover {
        background-color: var(--primary-hover);
        border-color: var(--primary-hover);
    }

.review-section {
    background-color: var(--review-background);
    color: var(--text-light);
    font-size: var(--font-size-md);
}

@media screen and (min-width: 765px) {
    .review-section {
        height: 100%;
    }
}

.review-section #content,
.review-section .progress-container {
    padding: 2rem;
}

.review-section p b {
    font-size: var(--font-size-md);
}

.default-section.trustpilot-icon-info {
    padding: 5% 10%;
    width: 100%;
}

    .default-section.trustpilot-icon-info .container-fluid {
        column-gap: 50% !important;
        flex: auto;
    }

.default-section .card-item.trustpilot-icon-label img {
    height: 30px !important;
}

.default-section .card-item {
    flex: 1 1;
    max-width: 100%;
}

    .default-section .card-item.trustpilot-icon-label .richtext p {
        font-size: 1.3rem;
        font-family: var(--font-family-secondary);
    }

footer {
    font-size: var(--font-size-xs);
    text-align: center;
    padding: 2rem;
    color: var(--dark-gray);
    flex-shrink: 0;
    font-family: var(--font-family-secondary);
}

.footer-menu {
    margin: 1.5rem 0;
    padding: 0;
    line-height: 1.625rem;
}

    .footer-menu li {
        display: inline;
        font-size: var(--font-size-xs);
    }

        .footer-menu li + li::before {
            content: "|";
            margin: 0 0.94rem;
            color: var(--dark-gray);
            opacity: 0.6;
        }

    .footer-menu a {
        color: var(--dark-gray);
        text-decoration: none;
    }

        .footer-menu a:hover {
            text-decoration: underline;
            color: var(--primary-color);
        }

.header-phone__container {
    line-height: 1;
}

    .header-phone__container a {
        text-decoration: none;
    }

header .phone {
    color: var(--text-light-black);
}

    header .phone .phone-icon {
        font-size: 1.562rem;
        color: var(--text-light-gray);
        position: relative;
        margin-right: 1rem;
    }

.phone-icon::before {
    content: "";
    width: 10px;
    height: 10px;
    display: block;
    transform: scale(1);
    position: absolute;
    right: 27%;
    top: 12px;
    margin-right: 5.5rem;
    border-radius: 50%;
    animation: 2s ease 0s infinite normal none running pulse;
    background: rgb(74, 222, 128);
    transition: transform 0.24s;
}

.header-phone__container .phone-icon::before {
    left: 2rem;
    top: 0;
    right: unset;
}

header .phone .small {
    font-family: "Inter", sans-serif;
    font-weight: 500;
    font-style: Medium;
    font-size: 15.2px;
    line-height: 15.2px;
    letter-spacing: 0%;
    vertical-align: middle;
    color: var(--color-gray) !important;
}

header .phone span b {
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-style: Bold;
    font-size: 20px;
    line-height: 20px;
    letter-spacing: 0%;
    vertical-align: middle;
    color: var(--color-blue);
}

.cta-ol:before {
    content: "";
    border-radius: 50%;
    width: 10px;
    height: 10px;
    display: inline-block;
    transform: scale(1);
    animation: pulse 2s infinite;
    background: #4ade80;
    transition: transform 0.24s;
    margin-right: 0.55rem;
}

@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale(0.85);
        transform: scale(0.85);
        -webkit-box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7);
        box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7);
    }

    70% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-box-shadow: 0 0 0 10px rgba(74, 222, 128, 0);
        box-shadow: 0 0 0 10px rgba(74, 222, 128, 0);
    }
}

@keyframes pulse {
    0% {
        -webkit-transform: scale(0.85);
        transform: scale(0.85);
        -webkit-box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7);
        box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7);
    }

    70% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-box-shadow: 0 0 0 10px rgba(74, 222, 128, 0);
        box-shadow: 0 0 0 10px rgba(74, 222, 128, 0);
    }
}

@-webkit-keyframes pulse-2 {
    0% {
        -webkit-transform: scale(0.85);
        transform: scale(0.85);
        -webkit-box-shadow: 0 0 0 0 rgba(0, 44, 185, 0.7);
        box-shadow: 0 0 0 0 rgba(0, 44, 185, 0.7);
    }

    70% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-box-shadow: 0 0 0 10px rgba(0, 44, 185, 0);
        box-shadow: 0 0 0 10px rgba(0, 44, 185, 0);
    }
}

@keyframes pulse-2 {
    0% {
        -webkit-transform: scale(0.85);
        transform: scale(0.85);
        -webkit-box-shadow: 0 0 0 0 rgba(0, 44, 185, 0.7);
        box-shadow: 0 0 0 0 rgba(0, 44, 185, 0.7);
    }

    70% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-box-shadow: 0 0 0 10px rgba(0, 44, 185, 0);
        box-shadow: 0 0 0 10px rgba(0, 44, 185, 0);
    }
}

@-webkit-keyframes phone-outer {
    0% {
        -webkit-transform: translate3d(0, 0, 0) scale(1);
        transform: translate3d(0, 0, 0) scale(1);
        -webkit-box-shadow: 0 0 0 0em rgba(#3498db, 0), 0em 0.05em 0.1em rgba(#000000, 0.2);
        box-shadow: 0 0 0 0em rgba(#3498db, 0), 0em 0.05em 0.1em rgba(#000000, 0.2);
    }

    33.3333% {
        -webkit-transform: translate3d(0, 0, 0) scale(1.1);
        transform: translate3d(0, 0, 0) scale(1.1);
        -webkit-box-shadow: 0 0 0 0em rgba(#3498db, 0.1), 0em 0.05em 0.1em rgba(#000000, 0.5);
        box-shadow: 0 0 0 0em rgba(#3498db, 0.1), 0em 0.05em 0.1em rgba(#000000, 0.5);
    }

    66.6666% {
        -webkit-transform: translate3d(0, 0, 0) scale(1);
        transform: translate3d(0, 0, 0) scale(1);
        -webkit-box-shadow: 0 0 0 0.5em rgba(#3498db, 0), 0em 0.05em 0.1em rgba(#000000, 0.2);
        box-shadow: 0 0 0 0.5em rgba(#3498db, 0), 0em 0.05em 0.1em rgba(#000000, 0.2);
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0) scale(1);
        transform: translate3d(0, 0, 0) scale(1);
        -webkit-box-shadow: 0 0 0 0em rgba(#3498db, 0), 0em 0.05em 0.1em rgba(#000000, 0.2);
        box-shadow: 0 0 0 0em rgba(#3498db, 0), 0em 0.05em 0.1em rgba(#000000, 0.2);
    }
}

@keyframes phone-outer {
    0% {
        -webkit-transform: translate3d(0, 0, 0) scale(1);
        transform: translate3d(0, 0, 0) scale(1);
        -webkit-box-shadow: 0 0 0 0em rgba(#3498db, 0), 0em 0.05em 0.1em rgba(#000000, 0.2);
        box-shadow: 0 0 0 0em rgba(#3498db, 0), 0em 0.05em 0.1em rgba(#000000, 0.2);
    }

    33.3333% {
        -webkit-transform: translate3d(0, 0, 0) scale(1.1);
        transform: translate3d(0, 0, 0) scale(1.1);
        -webkit-box-shadow: 0 0 0 0em rgba(#3498db, 0.1), 0em 0.05em 0.1em rgba(#000000, 0.5);
        box-shadow: 0 0 0 0em rgba(#3498db, 0.1), 0em 0.05em 0.1em rgba(#000000, 0.5);
    }

    66.6666% {
        -webkit-transform: translate3d(0, 0, 0) scale(1);
        transform: translate3d(0, 0, 0) scale(1);
        -webkit-box-shadow: 0 0 0 0.5em rgba(#3498db, 0), 0em 0.05em 0.1em rgba(#000000, 0.2);
        box-shadow: 0 0 0 0.5em rgba(#3498db, 0), 0em 0.05em 0.1em rgba(#000000, 0.2);
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0) scale(1);
        transform: translate3d(0, 0, 0) scale(1);
        -webkit-box-shadow: 0 0 0 0em rgba(#3498db, 0), 0em 0.05em 0.1em rgba(#000000, 0.2);
        box-shadow: 0 0 0 0em rgba(#3498db, 0), 0em 0.05em 0.1em rgba(#000000, 0.2);
    }
}

@-webkit-keyframes phone-icon {
    0% {
        -webkit-transform: translate3d(0rem, 0, 0);
        transform: translate3d(0rem, 0, 0);
    }

    2% {
        -webkit-transform: translate3d(0.02rem, 0, 0);
        transform: translate3d(0.02rem, 0, 0);
    }

    4% {
        -webkit-transform: translate3d(-0.02rem, 0, 0);
        transform: translate3d(-0.02rem, 0, 0);
    }

    6% {
        -webkit-transform: translate3d(0.02rem, 0, 0);
        transform: translate3d(0.02rem, 0, 0);
    }

    8% {
        -webkit-transform: translate3d(-0.02rem, 0, 0);
        transform: translate3d(-0.02rem, 0, 0);
    }

    10% {
        -webkit-transform: translate3d(0.02rem, 0, 0);
        transform: translate3d(0.02rem, 0, 0);
    }

    12% {
        -webkit-transform: translate3d(-0.02rem, 0, 0);
        transform: translate3d(-0.02rem, 0, 0);
    }

    14% {
        -webkit-transform: translate3d(0.02rem, 0, 0);
        transform: translate3d(0.02rem, 0, 0);
    }

    16% {
        -webkit-transform: translate3d(-0.02rem, 0, 0);
        transform: translate3d(-0.02rem, 0, 0);
    }

    18% {
        -webkit-transform: translate3d(0.02rem, 0, 0);
        transform: translate3d(0.02rem, 0, 0);
    }

    20% {
        -webkit-transform: translate3d(-0.02rem, 0, 0);
        transform: translate3d(-0.02rem, 0, 0);
    }

    22% {
        -webkit-transform: translate3d(0.02rem, 0, 0);
        transform: translate3d(0.02rem, 0, 0);
    }

    24% {
        -webkit-transform: translate3d(-0.02rem, 0, 0);
        transform: translate3d(-0.02rem, 0, 0);
    }

    26% {
        -webkit-transform: translate3d(0.02rem, 0, 0);
        transform: translate3d(0.02rem, 0, 0);
    }

    28% {
        -webkit-transform: translate3d(-0.02rem, 0, 0);
        transform: translate3d(-0.02rem, 0, 0);
    }

    30% {
        -webkit-transform: translate3d(0.02rem, 0, 0);
        transform: translate3d(0.02rem, 0, 0);
    }

    32% {
        -webkit-transform: translate3d(-0.02rem, 0, 0);
        transform: translate3d(-0.02rem, 0, 0);
    }

    34% {
        -webkit-transform: translate3d(0.02rem, 0, 0);
        transform: translate3d(0.02rem, 0, 0);
    }

    36% {
        -webkit-transform: translate3d(-0.02rem, 0, 0);
        transform: translate3d(-0.02rem, 0, 0);
    }

    38% {
        -webkit-transform: translate3d(0.02rem, 0, 0);
        transform: translate3d(0.02rem, 0, 0);
    }

    40% {
        -webkit-transform: translate3d(-0.02rem, 0, 0);
        transform: translate3d(-0.02rem, 0, 0);
    }

    42% {
        -webkit-transform: translate3d(0.02rem, 0, 0);
        transform: translate3d(0.02rem, 0, 0);
    }

    44% {
        -webkit-transform: translate3d(-0.02rem, 0, 0);
        transform: translate3d(-0.02rem, 0, 0);
    }

    46% {
        -webkit-transform: translate3d(0rem, 0, 0);
        transform: translate3d(0rem, 0, 0);
    }
}

@keyframes phone-icon {
    0% {
        -webkit-transform: translate3d(0rem, 0, 0);
        transform: translate3d(0rem, 0, 0);
    }

    2% {
        -webkit-transform: translate3d(0.02rem, 0, 0);
        transform: translate3d(0.02rem, 0, 0);
    }

    4% {
        -webkit-transform: translate3d(-0.02rem, 0, 0);
        transform: translate3d(-0.02rem, 0, 0);
    }

    6% {
        -webkit-transform: translate3d(0.02rem, 0, 0);
        transform: translate3d(0.02rem, 0, 0);
    }

    8% {
        -webkit-transform: translate3d(-0.02rem, 0, 0);
        transform: translate3d(-0.02rem, 0, 0);
    }

    10% {
        -webkit-transform: translate3d(0.02rem, 0, 0);
        transform: translate3d(0.02rem, 0, 0);
    }

    12% {
        -webkit-transform: translate3d(-0.02rem, 0, 0);
        transform: translate3d(-0.02rem, 0, 0);
    }

    14% {
        -webkit-transform: translate3d(0.02rem, 0, 0);
        transform: translate3d(0.02rem, 0, 0);
    }

    16% {
        -webkit-transform: translate3d(-0.02rem, 0, 0);
        transform: translate3d(-0.02rem, 0, 0);
    }

    18% {
        -webkit-transform: translate3d(0.02rem, 0, 0);
        transform: translate3d(0.02rem, 0, 0);
    }

    20% {
        -webkit-transform: translate3d(-0.02rem, 0, 0);
        transform: translate3d(-0.02rem, 0, 0);
    }

    22% {
        -webkit-transform: translate3d(0.02rem, 0, 0);
        transform: translate3d(0.02rem, 0, 0);
    }

    24% {
        -webkit-transform: translate3d(-0.02rem, 0, 0);
        transform: translate3d(-0.02rem, 0, 0);
    }

    26% {
        -webkit-transform: translate3d(0.02rem, 0, 0);
        transform: translate3d(0.02rem, 0, 0);
    }

    28% {
        -webkit-transform: translate3d(-0.02rem, 0, 0);
        transform: translate3d(-0.02rem, 0, 0);
    }

    30% {
        -webkit-transform: translate3d(0.02rem, 0, 0);
        transform: translate3d(0.02rem, 0, 0);
    }

    32% {
        -webkit-transform: translate3d(-0.02rem, 0, 0);
        transform: translate3d(-0.02rem, 0, 0);
    }

    34% {
        -webkit-transform: translate3d(0.02rem, 0, 0);
        transform: translate3d(0.02rem, 0, 0);
    }

    36% {
        -webkit-transform: translate3d(-0.02rem, 0, 0);
        transform: translate3d(-0.02rem, 0, 0);
    }

    38% {
        -webkit-transform: translate3d(0.02rem, 0, 0);
        transform: translate3d(0.02rem, 0, 0);
    }

    40% {
        -webkit-transform: translate3d(-0.02rem, 0, 0);
        transform: translate3d(-0.02rem, 0, 0);
    }

    42% {
        -webkit-transform: translate3d(0.02rem, 0, 0);
        transform: translate3d(0.02rem, 0, 0);
    }

    44% {
        -webkit-transform: translate3d(-0.02rem, 0, 0);
        transform: translate3d(-0.02rem, 0, 0);
    }

    46% {
        -webkit-transform: translate3d(0rem, 0, 0);
        transform: translate3d(0rem, 0, 0);
    }
}

@-webkit-keyframes phone-inner {
    0% {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0) scale(0);
        transform: translate3d(0, 0, 0) scale(0);
    }

    33.3333% {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0) scale(0.9);
        transform: translate3d(0, 0, 0) scale(0.9);
    }

    66.6666% {
        opacity: 0;
        -webkit-transform: translate3d(0, 0, 0) scale(0);
        transform: translate3d(0, 0, 0) scale(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(0, 0, 0) scale(0);
        transform: translate3d(0, 0, 0) scale(0);
    }
}

@keyframes phone-inner {
    0% {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0) scale(0);
        transform: translate3d(0, 0, 0) scale(0);
    }

    33.3333% {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0) scale(0.9);
        transform: translate3d(0, 0, 0) scale(0.9);
    }

    66.6666% {
        opacity: 0;
        -webkit-transform: translate3d(0, 0, 0) scale(0);
        transform: translate3d(0, 0, 0) scale(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(0, 0, 0) scale(0);
        transform: translate3d(0, 0, 0) scale(0);
    }
}

.hero-image__container {
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 876px;
}

.hero-cta__container {
    margin-bottom: 162px;
}

.hero-cta__text {
    position: relative;
}

.hero-agent-text,
.hero-phone-text {
    font-family: var(--font-family-tertiary);
    font-weight: 700;
    font-size: 18px;
    line-height: 22.86px;
    text-align: center;
    vertical-align: middle;
}

    .hero-agent-text a {
        gap: 7px;
    }

    .hero-agent-text .phone-icon::before {
        right: 0;
        top: 5px;
        left: 22%;
    }

    .hero-agent-text .phone-icon svg {
        width: 45px;
        height: 45px;
    }

.hero-phone-text {
    font-size: 18px;
    margin-top: 15px;
    position: relative;
}

    .hero-phone-text::before {
        content: "";
        position: absolute;
        top: -10px;
        left: 20px;
        -webkit-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        transform: translateY(-50%);
        width: 185px;
        height: 185px;
        background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMjAiIGhlaWdodD0iMTIwIiB2aWV3Qm94PSIwIDAgMTIwIDEyMCIgZmlsbD0ibm9uZSI+CjxnIGNsaXAtcGF0aD0idXJsKCNjbGlwMF83M18xMjEwKSI+CiAgPHBhdGggZD0iTTExNS4wNzUgNzIuNzE3OUM3OS44NzUyIDgyLjkwMjMgMzkuMTIzMiA3MS4yMjM3IDEwLjAwNjMgNDIuNjA4MSIgc3Ryb2tlPSIjMTJBOTk5IiBzdHJva2Utd2lkdGg9IjQiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgogIDxwYXRoIGQ9Ik0yNi4yNzMyIDY4LjYzMDlDMjAuNzE1OCA1OS44ODI4IDE1LjE2MzMgNTEuMTM5NSA5LjYwNjAyIDQyLjM5MTVDMTcuMTAwOSA0Mi40MDU5IDI0LjU5NTggNDIuNDIwNCAzMi4wOTU2IDQyLjQzOTYiIHN0cm9rZT0iIzEyQTk5OSIgc3Ryb2tlLXdpZHRoPSIzLjk1MjY4IiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPC9nPgo8ZGVmcz4KICA8Y2xpcFBhdGggaWQ9ImNsaXAwXzczXzEyMTAiPgogICAgPHJlY3Qgd2lkdGg9IjEwMi44MzgiIGhlaWdodD0iNjYuNzE4MyIgZmlsbD0id2hpdGUiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDcyLjcxNzUgMTE5Ljg5NSkgcm90YXRlKC0xMzUpIi8+CiAgPC9jbGlwUGF0aD4KPC9kZWZzPgo8L3N2Zz4=");
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;
        pointer-events: none;
        z-index: 1;
    }

    .hero-phone-text::after {
        content: "";
        position: absolute;
        top: 26px;
        left: 23%;
        width: 37%;
        height: 37%;
        background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNzUiIGhlaWdodD0iNyIgdmlld0JveD0iMCAwIDE3NSA3IiBmaWxsPSJub25lIj48cGF0aCBkPSJNMjIuMDAwMSAzLjY0NjEzQzc4LjE3MjEgMC40NTg5MSAxMzUuNzI2IDAuMTQ4Njc3IDE5Mi4xMjEgMi43Mjk3MiIgc3Ryb2tlPSIjMTJBOTk5IiBzdHJva2Utd2lkdGg9IjQiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPjwvc3ZnPg==");
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;
        pointer-events: none;
        z-index: 1;
    }

@media screen and (max-width: 600px) {
    .form-container__header h1 {
        font-weight: 600;
        font-size: 1.44rem;
    }

    .form-container__header p {
        font-size: 1rem;
    }

    .header-phone__container .phone-icon::before {
        left: 35px;
        top: 0;
        right: unset;
    }

    .mobile-agent-image img {
        width: 11.4rem;
        height: auto;
        margin-bottom: 1.625rem;
    }

    .mobile-cta-text {
        font-family: var(--font-family-tertiary);
        font-weight: 500;
        font-size: 1.125rem;
        line-height: 22.86px;
        text-align: center;
        vertical-align: middle;
        text-transform: uppercase;
    }

    footer {
        padding: 0;
        margin-top: 55px;
        margin-bottom: 25px;
    }

    .footer-menu {
        margin-left: 20px;
        margin-right: 20px;
    }
}

.mobile-call-btn {
    padding: 20px 26px;
    border-radius: 100px;
    box-shadow: 0px 10px 20px 0px #f4433640;
    background: #f44336;
    margin-top: 45px;
    display: flex;
    flex-flow: row;
}

    .mobile-call-btn svg {
        width: 49px;
        height: 49px;
        margin-right: 24px;
    }

.mobile-call-content {
    display: flex;
    flex-flow: column;
}

.mobile-call-number {
    font-family: var(--font-family-tertiary);
    font-weight: 600;
    font-size: 20px;
    line-height: 20px;
    letter-spacing: 0.57px;
    text-align: center;
    vertical-align: middle;
    text-transform: capitalize;
    margin-bottom: 8px;
}

.mobile-call-subtext {
    font-family: var(--font-family-cuartery) !important;
    font-weight: 500;
    font-size: 1rem;
    line-height: 19.2px;
    text-align: center;
    vertical-align: middle;
}

.mobile-no-obligation {
    font-family: var(--font-family-cuartery);
    font-weight: 500;
    font-size: 1rem;
    line-height: 22.86px;
    text-align: center;
    vertical-align: middle;
    margin-bottom: 50px;
}

.mobile-bottom-image-container {
    min-height: 540px;
    margin-bottom: 35px;
}

.footer-disclaimer:last-of-type {
    margin-bottom: 55px;
}

.ty-content-wrapper {
    max-width: 600px;
    margin: 40px auto;
    text-align: center;
    position: relative;
}

/* Success Checkmark Icon */
.ty-success-icon {
    margin: 0 auto 20px;
}

/* Main Titles */
.ty-content-wrapper h1 {
    font-family: var(--font-family-tertiary);
    font-weight: 600;
    font-size: 25px;
    line-height: 100%;
    text-align: center;
    vertical-align: middle;
    color: var(--light-blue);
}

.ty-content-wrapper .ty-subtitle {
    font-family: var(--font-family-tertiary);
    font-weight: 400;
    font-size: 25px;
    line-height: 100%;
    text-align: center;
    vertical-align: middle;
    color: var(--light-blue);
    margin-bottom: 25px;
}

.ty-content-wrapper p.ty-description {
    font-family: var(--font-family-tertiary);
    font-weight: 400;
    font-size: 15px;
    line-height: 30px;
    text-align: center;
    vertical-align: middle;
    color: var(--text-dark);
    margin-bottom: 69px;
}

/* --- CTA CARD STYLES --- */
.ty-cta-card {
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 1rem;
    padding: 0 30px 25px 30px;
    max-width: 488px; /* Constrain width of the inner card */
    margin: 0 auto;
    background: rgba(242, 243, 245, 0.5);
    margin-bottom: 126px;
}

/* Agent Image (Circular) */
.ty-agent-image {
    width: 102px;
    height: 108px;
    border-radius: 50%;
    overflow: hidden;
    margin: -55px auto 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

    .ty-agent-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

/* CTA Text */
.ty-cta-card p {
    font-family: var(--font-family-tertiary);
    font-weight: 600;
    font-size: 15px;
    line-height: 30px;
    text-align: center;
    vertical-align: middle;
    color: var(--text-dark);
    margin-bottom: 25px;
}

/* Call Button Styling */
.ty-call-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background-color: #ff3c3c;
    border-radius: 30px;
    padding: 10px 15px;
    text-decoration: none;
    color: white;
    margin-top: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.ty-call-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-grow: 1;
    margin-left: 10px;
}

.ty-call-number {
    font-size: 1.2rem;
    font-weight: 800;
    line-height: 1.2;
}

.ty-call-subtext {
    font-size: 0.7rem;
    font-weight: 400;
    margin-top: -3px;
}

.ty-call-icon-wrapper {
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Disclaimer / Hours */
.ty-hours-disclaimer {
    font-size: 13px;
    font-weight: 600;
    color: #333;
    margin-top: 15px;
}

    .ty-hours-disclaimer .ty-dot {
        display: inline-block;
        width: 8px;
        height: 8px;
        background-color: var(--color-green);
        border-radius: 50%;
        margin-right: 5px;
        vertical-align: middle;
    }

/* Responsive adjustments */
@media (max-width: 576px) {
    .ty-content-wrapper {
        margin: 20px auto;
        padding: 0 15px;
    }

        .ty-content-wrapper h1 {
            font-size: 23px;
            line-height: 1.5;
        }

        .ty-content-wrapper .ty-subtitle {
            font-size: 23px;
            line-height: 1.5;
        }

        .ty-content-wrapper p.ty-description {
            font-size: 1rem;
        }

    .ty-call-btn {
        width: 100%;
    }

    .ty-cta-card {
        margin-bottom: 0;
    }

        .ty-cta-card .mobile-call-btn {
            flex-flow: column;
        }

            .ty-cta-card .mobile-call-btn .btn-icon {
                display: none;
            }
}

.page-template-ty-page .site-branding {
    margin-left: auto;
    margin-right: auto;
}

.page-template-ty-page .main-content-section {
    flex-direction: column;
}

.page-template-ty-page .mobile-call-btn {
    margin-top: 0;
}

.page-template-ty-page .hero-agent-text .phone-icon::before {
    top: 5px;
    left: 6%;
}

.ty-cta-card .hero-agent-text,
.ty-cta-card .hero-phone-text {
    font-family: var(--font-family-cuartery);
    font-weight: 700;
    font-size: 16px;
    line-height: 22.86px;
    text-align: center;
    vertical-align: middle;
    color: var(--text-black);
}

    .ty-cta-card .hero-phone-text::after,
    .ty-cta-card .hero-phone-text::before {
        content: unset;
    }

.ty-cta-card .hero-phone-text {
    margin-top: 0;
}

.ty-cta-card .hero-cta__container {
    margin-bottom: 25px;
}

/* --- PROGRESS BAR STYLES --- */

/* Main container and box styling (blue border from the image) */
.sp-progress-bar {
    padding: 10px 0;
    margin-bottom: 10px;
}

.sp-progress-bar__container {
    width: 100%;
}

/* Visual Bar Container */
.sp-progress-bar__visual {
    height: 10px;
    background-color: var(--progress-background);
    border-radius: 100px;
    overflow: hidden;
    margin-bottom: 10px;
}

/* Fill (The actual progress) */
.sp-progress-bar__fill {
    height: 100%;
    background-color: var(--color-green);
    transition: width 0.4s ease;
    width: 50%;
}

/* Step Label Text */
.sp-progress-bar__label {
    font-size: 15px;
    font-weight: 500;
    color: var(--light-blue);
    font-family: var(--font-family-tertiary);
}

/* --- JAVASCRIPT LOGIC INTEGRATION --- */

/* Update fill based on data-step-progress attribute (handled by postSlide JS) */
#sp-progress-bar[data-step-progress="2"] .sp-progress-bar__fill {
    width: 50%;
}

#sp-progress-bar[data-step-progress="3"] .sp-progress-bar__fill {
    width: 75%; /* Step 3 of 4 */
}

#sp-progress-bar[data-step-progress="4"] .sp-progress-bar__fill {
    width: 100%; /* Step 4 of 4 (Done) */
}

/* Hiding and Showing Labels based on step */
.step-label-current,
.step-label-3,
.step-label-4 {
    display: none;
}

#sp-progress-bar[data-step-progress="2"] .step-label-current {
    display: inline;
}

#sp-progress-bar[data-step-progress="3"] .step-label-3 {
    display: inline;
}

#sp-progress-bar[data-step-progress="4"] .step-label-4 {
    display: inline;
}

.site-branding.post-slide-change.changed {
    margin-left: auto;
    margin-right: auto;
}

.main-content-section.post-slide-change.changed {
    flex-direction: column;
}

.form-column.post-slide-change.changed {
    margin-left: auto;
    margin-right: auto;
}

    .form-column.post-slide-change.changed .form-container {
        padding-top: 0;
    }

@media screen and (min-width: 768px) {
    .hero-image__container {
        min-height: 600px;
    }

    .hero-agent-text .phone-icon::before {
        left: 8%;
    }

    .hero-phone-text::before {
        top: 3px;
        right: 94%;
        left: unset;
        width: 50px;
        height: 50px;
    }

    .hero-phone-text::after {
        top: 15px;
        left: 4%;
        width: 50%;
        height: 50%;
    }
}

@media screen and (min-width: 1400px) {
    .hero-image__container {
        min-height: 644px;
    }

    .hero-agent-text .phone-icon::before {
        left: 12%;
    }

    .hero-phone-text::before {
        top: -4px;
        right: 80%;
        left: unset;
        width: 137px;
        height: 137px;
    }

    .hero-phone-text::after {
        top: 19px;
        left: 19%;
    }
}

@media screen and (min-width: 2500px) {
    .hero-image__container {
        min-height: 644px;
    }

    .hero-agent-text .phone-icon::before {
        left: 22%;
    }

    .hero-phone-text::before {
        top: -8px;
        right: 72%;
        left: unset;
        width: 185px;
        height: 185px;
    }

    .hero-phone-text::after {
        top: 19px;
        left: 19%;
    }
}

.review-section--transparent {
    background-color: transparent;
}

.page-template-mini-flow-b .review-section #content {
    padding: 0;
}

.hero-image__container--left {
    background-position: left;
    display: flex;
    align-items: flex-end;
}

.hero-cta__container--round {
    width: 100%;
    min-height: 223px;
    border-radius: 20px;
    border: 1px solid var(--color-dark-green);
    background-size: cover;
    background-position: left;
    background-repeat: no-repeat;
    margin-left: 33px;
    margin-bottom: 75px;
}

.hero-cta__text--card {
    width: 277px;
    height: 158px;
    padding: 20px 25px;
    border-radius: 20px;
    background-color: var(--color-pale);
    border: 1px solid var(--color-light-green);
    margin-left: auto;
    margin-right: 37px;
    margin-top: 33px;
}

.hero-phone-text--no-arrow::before,
.hero-phone-text--no-arrow::after {
    content: none;
}

.hero-cta__text--card .hero-agent-text {
    font-family: Poppins;
    font-weight: 500;
    font-size: 14px;
    line-height: 100%;
    text-align: center;
    vertical-align: middle;
    color: var(--text-dark);
}

.hero-cta__text--card .hero-agent-text {
    font-family: Poppins;
    font-weight: 500;
    font-size: 14px;
    line-height: 100%;
    text-align: center;
    vertical-align: middle;
    color: var(--text-dark);
}

.hero-cta__text--card .hero-phone-text {
    font-family: Poppins;
    font-weight: 400;
    font-size: 10px;
    line-height: 100%;
    text-align: center;
    vertical-align: middle;
    color: var(--text-dark);
}

.hero-cta__text--card .hero-agent-text .phone-icon::before {
    left: unset;
    right: 0;
    top: 0;
}

.hero-cta__text--card .hero-agent-text .phone-icon--desktop::before {
    left: 17%;
    right: unset;
    top: 0;
}

.hero-cta__container--mobile {
    width: 220px;
    min-height: 80px;
    margin-top: -70px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 31px;
}

@media screen and (max-width: 600px) {
    .hero-cta__text--card {
        width: 100%;
        height: 100%;
        margin-left: 34px;
        margin-right: 35px;
    }

        .hero-cta__text--card .hero-agent-text .phone-icon::before {
            right: 12%;
        }

    .hero-image__container--left {
        background-size: contain;
        background-position: top;
        align-items: center;
    }
}

.mobile-call-btn--blue {
    background-color: var(--darker-blue) !important;
    box-shadow: none;
}

.mobile-no-obligation--black {
    font-family: var(--font-family-cuartery);
    font-weight: 500;
    font-size: 14px;
    line-height: 22.86px;
    text-align: center;
    vertical-align: middle;
    color: var(--text-black);
    margin-top: 10px !important;
}

.header-phone__container .call-now {
    display: none;
}

@media screen and (max-width: 600px) {
    .header-phone__container--circle {
        padding: 0 20px;
        border-radius: 100px;
        border: 1px solid rgba(0, 0, 0, 0.23);
        height: 36px;
    }

        .header-phone__container--circle .phone {
            display: block;
            margin-top: 6px;
        }

        .header-phone__container--circle .call-now {
            display: block;
        }

            .header-phone__container--circle .call-now .small {
                font-family: var(--font-family-cuartery);
                font-weight: 600;
                font-size: 10px;
                line-height: 100%;
                vertical-align: middle;
                color: var(--darkest-blue) !important;
            }

        .header-phone__container--circle .phone-icon svg {
            width: 20px;
            height: 20px;
        }

        .header-phone__container--circle .phone-icon::before {
            right: unset;
            left: -60%;
            top: 6px;
        }

    header .header-phone__container--circle .phone .phone-icon {
        margin-right: 0.5rem;
    }
}

@media screen and (max-width: 400px) {
    .page-template-ty-page .hero-agent-text .phone-icon::before {
        top: 6px;
        left: -8px;
    }
}

.mobile-call-number--blue {
    color: var(--color-blue);
}
