@font-face {
    font-family: MundialBold;
    src: url(/landing/fonts/MundialBold.otf);
}@font-face {
    font-family: MundialHair;
    src: url(/landing/fonts/MundialHair.otf);
}@font-face {
    font-family: MundialItalic;
    src: url(/landing/fonts/MundialItalic.otf);
}@font-face {
    font-family: MundialLight;
    src: url(/landing/fonts/MundialLight.otf);
}@font-face {
    font-family: MundialRegular;
    src: url(/landing/fonts/MundialRegular.otf);
}@font-face {
    font-family: MundialThin;
    src: url(/landing/fonts/MundialThin.otf);
}

body,html{
    font-family: MundialRegular, sans-serif;
}
strong{
    font-family: MundialBold, sans-serif;
}

.login-page{
    min-height: 100vh;
    background: url("../landing/images/bild7.jpg") no-repeat center center;
    background-size: cover;
}

.blue-link{
    color: #0096FF;
}
.blue-link:hover{
    color: #31a7ff;
}

.fancy-button{
    background: rgb(18,152,239);
    background:linear-gradient(90deg, rgba(0, 150, 255, 1) 0%, rgba(0, 123, 209, 1) 100%);
    transition: all ease 0.3s;
    box-shadow: 0 0 0 2px transparent;
    border-width: 0;
    color: white;
    font-weight: bold;
    text-transform: uppercase;
    padding: 1rem 2rem;
    line-height: 1;
}
.fancy-button:hover{
    box-shadow: 0 0 0 2px var(--theme-primary);
    color: white !important;
}

.fancy-gray-button{
    background: white;
    transition: all ease 0.3s;
    color: #B5B5B5;
    text-transform: uppercase;
    padding: 1rem 2rem;
    line-height: 1;
    border-color: #EAEAEA;
}
.fancy-gray-button:hover{
    --bs-btn-hover-color: #808080;
    --bs-btn-hover-bg: white;
    --bs-btn-hover-border-color: #b4b4b4;
}

.login-page-text{
    max-width: 500px;
}
.login-page-text h1{
    font-size: var(--text-5xl);
    color: rgba(46, 46, 45, 1);
    font-family: MundialThin, sans-serif;;
}


.login-box{
    width: 100%;
    background-color: var(--theme-box-white-bg);
    border-radius: var(--border-radius-md);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.12);
    padding: 2.4rem;
    color: #212529;
}

.login-box .login-box-head{
    padding-bottom: 1rem;

}
.login-box .login-box-head h2{
    font-size: var(--text-3xl);
    font-weight: bold;
    font-family: MundialBold, sans-serif;
    color: #2e2e2d;
}
.login-box .login-box-head p{
    color: #2E2E2D;
}

.login-box label{
    color: rgba(46, 46, 45, 1);
    opacity: 0.47;
}
.login-box label.form-check-label{
    opacity: 1;
}

.login-box .form-check-input{
    background-color: #bdbdbd;
    color: #212529;
    border-color: rgba(224, 224, 224, 1);
}
.login-box .form-check-input:checked{
    background-color: #1f94f9;
    border-color: #1f94f9;
}


.login-box .form-control,
.login-box .form-select{
    background-color: #fff;
    color: #212529;
    border-color: rgba(224, 224, 224, 1);
    padding: 0.5rem 1rem;
}

.login-box input:-webkit-autofill,
.login-box input:-webkit-autofill:hover,
.login-box input:-webkit-autofill:focus,
.login-box input:-webkit-autofill:active{
    -webkit-box-shadow: 0 0 0 30px white inset !important;
    -webkit-text-fill-color: #000;
}

.login-box .form-control.is-invalid,
.login-box .form-select.is-invalid{
    border-color: rgba(224, 64, 80, 1);
}

.login-box .input-group-text{
    color: #212529;
    border: 1px solid rgba(224, 224, 224, 1);
    background-color: #fff;
}

.progress-tracker {
    display: flex;
    padding: 0;
    list-style: none;
}

.progress-step {
    display: block;
    position: relative;
    flex: 1 1 0;
    margin: 0;
    padding: 0;
    min-width: 28px;
}
.progress-step:last-child {
    flex-grow: 0;
}
.progress-step::after {
    content: "";
    display: block;
    position: absolute;
    top: 4px;
    right: -14px;
    width: 100%;
    height: 8px;
}
.progress-step:last-child::after{
    display: none;
}

.progress-marker {
    display: inline-block;
    position: relative;
    z-index: 20;
    width: 16px;
    height: 16px;
    border-radius: 50%;
}
.progress-step .progress-marker {
    background-color: #e5e5e5;
}
.progress-step::after {
    background-color: #e5e5e5;
}

.progress-step.is-active .progress-marker {
    background-color: #e5e5e5;
}
.progress-step.is-active::after {
    background-color: #e5e5e5;
}
.progress-step.is-complete .progress-marker {
    background-color: #54b74c;
}
.progress-step.is-complete::after {
    background: #54b74c;
}
.login-box .login-logo{
    display: none;
}
.login-box .login-logo img{
    height: 20px;
    width: auto;
}
.absolute-on-desktop{
    position: absolute;
}
@media (max-width: 991px) {
    .login-page-text{
        display: none;
    }

    .login-box .login-logo{
        display: block;
    }

    .absolute-on-desktop{
        position: relative;
    }
}







/* LP1 */

.lp1{
    color:#000;
}
.lp1 .form-control{
    background:#fff;
    color:#000;
    border: 1px solid #ced4da;
}
.lp1 .btn-custom, .lp1 .btn-custom:hover, .lp1 .btn-custom:active, .lp1 .btn-custom:focus{
	border: 1px solid #FFFFFF;
	border-radius: 27px;
	padding:10px 35px;
	color:#fff;
}
.lp1 .btn-red, .lp1 .btn-red:hover, .lp1 .btn-red:focus, .lp1 .btn-red:active{
	background:rgba(183, 38, 67, 1);
	border:none;
}

.lp1 .start{
	background:url(../landing/images/start.png) no-repeat;
	background-size:cover;
	background-position: bottom;
	color:#fff;
}
.lp1 .start .head{
	padding:50px 0px;
}
.lp1 .start .head .logo{
	width:180px;
}

.lp1 .start .body{
	padding:50px 0px;
	padding-bottom:230px;
}
.lp1 .start .body h2{
	font-size:60px;
	line-height:58px;
}
.lp1 .start .body h2 strong{
	font-weight:bolder;
}
.lp1 .start .body h2 span{
	font-weight:lighter;
}
.lp1 .start .body p{
	margin:25px 0px;
}
.lp1 form .btn-custom{
	padding:10px;
	width:100%;
}
.lp1 form small{
	font-size:12px;
	color:rgba(255, 255, 255, .55);
	display:block;
}
.lp1 form a{
	color:rgba(255, 255, 255, .55);
}

.lp1 .section{
	padding:100px 0px;
}
.lp1 .game h2{
	font-size:60px;
	line-height:58px;
	font-weight:bold;
	margin-bottom:35px;
}
.lp1 .game h2 strong{
	display:block;
	color:rgba(183, 38, 67, 1);
}
.lp1 .game form{
	margin-top:35px;
}


.lp1 .bottom .pinkBox{
	background:rgba(237, 160, 168, 1);
	color:#fff;
	padding:50px;
	height:100%;
	display:flex;
	align-items:center;
	justify-content: center;
}
.lp1 .bottom .pinkBox h2{
	font-size:60px;
	line-height:58px;
}
.lp1 .bottom .pinkBox p{
	margin:25px 0px;
}
.lp1 .bottom img{
	width:100%;
}
.lp1 .bottom .woman{
	position:relative;
}
.lp1 .bottom .onpic{
	position:absolute;
	top:0;left:0;
	width:100%;height:100%;
}
.lp1 .bottom .onpic .topleft{
	position:absolute;
	top:35px;
	left:35px;
}
.lp1 .bottom .onpic .bottomleft{
	position:absolute;
	bottom:25px;
	left:25px;
	padding-right:25px;
}


.lp1 .footer{
	padding:50px;
	font-size:12px;
	color:rgba(0, 0, 0, .52);
}
.lp1 .footer a{
	color:rgba(0, 0, 0, .52);
	padding:0px 10px;
	text-decoration: none;
}

@media only screen and (max-width:1199px){

    .lp1 .start .body h2{
        font-size: 44px;
        line-height: 48px;
    }
    .lp1 .bottom .woman{
        height:100%;
    }
    .lp1 .bottom img{
		height:100%;
		object-fit:cover;
	}

}

@media only screen and (max-width:991px){

    .lp1 .start .body h2 {
        font-size: 56px;
        line-height: 58px;
    }
	.lp1 form .btn-custom{
		margin-top:15px;
	}
	.lp1 .start .laptop{
		margin-top:50px;
	}
	
	.lp1 .section{
		padding:50px 0px;
	}
	.lp1 .game{
		margin-top:-50px;
	}
    .lp1 .start .head{
		padding:25px 0px;
	}
	.lp1 .start .body{
		padding-top:25px;
	}

}

@media only screen and (max-width:768px){

    

}

@media only screen and (max-width:480px){
	
	
	.lp1 .start .body h2{
		font-size: 46px;
		line-height: 48px;
	}
	
	.lp1 .game h2{
		font-size: 46px;
		line-height: 48px;
	}
	
	.lp1 .bottom img{
		height:410px;
		object-fit:cover;
	}
	.lp1 .bottom .onpic .topleft{
		position:absolute;
		top:15px;
		left:15px;
	}
	.lp1 .bottom .onpic .bottomleft{
		position:absolute;
		bottom:15px;
		left:15px;
		padding-right:15px;
	}
	
	.lp1 .footer{
		text-align:center;
	}
	.lp1 .footer span{
		display:block;
		margin-bottom:15px;
	}
	.lp1 .footer a{
		padding:0px 5px;
	}
	
}


.lp2{
    font-size:16px;
}
.lp2 .start{
	background:url(../landing/images/lp2start.png) no-repeat;
	background-size:cover;
	background-position: center center;
	padding:200px 0px;
	position:relative;
	color:#fff;
	text-align:center;
}
.lp2 .start .darkOverlay{
	position:absolute;
	top:0;left:0;
	background:rgba(46, 46, 46, .54);
	width:100%;height:100%;
}
.lp2 .start .container{
	position:relative;
	z-index:2;
}
.lp2 .start img{
	width:310px;
	margin:0 auto;
	display:block;
	margin-bottom:50px;
}
.lp2 .start h2{
	font-size:55px;
	margin-bottom:25px;
}
.lp2 .start p{
	display:block;
	line-height:30px;
    font-size:18px;
    margin-bottom:25px;
}


.lp2 .btn-custom, .lp2 .btn-custom:hover, .lp2 .btn-custom:active, .lp2 .btn-custom:focus{
	background:#54C147;
	border-radius:3px;
	color:#fff;
	padding:10px 30px;
	font-size:18px;
	font-weight:bold;
}
.lp2 .btn-white, .lp2 .btn-white:hover, .lp2 .btn-white:active, .lp2 .btn-white:focus{
	background:#fff;
	color:#000;
}

.lp2 .digital{
	background:url(../landing/images/lp2digital.png) no-repeat;
	background-position: center center;
	background-size:cover;
}
.lp2 .digital .textBox{
	position:relative;
}
.lp2 .digital .darkOverlay{
	position:absolute;
	top:0;left:0;
	background:rgba(46, 46, 46, .79);
	width:100%;height:100%;
}
.lp2 .digital .text{
	position:relative;
	z-index: 2;
	padding:50px;
	color:#fff;
}
.lp2 .digital .text h3{
	font-size:31px;
	margin-bottom:25px;
}


.lp2 .overview img{
	width:100%;
	height:100%;
	object-fit:cover;
}
.lp2 .overview .text{
	padding:50px;
    color:#000;
}
.lp2 .overview h3{
	font-size:31px;
	margin-bottom:25px;
	font-weight:bold;
}


.lp2 .support{
	background:rgba(158, 0, 82, 1);
	padding:50px;
}
.lp2 .support h2{
	font-weight:bold;
	color:#fff;
	font-size:35px;
	margin:0;
}


.lp2 .footer{
	padding:25px;
	color:rgba(0, 0, 0, .52);
	font-size:12px;
}
.lp2 .footer a{
	color:rgba(0, 0, 0, .52);
	padding:0px 10px;
	text-decoration: none;
}


.lp2 .greenBg{
	background:rgba(84, 193, 71, 1);
	color:#fff;
	border-top-left-radius:0.3rem;
	border-bottom-left-radius:0.3rem;
	height:100%;
}
.lp2 #reg small{
	display:block;
	margin-bottom:25px;
	font-size:12px;
}
.lp2 #reg .check h3{
	font-size:24px;
}
.lp2 #reg .check{
	align-items: flex-start;
	font-size:14px;
}
.lp2 #reg .check img{
	width:25px;
	margin-right:15px;
}

.lp2 .btn-close{
	position:absolute;
	top:-5px;
	right:-5px;
	background-color:#fff;
	border-radius:50%;
	padding:10px;
	opacity:1;
	color:#000;
	box-shadow:0px 0px 5px rgba(0,0,0,.1);
}


.lp2 .form-control{
    background:#fff;
    color:#000;
    border:none;
    padding:10px;
}
.lp2 .modal-content{
    background-color:#fff;
    color:#000;
}

@media only screen and (max-width:1399px){

    .lp2 .overview .row{
        align-items:inherit!important;
    }

}
@media only screen and (max-width:1199px){
	
	.lp2 .overview .text{
		padding:20px;
	}
	.lp2 #reg .check h3{
		font-size:21px;
	}
	.lp2 #reg .check{
		font-size:12px;
	}
	
}
@media only screen and (max-width:991px){
	
	.lp2 .overview .text{
		padding:20px;
	}
	.lp2 .overview img{
		height:500px;
	}
	
}
@media only screen and (max-width:768px){
	
	.lp2 .noMargin{
		margin:0 auto!important;
		padding:0!important;
	}
	
}
@media only screen and (max-width:480px){
	
	.lp2{
		overflow:hidden;
	}
	.lp2 .start{
		padding:100px 0px;
	}
	.lp2 .start h2{
		font-size:40px;
	}
	.lp2 .start p{
		line-height: inherit;
	}
	.lp2 .digital .text{
		text-align:center;
		padding:100px 0px;
	}
	.lp2 .overview .text{
		padding:50px 25px;
	}
	.lp2 .overview .col-lg-7{
		padding:0!important;
	}
	.lp2 .support{
		padding:25px;
	}
	.lp2 .support h2{
		font-size:29px;
	}
	.lp2 .footer{
		text-align:center;
	}
	.lp2 .footer span{
		display:block;
		margin-bottom:25px;
	}
			
}


.lp3{
    font-size:16px;
    color:#000;
}
.lp3 .bar{
	background: rgba(205, 231, 229, 1) 0% 0% no-repeat padding-box;
	border: 1px solid rgba(133, 201, 190, 1);
	padding:10px;
	color:rgba(23, 57, 84, 1);
	text-align:center;
}
.lp3 .top{
	margin:25px 0px;
}
.lp3 .top .logo{
	width:200px;
}

.lp3 .btn-custom, .lp3 .btn-custom:hover, .lp3 .btn-custom:focus, .lp3 .btn-custom:active{
	background: rgba(51, 195, 143, 1) 0% 0% no-repeat padding-box;
	border-radius: 4px;
	padding:10px 20px;
	color:#fff;
	text-transform: uppercase;
}
.lp3 .yellow{
	color:rgba(255, 219, 18, 1);
}
.lp3 .red{
	color:rgba(202, 12, 73, 1);
}

.lp3 .start{
	background: transparent linear-gradient(180deg, rgba(183, 38, 67, 1) 0%, rgba(10, 37, 58, 1) 100%) 0% 0% no-repeat padding-box;
	padding:100px 0px;
	color:#fff;
}
.lp3 .start h2{
	font-size:42px;
	margin-bottom:25px;
	font-weight:bold;
}
.lp3 .check{
	margin-bottom:15px;
	font-size:18px;
	align-items:center;
}
.lp3 .check i{
	color:rgba(76, 174, 80, 1);
	font-size:20px;
	padding-right:10px;
}
.lp3 .start .form-bg{
	background:#fff;
	padding:10px;
}
.lp3 .start .form-bg .form-control{
	border:none;
	outline:none!important;
}
.lp3 .start .form-bg .btn-custom{
	width:300px;
}
.lp3 .start small{
	color:rgba(255, 255, 255, .57);
	font-size:12px;
}
.lp3 .start small a{
	color:rgba(255, 255, 255, .57);
}
.lp3 .start img{
	width:100%;
	padding-left:100px;
}

.lp3 .section{
	padding:100px 0px;
}

.lp3 .auto h2{
	font-size:34px;
	font-weight:bold;
}


.lp3 .clock{
	background:rgba(23, 63, 95, 1);
	padding:50px;
	color:#fff;
	border-radius: 6px;
}
.lp3 .clock .rabatt{
	background:rgba(133, 201, 190, 1);
	border-radius:6px;
	color:rgba(23, 63, 95, 1);
	padding:5px 10px;
	font-weight:bold;
	display:inline-block;
	font-size:26px;
}
.lp3 .clock_timer{
	background:#fff;
	margin-top:-25px;
	border-radius:6px;
}
.lp3 .clock_box{
	background:rgba(133, 201, 190, 1);
	padding:5px 15px;
	border-radius:6px;
	margin:10px;
	color:rgba(23, 63, 95, 1);
	text-align:center;
	display:inline-block;
}
.lp3 .clock_box h2{
	font-weight:bolder;
	font-size:50px;
	margin:0;
}


.lp3 .eff h2, .lp3 .eff h4{
	font-weight:bold;
}
.lp3 .eff .list .check{
	border-bottom:1px solid rgba(112, 112, 112, .33);
	padding:15px;
	padding-left:0;
	margin:0;
}
.lp3 .eff .list .check:last-child{
	border:none;
}
.lp3 .eff p{
	display:block;
	line-height:28px;
}

.lp3 .btm{
	background: transparent linear-gradient(180deg, rgba(183, 38, 67, 1) 0%, rgba(10, 37, 58, 1) 100%) 0% 0% no-repeat padding-box;
	padding:50px;
	color:#fff;
}
.lp3 .btm h2{
	font-weight:normal;
}

.lp3 .footer{
	padding:25px;
	color:rgba(0, 0, 0, .52);
	font-size:12px;
}
.lp3 .footer a{
	color:rgba(0, 0, 0, .52);
	padding:0px 5px;
	text-decoration: none;
}

.lp3 .form-control{
    background:#fff;
    color:#000;
    border:none;
    padding:10px;
}




@media only screen and (max-width:1199px){
	
	.lp3 .start h2{
		font-size:34px;
	}
	.lp3 .auto h2{
		font-size:25px;
	}
	.lp3 .clock h2{
		font-size:28px;
	}
	
	.lp3 .eff .col-lg-5{
		width:100%;
	}
	.lp3 .eff .col-lg-6{
		width:100%;
	}
	.lp3 .eff img{
		width:80%!important;
		margin:0 auto;
		margin-top:35px;
		margin-bottom:35px;
		display:block;
	}
	
}

@media only screen and (max-width:991px){
	
	.lp3 .start{
		text-align:center;
	}
	.lp3 .start img{
		padding-left:0;
		width:70%;
		margin:0 auto;
		display:block;
		margin-top:35px;
	}
	.lp3 .check{
		justify-content: center;
	}
	
	.lp3 .auto{
		text-align:center;
	}
	.lp3 .auto img{
		width:70%!important;
		padding:0!important;
		display:block;
		margin:0 auto;
		margin-top:35px;
	}
	
	.lp3 .clock{
		padding:30px;
		padding-bottom:50px;
		text-align:center;
	}
	
	.lp3 .eff{
		text-align:center;
	}
	
}

@media only screen and (max-width:500px){
	
	.lp3 .clock_box{
		margin:3px;
	}
	
}

@media only screen and (max-width:480px){
	
	.lp3 .start{
		padding:50px 0px;
	}
	.lp3 .top{
		margin:15px 0px;
	}
	.lp3 .top .logo{
		width:150px;
	}
	.lp3 .top .btn-custom{
		font-size:14px;
	}
	.lp3 .btn-custom, .lp3 .btn-custom:hover, .lp3 .btn-custom:focus, .lp3 .btn-custom:active{
		padding:10px;
	}
	.lp3 .start h2{
		font-size:27px;
	}
	.lp3 .check{
		text-align:left;
		font-size:13px;
		justify-content: inherit;
	}
	.lp3 .start .form-bg{
		padding:5px;
	}
	.lp3 .start .form-bg .btn-custom{
		width: 200px;
		font-size: 9px;
	}
	
	.lp3 .section{
		padding:50px 0px;
	}
	
	.lp3 .auto h2{
		font-size:23px;
	}
	.lp3 .auto img{
		width:100%!important;
	}
	
	.lp3 .clock_timer{
		padding:5px;
	}
	.lp3 .clock_box{
		padding:5px 8px;
		margin:2px;
	}
	.lp3 .clock_box h2{
		font-size:38px;
	}
	
	.lp3 .eff img{
		width:100%!important;
	}
	
	.lp3 .btm{
		padding:25px 10px;
	}
	
	.lp3 .footer{
		text-align:center;
	}
	
	
}