/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jul 21 2026 | 08:28:54 */
/* ========================================= ACCORDION ========================================= */
.accordion-section {
	margin-bottom: 1rem;
	
	.accordion-items {
		.accordion-item {
			border-bottom: 1px solid var(--gray-1-dyn-1);
			transition: all 0.4s;
			
			.accordion-button {
				display: flex;
				align-items: center;
				justify-content: space-between;
				column-gap: 1rem;
				width: 100%;
				height: 100%;
				padding: 1rem 0;
				text-align: left;
				transition: all 0.4s;
				
				&::after {
					display: none;
				}
				
				.accordion-title {
					font-size: 1.5rem;
					font-weight: 700;
					color: var(--green-dark-2-dyn-1);
					transition: all 0.4s;
				}

				.accordion-arrow {
					transition: all 0.4s;
					transform: rotate(0);
					
					svg {
						height: 1.5rem;
					}
				}

				&.is-active {
					.accordion-arrow {
						transform: rotate(90deg);
					}
				}
			}
			
			.accordion-content {
				padding-bottom: 1.5rem;
				color: var(--gray-dark-1-dyn-1);
				transition: all 0.4s;

				> :last-child {
					margin-bottom: 0;
				}
			}
		}
	}
}