/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */

:root {
    /* Colors */
    --color-primary: #1E3A8A;
    --color-primary-light: #ff637c24;
    --color-primary-border: #ff637c4a;
    --color-background: #141414;
    --color-text: #fff;
    --color-text-dark: #000;
    --color-border: #d2d2d2b5;
    --color-border-light: #ffffff94;
    --color-border-form: #ffffff59;
    
    /* Typography */
    --font-family-primary: "Inter", Sans-serif;
    --font-weight-semibold: 600;
    --font-size-base: 18px;
    --font-size-button: 16px;
    
    /* Spacing */
    --spacing-xs: 5px;
    --spacing-sm: 6px;
    --spacing-md: 10px;
    --spacing-md-lg: 13px;
    --spacing-lg: 15px;
    --spacing-xl: 20px;
    --spacing-xxl: 22px;
    --spacing-xxxl: 30px;
    --spacing-xxxxl: 60px;
    --spacing-rem: 2rem;
    
    /* Border Radius */
    --radius-sm: 10px;
    --radius-md: 30px;
    --radius-lg: 40px;
    
    /* Layout */
    --max-width-container: 1366px;
    --z-index-header: 99;
    --counter-size: 50px;
    
    /* Animation */
    --animation-duration: 20s;
    --transition-fast: 0.3s;
    --transition-slow: 1s;
    
    /* Icon */
    --icon-size: 22px;
    --icon-offset: -48px;
    
    /* Form */
    --textarea-height: 150px;
    --form-padding-y: 16px;
    --form-padding-x: 30px;
    
    /* Background Overlay */
    --overlay-width: 120%;
    --overlay-height: 100vw;
    --overlay-offset-left: -10%;
    --overlay-offset-top: -120px;
}

/* ==========================================================================
   Base Styles
   ========================================================================== */

*,
button,
input,
textarea,
select,
optgroup,
option,
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-family-primary);
}

[type=button]:focus, [type=button]:hover, [type=submit]:focus, [type=submit]:hover, button:focus, button:hover {
    outline: none !important;
    box-shadow: none !important;
    background-color: var(--color-primary) !important;
}
body {
    overflow-x: hidden;
}

textarea {
    height: var(--textarea-height);
    width: 100%;
}

.max_wdith {
    max-width: 760px !important;
    margin: auto;
}
.scrolling-wrapper {
    width: 100%;
}

.scrolling-content {
    display: flex;
    align-items: center;
    justify-content: center;
    width: max-content;
    animation: scroll-left var(--animation-duration, 30s) linear infinite;
}

.scrolling-content span {
    flex-shrink: 0;
    margin: 0 var(--spacing-rem);
}
.scrolling-wrapper:hover .scrolling-content {
    animation-play-state: paused;
}
.shadoww {
    box-shadow: 1px 1px 5px 1px #dcdada;
}
.shadoww a.elementor-button {
    width: 100%;
}
span.monthly {
    color: #A0A3BD;
    font-size: 16px;
    font-weight: 400;
    margin-left: -8px;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
}
.testimonials-content {
    display: flex;
    align-items: flex-start;
    gap: 60px;
    flex-wrap: wrap;
}
.testimonials-header {
    position: absolute;
    left: -48%;
    z-index: 99;
    BOTTOM: -48%;
}
.testimonials-label {
    display: inline-block;
    color: #14B8A6;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}
.testimonials-title {
    color: #1E3A8A;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 20px 0;
}
.testimonials-description {
    color: #64748B;
    font-size: 16px;
    line-height: 1.6;
    margin: 0 0 30px 0;
}
.testimonials-description strong {
    color: #1E40AF;
}
.testimonials-button {
    display: inline-block;
    background-color: #1E3A8A;
    color: #fff;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid #3B82F6;
    transition: all 0.3s ease;
    margin-bottom: 30px;
}
.testimonials-button:hover {
    background-color: #1E40AF;
    border-color: #2563EB;
}
.testimonials-navigation {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}
.testimonials-nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background-color: #06B6D4;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    padding: 0;
}
.testimonials-nav-btn:hover {
    background-color: #06B6D4;
    color: #fff;
}
button.testimonials-nav-btn[disabled] {
    background: #fff;
    color: #06B6D4;
}
.testimonials-nav-btn svg {
    width: 24px;
    height: 24px;
}
.testimonials-slider {
    flex: 1;
    min-width: 500px;
    overflow: hidden;
}
.testimonials-slider-wrapper {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
    will-change: transform;
}
.testimonial-card {
    flex: 0 0 calc(50% - 15px);
    min-width: 0;
    flex-shrink: 0;
}
.testimonial-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}
.testimonial-stars {
    margin-bottom: 20px;
}
.testimonial-stars .star {
    font-size: 20px;
    color: #FBBF24;
    margin-right: 3px;
}
.testimonial-stars .star.star-empty {
    color: #E5E7EB;
}
.testimonial-text {
    color: #334155;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}
.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}
.testimonial-avatar-placeholder {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #E5E7EB;
}
.testimonial-author-info {
    flex: 1;
}
.testimonial-name {
    color: #1E3A8A;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}
.testimonial-role {
    color: #94A3B8;
    font-size: 14px;
}
.elementor-counter-number-suffix {
    color: #06B6D4;
}
ul.footer_menu {
    display: flex;
    justify-content: end;
    gap: 40px;
    list-style: none;
}

ul.footer_menu li a {
    color: #fff;
}
.m-auto {
    margin: auto;
}
.m-b-50 {
    margin-bottom: 50px;
}
.ekit-template-content-header {
    position: absolute;
    width: 90%;
    z-index: 99;
    max-width: 1366px;
    margin: auto;
    left: 0;
    right: 0;
    border-radius: 300px !important;
    background: #fff;
    padding: 0px 20px;
    margin-top: 20px;
    box-shadow: 1px 1px 5px 1px #eee;
}
.menu_btn a {
    background-color: #1E3A8A !important;
    border-radius: 30px;
    padding: 10px 40px 10px 40px !important;
    color: #fff !important;
    height: 70% !important;
    margin-top: 7% !important;
    margin-left: 25px;
}
.space_between {
    margin-left: 15% !important;
}

.templates-container {
    max-width: 1200px;
    margin: 0 auto;
}
.templates-content {
    display: flex;
    align-items: flex-start;
    gap: 60px;
    flex-wrap: wrap;
}
.templates-header {
    flex: 1;
    min-width: 300px;
}
.templates-label {
    display: inline-block;
    color: #14B8A6;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}
.templates-title {
    color: #1E3A8A;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 20px 0;
}
.templates-description {
    color: #64748B;
    font-size: 16px;
    line-height: 1.6;
    margin: 0 0 30px 0;
}
.templates-button {
    display: inline-block;
    background-color: #1E3A8A;
    color: #fff;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid #3B82F6;
    transition: all 0.3s ease;
    margin-bottom: 30px;
}
.templates-button:hover {
    background-color: #1E40AF;
    border-color: #2563EB;
}
.templates-slider {
    flex: 1;
    min-width: 500px;
    overflow: hidden;
    position: relative;
}
.templates-slider-wrapper {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
    will-change: transform;
    flex-wrap: nowrap;
}
.template-card {
    flex: 0 0 calc((100% - 60px) / 2.5);
    min-width: 0;
    flex-shrink: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    max-width: calc((100% - 60px) / 2.5);
}
.template-card:hover {
    transform: translateY(-5px);
}
.template-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #E0F2FE;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    flex-shrink: 0;
}
.template-icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}
.template-icon-placeholder {
    color: #14B8A6;
}
.template-icon-placeholder svg {
    width: 32px;
    height: 32px;
}
.template-title {
    color: #1E3A8A;
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 12px 0;
    line-height: 1.3;
}
.template-description {
    color: #64748B;
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 20px 0;
    flex-grow: 1;
}
.template-start-btn {
    display: inline-block;
    background-color: #1E3A8A;
    color: #fff !important;
    padding: 13px 24px;
    border-radius: 38px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    text-align: center;
    margin-top: auto;
}
.template-start-btn:hover {
    background-color: #1E40AF;
}
.templates-navigation {
    display: flex;
    gap: 15px;
    justify-content: start;
    margin-top: 30px;

}
.templates-nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background-color: #E5E7EB;
    color: #1E3A8A;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    padding: 0;
}
.templates-nav-btn:hover:not(:disabled) {
    background-color: #06B6D4;
    color: #fff;
}
.templates-nav-btn.templates-nav-next {
    background-color: #E0F2FE;
    color: #06B6D4;
}
.templates-nav-btn.templates-nav-next:hover:not(:disabled) {
    background-color: #06B6D4;
    color: #fff;
}
.templates-nav-btn svg {
    width: 24px;
    height: 24px;
}

button.templates-nav-btn[disabled]:hover {
    background: #dddddd;
    color: black;
}

/* Templates Archive Styles */


.templates-search-wrapper {
    margin-bottom: 30px;
}
.templates-search-form {
    position: relative;
    max-width: 100% ;
}
.templates-search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}
.templates-search-icon {
    position: absolute;
    left: 16px;
    color: #94A3B8;
    pointer-events: none;
    z-index: 1;
}
.templates-search-input {
    width: 100% !important;
    padding: 14px 16px 14px 48px !important;
    border: 1px solid #E5E7EB !important;
    border-radius: 8px !important;
    font-size: 16px !important;
    font-family: var(--font-family-primary) !important;
    transition: border-color 0.3s ease !important;
}
.templates-search-input:focus {
    outline: none;
    border-color: #1E3A8A;
}
.templates-filters-wrapper {
    margin-bottom: 40px;
}
.templates-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.templates-filter-btn {
    display: inline-block;
    padding: 10px 20px;
    border: 1px solid #E5E7EB;
    border-radius: 30px;
    background-color: #fff;
    color: #64748B;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}
.templates-filter-btn:hover {
    border-color: #1E3A8A;
    color: #1E3A8A;
    background-color: #1E3A8A;
    color: #fff;
    
}
.templates-filter-btn.active {
    background-color: #1E3A8A;
    border-color: #1E3A8A;
    color: #fff;
}
.templates-archive-content {
    display: flex;
    flex-direction: column;
    gap: 60px;
}
.templates-category-section {
    margin-bottom: 40px;
}
.templates-category-heading {
    color: #1E3A8A;
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 30px 0;
    line-height: 1.2;
}
.templates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    width: 100%;
}
.templates-category-section .template-card {
    flex: none;
    max-width: 100%;
    width: 100%;
}
.templates-loading {
    text-align: center;
    padding: 60px 20px;
    color: #64748B;
    font-size: 16px;
}
.templates-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #E5E7EB;
    border-top-color: #1E3A8A;
    border-radius: 50%;
    animation: templates-spin 0.8s linear infinite;
    margin: 0 auto 20px;
}
@keyframes templates-spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.templates-loading p {
    margin: 0;
    font-size: 16px;
    color: #64748B;
}
.templates-no-results {
    text-align: center;
    padding: 60px 20px;
    color: #64748B;
    font-size: 16px;
}
.templates-no-results p {
    margin: 0;
    font-size: 16px;
    color: #64748B;
}
body:not(.home) {
    background: #F9FAFB;
}

.max_wdith_about {
    max-width: 980px !important;
    margin: auto;
}
#bg_position  {
    background-size: 100% 80%;
    background-position: top center;
}
div#max_widthh {
    max-width: 1200px;
    margin: auto;
}
input.wpcf7-form-control, textarea.wpcf7-form-control, select.wpcf7-form-control {
    border: none !important;
    border-bottom: 1px solid #d1d1d1 !important;
    border-radius: 0;
    margin-bottom: 20px;
    background: none;
    outline: none !important;
    padding-inline: 0;
    width: 100%;
}
textarea {
    height: 60px;
}
form.wpcf7-form, form.wpcf7-form p {
    margin: 0;
}
.flex {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 4%;
}

.width_30 {
    flex-basis: 30%;
}
.width_70 {
    flex-basis: 70%;
}
.page-id-367 .hidee {
    display: none;
}
.page-id-367 #space_on_contact {
    padding-bottom: 18%;
}
input.wpcf7-form-control.wpcf7-submit {
    background: #1E3A8A;
    color: #fff;
    max-width: 140px;
    border-radius: 30px;
    padding: 14px 10px;
}
.border_bottm_onlyy {
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
}
h2.templately-heading-title {
    text-align: center;
}

/* Post Meta Header Styles */
.post-meta-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
    padding: 20px 0;
}
.post-meta-left {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}
.post-meta-right {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.post-meta-category {
    display: inline-block;
    padding: 6px 16px;
    background-color: #F3F4F6;
    border: 1px solid #E5E7EB;
    border-radius: 20px;
    color: #374151;
    font-size: 14px;
    font-weight: 500;
}
.post-meta-reading-time,
.post-meta-author,
.post-meta-date {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #374151;
    font-size: 14px;
}
.post-meta-icon {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
    flex-shrink: 0;
}
.post-meta-separator {
    color: #374151;
    font-size: 14px;
    margin: 0 2px;
}
p.custom-excerpt-class {
    text-align: center;
    color: #fff;
    max-width: 1000px;
    margin: auto;
}
@media (max-width: 768px) {
    .post-meta-header {
        flex-direction: column;
        align-items: flex-start;
    }
    .post-meta-right {
        width: 100%;
    }
}

 @media (max-width: 1024px) {
    .testimonial-card {
        flex: 0 0 100%;
    }
    .template-card {
        flex: 0 0 calc(50% - 15px);
    }
}
@media (max-width: 768px) {
    .testimonials-content {
        flex-direction: column;
    }
    .testimonials-slider {
        max-width: 100%;
        width: 100%;
        min-width: auto !important;
    }
    .testimonial-card {
        flex: 0 0 100%;
    }
    .testimonials-title {
        font-size: 32px;
    }
    .templates-content {
        flex-direction: column;
    }
    .templates-slider {
        min-width: auto !important;
        max-width: 100% !important;
        width: 100% !important;
    }
    .templates-slider-wrapper {
        gap: 20px;
    }
    .template-card {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
    .templates-title {
        font-size: 32px;
    }
    .templates-category-heading {
        font-size: 24px;
    }
    .templates-search-form {
        max-width: 100%;
    }
    .templates-filters {
        gap: 8px;
    }
    .templates-filter-btn {
        padding: 8px 16px;
        font-size: 13px;
    }
    .templates-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}
@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Pricing Table Styles */


.hello-pricing-table {
    background: #ffffff;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Pricing Plans Header */
button.get_started {
    background-color: #1E3A8A !important;
    font-family: "Inter", Sans-serif;
    font-weight: 600;
    border-style: solid;
    border-radius: 30px 30px 30px 30px;
    padding: 13px 40px 13px 40px;
    color: #fff !important;
    border: none;
    margin-top: 20px;
}
.hello-pricing-plans {
    display: grid;
    grid-template-columns: 280px repeat(3, 1fr);
    gap: 0;
    border-bottom: 1px solid #e0e0e0;
}

.hello-pricing-plan-empty {
    padding: 50px 40px;
    background: #ffffff;
}

.hello-pricing-plan {
    padding: 50px 40px;
    text-align: center;
    background: #ffffff;
}

.hello-pricing-plan-name {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 20px 0;
}

/* Plan name colors */
.hello-pricing-plan-starter .hello-pricing-plan-name {
    color: #4a90e2;
}

.hello-pricing-plan-pro .hello-pricing-plan-name {
    color: #ff9800;
}

.hello-pricing-plan-team .hello-pricing-plan-name {
    color: #1a1a1a;
}

.hello-pricing-plan-price {
    margin-bottom: 15px;
    line-height: 1.2;
}

.hello-pricing-amount {
    font-size: 48px;
    font-weight: 700;
    color: #1a1a1a;
    display: inline-block;
}

.hello-pricing-period {
    font-size: 16px;
    color: #999;
    margin-left: 5px;
    font-weight: 400;
}

.hello-pricing-description {
    font-size: 14px;
    color: #999;
    margin: 0;
    line-height: 1.6;
}

/* Features Section */
.hello-pricing-features {
    padding: 0;
}

.hello-pricing-features-header {
    display: grid;
    grid-template-columns: 280px repeat(3, 1fr);
    gap: 0;
        padding: 40px 30px;
}

.hello-pricing-feature-name-header {
    padding-right: 30px;
}

.hello-pricing-features-heading {
    font-size: 20px;
    font-weight: 600;
    color: #4a90e2;
    margin: 0;
}

.hello-pricing-feature-plans-header {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}


.hello-pricing-features-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.hello-pricing-feature-row {
    display: grid;
    grid-template-columns: 280px repeat(1, 1fr);
    gap: 0;
    padding: 18px 30px;
    border-bottom: 1px solid #f0f0f0;
    align-items: center;
}

.hello-pricing-feature-row:last-child {
    border-bottom: none;
}

.hello-pricing-feature-name {
    font-size: 14px;
    color: #333;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 1.5;
    padding-right: 30px;
}

.hello-pricing-info-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #e0e0e0;
    color: #666;
    font-size: 10px;
    font-weight: 600;
    font-style: italic;
    cursor: help;
    flex-shrink: 0;
    line-height: 1;
    position: relative;
}


.hello-pricing-tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 8px;
    padding: 8px 12px;
    background: #333;
    color: #fff;
    font-size: 12px;
    font-weight: 400;
    font-style: normal;
    white-space: nowrap;
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s 
ease, visibility 0.3s 
ease;
    pointer-events: none;
    z-index: 1000;
    width: 280px;
    white-space: normal;
    text-align: center;
    line-height: 1.4;
}

.hello-pricing-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: #333;
}

.hello-pricing-info-icon:hover .hello-pricing-tooltip {
    opacity: 1;
    visibility: visible;
}

.hello-pricing-feature-plans {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.hello-pricing-feature-plan {
    text-align: center;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hello-pricing-checkmark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
}

.hello-pricing-checkmark svg {
    display: block;
    width: 100%;
    height: 100%;
}

.hello-pricing-cross {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
}

.hello-pricing-cross svg {
    display: block;
    width: 100%;
    height: 100%;
}

.hello-pricing-feature-text {
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

/* Responsive Styles */
@media (max-width: 981px) {
    .hello-pricing-plans {
        grid-template-columns: 1fr;
    }
    
    .hello-pricing-plan-empty {
        display: none;
    }
    
    .hello-pricing-plan {
        border-right: none;
        border-bottom: 1px solid #e0e0e0;
    }
    
    .hello-pricing-plan:last-child {
        border-bottom: none;
    }
    
    .hello-pricing-features-header {
        grid-template-columns: 1fr;
    }
    
    .hello-pricing-feature-name-header {
        padding-right: 0;
        margin-bottom: 20px;
    }
    
    .hello-pricing-feature-plans-header {
        display: none;
    }
    
    .hello-pricing-feature-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .hello-pricing-feature-name {
        border-right: none;
        border-bottom: 1px solid #e0e0e0;
        padding-bottom: 10px;
        margin-bottom: 10px;
    }
    
    .hello-pricing-feature-plans {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .hello-pricing-feature-plan {
        padding: 5px;
    }
}

@media (max-width: 480px) {
    .hello-pricing-table-wrapper {
        padding: 20px 10px;
    }
    
    .hello-pricing-plan {
        padding: 30px 20px;
    }
    
    .hello-pricing-features-header {
        padding: 20px 15px;
    }
    
    .hello-pricing-feature-row {
        padding: 12px 15px;
    }
    
    .hello-pricing-feature-plan {
        padding: 5px;
        font-size: 12px;
    }
}

@media (max-width: 1100px) {
    .scrolling-wrapper {
        overflow: hidden;
    }
    .ekit-template-content-header {
        padding: 15px 20px;
        width: 95%;
    }
    ul.footer_menu {
        justify-content: center;
    }
    .m-b-50 {
        margin-bottom: 20px !important;
    }
    .space_between {
        margin-left: 0% !important;
    }
    .menu_btn a {
        padding: 10px 20px 10px 20px !important;
        margin-left: 10px;
        margin-right: 10px;
        max-width: 170px;
        text-align: center;
        align-items: center !important;
        justify-content: center !important;
    }
}


@media(max-width: 600px) {
    .scrolling-content img {
        max-width: 90px;
    }
    ul.footer_menu {
        flex-wrap: wrap;
        row-gap: 0;
        padding-left: 0;
    }
}