@import url('https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200..1000;1,200..1000&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css");

body,html{
	font-family: var(--mainfont);
	font-size:16px;
	color:#333;
}

:root{

	--c1-h: 212;
	--c1-s: 98%;
	--c1-l: 50%;

	--c1: hsl(var(--c1-h),
	 var(--c1-s), 
	var(--c1-l));

	--c2-h: 132;
	--c2-s: 60%;
	--c2-l: 41%;

	--c2: hsl(var(--c2-h),
	 var(--c2-s), 
	var(--c2-l));

	--c1-alt: hsl(var(--c1-h),
		 calc(var(--c1-s) *1.05),
		calc(var(--c1-l) * .85)
	);

	--c1-desate: hsl(var(--c1-h),
		 calc(var(--c1-s) *1.025),
		71%
	);

	--c1-darker: hsl(var(--c1-h),
		 calc(var(--c1-s) *1.025),
		calc(var(--c1-l) * .7)
	);

	--c1-lighter: hsl(var(--c1-h),
		 calc(var(--c1-s) *1.025), 
		calc(var(--c1-l) * 1.2)
	);

	--c2-darker: hsl(var(--c2-h),
		 calc(var(--c2-s) *1.025),
		calc(var(--c2-l) * .7)
	);

	--c2-lighter: hsl(var(--c2-h),
		 calc(var(--c2-s) *1.025), 
		calc(var(--c2-l) * 1.2)
	);

	--c3-darker: hsl(var(--c3-h),
		 calc(var(--c3-s) *1.025),
		calc(var(--c3-l) * .7)
	);

	--c3-lighter: hsl(var(--c3-h),
		 calc(var(--c3-s) *1.025), 
		calc(var(--c3-l) * 1.2)
	);

	--c4-darker: hsl(var(--c4-h),
		 calc(var(--c4-s) *1.025),
		calc(var(--c4-l) * .7)
	);

	--c4-lighter: hsl(var(--c4-h),
		 calc(var(--c4-s) *1.025), 
		calc(var(--c4-l) * 1.2)
	);

	--c5-darker: hsl(var(--c5-h),
		 calc(var(--c5-s) *1.025),
		calc(var(--c5-l) * .7)
	);

	--c5-lighter: hsl(var(--c5-h),
		 calc(var(--c5-s) *1.025), 
		calc(var(--c5-l) * 1.2)
	);

	--mainfont: 'Open Sans', sans-serif;
	--subfont: 'Mulish', sans-serif;
	--serif: 'Playfair Display', serif;

}

*{
	box-sizing:border-box;
}

.cw{
	width:100%;
	max-width:1200px;
	margin:0px auto;
}

.btn-s{
	display:block;
	width:100%;
	text-align:center;
	text-decoration: none;
	max-width:max-content;
	padding:.25em 1em;
	transition:.3s background;
	border:none;
}

.btn-s.fw{
	max-width:100%;
}

.btn-s.c1{
	background:var(--c1);
	color:#fff;
}

.btn-s.c1-25:hover{
	background:var(--c1-25);
}

.btn-s.c1-50:hover{
	background:var(--c1-50);
}

.btn-s.c1-75:hover{
	background:var(--c1-75);
}

.btn-s.center{
	margin-inline:auto;
}

.btn-wht{
	--white:#fff;
	background:var(--white);
}

.btn-gray{
	--gray:#f2f2f2;
	background:var(--gray);
	color:#000;
}

.btn-gray:hover{
	background:color-mix(in srgb, var(--gray) 85%, #000000);
}

.btn-s.white-text{
	color: #fff;
}

.section{
	padding:4em;
	padding-inline:2em;
}

.grid-row{
	--col:2;
	display:grid;
	grid-template-columns: repeat(var(--col),minmax(0,1fr));
}

.img-block{
	display:block;
	max-width:100%;
	height:auto;
}

.img-block.fw{
	width:100%;
}


/*typography*/

h1,h2,h3,h4,h5,h6,p{
	margin:0;
}

.s-t{
	font-size:2.25em;
	line-height:1.25em;
	font-weight:700;
	letter-spacing: -.05em;
}

.s-h{
	font-size:1.5em;
	line-height:1.25em;
	font-weight:700;
/*	letter-spacing: -.05em;*/
}

.s-sh{
	font-size:1.25em;
	line-height:1.25em;
	font-weight:600;
	letter-spacing: -.05em;
}

p{
	font-weight:400;
	line-height:1.5em;
}

.disclaimer{
	font-size:.8em;
	font-weight:400;
	margin-block:1em;
	line-height:1.5em;
}

/*default textbox*/

::-ms-input-placeholder { /* Edge 12-18 */
  color: #aaa;
  font-weight:300;
}

::placeholder {
  color: #aaa;
  font-weight:300;
}



input[type="text"],
select,
input[type="date"],
textarea{
	display:block;
	max-width:100%;
	width:100%;
	padding:1em 1em;
	font-size:1em;
	background:#fff;
	border:1px solid color-mix(in srgb, var(--c1) 0%, #a0a0a0);
	border-radius:.25em;
/*	margin-block:1em;*/
	text-align:left;
/*	transition:.05s outline;*/
	box-shadow:.1em .1em .25em color-mix(in srgb, var(--c1) 0%, transparent) inset;
}

textarea{
	resize:vertical;
	min-height:10rem;
}


input[type="date"]{
	text-transform: uppercase;
	text-align: center;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

select::-ms-expand {
    display: none;
}

input:focus,select:focus{
	outline:solid color-mix(in srgb, var(--c1), transparent 0%) .2em;
	outline-offset:0px;
}

.combobox {
    position: relative;
    isolation: isolate;
}

.combobox::after {
    content: '';
    position: absolute;
    width: 0.5em;
    aspect-ratio: 1/1;
    border-right: 2px solid #000;
    border-bottom: 2px solid #000;
    top: calc(50% - 0.25em);
    right: 1em;
    transform: translateY(-50%) rotate(45deg);
    z-index: 1;
}

.combobox option{
	background:#fff;
}

/*main*/

.main{
	background:url('../img/bg.jpg');
	background-size:cover;
	background-position: center;
	position: relative;
	isolation: isolate;
	overflow:clip;
	text-align: center;
}

.main::before{
	position: absolute;
	content:'';
	inset:0;
	background:rgba(255,255,255,.8);
	backdrop-filter: blur(.15em);
	z-index:-1;
}

.main-t b{
	color:var(--c2);
	text-decoration: underline;
}

.section .s-t{
	margin-bottom:1rem;
	text-transform: uppercase;
}

.s-sh{
	color:#666;
}

.panel{

	border-radius:.5em;
	padding:2rem 1.675em;
	margin-block:2rem;
	text-align: left;
}

.white-panel{
	background:#fff;
	border:1px solid #a0a0a0;
}

.panel-h{
	text-align: center;
	font-size:3em;
	font-weight:600;
	letter-spacing: -.025em;
	margin-bottom:1.5rem;
}

.cw.alt{
	max-width:900px;
}

.form-label{
	font-weight:600;
	margin-bottom:.25rem;
}

.form-input{
	margin-bottom:1rem;
}

.form-btn,
.cta-btn{
	padding:1.25rem 1.75em;
	font-weight:700;
	max-width:100%;
	border-radius:.25em;
	text-transform: capitalize;
}

.form-btn{

	font-size:1.175rem;
}

.btn-next{
	margin-top:2rem;
}

.btn-next.disabled{
	pointer-events: none;
	opacity:.5;
}

.btn-next,
.cta-btn{
	background:var(--c1);
	color:#fff;
}

.btn-next:hover,
.cta-btn:hover{
	background:var(--c1-darker) !important;
}

.cta-btn{
	max-width:max-content;
	margin-block:1.75em;
	margin-inline:auto;
}

.logo-reel{
	display:flex;
	align-items: center;
	justify-content: center;
	gap:2em;
	padding:1em 1.75em;
	margin-bottom:1rem;
	flex-wrap:wrap;
}

.logo-reel img{
	display:block;
	height:3.25em;
}

/*info section*/

.info-section{
	background:#fff;
}

.info-section p{
	font-size:1.25em;
	margin-bottom:1rem;
	font-family: var(--subfont);
}

.info-section .cta-btn{
	margin-inline:0 auto;
	text-transform: uppercase;
}

.info-section .cta-btn span{
	display:block;
	font-weight: 300;
	font-size:.75em;
	margin-top:1em;
	font-family: var(--subfont);
}

.info-reviews{
	font-size:1.1em;
}

.info-reviews .bi{
	font-size:.8em;
	margin-right:.175em;
}

.info-section .info-reviews .bi{
	color:var(--c2-darker);
}

/*bullets section */

.bg-section{
	color:#fff;
	position: relative;
	isolation: isolate;
	background:var(--bg);
	background-size: cover;
	background-position: center;

}

.bg-section::before{
	--gradient1: color-mix(in srgb, var(--c1-darker), transparent 20%);
	--gradient2: color-mix(in srgb, var(--c2-darker), transparent 20%);
	content:'';
	position: absolute;
	inset:0;
	z-index:-1;
	/* global 94%+ browsers support */
    background: linear-gradient(90deg, var(--gradient1) 0%, var(--gradient2) 100%);
    backdrop-filter: blur(.175em);
}

.section .s-h{
	margin-bottom:1em;
}

.info-bullets{
	font-size:1.25em;
	display:grid;
	gap:1em;
	line-height:1.5em;
}

.info-bullets .bi{
	margin-right:1ch;
}

.bullets-section .info-reviews .bi{
	color:var(--c1-lighter);
}

.colored-panel.style1{
	background:var(--c1);
	color:#fff;
	position: relative;
	isolation: isolate;
	overflow:clip;
}

.colored-panel .cta-btn{
	background:var(--c1-desate);
}

.colored-panel.style1 .info-reviews .bi{
	color:var(--c1-desate);
}

.panel-img-lower{
	position: absolute;
	bottom:0;
	display:grid;
	grid-template-columns: minmax(0,3fr) minmax(0,4fr);
}

.panel-img-lower img{
	object-fit: contain;
	position: absolute;
}

.panel-img-lower img.left{
	width:calc(50% - 5em);
	bottom:-1em;
	left:0;
	opacity:.5;
}

.panel-img-lower img.right{
	width:calc(50% + 10em);
	bottom:-3.5em;
	right:-5em;
}

.panel-img-lower{
	position: relative;
	aspect-ratio:20/9;
	width:100%;
}

.t-center{
	text-align: center;
}

/*swiper content*/

.swiper {
/*  max-width: 960px;*/
  margin: auto;
  margin-block:4rem 2em;
}

.swiper-wrapper {
  display: flex;
  align-items: stretch; /* Stretch slides to match height */
}

.swiper-slide {
  display: flex;
  flex-direction: column;
  height: auto; /* Let content drive height */
}

.slide-box {
  flex: 1;
  width: 100%;
  padding: 1em;
  text-align: center;
  color:#fff;
}

.testi-user{
	font-weight:600;
	font-size:1.5em;
	text-transform: uppercase;
	margin-bottom:1ch;
}

.testi-verified{
	font-weight:300;
	font-family: var(--subfont);
	font-size:.9em;
	text-transform: uppercase;
	margin-bottom:1rem;
}

.testi-dp{
	border-radius:99em;
	aspect-ratio:1/1;
	width:8em;
	position: relative;
	margin-bottom:1.75rem;
	box-shadow:0 0 0 .375em var(--c1);
}

.slide-box::before{
	content:'';
	position: absolute;
	inset:5em 0 0 0;
  background: var(--c1);
  color:#fff;
  z-index:-1;
  border-radius:1em;
  pointer-events:none;
}

.swiper-button-next,
.swiper-button-prev {
  width: 3em;
  height: 3em;
  background-color: var(--c1-desate);
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: background 0.2s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background-color: var(--c1-darker);
}

/* Hide default Swiper arrow icons */
.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 16px;
  color: #fff;
}

.swiper-button-next {
  right: -1em;
}

.swiper-button-prev {
  left: -1em;
}

.c-nextprev-fix{
	position: relative;
	padding-bottom:1em;
}

/*prefooter*/

.prefooter{
	text-align: center;
	padding-block:7rem;
}

.prefooter .s-h{
	font-weight:400;
	margin-bottom:3rem;
}

.prefooter .cta-btn{
	margin-inline:auto;
}

.prefooter .info-reviews .bi{
	color:var(--c1-desate);
}

.footer{
	background:var(--c1);
	color:#fff;
	text-align: center;
	font-size:.8em;
	padding-block:2.5rem 6rem;
}

.logo-s{
	width:8rem;
	display:block;
	aspect-ratio:4/3;
	object-fit: contain;
	margin-inline:auto;
	margin-bottom:3em;
}

.footer p a{
	color: inherit;
}

.w-bg{
	background:url('../img/bg-w.webp');
	background-repeat:repeat-x;
	background-position:top center;
}

/*questionare*/

.q-list > div:not(:first-child){
	display:none;
}

.q-lists > div:not(:first-child){
	display:none;
}


.radio-button-group{
	display:grid;
	grid-template-columns: repeat(auto-fit,minmax(0,1fr));
	gap:1em;
}

.radio-button-group input{
	display:none;
}

.radio-button-group > label{
	display:block;
	position: relative;
	isolation:isolate;
	font-weight:600;
	padding:1em 1em;
	cursor: pointer;
	text-align: center;
}

.radio-button-group > label:hover input + span{
	background:var(--c1);
/*	border-color:color-mix(in srgb, var(--c1), #000);*/
}

.radio-button-group > label > input:checked + span{
	background:var(--c1);
/*	border-color:color-mix(in srgb, var(--c1), #000);*/
	opacity:1;
	color:#fff;
}

.radio-button-group > label > input:checked + span + b{
	color:#fff;
}

.radio-button-group input + span{
	position: absolute;
	inset:0;
	background:#e7e7e7;
	opacity:.5;
	z-index:-1;
/*	border:1px solid #aaa;*/
	border-radius:.25em;
}

.form-inline{
	display:grid;
	grid-template-columns: repeat(auto-fit,minmax(0,1fr));
	gap:.35em;
	margin-bottom:1rem;
}

.form-inline > .form-label{
	grid-row: 1;
	margin-bottom:.25em;
}

.form-inline input[type="text"]{
	grid-row:2;
}

.step-display{
	text-align: center;
	font-weight:600;
	margin-bottom:2rem;
}

@media(max-width: 1200px){
	body{
		font-size: 14px;
	}
}

@media(max-width:768px){
	.panel-img-lower{
		aspect-ratio:16/9;
		margin-top:2em;
	}

	.panel-h{
		font-size:2.75em;
	}

}

@media(max-width:600px){
	.form-inline{
		grid-template-columns: 1fr;
	}

	.form-inline > *{
		grid-row: auto !important;
	}
}

@media(max-width:580px){

	.section{
		padding-inline:1.25em;
	}

	.s-t{
		font-size:1.75em;
	}


}