/*------------------------------------------------------------------
[Table of contents]

1. Common
2. Header / header
3. Banner Section / .banner-section
4. Head Section / .page-head
5. Brand Section / .brand-partner

6. How it works Section / .how-it-works
7. Features Section / .features
8. Why Onir Section / .why-onir
9. Testimonial Section / .testimonial
10. Onir Plans Section / .onir-plans
11. Onir Stories Section / .onir-stories
12. FAQs Section / .faq
13. Try Onir Section / .try-onir
14. Subscribe Section / .subscribe
15. Footer Section / .footer
16. Homepage 2 / .homepage-2
17. Homepage 3 / .hp-3
18. About Page
19. Contact Page
20. Blog Page / .blogs
21. Blog Details / .blog-details
22. Modals / .modal

[Color codes]

# Primary Color (Buttons, Links): #0E7DFF
# Dark Blue Color (Headings) #000000
# Mid Grey (Subheadings, Captions, Paragraphs) rgba(31, 31, 57, 0.5)

*/



/*------------------------------------------------------------------
1. Common :: Starts
*/
body {
	font-size: 20px;
	font-family: 'Roboto', sans-serif;
	color: #000000;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {

	position: relative
}

ul {
	padding: 0;
	margin: 0;
}

.btn.btn-primary {
	background-color: #0E7DFF;
}

.btn.btn-primary:hover {
	background-color: #005fcf;
}


.btn:focus,
.btn-close:focus {
	box-shadow: none;

}

.section-title {
	font-size: 2.5em;
	font-weight: 900;
	text-align: center;
	color: #1a1a1a;
	margin-bottom: 18px;
}

.section-subtitle {
	font-size: 1em;
	color: #000000;
	text-align: center;
	line-height: 28px;

}

.title-top {
	font-size: 0.75em;
	font-weight: 700;
	color: rgba(31, 31, 57, 0.5);
	letter-spacing: 2px;
}

.app-download {
	display: flex;
	gap: 45px;
	justify-content: center;
}

.app-download div {
	border: 2px solid #000000;
    display: table-column-group;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    transition: 0.3s all;
    padding: 10px 16px 10px 15px;

}

.app-download div:hover {
	transform: scale(1.05);
}

.app-download div a {
	text-decoration: none;

}

.app-download div a span {
	
}

.main-content {
	overflow-x: hidden;
}

input:focus {
	border: none;
	outline: none;
}

/*------------------------------------------------------------------
Common :: Ends
*/

/*------------------------------------------------------------------
2. Header / header :: Starts
*/
header {
	background-color: #FFF0E9;
	height: 100px;
	margin: auto;
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 999;
}

header .nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

header .logo {
	z-index: 3;
	position: relative;
}
header .nav .logo img {
	width: 130px;
	display: block;
}

.nav-mobile-menu {
	display: none;
}

.btn-sign-up {
	display: none;
}

.nav .nav-menu {
	display: flex;
	justify-content: center;
	align-items: center;
	padding-top: 10px;


}

.nav-menu .nav-links {
	list-style: none;
	display: flex;
	justify-content: center;
	font-size: 0.9em;
	font-weight: 500;
}

.nav-menu .nav-links li+li {
	margin-left: 50px;
}

.nav-menu .nav-links .nav-link {
	position: relative;
	padding: 10px 0;
	line-height: 21px;
}

.nav-menu .nav-links .nav-link.active:hover {
	border-width: 60%;
}

.nav-menu .nav-links .nav-link:after {
	content: "";
	height: 2px;
	border-radius: 2px;
	background-color: #0E7DFF;
	width: 0%;
	position: absolute;
	bottom: 0;
	left: 50%;
	transition: 0.5s all;
}

.nav-menu .nav-links .nav-link.active:after,
.nav-menu .nav-links .nav-link:hover:after {
	width: 100%;
	left: 0;
	right: 0;
}

.nav .nav-button button.btn {
	color: #fff;
	padding: 12px 35px;
	border-radius: 500px;
	border: none;
}

/* [ This CSS is used for header of index3.html ] */
.homepage-3 .nav-button {
	display: none;
}

.homepage-3 .btn-sign-up {
	display: block;
}

header.homepage-3 {
	background-color: #fff;
}

header.homepage-3 .nav .nav-menu {
	display: none;
}

header.homepage-3 .nav-mobile-menu {
	height: 24px;
	width: 30px;
	z-index: 2;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	cursor: pointer;
}

header.homepage-3 .nav-mobile-menu .line {
	display: block;
	height: 3px;
	width: 100%;
	background: #182022
}

header.homepage-3 .nav-mobile-menu .line1 {
	transform-origin: 0 0;
	transition: transform .4s ease-in-out
}

header.homepage-3 .nav-mobile-menu .line2 {
	transition: transform .2s ease-in-out
}

header.homepage-3 .nav-mobile-menu .line3 {
	transform-origin: 0 100%;
	transition: transform .4s ease-in-out
}


.mobile-menu-open header.homepage-3 .nav-mobile-menu {
	background-color: #fdf2e5;

}

.mobile-menu-open header.homepage-3 .nav-mobile-menu .line1 {
	transform: rotate(45deg);
	transform-origin: 2px 7px;
}

.mobile-menu-open header.homepage-3 .nav-mobile-menu .line2 {
	transform: scaleY(0)
}

.mobile-menu-open header.homepage-3 .nav-mobile-menu .line3 {
	transform: rotate(-45deg);
	transform-origin: 2px -4px;
}

header.homepage-3 .nav-menu .nav-links li+li {
	margin-left: 0px;
}

header.homepage-3 .nav .nav-menu .nav-button {
	margin-left: 0;
    
	text-align: center;
	margin-top: 30px;
}

header.homepage-3 .nav-menu .btn-sign-up a,
header.homepage-3 .nav-menu .login {
	border: 1px solid #000000;
	border-radius: 40px;
	padding: 0 12px;
	line-height: 60px;
	min-width: 230px;
	width: 100%;
	margin: auto;
	text-decoration: none;
	display: block;
}

header.homepage-3 .nav-menu .btn-sign-up a {
	background-color: #0E7DFF;
	color: #fff;
	border: none;
}

.mobile-menu-open header.homepage-3 {
	overflow: hidden;
}

.mobile-menu-open header.homepage-3 .logo {
	display: block;
}

.mobile-menu-open header.homepage-3 .nav {
	justify-content: space-between;
}

header.homepage-3 .nav-menu .nav-links {
	flex-direction: column;
	text-align: center;
	align-items: center;
	font-size: 1.5em;
	font-weight: 700;
	gap: 12px;
}

.mobile-menu-open header.homepage-3 nav .nav-menu {
	display: block;
	height: 100%;
	position: fixed;
	width: 100%;
	background-color: #fff;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	padding: 11% 11%;
	overflow-y: auto;
}

/*------------------------------------------------------------------
Header / header :: Ends
*/


/*------------------------------------------------------------------
3. Banner Section / .banner-section :: Starts
*/
.banner-section {
	background-color: #FFF0E9;
	position: relative;

}

.banner-section h1 {
	font-size: 5em;
	font-weight: 900;
	text-align: center;
	padding-top: 120px;
	color: #000000;
}

.banner-section p {
	margin-top: 20px;
	margin-bottom: 100px;
}

.banner-vectors .banner-vector-1 {
	position: absolute;
	top: 55%;
	left: -29%;
}

.banner-vectors .banner-vector-2 {
	position: absolute;
	top: 68%;
	right: -12%;
}

.banner-vectors .banner-vector-3 {
	position: absolute;
	top: 90%;
	right: 5%;
}

.banner-vectors .banner-vector-4 {
	position: absolute;
	top: 76%;
	left: -8%;
}

.banner-vectors .banner-vector-5 {
	position: absolute;
	bottom: -10%;
	left: -22%;
}

.banner-carousel.owl-carousel .screenshot img {
	width: 100%;

}

.hp-1 .banner-section .app-download {
	margin-bottom: 100px;
}

.hp-1 .banner-section {
	background: linear-gradient(180deg, #FFF0E9 80%, #fff 30%);
	padding-top: 100px;
}

.hp-1 .banner-section .watch-now .btn-container {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	margin-top: 70px;
	font-weight: 700;
}

.hp-1 .banner-section .watch-now .btn-container img {
	transition: 0.3s all;

}

.hp-1 .banner-section .watch-now .btn-container:hover img {
	transform: scale(1.2);
}

.hp-1 .banner-section .watch-now a {
	text-decoration: none;
}
/*------------------------------------------------------------------
Banner Section / .banner-section :: Ends
*/


/*------------------------------------------------------------------
4. Head Section / .page-head :: Starts
*/
.page-head {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	min-height: 730px;
	background-color: #FFF0E9;
	position: relative;
}

.page-head h2 {
	font-size: 100px;
	font-weight: bolder;
	color: #000000;
}

.page-head span {
	font-size: 20px;
	color: #000000;
}

.page-head .input-container {
	position: relative;
	margin-top: 35px;
}

.page-head .input-container input {
	border: none;
	background-color: #fff;
	width: 650px;
	padding: 25px 70px;
	font-size: 30px;
	border-radius: 20px;
}

.page-head .input-container input::placeholder {
	color: rgba(31, 31, 57, 0.5);
}

.page-head .input-container button {
	padding: 18px 36px;
	border: none;
	background-color: #0E7DFF;
	border-radius: 20px;
	color: #fff;
	font-weight: 700;
	position: absolute;
	top: 15%;
	right: 3%;
}

.page-head .fa-magnifying-glass:before,
.fa-search:before {
	content: "\f002";
	position: absolute;
	top: 40%;
	left: 5%;
	color: rgba(31, 31, 57, 0.5);
	font-size: 25px;
}

.page-head .page-vectors img.page-vector-1 {
	position: absolute;
	top: 55%;
	right: 14%;
}

.page-head .page-vectors img.page-vector-2 {
	position: absolute;
	bottom: -9%;
	left: 13%
}

.page-head .page-vectors img.page-vector-3 {
	position: absolute;
	top: 55%;
	left: 8%
}

.page-head .page-vectors img.page-vector-4 {
	position: absolute;
	top: 25%;
	right: 2%;
}
/*------------------------------------------------------------------
Head Section / .page-head :: Ends
*/


/*------------------------------------------------------------------
5. Brand Section / .brand-partner :: Starts
*/
.brand-partner {
	margin-top: 200px;
	text-align: center;
}

.brand-partner p {
	margin-bottom: 60px;
}

.brand-partner .logo-imgs {
	display: flex;
	justify-content: center;
	align-items: center;
}
/*------------------------------------------------------------------
Brand Section / .brand-partner :: Ends
*/


/*------------------------------------------------------------------
6. How it works Section / .how-it-works :: Starts
*/
.how-it-works {
	margin-top: 200px;
}

.how-it-works .working-content {
	margin-top: 190px;
	background-color: #FFF0E9;
	border-radius: 25px;
	padding-top: 65px;
	position: relative;


}

.how-it-works .work-vector img.vector-1 {
	position: absolute;
	top: -13%;
	right: -10%;
}

.how-it-works .work-vector img.vector-2 {
	position: absolute;
	top: 66%;
	left: -8%;
}

.how-it-works .work-card {
	padding-bottom: 80px;

}

.how-it-works .work-card .work-img {
	width: 70px;
	height: 70px;
	background-color: #fff;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.how-it-works h6 {
	font-size: 1em;
	font-weight: 700;
	margin-bottom: 0;
}

.how-it-works p {
	font-size: 0.7em;
	font-weight: 400;
	color: rgba(31, 31, 57, 0.5);
	line-height: 18px;
}

.how-it-works .work-card.in-touch,
.how-it-works .work-card.review {
	text-align: right;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: end;
	gap: 12px;
	padding: 0px 75px 70px 130px;
}

.how-it-works .work-card.setup,
.how-it-works .work-card.demo {
	text-align: left;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: start;
	gap: 12px;
	padding: 0px 60px 70px 100px;

}

.how-it-works .work-center {
	width: 430px;
	height: 430px;
	background-color: rgba(255, 255, 255, 0.5);
	border-radius: 50%;
	margin-left: -30px;

}

.how-it-works .work-center-img {
	position: absolute;
	top: -14%;
	left: 50%;
	transform: translateX(-50%);
}

.how-it-works .how-footer {
	text-align: center;
	margin-top: 25px;
	border-bottom: 1px solid rgba(31, 31, 57, 0.1);
	padding-bottom: 20px;
}

.how-it-works .how-footer h6 {
	margin-bottom: 10px;
}

.how-it-works .work-card.setup .steps-para,
.how-it-works .work-card.demo .steps-para {
	padding-right: 10px;
}
/*------------------------------------------------------------------
How it works Section / .how-it-works :: Ends
*/

/*------------------------------------------------------------------
7. Features Section / .features :: Starts
*/
.features {
	margin-top: 200px;
	position: relative;
}

.features .section-subtitle {
	margin-top: 17px;
}

.features .feature-content {
	margin-top: 60px;

}

.features .feature-content .feature-info {
	padding: 0px 80px;
}

.features .title-top {
	margin-top: 50px;
}

.features .feature-content .section-title {
	text-align: left;
}

.features .feature-content .section-subtitle {
	text-align: left;
}

.features .feature-content .feature-img {
	display: flex;
	justify-content: center;
}

.features .feature-content ul {
	margin-top: 50px;
	list-style: none;


}

.features .feature-content ul li {
	position: relative;
	margin-bottom: 20px;
}

.features .feature-content ul li::before {
	content: '';
	background-image: url('../images/Ellipse\ 13.png');
	height: 10px;
	width: 10px;
	display: block;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}

.features .feature-content ul li span {
	color: #000000;
	font-weight: 700;

}

.features .app-download {
	
	gap: 35px;
	margin-top: 40px;
}

.features .feature-vectors img.feature-vector-1 {
	position: absolute;
	top: 19%;
	left: 30%;
	z-index: -1;
}

.features .feature-vectors img.feature-vector-2 {
	position: absolute;
	top: 45%;
	left: -5%;
}

.features .feature-vectors img.feature-vector-3 {
	position: absolute;
	bottom: 8%;
	right: 1%;
	z-index: -1;
}

.features .feature-vectors img.feature-vector-4 {
	position: absolute;
	right: 45%;
	bottom: 5%;
}
/*------------------------------------------------------------------
Features Section / .features :: Ends
*/
.try-onir .try-onir-img img {
    width: 27rem;
    padding: 25px;
    border-radius: 43px;
}
/*------------------------------------------------------------------
8. Why Onir Section / .why-onir :: Starts
*/
.why-onir {
	margin-top: 250px;
}

.why-onir .why-onir-content {
	background-color: #FFF0E9;
	border-radius: 25px;
	padding: 90px 130px;
}

.why-onir .title-top {
	text-align: center;
}

.why-onir .why-cards {
	margin: 80px 0;
}

.why-onir .why-cards .why-card {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 10px
}

.why-onir .why-cards .why-img {
	width: 70px;
	height: 70px;
	background-color: #fff;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.why-onir .why-cards h6 {
	font-size: 1em;
	font-weight: 700;
	margin-bottom: 0;
	margin-top: 10px;
}

.why-onir .why-cards p {
	font-size: 0.7em;
	font-weight: 400;
	color: rgba(31, 31, 57, 0.5);
	line-height: 18px;
	text-align: center;
	padding: 0 55px;
}

.why-features-cards {
	position: relative;
	margin-top: -90px;
	margin-left: 55px;
}

.why-features-cards .why-feature {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	border: 2px solid #FFF0E9;
	border-radius: 20px;
	background-color: #fff;
	width: 270px;
	height: 200px;
	margin-left: 30px;
	padding-bottom: 30px;
}

.why-features-cards .why-feature img {
	margin-top: 40px;
}

.why-features-cards .why-feature h3 {
	font-size: 2em;
	font-weight: 700;
	margin-top: 30px;
	margin-bottom: 0;
}

.why-features-cards .why-feature h3 div {
	font-size: 1em;
	font-weight: 400;
	line-height: 28px;
}
/*------------------------------------------------------------------
Why Onir Section / .why-onir :: Ends
*/

/*------------------------------------------------------------------
9. Testimonial Section / .testimonial :: Starts
*/
.testimonial {
	margin-top: 250px;
	position: relative;
}

.testimonial .testimonial-vector img {
	position: absolute;
	bottom: 37%;
	left: 8%;
}

.testimonial .testimonial-reviews {
	text-align: center;
	z-index: 0;
}

.testimonial .testimonial-reviews .testimonial-items {
	max-width: 430px;
	margin: auto;
	overflow: hidden;
}

.testimonial .owl-carousel .owl-nav button.owl-next,
.testimonial .owl-carousel .owl-nav button.owl-prev,
.testimonial .owl-carousel button.owl-dot {
	width: 16px;
	height: 16px;
	background-color: rgba(31, 31, 57, 0.1);
	border-radius: 50%;
	margin-right: 5px;
}

.testimonial .owl-carousel button.owl-dot.active {
	background-color: #0E7DFF;
}

.testimonial .testimonial-reviews .review {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;

}

.testimonial .testimonial-reviews .review img {
	width: auto;
    border-radius: 50%;
}

.testimonial .testimonial-reviews .review p {
	padding-top: 60px;
	padding-bottom: 30px;
	line-height: 28px;
	color: rgba(31, 31, 57, 0.5);
	margin-bottom: 0;
}

.testimonial .testimonial-reviews .review h6 {
	font-weight: 700;
	color: #000000;
	text-align: center;
	line-height: 20px;
	font-size: 20px;
}

.testimonial .testimonial-reviews .review h6 span {
	font-weight: 400;
	display: block;
	font-size: 15px;
	line-height: 20px;
}

.testimonial .testimonial-reviews .review::before {
	content: "";
	width: 100%;
	height: 100%;
	background: no-repeat url('../images/testimonials/testimonial-icon.png');
	position: absolute;
	top: 7%;
	left: 53.5%;
	display: block;
}

.testimonial .testimonial-circles {
	max-width: 1388px;
	width: 100%;
	height: 1388px;
	border: 2px solid rgba(255, 240, 233, 0.8);
	border-radius: 50%;
	margin: 190px auto;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.testimonial .testimonial-circles:before,
.testimonial .testimonial-circles:after {
	z-index: -1;
	content: '';
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: calc(100% - 380px);
	height: calc(100% - 380px);
	border: 2px solid rgba(255, 240, 233, 0.6);
	border-radius: 50%;
}

.testimonial .testimonial-circles:after {
	width: calc(100% - (350px * 2));
	height: calc(100% - (350px * 2));
	border: 2px solid rgba(255, 240, 233, 0.5);

	background: url('../images/circle-shadow.png') center;
	background-size: 110%;

}

.testimonial .testimonial-circles .testimonial-imgs img {
	position: absolute;
	border-radius: 50%;
	box-shadow: 5px 25px 15px #e9e9e9;

}

.testimonial .testimonial-circles .testimonial-imgs img.testimonial-2 {
	top: 16%;
	right: 66%;
}

.testimonial .testimonial-circles .testimonial-imgs img.testimonial-3 {
	top: 27%;
	right: 93%;
}

.testimonial .testimonial-circles .testimonial-imgs img.testimonial-4 {
	bottom: 29%;
	right: 78%;
}

.testimonial .testimonial-circles .testimonial-imgs img.testimonial-5 {
	top: 21%;
	right: 4%;
}

.testimonial .testimonial-circles .testimonial-imgs img.testimonial-6 {
	top: 57%;
	right: 11%;
}

.testimonial .testimonial-circles .testimonial-imgs img.testimonial-7 {
	bottom: 5%;
	right: 21%;
}
/*------------------------------------------------------------------
Testimonial Section / .testimonial :: Ends
*/

/*------------------------------------------------------------------
10. Onir Plans Section / .onir-plans :: Starts
*/
.onir-plans {
	margin-top: 200px;
	background: linear-gradient(180deg, #fff 67%, rgba(255, 240, 233, 0.5) 40%);
	position: relative;
}

.onir-plans .plan-vectors img.vector-1 {
	position: absolute;
	top: 23%;
	left: -10%;
}

.onir-plans .plan-vectors img.vector-2 {
	position: absolute;
	top: 0;
	right: 0
}

.onir-plans .section-subtitle {
	margin-bottom: 100px;
}

.onir-plans .plan-cards {
	display: flex;
	gap: 60px;
	;
}

.onir-plans .plan-card {
	background-color: #FFF0E9;
	padding: 60px 30px;
	border-radius: 20px;
	width: 340px;
	cursor: pointer;
	transition: 0.3s all
}

.onir-plans .plan-card .popularity {
	font-size: 10px;
	font-weight: 700;
	color: #000000;
	padding: 6px 16px;
	background-color: #D9EEFF;
	border-radius: 15px;
	float: right;
	margin-top: -45px;
	min-width: 67px;
	line-height: 12px;

}

.onir-plans .plan-card:hover,
.onir-plans .plan-card.active {
	background-color: #0E7DFF;
	color: #fff
}

.onir-plans .plan-card .plan-name {
	text-align: center;
	font-size: 1em;
	font-weight: 700;
	color: #000000;
}

.onir-plans .plan-card:hover .plan-name,
.onir-plans .plan-card.active .plan-name {
	color: #fff
}

.onir-plans .plan-card span {
	font-size: 0.75em;
	color: rgba(31, 31, 57, 0.5);
	text-align: center;
	display: block;
	margin-bottom: 60px;
}

.onir-plans .plan-card:hover span,
.onir-plans .plan-card.active span {
	color: #fff
}

.onir-plans .plan-card .plan-amount h3 {
	font-size: 2.5em;
	font-weight: 700;
	text-align: center;
	line-height: 35px;
}

.onir-plans .plan-card .plan-amount span {
	padding-left: 50px;
	font-size: 15px;
	color: rgba(31, 31, 57, 0.5);

}

.onir-plans .plan-card.active .plan-amount span,
.onir-plans .plan-card:hover .plan-amount span {
	color: rgba(255, 255, 255, 0.5)
}

.onir-plans .plan-card button {
	text-align: center;
	width: 100%;
	background-color: #fff;
	padding: 0 20px;
	line-height: 73px;
	border: none;
	border-radius: 20px;
	font-size: 20px;
	color: #000000;
	font-weight: 700;
	margin-bottom: 60px;
}

.onir-plans .plan-card:hover button,
.onir-plans .plan-card.active button {
	background-color: #FFF0E9;

}

.onir-plans .plan-card ul {
	list-style: none;


}

.onir-plans .plan-card ul li {
	font-size: 0.75em;
	line-height: 40px;
	padding-left: 10px;
}

.fa-check-circle:before,
.fa-circle-check:before {
	content: "\f058";
	color: #0E7DFF;
	font-size: 10px;
	padding-right: 13px;
}

.onir-plans .plan-card:hover .fa-circle-check:before,
.onir-plans .plan-card.active .fa-circle-check:before {
	color: #fff
}

.onir-plans .plan-tenure {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 70px;
	gap: 10px;
}

.onir-plans .plan-tenure>span {
	font-size: 0.750em;
	font-weight: 700;
	color: #00000080;
}

.onir-plans .plan-tenure>span.active {
	color: #000000;
}

.onir-plans .switch {
	position: relative;
	display: inline-block;
	width: 60px;
	height: 34px;
}

.onir-plans .switch input {
	opacity: 0;
	width: 0;
	height: 0;
}

.onir-plans .slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(31, 31, 57, 0.07);
	-webkit-transition: .4s;
	transition: .4s;
}

.onir-plans .slider:before {
	position: absolute;
	content: "";
	height: 26px;
	width: 26px;
	left: 4px;
	bottom: 4px;
	background-color: #0E7DFF;
	-webkit-transition: .4s;
	transition: .4s;
}

.onir-plans input:checked+.slider {
	background-color: rgba(31, 31, 57, 0.07);
}

.onir-plans input:checked+.slider:before {
	-webkit-transform: translateX(26px);
	-ms-transform: translateX(26px);
	transform: translateX(26px);
}


.onir-plans .slider.round {
	border-radius: 34px;
}

.onir-plans .slider.round:before {
	border-radius: 50%;
}
/*------------------------------------------------------------------
Onir Plans Section / .onir-plans :: Ends
*/

/*------------------------------------------------------------------
11. Onir Stories Section / .onir-stories :: Starts
*/
.onir-stories {
	padding-top: 250px;
	background-color: rgba(255, 240, 233, 0.5);
	position: relative;
}

.onir-stories .story-vector img {
	position: absolute;
	top: 30%;
	left: -5%;
}

.onir-stories .stories-card {
	display: flex;
	justify-content: space-between;
	padding: 0px 30px;
	margin-top: 100px;
}

.onir-stories .stories-card .story-card {
	position: relative;

}

.onir-stories .stories-card .story-card img {
	border-radius: 20px;
}

.onir-stories .stories-card .story-card .story-time {
	position: absolute;
	top: 20px;
	font-size: 14px;
	right: 25px;
	color: rgba(31, 31, 57, 0.5)
}


.onir-stories .stories-card .story-card .story-content {
	background-color: #fff;
	border-radius: 20px;
	padding: 20px 40px;
	width: 295px;
	text-align: center;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: 6%;
}

.onir-stories .stories-card .story-card .story-content h4 {
	font-size: 1em;
	color: #000000;
	font-weight: 700;
	margin-top: 5px;
	margin-bottom: 10px;
}

.onir-stories .stories-card .story-card .story-content p {
	font-size: 0.7em;
	color: rgba(31, 31, 57, 0.5);
}

.onir-stories .stories-card .story-card .story-content a {
	color: #0E7DFF;
	font-size: 0.7em;
	font-weight: 700;
	text-decoration: none;
	transition: 0.3s all;
}

.onir-stories .stories-card .story-card .story-content a:hover {
	color: #005fcf;
	text-decoration: underline;
}
/*------------------------------------------------------------------
Onir Stories Section / .onir-stories :: Ends
*/

/*------------------------------------------------------------------
12. FAQs Section / .faq :: Starts
*/
.faq {
	padding-top: 150px;
	background-color: rgba(255, 240, 233, 0.5);

}

.faq-content-wrap {
	padding: 0 100px;
}

.faq .section-title {
	margin-bottom: 100px;
}

.faq .qa-content {
	display: flex;
	justify-content: space-between;
	gap: 170px;
	padding: 30px 0 25px;
	border-bottom: 1px solid rgba(31, 31, 57, 0.1);
}

.faq .qa-content .question {
	width: 375px;
	font-size: 1em;
	color: #000000;
	font-weight: 700;

}

.faq .qa-content .answer {
	max-width: 365px;
	font-size: 0.7em;
	color: rgba(31, 31, 57, 0.5);
	line-height: 18px;
	position: relative;
	padding-right: 40px;

}

.faq .qa-content .answer::before {
	content: '';
	background: no-repeat url(../images/ans-vector.png);
	position: absolute;
	top: 4px;
	left: -70px;
	width: 37px;
	height: 20px;
	display: block;
}

.faq .qa-content:last-child {
	border-bottom: none;
}
/*------------------------------------------------------------------
FAQs Section / .faq :: Ends
*/

/*------------------------------------------------------------------
13. Try Onir Section / .try-onir :: Starts
*/
.try-onir {
	position: relative;
	background: linear-gradient(180deg, rgba(255, 240, 233, 0.5) 77%, #000000 20%);
}

.try-onir .try-vectors img.vector-1 {
	position: absolute;
	top: -30%;
	right: -4%;
}

.try-onir .try-vectors img.vector-2 {
	position: absolute;
	top: -3%;
	left: 9%;
}

.try-onir .try-vectors img.vector-3 {
	position: absolute;
	top: 40%;
	left: -17%;
}

.try-onir .try-vectors img.vector-4 {
	position: absolute;
	top: 60%;
	right: -3%;
}

.try-onir .try-content {
	background-color: #ffffff;
	padding: 90px 90px 100px 100px;
	border-radius: 25px;
}

.try-onir .try-content .section-title {
	text-align: left;
}

.try-onir .try-content .section-subtitle {
	margin-top: 15px;
	margin-bottom: 60px;
	text-align: left;
}

.try-onir .try-content .app-download {
	justify-content: space-between;
	width: 94%;
}

.try-onir .try-onir-img {
	position: absolute;
	top: -17%;
	right: 12%
}
/*------------------------------------------------------------------
Try Onir Section / .try-onir :: Ends
*/

/*------------------------------------------------------------------
14. Subscribe Section / .subscribe :: Starts
*/
.subscribe-input {
	padding-top: 70px;
	background-color: #000000;
	text-align: center;
	position: relative;
}

.subscribe-input .bottom-vector img {
	position: absolute;
	top: 10%;
	left: 17%;
}

.subscribe-input .section-title {
	color: #fff;
}

.subscribe-input .section-subtitle {
	color: rgba(255, 255, 255, 0.5);
	margin-bottom: 50px;
}

.subscribe-input .input-container {
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	

}

.subscribe-input .input-container input {
	border: 2px solid rgba(255, 255, 255, 0.2);
	border-radius: 20px;
	width: 430px;
	background-color: transparent;
	padding: 25px 30px;
	color: rgba(255, 255, 255, 0.5);

}

.subscribe-input .input-container button {
	width: 215px;
	background-color: #FFF0E9;
	border-radius: 20px;
	border: none;
	padding: 25px 75px;
	color: #000000;
	font-weight: 700;
	margin-left: 48px;
	transition: 0.3s all;
}

.subscribe-input .input-container button:hover {
	transform: scale(1.05);
}
/*------------------------------------------------------------------
Subscribe Section / .subscribe :: Ends
*/


/*------------------------------------------------------------------
15. Footer Section / .footer :: Starts
*/
.footer {
	padding-top: 100PX;
    background-color: #000000;
    color: #fff;
    padding-bottom: 100PX;
}

.footer .footer-start {
	color: rgba(255, 255, 255, 0.5);
	font-size: 1em;

}

.footer .footer-start img {
	margin-bottom: 20px;
}

.footer .footer-start div {
	margin-bottom: 14px;
}

.footer .footer-start div a {
	color: rgba(255, 255, 255, 0.5);
	text-decoration: none;
}

.footer .footer-start div a:hover {
	color: #fff;
}

.footer h5 {
	margin-bottom: 25px;
}

.footer ul li {
	list-style: none;
	line-height: 44px;

}

.footer ul li a {
	text-decoration: none;
	color: rgba(255, 255, 255, 0.5);
	transition: 0.3s all;
}

.footer ul li a:hover {
	color: #fff;
}


.footer .footer-socials h6 {
	margin: 24px 0;
	font-size: 0.75em;

}

.footer .footer-socials .social-icon {
	display: flex;
	align-items: center;
	gap: 20px;
	font-size: 27px;
}

.footer .footer-socials .social-icon a i {
	color: #fff;
}

.footer .footer-socials .social-icon a i:hover {
	color: #0E7DFF;
}

.footer .footer-socials .app-download {
	flex-direction: column;
	justify-content: flex-start;
	gap: 25px
}

.footer .footer-socials .app-download div {
	background-color: #fff;
	height: 57px;
	width: 170px;
	border-radius: 15px;
	padding: 0 30px;
}


.footer .footer-socials .app-download div a img {
	width: 18%;
}

.footer .footer-socials .app-download div.ios-download a img {
	width: 24%;
}


.footer .footer-socials .app-download div a span {
	font-size: 0.75em;
	font-weight: 700;
	margin-left: 0;
}
/*------------------------------------------------------------------
Footer Section / .footer :: Ends
*/

/*------------------------------------------------------------------
16. Homepage 2 / .homepage-2 :: Starts
*/
.homepage-2 .banner-section {
	padding-top: 200px;
	background: linear-gradient(180deg, #fff0e9 90%, #fff 10%);
}

.homepage-2 .banner-section h1 {
	text-align: left;
	line-height: 100px;

}

.homepage-2 .banner-section h1 span {
	font-size: 20px;
	font-weight: 400;
	line-height: 28px;
}

.homepage-2 .banner-section .banner-img {
	text-align: right;
}

.homepage-2 .banner-section .banner-buttons {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	margin-top: 60px;
	gap: 40px
}

.homepage-2 .banner-section .banner-buttons a {
	text-decoration: none;
	display: flex;
	justify-content: center;
}

.homepage-2 .banner-section .banner-buttons .get-started {
	font-size: 30px;
	font-weight: 700;
	max-width: 280px;
	width: 100%;
	border: 2px solid #000;
	border-radius: 20px;
	padding: 23px 44px;
	transition: 0.3s all;
}

.homepage-2 .banner-section .banner-buttons .get-started:hover {
	transform: scale(1.05);
}

.homepage-2 .banner-section .banner-buttons .watch-now .btn-container {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 15px;
	font-size: 16px;
}

.homepage-2 .banner-section .banner-buttons .watch-now:hover img {
	transform: scale(1.05);
}

/*brand section*/
.homepage-2 .brand-partner {
	margin-top: 80px;
}

/*how-it-works*/
.homepage-2 .how-it-works .working-content {
	background-color: #fff;
}

.homepage-2 .how-it-works .working-content .work-center {
	background-color: #FFF0E9;

}

.homepage-2 .features {
	background-color: #FFF0E980;
	padding-top: 150px;
	padding-bottom: 350px;
}

.homepage-2 .why-onir .why-onir-content {
	background-color: #fff;
	margin-top: -400px;
}
/*------------------------------------------------------------------
Homepage 2 / .homepage-2 :: Ends
*/

/*------------------------------------------------------------------
17. Homepage 3 / .hp-3 :: Starts
*/
 {
	background-color: #fff;
	padding-top: 150PX;
	text-align: center;
	position: relative;
}

 .banner-vectors img.vector-1 {
	position: absolute;
	top: 40%;
	right: -30%
}

 .banner-vectors img.vector-2 {
	position: absolute;
	top: 25%;
	right: -12%;
}

 .banner-vectors img.vector-3 {
	position: absolute;
	top: 7%;
	right: -20%;
}

 .banner-vectors img.vector-4 {
	position: absolute;
	top: 20%;
	left: -5%;
}

 .banner-vectors img.vector-5 {
	position: absolute;
	top: 35%;
	left: -23%;
}

 .banner-vectors img.vector-6 {
	position: absolute;
	top: 5%;
	left: -30%;
}

 .banner-vectors img.vector-7 {
	position: absolute;
	top: 53%;
	left: -4%;
}

::before {
	
}

 .watch-now .btn-container {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 15px;
	margin: 50px 0;
	font-size: 16px;
}

 a {
	text-decoration: none;
	display: flex;
	justify-content: center;
}

 .banner-image img {
	border-radius: 45px;
	position: relative;
	z-index: 2;
}


.hp-3 .how-it-works .working-content {
	margin-top: 100px;
	padding-top: 0px;
	display: flex;
	gap: 30px;
	background-color: #fff;
	justify-content: center;
	text-align: center;
}

.hp-3 .how-it-works .working-content .work-card {
	border: 2px solid #FFF0E9;
	border-radius: 20px;
	padding: 50px 25px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

.hp-3 .how-it-works .working-content .center.active .work-card,
.hp-3 .how-it-works .working-content .work-card:hover {
	box-shadow: 0px 21px 24px 0px rgba(255, 240, 233, 0.5);

}

.hp-3 .how-it-works .working-content .work-card .work-steps {
	padding-bottom: 10px;
}

.hp-3 .features .feature-content .feature-img {
	position: relative;
}

.hp-3 .features .feature-content .feature-img::before {
	content: '';
	width: 430px;
	height: 430px;
	background-color: #FFF0E9;
	border-radius: 50%;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: -1;
}

.hp-3 .mobile-ss {
	position: relative;
	height: 1200px;
	/* margin-bottom: 400px; */
}

.hp-3 .mobile-ss .container-fluid {
	padding: 0px;
}

.hp-3 .mobile-ss::before {
	content: '';
	background-color: #FFF0E9;
	position: absolute;
	width: 1110px;
	height: 1110px;
	border-radius: 50%;
	top: 0%;
	left: 50%;
	transform: translateX(-50%);
}

.hp-3 .screenshot img {
}

.hp-3 .onir-plans {
	background: #fff;
}

.hp-3 .faq {
	background-color: #fff;
}

.hp-3 .try-onir {
	background: linear-gradient(180deg, #fff 77%, #000000 20%);
}
/*------------------------------------------------------------------
Homepage 3 :: Ends
*/

/*------------------------------------------------------------------
18. About Page :: Starts
*/
.about-banner {
	margin-bottom: 150px;
}

.about-banner .about-top .top-img {
	display: flex;
	position: relative;
	justify-content: flex-end;
}

.about-banner .about-top .top-img img.top-1 {
	position: absolute;
	width: 50%;
	right: calc(470px + 70px);
	bottom: 0;
	border-radius: 20px;
}

.about-banner .about-top .top-img img.top-2 {
	margin-top: -90px;
	width: 470px;
	border-radius: 20px;
}


.about-banner .about-info {
	margin-left: 70px;
	margin-right: -130px;
	margin-top: -63px;
}

.about-banner .about-info .section-subtitle {
	text-align: left;
}

.about-banner .about-info .section-title {
	text-align: left;
}

.about-banner .about-images {
	margin-top: 70px;
}

.about-banner .about-images .bottom-img img.top-3 {
	margin-left: -50px;
	border-radius: 20px;
	position: relative;
	width: 100%;
}


.about-banner .about-images .bottom-img img.top-4 {
	border-radius: 20px;
}

.about-banner .about-info-mobile {
	display: none;
}


.about-mission {
	margin-bottom: 250px;
	padding-left: 25px;
}

.about-mission .section-title {
	text-align: left;
}

.about-mission .section-subtitle {
	text-align: left;
	padding-right: 110px;
	padding-top: 25px;
}

.about-focus {
	margin-top: 100px;
}

.about-focus .focus {
	background-color: #fdc6031c;
	border-radius: 20px;
	padding: 70px 100px;
	padding-bottom: 190px;


}

.about-focus .focus .title-top {
	text-align: center;
}

.about-focus .focus-cards {
	display: flex;
	gap: 78px;
	margin-top: 75px;
}

.about-focus .focus-cards .focus-card {
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #fff;
	border: 2px solid #FFF0E9;
	border-radius: 20px;
	flex-direction: column;
	padding: 40px 30px 18px;
}

.about-focus .focus-cards .focus-card i {
	color: #0E7DFF;
	font-size: 20px;
	padding-bottom: 20px;
}

.about-focus .focus-cards .focus-card h5 {
	font-size: 20px;
	color: #000000;
	margin-bottom: 9px;
	font-weight: 700;
}

.about-focus .focus-cards .focus-card p {
	font-size: 14px;
	color: rgba(31, 31, 57, 0.5);
	text-align: center;
}

.about-focus .focus-cards.row-2 {
	padding: 0 100px;
	margin-top: -120px;
}

.about-para {
	margin-bottom: 250px;
}

.about-para img {
	border-radius: 20px;
	margin-left: 25px;
}

.about-para .para-content {
	position: relative;
	left: 30%;
	margin-top: 50px;
}

.about-para .section-title {
	/* margin-left: 80px; */
	text-align: left;

}

.about-para .section-subtitle {
	/* margin-left: 80px; */
	text-align: left;
}

.our-work {
	margin-bottom: 200px;
}

.our-work .work-content {
	padding-left: 20px;
	margin-right: -20px;
	margin-bottom: 60px;
}

.our-work .work-content .section-title {
	text-align: left;
}

.our-work .work-content .section-subtitle {
	text-align: left;
}

.our-work .work-image {
	padding-left: 20px;
}

.our-work .work-image img {
	border-radius: 20px;
}


.our-work .work-img-sec {
	margin-left: 50px;
	margin-top: 75px;
}

.our-work .work-img-sec img {
	border-radius: 20px;
}

.work-content-mobile {
	display: none;
}

.our-team {
	margin-bottom: 200px;
}

.our-team .team-row {
	display: flex;
	gap: 90px;
	justify-content: center;
	margin-top: 90px;
}

.our-team .team-row .team-card {
	display: flex;
	justify-content: center;
	flex-direction: column;
	align-items: center;

}

.our-team .team-row .team-card img {
	border-radius: 50%;
}

.our-team .team-row .team-card h6 {
	font-size: 20px;
	font-weight: 700;
	margin-top: 25px;
	color: #000000;
	margin-bottom: 10px;
}

.our-team .team-row .team-card span {
	font-size: 14px;
	color: rgba(31, 31, 57, 0.5);
}

.our-team .team-row .team-card .social {
	display: flex;
	justify-content: center;
	align-items: center;
	color: rgba(31, 31, 57, 0.5);
	gap: 14px;
	margin-top: 30px;
}

.our-team .team-row .team-card .social i:hover {
	color: #0E7DFF
}

.ask-question {
	text-align: center;
}

.ask-question button {
	width: 345px;
	padding: 27px 44px;
	background-color: #0E7DFF;
	font-size: 30px;
	font-weight: 700;
	color: #fff;
	border: none;
	border-radius: 20px;
	margin-top: 65px;
}

.ask-question button:active,
.ask-question button:focus,
.ask-question button:hover {
	box-shadow: none;
	background-color: #0E7DFF;
}

.about .try-onir {
	background: linear-gradient(180deg, #fff 77%, #000000 20%);
}
/*------------------------------------------------------------------
About Page :: Ends
*/

/*------------------------------------------------------------------
19. Contact Page :: Starts
*/
.form-box {
	border: 1px solid #FFF0E9;
	border-radius: 25px;
	padding: 54px 36px;
	margin-top: -90px;
	background-color: #fff;
}

.form-box>p {
	margin-bottom: 45px;
	color: #000000
}

.form-box .contant-info {
	padding: 30px 70px;
	border: 1px solid #FFF0E9;
	border-radius: 20px;
	width: 320px;
	height: 160px;
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-bottom: 70px;
}

.form-box .contant-info i {
	color: #0E7DFF;

}

.form-box .contant-info p {
	font-size: 20px;
	font-weight: 700;
	text-align: center;
	line-height: 28px;
	margin-top: 20px;
	color: #000000;
}

.form-box .contant-info p a {
	text-decoration: none;
}

.form-box .input-container {
	margin-bottom: 50px;
}

.form-box .input-container input,
.form-box .input-container select {
	width: 515px;
	height: 90px;
	background-color: rgba(255, 240, 233, 0.7);
	border: none;
	border-radius: 20px;
	padding: 25px 33px;
	color: rgba(31, 31, 57, 0.5);
	font-size: 20px;
}

.form-box .input-container textarea {
	background-color: rgba(255, 240, 233, 0.7);
	border: none;
	border-radius: 20px;
	padding: 25px 33px;
	color: rgba(31, 31, 57, 0.5);
	font-size: 20px;
}

.form-box .input-container input:focus,
.form-box .input-container input:active {
	outline: 2px solid #0E7DFF;
	color: #0E7DFF;
	box-shadow: none;
}

.form-box .input-container select:focus,
.form-box .input-container select:active {
	outline: 2px solid #0E7DFF;
	color: #0E7DFF;
	box-shadow: none;
}

.form-box .input-container textarea:focus,
.form-box .input-container textarea:active {
	outline: 2px solid #0E7DFF;
	color: #0E7DFF;
	box-shadow: none;
}

.form-select {
	background-size: 40px 20px;
	background-position: right 1.75rem center;
}

.form-box .form-box-bottom {
	font-size: 14px;
	color: rgba(31, 31, 57, 0.5);
	margin-bottom: 50px;
}

.form-box button {
	width: 345px;
	padding: 27px 44px;
	background-color: #0E7DFF;
	font-size: 30px;
	font-weight: 700;
	color: #fff;
	border: none;
	border-radius: 20px;
}

.form-box button:active,
.form-box button:focus,
.form-box button:hover {
	box-shadow: none;
	background-color: #0E7DFF;
}

.office {
	margin-top: 180px;
	margin-bottom: 50px;
}

.office .office-content-mobile {
	display: none;
}

.office .office-content-sec {
	padding-left: 30px;
}

.office .office-content-sec .section-title {
	text-align: left;
}

.office .office-content-sec .section-subtitle {
	text-align: left;
}


.office .office-img img {
	margin-top: 135px;
	border-radius: 20px;
	margin-left: 30px;
}

.office .office-images-sec img {
	margin-top: 65px;
	margin-left: 45px;
	border-radius: 20px;


}

.map .map-address {
	padding-left: 35px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	height: 100%;
}

.map .map-address h6 {
	font-size: 20px;
	font-weight: 700;
	color: #000000;
}

.map .map-img {
	margin-left: 60px;
}

.contact-sec .try-onir {
	background: linear-gradient(180deg, #fff 77%, #000000 20%);
}
/*------------------------------------------------------------------
Contact Page :: Ends
*/

/*------------------------------------------------------------------
20. Blog Page / .blogs :: Starts
*/
.blog-features {
	margin-bottom: 150px;
	margin-top: -70px;
}

.blog-features .blog-feature-img {
	padding-left: 18px;
}

.blog-features .blog-feature-img img {
	border-radius: 20px;
}

.blog-features .section-title {
	text-align: left;
	padding-left: 100px;
}

.blog-features .section-subtitle {
	text-align: left;
	padding-left: 100px;
}

.blog-features a {
	color: #0E7DFF;
	text-decoration: none;
	font-size: 14px;
	font-weight: 700;
	padding-left: 100px;
	margin-top: 20px;
}

.blog-features .blog-by {
	padding-left: 100px;
	padding-top: 40px;
	display: flex;
	gap: 18px;
	color: #000000;
}

.blog-features .blog-by .blog-writer-img img {
	border-radius: 20px;
}

.blog-features .blog-by .blog-writer-name h6 {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 5px;
}

.blog-features .blog-by .blog-writer-name span {
	font-size: 18px;
	font-weight: 400;
	color: rgba(31, 31, 57, 0.5);
}

.onir-blogs .blog-cards {
	margin-top: 100px;
	padding: 0 18px;
}

.onir-blogs .blog-cards .blog-card {
	transition: 0.3s all;
	margin-bottom: 100px;
	cursor: pointer;
}

.onir-blogs .blog-cards .blog-card .blog-img {
	border-radius: 20px;
	overflow: hidden;
}

.onir-blogs .blog-cards .blog-card .blog-img img {
	transition: 0.3s all;
	width: 100%;
	display: block;
}

.onir-blogs .blog-cards .blog-card:hover .blog-img img {
	transform: scale(1.1);
}

.onir-blogs .blog-cards .blog-card .blog-content {
	margin-top: 40px;
}

.onir-blogs .blog-cards .blog-card .blog-content .blog-time {
	font-size: 18px;
	font-weight: 400;
	color: rgba(31, 31, 57, 0.5);
	margin-bottom: 10px;
}

.onir-blogs .blog-cards .blog-card .blog-content .blog-name {
	color: #000000;
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 10px;

}

.onir-blogs .blog-cards .blog-card:hover .blog-content .blog-name {
	color: #005fcf;
}

.onir-blogs .blog-cards .blog-card .blog-content .blog-info {
	font-size: 18px;
	font-weight: 400;
	color: rgba(31, 31, 57, 0.5);
}

.onir-blogs .blog-cards .blog-card .blog-content a {
	color: #0E7DFF;
	text-decoration: none;
	font-size: 14px;
	font-weight: 700;
	margin-top: 20px;
}

.onir-blogs .previous-post-btn {
	text-align: center;
}

.onir-blogs .previous-post-btn button {
	background-color: #FFF0E9;
	border: none;
	border-radius: 20px;
	font-size: 20px;
	font-weight: 700;
	color: #000000;
	padding: 0 20px;
	line-height: 80px;
	transition: 0.5s all;
	min-width: 300px;
}

.onir-blogs .previous-post-btn button:hover {
	transform: translateY(-10px);
	background-color: #f9e0d4;
}

.blogs .try-onir {
	background: linear-gradient(180deg, #fff 77%, #000000 20%);
}
/*------------------------------------------------------------------
Blog Page / .blogs :: Ends
*/

/*------------------------------------------------------------------
21. Blog Details / .blog-details :: Starts
*/
.blog-details .page-head div {

	font-size: 20px;
	font-weight: 700;
}

.blog-details .page-head div a {
	color: #0E7DFF;
	text-decoration: none;
}

.blog-details .page-head div.blog-writer {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20px;
	margin-top: 30px;
}

.blog-details .page-head div.blog-writer img {
	border-radius: 20px;
}

.blog-details .page-head div.blog-writer .name {
	color: #000000
}

.blog-banner {
	margin-bottom: 250px;
}

.blog-banner .top-img-mobile {
	display: none;
}

.blog-banner .top-img {
	margin-top: -100px;
	padding: 0 25px;

}

.blog-banner .top-img img {
	border-radius: 20px;
	margin-bottom: 100px;
}

.blog-banner p {
	padding: 0 25px;
	font-size: 20px;
	line-height: 28px;
	color: rgba(31, 31, 57, 0.5);
	padding-bottom: 50px;
}

.blog-banner .middle-imgs {
	padding: 0 25px;
}

.blog-banner .middle-imgs img {
	border-radius: 20px;
	margin-bottom: 100px;
}

.blog-banner .middle-imgs img:first-child {
	margin-right: 15px;
}

.blog-banner .blog-slogan {
	position: relative;
	margin-bottom: 100px;
	max-width: 85%;
	margin: auto;
}

.blog-banner .blog-slogan h3 {
	font-size: 50px;
	font-weight: 400;
	line-height: 70px;
	padding: 73px 84px;
	background-color: #FFF0E9;
	border-radius: 20px;
	text-align: center;
	margin-bottom: 25px;

}

.blog-banner .blog-slogan::before {
	content: '';
	position: absolute;
	top: -8%;
	left: 10%;
	display: block;
	width: 63px;
	height: 45px;
	background-image: url('../images/blog-vector.png');
}

.blog-banner .blog-slogan .slogan-by {
	font-size: 20PX;
	font-weight: 700;
	text-align: right;

}

.blog-banner .blog-slogan .slogan-by span {
	font-weight: 400;
}

.blog-banner .blog-banner-bottom {
	margin-top: 50px;
	text-align: center;
}

.blog-banner .blog-banner-bottom a {
	text-decoration: none;
	color: #0E7DFF
}

.leave-comment {
	margin-bottom: 250px;
}

.leave-comment p {
	margin-bottom: 100px;
}

.leave-comment .form-box {
	border: none;
	margin-top: 0;
	padding: 0px 30px;
}

.blog-comments .existing-comment {
	padding: 0 205px;
	display: flex;
	justify-content: center;
	gap: 70px;
	margin-bottom: 80px;
}

.blog-comments .existing-comment img {
	border-radius: 20px;
}

.blog-comments .existing-comment .comment-info div {
	font-size: 20px;
	color: #000000;
	font-weight: 700;
}

.blog-comments .existing-comment .comment-info span {
	font-size: 14px;
	color: rgba(31, 31, 57, 0.5)
}

.blog-comments .existing-comment p {
	font-size: 14px;
	color: rgba(31, 31, 57, 0.5)
}

.blog-details .onir-stories {
	background-color: #fff;
}

.blog-details .try-onir {
	background: linear-gradient(180deg, #fff 77%, #000000 20%);
}
/*------------------------------------------------------------------
Blog Details / .blog-details :: Ends
*/


/*------------------------------------------------------------------
22. Modals / .modal :: Starts
*/

/* Modal SM 570 */
.modal-sm .modal-dialog {
	max-width: 570px;
}

/* Modal MD 770 */
.modal-md .modal-dialog {
	max-width: 770px;
}

.modal-content {
	border-radius: 40px;
	background-color: #fff;
	
}

.modal-header {
	
	border: 0;
	position: relative;
}

.modal-header .modal-title {
	color: #191f2e;
	font-size: 2.4em;
	font-weight: bold;
}


.modal-header .btn-close {
	color: #000;
	background: url(../images/close-icon.png) no-repeat center;
	opacity: 1;
	width: 30px;
	height: 30px;
	position: absolute;
	right: 40px;
	
}

.modal-body {
	
}

.modal .form-container {
	color: #191f2e;
	/* text-align: center; */
}

.modal .input-container {
	margin-bottom: 20px;
}

.modal .input-container label {
	color: #000000;
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 8px;
	padding: 0 12px;
}



.modal .input-container label a {
	color: #0E7DFF;
	font-size: 0.8em;
	text-decoration: none;
}

.modal .form-container .btn {

	width: 100%;
	padding: 27px 44px;
	background-color: #0E7DFF;
	font-size: 30px;
	font-weight: 700;
	color: #fff;
	border: none;
	border-radius: 20px;
	margin: 50px auto;

}

.modal .form-check {
	display: flex;
	align-items: center;
	gap: 12px;
}

.modal .form-check .form-check-input {
	width: 21px;
	height: 21px;
	border: 1px solid #7c7e83;
	border-radius: 4px;
}

.modal .form-check .form-check-label {
	color: #000000;
	font-size: 0.8em;
}

.form-check-input:focus {
	box-shadow: none;
}

.another-way {
	color: #000000;
	margin-top: 60px;
	text-align: center;
	margin-bottom: 50px;
}

.modal .form-container .btn:focus,
.modal .form-container .btn:active,
.modal .form-container .btn:hover {
	box-shadow: none;
	color: #fff;
	background-color: #005fcf;
}


.another-way>div {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 24px;
	font-size: 24px;
	margin-top: 16px;
}

.another-way>div a:hover {
	color: #0E7DFF;
}

.modal .form-container>p {
	color: #000000;
	text-align: center;
}

.modal .form-container>p a {
	color: #0E7DFF;
	text-decoration: none;
}
/*------------------------------------------------------------------
Modals / .modal :: Ends
*/


.btn-check:active+.btn, .btn-check:checked+.btn, .btn.active, .btn.show, .btn:active {
    color: transparent;
    background-color: transparent;
    border-color: transparent;
}


.btn-check:hover+.btn, .btn-check:checked+.btn, .btn.hover, .btn.show, .btn:hover {
    color: transparent;
    background-color: transparent;
    border-color: transparent;
}


.maicolb:active {
	color: unset;
    background-color: unset;
    border-color: unset;
}


.maicolb:hover {
    color: unset;
    background-color: unset;
    border-color: unset;
}


#appForm {
    position: relative;
    width: 100%;
    height: auto
}

#appForm .card {
    max-width: 600px;
    margin: 0 auto;
    border: none!important;
    box-shadow: rgba(0,0,0,.16) 0 6px 12px 0,rgba(202,202,202,.26) 0 0 6px 0,rgba(202,202,202,.16) 0 -1px 4px 0
}

#appForm .card:not(.is--active) {
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    position: absolute;
    z-index: -1
}

#appForm .card.is--active {
    transition: 0.25s ease-in-out all;
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    z-index: 1
}

#appForm .card .card-title {
    font-size: 1.5em;
    text-align: center;
	color: #1a1a1a;
    margin: 15px auto;
    max-width: 80%;
    text-align: center
}

#appForm .card .card-text {
    text-align: center
}

#appForm .card .card-footer {
    background: none
}

#appForm .term-txt {
    font-size: .75em;
    text-align: justify
}

#appForm .btn-option {
    width: 100%;
    text-align: left;
    height: 70px;
    position: relative;
    padding-left: 0!important;
    padding-right: 0!important
}

#appForm .btn-option input[type=radio] {
    position: absolute;
    left: 0;
    opacity: 0
}

#appForm .btn-option input[type=radio]:checked+span {
    color: #fff;
    background: #000000
}

#appForm .btn-option input[type=radio]:checked+span:after {
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABoAAAAaCAYAAACpSkzOAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6NUM5N0Y0M0JFRDY2MTFFQUE0MzhDQkI1NzVGQTI0OTQiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6NUM5N0Y0M0NFRDY2MTFFQUE0MzhDQkI1NzVGQTI0OTQiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDo1Qzk3RjQzOUVENjYxMUVBQTQzOENCQjU3NUZBMjQ5NCIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDo1Qzk3RjQzQUVENjYxMUVBQTQzOENCQjU3NUZBMjQ5NCIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PjJlQ7EAAAFySURBVHjaYvz//z8DAaALxCFAbAvEGkAsDBV/C8Q3gPgwEK8B4st4TQFZhAPbAvGh/8QDkFo7XOZhE+QA4hlA/O8/6eAfVC8HIYsEgPjYf8oByAxBXBZxAvGJ/9QDILO4sFk0/T/1wUx0i2zJjBNi4swW2aJDVDB0PRCnAPF9LKkRbJEeFSyZB8TMUEenYZHXYwJmpSAGysB8IE4F4r9AzAzEvljUBINcsI9KPgHRy3Co2w9S8AyLxHcgXoVDDpclK/CofQZS9BOLRAnUAAkgvkjAEhaoo/CBn7gsmoBWWhzCYQkrEK8mIoh/4go6UPqvRis1NqJZwgbEa4iMy2eEEsMkIGZCCiJkS9aRkGj2g5L3ITxJNxeIlwIxGxD/gSZhEHsVEAeSkAUOEZthdwIxL7T430RGNtCDxcFhIhS/BuLnZFhyCLmss6dXoUqramLWgFZ8ICxExapcaFA0TpCxHTWbW4xkNCBFoOJvSGlAAgQYAAlqbSHS1OkbAAAAAElFTkSuQmCC) no-repeat center center
}

@media (max-width: 576px) {
    #appForm .btn-option span.small-text {
        font-size:0.9em!important
    }
}

@media (max-width: 576px) {
    #appForm .btn-option span.smaller-text {
        font-size:0.9em!important;
        padding-right: 15px!important
    }
}

#appForm .btn-option span .btn-option-text {
    display: block;
    height: 30px;
    margin-top: -8px
}

#appForm .btn-option span .btn-option-subtext {
    display: block;
    height: 20px;
    font-size: .65em;
    margin-top: -10px;
    color: #999
}

#appForm .btn-option input[type=radio]+span {
    float: left;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    line-height: 55px;
    cursor: pointer;
    font-size: 1.2em;
    color: #000;
    padding: 0 50px 0 70px;
    background: #fff;
    position: relative;
    transition: all ease 0.2s;
    text-align: left;
    box-shadow: 0 0 9px 1px rgba(0,0,0,.1);
    -webkit-box-shadow: 0 0 9px 1px rgba(0,0,0,.1)
}

@media (max-width: 576px) {
    #appForm .btn-option input[type=radio]+span.btn-option-text {
        font-weight:bold!important
    }
}

#appForm .btn-option input[type=radio]+span:hover {
    color: #fff;
    background: #000000
}

#appForm .btn-option input[type=radio]+span:hover:after {
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABoAAAAaCAYAAACpSkzOAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6NUM5N0Y0M0JFRDY2MTFFQUE0MzhDQkI1NzVGQTI0OTQiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6NUM5N0Y0M0NFRDY2MTFFQUE0MzhDQkI1NzVGQTI0OTQiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDo1Qzk3RjQzOUVENjYxMUVBQTQzOENCQjU3NUZBMjQ5NCIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDo1Qzk3RjQzQUVENjYxMUVBQTQzOENCQjU3NUZBMjQ5NCIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PjJlQ7EAAAFySURBVHjaYvz//z8DAaALxCFAbAvEGkAsDBV/C8Q3gPgwEK8B4st4TQFZhAPbAvGh/8QDkFo7XOZhE+QA4hlA/O8/6eAfVC8HIYsEgPjYf8oByAxBXBZxAvGJ/9QDILO4sFk0/T/1wUx0i2zJjBNi4swW2aJDVDB0PRCnAPF9LKkRbJEeFSyZB8TMUEenYZHXYwJmpSAGysB8IE4F4r9AzAzEvljUBINcsI9KPgHRy3Co2w9S8AyLxHcgXoVDDpclK/CofQZS9BOLRAnUAAkgvkjAEhaoo/CBn7gsmoBWWhzCYQkrEK8mIoh/4go6UPqvRis1NqJZwgbEa4iMy2eEEsMkIGZCCiJkS9aRkGj2g5L3ITxJNxeIlwIxGxD/gSZhEHsVEAeSkAUOEZthdwIxL7T430RGNtCDxcFhIhS/BuLnZFhyCLmss6dXoUqramLWgFZ8ICxExapcaFA0TpCxHTWbW4xkNCBFoOJvSGlAAgQYAAlqbSHS1OkbAAAAAElFTkSuQmCC) no-repeat center center
}

#appForm .btn-option input[type=radio]+span:after {
    position: absolute;
    left: 20px;
    top: 50%;
    margin-top: -13px;
    width: 26px;
    height: 26px;
    content: "";
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABoAAAAaCAYAAACpSkzOAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6NEJBMTU5NTJFRDY2MTFFQTlCMUE5QjdCNjMxMTlBMTUiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6NEJBMTU5NTNFRDY2MTFFQTlCMUE5QjdCNjMxMTlBMTUiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDo0QkExNTk1MEVENjYxMUVBOUIxQTlCN0I2MzExOUExNSIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDo0QkExNTk1MUVENjYxMUVBOUIxQTlCN0I2MzExOUExNSIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PrXhD54AAAJDSURBVHjatFY9j1JBFL1vCEQgAcIK/ABCsMDdhMZYuCa2Wqm/wXpj65baqq3Gn6BWG1uzi4mxgMRdCgmBHqIYSBD59pyX+8xzDSwfsyc5mSGPuefdeXfOHWc+n8syVCqV6xgegrfAa+COPvoBfgNL4NtisXi2LI6zSAgCDPxMBVYBBQ8heLKSEASuYHgJPuLzQCAgyWRSYrGYhMNhCQaDMpvNZDwey3A4lF6vJ51OR6bTKZcz2GvwAIK/FwpBJIHhA3jTGCOZTMYl58tA4Var5ZJz4DN4F2I//xOCSBjDR/BGKBSSbDbrZrAOBoOBNBoNGY1G/PkFvAOxX/zhf9XnFOHW5PP5tUUIruFaxmAs8MU/GemHP8YWOblcTqLRqGyDfr8v9Xqd28jtuo2sSl5GrC4nnU5vLUIwRiqVchPR2OKUy+VdjF9ZXYVCQTjaAKuwWq161bjHjO5zlkgkrIkQ3rFQPKDQPmfxeFxsg2dPsW/UViQSiVgX8lVu3njepSVpFb6YO8Z/ui8TRl1YJpOJ9eD0Q8/pjVq9ax+24YtZo5Br691u17oQnV1xQqH3npAeLmsHlu1D8c7Ah04x+cRvRJu3BcbSFy9Rw6u6QzatdrvtGuK2YAzG0kb45G+bgOIxhlcs8Waz6a+WjSqNMfS4vKFzn+9Hj9ms+MdarbZRFXIN1+qLsvEdLGrldMEjr5WzbbCVX2S2/Bb8JtwuXyu/h2w6W11OvC1iBhtdTs4J0tWfXtp1a4UL5FV99H2dC+QfAQYAE1ArV6IrasEAAAAASUVORK5CYII=) no-repeat center center
}

#appForm input.error,#appForm select.error {
    border: 1px solid red
}

#appForm label.error {
    color: red;
    font-size: .85em
}

#appForm .btn-navigate,#appForm .btn-complete {
    width: 100%;
    background: #000000;
    color: #fff;
    font-weight: 700;
    padding: 1em 1em;
    font-size: 1.25em
}

#appForm .btn-back {
    width: max-content;
    display: block;
    cursor: pointer;
    margin: 15px auto 0;
    text-align: center;
    color: #000;
    font-weight: 700
}

#appForm .form-slider {
    float: left;
    width: 100%;
    height: 132px;
    border: 1px solid #d8e3f2;
    border-radius: 10px;
    padding: 15px 15px
}

#appForm .form-slider .irs-single {
    display: none!important
}

#appForm .form-slider .irs--round .irs-bar {
    background-color: #13af76!important
}

#appForm .form-slider .irs--round .irs-handle {
    background-color: #108d5f!important;
    border-color: #108d5f!important
}

#appForm .form-slider .form-value {
    font-size: 1.5em;
    font-weight: 700
}

#appForm .form-slider .form-value.two-value {
    display: flex;
    flex-flow: row;
    justify-content: center
}

#appForm .form-slider .form-value.two-value div {
    border: 1px solid rgba(0,0,0,.125);
    padding: 1px 10px
}

#appForm .form-slider .form-value.two-value div:first-child {
    border-radius: 5px 0 0 5px
}

#appForm .form-slider .form-value.two-value div:last-child {
    border-left: none;
    border-radius: 0 5px 5px 0;
    font-weight: 400!important
}

#appForm .icon-picker {
    display: flex;
    flex-flow: row;
    flex-wrap: wrap;
    justify-content: space-around;
    width: 100%
}

@media (min-width: 768px) {
    #appForm .icon-picker.v2 .btn-icon {
        width:23%!important
    }
}

#appForm .icon-picker .btn-icon {
    text-align: center;
    display: inline-block;
    vertical-align: middle;
    width: 45%;
    height: 124px;
    position: relative;
    margin-bottom: 15px
}

#appForm .icon-picker .btn-icon input[type=radio] {
    position: absolute;
    left: 0;
    opacity: 0
}

#appForm .icon-picker .btn-icon input[type=radio]:checked+span {
    color: #fff;
    background: #000000
}

#appForm .icon-picker .btn-icon input[type=radio]:checked+span svg {
    fill: #fff;
    color: #fff
}

#appForm .icon-picker .btn-icon input[type=radio]+span {
    float: left;
    width: 100%;
    height: 100%;
    border-radius: 5px;
    border: 2px solid #000000;
    cursor: pointer;
    font-size: 1em;
    line-height: 30px;
    color: #000;
    font-weight: 600;
    padding: 25px 0;
    position: relative
}

#appForm .icon-picker .btn-icon input[type=radio]+span:hover {
    color: #fff;
    background: #000000;
    text-shadow: 1px 1px 0 rgba(0,0,0,.2)
}

#appForm .icon-picker .btn-icon input[type=radio]+span:hover svg {
    fill: #fff;
    color: #fff
}

#appForm .icon-picker .btn-icon span img,#appForm .icon-picker .btn-icon span svg {
    fill: #000000;
    display: block;
    margin: 0 auto 5px;
    width: 50px;
    height: 50px
}

#appForm.v1 .btn-credit span {
    text-shadow: 1px 1px 3px #000
}

#appForm.v1 .btn-credit span.btn-option-text {
    color: white!important
}

#appForm.v1 .btn-credit span.btn-option-subtext {
    color: white!important
}

#appForm.v1 .btn-credit.credit-1 input[type=radio]+span {
    background: #008255
}

#appForm.v1 .btn-credit.credit-2 input[type=radio]+span {
    background: #40AD87
}

#appForm.v1 .btn-credit.credit-3 input[type=radio]+span {
    background: #F8BB32
}

#appForm.v1 .btn-credit.credit-4 input[type=radio]+span {
    background: #FF5C5C
}

#appForm.v3 .card {
    background-color: #fff;
    border: 1px solid #61a5ff!important
}

#appForm.v3 .card.card-options .btn-icon {
    background: #fff
}

#appForm.v3 .card.card-options .btn-option span {
    border-radius: 4px
}

#appForm.v3 .form-slider .form-value {
    font-size: 2em;
    font-weight: 500
}

#appForm.v3 .form-slider .irs .irs-line {
    height: 10px;
    background-color: #fff;
    border: 1px solid #61a5ff
}

#appForm.v3 .form-slider .irs .irs-bar {
    height: 10px;
    background-color: #61a5ff
}

#appForm.v3 .form-slider .irs .irs-handle {
    top: 30px;
    border-radius: 4px
}

.step-progress-bar-wrap {
    width: 100%;
    position: relative;
    padding: 0 10px;
    margin-bottom: 7.5%;
    height: max-content
}

@media (max-width: 576px) {
    .step-progress-bar-wrap {
        transform:scale(.75)
    }
}

.step-progress-bar-wrap:before {
    content: "progress";
    position: absolute;
    z-index: 1;
    display: block;
    top: 15px;
    left: 6px;
    right: 0;
    bottom: 0;
    text-align: center;
    pointer-events: none;
    text-transform: uppercase;
    letter-spacing: 10px;
    font-size: 9px;
    line-height: 1;
    height: max-content;
    width: max-content;
    margin: auto
}

.step-progress-bar-wrap .step-progress-bar {
    display: flex;
    justify-content: space-between;
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
    position: relative
}

.step-progress-bar-wrap .step-progress-bar li {
    flex: 2;
    position: relative;
    padding: 0 0 14px 0;
    font-size: var(--font-size-default);
    line-height: 1.5;
    color: var(--color-green);
    font-weight: 600;
    white-space: nowrap;
    overflow: visible;
    min-width: 0;
    text-align: center;
    border-radius: 0;
    border-bottom: 10px solid var(--color-gray-disabled)
}

.step-progress-bar-wrap .step-progress-bar li span {
    transition: opacity 0.3s ease-in-out
}

.step-progress-bar-wrap .step-progress-bar li:first-child {
    flex: 1;
    text-align: left
}

.step-progress-bar-wrap .step-progress-bar li:first-child span {
    margin-left: -4px
}

.step-progress-bar-wrap .step-progress-bar li:first-child:before {
    left: -4px
}

.step-progress-bar-wrap .step-progress-bar li:last-child {
    flex: 1;
    text-align: right;
    right: 0
}

.step-progress-bar-wrap .step-progress-bar li:last-child:before {
    right: -10px;
    left: auto
}

.step-progress-bar-wrap .step-progress-bar li:last-child span {
    width: 200%;
    display: inline-block;
    position: absolute;
    left: -100%;
    margin-left: 15px
}

.step-progress-bar-wrap .step-progress-bar li:before {
    box-sizing: content-box;
    content: "";
    display: block;
    width: 22px;
    height: 22px;
    background-color: var(--color-gray-disabled);
    border-radius: 50%;
    border: 2px solid var(--color-white);
    position: absolute;
    left: calc(50% - 6px);
    bottom: -17px;
    z-index: 3;
    transition: all 0.2s ease-in-out
}

.step-progress-bar-wrap .step-progress-bar li:not(.is-active) span {
    opacity: 0
}

.step-progress-bar-wrap .step-progress-bar li:hover:before {
    background-color: var(--color-white);
    border-color: var(--color-green);
    transform: scale(1.33)
}

.step-progress-bar-wrap .step-progress-bar li:hover span {
    opacity: 1
}

.step-progress-bar-wrap .step-progress-bar .is-complete:not(:first-child):after {
    content: "";
    display: block;
    width: 100%;
    position: absolute;
    bottom: -10px;
    left: -50%;
    z-index: 2;
    border-bottom: 10px solid var(--color-green)
}

.step-progress-bar-wrap .step-progress-bar .is-complete:last-child:after {
    width: 200%;
    left: -100%
}

.step-progress-bar-wrap .step-progress-bar .is-complete:before {
    background-color: var(--color-green)
}

.step-progress-bar-wrap .step-progress-bar .is-active:not(:first-child):after {
    content: "";
    display: block;
    width: 100%;
    position: absolute;
    bottom: -10px;
    left: -50%;
    z-index: 2;
    border-bottom: 10px solid var(--color-green)
}

.step-progress-bar-wrap .step-progress-bar .is-active:last-child:after {
    width: 200%;
    left: -100%
}

.step-progress-bar-wrap .step-progress-bar .is-active:before {
    background-color: var(--color-white);
    border-color: var(--color-green)
}

.step-progress-bar-wrap .step-progress-bar .is-hovered:before {
    background-color: var(--color-white);
    border-color: var(--color-green);
    transform: scale(1.33)
}

.step-progress-bar-wrap .step-progress-bar li.is-hovered span {
    opacity: 1
}

.step-progress-bar-wrap .step-progress-bar:hover li:not(:hover) span {
    opacity: 0
}

.step-progress-bar-wrap .step-progress-bar .has-changes {
    opacity: 1!important
}

.step-progress-bar-wrap .step-progress-bar .has-changes:before {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    position: absolute;
    left: calc(50% - 4px);
    bottom: -20px;
    background-image: url(data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%208%208%22%3E%3Cpath%20fill%3D%22%23ed1c24%22%20d%3D%22M4%200l4%208H0z%22%2F%3E%3C%2Fsvg%3E)
}

.progress {
    border-radius: 0!important;
    height: 0.75rem!important;
    margin-bottom: 2.5em
}

.progress .progress-bar {
    background-color: #fd8e33
}






.swal2-styled.swal2-confirm {
    border: 0;
    border-radius: 0.25em;
    background: initial;
    background-color: #000000!important;
    color: #fff;
    font-size: 1em;
}

.circle2{

}

.modal-fullscreen .modal-body {
   
}

#la-funnel-wrapper{
	overflow: hidden;
	padding-bottom: 15px;
}















.alert-danger {
    --bs-alert-color: #000000;
    --bs-alert-bg: #449ac233;
    --bs-alert-border-color: #449ac233;
}