.chevron-right-button {
    background-color: var(--secondary-color);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;

}

.chevron-right-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    background-image: url('../icons/chevron-right.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.chevron-right-button:focus,
.chevron-right-button:active {
    background-color: var(--secondary-color);
}

.chevron-right-button:hover {
    background-color: var(--primary-color);
}

.header-wrapper {
    max-width: 1440px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-wrapper h2 {
    margin: 0;
}

/* Slick carousel custom styling */
.carousel-navigation {
    display: flex;
    align-items: center;
    gap: 30px;
}

.elementor-element button.carousel-prev,
.elementor-element button.carousel-next {
    width: 30px;
    height: 30px;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    border: none;
    border-radius: 50%;
    transition: all 0.3s ease;
    background-color: transparent;
    padding: 15px;
}

.elementor-element button.carousel-prev {
    background-image: url("../icons/prev-arrow.svg");
    margin-left: auto;
}

.elementor-element button.carousel-next {
    background-image: url("../icons/next-arrow.svg");
}

.elementor-element button.carousel-prev:hover,
.elementor-element button.carousel-next:hover,
.elementor-element button.carousel-prev:focus,
.elementor-element button.carousel-next:focus,
.elementor-element button.carousel-prev:active,
.elementor-element button.carousel-next:active {
    background-color: var(--tertiary-color);
}

.elementor-element button.carousel-prev:hover,
.elementor-element button.carousel-prev:focus,
.elementor-element button.carousel-prev:active {
    background-image: url("../icons/prev-arrow-white.svg");
}

.elementor-element button.carousel-next:hover,
.elementor-element button.carousel-next:focus,
.elementor-element button.carousel-next:active {
    background-image: url("../icons/next-arrow-white.svg");
}

@media (max-width: 1024px) {
    .header-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}