/* 
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 */

/* Benefits Accordion */
.benefits__main-container {
    width: 100%;
    padding: 0;
    margin: 0 auto;
}

.benefits-accordion__tabs-main-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefits-accordion__tab-container {
    width: 100%;
    margin: 0;
    clear: both;
    box-shadow: 0 4px 4px rgba(0,0,0,.25);
    background: white;
    border-radius: 10px;
}

.benefits-accordion__tab-title {
    display: flex;
    align-items: center;
    position: relative;
    padding: 1rem 2rem;
    text-decoration: none;
}

.benefits-accordion__tab-title h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #89826E;
    margin: 0;
}

.benefits-accordion__tab-title i {
    position: absolute;
    right: 2rem;
    font-size: .5rem;
}

.benefits-accordion__tab-title i:before {
    font-size: 2rem;
    color: #C14A09;
    display: inline-block;
    transition: transform 0.3s ease-in-out;
}

.benefits-accordion__tab-title.open i:before {
    transform: rotate(-180deg);
}

.benefits-accordion__tab-content {
    display: none;
    padding: 1rem 2rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: black;
    overflow: auto;
    background: white;
    margin: 0;
    border-radius: 0 0 10px 10px;
}