/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Nov 03 2025 | 06:29:11 */
/* Add your CSS code here.

For example:
.example {
    color: red;
}

For brushing up on your CSS knowledge, check out http://www.w3schools.com/css/css_syntax.asp

End of comment */ 
a {
    color: inherit;
}

.page-content .elementor-element.e-parent {
    margin-bottom: 5%;
}

.annunsment_slider h1, .annunsment_slider h2, .annunsment_slider h3, .annunsment_slider h4, .annunsment_slider h5, .annunsment_slider h6 {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
	font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;
}
.annunsment_slider p {
    font-family: var( --e-global-typography-text-font-weight );
    font-size: 14px;
    margin: 0;
}

.site__logo img {
    max-height: 80px !important;
    width: auto !important;
}

.team-one img {
    border-radius: 20px 20px 0px 0px;
}

.before_after_item .before_img img, .before_after_item .after_img img {
    aspect-ratio: 3/4;
    object-fit: cover;
}


/* General Form Styling */
form#wpforms-form-1041 {
    font-family: var( --e-global-typography-accent-font-family ), sans-serif;
}

.wpforms-form {
    max-width: 600px;
    margin: 0 auto !important;
    padding: 20px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

div.wpforms-container-full, div.wpforms-container-full {
	margin: 0 auto !important;
}

.wpforms-form .wpforms-title {
    text-align: center;
}

.wpforms-form .wpforms-head-container {
    padding-bottom: 15px !important;
}

.wpforms-form .wpforms-submit-container {
    text-align: center;
}


/* Input Fields */
.wpforms-form input[type="text"], .wpforms-form input[type="email"], .wpforms-form input[type="url"], .wpforms-form input[type="tel"], .wpforms-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid var( --e-global-color-accent ) !important;
    border-radius: 10px !important;
    font-size: 16px;
    background-color: #fff;
    transition: border-color 0.3s ease;
}

.wpforms-form input:focus,
.wpforms-form textarea:focus {
    border-color: var( --e-global-color-accent ) !important;
    outline: none;
}

/* Labels */
.wpforms-form label {
    font-weight: bold;
    margin-bottom: 5px;
    display: block;
    color: #333;
}

/* Submit Button */
.wpforms-form button[type="submit"],
.wpforms-form input[type="submit"] {
    background-color: var( --e-global-color-accent ) !important;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.wpforms-form button[type="submit"]:hover,
.wpforms-form input[type="submit"]:hover {
    background-color: var( --e-global-color-accent ) !important;
}

/* Error Messages */
.wpforms-error {
    color: #d9534f;
    font-size: 14px;
    margin-top: -10px;
    margin-bottom: 10px;
}

/* Success Message */
.wpforms-confirmation-container {
    background-color: #dff0d8;
    color: #3c763d;
    padding: 15px;
    border: 1px solid #d6e9c6;
    border-radius: 4px;
    margin-bottom: 20px;
}



/* Accordion Container */
.accordion-container {
    max-width: 800px; /* Adjust as needed */
    margin: 30px auto;
    border: 0px solid #ddd;
    border-radius: 5px;
    overflow: hidden; /* Clears floats if any */
}

/* Accordion Item */
.accordion-item {
    border-bottom: 0px solid #eee;
}
.accordion-item:last-child {
    border-bottom: none; /* No border for the last item */
}

/* Accordion Header (the clickable button) */
.accordion-header {
    background-color: var( --e-global-color-accent );
    color: #333;
    cursor: pointer;
    padding: 15px 20px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    transition: background-color 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.accordion-header:hover,
.accordion-header:focus {
    background-color: var( --e-global-color-accent );
}
.accordion-header h3 {
    margin: 0; /* Remove default margin from h3 */
    font-size: 1.15em;
    font-weight: 600;
    line-height: 1.4;
    flex-grow: 1; /* Allows h3 to take available space */
}

/* Accordion Icon (plus/minus) */
.accordion-icon {
    display: inline-block;
    width: 18px;
    height: 18px;
    position: relative;
    margin-left: 15px;
}
.accordion-icon::before,
.accordion-icon::after {
    content: '';
    position: absolute;
    background-color: #fff;
    transition: transform 0.3s ease;
}
.accordion-icon::before { /* Horizontal bar for plus */
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    transform: translateY(-50%);
}
.accordion-icon::after { /* Vertical bar for plus */
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    transform: translateX(-50%);
}

/* Rotate icon on active state */
.accordion-header[aria-expanded="true"] .accordion-icon::after {
    transform: translateX(-50%) rotate(90deg); /* Hides vertical bar, creating minus */
}

/* Accordion Content */
.accordion-content {
    padding: 0 20px;
    background-color: var( --e-global-color-secondary );
    max-height: 0; /* Initially hidden */
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}
.accordion-content p {
    margin: 0 0 15px 0; /* Adjust bottom margin for content */
    padding-top: 10px; /* Add some top padding to content */
    color: #555;
    line-height: 1.6;
}

/* Active state for content */
.accordion-content.active {
    max-height: 500px; /* Adjust to a value larger than your max content height */
    padding-bottom: 15px;
}


.amelia_service_booking_button{
    background-color: var( --e-global-color-accent );
    font-family: var( --e-global-typography-accent-font-family ), Sans-serif;
    font-weight: var( --e-global-typography-accent-font-weight );
}

.elementor-pagination .page-numbers {
    padding: 10px 15px;
    box-shadow: 0px 0px 1px 1px #d8d8d8;
}



.service-thmb img {
    aspect-ratio: 1/1;
    object-fit: cover;
}


/* Amelia Price List*/
.amelia-services table{
	font-size:18px;
    border-collapse: separate;
    border-spacing: 0 20px;
}
.amelia-services tr {
    border: 0px solid hsla(0, 0%, 50.2%, .5019607843);
    background-color: #f2f2f2;
}

.amelia-services table th{
	text-align:left;
	background-color: var( --e-global-color-accent ) !important; 
	color:#fff;
}

.amelia-services table td, .amelia-services table th{
	border: 0px solid hsla(0, 0%, 50.2%, .5019607843);
	vertical-align:middle;
	padding:12px;
}

.amelia-services tr td:first-child, .amelia-services tr th:first-child {
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
}

.amelia-services tr td:last-child, .amelia-services tr th:last-child {
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
}

.amelia-services table tbody>tr:nth-child(odd)>td, .amelia-services table tbody>tr:nth-child(odd)>th {
    background-color: transparent;
}

a.amelia-book-button {
    background-color:var( --e-global-color-accent );
    display: inline-block;
    color: #fff;
    padding: 8px 16px;
    border-radius: 5px;
    text-decoration: none;
}

.style_gallery_home .sgh_button {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: .5s;
}

.style_gallery_home .swiper-slide:hover .sgh_button{
    opacity: 1;
}

.style_gallery_home img {
    object-fit: fill;
    filter: grayscale(1);
    transition: .5s;
    aspect-ratio: 1/1;
}


.style_gallery_home .swiper-slide:hover img{
    filter: grayscale(0);
}


