body {
	font-family: 'Josefin Sans', sans-serif;
	font-size: 16px;
	overflow-x: hidden;
}

:root {
	--thm-font: 'Josefin Sans', sans-serif;
	--thm-color: #ffaa17;
	--thm-color-rgb: 255, 170, 23;
	--thm-black: #18191c;
	--thm-text: #686a6f;
	--default-color: #fff;
	--font-theme: 'Josefin Sans', sans-serif;
}

li,
ul {
	list-style: none;
}

a:active,
a:focus,
a:hover,
a:visited,
button:active {
	text-decoration: none;
	outline: 0;
	color: var(--thm-color);
}

a {
	text-decoration: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--thm-font);
	margin: 0;
	padding: 0;
}

h2 {
	line-height: 56px;
	font-weight: 700;
	margin-bottom: 20px;
	line-height: 40px;
}

p {
	font-family: var(--thm-font);
	margin: 0;
	padding: 0;
	line-height: 1.5rem;
	font-size: 1rem;
}

.section {
	padding: 100px 0;
}

.theme_btn2 {
	position: relative;
	padding: 1.3em 2em;
	outline: 0;
	border: 1px solid #eb911b;
	background: var(--thm-black);
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-size: 15px;
	overflow: hidden;
	transition: 0.2s;
	border-radius: 5px;
	cursor: pointer;
	font-weight: 700;
	display: block;
}

.theme_btn2:hover {
	box-shadow: 0 0 10px #e99b34, 0 0 25px #8f6125, 0 0 50px #eb911b;
	transition-delay: 0.6s;
	color: #fff;
}

.theme_btn2 span {
	position: absolute;
}

.theme_btn2 span:first-child {
	top: 0;
	left: -100%;
	width: 100%;
	height: 2px;
	background: linear-gradient(90deg, transparent, #e99b34);
}

.theme_btn2:hover span:first-child {
	left: 100%;
	transition: 0.7s;
}

.theme_btn2 span:nth-child(3) {
	bottom: 0;
	right: -100%;
	width: 100%;
	height: 2px;
	background: linear-gradient(90deg, transparent, #c47c1e);
}

.theme_btn2:hover span:nth-child(3) {
	right: 100%;
	transition: 0.7s 0.35s;
}

.theme_btn2 span:nth-child(2) {
	top: -100%;
	right: 0;
	width: 2px;
	height: 100%;
	background: linear-gradient(180deg, transparent, #ffb14a);
}

.theme_btn2:hover span:nth-child(2) {
	top: 100%;
	transition: 0.7s 0.17s;
}

.theme_btn2 span:nth-child(4) {
	bottom: -100%;
	left: 0;
	width: 2px;
	height: 100%;
	background: linear-gradient(360deg, transparent, #945809);
}

.theme_btn2:hover span:nth-child(4) {
	bottom: 100%;
	transition: 0.7s 0.52s;
}

.theme_btn2:active {
	background: #af7200;
	background: linear-gradient(to top right, #ffb14a, #945809);
	color: #fdb226;
	box-shadow: 0 0 8px #ffbb00, 0 0 8px #ffa600, 0 0 8px #ffae00;
	transition: 0.1s;
}

.theme_btn2:active span:first-child span:nth-child(2) span:nth-child(2) span:nth-child(2) {
	transition: none;
	transition-delay: none;
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
	padding: 10px 0;
	color: var(--default-color);
	background-color: #0000003d;
	transition: all 0.5s;
	z-index: 997;
}

.header .logo {
	line-height: 1;
}

.header .logo img {
	max-height: 36px;
	margin-right: 8px;
}

.scrolled .header {
	box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}


.scrolled .header {
	background-color: rgba(0, 0, 0, 0.9);
}

/*--------------------------------------------------------------
  # Navigation Menu
  --------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
	.navmenu {
		padding: 0;
	}

	.navmenu ul {
		margin: 0;
		padding: 0;
		display: flex;
		list-style: none;
		align-items: center;
	}

	.navmenu li {
		font-size: 14px;
		font-weight: 500;
		position: relative;
	}

	.navmenu>ul>li {
		white-space: nowrap;
		padding: 15px 14px;
	}

	.navmenu>ul>li:last-child {
		padding-right: 0;
	}

	.navmenu a,
	.navmenu a:focus {
		color: var(--default-color);
		font-size: 14px;
		text-transform: uppercase;
		padding: 0 2px;
		font-family: var(--font-theme);
		font-weight: 500;
		display: flex;
		align-items: center;
		justify-content: space-between;
		white-space: nowrap;
		transition: 0.3s;
		position: relative;
	}

	/* .navmenu a i,
	.navmenu a:focus i {
		font-size: 12px;
		line-height: 0;
		margin-left: 5px;
		transition: 0.3s;
	} */

	.navmenu>ul>li>a:before {
		content: "";
		position: absolute;
		width: 100%;
		height: 2px;
		bottom: -6px;
		left: 0;
		background-color: var(--thm-color);
		visibility: hidden;
		width: 0px;
		transition: all 0.3s ease-in-out 0s;
	}

	.navmenu a:hover:before,
	.navmenu li:hover>a:before,
	.navmenu .active:before {
		visibility: visible;
		width: 100%;
	}

	.navmenu li:hover>a,
	.navmenu .active,
	.navmenu .active:focus {
		color: var(--thm-color);
	}

	.navmenu .dropdown ul {
		column-count: 2;
		padding: 20px;
		background: var(--default-color);
		display: block;
		position: absolute;
		visibility: hidden;
		left: 14px;
		top: 130%;
		color: var(--thm-black);
		opacity: 0;
		transition: 0.3s;
		border-radius: 4px;
		z-index: 99;
		box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
	}

	.navmenu .dropdown ul li {
		min-width: 200px;
	}

	.navmenu .dropdown ul a {
		padding: 10px 20px;
		font-size: 15px;
		text-transform: uppercase;
		color: var(--thm-black);
	}

	.navmenu .dropdown ul a i {
		font-size: 12px;
	}

	.navmenu .dropdown ul a:hover,
	.navmenu .dropdown ul .active:hover,
	.navmenu .dropdown ul li:hover>a {
		color: var(--thm-color);
	}

	.navmenu .dropdown:hover>ul {
		opacity: 1;
		top: 100%;
		visibility: visible;
	}

	.navmenu .dropdown .dropdown ul {
		top: 0;
		left: -90%;
		visibility: hidden;
	}

	.navmenu .dropdown .dropdown:hover>ul {
		opacity: 1;
		top: 0;
		left: -100%;
		visibility: visible;
	}
}

.call-btn {
	color: var(--default-color);
	gap: 20px;
	display: flex;
	justify-content: flex-start;
	font-family: var(--font-theme);
	align-items: center;

	a {
		color: var(--default-color);
	}

	:hover {
		color: var(--thm-color);
	}
}


/*--------------------------------------------------------------
  # Hero Section
  --------------------------------------------------------------*/
.hero {
	position: relative;
	padding: 120px 0 60px 0;
	display: flex;
	align-items: center;
	width: 100%;
	min-height: 800px;
	overflow: hidden;

	h1 {
		font-size: 2.3em;
		line-height: 40px;
		color: var(--thm-color);
		font-weight: 600;
		letter-spacing: 0.05em;
		margin-bottom: 0;
		text-transform: uppercase;
	}

	p {
		font-size: 15px;
		color: #fff;
		width: 90%;
		line-height: 30px;
	}
}

.hero::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(45deg, #00000078 0%, color-mix(in srgb, var(--thm-black), transparent 10%) 100%), url(/assets/images/book.webp) center center no-repeat;
	background-size: cover;
	filter: grayscale(100%);
	z-index: 0;
}

.hero .container {
	position: relative;
	z-index: 1;
}


.thm-btn-primary {
	position: relative;
	text-align: center;
	background: #eb911b;
	color: #fff;
	border-radius: 5px;
	overflow: hidden;
	transition: .3s;
	-moz-transition: .3s;
	-webkit-transition: .3s;
	-ms-transition: .3s;
	-o-transition: .3s;
	font-weight: 700;
	text-transform: uppercase;
}

.thm-btn-primary:hover .btn-curve {
	opacity: 1;
	right: 0;
	width: 100%;
	-webkit-transform: skewX(0);
	transform: skewX(0)
}


.thm-btn-primary:hover {
	color: var(--thm-black);
}

.thm-btn-primary .btn-curve {
	position: absolute;
	right: -15px;
	top: 0;
	width: 26px;
	height: 100%;
	background: var(--thm-black);
	opacity: 0.2;
	z-index: 0;
	-webkit-transform: skewX(-22deg);
	transform: skewX(-22deg);
	transition: 0.5s;
	-moz-transition: 0.5s;
	-webkit-transition: 0.5s;
	-ms-transition: 0.5s;
	-o-transition: 0.5s;
}

.thm-btn-primary .btn-title {
	position: relative;
	z-index: 1;
	-webkit-transition: .5s;
	transition: .5s;
	display: block;
	line-height: 30px;
	font-weight: 400;
	padding: 19px 50px 16px;
	letter-spacing: 0.1em;
	color: var(--default-color);
	padding: 15px 20px 15px;
	letter-spacing: 0.1em;
	font-size: 16px;
}

.hero-btns {
	gap: 20px;
}

.form-wrapper {
	background: linear-gradient(#17181c8c 0%, #17181c 25%);
	border-radius: 12px;
	border-top: 2px solid var(--thm-color);
	padding: 50px 40px;
	width: 75%;
	margin: auto;

	h2 {
		font-size: 35px;
		text-transform: capitalize;
		color: #868484;
		font-weight: 700;
		text-align: center;
		margin-bottom: .5em;
	}

	input,
	textarea {
		width: 100%;
		border: 0;
		margin-bottom: 10px;
		padding: 10px;
		border-radius: 5px;
		background-color: #ffffff29;
		height: 55px;
		color: #fff;
	}

	.form-control::placeholder {
		color: var(--default-color);
	}

	.form-control:focus {
		background-color: var(--thm-text);
		box-shadow: 0 0 5px var(--thm-color);
	}
}

.custom-services {

	.text-center {
		text-align: center;
	}

	.text-center h2 {
		color: #000;
		font-size: 50px;
		line-height: 56px;
		font-weight: 700;
		margin-bottom: 20px;
		word-spacing: 10px;

	}

	.custom-description {
		color: #000;
		padding-top: 0;
		line-height: 23px;
		width: 60%;
		margin: 0 auto;
	}
}


.price-section {
	.scrollable-features {
		max-height: 250px;
		overflow-y: auto;
		padding-right: 10px;
	}

	.card-title {

		font-size: 25px;

	}

	.text-price {
		color: var(--thm-color);
		padding-bottom: 10px;
	}

	.card-body {
		padding: 20px;
	}

	.price-header {
		background: var(--thm-black);
		padding: 30px 0;
		color: var(--default-color);
		border-radius: 1rem 1rem 0 0;
	}

	.card-footer {
		display: flex;
		justify-content: center
	}


	.scrollable-features::-webkit-scrollbar {
		width: 8px;
	}

	.scrollable-features::-webkit-scrollbar-thumb {
		background-color: var(--thm-black);
		border-radius: 5px;
		border: 2px solid var(--thm-color);
	}

	/* Scrollbar Track Background */
	.scrollable-features::-webkit-scrollbar-track {
		background-color: #f0f0f0;
		border-radius: 5px;
	}
}

.custom-services .row {
	counter-reset: slides-num;
}

.custom-services .row .service-block {
	counter-increment: slides-num;
}

.custom-services .service-block .inner-box:before {
	content: "0" counter(slides-num) "";
	position: absolute;
	left: 45px;
	top: 50px;
	font-size: 50px;
	line-height: 1em;
	color: #fff;
	opacity: 0.5;
	font-family: var(--thm-font);
	font-weight: 300;
}

.custom-services .custom-service-row .service-block .inner-box.zero-removed:before {
	content: counter(slides-num) "";
}

.service-block .inner-box:hover {
	transform: scale(0.9);
}

.inner-box.zero-removed {
	margin-left: 15px;
}

.service-block {
	position: relative;
	margin-bottom: 30px;
}

.service-block .inner-box {
	position: relative;
	display: block;
	padding: 40px 35px;
	background: #f90;
	min-height: 100%;
	border-radius: 7px;
	overflow: hidden;
	-webkit-transition: 0.5s;
	transition: 0.5s;
}

.intersted_boxx_wrpp .btn-style-one,
.service-block .inner-box:hover {
	background: #171717;
}

.service-block .inner-box .bottom-curve {
	position: absolute;
	right: -70px;
	bottom: 0;
	width: 100px;
	height: 80%;
	background: var(--thm-black);
	opacity: 0.2;
	z-index: 0;
	-webkit-transform: skewX(0) scaleX(0);
	transform: skewX(0) scaleX(0);
	transition: 0.5s;
	-moz-transition: 0.5s;
	-webkit-transition: 0.5s;
	-ms-transition: 0.5s;
	-o-transition: 0.5s;
}

.service-block .inner-box:hover .bottom-curve {
	-webkit-transform: skewX(-35deg) scaleX(1);
	transform: skewX(-35deg) scaleX(1);
}

.service-block .inner-box .count {
	position: relative;
	display: block;
	font-size: 50px;
	line-height: 1em;
	color: #fff;
	opacity: 0.07;
	margin-bottom: 40px;
}

.service-block .inner-box .icon-box {
	position: absolute;
	right: 45px;
	top: 35px;
	color: #171717;
	font-size: 64px;
	line-height: 1em;
	transition: 0.5s;
	-moz-transition: 0.5s;
	-webkit-transition: 0.5s;
	-ms-transition: 0.5s;
	-o-transition: 0.5s;
}

.faqss .active h6,
.service-block .inner-box:hover .icon-box {
	color: #f90;
}

.service-block .inner-box h6 {
	position: relative;
	margin: 90px 0 0;
	font-size: 16px;
	text-transform: uppercase;
	color: #fff;
	font-weight: 400;
	letter-spacing: 1px;
	line-height: 1.1em;
}

.service-block .inner-box h6 a {
	color: #171717;
	transition: 0.5s;
	-moz-transition: 0.5s;
	-webkit-transition: 0.5s;
	-ms-transition: 0.5s;
	-o-transition: 0.5s;
}


.service-block .inner-box:hover .count,
.service-block .inner-box:hover h6,
.service-block .inner-box:hover h6 a,
.services-section .row .service-block .inner-box:hover:before {
	color: #fff;
}

.service-block .inner-box:hover .icon-box img {
	filter: brightness(0) invert(1);
}



/*--------------------------------------------------------------
  # cta Section
  --------------------------------------------------------------*/

.wider-audience {
	background-color: black;

	h2 {
		font-size: 35px;
		color: #fff;
		font-weight: 700;
		text-align: center;
		margin-bottom: 10px;
		line-height: 30px;
	}

	p {
		font-size: 20px;
		display: block;
		text-align: center;
		color: #fff;
		font-weight: 600;
		line-height: 2.125em;
	}
}

.primary-color {
	color: var(--thm-color);
}

.custom-portfolio {
	.text-center {
		text-align: center;
	}

	.text-center h2 {
		color: #000;
		font-size: 40px;


	}

	.custom-description {
		color: #000;
		padding-top: 0;
		line-height: 23px;
		width: 60%;
		margin: 0 auto;
	}


}

.btm_textt {
	.hero-btns {
		flex-direction: column;
	}

}

.portfolio-slider img {
	width: 90%;
	border-radius: 10px;
}

.fancybox-card {
	position: relative;
	z-index: 5;
	display: inline-block;
	overflow: hidden;

	&::before {
		content: '';
		position: absolute;
		width: 90%;
		height: 100%;
		background: #000000a1;
		bottom: -100%;
		z-index: 1;
		opacity: 0.8;
		transition: all 0.3s ease-in-out;
	}

	p {
		position: absolute;
		top: 50%;
		font-size: 30px;
		font-weight: 700;
		transform: translate(0, -50%);
		left: 0;
		right: 0;
		margin: 0 auto;
		opacity: 0;
		visibility: hidden;
		transition: all 0.3s ease-in-out;
		text-align: center;
		z-index: 2;
	}

	&:hover {
		&::before {

			transition: all 0.3s ease-in-out;
			bottom: 0;
		}

		p {
			opacity: 1;
			visibility: visible;
			transition: all 0.3s ease-in-out;
		}
	}
}


.best-selling {
	background: url(../images/pattern-2.png) left top #fff;

	h2 {
		font-size: 50px;
		color: #000;
		line-height: 55px;
		font-weight: 700;
	}

	.text {
		position: relative;
		color: var(--thm-text);
		margin-bottom: 50px;
		line-height: 2.125em;

	}


}

.nav-tabs {
	border: 0;
}

.my-tabs .my-tab-button {
	margin-right: 8px;
}

.my-tabs .nav-item:last-child .my-tab-button {
	margin-right: 0;

}


.my-tabs .my-tab-button {
	position: relative;
	color: #333;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	border-radius: 6px 6px 0 0;
	padding: 10px 16px;
	background-color: transparent;
	border: none;
	transition: all 0.3s ease;
}

.my-tabs .my-tab-button::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	height: 3px;
	width: 100%;
	background-color: var(--thm-color);
	border-radius: 6px 6px 0 0;
	transition: all 0.3s ease;
}

.my-tabs .my-tab-button.active::before {
	background-color: #ff9900;
	height: 100%;
	border-radius: 6px 6px 0 0;
	z-index: -1;
}

.my-tabs .my-tab-button.active {
	color: #fff;
	background: linear-gradient(135deg, #ff9900, #bb7f24);
}

.best-selling .featured-block-two {
	display: flex;
	align-items: center;

	img {
		width: 90%;
	}

	.text {
		width: 80%;
	}
}

.best-selling .featured-block-two .text ul li:before {
	content: "\f00c";
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	position: absolute;
	left: 0;
	top: -1px;
	color: #eb911b;
	font-size: 18px;
}

.best-selling .featured-block-two .text ul li {
	position: relative;
	line-height: 2.125em;
	margin-bottom: 12px;
	padding-left: 30px;
	color: var(--thm-text);
}

.call-to-section {
	position: relative;
	padding: 0;
	z-index: 1;

	.thm-btn-primary {
		background-color: black;
	}

	.thm-btn-primary:hover {
		color: var(--thm-color);
	}

	.auto-container {
		color: var(--default-color);
		display: flex;
		align-items: center;
		justify-content: center;
	}
}

.call-to-section .shape-1 {
	position: absolute;
	right: 0;
	top: 0;
	width: 340px;
	max-width: 100%;
	height: 100%;
	background: url(/assets/images/call-to-shape-1.png) right top no-repeat;
	z-index: 1
}

.call-to-section .shape-2 {
	position: absolute;
	right: 170px;
	top: 0;
	width: 410px;
	height: 54px;
	background: url(/assets/images/call-to-shape-2.png) right top no-repeat;
	z-index: 0
}


.call-to-section .inner {
	position: relative;
	display: block;
	padding: 65px 95px;
	background: var(--thm-color);
	border-radius: 7px;
	overflow: hidden;
	bottom: -60px;
	margin-top: -60px;
	width: 70%;
}

.call-to-section .inner-pkg {
	justify-content: center;
	position: relative;
	display: block;
	padding: 65px 95px;
	background-color: var(--thm-black);

	p{
		width: 70%;
	}
	.content-center{
		align-items: center;
		display: flex;
		flex-direction: column;
	}
	.thm-btn-primary {
		background-color: var(--thm-color);
	}
}

.call-to-section .inner .btn-style-two {
	background: #18191c
}

.contact_form_secc {
	background-image: url(../images/services-bg.webp);
	height: auto;
	padding: 6% 0;
	background-size: cover;
	background-repeat: repeat;
}

.contact-form-text {
	display: flex;
	flex-direction: column;
	align-items: center;

	h2 {
		font-size: 35px;
		text-align: center;
		color: var(--default-color);
		letter-spacing: 1px;
		font-weight: 700;
		text-transform: uppercase;
		line-height: 50px;

	}

	p {
		color: var(--default-color);
		text-align: center;
		font-weight: 400;
		margin-bottom: 10px;
		width: 70%;
	}

	span {
		display: block;
		text-align: center;
		font-size: 30px;
		color: var(--thm-color);
		font-weight: 600;
		padding: 20px 0;
	}

}

.faq-section {
	.faq-wrapper {
		display: flex;
		justify-content: center;
		align-items: center;
		flex-direction: column;
	}

	h2 {
		font-size: 50px;
		color: rgb(0, 0, 0);
		text-align: center;
		width: 100%;
		font-weight: 700;
		line-height: 60px;
	}

}

.accordion-item {
	margin-bottom: 10px;
}

.accordion-body ul li a {
	color: black;
	font-weight: 700;
}

.faq-section .accordion {
	width: 80%;
}

.accordion-button {
	background-color: rgb(238, 238, 238);
	padding: 30px 20px;
}

.accordion-button:not(.collapsed) {
	background-color: var(--thm-color);
	padding: 25px 20px;
}

.accordion-button:not(.collapsed)::after {
	background-image: none;
	transform: none;
}

.accordion-button:focus {
	box-shadow: none;
}

.accordion-button:before {
	content: "";
	position: absolute;
	/*   right: 0.75rem; */
	right: 0.75rem;
	top: 1.25rem;
	height: 2px;
	width: 1rem;
	background-color: var(--thm-black);
}

.accordion-button.collapsed:after {
	content: "";
	position: absolute;
	/*   right: 1.1875rem; */
	right: 1.1875rem;
	top: 0.8125rem;
	height: 1.0625rem;
	width: 0.125rem;
	border-style: none;
	background-color: var(--thm-text);
}

.faq-section .accordion-button h5 {

	color: var(--thm-black);
	margin-right: 13px;
}

.accordion-body {
	background-color: #ffaa1714;

	ul {
		list-style-type: none;
		list-style-type: disc;
		margin-left: 20px;
	}

	ul li {
		margin-bottom: 5px;
	}
}


.accordion-body ol {
	counter-reset: step-counter;
	list-style-type: none;
	padding-left: 0;
}

.accordion-body ol>li {
	counter-increment: step-counter;
	/* Increment custom counter */
	margin-bottom: 10px;
}

.accordion-body ol>li::before {
	content: "Steps " counter(step-counter) ": ";
	/* Custom prefix */
	font-weight: bold;
}

@media screen and (min-width: 768px) {
	/*   .faq-section .accordion {
	  width: 50%;
	  margin: 0 auto;
	} */

	.accordion-button:before {
		right: 0.75rem;
	}

	.accordion-button.collapsed:after {
		right: 1.1875rem;
	}

	.faq-section .accordion-button h5 {
		margin-right: 0px;
	}
}


.footer {
	position: relative;
	background: var(--thm-black) url(/assets/images/footer-bg.png) center top no-repeat;
}

.footer-description {
	p {
		font-size: 16px;
		color: #fff;
		margin: 32px 0;
		line-height: 27px;
		width: 90%;
	}
}

.footer_top {
	padding: 80px 0 50px 0;
	margin-bottom: 40px;

	ul {
		display: flex;
		margin-left: 0;
		padding-left: 0;
		align-items: center;

		li {
			p {
				line-height: 1.5rem;
				margin: 15px 0;
				width: 80%;
				font-weight: 300;
				margin-bottom: 0;
			}
		}
	}

}

.border-bottom {
	border-bottom: 1px solid #62544152 !important;
}

.footer-lists {
	.ul-footer {
		padding: 20px 0;
	}
}

.footer-lists ul li {
	position: relative;
	padding-left: 10px;
	/* adjust depending on icon size */
}

.footer-lists ul li::before {
	content: "\f111";
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	position: absolute;
	left: 0;
	top: 0.25rem;
	color: #eb911b;
	font-size: 0.3rem;
}


.social_media_linkss_ft ul {
	margin: 0;
	gap: 20px
}

.social_media_linkss_ft ul li a i {
	font-size: 20px;
	background: #086bc9;
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	transition: .5s;
	color: #fff
}

.social_media_linkss_ft ul li a i:hover {
	transition: .5s;
	transform: scale(1.3)
}

.social_media_linkss_ft ul li a .fa-brands.fa-linkedin-in,
.social_media_linkss_ft ul li a i.fa-brands.fa-facebook-f {
	background: #3b5998
}

.social_media_linkss_ft ul li a i.fa-brands.fa-instagram {
	background: radial-gradient(circle at 30% 107%, #fdf497 0, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%)
}

.social_media_linkss_ft ul li a i.fa-brands.fa-twitter {
	background: #1da1f2
}

.social_media_linkss_ft ul li a i.fa-brands.fa-youtube {
	background: red
}


/*--------------------------------------------------------------
  # porfolio page
  --------------------------------------------------------------*/
.portfolio-hero {
	position: relative;
	padding: 120px 0 60px 0;
	display: flex;
	align-items: center;
	width: 100%;
	min-height: 800px;
	overflow: hidden;

	h1 {
		font-size: 2.5em;
		line-height: 40px;
		color: var(--thm-color);
		font-weight: 600;
		letter-spacing: 0.05em;
		margin-bottom: 0;
		text-transform: uppercase;
	}

	p {
		font-size: 16px;
		color: #fff;
		width: 90%;
		line-height: 30px;
	}
}

.portfolio-hero::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(45deg, #000000b9 0%, color-mix(in srgb, var(--thm-black), transparent 10%) 100%), url(/assets/images/banner-inner.jpg) center center no-repeat;
	background-size: cover;
	z-index: 0;
}

.portfolio-hero .container {
	position: relative;
	z-index: 1;
}

.testimonial-hero::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(45deg, #0000006c 0%, color-mix(in srgb, var(--thm-black), transparent 10%) 100%), url(/assets/images/banner-bgs.png) center center no-repeat;
	background-size: cover;
	z-index: 0;
}

.about-hero::before {
	background: linear-gradient(45deg, #00000080 0%, color-mix(in srgb, var(--thm-black), transparent 10%) 100%), url(/assets/images/amazon-publishing2.jpg) center center no-repeat;
	filter: grayscale(20%);
}

.contact-hero::before {
	background: linear-gradient(45deg, #00000080 0%, color-mix(in srgb, var(--thm-black), transparent 10%) 100%), url(/assets/images/contact.jpg) center center no-repeat;
	filter: grayscale(20%);
	background-size: cover;

}

.test-2-sec {
	background: url(../images/pattern-2.png) center center #fff;
	padding: 100px 0;
	background-size: cover;

	p {
		color: var(--thm-text);
	}

	.col-12 {
		display: flex;
		justify-content: center;
		align-items: center;
		flex-direction: column;

		p {
			text-align: center;
		}

		h2 {
			color: var(--thm-black);
			font-size: 37px;
			line-height: 44px;
			font-weight: 700;
			word-spacing: 5px;
			text-align: center;
		}

		.thm-btn-primary {
			padding: 10px 20px;
		}
	}
}


.test-col {
	ul.list-unstyled li {
		position: relative;
		padding-left: 1.5em;
		padding-bottom: .5em;
	}

	ul.list-unstyled li::before {
		content: "\f061";
		/* Unicode for fa-arrow-right */
		font-family: "Font Awesome 6 Free";
		font-weight: 900;
		position: absolute;
		left: 0;
		top: 0.1em;
		color: #eb911b;
		font-size: 14px;
	}

}


.about-hero {
	h1 {
		font-weight: 800;
	}
}

.about-col {
	p {
		width: 70%;
	}
}

.about-sub {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;

	h3 {
		font-size: 23px;
		line-height: 25px;
		font-weight: 700;
		margin-bottom: 10px;
	}
}

.lets-connect {
	background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../images/17.jpg);

	.form-wrapper {
		width: 90%;
		background: linear-gradient(rgba(0, 0, 0), rgba(0, 0, 0, 0.5));
		border-radius: 12px;
		border-top: 0;
		padding: 0px 0px;
		margin: 0;

		h2 {
			display: none;
		}
	}
}

.cont-text {
	color: var(--default-color);

	span {
		font-size: 20px;
		color: #fff;
		display: block;
		margin: 10px 0;
	}

	ul li {
		padding-left: 20px;
		font-size: 14px;
		color: #fff;
		line-height: 16px;
		margin-bottom: 8px;
		position: relative;
	}

	ul li:after {
		position: absolute;
		content: "";
		background: #fff;
		width: 6px;
		height: 6px;
		left: 0;
		border-radius: 50%;
		top: 0;
	}
}

.services-tabs {
	background-image: linear-gradient(rgba(0, 0, 0, 0.685), rgba(0, 0, 0, 0.541)), url(../images/services.jpg);
	object-fit: cover;
	height: auto;
	background-repeat: no-repeat;
	background-size: cover;

	h2 {
		color: var(--thm-color);
		font-size: 40px;
	}

	p {
		color: #dbdada;
	}

	.text-center {
		text-align: center;
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.nav-pills .nav-link.active,
	.nav-pills .show>.nav-link {
		background: #f90;
		border-radius: 5px;
		color: var(--default-color);
	}

	.rounded-circle {
		width: 90%;
		/* border-radius: 50%; */
		filter: grayscale(1);
	}

	.nav-link {
		color: var(--default-color);
		margin-left: 20px;
		text-transform: uppercase;
	}

	.nav-pills .nav-link:hover {
		background-color: var(--thm-color);
		color: var(--default-color);
	}

	.nav-pills .nav-link.active {
		background-color: var(--thm-color);
		color: var(--default-color);
	}

	.rounded-circle img {
		transition: transform 0.3s ease;
	}

	.rounded-circle:hover img {
		transform: scale(1.05);
	}

	.tab-content {
		display: flex;
		justify-content: center;
	}

	.tab-pane {
		width: 80%;
	}
}

.seo-offer .main_wrpr h3 {
	font-size: 30px;
	color: #000;
	margin-bottom: 20px;
	font-weight: 700;
	line-height: 40px;
}

.seo-offer .main_wrpr p {
	margin: 0 0 30px;
	text-align: left;
}

.seo-offer img {
	width: 90%;
}

.seo-offer h2 {
	font-size: 42px;
	color: #000;
	line-height: 50px;
	font-weight: 700;
	margin: 0;
}

.seo-offer p {
	margin: 20px 0 50px;
}

.seo-offer.seo-sec img {
	margin: 0 auto;
	display: block;
	padding: 0 0 40px;
}

.testimonial-section {

	.arrow-parent {
		position: relative;
	}

	.testimonials-slider {
		padding: 30px 0 0 30px;
	}

	.testimonial-card {
		display: flex;
		gap: 40px;
		position: relative;
		align-items: center;
	}

	.customer-img {
		position: absolute;
		width: 210px;
		border-radius: 20px;
		height: 240px;
		object-fit: cover;
		top: 0;
		z-index: 1;
		left: -20px;
		box-shadow: rgba(50, 50, 93, 0.25) 0 13px 27px -5px, rgba(0, 0, 0, 0.3) 0 8px 16px -8px;
		overflow: hidden;
	}

	.feedbacks-img {
		position: absolute;
		left: 350px;
		bottom: 20px;
	}

	.swiper-slide {

		.customer-img,
		.feedbacks-img {
			opacity: 0;
			visibility: hidden;
			transition: .5s;
		}

		&.swiper-slide-active {

			.customer-img,
			.feedbacks-img {
				opacity: 1;
				visibility: visible;
				transition: .5s;
				transition-delay: .25s;
			}
		}
	}
}



.testimonial-thumbsSlider {
	height: 500px;

	.swiper-slide {
		.img-wrapper {
			width: 160px;
			height: 160px;

			img {
				width: 100%;
				height: 100%;
				object-fit: cover;
			}
		}
	}
}

.testimonial-section h2 {
	position: relative;
	text-align: center;
	font-size: 40px;

}

.testimonial-section h2::before {
	content: "";
	position: absolute;
	background: var(--thm-color);
	height: 3px;
	width: 40%;
	left: 0;
	right: 0;
	margin: auto;
	bottom: -10px;
	border-radius: 2px;
}

.generic-navigation {
	display: flex;
	flex-direction: column;
	height: calc(100% + 50px);
	position: absolute;
	top: -70px;
	justify-content: space-between;
	left: 80px;

	.swiper-button-next,
	.swiper-button-prev {
		position: relative;
		left: auto;
		right: auto;
		top: auto;
		bottom: auto;
		margin: 0;

		&:after {
			content: "\f282";
			font-family: bootstrap-icons !important;
			color: var(--thm-color);
			font-weight: 900;
		}
	}

	.swiper-button-next {
		&:after {
			transform: rotate(180deg);
		}
	}
}


.generic-modal {
	display: none;
	max-width: 25%;
	padding: 0;
	background-color: #f9f9f9;
	overflow: hidden;
	border-radius: 10px;

	p {
		font-size: 14px;
	}

	h2 {
		font-size: 30px;
	}

	.right-wrapper {
		padding: 2em 3em 2em 3em;
	}

	.form-control {
		margin-bottom: 1rem;
		padding: .85rem .85rem .85rem 2.5rem;
		border-radius: 8px;
		border: 1px solid #ccc;
	}

	.input-icon {
		position: relative;
	}

	.input-icon i {
		position: absolute;
		left: 10px;
		top: 50%;
		transform: translateY(-50%);
		color: #999;
	}

	.thm-btn-primary {
		border: none;
	}

	.is-close-btn {
		top: 10px !important;
		right: 10px !important;

		svg {
			stroke: #000;
		}

	}

}

label.error {
	color: red;
}

.pricing-cards {
	display: none;
}

.pricing-card {
	background-color: var(--white);
	border-radius: 0.5rem;
	border: 1px solid rgb(202, 202, 202);
	overflow: hidden;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
	;
	transition: box-shadow 0.3s;
}

.pricing-card:hover {
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);

}

.pricing-card.popular {
	transform: scale(1.05);
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
	border-color: var(--thm-color);
}

.pricing-header {
	color: var(--default-color);
	padding: 1.5rem;
	text-align: center;
	position: relative;
}

.essential-header {
	background-color: var(--thm-black);
}

.pro-header {
	background-color: var(--thm-color);
}

.complete-header {
	background-color: var(--thm-black);
}

.popular-tag {
	position: absolute;
	top: 0;
	right: 0;
	background-color: var(--thm-black);
	color: var(--white);
	font-size: 0.75rem;
	font-weight: 700;
	padding: 0.25rem 0.75rem;
	border-bottom-left-radius: 0.5rem;
}

.pricing-header h3 {
	font-size: 1.5rem;
	font-weight: 700;
}

.price {
	font-size: 2.5rem;
	font-weight: 700;
	margin-top: 1rem;
}

.price-subtitle {
	font-size: 0.875rem;
	margin-top: 0.5rem;
	opacity: 0.9;
}

.pricing-body {
	padding: 1.5rem;
}

.pricing-features {
	list-style: none;
	margin-bottom: 2rem;
	padding-left: 0;
}

.pricing-features li {
	display: flex;
	align-items: flex-start;
	margin-bottom: 1rem;
}

.pricing-features i {
	margin-right: 0.5rem;
	margin-top: 0.25rem;
	color: var(--thm-color);
}

.pricing-table {
	width: 100%;
	overflow-x: auto;
	margin-bottom: 2rem;
}

.pricing-table table {
	width: 100%;
	border-collapse: collapse;
	min-width: 700px;
}

.pricing-table th {
	background-color: var(--thm-black);
	color: var(--default-color);
	padding: 1rem;
	text-align: left;
	border: 1px solid rgb(202, 202, 202);
}

.pricing-table th.popular-column {
	background-color: var(--thm-color);
}

.pricing-table td {
	padding: 1rem;
	border: 1px solid rgb(202, 202, 202);
}

.pricing-table tr:nth-child(even) {
	background-color: #f9fafb;
}

.pricing-table tr.action-row td {
	padding: 0.5rem;
}

.pricing-table .feature-name {
	font-weight: 600;
}

.pricing-question {
	text-align: center;
	font-style: italic;
	color: var(--thm-text);
	margin-bottom: 1.5rem;
}

.pricing-cta {
	text-align: center;
}

.step-icon {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background-color: #f8f9fa;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	color: var(--thm-color);
	margin-bottom: 1rem;
}
.step-card {
	height: 100%;
	transition: all 0.3s ease;
}
.step-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

@media (min-width: 1024px) {

	.pricing-cards {
		display: flex;
		justify-content: center;
		gap: 2rem;
		margin-bottom: 3rem;
	}

	.pricing-card {
		width: 100%;
		max-width: 23rem;
	}

	.mobile-pricing {
		display: none;
	}

}