body {
	font-family: "IBM Plex Sans", sans-serif;
}

/* Top Bar */
.top-bar {
	background: #212121;
	color: white;
	text-align: center;
	padding: 11px 0 12px;
	font-size: 18px;
	font-weight: 600;
	line-height: 27px;
	letter-spacing: 0px;
	text-transform: uppercase;
	font-family: "Open Sans", sans-serif;
}


/* Sub Text */
.subtext {
	font-size: 28px;
	line-height: 1.3;
	margin-bottom: 30px;
	font-weight: 500;
	color: #222;
}

/* CTA Button */
.cta-btn {
	background: #f57c3d;
	color: white;
	font-weight: bold;
	padding: 22px 40px;
	font-size: 18px;
	border-radius: 3px;
	text-decoration: none;
	position: relative;
	left: -4px;
	display: inline-block;
	transition: 0.2s ease-in-out;
}

.cta-btn:hover {
	background: #e66a2c;
	color: white;
}

/* Privacy Text */
.privacy-text {
	margin-top: 8px;
	margin-bottom: 10px;
	font-size: 13px;
	color: #444;
	line-height: 1.4;
}

.sp1{
	padding-left: 79px;
	margin-top: -3px;
}

.sp2{
}


/* Responsive */
@media (max-width: 992px) {
	.main-heading {
		font-size: 48px;
	}

	.subtext {
		font-size: 22px;
	}
}


/* Hero Section */
.hero {
	padding: 30px 0 49px;
}

.container {
	max-width: 1090px;
	margin: auto;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	--op3-flex-column-gap: 15px;
}

/* Left Side */
.left {
	flex: 1;
	display: flex;
	justify-content: flex-end;
	width: 400px;
	height: 100%;
	margin: 0;
	padding: 0;
	overflow: hidden;
	margin-right:15px;
	padding-top: 9px;
}
html .left{
	--op3-flex-column-width: 0.45;
}
	.left img{
	max-width:400px;
}

.book-img {
	max-width: 400px;
	width: 100%;
}

html .right{
	--op3-flex-column-width: 0.55;
	--op3-flex-basis-steps: 2;
}
/* Right Side */
.right {
}
.rcont{
	text-align:center;
	flex:1;
}

.right h1 {
	font-size: 70px;
	font-family: "Open Sans", sans-serif;
	font-family: "Barlow", sans-serif;
	font-weight: 700;
	line-height: 1.2;
	margin-top: -15px;
	padding:0;
	margin-bottom: 15px;
	text-align: center;
	color:#212529;
	letter-spacing:1px;
}

.subtext {
	font-family: "Open Sans", sans-serif;
	font-size: 36px;
	line-height: 1.1;
	font-weight: 600;
	text-align: center;
	color: #212529;
	margin:5px auto 20px auto;
	max-width: 93%;
	letter-spacing: 0px;
	position: relative;
	Left:-3px;
}

/* Button */
.cta-btn {
	display: flex;
	background: #f57c3d;
	color: white;
	font-family: "Open Sans", sans-serif;
	font-size: 22px;
	font-weight: 700;
	max-width: 475px;
	margin-left: auto;
	text-shadow: rgba(0, 0, 0, 0.1) 1px 2px 0px;
	margin-right: auto;
	-webkit-animation: effectRockingsmall 2s infinite;
	animation: effectRockingsmall 2s infinite;
	-webkit-animation-timing-function
	Describes how the animation will progress over one cycle of its duration. See the 'transition-timing-function'.
	: cubic-bezier(0,0,.58,1);
	animation-timing-function: cubic-bezier(0,0,.58,1);
	-webkit-transition: .2s;
	transition: .2s;
	box-shadow: rgba(0, 0, 0, 0.16) 0px 17px 44px -2px;
	background-image: url(images/arr.png);
	background-repeat: no-repeat;
	background-position: 93% 50%;
}

.cta-btn:hover{
	-webkit-animation:none;
	animation: none;
	background-image: url(images/arr.png);
	background-repeat: no-repeat;
	background-position: 93% 50%;
}

.btn .fa{
	position:relative;
	top:3px;
}

.modal-lg, .modal-xl {
	--bs-modal-width: 700px;
}

.modal-body .btn, .infusion-submit button{
	height: 67px;
	padding: .25em 1em;
	border-radius: 3px;

	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	padding: 0 22px;
	margin: 5px 0;
	background-color: transparent;
	text-align: center;
	-webkit-box-shadow: none;
	box-shadow: none;
	font-size: 16px;
	overflow: hidden;
	background-clip: border-box;
	background-color: rgb(255, 167, 0);
	transition: all 0s ease;
	width: fit-content;
    width: -webkit-fill-available;
	
	font-size: 19px;
    line-height: 1.5em;
	font-weight: 700;
	font-family: "Open Sans", sans-serif;
	color: rgb(255, 255, 255);
	text-shadow: rgba(0, 0, 0, 0.15) 0px 1px 0px;
	border:0;
	
}

.modal-body .btn:hover, .infusion-submit button:hover{
	background-color: #ffaf00;
}

@-webkit-keyframes effectRockingsmall {

	0%,
	100%,
	25% {
		-webkit-transform: rotate(0);
		transform: rotate(0)
	}

	50% {
		-webkit-transform: rotate(2deg);
		transform: rotate(2deg)
	}

	75% {
		-webkit-transform: rotate(-2deg);
		transform: rotate(-2deg)
	}
}

@keyframes effectRockingsmall {

	0%,
	100%,
	25% {
		-webkit-transform: rotate(0);
		transform: rotate(0)
	}

	50% {
		-webkit-transform: rotate(2deg);
		transform: rotate(2deg)
	}

	75% {
		-webkit-transform: rotate(-2deg);
		transform: rotate(-2deg)
	}
}


/* Privacy */
.privacy-text {
	margin-top: 18px;
	font-size: 12px;
	color: rgba(29, 29, 29, 0.84);
	line-height: 1.4;
}

.copyright{
	font-size: 12px;
	color: rgba(29, 29, 29, 0.84);
	line-height: 1.4;
	font-family: "Open Sans", sans-serif;
	text-align: center;
	margin:141px 0;
}

.copyright a{
	color: #212529;
	text-decoration: none;
}

.copyright a:hover{
	text-decoration: underline;
}

.modal-close {
    padding: 10px;
    position: absolute;
    top: -25px;
    right: -25px;
    z-index: 100;
    cursor: pointer;
}

.modal-close-text{
	display:none;
}

.modal-close-icon{
	display: block;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/PjwhRE9DVFlQRSBzdmcgIFBVQkxJQyAnLS8vVzNDLy9EVEQgU1ZHIDEuMS8vRU4nICAnaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkJz48c3ZnIGhlaWdodD0iNTEycHgiIGlkPSJMYXllcl8xIiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCA1MTIgNTEyOyIgdmVyc2lvbj0iMS4xIiB2aWV3Qm94PSIwIDAgNTEyIDUxMiIgd2lkdGg9IjUxMnB4IiB4bWw6c3BhY2U9InByZXNlcnZlIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj48Zz48cGF0aCBkPSJNMjU2LDMzQzEzMi4zLDMzLDMyLDEzMy4zLDMyLDI1N2MwLDEyMy43LDEwMC4zLDIyNCwyMjQsMjI0YzEyMy43LDAsMjI0LTEwMC4zLDIyNC0yMjRDNDgwLDEzMy4zLDM3OS43LDMzLDI1NiwzM3ogICAgTTM2NC4zLDMzMi41YzEuNSwxLjUsMi4zLDMuNSwyLjMsNS42YzAsMi4xLTAuOCw0LjItMi4zLDUuNmwtMjEuNiwyMS43Yy0xLjYsMS42LTMuNiwyLjMtNS42LDIuM2MtMiwwLTQuMS0wLjgtNS42LTIuM0wyNTYsMjg5LjggICBsLTc1LjQsNzUuN2MtMS41LDEuNi0zLjYsMi4zLTUuNiwyLjNjLTIsMC00LjEtMC44LTUuNi0yLjNsLTIxLjYtMjEuN2MtMS41LTEuNS0yLjMtMy41LTIuMy01LjZjMC0yLjEsMC44LTQuMiwyLjMtNS42bDc1LjctNzYgICBsLTc1LjktNzVjLTMuMS0zLjEtMy4xLTguMiwwLTExLjNsMjEuNi0yMS43YzEuNS0xLjUsMy41LTIuMyw1LjYtMi4zYzIuMSwwLDQuMSwwLjgsNS42LDIuM2w3NS43LDc0LjdsNzUuNy03NC43ICAgYzEuNS0xLjUsMy41LTIuMyw1LjYtMi4zYzIuMSwwLDQuMSwwLjgsNS42LDIuM2wyMS42LDIxLjdjMy4xLDMuMSwzLjEsOC4yLDAsMTEuM2wtNzUuOSw3NUwzNjQuMywzMzIuNXoiLz48L2c+PC9zdmc+);
	background-size: 30px 30px;
	background-color: #fff;
	-webkit-box-shadow: 0 0 10px rgba(0, 0, 0, .5);
	box-shadow: 0 0 10px rgba(0, 0, 0, .5);
	pointer-events: none;
}

.modal-content{
	border-radius:20px;
	border-radius:calc(0.5rem - (1px));
}

.progress-container{
	width:93%;
	margin: auto;
	padding-top:7px;
}

.progress{
	margin-top:1em;
	margin-left:0px;
	height:30px;
	border-radius:10px;
}

.progress-bar-animated {
	font-weight:600;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;;
	font-size: 12px;
	line-height:1;
	color: #fff;
	letter-spacing:1px;
	animation: progress-bar-stripes 1s linear infinite;
	background-image: linear-gradient(135deg, rgba(0, 0, 0, .15) 25%, transparent 25%, transparent 50%, rgba(0, 0, 0, .15) 50%, rgba(0, 0, 0, .15) 75%, transparent 75%, transparent);
	background-image: linear-gradient(135deg, #289938 25%, transparent 25%, transparent 50%, #289938 50%, #289938 75%, transparent 75%, transparent);
	background-color: #5cb85c;
	background-size: 15px 15px;
	animation-direction: reverse;
	margin:0px 0 0px 0;
}

.progress .progress-bar {
	transition: unset;
	transition: width .6s ease;
}

.progress:hover .progress-bar-animated {
	animation:none;
	background: #5cb85c;
}

.progress-bar-striped {
/*	background-image: linear-gradient(135deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
	background-size: 40px 40px;*/
}


@-webkit-keyframes progress-bar-stripes {
	from  { background-position: 40px 0; }
	to    { background-position: 0 0; }
}

// Spec and IE10+
@keyframes progress-bar-stripes {
	from  { background-position: 40px 0; }
	to    { background-position: 0 0; }
}

.modal-body h2{
	color: #fff;
	font-size: 33px;
	font-family: "Open Sans", sans-serif;
	font-family: "Barlow", sans-serif;
	font-weight: 400;
	line-height: 1.15;
	margin: 13px 0 10px 4px;
	padding: 0;
}

.modal-body .hd{
	font-size: 24px;
	font-family: "Open Sans", sans-serif;
	font-family: "Barlow", sans-serif;
	font-weight: 500;
	line-height: 1.25;
	margin: 9px 0 14px 0;
}

.infusion-submit{
	width: 93%;
	margin: auto;
}

.modal-body input[type=text], .modal-body input[type=email], .modal-body .infusion-field input {
	overflow-clip-margin: 0px !important;
    overflow: clip !important;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
	z-index: 1;
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
	display: block;
	width: fit-content;
    width: -webkit-fill-available;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    position: relative;
    margin: 0;
    padding: 17px 30px 19px 23px;
    padding: 18px 30px 18px 23px;
    line-height: 1.5;
    border: 0;
    outline: 0;
    overflow: hidden;
	font-family: 'Poppins', sans-serif;
}
.modal-body div{
	position:relative;
}

.infusion-field input::placeholder{
	color:#988c7e;
	font-size:16px;
	font-family: 'Poppins', sans-serif;
}

.infusion-field{
	position:relative;
	width:93%;
	margin:auto;
}

.fname, .emailc{
	position:relative;
	display: flex;
}

.fname, .emailc, .infusion-submit, .pp {
	width: 440px;
	margin: auto;
}

label:has(input[type="text"]):after, .infusion-field:has(#oRV5Gnoy37DhDrbOn3Sjr3GfUeDwUPUmk6dU68gVe6e):after, .fname:after {
	content:"\f2c0";
	content: "";
	position: absolute;
	left: 22px;
	top: 22px;
	display: block;
	font: normal normal normal 14px / 1 FontAwesome;
	font-size: inherit;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	color: rgb(170, 179, 188);
	z-index:999;
	background:url(images/user.png) no-repeat center center;
	width: 18px;
	height: 18px;
}

label:has(input[type="email"]):after, .emailc:after {
	content:"\f003";
	content: "";
	position: absolute;
	left: 23px;
	top: 22px;
	display: block;
	font: normal normal normal 14px / 1 FontAwesome;
	font-size: inherit;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	color: rgb(170, 179, 188);
	z-index:999;
	background:url(images/mail.png) no-repeat center center;
	width: 18px;
	height: 18px;
}

label:has(input[type="text"]), label:has(input[type="email"]), .modal-body .infusion-field input{
	display:block;
	border: 1px solid #e8e8e8;
	margin: 0 0 23px 0;
	margin: 0 0 12px 0;
	border-radius: 0.5rem;
	padding-left: 58px;
	font-family:Poppins, sans-serif;
}
label:has(input[type="text"]) *, label:has(input[type="email"]) *{
	display:flex;
	flex-grow: 1;
}

.modal-body .infusion-field label{
	display:none;
}

input[type="text"]{
	float:left;
}

.pp{
	color: rgba(33, 37, 41, 0.64);
	font-size: 14px;
	font-weight: 500;
	font-family: "Open Sans", sans-serif;
	font-family: 'Poppins', sans-serif;
	margin-top: 30px;
	margin-bottom: 15px;
	color: #3b2a15;
}

.pp img {
    margin-right: 5px;
    width: 10px;
    height: 14px;
    position: relative;
    top: -2px;
    left: -2px;
}

.modal-backdrop{
	background-color: rgb(0 0 0 / 60%);
}

.modal-content{
	background-color:#f9f9f9;
}

.modal-img{
	max-width:130px
}

/* Responsive */
@media (max-width: 1024px) {
	.right h1{
		font-size: 60px;
	}
	.subtext{
		font-size:30px;
	}
}

@media (max-width: 900px) {
	.container {
		flex-direction: column;
		text-align: center;
	}

	.right h1 {
		font-size: 48px;
	}

	.subtext {
		font-size: 22px;
	}
}

@media (max-width: 768px) {
	.text-right.sp2{
		text-align:center;
		justify-content: space-around;
		margin-bottom:30px;
	}
	
	.right h1 {
		font-size: 38px;
	}
	
	.sp1{
		padding:0;
		margin:0;
	}

	.sp2 img{
		max-width:300px!important;
	}
	
	.progress-bar-animated{
		font-size:12px;
	}
}

@media (max-width: 425px) {
	.right h1 {
		font-size: 36px;
	}
	
	.subtext {
		font-size: 20px;
	}
	
	.cta-btn{
		font-size:16px;
	}
	
	.sp2 img{
		max-width:220px!important;
	}
	
	.modal-body h2{
		font-size:22px;
	}
	
	.modal-body .hd{
		font-size:18px;
	}
	
	.modal-body .btn, .infusion-submit button{
		font-size:16px;
	}
	
	.pp {
		font-size: 11px;
	}
	
	.row>*{
		box-sizing: border-box;
	}
	
	.row {
		--bs-gutter-x: 0;
		margin-left: 0;
		margin-right:0;
	}
	
	.left{
		max-width:100%;
		width: -webkit-fill-available;
		width: 100%;
	}
	
	.right h1 {
		font-size: 32px;
	}

	.subtext {
		font-size: 18px;
	}

	.cta-btn {
		font-size: 13px;
	}
	
	.progress-bar-animated {
		font-size: 10px;
	}
	
	.modal-body h2 {
		font-size: 18px;
	}

	.modal-body .hd {
		font-size: 16px;
	}

	.modal-body .btn, .infusion-submit button {
		font-size: 15px;
	}

}

@media (max-width: 320px) {
	.cta-btn {
		font-size: 11px;
	}

	.modal-body .btn, .infusion-submit button {
		font-size: 13px;
	}
}