/* == Base == */
:root{
	--font-1:"Archivo Black", sans-serif;
	--font-2:"Montserrat", sans-serif;
	--color-dark:#141415;
	--color-light:#ffffff;
	--color-blue: #4493e7;
	--color-blue-rgb:94 40 231;
	--color-pink: #f37491;
}
body{
	background-image: radial-gradient(circle at 13% 47%, rgba(140, 140, 140,0.03) 0%, rgba(140, 140, 140,0.03) 25%,transparent 25%, transparent 100%),radial-gradient(circle at 28% 63%, rgba(143, 143, 143,0.03) 0%, rgba(143, 143, 143,0.03) 16%,transparent 16%, transparent 100%),radial-gradient(circle at 81% 56%, rgba(65, 65, 65,0.03) 0%, rgba(65, 65, 65,0.03) 12%,transparent 12%, transparent 100%),radial-gradient(circle at 26% 48%, rgba(60, 60, 60,0.03) 0%, rgba(60, 60, 60,0.03) 6%,transparent 6%, transparent 100%),radial-gradient(circle at 97% 17%, rgba(150, 150, 150,0.03) 0%, rgba(150, 150, 150,0.03) 56%,transparent 56%, transparent 100%),radial-gradient(circle at 50% 100%, rgba(25, 25, 25,0.03) 0%, rgba(25, 25, 25,0.03) 36%,transparent 36%, transparent 100%),radial-gradient(circle at 55% 52%, rgba(69, 69, 69,0.03) 0%, rgba(69, 69, 69,0.03) 6%,transparent 6%, transparent 100%),linear-gradient(90deg, rgb(253,253,253),rgb(253,253,253));
}
html{
	scroll-behavior: smooth;
}
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ol,
ul,
dl,
input,
select,
label,
span,
footer {
	font-family:var(--font-2);
}
body{
	background-color: var(--color-light);
}
b,strong{
	font-weight:bold;
}
#forma{
	scroll-margin-top: 50px;
}
/* == Prototype ==*/
/* == Custom Controls == */
.custom-control-input:checked~.custom-control-label::before {
    color: #fff;
    border-color: var(--color-blue);
    background-color: var(--color-blue);
}
.custom-control-input:not(:disabled):active~.custom-control-label::before {
    color: #fff;
    background-color: rgb(var(--color-blue-rgb) / 0.2);
    border-color: rgb(var(--color-blue-rgb) / 0.2);
}
.custom-control-input:focus:not(:checked)~.custom-control-label::before {
    border-color: #var(--color-blue);
}
.custom-control-input:focus~.custom-control-label::before {
    box-shadow: 0 0 0 0.2rem rgba(var(--color-blue-rgb) / 0.2);
}
/* == Cookie alert == */
.cookiealert {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    margin: 0 !important;
    z-index: 999;
    opacity: 0;
    border-radius: 0;
    transform: translateY(100%);
    transition: all 500ms ease-out;
    color: #ecf0f1;
    background: #212327;
    font-family:var(--font-2);
}
.cookiealert.show {
    opacity: 1;
    transform: translateY(0%);
    transition-delay: 1000ms;
}

.cookiealert a {
    text-decoration: none;
    color: #6ac1ff;
    position:relative;
}
.cookiealert a:after{
	content: "";
    position: absolute;
    height: 1px;
    background: #6ac1ff;
    bottom: 0;
    transition: all 0.2s ease-in-out;
    right: 0;
    width: 0;
}
.cookiealert a:hover{
	text-decoration:none;
}
.cookiealert a:hover::after{
	left: 0;
    right: auto;
    width: 100%;
}
.cookiealert .acceptcookies {
    margin-left: 10px;
    vertical-align: baseline;
	background: #04c365;
    border: unset;
}
/* == Common == */
.btn-cta{
	font-family:var(--font-1);
	font-size:2rem;
	background: var(--color-pink);
	color:#ffffff;
	text-transform:uppercase;
	border-radius:50rem;
	padding:0.5rem 2rem;
	transition:all 0.25s ease-in-out;
}
.btn-cta:hover{
	transform:scale(1.03);
	color:#ffffff;
}
.section-header{
	font-family:var(--font-1);
	font-size:2.5rem;
	color:var(--color-dark);
}
@media(max-width:767.98px){
	.btn-cta{
		font-size:1.5rem;
	}
	.section-header{
		font-size:1.75rem;
		line-height:1.15;
	}
}
/* == Banner == */
.webp .banner{
	background: url(../img/img-banner.webp);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: top center;
	margin: unset;
	padding: unset;
}
.no-webp .banner{
	background: url(../img/img-banner.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: top center;
	margin: unset;
	padding: unset;
}
.banner{
	height: 750px;
}
.banner .container{
	height:inherit;
	display:flex;
	flex-direction:column;
}
.img-logo{
	margin-bottom: 2rem;
}
.banner-head{
	font-size:2rem;
}
.banner-head span{
    font-weight:600;
}
.banner-text{
	margin-top:auto;
	margin-bottom:auto;
}
.banner .banner-content-wrapper{
	background: rgb(255 255 255 / 75%);
	padding: 4rem 1rem;
	border-radius: 1rem;
	box-shadow: 0px 0px 10px 5px rgb(0 0 0 / 5%);
}
.banner .text-head,
.banner .text-footer{
    font-weight:600;
    font-size:2rem;
    text-align:right;
    margin-bottom: unset;
    line-height: 2rem;
}
.banner-header:nth-child(3){
	align-items: baseline;
}
.banner-header:nth-child(4){
	align-items: center;
}
.banner-header:nth-child(5){
	align-items: start;
}
.banner-header p:first-child{
	font-size: 8rem;
	font-family:var(--font-1);
	text-align:right;
	padding-right: 0.5rem;
	flex: 0 0 45%;
	line-height: 1;
	text-transform: uppercase;
	-webkit-text-stroke: 4px #4493e7;
	color: transparent;
}
.banner-header p:nth-child(2){
	font-size: 1.5rem;
	font-weight:600;
	font-family:var(--font-2);
	text-align:left;
	flex: 0 0 55%;
	padding-left: 0.5rem;
}
@media(max-width:767.98px){
	.banner{
		height: 550px;
	}
	.webp .banner{
		background: url(../img/img-banner-m.webp);
		background-size: cover;
		background-repeat: no-repeat;
		margin: unset;
	}
	.no-webp .banner{
		background: linear-gradient(90deg,rgb(255 255 255) 25%, rgb(247 198 209 / 70%) 25%), url(../img/img-banner.jpg);
		background-size: cover, cover;
		background-position-x:0px, 0px;
		background-repeat: no-repeat;
		margin: unset;
	}
	.banner .banner-content-wrapper{
        background:rgb(255 255 255 / 0.8);
        backdrop-filter:blur(5px);
	}
	.banner .text-head,
    .banner .text-footer{
        text-align:left;
    }
    .banner .text-footer{
    	margin-bottom:2rem;
    }
    .banner-header p:first-child{
		font-size: 2rem;
		line-height: 2rem;
		flex: 0 1 25%;
		-webkit-text-stroke: 2px #4493e7;
		}
    .banner-header p:nth-child(2){
		font-size: 1.1rem;
		flex: 1 0 75%;
		}
    .banner .btn-cta{
    	margin-top:2rem;
    	width: 100%;
    	display:block;
    }
	.btn-cta{
		font-size:1.5rem;
		font-size:clamp(1rem, 5vw, 1.5rem)
	}
	.banner-head {
	    font-size: 1.5rem;
	}
	.form__button{
        font-size:1.25rem;
        font-size:clamp(1.25rem, 6vw, 1.75rem);
     }
}
/* == Content == */
.fa-ul i{
	color: var(--color-pink);
}
section{
	margin-top:3rem;
	margin-bottom:3rem;
}
.section-lead{
	font-size:1.25rem;
}
.points-row{
	margin-top:5rem;
	margin-bottom:5rem;
}
.content-b{
	position:relative;
	overflow:hidden;
}
.content-b .container{
	position:relative;
	z-index:5;
}
.img-overlay{
	position: absolute;
    width: 100%;
    height: 100%;
}
.webp .img-overlay .overlay{
	position:absolute;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg,rgb(0 0 0 / 0.4),rgb(0 0 0 / 0.4)), url(../img/img-banner-section.webp);
	filter: brightness(0.5) grayscale(1);
	z-index:2;
	background-position: center;
	background-size: cover;
	background-attachment: fixed;
}
.no-webp .img-overlay .overlay{
	position:absolute;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg,rgb(0 0 0 / 0.4),rgb(0 0 0 / 0.4)), url(../img/img-banner-section.jpg);
	filter: brightness(0.5) grayscale(1);
	z-index:2;
	background-position: center;
	background-size: cover;
	background-attachment: fixed;
}
.img-overlay img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top;
	filter: brightness(0.5) grayscale(1);
	z-index:1;
}
.point-wrapper{
	text-align:center;
	margin: 1.5rem 0rem;
	display: flex;
	flex-direction: column-reverse;
}
.point-header,
.point-content{
	font-size: 1.25rem;
	font-weight: 600;
	color: var(--color-light);
}
.point-content{
	color: var(--color-blue);
	font-weight: 600;
	font-size: 3.5rem;
	font-family: var(--font-1);
	line-height: 1;
	background: -webkit-linear-gradient(0deg,var(--color-blue),var(--color-pink));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
.point-content.infinity{
	font-size: 7rem;
	line-height: 3.5rem;
}
.price{
	font-family:var(--font-1);
	font-weight:600;
	font-size:1.75rem;
	color:var(--color-blue);
	line-height: 1.25;
	margin-top: 0.5rem;
}
.price span{
	font-family:var(--font-2);
	font-weight:300;
	display:block;
	font-size: 1.25rem;
	color:var(--color-dark);
}
.list-header{
	font-weight:600;
	font-size:1.5rem;
	color:var(--color-blue)
}
.fa-ul li{
	margin-bottom:0.75rem;
}
.list-footer{
	display:flex;
	align-items: center;
	margin-top: 3rem;
}
.list-footer i{
	margin-right: 0.5rem;
    font-size: 5rem;
    color: var(--color-blue);
}
.list-footer p{
	font-size:1.25rem;
}
.list-footer span{
	font-weight:600;
	color:var(--color-blue);
	display: block;
}
.gift{
	display:flex;
	align-items: center;
	margin-top: 3rem;
}
.gift i{
	margin-right: 0.5rem;
    font-size: 5rem;
    color: var(--color-blue);
}
.gift p{
	font-size:1.25rem;
}
.gift span{
	font-weight:600;
	color:var(--color-blue);
	display: block;
}
.ds-hero{
	font-family:var(--font-1);
	color:var(--color-blue);
	font-size:1.75rem;
}
.form-wrapper{
	padding:1rem;
	background:var(--color-light);
	border: solid 1px var(--color-pink);
	border-radius:1rem;
}
section.content-d{
	margin-bottom:unset;
}
.content-d{
    height:600px;
}
.webp .content-d{
	background:linear-gradient(90deg,rgb(0 0 0 / 0.7),rgb(0 0 0 / 0.7)),url(../img/img-banner-promo.webp);
	background-attachment:fixed;
	background-size: cover;
}
.no-webp .content-d{
	background:linear-gradient(90deg,rgb(0 0 0 / 0.7),rgb(0 0 0 / 0.7)),url(../img/img-banner-promo.jpg);
	background-attachment:fixed;
	background-size:cover;
}
.content-d .container,
.content-d .row{
	height:inherit;
}
.carousel-header{
	font-family:var(--font-1);
	color:var(--color-light);
	font-size: 4rem;
	line-height: 1.25;
	background: -webkit-linear-gradient(0deg,var(--color-blue),var(--color-pink));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
.swiper-container .swiper-slide:not(.swiper-slide-active) {
    opacity:0 !important;
}
.carousel-content{
	font-family:var(--font-1);
	color:var(--color-light);
	font-size:2.5rem;
}
.img-language{
	width: 100px;
    height: 100px;
    display: block;
    margin: auto;
    object-fit: cover;
    border-radius: 50%;
}
.language-desc{
	font-family:var(--font-2);
	font-weight:600;
	text-align:center;
	color: var(--color-dark);
}
/* == Footer == */
.footer{
	background: #191919;
	color: var(--color-light);
}
.footer a{
	color:#f3f8fe;
}
.footer a:hover{
	color:#f3f8fe;
}
.footer a + a::before{
	position:relative;
	left:-0.25rem;
	content:'|'
}
.footer a + a{
	margin-left:0.25rem;
}
.bs-header{
	font-size: 1.5rem;
	font-weight: 400;
	font-family: var(--font-2);
	line-height: 1.25;
}
.bs-logo{
	width:520px;
}
.lang-header{
	font-size:1.75rem;
	text-align:center;
}
.lang-header span{
    font-weight:600;
}
.trust-header{
	font-size:1.5rem;
	font-weight:600;
}
.trust-footer{
	font-size:1.05rem;
}
@media(max-width:767.98px){
	.bs-header{
		font-size:1.25rem;
		text-align:center;
	}
	.footer a{
		display:block;
		text-align:center;
		margin:0.5rem;
	}
	.footer a::before{
		display:none;
	}
	.section-lead{
		font-size:1rem;
	}
	.points-row{		
		margin-top: 1rem;		
		margin-bottom: 1rem;
	}
	.dzien-swira{
		display:none;
	}
	.carousel-header{
        font-size: 2.5rem;
        margin-top: 2rem;
    }
    .carousel-content{
    	font-size:1.5rem;
    }
    .content-d{
		height:unset;
	}
	.img-language{
	    width: 60px;
        height: 60px;
	}
	.list-footer,
	.gift{
		margin-top:1rem;
	}
	.list-footer i,
	.gift i{
		font-size:3rem;
	}
	.list-footer p,
	.gift p{
		font-size:1rem;
	}
	.ds-hero{
		margin-top:3rem;
	}
	.point-content{
        font-size:2.5rem;
	}
	.point-wrapper{
        margin:0.75rem auto;
	}
}
/* == Form & helper == */
.form__button{
    display: block;
    width: 100%;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 1px solid transparent;
    padding: .5rem;
    font-size: 1.75rem;
    font-weight: 600;
    line-height: 1.5;
    border-radius: 420px;
    transition: all 0.5s ease-in-out;
    background-color: var(--color-pink);
    color: var(--color-light);
    position: relative;
    bottom: 0px;
    margin-bottom: 0.5rem;
}
.form__button span{
    font-family: var(--font-1);
}
.form__button:hover{
    background-color:var(--color-blue);
    color: var(--color-light) !important;
}
.AboutData{
	font-family:var(--font-2) !important;
}
.form-wrapper a{
	color: var(--color-pink);
	font-weight:700;
	text-decoration:underline !important;
}
.form-wrapper #sendlead a::after {
	background:transparent;
}
@media(max-width:767.98px){
	.AboutData{
		font-size:0.7rem;
	}
}
/*form*/
.form-group h1.text-dark,
.form-group img {
    display: none !important;
}

fieldset small a {
    color: #5c596d;
    text-decoration: underline;
}

input {
    width: 100%;
}


input[type=checkbox]:checked {
    background: #ae8949;
    color: #fff;
    border: 3px solid #c7c7c7;
}

input[type=checkbox]:checked {box-shadow: 0 1px 2px #ccc inset;width: auto;}

.gender,
.bg-radio,
.value-gender {
    display: inline-block;
    vertical-align: middle;
}

.gender {
    margin-right: 10px;
}

.value-gender {
    padding-left: 10px;
    font-weight: 700;
}

label.gender input{
    display: none;
}

label.gender input+div{
    background-color: #fff;
    width: 35px;
    height: 35px;
    border-radius: 5px;
    border: 3px solid #d3d3d3;
	transition:all 0.2s ease-in;
}

label.gender input:checked+div{
    background-color: #6495ed;
    border: 3px solid #d3d3d3;
}
#dobday,
#dobmonth,
#dobyear {
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    appearance: none !important;
}


/*-----------style about checkbox----------*/

/* Form Validation */

.field-error__validation-message {
    color: #e30000;
    display: none;
    visibility: visible;
}

.field-error .field-error__validation-message {
    visibility: hidden;
    display: block;
    color: #e30000;
    font-size: 14px;
}

.form-area__body .alert-error {
    border: 1px solid #e30000;
}

/*Slider*/
.slider {
    -webkit-appearance: none;
}
.slider:focus {
    outline: none;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 25px;
    height: 25px;
    border-radius: 5px; 
    background: #6495ed;
    border: 2px solid #d3d3d3;
    cursor: pointer;
	margin-top: -6.5px;
}

.slider::-moz-range-thumb {
    width: 25px;
    height: 25px;
    border-radius: 5px;
    background: #6495ed;
    border: 2px solid #d3d3d3;
    cursor: pointer;
}
.slider::-ms-thumb {
	-webkit-appearance: none;
    appearance: none;
    width: 25px;
    height: 25px;
    border-radius: 5px; 
    background: #6495ed;
    border: 2px solid #d3d3d3;
    cursor: pointer;
	margin-top: -6.5px;
	margin-top:auto;
}

.slider::-webkit-slider-runnable-track {
    height: 15px;
    background: #fff;
    border-radius: 4px;
    border: 1px solid #b1afaf;
}
.slider::-ms-track {
    height: 15px;
    background: #fff;
    border-radius: 4px;
    border: 1px solid #b1afaf;
	color: #fff;
}
.slider::-moz-range-track {
	-moz-appearance:none;
    height: 15px;
    background: #fff;
    border-radius: 4px;
    border: 1px solid #b1afaf;
}

.slider::-moz-selection,
.slider::-moz-range-track{
	background:none;
}
.slider::-ms-fill-lower,
.slider::-ms-fill-upper {
  background: transparent;
}

.slider-label{
 min-width:55px
}
#extrahtml fieldset{
	margin:unset;
}
/* ==========================================================================
   Helper classes
   ========================================================================== */

.hidden {
    display: none !important;
    visibility: hidden;
}

/*
 * Hide only visually, but have it available for screen readers:
 * http://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 */

.visuallyhidden {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

/*
 * Extends the .visuallyhidden class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638
 */

.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    width: auto;
}