/*------------------------------------------------------------------
[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) #1F1F39
# Mid Grey (Subheadings, Captions, Paragraphs) rgba(31, 31, 57, 0.5)

*/

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;600;700;800;900');

/*------------------------------------------------------------------
1. Common :: Starts
*/
body {
	font-size: 20px;
	font-family: 'Roboto', sans-serif;
	color: #1F1F39;
	padding-top: 80px;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
	padding-left: 25px;
	padding-right: 25px;
	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: 700;
	text-align: center;
	color: #1F1F39;
	margin-bottom: 18px;
}

.section-subtitle {
	font-size: 1em;
	color: rgba(31, 31, 57, 0.5);
	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: 20px;
	justify-content: center;
	margin-top: 40px;
	animation: fadeInUp 1.2s ease-out;
	position: relative;
	z-index: 5;
}

.app-download div {
	background: #fff;
	border: 2px solid #28a745;
	height: 70px;
	width: 220px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 15px;
	transition: all 0.3s ease;
	box-shadow: 0 5px 15px rgba(40, 167, 69, 0.1);
}

.app-download div:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(40, 167, 69, 0.2);
	background: #28a745;
}

.app-download div:hover a {
	color: #fff;
}

.app-download div:hover img {
	filter: brightness(0) invert(1);
}

.app-download div a {
	text-decoration: none;
	color: #1F1F39;
	display: flex;
	align-items: center;
	gap: 10px;
	font-weight: 500;
	transition: all 0.3s ease;
	width: 100%;
	height: 100%;
	justify-content: center;
}

.app-download div a img {
	height: 30px;
	width: auto;
	transition: all 0.3s ease;
}

.main-content {
	overflow-x: hidden;
}

input:focus {
	border: none;
	outline: none;
}

.wrapper {
	overflow-x: hidden;
	position: relative;
}

/*------------------------------------------------------------------
Common :: Ends
*/

/*------------------------------------------------------------------
2. Header / header :: Starts
*/
header {
	background-color: #FFF0E9;
	height: 80px;
	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: 70px;
	display: block;
}

.nav-mobile-menu {
	display: none;
	cursor: pointer;
	width: 30px;
	height: 24px;
	position: relative;
	z-index: 9999;
}

.nav-mobile-menu .line {
	width: 100%;
	height: 3px;
	background-color: #28a745;
	display: block;
	position: absolute;
	transition: all 0.3s ease-in-out;
}

.nav-mobile-menu .line1 {
	top: 0;
}

.nav-mobile-menu .line2 {
	top: 50%;
	transform: translateY(-50%);
}

.nav-mobile-menu .line3 {
	bottom: 0;
}

.nav-mobile-menu.active .line1 {
	transform: translateY(11px) rotate(45deg);
}

.nav-mobile-menu.active .line2 {
	opacity: 0;
}

.nav-mobile-menu.active .line3 {
	transform: translateY(-11px) rotate(-45deg);
}

.nav-menu {
	transition: all 0.3s ease-in-out;
}

.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 #1F1F39;
	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;
}

@media (max-width: 991px) {
	.nav-mobile-menu {
		display: block;
	}

	.nav-menu {
		position: fixed;
		top: 0;
		right: -100%;
		width: 100%;
		height: 100vh;
		background: #FFF0E9;
		padding-top: 100px;
		transition: all 0.3s ease-in-out;
		z-index: 998;
	}

	.nav-menu.active {
		right: 0;
	}

	.nav-menu .nav-links {
		flex-direction: column;
		align-items: center;
		padding: 0;
		margin: 0;
	}

	.nav-menu .nav-links li {
		margin: 15px 0;
		width: 100%;
		text-align: center;
	}

	.nav-menu .nav-links li + li {
		margin-left: 0;
	}

	.nav-menu .nav-links .nav-link {
		display: block;
		padding: 15px;
		color: #1F1F39;
		text-decoration: none;
		font-size: 18px;
	}

	body.mobile-menu-open {
		overflow: hidden;
	}

	.nav .nav-button {
		display: none;
	}

	header .nav {
		width: 100%;
		padding: 0 15px;
		position: relative;
	}
}

.blog-details .page-head div.blog-writer img {
	border-radius: 20px;
}

.blog-details .page-head div.blog-writer .name {
	color: #1F1F39
}

.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: #1F1F39;
	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%, #1F1F39 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 {
	padding: 70px 70px 60px;
	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;
	top: 80px;
}

.modal-body {
	padding: 0 70px 70px;
}

.modal .form-container {
	color: #191f2e;
	/* text-align: center; */
}

.modal .input-container {
	margin-bottom: 20px;
}

.modal .input-container label {
	color: #1F1F39;
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 8px;
	padding: 0 12px;
}

.modal .input-container input {
	color: rgba(31, 31, 57, 0.5);
	height: 75px;
	font-size: 20px;
	border-radius: 20px;
	font-weight: bold;
	padding: 12px 20px;
	background-color: #fff0e9;
	border: none;
}

.modal .input-container input:active,
.modal .input-container input:focus {
	outline: 2px solid #0E7DFF;
	color: #0E7DFF;
	box-shadow: none;
}

.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: #1F1F39;
	font-size: 0.8em;
}

.form-check-input:focus {
	box-shadow: none;
}

.another-way {
	color: #1F1F39;
	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: #1F1F39;
	text-align: center;
}

.modal .form-container>p a {
	color: #0E7DFF;
	text-decoration: none;
}
/*------------------------------------------------------------------
Modals / .modal :: Ends
*/

.work-section {
    padding: 80px 0;
    text-align: center;
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.work-section .work-img {
    margin-top: 60px;
    text-align: center;
    width: 100%;
    max-width: 1200px;
    padding: 0 15px;
    display: flex;
    justify-content: center;
}

.work-section .work-img img {
    max-width: 100%;
    height: auto;
    margin: 0;
    display: block;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .work-section {
        padding: 40px 0;
    }

    .work-section .work-img {
        margin-top: 30px;
        padding: 0;
        width: 90%;
    }

    .work-section .work-img img {
        width: 100%;
        max-width: 100%;
        margin: 0;
    }
}

@media (max-width: 480px) {
    .work-section .work-img {
        width: 85%;
        margin: 20px auto 0;
        padding: 0;
    }
}

.banner-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #FFF0E9 0%, #fff 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.banner-section .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.banner-section h1 {
    font-size: 4em;
    font-weight: 800;
    color: #1F1F39;
    margin-bottom: 30px;
    line-height: 1.2;
    background: linear-gradient(135deg, #1F1F39 0%, #28a745 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInUp 0.8s ease-out;
}

.banner-section .section-subtitle {
    font-size: 1.25em;
    line-height: 1.6;
    color: rgba(31, 31, 57, 0.8);
    max-width: 800px;
    margin: 0 auto 50px;
    animation: fadeInUp 1s ease-out;
}

.banner-vectors {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    opacity: 0.5;
    pointer-events: none;
}

.banner-vector-imgs img {
    position: absolute;
    animation: float 6s ease-in-out infinite;
}

.banner-vector-1 {
    top: 10%;
    left: 5%;
}

.banner-vector-2 {
    top: 20%;
    right: 5%;
}

.banner-vector-3 {
    bottom: 20%;
    left: 10%;
}

.banner-vector-4 {
    bottom: 30%;
    right: 10%;
}

.banner-vector-5 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .banner-section {
        padding: 80px 0;
    }

    .banner-section h1 {
        font-size: 2.5em;
    }

    .banner-section .section-subtitle {
        font-size: 1.1em;
        padding: 0 20px;
    }

    .app-download {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .app-download div {
        width: 200px;
    }
}

.page-head {
    background-color: #FFF0E9;
    padding: 20px 0;
    text-align: center;
    margin-bottom: 20px;
}

.page-head-content {
    padding: 0;
}

.page-head h1 {
    font-size: 2em;
    font-weight: 700;
    margin-bottom: 5px;
    color: #1F1F39;
}

.page-nav {
    font-size: 0.9em;
    color: rgba(31, 31, 57, 0.5);
    margin-top: 5px;
}

.page-nav a {
    color: #28a745;
    text-decoration: none;
}

.page-nav span {
    margin-left: 5px;
}

.page-nav span:before {
    content: "/";
    margin-right: 5px;
    color: rgba(31, 31, 57, 0.5);
}

@media screen and (max-width: 1199px) {
    .page-head {
        min-height: 100px;
    }
}

@media (max-width: 991px) {
    .page-head {
        padding: 15px 0;
        min-height: 100px;
    }

    .page-head h1 {
        font-size: 1.8em;
        margin-bottom: 3px;
    }
}

@media (max-width: 767px) {
    body {
        padding-top: 70px;
    }

    header {
        height: 70px;
    }

    .page-head {
        padding: 10px 0;
        min-height: 100px;
    }

    .page-head h1 {
        font-size: 1.6em;
        margin-bottom: 2px;
    }

    .page-head-content {
        padding: 0;
    }

    .page-nav {
        font-size: 0.8em;
    }
}

.features-section {
    padding: 60px 0;
    background-color: #FFF0E9;
}

.feature-item {
    margin-bottom: 40px;
    padding: 30px;
    background: #fff;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-item h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1F1F39;
    margin-bottom: 15px;
}

.feature-item p {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(31, 31, 57, 0.7);
    margin: 0;
}

.premium-badge {
    display: inline-block;
    background-color: #28a745;
    color: white;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .features-section {
        padding: 40px 0;
    }

    .feature-item {
        padding: 20px;
        margin-bottom: 20px;
    }

    .feature-item h3 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .feature-item p {
        font-size: 14px;
    }
}