/**
 * Theme Name:     Hello Elementor Child
 * Author:         Elementor Team
 * Template:       hello-elementor
 * Text Domain:	   hello-elementor-child
 * Description:    Hello Elementor is a lightweight and minimalist WordPress theme that was built specifically to work seamlessly with the Elementor site builder plugin. The theme is free, open-source, and designed for users who want a flexible, easy-to-use, and customizable website. The theme, which is optimized for performance, provides a solid foundation for users to build their own unique designs using the Elementor drag-and-drop site builder. Its simplicity and flexibility make it a great choice for both beginners and experienced Web Creators.
 */

 .pave-features-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.pave-feature-card {
    padding: 22px;
    border: 1px solid #dfe5ec;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 4px 12px rgba(20, 40, 70, 0.06);
}

.pave-feature-icon {
    width: 38px;
    height: 38px;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e5f8fa;
    border-radius: 10px;
}

.pave-feature-icon img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.pave-feature-title {
    margin: 0 0 8px;
    font-size: 17px;
    line-height: 1.3;
    font-weight: 700;
}

.pave-feature-content {
    font-size: 15px;
    line-height: 1.7;
    color: #53627a;
}

.pave-feature-content p {
    margin: 0;
}

@media (max-width: 767px) {
    .pave-features-grid {
        grid-template-columns: 1fr;
    }
}

.pave-faq {
    width: 100%;
}

.pave-faq-item {
    background: #ffffff;
    border: 1px solid #dbe4ef;
    border-radius: 18px;
    margin-bottom: 14px;
    overflow: hidden;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.pave-faq-item.is-open {
    border-color: #74dce6;
}

.pave-faq-question {
    width: 100% !important;
    min-height: 80px;
    padding: 20px 24px;
    border: 0 !important;
    background: white;
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
}
.pave-faq-question:hover{
    background: white !important;
}

.pave-faq-question-text {
    font-size: 17px;
    line-height: 1.4;
    font-weight: 700;
    color: #07182b;
}

.pave-faq-icon {
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #f1f6fb;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s ease, transform 0.25s ease;
}

.pave-faq-icon svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: #087d9a;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.pave-faq-item.is-open .pave-faq-icon {
    background: #28bfd0;
    transform: rotate(180deg);
}

.pave-faq-item.is-open .pave-faq-icon svg {
    stroke: #ffffff;
}

.pave-faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.3s ease;
}

.pave-faq-answer-inner {
    overflow: hidden;
    padding: 0 24px;
    color: #53627a;
    font-size: 16px;
    line-height: 1.7;
}

.pave-faq-item.is-open .pave-faq-answer {
    grid-template-rows: 1fr;
}

.pave-faq-item.is-open .pave-faq-answer-inner {
    padding-top: 0;
    padding-bottom: 22px;
}

.pave-faq-answer-inner p {
    margin: 0;
}

.pave-faq-answer-inner p + p {
    margin-top: 10px;
}

@media (max-width: 767px) {

    .pave-faq-question {
        min-height: 70px;
        padding: 18px;
    }

    .pave-faq-question-text {
        font-size: 15px;
    }

    .pave-faq-answer-inner {
        padding-left: 18px;
        padding-right: 18px;
        font-size: 15px;
    }

    .pave-faq-icon {
        flex-basis: 32px;
        width: 32px;
        height: 32px;
    }
}
[type=button]:focus, [type=button]:hover, [type=submit]:focus, [type=submit]:hover, button:focus, button:hover{
    background-color: white !important;
}