/*!
Theme Name: New Seorocket
Theme URI: http://underscores.me/
Author: latifpala
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: new-seorocket
*/

:root {
	--font-family-inter: "Inter", sans-serif;
	--font-family-inter-tight: "Inter Tight", sans-serif;
	--heading-color: #101322;
	--text-color: #364052;
	--theme-blue: #2362D5;
}

html,
body {
	overflow-x: hidden !important;
}

body {
	font-family: var(--font-family-inter);
	color: var(--text-color);
	font-size: 16px;
	font-weight: 400;
	line-height: 25px;
}

h1,
h2,
h3,
h4,
h5,
h6,
.heading,
.cta-heading {
	font-family: var(--font-family-inter-tight);
	font-weight: 600;
	color: var(--heading-color);
}

h1 {
	font-size: 28px;
	line-height: 1.2;
}

h2,
.cta-heading {
	font-size: 24px;
	line-height: 1.2;
}

h3,
.heading3 {
	font-size: 20px;
	line-height: 1.2;
}

.site-header {
	position: absolute;
	width: 100%;
	top: 50px;
	z-index: 999;
	background: transparent;
	transition: all 0.3s ease;
}

.site-header.sticky {
	position: fixed;
	top: 0;
	background: #fff;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
	padding: 0 20px;
}

.site-branding img {
	width: 140px;
	height: auto;
}

.site-header .navigation {
	max-width: 85%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 0 auto;
	background-color: #fff;
	box-shadow: 0px 1px 11px rgba(0, 0, 0, 0.06);
	border-radius: 40px;
	padding: 16px;
	transition: all 0.3s ease;
}

.site-header.sticky .navigation {
	/* padding: 20px; */
	box-shadow: none;
	max-width: 100%;
}

.site-header .navigation:has(.has-children:hover) {
	border-radius: 40px 40px 0 0;
}

/* Default header (before scroll) */
/* .site-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    background: transparent;
    transition: all 0.3s ease;
}

.site-header .navigation {
    max-width: 90%;
    margin: 0 auto;
    background-color: #fff;
    box-shadow: 0px 1px 11px rgba(0, 0, 0, 0.06);
    border-radius: 100px;
    padding: 16px;
    transition: all 0.3s ease;
}

.site-header.sticky {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.site-header.sticky .navigation {
    padding: 12px;
} */
.navbar {
	--bs-navbar-color: var(--text-color);
	--bs-navbar-hover-color: var(--theme-blue);
	--bs-navbar-active-color: var(--theme-blue);
	font-size: 15px;
	font-weight: 500;
}

.navbar a {
	text-decoration: none;
}

.offcanvas-end {
	width: 280px;
	/* change width */
	background: #ffffff;
}

.offcanvas .navbar-nav .nav-link {
	padding: 10px 0;
}

.offcanvas {
	visibility: hidden;
}

.offcanvas.show {
	visibility: visible;
}

.offcanvas-end {
	transform: translateX(100%);
}

/* .offcanvas.show {
	transform: translateX(0);
} */

.hero-layout {
	background: linear-gradient(286.54deg, rgba(244, 243, 212, 0.7) 16.49%, rgba(241, 231, 255, 0.7) 86.25%);
	margin: 15px;
	border-radius: 30px;
}

.hero1 {
	min-height: 700px !important;
}

.hero2 {
	min-height: 800px !important;
}

.banner_text {
	font-family: var(--font-family-inter);
	font-size: 18px;
	line-height: 28px;
	font-weight: 400;
	color: var(--text-color);
}

.btn-primary {
	padding: 15px 30px;
	background: var(--theme-blue);
	border-radius: 100px;
	font-weight: 600;
	font-size: 16px;
	line-height: 22px;
	color: #FFFFFF;
	background: linear-gradient(var(--theme-blue), var(--theme-blue)) padding-box,
		linear-gradient(90deg, #3E7BEB 0%, #C3D4F3 100%) border-box;
	border: 5px solid transparent;
	transition: all 0.3s ease-in-out;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	position: relative;
}

.btn-primary:hover {
	background: linear-gradient(#fff, #fff) padding-box,
		linear-gradient(90deg, #3E7BEB 0%, #C3D4F3 100%) border-box;
	color: var(--theme-blue);
}

.btn-primary::after {
	content: "";
	display: inline-block;
	width: 14px;
	height: 14px;
	background-image: url("assets/images/arrow-right.svg");
	background-size: contain;
	background-repeat: no-repeat;
	transition: transform 0.3s ease-in-out;
}

.btn-primary:hover::after {
	transform: translateX(4px);
	background-image: url("assets/images/arrow-right-blue.svg");
}

.btn-secondary {
	padding: 15px 30px;
	color: var(--theme-blue);
	border: 1px solid var(--theme-blue);
	font-weight: 500;
	font-size: 15px;
	line-height: 22px;
	transition: all 0.3s ease-in-out;
	text-decoration: none;
	border-radius: 100px;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	position: relative;
}

.btn-secondary:hover {
	background: var(--theme-blue);
	color: #fff;
}

.btn-secondary::after {
	content: "";
	display: inline-block;
	width: 14px;
	height: 14px;
	background-image: url("assets/images/arrow-right-blue.svg");
	background-size: contain;
	background-repeat: no-repeat;
	transition: transform 0.3s ease-in-out;
}

.btn-secondary:hover::after {
	transform: translateX(4px);
	background-image: url("assets/images/arrow-right.svg");
}

.btn-benefit {
	font-family: var(--font-family-inter);
	font-weight: 600;
	font-size: 16px;
	line-height: 1.4;
	color: var(--heading-color);
	text-decoration: none;
	transition: all 0.3s ease-in-out;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	position: relative;
}

.btn-benefit::after {
	content: "";
	display: inline-block;
	width: 14px;
	height: 14px;
	background-image: url("assets/images/arrow-down.png");
	background-size: contain;
	background-repeat: no-repeat;
	transition: transform 0.3s ease-in-out;
}

.btn-benefit:hover::after {
	background-image: url("assets/images/arrow-down-white.svg");
}

.btn-benefit:hover::after {
	transform: rotate(-90deg);
}

header .btn-secondary {
	padding: 10px 20px;
}

.banner_numbers_wrapper span {
	color: var(--text-color);
	font-size: 14px;
	font-family: var(--font-family-inter);
}

.banner_numbers {
	font-size: 36px;
	font-family: var(--font-family-inter-tight);
	font-weight: 600;
	text-align: center;
}

.banner_numbers sup {
	font-size: 28px;
	font-weight: 300;
}

.our-clients-wrapper .heading {
	font-size: 26px;
}

.service-card {
	padding: 25px 30px;
	border-radius: 10px;
	border: 1px solid #C3C6CB;
}

.service-card .service-icon-wrapper img {
	width: 60px;
	height: 60px;
}

.service-card .service-number {
	font-family: var(--font-family-inter-tight);
	font-size: 45px;
	font-weight: 600;
	color: rgba(16, 19, 34, 0.08);
}

.service-title {
	font-size: 26px;
}

.service-card-wrapper a {
	text-decoration: none;
}

/* .service-card-wrapper a:hover .service-title, .service-card-wrapper a:hover .service-number{
	color: var(--theme-blue);
} */
.service-card-wrapper a:hover .service-card {
	box-shadow: 0 0 2px #c3c6cb;
}

.section-layout-1 {
	margin-left: 15px;
	margin-right: 15px;
	background: linear-gradient(286.54deg, rgba(241, 231, 255, 0.7) 16.49%, rgba(244, 243, 212, 0.7) 86.25%);
	border-radius: 30px;
	padding: 50px 0;
}

.process-wrapper {
	margin: 15px;
	background: linear-gradient(286.54deg, rgba(241, 231, 255, 0.7) 16.49%, rgba(244, 243, 212, 0.7) 86.25%);
	border-radius: 30px;
	padding: 50px 0;
}

.step-item {
	position: relative;
}

.step-circle {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: relative;
	width: 150px;
	height: 150px;
	background: #fff;
	border-radius: 50%;
	box-shadow: 0px 4px 34px rgba(0, 0, 0, 0.03);
	overflow: hidden;
}

.step-circle>* {
	position: relative;
	z-index: 1;
}

.step-circle::before {
	content: "";
	position: absolute;
	inset: 0;
	background: repeating-conic-gradient(rgba(189, 158, 234, 0.18) 0deg 4deg, transparent 4deg 8deg);
	border-radius: 50%;
	z-index: 0;
}

.step-circle::after {
	content: "";
	position: absolute;
	inset: 37px;
	background: #fff;
	border-radius: 50%;
	z-index: 0;
}

.step-number {
	position: absolute;
	top: 0px;
	right: 0px;
	/* background: #101322; */
	color: #fff;
	border-radius: 50%;
	font-size: 20px;
	font-weight: 600;
	width: 45px;
	height: 45px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(#101322, #101322) padding-box, linear-gradient(90deg, #F4F3D4 0%, #F1E7FF 100%) border-box;
	border: 5px solid transparent;
	font-family: var(--font-family-inter-tight);
}

.step-title h3 {
	font-size: 20px !important;
	text-align: center;
}

.benefit-card,
.ads-benefits-card {
	position: relative;
	background: #fff;
	border-radius: 10px;
	padding: 30px;
	z-index: 1;
}

.gradient-card {
	background: linear-gradient(#fff, #fff) padding-box, linear-gradient(135deg, #DFC8FF, #F4F3D4) border-box;
	border: 4px solid transparent;
	border-radius: 10px;
	padding: 30px;
	gap: 20px;
}

.arrow-down-icon {
	height: 24px;
	width: 24px;
	margin-left: 4px;
}

.cta-wrapper {
	margin: 15px;
	background: linear-gradient(286.54deg, #F4F3D4 31.26%, #DFC8FF 77.59%);
	border-radius: 30px;
	padding: 50px 25px !important;
}

.price-card {
	position: relative;
	;
	padding: 30px 30px 40px;
	gap: 20px;
	box-shadow: 0px 1px 11px rgba(0, 0, 0, 0.06);
	z-index: 1;
	background: linear-gradient(#fff, #fff) padding-box, linear-gradient(135deg, #DFC8FF, #F4F3D4) border-box;
	border: 4px solid transparent;
	border-radius: 10px;
}

.price-card .price-card-head {
	background: linear-gradient(286.54deg, #F4F3D4 31.26%, #DFC8FF 77.59%);
	border-radius: 10px;
	padding: 10px;
}

.price-card-title h3 {
	font-size: 22px !important;
}

.price-card-sub-title {
	font-family: var(--font-family-inter);
	font-size: 16px;
	line-height: 1.2;
	color: var(--heading-color);
	font-weight: 600;
}

.price-card-sub-title span {
	font-size: 20px;
	font-family: var(--font-family-inter);
	line-height: 1.2;
	color: var(--heading-color);
	font-weight: 600;
}

.price-card-content {
	font-size: 14px !important;
}

.price-card-list ul,
.stat-list ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.price-card-list ul li,
.stat-list ul li {
	position: relative;
	padding: 14px 0 14px 35px;
	line-height: 1.4;
	border-top: 1px solid #D6DDEA;
	font-family: var(--font-family-inter);
	color: var(--heading-color);
	font-size: 16px;
	line-height: 1.2;
	font-weight: 400;
}

.stat-list ul li:first-child {
	border-top: none;
}

.price-card-list ul li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 16px;
	width: 24px;
	height: 24px;
	background-image: url('assets/images/custom-check.svg');
	background-size: contain;
	background-repeat: no-repeat;
}

.stat-list ul li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 16px;
	width: 24px;
	height: 24px;
	background-image: url('assets/images/custom-check-2.svg');
	background-size: contain;
	background-repeat: no-repeat;
}

.info-item-card {
	padding: 30px;
	border: 1px solid #C3C6CB;
	border-radius: 10px;
	gap: 25px;
}

.info-tags-items {
	padding: 8px 10px;
	background: linear-gradient(286.54deg, rgba(244, 243, 212, 0.7) 16.49%, rgba(241, 231, 255, 0.7) 86.25%);
	border-radius: 10px;
}

.info-tags-items p {
	font-family: var(--font-family-inter);
	font-weight: 600;
	font-size: 15px;
	line-height: 18px;
	text-align: center;
	color: var(--heading-color);
	margin-bottom: 0px;
}

.info-item-card .item-content p {
	margin-bottom: 0px !important;
}

.faq-title {
	text-align: center;
}

.custom-faq .accordion-button {
	font-family: var(--font-family-inter);
	color: var(--heading-color);
	font-weight: 600;
	font-size: 18px;
	line-height: 1.4;
}

.custom-faq {
	/* border: 1px solid #C3C6CB; */
	border-radius: 10px;
	overflow: hidden;
	background: #fff;
	margin-bottom: 15px;
}

.custom-faq:last-child {
	margin-bottom: 0;
}

/* .custom-faq .accordion-header {
    border: 1px solid #C3C6CB !important;
	border-radius: 10px !important;
} */
.custom-faq .accordion-button {
	background: none !important;
	border: none !important;
	box-shadow: none !important;
}

.custom-faq .accordion-item {
	border: none !important;
}

.custom-faq .accordion-collapse {
	border: none !important;
}

.custom-faq .accordion-button::after {
	display: none !important;
}

.custom-faq .accordion-button:not(.collapsed) {
	background: none;
	box-shadow: none;
	color: #111;
}

.custom-faq .accordion-button::after {
	display: none;
}

.custom-faq .accordion-button {
	position: relative;
	padding-right: 50px;
}

.custom-faq .accordion-button::before {
	content: "";
	position: absolute;
	right: 20px;
	top: 50%;
	width: 30px;
	height: 30px;
	transform: translateY(-50%);
	background-size: contain;
	background-repeat: no-repeat;
	background-image: url('assets/images/faq-open-icon.svg');
}

.custom-faq .accordion-button:not(.collapsed)::before {
	background-image: url('assets/images/faq-close-icon.svg');
}

.custom-faq .accordion-collapse .accordion-body {
	border-top: none;
	padding: 20px;
	background: #fff;
}

/*Case Main CSS Starts Here*/
.cases-main-hero {
	min-height: 500px;
	padding-bottom: 60px;
}

.page-template-page-template-acf-cases-main .banner-breadcrumb,
.single-case_study .banner-breadcrumb {
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	text-align: center;
}

/*BREADCRUMB */
.breadcrumb {
	gap: 1rem
}

.breadcrumb-item+.breadcrumb-item {
	padding: 0;
}

.breadcrumb-item+.breadcrumb-item::before {
	--bs-breadcrumb-divider: url("data:image/svg+xml,%3Csvg width='6' height='10' viewBox='0 0 6 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.75 8.75L4.75 4.75L0.75 0.75' stroke='%23364052' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	content: var(--bs-breadcrumb-divider, "/");
}

.seorocket-breadcrumb {
	display: flex;
	gap: 10px;
	margin: 0;
	padding: 0;
	background: transparent;
}

.seorocket-breadcrumb .breadcrumb-item {
	font-family: 'Inter', sans-serif;
	font-weight: 500;
	font-size: 16px;
	line-height: normal;
}

.seorocket-breadcrumb .breadcrumb-item a {
	color: #364052;
	text-decoration: none;
}

.seorocket-breadcrumb .breadcrumb-item a:hover {
	color: rgba(54, 64, 82, 0.8);
}

.seorocket-breadcrumb .breadcrumb-item.active {
	color: rgba(54, 64, 82, 0.7);
}

.item-wrapper {
	background: linear-gradient(285.13deg, rgba(244, 243, 212, 0.7) 8.66%, rgba(241, 231, 255, 0.7) 54.23%);
	border-radius: 10px;
	gap: 50px;
	padding: 20px;
}

.item-content .item-title h2 {
	font-size: 26px;
	line-height: 1.2;
}

/* Base card design */
.select-card {
	padding: 20px;
	border-radius: 12px;
	cursor: pointer;
	transition: all 0.3s ease-in-out;
	border: 3px solid transparent;
}

.odd-card {
	background: linear-gradient(286.54deg, rgba(244, 243, 212, 0.7) 16.49%, rgba(241, 231, 255, 0.7) 86.25%);
}

.even-card {
	background: #F5F5F5;
}

.case-odd {
	background: #F5F5F5;
}

.case-even {
	background: linear-gradient(286.54deg, rgba(244, 243, 212, 0.7) 16.49%, rgba(241, 231, 255, 0.7) 86.25%);
}

.select-card:hover {
	border: 3px solid #2362D5;
	/* border-color: #2362D5; */
}

.select-card:hover .btn-secondary {
	background: #2362D5;
	color: #fff;
	border-color: #2362D5;
}

.select-card:hover .btn-secondary::after {
	background-image: url("assets/images/arrow-right.svg");
	transition: all 0.3 ease-in-out;
}

.select-card h3 {
	font-family: var(--font-family-inter-tight) !important;
}

.case-single-hero {
	min-height: 500px;
}

.stats-wrapper {
	padding: 80px 65px 80px 65px;
	background: linear-gradient(286.54deg, rgba(241, 231, 255, 0.7) 16.49%, rgba(244, 243, 212, 0.7) 86.25%);
	margin: 25px;
	border-radius: 30px;
}

.stat-img img {
	padding: 30px;
	background: #fff;
}

.stat-num-title {
	font-size: 30px !important;
	line-height: 1.2 !important;
}

.stat-num-subtitle {
	font-size: 14px;
	line-height: 1.2;
}

.hero2-list ul li {
	position: relative;
	padding-left: 28px;
}

.hero2-list ul li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 2px;
	width: 20px;
	height: 20px;
	background-image: url("assets/images/check-circle.svg");
	background-size: contain;
	background-repeat: no-repeat;
}

/* .hero2 .banner-breadcrumb {
    position: absolute;
	left: 312px;
	right: auto;    
    transform: none;
    text-align: left;
    width: auto;
    bottom: 50px;
} */
.ppc-ads-btn .btn-secondary::after {
	transform: rotate(90deg);
}

.cta-ads-btns .btn-secondary,
.cta-ads-btns .btn-primary {
	padding: 15px;
}

.cta-ads-btns .btn-secondary::after {
	display: none;
}

.cta-ads-btns .btn-secondary::before {
	content: "";
	display: inline-block;
	width: 18px;
	height: 18px;
	background-image: url("assets/images/phone-logo.svg");
	background-size: contain;
	background-repeat: no-repeat;
	top: 2px;
	position: relative;
}

.cta-ads-btns .btn-secondary:hover::before {
	background-image: url("assets/images/phone-logo-white.svg");
}

.cta-ads-btns .btn-secondary:hover::before {
	transform: rotate(-15deg);
}

.cta-ads-btns .btn-secondary:hover::before {
	animation: ring 0.4s infinite alternate ease-in-out;
}

@keyframes ring {
	0% {
		transform: rotate(-15deg);
	}

	100% {
		transform: rotate(15deg);
	}
}

.cta-ads-screen-phone {
	width: 400px;
	height: 215px;
	background-repeat: no-repeat;
	background-size: contain;
	background-position: right center;
	margin-left: auto;
}

.cta-ads-screen-tv {
	background-image: url("assets/images/screens-tv.png");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: right center;
	width: 450px;
	height: 258px;
	margin-left: auto;
}

.cta-ads-elements {
	padding: 10px 15px 10px 15px;
	background: #fff;
	border-radius: 13px;
}

.element-title {
	font-family: var(--font-family-inter-tight);
	font-weight: 600;
	font-size: 22px;
	line-height: 35px;
	text-align: center;
	color: var(--heading-color);
}

.element-subtitle {
	font-family: var(--font-family-inter);
	font-style: normal;
	font-weight: 600;
	font-size: 14px;
	line-height: 19px;
	color: var(--heading-color);
}

.element-1 {
	bottom: 27px;
}

.element-2 {
	right: -62px;
	top: 100px;
}

.element-3 {
	bottom: 39px;
	left: 240px;
}

.element-4 {
	top: 60px;
	right: -77px;
}

.graph-content-wrapper {
	border: 1px solid #C3C6CB;
	background: #fff;
	border-radius: 10px;
	padding: 25px 30px;
	height: 100%;
	gap: 50px;
}

.graph-head-num {
	font-family: var(--font-family-inter-tight);
	font-weight: 600;
	font-size: 45px;
	line-height: 54px;
	text-align: right;
	color: rgba(16, 19, 34, 0.08);
}

.graph-desc {
	max-width: 70%;
}

.graph-big-img-wrapper img,
.graph-small-img-wrapper img {
	width: 100%;
	height: auto;
}

.ads-offers-card {
	border: 1px solid #C3C6CB;
	border-radius: 10px;
	padding: 30px;
	background-color: #FFFFFF;
}

.stat-title .cta-heading {
	font-size: 24px;
}

.stat-title .cta-heading span {
	font-size: 32px;
	line-height: 100%;
}

.logos-slider {
	overflow: hidden;
	position: relative;
}

.logos-track {
	gap: 60px;
	/* 	width: max-content;
    animation: scroll 25s linear infinite; */
}

/* @keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
} */
.logos-slider:hover .logos-track {
	animation-play-state: paused;
}

.logo-item {
	height: 25px;
	width: auto;
	object-fit: contain;
	transition: 0.3s ease-in-out;
	padding-left: 20px;
}

@keyframes scroll {
	0% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(-50%);
	}
}

.case-studies-grid .case-block a {
	text-decoration: none;
}

.case-item {
	height: 280px;
	padding: 30px;
	border-radius: 10px;
	overflow: hidden;
}

.case-descr {
	gap: 15px;
}

.case-descr-item {
	max-width: 130px;
}

.case-item .case-descr .case-descr-item span {
	font-family: var(--font-family-inter-tight);
	font-style: normal;
	font-weight: 600;
	font-size: 28px;
	line-height: 42px;
	color: var(--heading-color);
}

.case-item .case-descr .case-descr-item {
	font-family: var(--font-family-inter);
	font-weight: 600;
	font-size: 14px;
	line-height: 19px;
	color: var(--heading-color)
}

.case-block .case-item .case-featured-img img {
	height: 340px;
	width: auto;
	transform: translate(38%, -10px) rotate(-29deg);
	object-fit: contain;
	border-radius: 15px;
	filter: drop-shadow(0px -2px 38px rgba(0, 0, 0, 0.07));
}

.case-block .case-item .case-logo {
	bottom: 30px;
}

.case-main .case-item {
	background: #FFFFFF;
}

.case-descr .case-descr-item img {
	width: fit-content;
}

.select-card .case-block .case-item .case-descr .case-descr-item img {
	height: 23px;
	width: 132px;
}

.select-card .case-block .case-item .case-logo img {
	height: 48px;
	width: 88px;
}

.select-card .case-item {
	height: 216px;
}

.select-card .case-block .case-item .case-featured-img img {
	height: 216px;
	transform: translate(39%, -45px) rotate(-29deg);
}

.case-img-block .case-block .case-item .case-descr .case-descr-item img {
	height: 40px;
	width: 230px;
}

.case-img-block .case-item {
	height: 490px;
	width: 832px;
}

.case-img-block .case-block .case-item .case-featured-img img {
	height: 480px;
	transform: translate(39%, -25px) rotate(-25deg);
}

.new-footer {
	background: linear-gradient(286.54deg, rgba(244, 243, 212, 0.7) 16.49%, rgba(241, 231, 255, 0.7) 86.25%);
	margin: 35px 15px 15px 15px;
	border-radius: 30px;
}

.new-footer .widget-row {
	padding: 40px 0 30px 0;
	border-bottom: 1px solid #D9D9D9;
	margin: 0 20px;
}

.footer-logo {
	width: 179px;
	height: 35px;
}

.footer-1 p {
	font-size: 14px;
	font-weight: 400;
	line-height: 28px;
}

.widget-title {
	font-family: var(--font-family-inter-tight);
	font-weight: 600;
	font-size: 16px;
	color: var(--heading-color);
	padding-bottom: 20px;
}

.footer-menu ul.menu {
	padding-left: 0;
	list-style-type: none;
}

.footer-menu li {
	padding-bottom: 20px;
}

.footer-menu li a {
	color: var(--text-color);
	font-size: 15px;
	font-weight: 500;
	text-decoration: none;
}

.footer-menu li a:hover,
.footer-contact-info li a:hover {
	color: var(--theme-blue);
	text-decoration: underline;
}

.widget_custom_html .widget-title {
	display: none;
}

.footer-contact-info {
	list-style-type: none;
	padding-left: 30px;
	position: relative;
}

.footer-contact-info li {
	padding-bottom: 10px;
}

.footer-contact-info li a {
	font-size: 15px;
	color: var(--heading-color);
	font-weight: 500;
	line-height: 22px;
	text-decoration: none;
}

.footer-4 p {
	font-size: 15px;
}

.footer-social {
	list-style-type: none;
	padding-left: 0;
	display: flex;
	gap: 15px;
}

.footer-email::before {
	background-image: url(assets/images/email-icon.svg);
	content: '';
	position: absolute;
	width: 17px;
	height: 14px;
	left: 0;
	background-repeat: no-repeat;
	background-size: cover;
	top: 8px;
}

.footer-phone::before {
	background-image: url(assets/images/call-icon.svg);
	content: '';
	position: absolute;
	width: 17px;
	height: 17px;
	left: 0;
	background-repeat: no-repeat;
	background-size: cover;
	top: 40px;
}

.copyright-row {
	padding: 20px 40px;
}

.copyright-row p {
	font-size: 14px;
}

.copyright-row li a {
	font-size: 14px;
	font-weight: 400;
	text-decoration: none;
	color: var(--text-color);
}

.copyright-row li a:hover {
	color: var(--theme-blue);
	text-decoration: underline;
}

.left-content-with-carousel {
	background: linear-gradient(286.54deg, rgba(244, 243, 212, 0.7) 16.49%, rgba(241, 231, 255, 0.7) 86.25%);
	border-radius: 30px;
	margin: 15px;
	padding: 50px 15px;
}

.left-content-with-carousel.testimonial-wrapper {
	background: linear-gradient(286.54deg, rgba(244, 243, 212, 0.7) 16.49%, rgba(241, 231, 255, 0.7) 86.25%);
}

.left-content-with-carousel .carousel-number {
	font-family: var(--font-family-inter-tight);
	font-weight: 600;
	font-size: 28px;
	color: var(--heading-color);
	line-height: 1;
}

.left-content-with-carousel .carousel-number-heading {
	font-size: 14px;
	font-weight: 600;
	color: var(--heading-color);
}

.left-content-with-carousel .carousel-number-subheading {
	font-size: 12px;
	font-weight: 400;
	color: var(--heading-color);
}

.slider-item__img {
	height: auto;
	margin-left: 20px;
	margin-right: 20px;
	position: relative;
	margin-bottom: -50px;
	display: flex;
	justify-content: center;
	background: linear-gradient(286.54deg, #F4F3D4 31.26%, #DFC8FF 77.59%);
	border-radius: 10px;
	width: auto;
}

.slider-item__img img {
	width: 150px;
	height: auto;
}

.slider-item__img>.image-link {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: center;
}

.slider-item__content {
	display: flex;
	padding: 0 20px 20px 20px;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	gap: 32px;
	align-self: stretch;
	border-radius: 24px;
	background: #fff;
	height: auto !important;
}

.slider-container .slick-next,
.slider-container .slick-prev {
	border: 0;
	background: transparent;
	font-size: 0;
	line-height: 0;
	width: 38px;
	height: 38px;
	padding: 0;
	cursor: pointer;
	outline: none;
	z-index: 2;
	text-align: center;
	min-width: auto;
	display: block;
}

.slider-container .slick-prev {
	order: 1;
	margin-right: 10px;
}

.slider-container .slick-next {
	order: 2;
	margin-left: 10px;
}

.slider-container .slick-list {
	margin-bottom: 30px;
}

/* .slider-container .slick-next {
	right: 0;
	position: absolute;
	top: 50%;
}
.slider-container .slick-prev {
	position: absolute;
	top: 50%;
	left: -5%;
} */
/* .slick-next::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 28px;
  height: 28px;
  font-size: 28px;
} */
.slider-container .slider-wrapper .slider-item {
	width: auto;
	display: inline-block;
}

.slider-height-placeholder {
	width: 100%;
}

.slider-wrapper .img-height {
	height: 57px;
}

.slider-item__description .heading {
	font-size: 22px;
	margin-bottom: 20px;
}

.slider-item__content-testimonial {
	background-color: #fff;
	padding: 30px;
	border-radius: 10px;
	box-shadow: 0px 1px 0px rgba(0, 0, 0, 0.1);
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.testimonial-slider-heading {
	font-size: 26px;
	margin-bottom: 40px;
	margin-top: 40px;
	text-align: left;
}

.user_designation {
	font-size: 14px;
	line-height: 1;
}

.accordion-item {
	position: relative;
	border: 1px solid #C3C6CB !important;
	border-radius: 10px;
	/* your desired radius */
	overflow: hidden;
	/* important to clip the inner background */
}

.accordion-item:has(.accordion-button:not(.collapsed)) {
	border: 3px solid transparent !important;
	background: linear-gradient(white, white) padding-box,
		linear-gradient(286.54deg, rgba(244, 243, 212, 0.7) 16.49%, rgba(241, 231, 255, 0.7) 86.25%) border-box;
	box-shadow: 0px 1px 11px rgba(0, 0, 0, 0.06);
}

/* .accordion-item:has(.accordion-collapse.show) .accordion-header {
    border: none !important;
} */
.case-carousel-slick .slick-list {
	overflow: visible !important;
}

.case-carousel-slick .slick-slide {
	transition: transform .3s ease;
}

.banner-general {
	min-height: 400px;
	padding-bottom: 60px;
}

.hero-title {
	margin-top: 50px;
}

.step-arrow svg {
	transform: rotate(90deg);
	width: 40px;
}

.benefits-title-img img {
	width: 150px;
}

.case-logo-main img {
	width: 140px;
}

.offer-logo img {
	width: 150px;
	height: 150px;
}

/* Make header layout stable */
.navigation {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
}

.navbar-toggler {
	border: none;
	background: #fff;
	border-radius: 12px;
	z-index: 999;
}

.navbar-toggler-icon {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3E%3Cpath stroke='black' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.text-left {
	text-align: left !important;
}

/* MOBILE OFFCANVAS STYLING */
#mobileMenu {
	background: #fff;
	padding: 20px;
	border: none;
}

#mobileMenu .mobile-logo img {
	max-width: 140px;
	height: auto;
}

.mobile-logo a {
	display: block;
}

.btn-close {
	width: 18px;
	height: 18px;
	background-size: 10px;
	border: 2px solid #ddd;
	border-radius: 50%;
	padding: 0;
	opacity: 1;
}

.btn-close:hover {
	opacity: .8;
}

#mobileMenu .navbar-nav .nav-link {
	color: #000;
	font-size: 16px;
	line-height: 29px;
	text-transform: capitalize;
	font-weight: 600;
	padding: 14px 0;
	display: block;
}

#mobileMenu .navbar-nav li {
	border-bottom: 1px solid #ededed;
	padding-bottom: 4px;
	margin-bottom: 4px;
}

#mobileMenu .navbar-nav .nav-link:hover {
	color: #000;
	text-decoration: none;
}

#mobileMenu ul {
	padding: 0;
	margin: 0;
}

#mobileMenu .navbar-nav .nav-link,
#mobileMenu .navbar-nav .nav-link:focus,
#mobileMenu .navbar-nav .nav-link:active,
#mobileMenu .navbar-nav .nav-link:hover {
	text-decoration: none !important;
	border: none !important;
}

#mobileMenu a {
	text-decoration: none !important;
}

.margin-bottom {
	margin-bottom: 50px !important;
}

.padding-bottom {
	padding-bottom: 50px !important;
}

/* .mouse-icon-wrapper{
	position: relative;
}
.mouse-icon-wrapper::after{
	content: "";
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	top: -27px;
	width: 73px;
	height: 73px;
	background: #fff;
	border-radius: 50%;
	z-index: 1;
} */
/* .mouse-icon-wrapper::before{
	content: "";
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	top: -27px;
	width: 73px;
	height: 73px;
	background: url(assets/images/mouse.svg) center center no-repeat;
	z-index: 2;
}
 */

.hero-divider {
	position: relative;
	background-image: url("assets/images/divider.svg");
	width: 185px;
	height: 51px;
	background-repeat: no-repeat;
	background-position: center bottom;
	background-size: cover;
	left: 50%;
	bottom: 130px;
	transform: translateX(-50%);
}

.mouse-icon-wrapper {
	position: absolute;
	left: 52%;
	top: 10px;
	/* adjust based on icon size */
	transform: translateX(-50%);
	background: #fff;
	/* matches background so it overlaps cleanly */
	padding: 8px 12px;
	border-radius: 50px;
}

.mouse-icon-wrapper img {
	width: 21px;
	/* icon size */
	height: auto;
}

.mouse-img {
	width: 40px;
	animation: upDown 1.6s infinite ease-in-out;
}

@keyframes upDown {

	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(8px);
	}
}

.case-carousel-slick .slick-slide {
	padding-right: 20px;
}

.case-carousel-slick .slick-slide {
	max-width: 407px;
}

@media screen and (min-width: 576px) {
	.case-block .case-item .case-featured-img img {
		transform: translate(48%, -10px) rotate(-29deg);
	}

	.slider-container .slider-wrapper .slider-item {
		width: 300px;
	}
}

@media screen and (min-width: 768px) {
	.logo-item {
		height: 40px;
		padding-left: 50px;
	}

	.slider-container .slider-wrapper .slider-item {
		width: 407px !important;
		margin-right: 20px;
	}

	.slider-item__img img {
		width: 200px;
	}

	.case-block .case-item .case-featured-img img {
		transform: translate(52%, -10px) rotate(-29deg);
	}

	.margin-bottom {
		margin-bottom: 80px !important;
	}

	.padding-bottom {
		padding-bottom: 80px !important;
	}
}

@media screen and (min-width: 992px) {
	h1 {
		font-size: 40px;
	}

	h2,
	.cta-heading {
		font-size: 32px;
	}

	h3,
	.heading3 {
		font-size: 24px;
	}

	.hero-layout {
		margin: 25px;
	}

	.site-header .navigation {
		padding: 0 24px;
		max-width: 90%;
	}

	.section-layout-1 {
		margin: 25px;
		padding: 80px 0;
	}

	.process-wrapper {
		margin: 25px;
		padding: 80px 0;
	}

	.step-title h3 {
		font-size: 22px !important;
	}

	.step-arrow svg {
		transform: none;
		width: 50px;
	}

	.benefits-title-img img {
		width: 200px;
	}

	.left-content-with-carousel .carousel-number {
		font-size: 40px;
	}

	.cta-wrapper {
		margin: 25px;
		padding: 70px 65px;
	}

	.case-item {
		height: 380px;
	}

	.case-block .case-item .case-featured-img img {
		transform: translate(48%, -10px) rotate(-29deg);
	}

	.price-list-wrapper .col-lg-4:nth-child(1) .price-card {
		margin-top: 80px;
	}

	.price-list-wrapper .col-lg-4:nth-child(2) .price-card {
		margin-top: 0;
	}

	.price-list-wrapper .col-lg-4:nth-child(3) .price-card {
		margin-top: 60px;
	}

	.price-card-title h3 {
		font-size: 30px !important;
	}

	.price-card-sub-title span {
		font-size: 22px;
	}

	.faq-title {
		text-align: left;
	}

	.custom-faq .accordion-button {
		font-size: 22px;
	}

	.custom-faq .accordion-button::before {
		width: 30px;
		height: 30px;
	}

	.graph-content-wrapper {
		gap: 100px;
	}

	.stat-title .cta-heading {
		font-size: 30px;
	}

	.stat-title .cta-heading span {
		font-size: 45px;
	}

	.new-footer .widget-row {
		margin: 0 40px;
	}

	.single-case_study .stat-numbers {
		max-width: 30%;
	}
}

@media screen and (min-width: 1200px) {
	.slider-right-content .slick-initialized .slick-slide.slick-current {
		/* padding-right: 20px; */
		width: auto !important;
	}

	h1 {
		font-size: 45px;
	}

	h2,
	.cta-heading {
		font-size: 38px;
	}

	h3,
	.heading3 {
		font-size: 26px;
	}

	.banner_numbers {
		font-size: 45px;
	}

	.banner_numbers sup {
		font-size: 40px;
	}

	.benefits-title-img img {
		width: 235px;
	}

	.left-content-with-carousel {
		margin: 25px;
		padding: 80px 65px 40px 65px;
	}

	.testimonial-slider-heading {
		margin-top: 0;
	}

	.slider-container .slick-prev {
		display: none !important;
	}

	.slider-container .slick-slider {
		position: initial;
		text-align: left !important;
	}

	.slider-right-content {
		position: relative;
		flex-basis: 50%;
		width: 50%;
	}

	.slider-container {
		overflow: hidden;
		position: absolute;
		width: 235%;
		height: 100%;
		overflow: hidden;
		z-index: 2;
		top: 0;
		padding-left: 180px;
	}

	.slick-slider {
		position: relative;
		display: block;
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
		-webkit-user-select: none;
		-moz-user-select: none;
		-ms-user-select: none;
		user-select: none;
		-webkit-touch-callout: none;
		-khtml-user-select: none;
		-ms-touch-action: pan-y;
		touch-action: pan-y;
		-webkit-tap-highlight-color: transparent;
	}

	.slider-container .slick-next {
		left: 5%;
		position: absolute;
		top: 40%;

	}

	.slider-container .slick-next img {
		transform: none !important;
	}

	.case-item .case-descr .case-descr-item span {
		font-size: 35px;
	}

	.case-block .case-item .case-featured-img img {
		transform: translate(55%, -10px) rotate(-29deg);
	}

	.case-logo-main img {
		width: 220px;
	}

	.hero2 {
		min-height: 900px !important;
	}

	.ads-benefits-content {
		max-width: 65%;
	}

	.cta-ads-btns .btn-secondary,
	.cta-ads-btns .btn-primary {
		padding: 10px 20px;
	}

	.cta-ads-screen-phone {
		width: 500px;
		height: 315px;
	}

	.element-title {
		font-size: 29px;
	}

	.offer-logo img {
		width: 250px;
		height: 250px;
	}

	.site-header .navigation {
		max-width: 94%;
	}

	.case-single-hero {
		min-height: 1020px;
	}

	.stat-num-title {
		font-size: 40px !important;
	}

	.single-case_study .stat-numbers {
		max-width: 100%;
	}
}

@media screen and (min-width: 1400px) {
	.site-header .navigation {
		max-width: 1300px;
	}

	.step-circle {
		width: 200px;
		height: 200px;
	}

	.step-title h3 {
		font-size: 27px !important;
	}

	.step-arrow svg {
		transform: none;
		width: 80px;
	}

	.step-number {
		top: -10px;
		font-size: 23px;
		width: 54px;
		height: 54px;
	}
}

/* Blog CSS */
.search-form-wrapper {
	max-width: 415px;
	width: 100%;
	margin: 0 auto;
}

.search-form {
	position: relative;
}

.search-form-field {
	height: 54px;
	border: 1px solid #00000033;
	border-radius: 3rem;
	padding-inline-start: 1.875rem;
	padding-inline-end: 4rem;
	width: 100%;
	display: block;
	font-size: .9375rem;
}

.search-form-action {
	position: absolute;
	inset-inline-end: .5rem;
	top: 0;
	bottom: 0;
	background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTExIDE5QzE1LjQxODMgMTkgMTkgMTUuNDE4MyAxOSAxMUMxOSA2LjU4MTcyIDE1LjQxODMgMyAxMSAzQzYuNTgxNzIgMyAzIDYuNTgxNzIgMyAxMUMzIDE1LjQxODMgNi41ODE3MiAxOSAxMSAxOVoiIHN0cm9rZT0iIzIzNjJENSIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPHBhdGggZD0iTTIwLjk5OTkgMjFMMTYuNjQ5OSAxNi42NSIgc3Ryb2tlPSIjMjM2MkQ1IiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8L3N2Zz4K);
	background-repeat: no-repeat;
	background-position: center;
	background-repeat: no-repeat;
	border: none;
	padding: 0;
	background-color: transparent;
	width: 60px;
	font-size: 0;
	text-indent: -9999px;
}

.post-card {
	display: flex;
	flex-direction: column;
	gap: 1.875rem;
	border-radius: .625rem;
	padding: 1.25rem;
	height: 100%;
	background: linear-gradient(135deg, #F4F3D4 0%, #F1E7FF 100%);
	border: 3px solid transparent;
}

.post-card:hover {
	border-color: #2362D5;
}

.post-card-list .row [class*="col-"]:nth-child(odd):not(:first-child) .post-card {
	background: #F5F5F5;
}

@media (min-width:1200px) {
	.post-card-horizontal {
		flex-direction: row;
		align-items: center;
		gap: 3rem;
	}

	.post-card-horizontal .post-card-head {
		flex: 0 0 50%;
		max-width: 50%;
	}
}

.post-card-head .media {
	aspect-ratio: 16/9;
	border-radius: .625rem;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #fff;
}

.post-card-tag {
	background-color: #fff;
	font-size: .9375rem;
	font-weight: 600;
	padding: .3125rem .875rem;
	border-radius: .625rem;
}

.post-card-title {
	font-size: calc(clamp(1.25rem, 0.382vw + 1.166rem, 1.625rem));
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.post-card-description {
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.post-card-title a {
	color: currentColor;
	text-decoration: none;
}

.date span {
	line-height: 1;
}

/* Author Page */

.author-profile {
	max-width: 900px;
	margin: 0 auto;
	text-align: center;
}

.profile {
	display: inline-flex;
	align-items: center;
	gap: 1.875rem;
}

.profile__media {
	--size: 100px;
	width: var(--size);
	height: var(--size);
	flex: 0 0 var(--size);
	border-radius: 50%;
	background-color: #fff;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
}

.profile__media img {
	max-height: 100%;
	max-width: 100%;
}

.profile__content {
	flex: 1;
	text-align: start;
}

.profile-name {
	font-size: calc(clamp(1.75rem, 1.083vw + 1.513rem, 2.813rem));
	font-weight: 600;
	display: block;
	line-height: normal;
	color: #000;
	margin-bottom: .25rem;
}

.profile-name a {
	color: currentColor;
	text-decoration: none;
}

.profile-tag {
	font-size: 1.125rem;
	display: block;
	line-height: normal;
}

.profile-summary {
	font-size: 1.125rem;
	line-height: 1.6;
}

@media (max-width:1200px) {
	.profile {
		gap: 1rem;
	}

	.profile-summary,
	.profile-tag {
		font-size: 1rem;
	}

	.profile-name {
		font-size: 1.125rem;
	}

	.profile__media {
		--size: 70px;
	}
}


.btn-link {
	color: var(--theme-blue);
	font-weight: 600;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: .5rem;
}

.btn-link svg {
	transition: transform 0.3s ease-in-out;
}

.btn-link:hover {
	color: #000;
}

.btn-link:hover svg {
	transform: translateX(4px);
}

.card-media {
	padding: .25rem;
	border-radius: .625rem;
	overflow: hidden;
	background:
		linear-gradient(135deg, #F4F3D4, #DFC8FF) border-box,
		#ffffff padding-box;
}

.card-media .media {
	background-color: #fff;
	border-radius: .625rem;
	padding: 1rem;
	aspect-ratio: 367/277;
	display: flex;
	align-items: center;
	justify-content: center;
}

.post-card-head .media img {
	max-height: 100%;
	max-width: 100%;
	width: auto !important;
	height: auto !important;
}

.card-media .media img {
	max-height: 100%;
	max-width: 100%;
}

.btns-group {
	gap: .5rem 1.5rem;
}


.contact-section .container-fluid {
	max-width: 1500px;
	margin: 0 auto;
}

.contact-cards {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
	margin-top: 66px;
}

.contact-card {
	display: flex;
	align-items: center;
	gap: 1.25rem;
	padding: 1.25rem;
	border-radius: .625rem;
	background: linear-gradient(135deg, #F4F3D4 0%, #F1E7FF 100%);
}

.contact-card-icon {
	--size: 80px;
	width: var(--size);
	height: var(--size);
	flex: 0 0 var(--size);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #fff;
}

.contact-card-details h4 {
	font-size: 1.5rem;
	font-weight: 600;
}

.contact-card-details p,
.contact-card-details a {
	color: currentColor;
	font-size: 1.125rem;
	text-decoration: none;
}

.form-wrapper {
	background: linear-gradient(50deg, #F4F3D4 0%, #F1E7FF 100%);
	border-radius: 30px;
	padding: 5rem 4rem;
	margin: 0 15px;
}

@media (max-width:1200px) {
	.contact-cards {
		margin-top: 0;
		margin-bottom: 1.25rem;
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		grid-gap: 1.25rem;
	}
}

@media (max-width:767px) {
	.contact-cards {
		grid-template-columns: repeat(1, 1fr);
	}

	.contact-card-details h4 {
		font-size: 1.125rem;
		margin: 0;
	}

	.contact-card-details p,
	.contact-card-details a {
		font-size: 1rem;
	}

	.contact-card-icon img {
		max-width: 24px;
	}

	.contact-card-icon {
		--size: 50px;
	}
}

@media (max-width:1200px) {
	.form-wrapper {
		border-radius: 20px;
		padding: 1.5rem;
	}
}

.form-wrapper .wpcf7-form p {
	margin: 0;
}

.form-wrapper .wpcf7-form label {
	font-weight: 600;
	font-size: 1.125rem;
	display: block;
	margin-bottom: .5rem;
	color: #101322;
}

.form-wrapper .wpcf7-form textarea {
	width: 100%;
	display: block;
	border: 1px solid #00000033;
	border-radius: .625rem;
	padding: .5rem 1rem;
	background-color: #fff;
	color: #000;
	height: 120px;
}

.form-wrapper .wpcf7-form input:not(.btn-primary) {
	width: 100%;
	display: block;
	border: 1px solid #00000033;
	border-radius: 3rem;
	height: 48px;
	padding: 0 1rem;
	background-color: #fff;
	color: #000;
}

.form-wrapper .wpcf7-form input[type="checkbox"] {
	width: 24px;
	height: 24px;
	border-radius: 5px;
	background: #fff;
	cursor: pointer;
	padding: 0;
}

.form-wrapper .wpcf7-form input[type="checkbox"]:not(:checked) {
	-webkit-appearance: none;
	appearance: none;
}

.form-wrapper .cf7-checkbox label {
	display: inline-flex;
	flex-wrap: wrap;
	align-items: center;
	gap: .5rem;
	font-size: .9375rem;
	font-weight: normal;
}

.form-wrapper .cf7-checkbox .wpcf7-list-item {
	margin: 0;
}

.form-wrapper .cf7-checkbox label a {
	color: currentColor;
}

.form-wrapper .wpcf7-form input.btn-primary {
	background-image: url("assets/images/arrow-right.svg");
	background-size: 14px 14px;
	background-repeat: no-repeat;
	background-position: right 20px center;
	background-color: var(--bs-btn-active-bg);
	padding-right: 3rem;
}

.form-wrapper .wpcf7-form input.btn-primary:hover {
	background-color: transparent;
	background-image: url("assets/images/arrow-right-blue.svg");
}

/* POST DETAILS */

.post-detail-hero .entry-header {
	max-width: 835px;
	margin: 0 auto;
}

.post-detail-img {
	aspect-ratio: 16/9;
	display: flex;
	justify-content: center;
	align-items: center;
	justify-content: center;
	border-radius: .625rem;
	background-color: #fff;
	overflow: hidden;
}

.post-detail-img img {
	max-height: 100%;
	max-width: 100%;
	width: auto !important;
	height: auto !important;
}

.entry-header .profile {
	gap: .9375rem;
}

.entry-header .profile__media {
	--size: 45px;
}

.entry-header .profile__media a {
	height: 100%;
	width: 100%;
}

.entry-header .profile__media img {
	max-height: 100%;
	max-width: 100%;
}

.entry-header .profile-name {
	font-size: 1rem;
}

.entry-header .profile-tag {
	font-size: .875rem;
}

.detail-panel {
	display: flex;
	grid-gap: 3.125rem;
	align-items: start;
}

@media (max-width:1360px) {
	.detail-panel {
		grid-template-columns: 165px 1fr;
	}
}

@media (max-width:800px) {
	.detail-panel {
		flex-direction: column;
	}
}

.detail-panel__body {
	flex: 1;
	width: 100%;
}

.detail-panel__aside {
	border-right: 1px solid #E0E0E0;
	padding-right: 1.25rem;
	position: sticky;
	top: 7rem;
	background-color: #fff;
	height: fit-content;
	flex: 0 0 165px;
	max-width: 165px;
}

@media (max-width:800px) {
	.detail-panel__aside {
		border: 1px solid #E0E0E0;
		padding: 1.25rem;
		position: relative;
		top: 0;
		border-radius: .625rem;
		flex: 1;
		max-width: 100%;
		width: 100%;
	}
}

.asidebar h3 {
	font-size: 1.125rem;
	margin-bottom: 1.25rem;
}

.aside-links {
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
	list-style: none;
}

.aside-links li a {
	font-size: .9375rem;
	font-weight: 500;
	color: #364052;
	text-decoration: none;
	line-height: 1.4;
	display: block;
}

.aside-links li a:hover,
.aside-links li a.is-current {
	color: #2362D5;
}

.cms-post p {
	margin-bottom: 1.875rem;
}

.cms-post h2 {
	margin-bottom: 1.875rem;
}

.cms-post h3 {
	margin-bottom: 1.25rem;
}

.cms-post h4 {
	margin-bottom: 1rem;
}

.cms-post ul {
	padding-left: 0;
	list-style: none;
	margin-bottom: 1.875rem;
}

.cms-post ul ul {
	margin-top: 1rem;
	margin-bottom: 0;
}

.cms-post ul li p {
	margin: 0;
}

.cms-post ul li {
	padding-left: 35px;
	padding-bottom: 15px;
	margin-bottom: 15px;
	border-bottom: 1px solid #D6DDEA;
	position: relative;
}

.cms-post ul li::before {
	content: "";
	background-image: url('./assets/images/check-icon.svg');
	background-repeat: no-repeat;
	background-position: 0;
	width: 24px;
	height: 24px;
	flex: 0 0 24px;
	position: absolute;
	left: 0;
	top: 0;
}

.cms-post ul li:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}

.content-wrap {
	background: linear-gradient(135deg, #F4F3D4 0%, #DFC8FF 100%);
	padding: 4px;
	border-radius: .625rem;
}

.content-wrap-in {
	background-color: #fff;
	color: var(--bs-body-color);
	border-radius: .625rem;
	padding: 1.5rem;
}

.single-post {
	overflow: unset !important;
}

.post-tags {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: .625rem;
	list-style: none;
	padding: 0;
	margin: 0;
}

.social-share {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	padding: 0;
	margin: 0;
	gap: .9375rem;
}

.social-share-item {
	margin: 0 !important;
}

.post-tag {
	display: inline-block;
	vertical-align: middle;
	background: linear-gradient(305deg,
			#F4F3D4 21.15%,
			#F1E7FF 87.02%);
	color: #000;
	padding: .3125rem .875rem;
	border-radius: .625rem;
	font-size: .9375rem;
	font-weight: 600;
	text-decoration: none;
}

.social-link {
	width: 38px;
	height: 38px;
	flex: 0 0 38px;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 5px;
	background: linear-gradient(305deg,
			#F4F3D4 21.15%,
			#F1E7FF 87.02%);
	color: #364052;
}

.post-author {
	background: linear-gradient(286.54deg, #F4F3D4 31.26%, #DFC8FF 77.59%);
	padding: 2.5rem;
	border-radius: 2rem;
}

.post-author-head .title {
	font-size: 26px;
	font-weight: 600;
	color: var(--heading-color);
}

@media (max-width:800px) {
	.post-author {
		padding: 1.25rem;
	}

	.post-author-head .title {
		font-size: 20px;
	}
}

.post-author .profile {
	gap: .9375rem;
}

.post-author .profile__media {
	--size: 54px;
}

.post-author .profile__media a {
	width: 100%;
	height: 100%;
}

.post-author .profile-name {
	font-size: 1.125rem;
}

.post-author .profile-tag {
	font-size: .875rem;
}

.wpcf7-spinner {
	display: none !important;
}

.article-card {
	padding-bottom: 1.5rem;
}

.toc-title {
	font-size: 1.125rem;
	margin-bottom: 1.25rem;
	font-weight: 600;
	color: var(--heading-color);
}

.block-title {
	font-weight: 600;
	color: var(--heading-color);
	font-size: 1rem;
}



@media (max-width:1199px) {
	.site-header {
		position: sticky;
		top: 0;
		box-shadow: 0px 1px 11px rgba(0, 0, 0, 0.06);
		background-color: #fff;
		padding: 16px !important;
	}

	.site-header.sticky {
		padding: 0;
	}

	.site-header .navigation {
		border-radius: 0;
		max-width: 100%;
		padding: 0 !important;
		box-shadow: none;
	}

	.top-header {
		padding-bottom: .75rem;
		margin-bottom: .75rem;
		border-bottom: 1px solid #BEC6CD;
	}

	.top-header .contact-number {
		color: var(--theme-blue);
		text-decoration: none;
		font-size: 1rem;
		display: inline-flex;
		align-items: center;
		gap: .5rem;
	}

	.hero1 {
		min-height: inherit !important;
	}

	.hero-layout {
		padding: 3rem 0 5rem !important;
		min-height: inherit !important;
	}
}

@media (max-width:767px) {
	.hero-layout {
		padding: 2.5rem 0 !important;
	}
}

/* NEW CSS */
.navigation {
	transform: rotate(0deg);
}

.social-links {
	display: flex;
	align-items: center;
	gap: .875rem;
	margin-top: 1.5rem;
	list-style: none;
	padding-left: 0;
}

.info-row {
	display: flex;
	align-items: center;
	gap: .5rem;
	margin-bottom: .875rem;
	color: #000 !important;
}

.info-row.email:before {
	background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHZpZXdCb3g9IjAgMCAyMCAyMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTE4LjMzMzIgNS4wMDAwMUMxOC4zMzMyIDQuMDgzMzQgMTcuNTgzMiAzLjMzMzM0IDE2LjY2NjUgMy4zMzMzNEgzLjMzMzE3QzIuNDE2NSAzLjMzMzM0IDEuNjY2NSA0LjA4MzM0IDEuNjY2NSA1LjAwMDAxTTE4LjMzMzIgNS4wMDAwMVYxNUMxOC4zMzMyIDE1LjkxNjcgMTcuNTgzMiAxNi42NjY3IDE2LjY2NjUgMTYuNjY2N0gzLjMzMzE3QzIuNDE2NSAxNi42NjY3IDEuNjY2NSAxNS45MTY3IDEuNjY2NSAxNVY1LjAwMDAxTTE4LjMzMzIgNS4wMDAwMUw5Ljk5OTg0IDEwLjgzMzNMMS42NjY1IDUuMDAwMDEiIHN0cm9rZT0iIzEwMTMyMiIgc3Ryb2tlLXdpZHRoPSIxLjUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8L3N2Zz4K);
}

.info-row.phone:before {
	background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHZpZXdCb3g9IjAgMCAyMCAyMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTE4LjMzMzIgMTQuMVYxNi42QzE4LjMzNDEgMTYuODMyMSAxOC4yODY2IDE3LjA2MTggMTguMTkzNiAxNy4yNzQ1QzE4LjEwMDYgMTcuNDg3MSAxNy45NjQzIDE3LjY3OCAxNy43OTMzIDE3LjgzNDlDMTcuNjIyMiAxNy45OTE4IDE3LjQyMDMgMTguMTExMiAxNy4yMDA1IDE4LjE4NTZDMTYuOTgwNiAxOC4yNiAxNi43NDc3IDE4LjI4NzYgMTYuNTE2NSAxOC4yNjY3QzEzLjk1MjIgMTcuOTg4IDExLjQ4OSAxNy4xMTE4IDkuMzI0ODYgMTUuNzA4M0M3LjMxMTM5IDE0LjQyODkgNS42MDQzMSAxMi43MjE4IDQuMzI0ODYgMTAuNzA4M0MyLjkxNjUxIDguNTM0MzUgMi4wNDAwNyA2LjA1OTE3IDEuNzY2NTMgMy40ODMzNEMxLjc0NTcgMy4yNTI5IDEuNzczMDkgMy4wMjA2NCAxLjg0Njk1IDIuODAxMzZDMS45MjA4IDIuNTgyMDggMi4wMzk1MSAyLjM4MDU4IDIuMTk1NSAyLjIwOTY5QzIuMzUxNSAyLjAzODggMi41NDEzNyAxLjkwMjI3IDIuNzUzMDIgMS44MDg3OEMyLjk2NDY4IDEuNzE1MjkgMy4xOTM0OCAxLjY2Njg5IDMuNDI0ODYgMS42NjY2OEg1LjkyNDg2QzYuMzI5MjggMS42NjI3IDYuNzIxMzYgMS44MDU5MSA3LjAyOCAyLjA2OTYyQzcuMzM0NjQgMi4zMzMzMyA3LjUzNDkzIDIuNjk5NTUgNy41OTE1MyAzLjEwMDAxQzcuNjk3MDUgMy45MDAwNiA3Ljg5Mjc0IDQuNjg1NjIgOC4xNzQ4NiA1LjQ0MTY4QzguMjg2OTggNS43Mzk5NSA4LjMxMTI1IDYuMDY0MSA4LjI0NDc4IDYuMzc1NzRDOC4xNzgzMiA2LjY4NzM4IDguMDIzOTIgNi45NzM0NCA3Ljc5OTg2IDcuMjAwMDFMNi43NDE1MyA4LjI1ODM0QzcuOTI3ODMgMTAuMzQ0NiA5LjY1NTI0IDEyLjA3MiAxMS43NDE1IDEzLjI1ODNMMTIuNzk5OSAxMi4yQzEzLjAyNjQgMTEuOTc2IDEzLjMxMjUgMTEuODIxNiAxMy42MjQxIDExLjc1NTFDMTMuOTM1OCAxMS42ODg2IDE0LjI1OTkgMTEuNzEyOSAxNC41NTgyIDExLjgyNUMxNS4zMTQzIDEyLjEwNzEgMTYuMDk5OCAxMi4zMDI4IDE2Ljg5OTkgMTIuNDA4M0MxNy4zMDQ3IDEyLjQ2NTUgMTcuNjc0NCAxMi42NjkzIDE3LjkzODYgMTIuOTgxM0MxOC4yMDI5IDEzLjI5MzIgMTguMzQzMyAxMy42OTEzIDE4LjMzMzIgMTQuMVoiIHN0cm9rZT0iYmxhY2siIHN0cm9rZS13aWR0aD0iMS41IiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPC9zdmc+Cg==);
}

.info-row:before {
	content: "";
	display: block;
	--size: 24px;
	width: var(--size);
	height: var(--size);
	flex: 0 0 var(--size);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	background-size: 20px 20px;
}

.mega-block-title {
	margin-bottom: 1.5rem;
	font-weight: 600;
	color: #101322;
	text-transform: inherit;
	font-size: 1rem;
}

.mega-menu a {
	color: currentColor;
}

/* CUSTOM MEGA MENU CSS */
.highlight-box {
	background: linear-gradient(286.54deg, rgba(244, 243, 212, 0.7) 16.49%, rgba(241, 231, 255, 0.7) 86.25%);
	padding: 1rem 1.25rem;
	border-radius: 1.25rem;
	margin-top: 2.5rem;
}

.mega-menu {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	font-size: 15px;
	color: #364052;
	font-weight: 500;
	list-style: none;
	padding-left: 0;
	margin: 0;
	gap: 1.5rem;
}

.mega-menu-link {
	line-height: 5;
	display: block;
	border-top: 2px solid transparent;
}

.mega-menu-link:hover,
.is-current .mega-menu-link,
.mega-menu-list li a:hover {
	color: #2362D5;
	border-color: currentColor;
}

.mega-menu-list li a {
	line-height: 1.25;
	display: block;
}

.mega-sub-menu {
	position: fixed;
	left: 0;
	right: 0;
	top: 100%;
	background-color: #fff;
	color: #364052;
	border-radius: 0 0 40px 40px;
	box-shadow: 0 1px 11px #0000000F;
	overflow: hidden;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: .25s ease-in-out all;
	transform: translateY(20px);
}

.has-children:hover>.mega-sub-menu {
	opacity: 1;
	visibility: visible;
	pointer-events: all;
	transform: translateY(0px);
}

.column-group {
	display: flex;
	gap: 2.625rem;
}

.column-group .column {
	flex: 1;
	border-right: 1px solid #E8E8E8;
	padding-right: 1.25rem;
}

.column-group .column:last-child {
	border-right: none;
	padding-right: 0;
}

.mega-menu-list {
	padding-left: 0;
	list-style: none;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: .75rem;
}

.mega-sub-menu .block-title {
	font-weight: 600;
	font-size: 15px;
	color: #364052;
	margin-bottom: 1rem;
	line-height: 1.2;
}

.mega-menu-row {
	display: flex;
}

.mega-menu-column {
	flex: 1;
	padding: 1.875rem;
}

.mega-menu-column:last-child {
	flex: 0 0 315px;
	max-width: 315px;
	background: linear-gradient(286.54deg, rgba(244, 243, 212, 0.7) 16.49%, rgba(241, 231, 255, 0.7) 86.25%);
	padding: 1.875rem;
}

.menu-media {
	border-radius: 1rem;
	overflow: hidden;
}

.menu-media img {
	max-height: 200px;
	max-width: 100%;
}

@media (max-width: 1199px) {
	.offcanvas-header .btn-close {
		border: none;
		background-size: 15px;
		width: 30px;
		height: 30px;
	}

	.mega-menu {
		display: flex !important;
		flex-direction: column;
		align-items: flex-start;
		gap: 0;
		margin: 0;
	}

	.mega-menu-item {
		border-bottom: 1px solid #BEC6CD;
	}

	.mega-menu-link {
		line-height: 2;
		border-top: none;
		padding: .875rem 0;
		font-size: 18px;
	}

	.mega-sub-menu {
		position: relative;
		opacity: 1;
		visibility: visible;
		pointer-events: all;
		transform: none;
		top: 0;
		box-shadow: none;
		border-radius: 0;
		display: none;
		margin-bottom: 1.125rem;
		flex: 0 0 100%;
	}

	.mega-menu-row,
	.column-group {
		flex-direction: column;
	}

	.mega-menu-column {
		padding: 0;
	}

	.column-group {
		gap: 1.25rem;
	}

	.column-group .column {
		border-right: none;
		padding-right: 0;
	}

	.mega-menu-column:last-child {
		flex: 1;
		max-width: 100%;
		border-radius: 1rem;
	}

	.highlight-box {
		margin: 1rem 0;
	}

	.has-children.is-current>.mega-sub-menu {
		display: block;
	}

	.mega-menu-item {
		width: 100%;
	}

	.has-children {
		display: flex;
		align-items: center;
		justify-content: space-between;
		flex-wrap: wrap;
	}

	.has-children .mega-menu-link {
		display: flex;
		align-items: center;
		justify-content: space-between;
		flex-wrap: wrap;
	}

	.has-children .dropdown-trigger {
		width: 30px;
		height: 30px;
		background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAOpJREFUSEvt0iFOA0EYhuGnKcXU4zkBvicoQQAXwEFNa0jBI1BQBYZguAAJTRFV6EqugOoFEAQDO8msoOky05AGs2sm2Xz/+2a+fxrW/DXWzFcLkg3XFf2pog628JSgHGKO2bJc1Q628Yp2cR7guUKyj0e8Ywdvi7kqQfj/gCN8IoCmC8NdTLCB++IWPXzlCkIuSO5wHCW7eImAAB9jM8JPqmrMeaY36OMDexFawm8x+G1HOYIwP8JplDTRKvZzhfPUM8oVBE4ADiPwGmcpeNlzTq7MXMZ9XOQOrXKDXOaPXC1I1lZX9P8VfQNp2h4Z3lpZOwAAAABJRU5ErkJggg==);
		background-repeat: no-repeat;
		background-color: #fff;
		background-position: center;
		background-size: 24px;
		transition: .25s ease-in-out all;
		cursor: pointer;
	}

	.has-children.is-current .dropdown-trigger {
		transform: rotate(-180deg);
	}
}

@media (max-width: 800px) {

	details summary,
	.kaina-title,
	table tr td,
	table tr th {
		font-size: 14px !important;
	}

	.kaina-content .kaina-table tbody td {
		font-size: 14px !important;
	}

	.kaina-content .kaina-table tbody td,
	.kaina-content .kaina-table thead th {
		padding: 10px 10px !important;
	}

	.detail-panel .kaina-accordion summary {
		padding: 10px 10px !important;
	}

	.detail-panel .kaina-accordion .kaina-content {
		padding: 0 14px 14px !important;
	}

	.detail-panel .kaina-price {
		white-space: normal !important;
	}

	.detail-panel .kaina-title strong {
		font-size: 14px !important;
	}
}

@media (min-width:1199px) {
	.cases-main-hero {
		padding-top: 10rem !important;
		display: block !important;
	}
}

@media (max-width:767px) {
	.entry-header .profile-name {
		font-size: 14px;
	}

	.entry-header .date {
		font-size: 14px;
		white-space: nowrap;
	}

	.entry-header .profile__media {
		--size: 36px;
	}
}

figure {
	width: 100% !important;
}

img {
	max-width: 100% !important;
}

figure img {
	width: auto !important;
	height: auto !important;
}

.pagination-wrapper ul {
	flex-wrap: wrap;
	justify-content: center;
}

.social-share-item::before {
	display: none !important;
}