
/* part 1 */
	html, main, body{
		background-color:#f2f2f2;
		background-color:#fff;
		color:black;
		font-family: Lato, sans-serif;
	}
	
	p{
		margin:0;
	}
	
	body{
		display:none;
		/*
		transition-duration: 0.5s;
		transition-property: visibility;
		*/
	}

	.bg-div{
		display:flex;
		flex-direction:column;
		justify-content:center;
		align-items:center;
		width:100%;
		height:100%;
		text-align:center;
	}
	
	
	
	.main-div{
		max-width:500px;
		width:100%;
	}
	
	.main-div > div{
		display:flex;
		flex-direction:column;
		justify-content:center;
		align-items:center;
		margin: 25px auto 0px;
	}
	
	.header-div{
		/* margin:0 !important; */
	}
	
	.header-div-image-holder{
		width:100px;
	}
	
	.header-div-image-holder img{
		width:100%;
	}
	
	.italicized{
		font-style:italic;
	}
	
	.video-div-video-holder{
		width: 100%;
		display: flex;
		align-items: center;
		justify-content: center;
		max-width:500px;
	}
	
	.video-div-video-holder video{
		width:100%;
	}
	
	.video-div-video-holder img{
		width:100%;
	}
	
	.video-div-payment{
		width:100%;
	}
	
	.video-div-payment-button{
		padding:20px 0;
	}
	
	.video-div-payment-button a{
		text-decoration:none;
		color:white;
		background-color: green;
		display:block;
		padding: 10px 20px;
		font-size: 24px;
		border-radius: 50px;
		font-weight:700;
		
		    -webkit-animation-duration: 2s;
			animation-duration: 2s;
			-webkit-animation-name: pulseButton;
			animation-name: pulseButton;
			-webkit-animation-timing-function: linear;
			animation-timing-function: linear;
			-webkit-animation-iteration-count: infinite;
			animation-iteration-count: infinite;
			-webkit-animation-direction: normal;
			animation-direction: normal;
		
	}
	
	
	@-webkit-keyframes pulseButton {
		0% {
			-webkit-box-shadow: 0;
		}
		50% {
			-webkit-box-shadow: 0 0 0 10px rgba(76, 175, 80, 0.8);
		}
		100% {
			-webkit-box-shadow: 0;
		}
	}
	  
	@keyframes pulseButton {
		0% {
			box-shadow: 0;
		}
		
		50% {
			box-shadow: 0 0 0 10px rgba(76, 175, 80, 0.8);
		}
		
		100% {
			box-shadow: 0;
		}
	}
	
	.card-div-images{
		max-width:400px;
	}
	
	.card-div-images img{
		width:100%;
	}
	
	.encard{
		margin: 20px 0;
		padding: 20px;
		background: #0f0f0f99;
		border-radius: 10px;
		color: white;
	}
	
	.encard2{
		margin: 20px 0;
		padding: 20px;
		background: #f2f2f2;
		background: #fff;
	
		border-radius: 10px;
		color: black;
		box-shadow:0 0 15px rgb(0 0 0 / 30%);
	}
	
	.extra-div-model-slider{
		width:100%;
	}
	
	.font-style-0{
		font-size: 35px;
		line-height:1.3;
		font-weight:bold;
		font-family:impact;
	}
	
	.font-style-1{
		font-size: 30px;
		line-height: 48px;
		font-weight:bold;
	}
	
	.font-style-2{
		font-size: 24px;
		line-height: 1.5;
	}
	
	.font-style-3{
		font-size: 28px;
		line-height: 32px;
		font-weight:bold;
	}
	
	.font-style-4{
		font-size: 19px;
		line-height: 1.3;
		margin-top:5px;
	}
        
	.font-style-5{
		font-size: 16px;
		line-height: 1.5;
		color:#172f44;
	}
	
	.font-style-6{
		font-size: 21px;
		line-height: 1.5;
	}


	.video-div-list-holder-list{
		text-align:left;
	}
	
	.video-div-list-holder-list li{
		padding-bottom:10px;
	}
	
	.video-div-payment-text{
		width:100%;
		display: flex;
		justify-content: space-between;
		max-width: 460px;
		flex-direction:column;
	}

	.card-div.encard{
		padding-bottom:0px;
	}
	
	.testimonials-div{
		gap:20px;
	}
	
	.testimonial-block{
		background: #f2f2f2CC;
		padding: 15px;
		border-radius: 10px;
		color: black;
		/*
		font-size:18px;
		line-height:28px;
		*/
	}
	
	.testimonial-block-body{
		display: flex;
		align-items: center;
		text-align: left;
		gap: 20px;
	}
	
	.testimonial-block-header{
		display: flex;
		justify-content: space-between;
		text-align: left;
		padding-bottom: 5px;
	}
	
	.testimonial-block-header-info{
		padding-left: 44px;
	}

	.half-opacity{
		opacity:0.5;
	}
	
	.moneyback-div-texts-header{
	
		padding-bottom:20px;
	}
	
	.emboldened{
		font-weight:bold;
	}
	
	.flex-row {
		flex-direction: row !important;
		align-items: flex-start !important;
	}
	
	.showcase-vid img{
		width:100%;
	}
	
	.showcase-vid-flex{
		width:100%;
		display:flex;
		gap:10px;
	}
	
	.showcase-vid{
		padding-top:10px;
		flex: 1;
	}
	
	.showcase-vid video{
		border-radius: 10px;
		width: 100%;
		height: 100%;
		box-shadow: 0 0 15px rgb(0 0 0 / 30%);
		object-fit: cover;
		aspect-ratio: 16 / 9;
	}
	
	.moneyback-div-image-holder{
		width:150px;
	}
	
	.moneyback-div-image-holder img{
		width:100%;
	}
	
	.standard-image{
		width:100%;
		
	}
	
	.standard-image img{
		width:100%;
		
	}
	
	.video-div-payment-button{
		z-index:999;
		bottom: 0;
		left: 0;
		width: 100%;
		background: #f2f2f2;
		background: #fff;
		
		
		padding-bottom: 30px;
		padding-top: 15px;
		padding-left: 20px;
		padding-right: 20px;
		display: flex;
		align-items: center;
		justify-content: center;
		flex-direction:column;
		gap:10px;
		box-shadow:0 0 15px rgb(0 0 0 / 30%);
	}
	
	.video-div-payment-button a{
		max-width: 460px;
		width:100%;
	}
	
	.card-div{
		margin:0px;
	}
	
	.video-div-payment-button-wrapper{
		min-height: 108px;
	}
	
	.striken{
		text-decoration: line-through;
	}
	
	
	@media(max-width:500px){
		.showcase-vid-flex{
			flex-direction:column;
			gap:0px;
		}
	
	}
	    
/*

	#D4003B

*/



/* part 2 */
        .highlight-1{
                color:#29d884;
                font-weight:bold;
        }
		
		.header-highlight{
			color:#1c4587;
		}
        
        .strikethrough{
                text-decoration: line-through;
                font-size: 0.9em;
        }
        #redirect-location{
                margin-top:15px;
        }
		
		.header-popper{
			color:white ;
			background: red ;
			padding: 0.5rem 1.6rem 0.3rem;
			width: fit-content;
			margin: 1rem auto 1rem;
			border-radius: 20px;
			line-height: 1;
			font-weight: 600;
		}
		
		.deadlinebefore{
			margin-bottom:0px;
			font-size: 24px;
			color:red ;
			font-family:impact;
		}
		
		.sb_timer .deadlinebefore{
			color:white ;
		}
		
/* part 3 */

	.model{
		
		width:30%;
		height:auto;
		position:fixed;
		-webkit-mask-image: linear-gradient(to top, transparent, black 10%);
		mask-image: linear-gradient(to top, transparent, black 10%);
		z-index:9999;
	}

	.model img{
		width:100%;
	}
	
	.model_1{
		max-width:380px;
		left:0;
		bottom:0;
	}
	
	.model_2{
		max-width:380px;
		right:0;
		bottom:0;
	}
	
	@media(max-width: 1000px) {
		.model{
			width:25%;
		}    
	}
	
	@media(max-width: 850px) {
		.models_div{
			display:none;
		}    
	}

/* part 4 */



	.VSL_CTA_Click-button{
		cursor:pointer;
	}
	.model_splide_1_holder {
		overflow-x: hidden;
		/*background: #141414;*/
		padding: 0px;
	}

	.model_splide_1_holder hr {
		height: 2px;
		border: none;
		display: none;
		margin-bottom: 50px;
		background: rgba(78, 78, 78, 0.80);
	}

	.model_splide_1_holder .container {
		z-index: 3;
		margin: auto;
		position: relative;
		width: 100% !important;
		max-width: 100% !important;
		
	}

	.model_splide_1_holder h3 {
		color: white;
		font-size: 20px;
		padding: 0 15px;
		font-weight: 500;
		text-transform: uppercase;
		font-family: 'Inter', sans-serif;
		margin-bottom: 0px;
	}
	
	.model_splide_1_holder h2 {
		color: white;
		font-size: 18px;
		padding: 0 15px;
		margin-bottom: 15px;
		font-family: 'Inter', sans-serif;
		line-height: 110%;
		margin-top: 0px;
	}
	
	.model_splide_1_holder p.course-subtitle {
		color: white;
		font-size: 16px;
		font-weight: 400;
		margin-top: -10px;
		padding: 0px 15px;
		font-family: 'Inter', sans-serif;
	}
	
	.model_splide_1_holder h3 span {
		color: #DC3232;
	}

	.model_splide_1_holder h3 a , .model_splide_1_holder h2 a {
		top: -1px;
		color: #496FC1;
		font-size: 16px;
		font-weight: 400;
		margin-left: 5px;
		position: relative;
		text-decoration-line: underline;
		font-family: 'Inter', sans-serif;
		float:right;
	}

	/* .model_splide_1_holder .model_splide_1_holder-container {
		 //overflow-x: scroll; 
		// margin-bottom: 50px; 
	} */

	.splide {
		padding: 15px 0;
	}

	.splide__slide img {
		display: block;
		width: 100%;
		border-radius: 8px;
		transition: transform 400ms;
		/*transform: scale(0.9);*/
		border: 2px solid transparent;
		transform-origin: center center;
		transition: all 0.2s linear;
	}

	.splide__slide.is-active img {
		transform: scale(1);
	}

	.splide .splide__arrow {
		top: 0;
		bottom: 0;
		height: 100%;
		transform: none;
		border-radius: unset;
		width: 50px;
		opacity: 0.9;
	}

	.splide .splide__arrow svg {
		filter: invert(1);
		width: 24px;
		height: 24px;
	}

	.splide__arrow.splide__arrow--prev {
		left: 0;
		background: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
		background: transparent !important;
	}

	.splide__arrow.splide__arrow--next {
		right: 0;
		background: linear-gradient(270deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
		background: transparent !important;
	}

	.splide__slide {
		padding: 0px 8px;
	}

	.splide__slide .video-title {
		margin: 0px;
		color: white;
		font-size: 15px;
		font-weight: 500;
		line-height: 20px;
		text-align: left;
		margin-top: 5px;
		margin-left: 10px !important;
		font-family: 'Inter', sans-serif;
	}

	.splide__slide .video-model {
		display: none;
		margin: 0px;
		color: white;
		font-size: 14px;
		font-weight: 400;
		line-height: 20px;
		text-align: left;
		margin-left: 10px !important;
		font-family: 'Inter', sans-serif;
	}

	.splide .splide__arrow svg {
		fill: #ffff;
		padding: 5px;
		filter: unset;
		width: 34px;
		height: 34px;
		position: relative;
		background: #d652ae;
		border-radius: 100%;
		background: rgb(233, 50, 24) !important;
	}
	
	.relative {
		position: relative;
	}

	.splide__slide .category {
		top: 0px;
		left: 0px;
		width: 100%;
		margin: 0px;
		height: 100%;
		display: flex;
		color: white;
		font-size: 30px;
		font-weight: 500;
		position: absolute;
		align-items: center;
		justify-content: center;
		font-family: 'Inter', sans-serif;
		box-shadow: 0px 8px 10px 0px rgba(0, 0, 0, 0.50);
		background: linear-gradient(178deg, rgba(28, 26, 31, 0.28) 51.33%, rgba(28, 26, 31, 0.28) 80.55%);
	}
	
	.splide__slide .video-model3 {
		margin: 0px;
		color: white;
		font-size: 20px;
		font-weight: 400;
		margin-top: 10px;
		line-height: 30px;
		text-align: center;
		font-family: 'Inter', sans-serif;
	}

	.splide__slide .video-model3 svg {
		max-width: 20px;
		vertical-align: middle;
	}

	.splide__slide .video-model3 span {
		vertical-align: middle;
		text-decoration: underline;
	}

	.vip-register-link-type2 img{
		height:100%;
	}
	
	@media(max-width: 600px){
	
		.model_splide_1_holder h3 {
			padding-left: 15px;
			margin-bottom: 0px;
		}

		.splide__slide .category {
			font-size: 20px;
		}

		.model_splide_1_holder .video-title {
			font-size: 18px;
		}
	
		.model_splide_1_holder {
			padding: 0px 0px;
		}
	
		.model_splide_1_holder p.course-subtitle {
			margin-top: 5px;
		}
	
	}


	/* part 5 */
		.model_splide_1_holderMobile{
			display:none;   
		}
	
		.model_splide_1_holderMobile .container_upper,.model_splide_1_holderMobile .container_lower{
			display:flex;
			width:100%;
		}
	
		.model_splide_1_holderMobile_imgContainer{
			width:100%;  
		}
	
		.model_splide_1_holderMobile_imgContainer img{
			width:100%;  
		}

		@media(max-width: 600px){
	
	
		}  
	
	
	
	/* part 6 */
		.standard-flex-column{
			display:flex;
		}
		
		.standard-flex{
			display:flex;
			gap:10px;
		}
		
		@media(max-width: 600px){
			.standard-flex{
				flex-direction:column;
				gap:0px;
			}
	
		}


	/* part 7 */
	
	footer{
		display:block;
	}
	
	footer p a {
		color: black;
	}
	
	footer p a:hover {
		color: black;
		opacity: 0.7;
	}

