.row {
    --bs-gutter-x: 0rem;
}

.big_text {
    margin-bottom: 15px;
    font-size: 9vmin;
    text-transform: uppercase;
    line-height: 0.916;
    text-align: center;
    text-shadow: rgb(51, 51, 51) 0px 0px 10px;
}

.container, .container-fluid {
    padding-right: 0 !important;
    padding-left: 0 !important;
}

 
body.has-sticky-sidebar footer .container,
body.has-sticky-sidebar footer .container-fluid {
    padding-right: 15px !important;
    padding-left: 15px !important;
}

 
body.has-sticky-sidebar footer i,
body.has-sticky-sidebar footer svg,
body.has-sticky-sidebar footer .fa,
body.has-sticky-sidebar footer .fab,
body.has-sticky-sidebar footer .fas,
body.has-sticky-sidebar footer .far {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

 
body.has-sticky-sidebar footer a {
    display: inline-block !important;
    visibility: visible !important;
}

body.has-sticky-sidebar {
    margin: 0;
    min-height: 100vh;
    background-color: #fff; 
}

 
@media (min-width: 993px) {
    body.has-sticky-sidebar {
        --safer-header-height: 105px;
        --safer-sidebar-width: 360px;
        overflow-x: hidden;
    }

        
        body.has-sticky-sidebar .main-content-wrapper {
            display: grid;
            grid-template-columns: 1fr var(--safer-sidebar-width);
            gap: 0;  
            min-height: 100vh;
            padding-top: var(--safer-header-height);
            background-color: transparent;  
        }

 
            body.has-sticky-sidebar .main-content-wrapper > *:not(.sticky-sidebar) {
                grid-column: 1;
                width: 100%;
                max-width: 100%;
            }

        
        body.has-sticky-sidebar footer {
            grid-column: 1;
            width: 100% !important;
            max-width: 100% !important;
        }

 
        body.has-sticky-sidebar .sticky-sidebar {
            grid-column: 2;
            grid-row: 1 / -1;
        }

 
        body.has-sticky-sidebar .safer-sticky-header {
            position: fixed;
            top: 0;
            left: 0;
            right: var(--safer-sidebar-width);
            width: auto;
            z-index: 1100;
        }
}

 
@media (max-width: 992px) {
    body.has-sticky-sidebar .main-content-wrapper {
        display: block;
    }

    body.has-sticky-sidebar .safer-sticky-header {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        width: 100%;
        z-index: auto;
    }

    body.has-sticky-sidebar .main-content-wrapper {
        padding-top: 0;
    }

 
    body.has-sticky-sidebar .sticky-sidebar {
        position: relative;
        width: 100%;
        height: auto;
        box-shadow: none;
    }

    body.has-sticky-sidebar .sticky-sidebar-content {
        max-width: 500px;
        margin: 0 auto;
        padding: 40px 20px;
    }
}

.safer-sticky-header {
    width: 100%;
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    padding: 15px 0;
}

.safer-header-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding: 0 40px;
}

@media (max-width: 992px) {
    .safer-header-container {
        padding: 0 20px;
    }
}

.safer-header-logo {
    height: 75px;
    width: auto;
    max-width: 100%;
}

.safer-hero {
    position: relative;
    min-height: 1075px;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    text-align: center;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 40px 200px;
    width: 100%;  
}

@media (max-width: 992px) {
    .safer-hero {
        padding: 60px 20px 100px;
    }
}

.safer-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.safer-hero h1 {
    color: #fff;
    font-size: 3.5rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
    line-height: 1.1;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
}

.safer-hero .subtitle {
    color: #fff;
    font-size: 2rem;
    font-weight: 300;
    font-style: italic;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.btn-safer {
    background-color: #c62828;
    border: 2px solid #fff;
    color: #fff;
    padding: 15px 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

    .btn-safer:hover {
        background-color: #fff;
        color: #c62828;
        text-decoration: none;
        transform: translateY(-2px);
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
    }

.safer-hero-image {
    display: none;
}

    .safer-hero-image img {
        display: none;
    }

.safer-how-it-works {
    padding: 50px 0;
    background-color: #fff;
    text-align: center;
    width: 100%; 
}

@media (min-width: 993px) {
    .safer-how-it-works {
        padding: 50px 40px;
    }
}

@media (max-width: 992px) {
    .safer-how-it-works {
        padding: 30px 20px;
    }
}

.safer-how-it-works h2 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 40px;
    font-weight: 400;
}

.safer-feature-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 30px 20px;
    margin-bottom: 20px;
    height: 100%;
    background: #fff;
}

.safer-feature-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .safer-feature-icon svg,
    .safer-feature-icon img {
        width: 100%;
        height: 100%;
        max-width: 90px;
        max-height: 90px;
        display: block;
    }

.safer-feature-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.safer-feature-card p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 0;
}

.safer-pricing {
    background-color: #f5f5f5;
    padding: 50px 0;
    text-align: center;
    width: 100%; 
}

@media (max-width: 992px) {
    .safer-pricing {
        padding: 50px 20px;
    }
}

.safer-pricing h2 {
    font-size: 1.6rem;
    color: #333;
    margin-bottom: 30px;
    font-weight: 400;
}

    .safer-pricing h2 .discount-code {
        color: #c62828;
        font-weight: 700;
    }

.safer-plans-wrapper {
    position: relative;
    overflow: hidden;
    margin: 0 auto 20px;
    max-width: 600px;
}

.safer-plans-carousel {
    display: flex;
    transition: transform 0.4s ease-in-out;
}

.safer-plans-slide {
    min-width: 100%;
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 0 10px;
}

.safer-plan-card {
    background: #fff;
    border: 2px solid #c62828;
    border-radius: 8px;
    padding: 25px 20px;
    width: 220px;
    flex-shrink: 0;
}

    .safer-plan-card .plan-icon {
        font-size: 1.5rem;
        color: #333;
        margin-bottom: 10px;
        min-height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .safer-plan-card .plan-icon svg {
            width: 50px;
            height: 40px;
            fill: #333;
        }

    .safer-plan-card h4 {
        font-size: 1rem;
        font-weight: 700;
        color: #333;
        margin-bottom: 15px;
    }

    .safer-plan-card .plan-duration {
        color: #c62828;
        font-size: 1.3rem;
        font-weight: 600;
        margin-bottom: 5px;
    }

    .safer-plan-card .plan-reg-price {
        font-size: 0.85rem;
        color: #999;
        text-decoration: line-through;
        margin-bottom: 5px;
    }

    .safer-plan-card .plan-price {
        font-size: 2rem;
        font-weight: 700;
        color: #333;
    }

.safer-carousel-dots {
    margin: 25px 0;
    display: flex;
    justify-content: center;
    gap: 12px;
}

    .safer-carousel-dots button {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background-color: #ccc;
        border: none;
        padding: 0;
        cursor: pointer;
        transition: all 0.3s ease;
    }

        .safer-carousel-dots button:hover {
            background-color: #999;
        }

        .safer-carousel-dots button.active {
            background-color: #c62828;
            width: 14px;
            height: 14px;
        }

.safer-terms {
    font-size: 0.9rem;
    color: #666;
    margin-top: 20px;
}

    .safer-terms a {
        color: #c62828;
        text-decoration: underline;
    }

.safer-covid-banner {
    background-color: #4a4a4a;
    color: #fff;
    padding: 15px 40px;
    text-align: center;
    font-size: 0.9rem;
    width: 100%; 
}

@media (max-width: 992px) {
    .safer-covid-banner {
        padding: 15px 20px;
    }
}

.safer-logo-section {
    background-color: #fff;
    padding: 30px 40px;
    text-align: center;
    border-bottom: 3px solid #c62828;
    width: 100%; 
}

@media (max-width: 992px) {
    .safer-logo-section {
        padding: 30px 20px;
    }
}

.safer-logo-section img {
    max-width: 180px;
    height: auto;
}

.safer-logo-section .tagline {
    font-size: 0.75rem;
    color: #666;
    margin-top: 5px;
}

.safer-globe-section {
    background-color: #fff;
    padding: 40px 40px;
    text-align: center;
    width: 100%; 
}

@media (max-width: 992px) {
    .safer-globe-section {
        padding: 40px 20px;
    }
}

.safer-globe-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .safer-globe-icon img,
    .safer-globe-icon svg {
        width: 100% !important;
        height: 100% !important;
        max-width: 48px !important;
        max-height: 48px !important;
        display: block;
        object-fit: contain;
    }

.safer-globe-section h2 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 20px;
    font-weight: 400;
}

.safer-globe-section p {
    font-size: 0.95rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.safer-footer {
    background-color: #8b0000;
    padding: 25px 40px;
    text-align: center;
    width: 100%;  
}

@media (max-width: 992px) {
    .safer-footer {
        padding: 25px 20px;
    }
}

.safer-footer a {
    color: #fff;
    text-decoration: none;
    margin: 0 15px;
    font-size: 0.95rem;
}

    .safer-footer a:hover {
        text-decoration: underline;
    }

@media (max-width: 992px) {
    .safer-hero {
        min-height: 600px;
        padding: 60px 20px 100px;
    }

        .safer-hero h1 {
            font-size: 2rem;
        }

        .safer-hero .subtitle {
            font-size: 1.2rem;
        }

    .safer-plans-slide {
        flex-direction: column;
        align-items: center;
    }

    .safer-plan-card {
        width: 100%;
        max-width: 280px;
        margin-bottom: 15px;
    }

    .safer-plans-wrapper {
        max-width: 100%;
        padding: 0 20px;
    }

    .btn-safer {
        padding: 12px 35px;
        font-size: 1rem;
    }
}

