/* Reset and base styles */

html {
    scroll-behavior: smooth;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: #374151;
}


.container {
	max-width: 1920px;
    margin: 0 auto;
    padding: 20px;
}

/* Header styles */
.header {
    background-color: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid #f3f4f6;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 16px;
}

.logo-icon img, .footer-logo-text img {
    width: 200px;
}


.logo-icon.small {
    width: 40px;
    height: 40px;
}

.logo-text {
    color: white;
    font-weight: bold;
    font-size: 20px;
}

.company-name {
    font-size: 18px;
    font-weight: bold;
    color: #111827;
}

.company-tagline {
    font-size: 12px;
    color: #2563eb;
    font-weight: 500;
}

.desktop-nav {  
    align-items: center;
    gap: 32px;
    display:none
}

.nav-btn {
    color: #374151;
    font-weight: 500;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.2s;
}


.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.call-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: #2563eb;
    color: white;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.call-btn:hover {
    background-color: #1d4ed8;
}

.phone-icon {
    width: 16px;
    height: 16px;
}



.mobile-phone-text {
    display: block;
}

.mobile-menu-btn {
    padding: 8px;
    color: #374151;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.2s;
}

.mobile-menu-btn:hover {
    color: #2563eb;
}

.menu-icon {
    width: 24px;
    height: 24px;
}


.contact-value a:hover {
    color: #fff;
}

/* Hero section */
.hero {
    position: relative;
    background: linear-gradient(to bottom right, #eff6ff, #f8fafc, #f1f5f9);
    padding: 64px 0;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(37, 99, 235, 0.05), rgba(100, 116, 139, 0.05));
}


.contact-value a.desktop-only:hover {
    color: #fff !important;;
}

.custom-hero-content {
    position: relative;
    display: grid;
    gap: 32px;
    align-items: center;
   padding: 0px 20px 0px 20px;
}

.custom-hero-text{
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.badge {
    border-radius: 6px;
    border: 1px solid #bfdbfe;
    background-color: #dbeafe;
    color: #1e40af;
    font-weight: 600;
    padding: 4px 12px;
    font-size: 12px;
	width: fit-content;
}

.hero-title {
    font-size: 50px;
    font-weight: bold;
    color: #111827;
    line-height: 1.2;
}

.text-blue {
    color: #2563eb;
}

.block {
    display: block;
}

.hero-description {
    font-size: 18px;
    color: #4b5563;
    line-height: 1.75;  
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 6px;
    font-weight: 600;
    padding: 12px 24px;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-primary {
    background-color: #2563eb;
    color: white;
}

.btn-primary:hover {
    background-color: #1d4ed8;
}

.btn-secondary {
    background-color: transparent;
    color: #2563eb;
    border: 2px solid #2563eb;
}

.btn-secondary:hover {
    background-color: #dbeafe;
}

.btn-icon {
    width: 16px;
    height: 16px;
}

.full-width {
    width: 100%;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    font-size: 14px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}

.feature-icon {
    width: 16px;
    height: 16px;
    color: #16a34a;
    flex-shrink: 0;
}

.hero-image {
    position: relative;
    order: -1;
}

.hero-image img {
    width: 100%;
    height: 256px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.image-badge {
       position: absolute;
    bottom: -53px;
    left: -30px;

}

.rating-stars {
    display: flex;
    color: #fbbf24;
}

.star-icon {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.star-icon.large {
    width: 20px;
    height: 20px;
}

.rating-text {
    margin-top: 8px;
}

.rating-score {
    font-weight: bold;
    color: #111827;
    font-size: 14px;
}

.rating-count {
    font-size: 12px;
    color: #4b5563;
}

/* Credentials section */
.credentials {
    background-color: #1e293b;
    padding: 24px 0;
}

.credentials-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 16px;
    color: rgba(255, 255, 255, 0.8);
}

.credential-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.credential-icon {
    width: 16px;
    height: 16px;
    color: #60a5fa;
}

/* Climate section */
.climate {
    background-color: #fffbeb;
    padding: 64px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}



.section-title {
    font-size: 30px;
    font-weight: bold;
    color: #111827;
    margin-bottom: 16px;
}


.about-content .section-title {
	
	margin-bottom: 0px;
}
	

.section-description {
    font-size: 18px;
    color: #4b5563;
  
}

.climate-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.climate-card {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    border: 0;
}

.climate-icon {
    width: 64px;
    height: 64px;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.heat-icon {
    background-color: #ffedd5;
}

.rain-icon {
    background-color: #dbeafe;
}

.wind-icon {
    background-color: #f3f4f6;
}

.hail-icon {
    background-color: #f3e8ff;
}

.climate-icon .icon {
    width: 32px;
    height: 32px;
}

.heat-icon .icon {
    color: #ea580c;
}

.rain-icon .icon {
    color: #2563eb;
}

.wind-icon .icon {
    color: #4b5563;
}

.hail-icon .icon {
    color: #9333ea;
}

.climate-title {
    font-weight: bold;
    color: #111827;
}

.climate-subtitle {
    font-size: 14px;
    font-weight: 600;
    color: #2563eb;
}

.climate-description {
    font-size: 14px;
    color: #4b5563;
}

/* Services section */
.services {
    background-color: white;
    padding: 64px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 32px;
}

.service-card {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border: 1px solid #f3f4f6;
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 24px;
    transition: all 0.3s;
}

.service-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.service-icon {
    width: 48px;
    height: 48px;
    background-color: #dbeafe;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon .icon {
    width: 24px;
    height: 24px;
    color: #2563eb;
}

.service-icon svg {
    color: #155dfc;
}

.service-title {
    font-size: 18px;
    font-weight: bold;
    color: #111827;
}

.service-description {
    color: #4b5563;
    font-size: 14px;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.service-feature {
    display: flex;
    align-items: center;
    gap: 8px;
}

.feature-check {
    width: 16px;
    height: 16px;
    color: #16a34a;
    flex-shrink: 0;
}

.services-cta {
    text-align: center;
}

/* About section */
.about {
    background-color: #f9fafb;
    padding: 64px 0;
}

.about-content {
    display: grid;
    gap: 48px;
    align-items: center;
}

.about-image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about-feature {
    display: flex;
    gap: 16px;
}

.feature-check-circle {
    width: 20px;
    height: 20px;
    background-color: #2563eb;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 4px;
}

.check-icon {
    width: 12px;
    height: 12px;
    color: white;
}

.feature-title {
    font-weight: bold;
    color: #111827;
    font-size: 14px;
    margin-bottom: 4px;
}

.feature-description {
    font-size: 14px;
    color: #4b5563;
}

/* Locations section */
.locations {
    background-color: white;
    padding: 64px 0;
}

.locations-section {
    margin-bottom: 48px;
}

.locations-subtitle {
    font-size: 20px;
    font-weight: bold;
    color: #111827;
    margin-bottom: 24px;
    text-align: center;
}

.locations-grid {
    display: grid;
    gap: 8px;
}

.major-cities {
    grid-template-columns: repeat(6, 1fr);
}

.maricopa-county, .pima-county {
    grid-template-columns: repeat(2, 1fr);
}

.location-item {
       text-align: center;
    padding: 8px 12px;
    background-color: #eff6ff;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s;
    color: #193cb8;
   
}

.location-item:hover {
    background-color: #dbeafe;
}

.location-item.small {
    padding: 8px;
    font-size: 12px;
    font-weight: 500;
    color: #374151;
	background-color: #fbf9fa;
}

.location-item.small:hover {
    color: #2563eb;
}

.locations-cta {
    text-align: center;
    margin-top: 32px;
}

.cta-card {
    background-color: #dbeafe;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid #bfdbfe;
    display: inline-block;
}

.cta-icon {
    width: 32px;
    height: 32px;
    color: #2563eb;
    margin: 0 auto 12px;
}

.cta-question {
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
}

.cta-text {
    font-size: 14px;
    color: #4b5563;
    margin-bottom: 16px;
}

.btn-outline {
    background-color: transparent;
    color: #2563eb;
    border: 1px solid #2563eb;
    padding: 8px 16px;
    font-size: 14px;
}

.btn-outline:hover {
    background-color: #dbeafe;
}

/* Testimonials section */
.testimonials {
    background-color: #f9fafb;
    padding: 64px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 32px;
}

.testimonial-card {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    border: 0;
    height: 100%;
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.stars {
    display: flex;
    color: #fbbf24;
}

.service-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    border: 1px solid #bfdbfe;
    color: #2563eb;
    font-weight: 500;
    padding: 4px 8px;
    font-size: 12px;
}

.testimonial-text {
    color: #374151;
    font-style: italic;
    font-size: 14px;
    flex-grow: 1;
}

.testimonial-author {
    margin-top: auto;
}

.author-name {
    font-weight: bold;
    color: #111827;
    font-size: 14px;
}

.author-location {
    font-size: 12px;
    color: #4b5563;
}

.testimonials-cta {
    text-align: center;
}

.rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background-color: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* Contact section */
.contact {
    background: linear-gradient(to bottom right, #2563eb, #374151);
    padding: 64px 0;
}

.contact-content {
    display: grid;
    gap: 48px;
}

.contact-info {
    color: white;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-title {
    font-size: 30px;
    font-weight: bold;
    color: #fff;
}

.contact-description {
    font-size: 18px;
    color: #bfdbfe;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background-color: #3b82f6;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon .icon {
    width: 20px;
    height: 20px;
    color: white;
}

.contact-label {
    font-weight: 600;
    font-size: 14px;
}

.contact-value {
    font-size: 18px;
    font-weight: bold;
}

.contact-alerts {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.alert {
    padding: 16px;
    border-radius: 12px;
}

.alert.emergency {
    background-color: #dc2626;
}

.alert.benefits {
    background-color: rgba(255, 255, 255, 0.1);
}

.alert-title {
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
}

.alert-icon {
    width: 16px;
    height: 16px;
}

.alert-text {
    font-size: 14px;
    color: #fecaca;
}

.benefits-list {
    list-style: none;
    font-size: 14px;
    color: #bfdbfe;
}

.contact-form-container {
    width: 100%;
}

.contact-form-card {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    padding: 24px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-title {
    font-size: 20px;
    font-weight: bold;
    color: #111827;
}

.form-subtitle {
    color: #4b5563;
    font-size: 14px;
}

.form-row {
    display: grid;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-weight: 500;
    color: #374151;
    font-size: 14px;
}

.form-input, .form-select, .form-textarea {
    padding: 8px 12px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 14px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 96px;
}

.form-footer {
    text-align: center;
}

.form-disclaimer {
    font-size: 12px;
    color: #6b7280;
    margin-bottom: 8px;
}

.form-features {
    display: flex;
    justify-content: center;
    gap: 16px;
    font-size: 12px;
    color: #9ca3af;
}

/* Footer */
.custom-footer {
    background-color: #1e293b;
    color: white;
    padding: 48px 0;
    margin:0;
}

.footer-content {
    display: grid;
    gap: 32px;
    margin-bottom: 32px;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-company-name {
    font-size: 18px;
    font-weight: bold;
}

.footer-tagline {
    font-size: 12px;
    color: #9ca3af;
}

.footer-description {
    color: #9ca3af;
    font-size: 14px;
}

.footer-credentials {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 12px;
    color: #9ca3af;
}

.footer-title {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 8px;
    color: #fff;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
    list-style: none;
}

.footer-links a {
    color: #9ca3af;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: white;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-icon {
    width: 12px;
    height: 12px;
    color: #9ca3af;
}

.footer-contact-text {
    font-size: 14px;
    color: #9ca3af;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.footer-copyright {
    font-size: 12px;
    color: #9ca3af;
    text-align: center;
}

.footer-links-bottom {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.footer-links-bottom a {
    color: #9ca3af;
    font-size: 12px;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links-bottom a:hover {
    color: white;
}

/* Responsive styles */
@media (min-width: 640px) {
    .custom-container {
        padding: 0 24px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-buttons {
        flex-direction: row;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .climate-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header-content {
        padding: 16px 0;
    }
	
	.locations-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 17px;
}
}

@media (min-width: 1200px) {
 
    
    .logo-text {
        font-size: 24px;
    }
    
    .company-name {
        font-size: 24px;
    }
    
    .company-tagline {
        font-size: 14px;
    }
    
    .desktop-nav {
        display: flex;
    }
    
  
    
    .mobile-phone-text {
        display: none;
    }
    
    .mobile-menu-btn {
        display: none;
    }
    
    .hero {
        padding: 80px 0;
    }
    
    .custom-hero-content {
        grid-template-columns: 1fr 1fr;
        gap: 48px;
    }
    
    .custom-hero-text {
        text-align: left;
        gap: 32px;
    }
    

    
    .hero-title {
        font-size: 48px;
    }
    
    .hero-buttons {
        justify-content: flex-start;
    }
    
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        justify-items: start;
    }
    
    .feature-item {
        justify-content: flex-start;
    }
    
    .hero-image {
        order: 1;
    }
    
    .hero-image img {
        height: 500px;
    }

    
    .credentials-content {
        gap: 24px;
    }
    
    .credential-item {
        font-size: 14px;
    }
    
    .climate {
        padding: 80px 0;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .climate-cards {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .services {
        padding: 80px 0;
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .service-card {
        padding: 32px;
    }
    
    .about {
        padding: 80px 0;
    }
    
    .about-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .about-image img {
        height: 384px;
    }
    
    .locations {
        padding: 80px 0;
    }
    
    .major-cities {
        grid-template-columns: repeat(6, 1fr);
    }
    
    .maricopa-county, .pima-county {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .testimonials {
        padding: 80px 0;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact {
        padding: 80px 0;
    }
    
    .contact-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

@media (min-width: 1024px) {
    .custom-container {
        padding: 0 32px;
    }
    
    .hero-title {
        font-size: 60px;
    }
    
    .credentials-content {
        gap: 32px;
    }
    
    .credential-item {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .services-grid {
        gap: 32px;
    }
    
    .major-c cities {
        grid-template-columns: repeat(6, 1fr);
    }
    
    .maricopa-county {
        grid-template-columns: repeat(7, 1fr);
    }
    
    .pima-county {
        grid-template-columns: repeat(6, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1280px) {
    .hero-title {
        font-size: 50px;
    }
    
    .section-title {
        font-size: 40px;
    }
}


.only_desktop_show a:hover button  {
    background-color: #fff;
    color: #000; /* optional: adjust text color for contrast */
   
}

.only_mobile_show a:hover .nav-btn{
      background-color: #2563eb;
       color: #fff; /* optional: adjust text color for contrast */
}



.services-cta a {
    text-decoration: none;
}

a.call-btn.desktop-only {
    text-decoration: none;
}

a.btn.btn-primary {
    text-decoration: none;
}

.cta_svg {
    display: flex;
    justify-content: center;
}

a.call-btn.desktop-only:hover {
    color: white;
}



/* gravity form css */
.gfield_label {
	color:black !important;
}

input#gform_submit_button_19, input#gform_submit_button_20, input#gform_submit_button_21, input#gform_submit_button_22 {
    width: 100% !important;
}
.elementor.elementor-8342.elementor-location-popup, .elementor.elementor-8570.elementor-location-popup
{
	padding: 10px;
}
/* gravity form css */



@media (min-width: 850px) 
{
    .button_mobile {
        display: none;
    }
}

@media (max-width: 1199px) {
		.badge {
		width:100% }
}



@media (max-width: 849px) {
    .only_mobile_show button.nav-btn { color: #fff; }
    .only_transform { transform: translateX(100%); }
    .only_desktop_show {
        position: fixed; right: 0; z-index: 1; background: #2563eb; display: flex; flex-direction: column; 
        align-items: flex-start; width: 250px; top: 0;
        padding: 20px; transform: translateX(100%); transition: all 0.3s; height: 100vh; 
    }
    .only_mobile_show { transform: translateX(0)!important; }
    .only_desktop_show a { display: block; }
    .only_desktop_show a .nav-btn { color:  #fff; display: block; width: 100%; }
    .button_mobile .nav-btn { display: block; background: black; padding: 10px; border-radius: 5px; }

}

@media (max-width: 550px) {
  span.desktop-phone-text {
    font-size: 15px;
  }
}
button.btn.btn-secondary.free-inspec {
    background: #fff;
}

a.btn.btn-primary.call_btn_banner:hover {
    background: #fff;
    color: #1d4ed8;
}

button.btn.btn-secondary.free-inspec:hover {
    color: #000;
}

button.btn.btn-secondary.free-inspec:focus {
  color: #2563eb;
  border: 2px solid #2563eb !important;
  border-color: #2563eb !important;
  button.btn.btn-secondary.free-inspec:focus-visible
}

.rain-icon2 {
    background-color: lightgray;
}