/*   Theme default css */
@import url("https://fonts.googleapis.com/css2?family=Geist:wght@100..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
/* ======font family=========
font-family: "Geist", sans-serif;
font-family: "Inter", sans-serif;
*/

:root {
	--font-inter: "Inter", sans-serif;
	--textColor: #0c314acc;
	--thmColor: #13bfc2;
	--borderColor: #13bfc24d;
	--f18: 18px;
	--f20: 20px;
	--f22: 22px;
	--f24: 24px;
	--f28: 28px;
	--f30: 30px;
	--f32: 32px;
	--f36: 36px;
	--f40: 40px;
	--f48: 48px;
}

body {
	font-weight: 400;
	font-size: var(--f18);
	margin: 0;
	padding: 0;
	color: #1d1d1d;
	font-family: "Geist", sans-serif;
	letter-spacing: -0.72px;
}

p {
	color: var(--textColor);
	font-family: var(--font-inter);
}

img {
	max-width: 100%;
}

button {
	cursor: pointer;
	border: none;
	padding: 0;
	background: none;
}

a:focus,
button:focus {
	text-decoration: none;
	outline: none;
}

a:focus,
a:hover {
	text-decoration: none;
}

a,
button {
	color: inherit;
	outline: medium none;
	text-decoration: none;
}

button:focus,
input:focus,
input:focus,
textarea,
textarea:focus {
	outline: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin-top: 0px;
	font-weight: 600;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
	color: inherit;
}

h1 {
	font-size: var(--f48);
}

h2 {
	font-size: var(--f36);
}

h3 {
	font-size: var(--f28);
}

h4 {
	font-size: var(--f24);
}

h5 {
	font-size: var(--f18);
}

h6 {
	font-size: 16px;
}

ul {
	margin: 0px;
	padding: 0px;
}

li {
	list-style: none;
}

.pb_150 {
	padding-bottom: 150px;
}
.pb_100 {
	padding-bottom: 100px;
}

.container {
	max-width: 1300px;
}
.pb_50 {
	padding-bottom: 50px;
}
.pt_150 {
	padding-top: 150px;
}
.pt_100 {
	padding-top: 100px;
}
.pt_50 {
	padding-top: 50px;
}

.mb_150 {
	margin-bottom: 150px;
}
.mb_100 {
	margin-bottom: 100px;
}
.mb_50 {
	margin-bottom: 50px;
}
.mt_150 {
	margin-top: 150px;
}
.mt_100 {
	margin-top: 100px;
}
.mt_50 {
	margin-top: 50px;
}

.thm_btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--thmColor);
	color: #fff;
	border-radius: 8px;
	font-size: 16px;
	padding: 16px 32px;
	gap: 10px;
	border: 1px solid var(--thmColor);
	line-height: 1.2;
	font-weight: 500;
	transition: all 0.3s;
}

.thm_btn:hover img {
	transform: translateX(10px);
}

.thm_btn img {
	transition: all 0.3s;
}

.thm_btn.bordered {
	color: #1d1d1d;
	background: none;
	border-color: #1d1d1d;
}

/* default-css END 
================================== */

.header-area {
	padding: 24px 0 30px;
	width: 100%;
	z-index: 99;
	position: relative;
}

.header-area a.border-btn {
	border: 2px solid #fff;
	color: #fff;
	font-size: 16px;
	font-weight: 600;
	padding: 14px 28px;
	box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.15);
	border-radius: 8px;
	transition: all 0.3s;
	background: rgba(255, 255, 255, 0.1);
}

.header-area a.border-btn:hover {
	background: #fff;
	color: var(--thmColor);
	box-shadow: 0px 6px 12px 0px rgba(0, 0, 0, 0.2);
	transform: translateY(-2px);
}
.menu-area nav ul li {
	list-style: none;
	display: inline-block;
}

.menu-area nav ul li a {
	display: inline-block;
	position: relative;
	color: #fff;
	padding: 10px 20px;
	font-weight: 500;
	font-family: var(--font-inter);
	transition: all 0.3s;
}

.menu-area nav ul li a:hover {
	opacity: 0.5;
}

.menu-area ul {
	display: flex;
	align-items: center;
	justify-content: center;
}

/* humbergar */
.humbergar {
	cursor: pointer;
	display: block;
	max-width: 24px;
	margin-left: auto;
	height: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.bar__icon {
	display: none;
}

.humbergar span,
.humbergar span:before,
.humbergar span:after {
	cursor: pointer;
	border-radius: 1px;
	height: 2px;
	width: 24px;
	background: white;
	position: relative;
	display: block;
	content: "";
	transition: all 250ms ease-in-out;
}
.humbergar span:before {
	top: -7px;
}
.humbergar span:after {
	bottom: -5px;
}

.humbergar.active span {
	background-color: transparent;
}
.humbergar.active span:before {
	top: 0px;
	transform: rotate(45deg);
}

.humbergar.active span:after {
	bottom: 2px;
	transform: rotate(-45deg);
}

/* humbarger END */

/* mobile-menu START */
.mobile-menu {
	position: fixed;
	width: 250px;
	height: 100vh;
	background: #ffffff;
	z-index: 99;
	box-shadow: 0px 0px 9px -1px #737373;
	top: 0;
	left: 0;
	transition: 0.3s;
	margin-left: -400px;
	padding-left: 24px;
	padding-top: 80px;
}

.mobile-menu a.thm_btn {
	width: calc(100% - 24px);
	font-size: 18px;
	padding: 15px;
	position: absolute;
	left: 12px;
	bottom: 20px;
	margin: auto;
}
.siteBar {
	margin-left: 0;
}
.mobile-menu ul#pills-tab {
	margin-top: 90px;
	margin-bottom: 35px !important;
	display: block;
}
.mobile-menu nav ul li {
	list-style: none;
	display: block;
}

.mobile-menu nav ul li a {
	color: #272835;
	font-size: 18px;
	line-height: 48px;
	transition: 0.3s;
}

.mobile-menu a.bars {
	position: absolute;
	right: 20px;
	top: 15px;
	width: 40px;
	height: 40px;
	text-align: center;
	line-height: 40px;
	border-radius: 50%;
	font-size: 32px;
	color: rgb(255, 0, 43);
}

/* Header section END */

/*============hero Area Start =============*/

.arrow-down-btn {
	display: block;
	margin-top: 80px;
	animation: pulse 2s ease-in-out infinite;
	transition: transform 0.3s;
}

.arrow-down-btn:hover {
	animation-play-state: paused;
	transform: scale(1.1);
}

@keyframes pulse {
	0%, 100% {
		transform: scale(1);
		opacity: 1;
	}
	50% {
		transform: scale(1.15);
		opacity: 0.8;
	}
}

.minimal-scroll-btn {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	color: var(--textColor);
	font-size: 24px;
	font-weight: 500;
	transition: all 0.3s;
	margin-top: 60px;
}

.minimal-scroll-btn img {
	width: 40px;
	height: 40px;
	animation: pulse 2s ease-in-out infinite;
}

.minimal-scroll-btn:hover {
	color: var(--thmColor);
}

.minimal-scroll-btn:hover img {
	animation-play-state: paused;
	transform: scale(1.1);
}

.hero-bg {
	position: absolute;
	top: 0;
	pointer-events: none;
	z-index: -1;
}

.hero__content {
	margin-top: 100px;
}

.hero__content.v3 {
	max-width: 1070px;
	margin-inline: auto;
}

.hero__content.v3 h1 {
	font-size: 48px;
	font-weight: 500;
	color: var(--textColor);
}

.hero__content p {
	margin-bottom: var(--f40);
}

.hero__content h1 {
	margin-bottom: 20px;
	font-size: 72px;
	line-height: 1.2;
}
.hero-btns {
	display: flex;
	align-items: center;
	gap: 16px;
}
.brand-content {
	margin-top: 100px;
}

.brand-content p {
	font-weight: 500;
	font-size: 16px;
}

.brand-content ul {
	display: flex;
	align-items: center;
	gap: 40px;
}

.hero-img img {
	position: absolute;
	top: 90px;
	width: 41%;
	right: 0;
}
.width-max {
	width: max-content;
	display: flex;
}
/*============hero Area End =============*/

/*============benefits Area Start =============*/

.section__title h1 {
	margin-bottom: 16px;
}

.section__title label {
	display: inline-block;
	border: 1px solid #13bfc24d;
	border-radius: 40px;
	font-size: 16px;
	color: var(--thmColor);
	padding: 4px 12px;
	margin-bottom: 16px;
}

.benefits__block {
	padding: 24px;
	border: 1px solid #13bfc214;
	border-radius: 24px;
	background: #f7fcfc;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	cursor: pointer;
}

.benefits__block:hover {
	transform: scale(1.05);
	box-shadow: 0px 8px 24px rgba(19, 191, 194, 0.2);
}

.benefits__block p {
	color: var(--textColor);
	margin: 0;
}

.benefits__block h4 {
	margin: 0;
}

.benefits__block i {
	width: 72px;
	height: 72px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	background: var(--thmColor);
	border-radius: 16px;
}

.benefits__block > div {
	display: flex;
	gap: 16px;
	align-items: center;
	margin-bottom: var(--f32);
}

/*============benefits Area End =============*/

/*============work Area Start =============*/

.work-area {
	background: #f5fafa;
	padding: 50px 0 20px;
}
.work__slider .owl-stage-outer {
	margin-inline-end: -2000px;
}

.work__slider .owl-nav {
	margin-top: 50px;
}
.owl-nav-style .owl-nav {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

.owl-nav-style .owl-prev i {
	width: 52px;
	height: 52px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--thmColor);
	border-radius: 50%;
}

.owl-nav-style .owl-nav i:hover {
	background: var(--textColor) !important;
	border: 1px solid var(--thmColor);
}

.owl-nav-style .owl-next i {
	background: var(--thmColor);
	width: 52px;
	height: 52px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
}
.work__block {
	text-align: center;
	position: relative;
	opacity: 0.3;
	transform: scale(0.95);
	transition: all 0.6s ease;
}

.work__block.center {
	opacity: 1;
	transform: scale(1.1);
}

.work__block.highlighted {
	opacity: 1;
	transform: scale(1);
}

.work__block:last-child:after {
	display: none;
}

.work__block:after {
	content: "";
	position: absolute;
	width: 82%;
	height: 2px;
	left: 62%;
	top: 32px;
	background: linear-gradient(90deg, rgba(19, 191, 194, 0.04) 5%, rgba(19, 191, 194, 0.64) 50%, rgba(19, 191, 194, 0.04) 95%);
	opacity: 0;
}

.active .work__block:after {
	opacity: 1;
}

.work__block p {
	max-width: 400px;
	margin-inline: auto;
}

.work__block h4 {
	margin-bottom: 12px;
}

.work__block i:after {
	width: 42px;
	height: 42px;
	background: var(--thmColor);
	border-radius: 50%;
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	box-shadow: 0px 4.27px 8.53px 0px #0472fd66;
}

.work__block i {
	width: 64px;
	height: 64px;
	background: #13bfc20f;
	border: 0.53px solid #13bfc21f;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	margin: auto;
	margin-bottom: 20px;
}

.work__block i img {
	position: relative;
	z-index: 9;
}
/*============work Area End =============*/

/*============feedback Area Start =============*/

.feedback__slider .owl-stage-outer {
	margin-inline-end: -2000px;
}
.feedback__slider .owl-nav {
	position: absolute;
	top: -110px;
	right: 0;
}

.feedback__block {
	padding: 40px;
	background: #f5fafa;
	border-radius: 24px;
}

.feedback__block hr {
	margin: 20px 0 32px;
}

.feedback__block > p {
	font-size: var(--f20);
	margin: 0;
	height: 120px;
}

.feedback__block ul {
	display: flex;
	gap: 5px;
	margin-bottom: 24px;
}
.feedback__user {
	display: flex;
	align-items: center;
	gap: 16px;
}

.feedback__user h6 {
	margin: 0;
	margin-bottom: 4px;
}

.feedback__user p {
	font-size: 14px;
	margin: 0;
}

.feedback__user i {
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	border-radius: 50%;
}
/*============feedback Area End =============*/

/*============contact Area Start =============*/

.contact-area {
	background: #f5fafa;
}
.contact__img {
	position: relative;
	margin-right: -55px;
	border-radius: 20px;
	overflow: hidden;
}
.contact__img__content {
	position: absolute;
	bottom: 0;
	padding: 60px;
}

.contact__img__content p {
	margin: 20px 0 40px;
}
.contact__form__content {
	max-width: 516px;
	margin: auto;
	position: relative;
	right: -50px;
}

.contact__form__content a:hover {
	background: #0000;
	color: var(--thmColor);
}

.contact__form {
	padding: 40px;
	background: #ffffff;
	border-radius: 20px;
	margin-top: 50px;
}

.contact__form input,
.contact__form textarea {
	width: 100%;
	border: 1px solid #f0f0f0;
	border-radius: 8px;
	height: 52px;
	font-size: 16px;
	padding-left: 20px;
}

.contact__form textarea {
	height: 110px;
	resize: none;
	padding-top: 12px;
}
/*============contact Area End =============*/

/*============footer Area Start =============*/

.footer-area {
	background: #000;
	color: #fff;
	padding-bottom: 30px;
}

.footer-area p {
	color: #fff;
}

.footer__content a {
	display: block;
	margin-bottom: 16px;
}
.footer__nav {
	display: flex;
	justify-content: space-between;
	max-width: 400px;
	margin-left: auto;
}

.footer__nav ul li a {
	display: block;
	line-height: 2;
	transition: all 0.3s;
}

.footer__nav ul li a:hover {
	color: var(--thmColor);
}
.social__link {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: 15px;
}

.social__link a {
	width: 40px;
	height: 40px;
	display: flex !important;
	align-items: center;
	justify-content: center;
	background: var(--thmColor);
	border-radius: 50%;
	border: 1px solid var(--thmColor);
}

.social__link a:hover {
	background: #000;
}
.footer__bottom {
	font-size: 16px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 30px;
	border-top: 1px solid #ffffff;
	margin-top: 60px;
}

.footer__bottom p {
	margin: 0;
	font-size: 16px;
}

.footer__bottom ul {
	display: flex;
	justify-content: end;
	gap: 24px;
}

.footer__bottom ul a:hover {
	color: var(--thmColor);
}
/*============footer Area End =============*/

/*============blog Area Start =============*/

.blog__content {
	padding-right: 40px;
}

.row .col-lg-6:first-child .blog__content {
	padding-right: 40px;
	padding-left: 0;
}

.row .col-lg-6:last-child .blog__content {
	padding-left: 40px;
	padding-right: 0;
}

.blog__content ul {
	margin-top: var(--f40);
}

.blog__content ul li {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 16px;
	font-size: var(--f20);
	font-weight: 500;
	line-height: 1.2;
}

.blog__content ul li i {
	flex-shrink: 0;
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #f0ffff;
	border-radius: 50%;
}

.blog__content h5 {
	font-size: var(--f20);
	font-weight: 500;
	margin-bottom: 12px;
}

.blog__content h1 {
	font-size: var(--f40);
	margin-bottom: 24px;
	display: flex;
	align-items: center;
	gap: 20px;
	width: max-content;
	line-height: 1.2;
}

.blog__content h1 i {
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--thmColor);
	border-radius: 14px;
	flex-shrink: 0;
}

.video-container {
	position: relative;
	width: 100%;
	max-width: 100%;
	margin-left: auto;
	border-radius: 24px;
	overflow: hidden;
	aspect-ratio: 16/11;
}

.blog__video {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
}

.video-container video {
	width: 100%;
	border-radius: 24px;
	height: 100%;
	object-fit: contain;
	object-position: center;
	cursor: pointer;
	position: relative;
	background: #000;
}

.video-container video:before {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 9;
	background: #00000033;
}

/* Play Button */
.play-btn {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 56px;
	height: 56px;
	background: rgb(255 255 255 / 100%);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	transition: 0.3s;
	z-index: 31;
}

.play-btn:hover:before {
	border-color: transparent transparent transparent #fff;
}

.play-btn:hover {
	background: var(--thmColor);
}

.play-btn::before {
	content: "";
	border-style: solid;
	border-width: 8px 0 10px 15px;
	border-color: transparent transparent transparent #000000;
	margin-left: 5px;
}

.hide {
	opacity: 0;
	pointer-events: none;
}
/*============blog Area End =============*/

/*============price Area Start =============*/

.price__block {
	border-radius: 24px;
	padding: 18px 10px;
	text-align: center;
}

.price__block label {
	margin-bottom: 16px;
	color: var(--textColor);
	font-size: var(--f20);
	font-weight: 500;
	display: block;
}
.price__content {
	padding: 12px;
	background: #fff;
	box-shadow: 0px 4px 4px 0px #00000014;
	border-radius: 16px;
	text-align: center;
}

.price__content a.thm_btn {
	border-radius: 40px;
	border: none;
	box-shadow: 0px 2px 4px 0px #00000008;
}

.price__content a.thm_btn:hover {
	background: var(--thmColor) !important;
}

.price__content ul {
	margin-bottom: 36px;
	min-height: 228px;
}

.price__content ul li {
	display: flex;
	align-items: baseline;
	gap: 12px;
	color: var(--textColor);
	font-size: 16px;
	margin-bottom: 10px;
	line-height: 1.6;
	opacity: 0.8;
	text-align: left;
}

.price__content ul li:last-child {
	margin-bottom: 0;
}

.price__content ul li a {
	color: #13bfc2;
}

.price__content ul li i {
	flex-shrink: 0;
	width: 20px;
	filter: brightness(0);
	opacity: 0.7;
}

.price__content hr {
	margin-bottom: 36px;
}

.price__content p {
	opacity: 0.8;
	font-size: 16px;
}

.price__content h1 {
	font-size: var(--f40);
}

.price__content h1 span {
	font-size: 16px;
	font-weight: 400;
	color: var(--textColor);
}

/*============ Area End =============*/

/*============ Area Start =============*/

/*============ Area End =============*/
