/* :root {
    --primary-color: #db3700;
    --primary-bright-color: #ff5000;
    --text-color: #2c284b;
    --headings-color: #0c063f;
    --border-color: #dedede;
	--shaded-background-color: #f0f4f8;
    --body-font-family: "Wix Madefor Text", sans-serif;
    --heading-font-family: "Wix Madefor Text", sans-serif;
    --heading-font-weight: 700;
	--swiper-pagination-color:rgba(0,0,0,0.5);
	--content-width: 1300px;
} */
:root {
	--purple: #794D93;
	--blue: #5374B1;
	--green: #919E35;
	--aqua: #4D9BA3;
	--yellow: #C88818;
	--pink: #A91669;
	--orange: #CF3A08;
}
.hero-block {
    margin: 5rem 0;
}
/*----- Heading and content -----*/
.hero-title {
    font-size: clamp(1.8em, 3vw, 2.5em);
    font-weight: 800;
    line-height: 1;
    margin: 0 0 1rem;
    color: var(--text-color, #333);
    text-align:center;
}
.hero-preheading {
    font-size: 0.5em;
    font-weight: 800;
    color: var(--primary-color, #0073aa);
    margin-bottom: 0.5rem;
    display:block;
}
.hero-preheading-separator {
    display: none;
}
.hero-content {
	text-align: center;
	font-size: clamp(0.875em, 2vw, 1em);
}
.hero-content *:first-child {
	margin-top:0;	
}
.hero-content *:last-child {
	margin-bottom: 0;
}

.hero-align-left :is(.hero-title, .hero-content) {
	text-align: left;
}

/*----- Buttons styles -----*/
.hero-button-row {
    margin: 2em auto 0;
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
	font-size:clamp(12px, 2vw, 16px);
}

.hero-align-left .hero-button-row {
	justify-content: flex-start;
	margin: 2em 0;
}

.shaded-background {
	background: var(--shaded-background-color);
}

.btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.75rem 1.5rem;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 500;
	font-size: 1em;
	transition: all 0.3s ease;
	border: none;
	cursor: pointer;
	font-family: inherit;
	line-height: 1.2;
	white-space: nowrap;
}

/* Primary Button */
.btn-primary, .btn-primary:visited, .frm_button_submit {
	background-color: var(--primary-color, #0073aa);
	color: #ffffff;
	border: 1px solid var(--primary-color, #0073aa);
}

.btn-primary:hover, .frm_button_submit:hover {
	background-color: var(--primary-bright-color, #0073aa);
	border-color: var(--primary-bright-color, #0073aa);
	color: #ffffff;
	transform: translateY(-1px);
}

/* outline Button */
.btn-outline, .btn-outline:visited,
.non-shaded-background .btn-white,
.non-shaded-background .btn-white:visited {
	background-color: #ffffff;
	color: var(--text-color, #333333);
	border: 1px solid var(--border-color, #ddd);
	box-shadow: unset;
}
.btn-outline:not(.btn-left):after,
.btn-white:after,
.btn-text:after,
.btn-outline.btn-left:before {
	content: '';
    display: inline-flex;
    min-width: 8px;
    height: 8px;
    border: 2px solid var(--primary-color);
    border-width: 0 2px 2px 0;
    transform: rotate(-45deg);
    margin-top: 2px;
    transition: .5s ease;
}
.btn-outline.btn-left:before {
	transform: rotate(135deg);
}
.btn-outline:hover:after,
.btn-white:hover:after,
.btn-text:hover:after {
	border-color:var(--primary-bright-color);
	transform:translateX(2px) rotate(-45deg) 
}
.btn-outline.btn-left:hover:before {
	border-color:var(--primary-bright-color);
	transform:translateX(-2px) rotate(135deg)
}

.btn-outline:hover,
.non-shaded-background .btn-white:hover,
.non-shaded-background .btn-white:visited:hover {
	border-color: var(--primary-bright-color, #0073aa);
	transform: translateY(-1px);
	color: var(--text-color);
	box-shadow: unset;
}

/* White Button */
.btn-white, .btn-white:visited,
.shaded-background .btn-outline,
.shaded-background .btn-outline:visited {
	background-color: #ffffff;
	color: var(--text-color, #333333) !important;
	box-shadow: 0 10px 10px -10px rgba(0,0,0,0.1);
	border: unset;
}

.btn-white:hover {
	transform: translateY(-1px);
	color: var(--text-color);
	box-shadow: 0 14px 8px -10px rgba(0,0,0,0.1)
}

/* Text Button */
.btn-text, .btn-text:visited {
	background-color: transparent;
	color: var(--primary-color, #0073aa);
	border: none;
	padding: 0rem;
	text-decoration: underline;
	text-underline-offset: 4px;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	transition: 0.2s ease
}

.btn-text:hover {
	color: var(--primary-bright-color, #0073aa);
	text-decoration: underline;
	transform: translateY(-1px);
}



/* Button Icons */
.btn-icon {
	width: 18px;
	height: 18px;
	fill: currentColor;
	flex-shrink: 0;
}

/* Chevron Icons */
.btn-chevron {
	width: 16px;
	height: 16px;
	margin-left: 0.25rem;
	flex-shrink: 0;
	transition: transform 0.2s ease;
}

.btn:hover .btn-chevron {
	transform: translateX(2px);
}

/* Chevron colors */
.btn-primary .btn-chevron {
	fill: #ffffff;
}

.btn-secondary .btn-chevron,
.btn-text .btn-chevron {
	fill: var(--primary-color, #0073aa);
}

.btn-secondary:hover .btn-chevron {
	fill: #ffffff;
}

/* Button sizes */
.btn-small {
	padding: 0.5rem 1rem;
	font-size: 0.875rem;
}

.btn-large {
	padding: 1rem 2rem;
	font-size: 1.125rem;
}

/* Button block (full width) */
.btn-block {
	width: 100%;
	justify-content: center;
}

/* Disabled state */
.btn:disabled,
.btn.disabled {
	opacity: 0.6;
	cursor: not-allowed;
	transform: none !important;
	box-shadow: none !important;
}

.btn:disabled:hover,
.btn.disabled:hover {
	transform: none;
	box-shadow: none;
}

.hero-full-width {
    max-width: none;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    overflow: visible;
    padding: 5em 0;
}
.is-desktop-preview .hero-full-width {
	width: 100%;
	margin: 0 auto;
}
.hero-content-width {
	max-width: var(--content-width);
    width: calc(100vw - 40px);
    margin: 0 auto;
}
.hero-content-width {
	width: 100%;
}

/* Swiper styles */
.hero-slider-container {
	position: relative;
}
.swiper-button-next, .swiper-button-prev {
    color: var(--primary-color, #0073aa);
    background: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-top: -35px;
    transition: all 0.2s ease;
    border: 1px solid var(--border-color, #0073aa);
}
.swiper-button-next:after, .swiper-button-prev:after {
    content: '';
    display: inline-flex;
    min-width: 8px;
    height: 8px;
    border: 2px solid var(--primary-color);
    border-width: 0 2px 2px 0;
    transform: translateX(20%) rotate(135deg);
    transition: .5s ease;
}
.swiper-button-next:after {
    transform: translateX(-20%) rotate(-45deg);
}
.swiper-button-disabled {
    display: none;
}
.swiper-button-prev, .swiper-rtl .swiper-button-next {
    left: -20px;
    right: auto;
}
.swiper-button-next {
    left: auto;
    right: -20px; 
}
.swiper-pagination {
    top: 100%;
    position: static;
    padding-top: 1em;
}
.is-desktop-preview .swiper-button-prev {
    left:20px;
}
.is-desktop-preview .swiper-button-next {
    right:20px;
}
/**/