/**
 * Theme Name: Blocksy Child
 * Description: Blocksy Child theme
 * Author: Creative Themes
 * Template: blocksy
 * Text Domain: blocksy
 */

li.current_page_item {
    display: none !important;
}

li.current-menu-item {
    display: none !important;
}

.ct-header-text a {
	--theme-text-decoration: none !important;
}

.ct-box-logo .elementor-widget-container { display: flex; min-height: 180px; justify-content: center; align-self: center
}

.ct-review-box:hover .elementor-icon { color: var(--theme-palette-color-4) !important 
}

/* Ultimate Member Plugin */
#um-submit-btn {
  background-color: #ff9900 !important; 
  border-radius: 25px !important;
  color: #000000 !important;

}
body .um-account-side li
{
  border-radius: 15px;
  padding: 5px !important;
  margin: 5px !important;
}
body .um-account-side li:hover
{
  border-radius: 15px;
  padding: 5px !important;
  margin: 5px !important;
  background-color: #000000 !important; 
}
body .um-account-side li .um-account-link:hover
{
  background-color: #000000 !important;
  color:#ff9900 !important;
}

body .um-account-side li a span.um-account-title:hover
{
    color:#fff !important;
}
#um_account_submit_general
{
  background-color: #ff9900 !important; 
  border-radius: 25px !important;
  color: #000000 !important;
}
body .um_form_field
{
  border-radius: 15px !important;
}


/* Basic Styling for custom FAQ Section */
.faq-section {
  border: 0px solid #fff;
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 20px;
}

.faq-item {
  border-bottom: 1px solid #fff;
  margin: 5px;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  background-color: #fff;
  color: #333;
  cursor: pointer;
  padding: 15px 20px;
  margin: 0;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease;
  position: relative; /* Essential for icon positioning */
}

.faq-question:hover {
  background-color: #e9e9e9;
}

.faq-question::before { /* Left-side icon */
  content: '+';
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  line-height: 1;
  margin-right: 15px;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::before {
  content: '-';
}

.faq-answer {
  padding: 0 20px;
  background-color: white;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.faq-answer p,
.faq-answer ul,
.faq-answer img {
  margin-top: 5px;
  margin-bottom: 5px;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 15px 20px;
}



       .benefits-card {
          max-width: 650px;
          
          /*
            width: 90%;
            background-color: #ffffff;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            padding: 40px;  
            */
        }

        .benefits-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .benefits-list li {
            position: relative;
          	color:#000000;
            background-color: #ff9900;
            padding: 20px 25px 20px 60px;
            margin-bottom: 15px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            font-size: 1.1em;
            line-height: 1.5;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        .benefits-list li:last-child {
            margin-bottom: 0;
        }

        .benefits-list li:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .benefits-list li::before {
            content: '✔';
            position: absolute;
            left: 20px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 1.5em;
            color: #000000;
            font-weight: 700;
        }

