*,
*:before,
*:after {
	box-sizing: border-box;
}

html,
body,
div,
span,
object,
iframe,
figure,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
code,
em,
img,
small,
strike,
strong,
tt,
b,
u,
i,
ol,
ul,
li,
fieldset,
form,
label,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
main,
canvas,
embed,
footer,
header,
nav,
section,
video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
	text-size-adjust: none;
}

footer,
header,
nav,
section,
main {
	display: block;
}

blockquote,
q {
	quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: "";
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

input {
	-webkit-appearance: none;
	border-radius: 0;
	outline: none;
}

ul {
	list-style: none;
}

button {
	outline: none;
	border: none;
}

a {
	text-decoration: none;
}

body::-webkit-scrollbar {
	width: 8px;
}

body::-webkit-scrollbar-track {
	background: #EFF6FF;
}

body::-webkit-scrollbar-thumb {
	background-color: #3685FB;
	border-radius: 20px;
}

body {
	font-family: Regular;
	color: #030712;
}

.h1 {
	font-size: 72px;
	line-height: 1.1;
	font-family: Medium;
}

.h2 {
	font-size: 60px;
	line-height: 1.3;
	font-family: Medium;
}

.h3 {
	font-size: 44px;
	line-height: 1.3;
	font-family: Medium;
}

.h4 {
	font-size: 24px;
	line-height: 1.4;
	font-family: Medium;
}

.subtitle {
	font-size: 18px;
	line-height: 1.5;
}

@media (max-width: 768px) {
	.h1 {
		font-size: 48px;
		line-height: 56px;
	}

	.h2 {
		font-size: 22px;
	}

	.h3 {
		font-size: 22px;
	}

	.subtitle {
		font-size: 16px;
		line-height: 24px;
	}
}

.text {
	font-size: 16px;
	line-height: 1.5;
	font-family: Medium;
	color: #6B7280;
}

.text-sm {
	font-size: 14px;
	line-height: 1.4;
	color: #4B5563;
}

.accent {
	color: #155EEF;
}

.btn {
	display: flex;
	justify-content: center;
	padding: 12px 24px;
	border: 1px solid #155EEF;
	border-radius: 100px;
	background-color: #155EEF;
	width: max-content;
	transition: ease 0.3s;
	font-family: Medium;
	color: white;
}

.btn:hover {
	background-color: #DAEBFF;
	color: #155EEF;
}

.btn-outlined {
	display: flex;
	justify-content: center;
	padding: 12px 24px;
	border: 1px solid #155EEF;
	border-radius: 100px;
	background-color: #DAEBFF;
	width: max-content;
	transition: ease 0.3s;
	font-family: Medium;
	color: #155EEF;
}

.btn-outlined:hover {
	background-color: #155EEF;
	color: white;
}

.btn-light {
	display: flex;
	justify-content: center;
	padding: 12px 24px;
	border: 1px solid #DAEBFF;
	border-radius: 100px;
	background-color: #DAEBFF;
	width: max-content;
	transition: ease 0.3s;
	font-family: Medium;
	color: #155EEF;
}

.btn-light:hover {
	background-color: #155EEF;
	color: white;
}

.btn-transparent {
	display: flex;
	justify-content: center;
	padding: 12px 24px;
	border: 1px solid transparent;
	border-radius: 100px;
	background-color: transparent;
	width: max-content;
	transition: ease 0.3s;
	font-family: Medium;
	color: #030712;
}

.btn-transparent:hover {
	background-color: #DAEBFF;
	border: 1px solid #155EEF;
}

@media (max-width: 480px) {

	.btn,
	.btn-outlined,
	.btn-light,
	.btn-transparent {
		width: 100%;
	}
}

.tagline {
	color: #3685FB;
	background-color: white;
	border: 1px solid #BDDCFF;
	width: fit-content;
	font-size: Medium;
	border-radius: 20px;
	font-size: 14px;
	line-height: 20px;
	padding: 4px 12px;
	text-align: center;
}

.highlight-blue,
.highlight-sky {
	background-color: #BDDCFF;
	padding: 2px 6px;
	border-radius: 8px;
	display: inline;
	box-decoration-break: clone;
	-webkit-box-decoration-break: clone;
	line-height: 1.5;
}

.highlight-sky {
	background-color: #C5EFFF;
}

.grecaptcha-badge {
	visibility: hidden !important;
}

@media (max-width: 768px) {
	.tagline {
		font-size: 12px;
		line-height: 20px;
	}
}

.form {
	width: 100%;
	border-top: 1px solid #E5E7EB;
}

.form label {
	margin-bottom: 8px;
	color: #030712;
}

.form-group {
	margin-top: 24px;
	display: flex;
	flex-direction: column;
}

.form-group-inner {
	display: flex;
	gap: 24px;
}

.input {
	width: 100%;
	height: 48px;
	padding: 12px;
	border: 1px solid #D1D5DB;
	border-radius: 8px;
	color: #9CA3AF;
	transition: all 0.4s;
}

.input:hover {
	border: 1px solid #9CA3AF;
}

.input:focus {
	border: 1px solid #155EEF;
	color: #030712;
}

.form-btn {
	margin: 40px auto 0 0;
	display: flex;
	align-items: center;
	gap: 4px;
}

.form-btn:hover {
	cursor: pointer;
	background: #030712;
	border: 1px solid #030712;
	color: white;
}

@media (max-width: 768px) {
	.form-group-inner {
		display: flex;
		flex-direction: column;
		gap: 12px;
	}

	.form-btn {
		width: 100%;
		margin: 24px auto 0 auto;
	}
}

html,
body {
	overflow-x: clip;
}

@font-face {
	font-family: "Medium";
	src: url("../fonts/inter_tight_medium.woff2") format("woff2");
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Regular";
	src: url("../fonts/inter_tight_regular.woff2") format("woff2");
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

header {
	position: fixed;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	max-width: 1920px;
	width: 100%;
	z-index: 21;
	transition: ease 0.3s;
}

.header-is-moving {
	background-color: white;
}

.header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	max-width: 1264px;
	padding: 16px 0px;
	margin: 0 auto;
}

.main-menu {
	display: flex;
	align-items: center;
	gap: 24px;
}

.header-btns {
	display: flex;
	gap: 16px;
}

.header-btns .btn,
.header-btns .btn-transparent {
	padding: 10px 16px;
	font-size: 14px;
	font-family: Regular;
}

.nav-link {
	color: #030712;
	transition: ease 0.3s;
}

.nav-link:visited {
	color: #030712;
}

.nav-link:hover {
	color: #155EEF;
}

.logotype {
	display: flex;
}

.logotype-white,
.burger {
	display: none;
}

.mobile-menu {
	display: none;
}

@media (max-width: 1100px) {
	.header-btns {
		display: none;
	}
}

@media (max-width: 768px) {
	.header {
		padding: 12px 16px;
	}

	.burger {
		display: block;
		padding: 10px 9px;
		max-height: 34px;
	}

	.burger span {
		transition: ease 0.3s;
		display: flex;
		width: 16px;
		height: 2.12px;
		background-color: #28303F;
		border-radius: 50px;
		margin-bottom: 4px;
	}

	.burger span:first-of-type {
		width: 9px;
	}

	.burger span:last-of-type {
		width: 9px;
		margin: 0 0 0 auto;
	}

	.mobile-menu-show {
		display: flex;
	}

	.mobile-menu {
		position: fixed;
		left: 0;
		top: 0;
		right: 0;
		bottom: 0;
		background-color: #030712;
		z-index: 20;
		flex-direction: column;
		color: white;
		padding-top: 65px;
	}

	.nav-link {
		color: white;
	}

	.nav-link:visited {
		color: white;
	}

	.nav-link:hover {
		color: white;
	}

	.main-menu {
		flex-direction: column;
		align-items: flex-start;
		padding: 24px 16px 16px 16px;
	}

	.header-btns {
		display: flex;
		flex-direction: column;
		gap: 12px;
		margin: auto 0 24px;
	}

	.header-btns .btn,
	.header-btns .btn-transparent {
		padding: 12px 24px;
		margin: 0 16px;
		width: calc(100% - 32px);
	}

	.header-btns .btn-transparent {
		background-color: #DAEBFF;
		color: #155EEF;
	}

	.mobile-menu-show .logotype {
		display: none;
	}

	.mobile-menu-show .logotype-white {
		display: flex;
		width: 140px;
		height: 18px;
	}

	.mobile-menu-show .burger {
		background-color: #FFF;
	}

	.mobile-menu-show .burger span {
		width: 16px;
	}

	.mobile-menu-show .burger span:nth-child(1) {
		transform: rotate(45deg) translate(5px, 4px);
	}

	.mobile-menu-show .burger span:nth-child(2) {
		opacity: 0;
	}

	.mobile-menu-show .burger span:nth-child(3) {
		transform: rotate(-48deg) translate(4.4px, -3.4px);
	}

	.mobile-menu-show.header-is-moving {
		background-color: #030712;
	}

	.mobile-menu-show .header {
		border-bottom: 1px solid #1F2937;
	}
}

footer {
	max-width: 1920px;
	margin: 0 auto;
	background-color: #030712;
}

.footer {
	display: flex;
	justify-content: space-between;
	max-width: 1264px;
	padding: 64px 32px 40px;
	margin: 0 auto;
	color: white;
}

.foo-logo {
	margin-bottom: 32px;
}

.foo-icon {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background-color: #1F2937;
	display: flex;
	align-items: center;
	justify-content: center;
}

.foo-icon svg {
	width: 12px;
	height: 12px;
}

.foo-contact-row {
	display: flex;
	align-items: center;
	gap: 12px;
}

.foo-contact-row:nth-child(2) {
	margin-bottom: 16px;
}

.foo-link {
	color: white;
	font-size: 14px;
	transition: ease 0.3s;
}

.foo-link:visited {
	color: white;
}

.foo-link:hover {
	color: #3685FB;
}

.foo-col-title {
	margin-bottom: 24px;
}

.foo-menu {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.foo-social-row {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 16px;
}

.foo-social-row svg {
	width: 24px;
	height: 24px;
}

.foo-bottom {
	text-align: center;
	padding: 24px 0 24px;
	border-top: 1px solid #374151;
}

@media (max-width: 768px) {
	.footer {
		padding: 40px 16px 0;
		flex-direction: column;
	}

	.foo-col {
		margin-bottom: 40px;
	}
}

.modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	justify-content: center;
	align-items: center;
	z-index: 1000;
}

.modal-content {
	position: relative;
	background: white;
	padding: 40px;
	border-radius: 16px;
	max-width: 680px;
	max-height: 90dvh;
	overflow-y: scroll;
	width: calc(100% - 32px);
	scrollbar-width: none;
	ms-overflow-style: -ms-autohiding-scrollbar;
}

.modal-content::-webkit-scrollbar {
	display: none;
}

.close-btn {
	position: absolute;
	top: 16px;
	right: 16px;
	border: 1px solid #E5E7EB;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	background: white;
	transition: ease 0.3s;
}

.close-btn svg {
	width: 12px;
	height: 12px;
	fill: #030712;
	transition: ease 0.3s;
}

.close-btn:hover {
	cursor: pointer;
	background: #DAEBFF;
	border: 1px solid #BDDCFF;
}

.close-btn:hover svg {
	fill: #155EEF;
}

.modal-head {
	max-width: 480px;
	margin-bottom: 24px;
}

.modal-head .h2 {
	max-width: 90%;
	font-size: 48px;
}

.modal-head .subtitle {
	margin-top: 16px;
	color: #4B5563;
}


#modal .modal-content {
	padding: 0;
	border-radius: 20px;
	max-width: 930px;
	width: 100%;
	display: flex;
	align-items: stretch;
}

#modal .modal-content .close-btn {
	display: none;
}

#modal .modal-content .modal-head {
	background: #ECF2FE;
	padding: 30px;
	margin: 0;
	/*height: 100%;*/
}

#modal .modal-content .modal-head+div {
	padding: 30px;
}

#modal .modal-content .modal-head h2 {
	font-size: 32px;
	max-width: 100%;
	letter-spacing: -0.96px;
	line-height: 42px;
	margin-bottom: 18px;
}

#modal .modal-content .modal-head p {
	font-size: 18px;
	line-height: 27px;
	margin-bottom: 16px;
}

#modal .modal-content .modal-head ul {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

#modal .modal-content .modal-head ul li {
	font-size: 18px;
	line-height: 27px;
	display: flex;
	gap: 8px;
}

#modal .modal-content .modal-head ul li::before {
	content: '';
	background-image: url(../images/check-circle.svg);
	background-repeat: no-repeat;
	background-size: contain;
	display: block;
	min-width: 18px;
	height: 18px;
	margin-top: 5px;
}

@media only screen and (max-width:767px) {
	#modal .modal-content {
		flex-direction: column;
	}

	.hero.contact .main {
		align-items: stretch;
	}

	#modal .modal-content .modal-head {
		max-width: 100%;
	}
}

@media (max-width: 768px) {
	.modal-content {
		padding: 16px;
		border-radius: 8px;
	}

	.modal-head .h2 {
		max-width: 80%;
		font-size: 22px;
	}
}

/* Form */
.cform-row {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -15px;
}

.cform-col {
	width: 100%;
	padding: 0 15px;
	margin: 0 0 20px;
}

.cform-col-50 {
	width: 50%;
	display: flex;
	flex-wrap: wrap;
}

.cform-col-nmargin {
	margin: 0;
}

.cform-row input {
	width: 100%;
	font-size: 15px;
	color: #252c3e;
	border: 1px solid #f5f5f5;
	border-radius: 50px;
	background-color: #f5f5f5;
	outline: none;
	padding: 15px 20px;
	line-height: 1;
}

.cform-row label {
	font-size: 15px;
	color: #000000;
	font-weight: 500;
	display: block;
	margin: 0 0 10px;
	width: 100%;
	font-family: 'Medium';
}

.cform-row label small {
	color: red;
}

.cform-form {
	padding: 20px 0 0;
}

.cform-form button {
	width: 100%;
	background-color: #155eef;
	padding: 10px 20px;
	border-radius: 50px;
	color: #FFF;
	font-size: 15px;
	cursor: pointer;
	transition: all .3s ease-in-out;
	position: relative;
	z-index: 100;
}

.cform-form button:hover {
	transform: scale(1.05);
}

.contact-form-step2 {
	padding: 0 0 0;
	/* display: none; */
}

.hero.contact .main {
	align-items: flex-start !important;
}

.hero-form {
	position: relative;
}

.contact-form-loading {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgb(255 255 255 / 50%);
}

.contact-form-loading>div {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
}

.contact-form-loading svg {
	width: 80px;
	height: auto;
}

.cform-progress ul {
	display: flex;
	justify-content: center;
	gap: 60px;
	margin-bottom: 0;
	margin-top: 20px;
	position: relative;
}

.cform-progress ul::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 60px;
	height: 3px;
	background-color: #D1D5DB;
	z-index: 0;
	transition: all 0.3s ease-in-out;
}

.cform-progress.active ul::before {
	background-color: #155EEF;
}

.cform-progress li {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	background-color: #FFFFFF;
	transition: all 0.3s ease-in-out;
	border: 3px solid #D1D5DB;
}

.cform-progress li.active {
	border-color: #155EEF;
}

.cform-progress li.active label {
	color: #155EEF;
}

.cform-progress li label {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	font-size: 14px;
	color: #a6a7a8;
	line-height: 1;
}

.cform-buttons {
	display: none;
}

.cform-buttons .cform-col {
	display: flex;
	gap: 20px;
}

.cform-buttons button {
	width: calc(100% / 2 - 20px);
}

.cform-row input.error {
	border: 1px solid red;
}

#modal .modal-content .modal-head+div.form-right {
	flex-grow: 1;
}

.cform-form .notes {
	font-size: 12px;
	line-height: 18px;
	margin: 0px
}



@media (max-width: 767px) {
	.cform-col-50 {
		width: 100%;
	}

	.hero.contact .main .right {
		width: 100%;
	}

	.cform-form iframe {
		max-width: 100% !important;
	}

	.cform-form .g-recaptcha>div iframe,
	.cform-form .g-recaptcha>div {
		max-width: 100% !important;
	}

	.cform-col {
		padding: 0 10px;
	}

	.cform-form #calendly-embed-element {
		max-width: 100% !important;
		min-width: 100% !important;
	}
}

.cform-progress {
	text-align: center;
	margin: 24px 0 32px;
}

.cform-progress .progress-track {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	gap: 60px;
}

.cform-progress .progress-line {
	position: absolute;
	top: 50%;
	left: 20%;
	right: 20%;
	height: 4px;
	background-color: #e5e7eb;
	transform: translateY(-50%);
	z-index: 1;
	transition: background-color 0.3s ease;
}

.cform-progress .progress-step {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #e5e7eb;
	color: #6b7280;
	font-family: "Medium";
	font-size: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2;
	transition: all 0.3s ease;
}

.cform-progress .progress-step.active {
	background: #155eef;
	color: #fff;
	box-shadow: 0 0 0 4px rgba(21, 94, 239, 0.2);
}

.cform-progress .progress-step.completed {
	background: #12a250;
	color: #fff;
	box-shadow: 0 0 0 4px rgba(18, 162, 80, 0.2);
}

.cform-progress .progress-labels {
	display: flex;
	justify-content: space-between;
	max-width: 300px;
	margin: 8px auto 0;
}

.cform-progress .step-label {
	font-size: 14px;
	color: #6b7280;
	transition: color 0.3s ease, font-weight 0.3s ease;
}

.cform-progress .step-label.active {
	color: #155eef;
	font-weight: 600;
}

.hero-form input[type="text"],
.hero-form input[type="email"],
.hero-form input[type="tel"],
.hero-form textarea {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid #d1d5db;
	border-radius: 8px;
	font-size: 16px;
	line-height: 22px;
	transition: all 0.25s ease;
	background-color: #f9fafb;
}

.hero-form input:focus,
.hero-form textarea:focus {
	border-color: #155eef;
	background-color: #fff;
	box-shadow: 0 0 0 3px rgba(21, 94, 239, 0.15);
	outline: none;
}

.hero-form label {
	display: block;
	font-size: 14px;
	font-weight: 600;
	color: #374151;
	margin-bottom: 6px;
}

.hero-form button.cform-next,
.hero-form button[type="submit"] {
	background: #155eef;
	border: none;
	color: #fff;
	font-weight: 600;
	border-radius: 10px;
	padding: 12px 20px;
	cursor: pointer;
	transition: background-color 0.25s ease;
	width: 100%;
}

.hero-form button:hover {
	background: #124cd4;
}

.step-label.completed::after {
	content: " ✔";
	color: #12a250; /* green checkmark */
	font-weight: 700;
	margin-left: 4px;
}


html {
	margin: 0!important;
}

div#wpadminbar {
	top: auto;
	bottom: 0;
}

.hero2 {
	position: relative;
	max-width: 1920px;
	margin: 0 auto 60px;
	overflow: clip;
}

.hero2-bg {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	object-fit: cover;
}

.hero2-wrap {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 128px 32px 0;
	margin: 0 auto;
}

.hero2-h1 {
	text-align: center;
	margin: 20px 0;
}

.hero2-subtitle {
	color: #4B5563;
	text-align: center;
	max-width: 800px;
}

.hero2-btns {
	display: flex;
	gap: 12px;
	margin: 40px 0 56px;
}

.hero2-filter {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 100px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, white 100%);
}

.hero2-img {
	width: 1220px;
	aspect-ratio: 1220/500;
	overflow: hidden;
}
.hero2-img img {
	border-radius: 12px 12px 0 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top;
}

@media (max-width: 1300px) {
	.hero2-img {
		width: 94vw;
	}
}
@media (max-width: 768px) {
	.hero2 {
		margin: 0 auto 48px;
	}
	.hero2-wrap {
		padding: 104px 16px 0;
	}
	.hero2-btns {
		margin: 40px 0;
	}
	.hero2-img {
		border-radius: 6px 6px 0 0;
		padding: 3px 3px 0 3px;
	}
	.hero2-img img {
		border-radius: 4px 4px 0 0;
	}
	.hero2-filter {
		height: 30px;
	}
	.hero2-h1 {
		font-size: 40px;
		margin-top: 0;
	}
}
@media (max-width: 480px) {
	.hero2-btns {
		flex-direction: column;
		width: 100%;
	}
}

.hero {
	position: relative;
	max-width: 1920px;
	margin: 0 auto 140px;
	overflow: clip;
}

.hero-bg {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	object-fit: cover;
}

.hero-wrap {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 128px 32px 0;
	margin: 0 auto;
	max-width: 864px;
}

.hero-h1 {
	text-align: center;
	margin: 20px 0;
}

.hero-subtitle {
	color: #4B5563;
	text-align: center;
	max-width: 640px;
}

.hero-btns {
	display: flex;
	gap: 12px;
	margin: 40px 0 56px;
}

.hero-filter {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 100px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, white 100%);
}

.hero-img {
	width: 1220px;
	aspect-ratio: 1220/500;
	border-radius: 20px 20px 0 0;
	backdrop-filter: blur(8px);
	background: rgba(255, 255, 255, 0.16);
	padding: 10px 10px 0 10px;
	overflow: hidden;
}
.hero-img img {
	border-radius: 12px 12px 0 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top;
}

@media (max-width: 1300px) {
	.hero-img {
		width: 94vw;
	}
}
@media (max-width: 768px) {
	.hero {
		margin: 0 auto 48px;
	}
	.hero-wrap {
		padding: 104px 16px 0;
	}
	.hero-wrap .tagline {
		padding: 4px 9px;
	}
	.hero-btns {
		margin: 40px 0;
	}
	.hero-img {
		border-radius: 6px 6px 0 0;
		padding: 3px 3px 0 3px;
	}
	.hero-img img {
		border-radius: 4px 4px 0 0;
	}
	.hero-filter {
		height: 30px;
	}
}
@media (max-width: 480px) {
	.hero-btns {
		flex-direction: column;
		width: 100%;
	}
}


.logo {
	margin: 16px auto 40px;
	max-width: 1176px;
}

.logo-header {
	font-size: 24px;
	line-height: 1.4;
	font-family: Medium;
	color: #6B7280;
	margin: 0 auto 40px;
	width: max-content;
	max-width: 600px;
}

.logos-wrapper {
	transition-timing-function: linear !important;
}

.logo-slide {
	width: 144px;
	height: 100px;
}
.logo-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

@media (max-width: 768px) {
	.logo {
		margin: 38px 0 64px;
	}
	.logo-header {
		margin-bottom: 8px;
		font-size: 16px;
	}
	.logo-slide {
		width: 140px;
		height: 70px;
	}
}


.cards-slider {
	margin: 120px auto 160px;
	max-width: 1264px;
	padding: 0 32px;
}

.cards-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 48px;
}

.cards-swiper {
	overflow: unset;
}

.card-slide {
	padding: 24px;
	width: 384px;
	border: 1px solid #E5E7EB;
	border-radius: 12px;
	transition: ease 0.3s;
	height: unset;
}

.card-icon {
	transition: ease 0.3s;
	border: 1px solid #E5E7EB;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.card-title {
	transition: ease 0.3s;
	margin: 24px 0 12px;
}

.card-desc {
	transition: ease 0.3s;
	font-family: Medium;
	line-height: 1.5;
	color: #6B7280;
}

.card-slide.swiper-slide-active {
	background-color: #155EEF;
}
.card-slide.swiper-slide-active .card-icon {
	background: white;
}
.card-slide.swiper-slide-active .card-icon img {
	filter: brightness(0) saturate(100%) invert(40%) sepia(104%) saturate(1884%) hue-rotate(214deg) brightness(105%) contrast(104%);
}
.card-slide.swiper-slide-active .card-title, .card-slide.swiper-slide-active .card-desc {
	color: white;
}

.card-slide:hover {
	background-color: #155EEF;
	cursor: pointer;
}
.card-slide:hover .card-icon {
	background: white;
}
.card-slide:hover .card-icon img {
	filter: brightness(0) saturate(100%) invert(40%) sepia(104%) saturate(1884%) hue-rotate(214deg) brightness(105%) contrast(104%);
}
.card-slide:hover .card-title, .card-slide:hover .card-desc {
	color: white;
}

.swiper-navs {
	width: 104px;
	height: 48px;
	position: relative;
}

.swiper-button-prev {
	left: unset;
	top: 0;
	margin-top: unset;
}

.swiper-button-next {
	right: 0;
	top: 0;
	margin-top: unset;
}

.swiper-button-prev:after, .swiper-button-next:after {
	display: none;
}

.swiper-nav {
	width: 48px;
	height: 48px;
	border: 1px solid #D1D5DB;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.swiper-nav svg {
	height: 10px;
	width: 6px;
}

.swiper-button-prev svg {
	transform: rotate(180deg);
}

@media (max-width: 768px) {
	.cards-slider {
		padding: 0 16px;
		margin: 64px 0;
	}
	.swiper-navs {
		width: 72px;
		min-width: 72px;
		height: 32px;
	}
	.swiper-nav {
		width: 32px;
		height: 32px;
	}
	.cards-head {
		margin-bottom: 24px;
		align-items: flex-end;
	}
	.card-slide {
		width: 100%;
	}
	.card-slide:first-child {
		background-color: transparent;
	}
	.card-slide:first-child .card-icon {
		background: white;
	}
	.card-slide:first-child .card-icon img {
		filter: unset;
	}
	.card-slide:first-child .card-title {
		color: #030712;
	}
	.card-slide:first-child .card-desc {
		color: #6B7280;
		font-size: 16px !important;
		transition: unset;
	}
	.card-slide:hover {
		background-color: white;
	}
	.card-slide:hover .card-icon {
		background: white;
	}
	.card-slide:hover .card-icon img {
		filter: unset;
	}
	.card-slide:hover .card-title, .card-slide:hover .card-desc {
		color: #030712;
	}
	.card-slide.card-slide.swiper-slide-active {
		background-color: white;
	}
	.card-slide.card-slide.swiper-slide-active .card-icon {
		background: white;
	}
	.card-slide.card-slide.swiper-slide-active .card-icon img {
		filter: unset;
	}
	.card-slide.card-slide.swiper-slide-active .card-title, .card-slide.card-slide.swiper-slide-active .card-desc {
		color: #030712;
	}
}


.grid-section {
	margin: 160px auto;
	max-width: 1264px;
	padding: 0 32px;
}

.grid-top {
	display: flex;
	justify-content: space-between;
	gap: 32px;
	margin-bottom: 80px;
}

.grid-box {
	max-width: 370px;
}

.grid-text {
	color: #4B5563;
	font-family: Medium;
	line-height: 1.5;
}

.grid-btns {
	display: flex;
	gap: 12px;
	margin-top: 24px;
}
.grid-btns .btn:hover {
	border: 1px solid #DAEBFF;
}

.grid-row {
	margin: 56px 0;
	display: flex;
	gap: 32px;
	justify-content: space-between;
	align-items: center;
}

.grid-reverse {
	flex-direction: row-reverse;
}

.grid-col {
	max-width: 520px;
}
.grid-col .h3 {
	margin-bottom: 24px;
}
.grid-col img {
	border-radius: 16px;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.grid-col-text {
	padding-left: 24px;
}

@media (max-width: 768px) {
	.grid-section {
		margin: 64px auto;
		padding: 0 16px;
	}
	.grid-top {
		flex-direction: column;
		gap: 16px;
		margin-bottom: 40px;
	}
	.grid-row {
		flex-direction: column;
		margin: 40px 0;
		gap: 16px;
	}
	.grid-btns {
		flex-direction: column;
	}
	.grid-col .h3 {
		margin-bottom: 16px;
	}
	.grid-col img {
		border-radius: 10px;
	}
	.grid-col-text {
		padding-left: unset;
	}
}


.social-proof {
	margin: 160px auto;
	max-width: 1264px;
	padding: 0 32px;
}

.soc-top {
	display: flex;
	gap: 32px;
	justify-content: space-between;
	align-items: flex-end;
}

.soc-h2 {
	max-width: 480px;
}

.soc-wrap {
	display: flex;
	gap: 32px;
	flex-wrap: wrap;
	margin-top: 48px;
}

.soc-item {
	flex: 1 1 30%;
	margin: 16px 0;
}

.soc-value {
	position: relative;
	padding-bottom: 16px;
	margin-bottom: 16px;
}
.soc-value::after {
	position: absolute;
	content: "";
	width: 100px;
	height: 1px;
	background-color: #E5E7EB;
	left: 0;
	bottom: 0;
}

@media (max-width: 1100px) {
	.soc-item {
		flex: 1 1 40%;
	}
}
@media (max-width: 768px) {
	.social-proof {
		margin: 64px 0;
		padding: 0 16px;
	}
	.soc-wrap {
		margin-top: 24px;
	}
	.soc-top {
		gap: 16px;
	}
	.soc-item {
		flex: 1 1 50%;
		margin: 0;
	}
}


.testimonials {
	margin: 160px auto;
	max-width: 1920px;
}

.testi-h2 {
	margin: 0 auto 48px;
	max-width: 1264px;
	padding: 0 32px;
}

.testi-slide {
	border: 1px solid #E5E7EB;
	border-radius: 16px;
	padding: 24px;
	width: 384px;
	height: unset;
}

.testimonial {
	font-size: 24px;
	line-height: 32px;
	margin-bottom: 32px;
}

.testi-author {
	display: flex;
	align-items: center;
	gap: 12px;
}
.testi-author img {
	width: 48px;
	height: 48px;
	object-fit: cover;
	border-radius: 50%;
}

.testi-box .text {
	color: #030712;
}

.testi-rating {
	display: flex;
	gap: 2px;
	margin-bottom: 24px;
}
.testi-rating svg {
	width: 16px;
	height: 16px;
	fill: #3685FB;
}

.testi-swiper::before {
	position: absolute;
	content: "";
	width: 80px;
	height: 100%;
	left: 0;
	bottom: 0;
	z-index: 2;
	background: linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, #fff 100%);
}
.testi-swiper::after {
	position: absolute;
	content: "";
	width: 80px;
	height: 100%;
	right: 0;
	bottom: 0;
	z-index: 2;
	background: linear-gradient(270deg, #fff 0%, rgba(255, 255, 255, 0) 100%);
}

.review-box .testi-swiper::before, .review-box .testi-swiper::after {
	display: none;
}

.testi-wrapper {
	transition-timing-function: linear !important;
}

@media (max-width: 768px) {
	.testimonials {
		margin: 64px 0;
	}
	.testi-h2 {
		padding: 0 16px;
		margin-bottom: 24px;
	}
	.testi-swiper::before {
		display: none;
	}
	.testi-swiper::after {
		display: none;
	}
	.testi-slide {
		max-width: 320px;
	}
	.testimonial {
		font-size: 20px;
		line-height: 28px;
	}
}


.tailor-section {
	margin: 160px auto;
	padding: 0 32px;
	max-width: 1264px;
}

.tailor-wrap {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
	margin-top: 48px;
}

.tailor-item {
	flex: 1 1 30%;
	border-radius: 16px;
	padding: 32px;
}
.tailor-item:nth-child(odd) {
	background-color: #DFF6FF;
}
.tailor-item:nth-child(even) {
	background-color: #EFF6FF;
}
.tailor-item:first-child {
	padding: 0;
	background-color: white;
}

.tailor-icon {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background-color: white;
	display: flex;
	align-items: center;
	justify-content: center;
}

.tailor-h3 {
	margin: 24px 0 12px;
}

@media (max-width: 1100px) {
	.tailor-item {
		flex: 1 1 48%;
	}
}
@media (max-width: 768px) {
	.tailor-section {
		margin: 64px auto;
		padding: 0 16px;
	}
	.tailor-wrap {
		margin-top: 24px;
		gap: 8px;
	}
	.tailor-item {
		padding: 24px;
		flex: 1 1 100%;
		border-radius: 12px;
	}
	.tailor-item .h3 {
		margin-bottom: 16px;
	}
	.tailor-h3 {
		font-size: 22px;
	}
}


.cta {
	position: relative;
	display: flex;
	align-items: center;
	gap: 32px;
	justify-content: space-between;
	max-width: 1920px;
	margin: 0 auto;
}

.cta-img {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: -1;
}

.cta-wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
	flex-wrap: wrap;
	width: 100%;
	max-width: 1264px;
	padding: 64px 32px;
	margin: 0 auto;
}

.cta-box .subtitle {
	margin-top: 12px;
	color: #4B5563;
}

.cta-btns {
	display: flex;
	gap: 12px;
}

@media (max-width: 768px) {
	.cta-wrap {
		padding: 40px 16px;
	}
	.cta-box {
		text-align: center;
		margin: 0 auto;
	}
	.cta-btns {
		flex-direction: column;
		align-items: center;
		width: 100%;
	}
}

.data-section {
	padding: 0 32px 80px;
	max-width: 1264px;
	margin: 0 auto;
}

.data-column-reverse {
	flex-direction: row-reverse;
}

.data-head {
	text-align: center;
	display: flex;
	align-items: center;
	flex-direction: column;
	gap: 24px;
}
.data-head .h3 {
	padding-top: 80px;
}
.data-head .text {
	max-width: 570px;
}

.data-body {
	display: flex;
	gap: 80px;
	align-items: flex-start;
	margin: 46px auto 70px;
}

.data-col {
	width: 100%;
	max-width: 560px;
}

.data-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 16px;
}

.data-swiper {
	padding-bottom: 40px;
}

.data-slider-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 24px;
}

.swiper-navs {
	width: 104px;
	height: 48px;
	position: relative;
}

.swiper-button-prev {
	left: unset;
	top: 0;
	margin-top: unset;
}

.swiper-button-next {
	right: 0;
	top: 0;
	margin-top: unset;
}

.swiper-button-prev:after, .swiper-button-next:after {
	display: none;
}

.swiper-nav {
	width: 48px;
	height: 48px;
	border: 1px solid #D1D5DB;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.swiper-nav svg {
	height: 10px;
	width: 6px;
}

.swiper-button-prev svg {
	transform: rotate(180deg);
}

.data-icon {
	width: 56px;
	min-width: 56px;
	height: 56px;
	border-radius: 50%;
	border: 1px solid #E5E7EB;
	display: flex;
	align-items: center;
	justify-content: center;
}

.data-slide {
	display: flex;
	gap: 16px;
}

.data-desc {
	font-family: Medium;
	font-size: 32px;
	line-height: 1.5;
}

.data-btn {
	margin-top: 24px;
}

.faq-question {
	padding: 12px 0;
	font-size: 20px;
	cursor: pointer;
	color: #6B7280;
	line-height: 1.5;
	font-size: 18px;
	font-family: Regular;
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s ease-out, opacity 0.4s ease-out;
	padding: 0;
	opacity: 0;
}

.faq-item {
	border-bottom: 1px solid #E5E7EB;
	margin-bottom: 12px;
	overflow: hidden;
}
.faq-item.active .faq-question {
	font-family: Medium;
	color: #030712;
}
.faq-item.active .faq-answer {
	max-height: 500px;
	opacity: 1;
	padding: 0 0 12px;
}

@media (max-width: 768px) {
	.data-section {
		padding: 0 16px 32px;
		margin: 0;
	}
	.data-head {
		gap: 16px;
	}
	.data-head .h {
		padding-top: 32px;
	}
	.data-body {
		flex-direction: column;
		margin: 24px auto 48px;
		gap: 16px;
	}
	.data-img img {
		border-radius: 10px;
	}
	.data-slide {
		flex-direction: column;
	}
	.data-desc {
		font-size: 22px;
	}
	.swiper-navs {
		width: 72px;
		min-width: 72px;
		height: 32px;
	}
	.swiper-nav {
		width: 32px;
		height: 32px;
	}
	.data-swiper {
		padding-bottom: 0;
	}
}

.security-section {
	max-width: 1264px;
	margin: 160px auto;
	padding: 0 32px;
}

.sec-body {
	display: flex;
	gap: 24px;
	margin-top: 48px;
}

.sec-col-left {
	width: 56%;
	display: flex;
	flex-direction: column;
	gap: 24px;
}
.sec-col-left .sec-box:nth-child(2) {
	background-color: #DFF6FF;
}

.sec-col-right {
	width: 44%;
	height: auto;
}

.sec-box {
	background-color: #EFF6FF;
	padding: 32px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
	border-radius: 16px;
}

.sec-icon {
	width: 56px;
	height: 56px;
	background-color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.sec-box-head {
	display: flex;
	gap: 24px;
	align-items: center;
	margin-bottom: 24px;
}

.sec-box-3 {
	margin-bottom: 12px;
}

@media (max-width: 768px) {
	.security-section {
		margin: 64px auto;
		padding: 0 16px;
	}
	.sec-body {
		margin-top: 24px;
		flex-direction: column;
		gap: 16px;
	}
	.sec-col-left, .sec-col-right {
		gap: 16px;
		width: 100%;
	}
	.sec-box {
		padding: 24px;
	}
	.sec-box-head {
		flex-direction: column;
		align-items: unset;
		margin-bottom: 12px;
	}
}

.four-section {
	margin: 120px auto;
	max-width: 1264px;
	padding: 0 32px;
}
.four-section .h3 {
	text-align: center;
}

.four-body {
	display: flex;
	gap: 24px;
	flex-wrap: wrap;
	margin-top: 48px;
}

.four-item {
	background-color: #EFF6FF;
	flex: 1 1 46%;
	padding: 32px;
	border-radius: 16px;
}
.four-item .h4 {
	margin: 24px 0 12px;
}
.four-item:nth-child(2), .four-item:nth-child(3) {
	background-color: #DFF6FF;
}

.four-icon {
	width: 56px;
	height: 56px;
	background-color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

@media (max-width: 768px) {
	.four-section {
		padding: 0 16px;
		margin: 64px 0;
	}
	.four-body {
		gap: 16px;
		margin-top: 24px;
	}
	.four-item {
		flex: 1 1 100%;
		border-radius: 12px;
		padding: 24px;
	}
	.four-item:nth-child(2) {
		background-color: #DFF6FF;
	}
	.four-item:nth-child(3) {
		background-color: #EFF6FF;
	}
	.four-item:nth-child(4) {
		background-color: #DFF6FF;
	}
}

.why-section {
	margin: 160px auto;
	max-width: 1264px;
	padding: 0 32px;
}
.why-section .h3 {
	margin-bottom: 48px;
}

.why-body {
	display: flex;
	gap: 64px;
}

.why-img {
	width: 100%;
	max-width: 520px;
	aspect-ratio: 520/426;
	border-radius: 16px;
	overflow: hidden;
}
.why-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.why-items {
	width: 100%;
	display: flex;
	gap: 24px;
	flex-wrap: wrap;
}

.why-item {
	flex: 1 1 48%;
}
.why-item .text-sm {
	margin-top: 12px;
	color: #6B7280;
}

@media (max-width: 768px) {
	.why-section {
		margin: 64px auto;
		padding: 0 16px;
	}
	.why-section .h3 {
		margin-bottom: 24px;
	}
	.why-body {
		gap: 24px;
		flex-direction: column;
	}
	.why-img {
		border-radius: 10px;
	}
}

.stories-section {
	margin: 120px auto;
	max-width: 1264px;
	padding: 0 32px;
}

.story-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.story-head .h3 {
	margin-bottom: 48px;
}

.story-body {
	margin-top: 48px;
	display: unset;
}

.story-item {
	display: flex;
	gap: 80px;
	padding-bottom: 32px;
	margin-bottom: 32px;
	border-bottom: 1px solid #E5E7EB;
}
.story-item:last-child {
	border-bottom: unset;
	padding: 0;
	margin: 0;
}

.story-item-top {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 12px;
}

.story-item-right {
	display: flex;
	gap: 16px;
	min-width: 360px;
}

.story-photo {
	width: 56px;
	height: 56px;
	overflow: hidden;
	border-radius: 50%;
}
.story-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.story-position {
	margin: 4px 0;
	color: #6B7280;
}

.stories-nav {
	display: none;
}

@media (max-width: 768px) {
	.stories-section {
		padding: 0 16px;
		margin: 64px 0;
	}
	.story-body {
		display: flex;
		margin-top: 24px;
	}
	.swiper-navs {
		width: 72px;
		min-width: 72px;
		height: 32px;
		position: relative;
	}
	.swiper-button-prev {
		left: unset;
		top: 0;
		margin-top: unset;
	}
	.swiper-button-next {
		right: 0;
		top: 0;
		margin-top: unset;
	}
	.swiper-button-prev:after, .swiper-button-next:after {
		display: none;
	}
	.stories-nav {
		display: flex;
	}
	.swiper-nav {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 32px;
		height: 32px;
		border: 1px solid #D1D5DB;
		border-radius: 50%;
	}
	.swiper-nav svg {
		height: 10px;
		width: 6px;
	}
	.swiper-button-prev svg {
		transform: rotate(180deg);
	}
	.story-head .h3 {
		margin-bottom: unset;
	}
	.story-item {
		flex-direction: column-reverse;
		gap: 16px;
		margin: 0;
		padding: 0;
		border-bottom: unset;
	}
	.story-swiper {
		overflow: unset;
	}
}


.pricing-page {
	margin: 0 auto;
	max-width: 1264px;
	padding: 184px 32px 160px;
}
.pricing-page .subtitle {
	color: #6B7280;
	max-width: 600px;
}

.price-header {
	font-size: 60px;
	font-family: Medium;
	line-height: 1.2;
	margin-bottom: 24px;
}

.price-body {
	margin-top: 48px;
	display: flex;
	gap: 64px;
	align-items: center;
}

.price-items {
	display: flex;
	gap: 24px;
	flex-wrap: wrap;
	width: 100%;
}

.price-item {
	flex: 1 1 40%;
}
.price-item .h4 {
	margin: 16px 0 12px;
}
.price-item .text-sm {
	color: #6B7280;
}

.price-item-icon {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	border: 1px solid #E5E7EB;
	display: flex;
	align-items: center;
	justify-content: center;
}

.price-tile {
	padding: 40px 32px;
	border-radius: 16px;
	background-color: #155EEF;
	color: white;
	width: 100%;
	max-width: 560px;
	height: 100%;
	min-height: 380px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.price-tile .btn-light {
	align-items: center;
	gap: 18px;
	background-color: white;
}
.price-tile .btn-light svg {
	width: 8px;
	height: 14px;
	fill: #155EEF;
}
.price-tile .btn-light:visited {
	color: #155EEF;
}
.price-tile .btn-light:hover {
	color: #155EEF;
}

@media (max-width: 1100px) {
	.price-body {
		flex-direction: column-reverse;
		align-items: unset;
	}
}
@media (max-width: 768px) {
	.pricing-page {
		padding: 104px 16px 64px;
	}
	.price-header {
		font-size: 42px;
		margin-bottom: 20px;
	}
	.price-body {
		margin-top: 32px;
	}
	.price-item {
		flex: 1 1 100%;
	}
	.price-item .h4 {
		font-size: 22px;
	}
	.price-tile {
		padding: 24px;
		min-height: 212px;
		border-radius: 10px;
	}
	.price-item-box {
		display: flex;
		align-items: center;
		gap: 16px;
		margin-bottom: 12px;
	}
}


.hero3 {
	position: relative;
	max-width: 1920px;
	margin: 0 auto 60px;
	overflow: clip;
}

.hero3-wrap {
	max-width: 1264px;
	padding: 0 32px;
	margin: 0 auto;
	padding: 270px 32px 76px;
}

.hero3-h1 {
	font-size: 60px;
	font-family: Medium;
	line-height: 1.2;
}

.hero3-bg {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	object-fit: cover;
}

@media (max-width: 768px) {
	.hero3 {
		margin: 0 auto 48px;
	}
	.hero3-wrap {
		padding: 200px 16px 64px;
	}
	.hero3-h1 {
		font-size: 42px;
	}
	.hero3-bg {
		object-fit: none;
	}
}


.text-section {
	margin: 120px auto;
	max-width: 1264px;
	padding: 0 32px;
	display: flex;
	gap: 64px;
}

.text-col {
	width: 100%;
}

.text-col2 {
	max-width: 560px;
	color: #6B7280;
}
.text-col2 p {
	margin-bottom: 24px;
}

@media (max-width: 768px) {
	.text-section {
		margin: 64px auto;
		padding: 0 16px;
		flex-direction: column;
		gap: 24px;
	}
}


.mission-section {
	max-width: 920px;
	padding: 0 32px;
	margin: 120px auto;
	display: flex;
	flex-direction: column;
	gap: 20px;
	align-items: center;
	text-align: center;
}

@media (max-width: 768px) {
	.mission-section {
		padding: 0 16px;
		margin: 64px auto;
	}
}

.team-section {
	max-width: 1264px;
	margin: 120px auto;
	padding: 0 32px;
}
.team-section .swiper-navs {
	display: none;
}

.team-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 48px;
}

.team-wrapper {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
}

.person-card {
	flex: 1 1 23%;
	max-width: 282px;
	border-radius: 16px;
	overflow: hidden;
	border: 1px solid #E5E7EB;
	height: unset;
}

.person-picture {
	width: 100%;
	aspect-ratio: 280/240;
	cursor: pointer;
}
.person-picture img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.person-info {
	padding: 16px 24px;
}
.person-info .h4 {
	cursor: pointer;
	margin-bottom: 8px;
}

.team-btn {
	color: #155EEF;
}
.team-btn:visited {
	color: #155EEF;
}
.team-btn:hover {
	text-decoration: underline;
}

.swiper-navs {
	width: 104px;
	height: 48px;
	position: relative;
}

.swiper-button-prev {
	left: unset;
	top: 0;
	margin-top: unset;
}

.swiper-button-next {
	right: 0;
	top: 0;
	margin-top: unset;
}

.swiper-button-prev:after, .swiper-button-next:after {
	display: none;
}

.swiper-nav {
	width: 48px;
	height: 48px;
	border: 1px solid #D1D5DB;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.swiper-nav svg {
	height: 10px;
	width: 6px;
}

.swiper-button-prev svg {
	transform: rotate(180deg);
}

.team-modal {
	position: fixed;
	display: none;
	left: 0;
	top: 0;
	width: 100vw;
	height: 100vh;
	backdrop-filter: blur(4px);
	background: rgba(3, 7, 18, 0.5);
	z-index: 10;
	align-items: center;
	justify-content: center;
}

.team-modal.active {
	display: flex;
}

.team-modal-wrap {
	position: relative;
	background-color: white;
	border-radius: 16px;
	padding: 40px 110px 40px 40px;
	max-width: 680px;
}

.team-modal-close {
	position: absolute;
	top: 16px;
	right: 16px;
	border: 1px solid #E5E7EB;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	background: white;
	transition: ease 0.3s;
}
.team-modal-close svg {
	width: 12px;
	height: 12px;
	fill: #030712;
	transition: ease 0.3s;
}
.team-modal-close:hover {
	cursor: pointer;
	background: #DAEBFF;
	border: 1px solid #BDDCFF;
}
.team-modal-close:hover svg {
	fill: #155EEF;
}

.team-mod-name {
	padding-bottom: 16px;
	margin-bottom: 16px;
	border-bottom: 1px solid #E5E7EB;
}

.team-mod-info p {
	margin-bottom: 8px;
	color: #4B5563;
}

@media (max-width: 1260px) {
	.person-card {
		flex: 1 1 32%;
		max-width: 49%;
	}
}
@media (max-width: 768px) {
	.team-section {
		margin: 64px auto;
		padding: 0 16px;
	}
	.team-section .swiper-navs {
		display: flex;
	}
	.team-wrapper {
		flex-wrap: unset;
		gap: unset;
	}
	.person-card {
		flex: unset;
		max-width: unset;
		flex-shrink: 0;
	}
	.person-picture {
		aspect-ratio: 330/240;
	}
	.team-head {
		margin-bottom: 24px;
	}
	.person-info .h4 {
		font-size: 16px;
	}
	.swiper-navs {
		width: 72px;
		min-width: 72px;
		height: 32px;
	}
	.swiper-nav {
		width: 32px;
		height: 32px;
	}
	.team-swiper {
		overflow: unset;
	}
	.team-btn {
		font-size: 14px;
	}
	.team-modal-wrap {
		margin: 56px 16px 0;
		max-height: calc(100vh - 65px - 32px);
		overflow-y: scroll;
		padding: 16px;
	}
	.team-modal-close {
		width: 32px;
		height: 32px;
		top: 12px;
		right: 12px;
	}
	.team-modal-close svg {
		width: 10px;
		height: 10px;
	}
}

.hero4-section {
	margin: 184px auto;
	max-width: 1264px;
	padding: 0 32px;
	display: flex;
	gap: 64px;
}

.hero4-col {
	width: 100%;
}
.hero4-col .h2 {
	font-size: 60px;
}

.hero4-col2 {
	max-width: 560px;
	color: #6B7280;
}

@media (max-width: 768px) {
	.hero4-section {
		margin: 104px auto 32px;
		padding: 0 16px;
		flex-direction: column;
		gap: 20px;
	}
	.hero4-col .h2 {
		font-size: 42px;
	}
}

/** Post */

.post {
	margin: 180px auto 160px;
	max-width: 1264px;
	padding: 0 32px;
	display: flex;
	gap: 64px;
}

.aside {
	position: sticky;
	top: 100px;
	width: 100%;
	max-width: 180px;
	height: fit-content;
}
.aside ul {
	margin-top: 12px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.aside ul li {
	padding: 4px 12px;
}
.aside ul li a {
	color: #52525B;
	transition: ease 0.3s;
	line-height: 1.4;
}
.aside ul li a:visited {
	color: #52525B;
}
.aside ul li a:hover {
	color: #030712;
}
.aside ul li.active {
	background-color: #BDDCFF;
	border-radius: 8px;
}
.aside ul li.active a {
	color: #030712;
	font-family: Medium;
}

.breadcrumbs {
	margin-bottom: 24px;
	color: #6B7280;
	display: flex;
	gap: 9px;
	width: 100%;
}
.breadcrumbs svg {
	width: 6px;
	height: 10px;
	fill: #6B7280;
	margin-top: 6px;
}

.post-intro .subtitle {
	margin: 24px 0;
	max-width: 650px;
	color: #6B7280;
}

.post-img {
	border-radius: 16px;
	overflow: hidden;
	aspect-ratio: 960/400;
	margin-bottom: 24px;
}
.post-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.post-props {
	margin-bottom: 64px;
	gap: 16px;
	flex-wrap: wrap;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.post-prop-box {
	display: flex;
	align-items: center;
}

.post-prop {
	color: #6B7280;
}

.post-dot {
	color: #6B7280;
	margin: 0 8px;
	margin-top: -1px;
}

.post-socials {
	display: flex;
	gap: 16px;
}

#copyLink {
	position: relative;
}
#copyLink .copy-popup {
	position: absolute;
	top: -24px;
	left: 50%;
	transform: translateX(-50%);
	width: max-content;
	opacity: 0;
	transition: ease 0.3s;
}
#copyLink .copy-popup.show {
	opacity: 1;
}

.social-share {
	display: flex;
}
.social-share svg {
	fill: #6B7280;
	transition: ease 0.3s;
}
.social-share:hover svg {
	fill: #155EEF;
}

.ck-image {
	width: 100%;
	margin: 16px 0;
	aspect-ratio: 960/400;
}
.ck-image img {
	display: flex;
	width: 100%;
	height: 100%;
	border-radius: 16px;
	object-fit: cover;
}

.article-content h2 {
	max-width: 650px;
	margin: 24px 0 4px;
	font-family: Medium;
	font-size: 44px;
	line-height: 1.4;
}
.article-content h3 {
	max-width: 650px;
	margin: 32px 0 24px;
	font-family: Medium;
	font-size: 24px;
}
.article-content p {
	max-width: 650px;
	color: #6B7280;
	margin-bottom: 8px;
	font-family: Medium;
	line-height: 1.5;
}
.article-content ul, .article-content ol {
	max-width: 650px;
	margin-left: 24px;
	margin-bottom: 12px;
}
.article-content ul li {
	list-style-type: disc;
	color: #6B7280;
	font-family: Medium;
	line-height: 1.5;
}
.article-content ol li {
	color: #6B7280;
	font-family: Medium;
	line-height: 1.5;
}
.article-content a {
	color: #155EEF;
}
.article-content a:visited {
	color: #155EEF;
}
.article-content a:hover {
	text-decoration: underline;
}

@media (max-width: 768px) {
	.post {
		margin: 104px auto 64px;
		padding: 0 16px;
	}
	.aside {
		display: none;
	}
	.post-intro .subtitle {
		margin: 20px 0;
	}
	.post-img {
		border-radius: 10px;
		aspect-ratio: 340/300;
	}
	.article-content h2 {
		font-size: 24px;
	}
	.article-content h3 {
		margin: 16px 0 6px;
		font-size: 20px;
	}
	.post-socials {
		gap: 12px;
	}
	.post-dot {
		margin: 0 4px;
	}
	.ck-image {
		aspect-ratio: 340/300;
	}
	.ck-image img {
		border-radius: 10px;
	}
}

.related-posts {
	padding: 0 32px;
	max-width: 1264px;
	margin: 160px auto;
}

.rel-slide {
	border-radius: 16px;
	overflow: hidden;
	border: 1px solid #E5E7EB;
	height: unset;
}

.rel-img {
	aspect-ratio: 390/240;
}
.rel-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.rel-box {
	padding: 24px;
}
.rel-box .text {
	margin: 12px 0 16px;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	text-overflow: ellipsis;
}

.rel-title {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	text-overflow: ellipsis;
}

.rel-link {
	line-height: 1.5;
	color: #155EEF;
	font-family: Medium;
}
.rel-link:visited {
	color: #155EEF;
}
.rel-link:hover {
	text-decoration: underline;
}

.rel-swiper {
	overflow: unset;
}

.rel-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 48px;
}

.swiper-navs {
	width: 104px;
	height: 48px;
	position: relative;
}

.swiper-button-prev {
	left: unset;
	top: 0;
	margin-top: unset;
}

.swiper-button-next {
	right: 0;
	top: 0;
	margin-top: unset;
}

.swiper-button-prev:after, .swiper-button-next:after {
	display: none;
}

.swiper-nav {
	width: 48px;
	height: 48px;
	border: 1px solid #D1D5DB;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.swiper-nav svg {
	height: 10px;
	width: 6px;
}

.swiper-button-prev svg {
	transform: rotate(180deg);
}

@media (max-width: 768px) {
	.swiper-navs {
		width: 72px;
		min-width: 72px;
		height: 32px;
	}
	.swiper-nav {
		width: 32px;
		height: 32px;
	}
	.related-posts {
		padding: 0 16px;
		margin: 64px auto;
	}
	.rel-head {
		margin-bottom: 24px;
	}
	.rel-slide {
		border-radius: 10px;
	}
	.rel-img {
		aspect-ratio: 330/240;
	}
	.rel-title {
		font-size: 18px;
	}
	.rel-box .text {
		font-size: 14px;
		line-height: 1.4;
	}
}

.hub {
	padding: 0 32px;
	margin: 160px auto;
	max-width: 1264px;
}

.hub-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.swiper-navs {
	width: 104px;
	height: 48px;
	position: relative;
}

.swiper-button-prev {
	left: unset;
	top: 0;
	margin-top: unset;
}

.swiper-button-next {
	right: 0;
	top: 0;
	margin-top: unset;
}

.swiper-button-prev:after, .swiper-button-next:after {
	display: none;
}

.swiper-nav {
	width: 48px;
	height: 48px;
	border: 1px solid #D1D5DB;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.swiper-nav svg {
	height: 10px;
	width: 6px;
}

.swiper-button-prev svg {
	transform: rotate(180deg);
}

.hub-swiper {
	margin-top: 48px;
}

.hub-wrapper {
	gap: 24px;
}

.hub-slide {
	flex: 1 1 32%;
	border: 1px solid #E5E7EB;
	border-radius: 16px;
	overflow: hidden;
	max-width: 33%;
	height: unset;
}

.hub-image {
	aspect-ratio: 390/240;
}
.hub-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: flex;
}

.hub-box {
	padding: 24px;
	display: flex;
	flex-direction: column;
}
.hub-box .text {
	margin: 12px 0 16px;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	text-overflow: ellipsis;
}

.btn-item-hub {
	color: #155EEF;
	font-family: Medium;
	line-height: 1.4;
}
.btn-item-hub:visited {
	color: #155EEF;
}
.btn-item-hub:hover {
	text-decoration: underline;
}

.btn-hub-mob {
	display: none;
}

@media (max-width: 768px) {
	.hub {
		padding: 0 16px;
		margin: 64px auto;
	}
	.swiper-navs {
		width: 72px;
		min-width: 72px;
		height: 32px;
	}
	.swiper-nav {
		width: 32px;
		height: 32px;
	}
	.hub-swiper {
		overflow: unset;
		margin-top: 24px;
	}
	.hub-wrapper {
		gap: 0;
	}
	.hub-slide {
		flex: unset;
		flex-shrink: 0;
		max-width: unset;
	}
	.hub-box .h4 {
		font-size: 16px;
		line-height: 1.5;
		font-family: Regular;
	}
	.btn-hub {
		display: none;
	}
	.btn-hub-mob {
		display: flex;
		margin-top: 24px;
	}
}

.testi-wrapper {
	width: 100%;
	background-color: white;
}

.swiper-button-prev:after,
.swiper-button-next:after {
	display: none;
}

.testi-prev svg {
	width: 6px;
	height: 10px;
	fill: white;
}

.testi-next svg {
	width: 6px;
	height: 10px;
	fill: white;
}

.testi-rating svg {
	width: 16px;
	height: 16px;
	fill: #12a250;
}

.testi-box .text {
	color: #030712;
}

.logos-header {
	text-align: center;
	text-transform: uppercase;
	font-size: 14px;
	line-height: 1.4;
	margin-bottom: 24px;
}

/*@media (max-width: 1200px) {
  .right {
    display: none;
  }
}*/
@media (max-width: 768px) {
	.hero {
		margin: 96px 0;
		padding: 0 16px;
	}
}

.contact-details {
	margin: 120px auto;
	max-width: 1264px;
	padding: 0 32px;
}

.cont-boxes {
	margin-top: 32px;
	display: flex;
	gap: 24px;
}

.cont-box {
	border-radius: 16px;
	border: 1px solid #e5e7eb;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 16px;
	padding: 24px;
	flex: 1 1;
}

.cont-box-icon {
	width: 40px;
	height: 40px;
	background-color: #155eef;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.cont-box-icon svg {
	width: 18px;
	height: 18px;
	fill: white;
}

.cont-link {
	position: relative;
	font-size: 24px;
	color: #030712;
	font-family: Medium;
}

.cont-link:visited {
	color: #030712;
}

.cont-link::after {
	position: absolute;
	content: "";
	left: 50%;
	width: 0;
	height: 2px;
	background-color: #030712;
	transition: ease 0.3s;
	bottom: -2px;
}

.cont-link:hover::after {
	width: 100%;
	left: 0;
}

@media (max-width: 1200px) {
	.cont-boxes {
		flex-direction: column;
		align-items: center;
	}

	.cont-box {
		max-width: 400px;
		width: 100%;
	}
}

@media (max-width: 768px) {
	.contact-details {
		margin: 96px 0;
		padding: 0 16px;
	}

	.cont-link {
		font-size: 16px;
	}
}

/* Aryan */

.hero.contact {
	padding: 100px 0 80px;
	background-image: url("https://measurepm.com/images/contact-hero-bg-img.png");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: bottom center;
	margin: 0;
}

.container {
	max-width: 1240px;
	width: 100%;
	margin: auto;
}

.hero.contact .main {
	display: flex;
	align-items: end;
	gap: 46px;
}

.hero.contact .main .left,
.hero.contact .main .right {
	flex: 1;
}

.hero.contact .main .left h5 {
	text-transform: uppercase;
	font-size: 16px;
	font-family: "Medium";
	line-height: 16px;
	color: #030712;
	letter-spacing: 0.96px;
	margin-bottom: 12px;
}

.hero.contact .main .left h1 {
	font-size: 60px;
	font-family: "Medium";
	line-height: 62px;
	letter-spacing: -3.84px;
	margin-bottom: 18px;
	max-width: 500px;
}

.hero.contact .main .left .subtitle {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-bottom: 27px;
}

.hero.contact .main .left .subtitle li {
	display: flex;
	gap: 8px;
	position: relative;
}

.hero.contact .main .left .subtitle li::before {
	content: "";
	background-image: url("https://measurepm.com/images/check-circle.svg");
	background-repeat: no-repeat;
	background-size: contain;
	display: block;
	min-width: 18px;
	height: 18px;
	margin-top: 5px;
}

.hero.contact .main .review-box {
	background: #155eef;
	border-radius: 20px;
	padding: 24px 24px 42px;
}

.hero.contact .main .review-box h3 {
	font-size: 24px;
	line-height: 24px;
	color: #fff;
	letter-spacing: -0.72px;
	margin-bottom: 28px;
}

.hero.contact .main .testi-swiper-container {
	position: relative;
	display: flex;
	align-items: center;
}

.hero.contact .main .testi-swiper-container .testi-swiper {
	width: 393px;
	border-radius: 10px;
	background-color: white;
	outline: 4px solid #ffffff4d;
}

.hero.contact .main .testi-swiper .testi-slide {
	color: #030712;
	padding: 20px 30px;
	height: fit-content !important;
}

.hero.contact .main .testi-swiper .testi-slide .testi-rating {
	display: flex;
	gap: 4px;
	margin-bottom: 13px;
}

.hero.contact .main .testi-swiper .testimonial {
	font-size: 17px;
	line-height: 26px;
	margin-bottom: 38px;
}

.hero.contact .main .testi-swiper .testi-author {
	display: flex;
	align-items: center;
	gap: 8px;
}

.hero.contact .main .testi-swiper .testi-author img {
	width: 30px;
	height: 30px;
	object-fit: cover;
	border-radius: 50%;
}

.hero.contact .main .testi-swiper .testi-box .text {
	color: #030712;
	font-size: 16px;
	line-height: 24px;
	font-weight: 600;
	letter-spacing: -0.32px;
}

.hero.contact .main .testi-swiper-container .testi-next,
.hero.contact .main .testi-swiper-container .testi-prev {
	width: 30px;
	height: 30px;
	background-color: #ffffff8a;
	border-radius: 50%;
	right: 0;
	top: unset !important;
}

.hero.contact .main .testi-swiper-container .testi-prev {
	right: unset !important;
	left: 0;
}

.hero.contact .cont-logos {
	margin-top: 40px;
}

.hero.contact .cont-logos .cont-logos-wrap {
	display: grid;
	max-width: 1030px;
	margin: 0 auto;
	grid-template-columns: repeat(7, 1fr);
	gap: 23px;
}

.hero.contact .cont-logos .cont-logos-wrap img {
	width: 100%;
	height: 87px;
	object-fit: cover;
	max-width: 120px;
}

.hero.contact .main .right .hero-form {
	background-color: #fff;
	border-radius: 20px;
	box-shadow: 0 0 4px rgba(0, 0, 0, 0.04), 0 8px 16px rgba(0, 0, 0, 0.08);
	padding: 30px 24px 30px;
}

.hero.contact .main .right .hero-form h3 {
	font-size: 24px;
	line-height: 24px;
	font-family: "Medium";
	margin-bottom: 0px;
	text-align: center;
}

.primary-color {
	color: #155eef;
}

.hero.contact .main .right .hero-form .notes {
	font-size: 12px;
	line-height: 18px;
	color: #030712b3;
	margin: 0px;
}

.after-hero.contact {
	padding: 74px 0 97px;
	text-align: center;
}

.after-hero.contact h2 {
	font-size: 44px;
	line-height: 44px;
	font-family: "Medium";
	text-transform: capitalize;
	letter-spacing: -2.64px;
	margin-bottom: 40px;
}

.after-hero.contact .upper {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	align-items: start;
	justify-content: space-between;
	margin-bottom: 68px;
}

.after-hero.contact .upper .box {
	padding: 24px 24px 28px;
	background-color: #fff;
	border-radius: 20px;
	text-align: left;
}

.after-hero.contact .upper .box img {
	width: 100%;
	height: 225px;
	object-fit: cover;
	object-position: top;
	border-radius: 10px;
	margin-bottom: 24px;
}

.after-hero.contact .upper .box h3 {
	font-size: 20px;
	line-height: 24px;
	font-family: "Medium";
	max-width: 300px;
	text-transform: capitalize;
	margin-bottom: 18px;
	letter-spacing: -0.6px;
}

.after-hero.contact .upper .box p {
	line-height: 24px;
	max-width: 330px;
}

.after-hero.contact .lower {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.after-hero.contact .lower .left,
.after-hero.contact .lower .right {
	flex: 1;
}

.after-hero.contact .lower .right {
	flex-basis: 19%;
}

.after-hero.contact .lower .right img {
	width: 100%;
}

.after-hero.contact .lower .left {
	text-align: left;
}

.after-hero.contact .lower .left h5 {
	font-size: 16px;
	font-family: "Medium";
	line-height: 16px;
	letter-spacing: 0.96px;
	margin-bottom: 12px;
	text-transform: uppercase;
}

.after-hero.contact .lower .left h2 {
	letter-spacing: -1.32px;
	margin-bottom: 18px;
}

.after-hero.contact .lower .left p {
	font-size: 18px;
	line-height: 27px;
}

.after-hero.contact .lower .left img {
	width: 100%;
}

.trusted-by.contact {
	padding: 90px 0 82px;
	text-align: center;
	background-image: url("https://measurepm.com/images/contact-trust-by-bg-img.png");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: top;
}

.trusted-by.contact .container {
	max-width: 1023px;
}

.trusted-by.contact h2 {
	font-size: 44px;
	line-height: 44px;
	font-family: "Medium";
	text-transform: capitalize;
	letter-spacing: -1.32px;
	margin-bottom: 40px;
}

.trusted-by.contact p {
	max-width: 700px;
	margin: auto;
	line-height: 24px;
}

.trusted-by.contact .main {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-bottom: 30px;
}

.trusted-by.contact .main .box {
	border: 1px solid #d5d5d5;
	border-radius: 20px;
	padding: 24px;
	text-align: left;
}

.trusted-by.contact .main .box h3 {
	font-family: "Medium";
	font-size: 34px;
	line-height: 34px;
	margin-bottom: 18px;
	letter-spacing: -1.02px;
}

.trusted-by.contact .main .box p {
	font-size: 14px;
	line-height: 21px;
}

.trusted-by.contact .last {
	margin-top: 60px;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 26px;
}

.trusted-by.contact .last .box {
	background-color: #fff;
	border-radius: 20px;
	box-shadow: 0 0 4px rgba(0, 0, 0, 0.04), 0 8px 16px rgba(0, 0, 0, 0.08);
	text-align: left;
	padding: 20px 24px 27px;
	display: flex;
	flex-direction: column;
	align-items: start;
	justify-content: space-between;
}

.trusted-by.contact .last .box .data p {
	margin-top: 22px;
	font-family: "Medium";
	font-size: 20px;
	line-height: 30px;
	font-style: italic;
}

.trusted-by.contact .last .box .data h5 {
	margin: 18px 0 6px;
	font-weight: 700;
	font-size: 16px;
	font-family: "Medium";
	line-height: 24px;
}

.trusted-by.contact .last .box .data h6 {
	font-size: 14px;
	line-height: 21px;
}

.info.contact {
	padding: 55px 0 70px;
}

.info.contact .container {
	max-width: 820px;
}

.info.contact .main {
	background-color: #ecf2fe;
	border-radius: 20px;
	position: relative;
	padding: 25px 30px;
}

.info.contact .main .data h2 {
	font-size: 44px;
	line-height: 44px;
	font-family: "Medium";
	text-transform: capitalize;
	letter-spacing: -2.64px;
	margin-bottom: 40px;
}

.info.contact .main .data ul {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.info.contact .main .data ul li a {
	display: flex;
	position: relative;
	align-items: center;
	gap: 14px;
	color: #030712;
	font-size: 20px;
	line-height: 30px;
	font-weight: 600;
	transition: 0.3s all;
}

.info.contact .main .main-img {
	position: absolute;
	right: 100px;
	top: -91px;
}

#modal .modal-content {
	padding: 0;
	border-radius: 20px;
	max-width: 930px;
	width: 100%;
	display: flex;
	align-items: stretch;
}

#modal .modal-content .close-btn {
	display: none;
}

#modal .modal-content .modal-head {
	background: #ecf2fe;
	padding: 30px;
	margin: 0;
	/*height: 100%;*/
}

#modal .modal-content .modal-head + div {
	padding: 30px;
}

#modal .modal-content .modal-head h2 {
	font-size: 32px;
	max-width: 100%;
	letter-spacing: -0.96px;
	line-height: 42px;
	margin-bottom: 18px;
}

#modal .modal-content .modal-head p {
	font-size: 18px;
	line-height: 27px;
	margin-bottom: 16px;
}

#modal .modal-content .modal-head ul {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

#modal .modal-content .modal-head ul li {
	font-size: 18px;
	line-height: 27px;
	display: flex;
	gap: 8px;
}

#modal .modal-content .modal-head ul li::before {
	content: "";
	background-image: url(https://measurepm.com/images/check-circle.svg);
	background-repeat: no-repeat;
	background-size: contain;
	display: block;
	min-width: 18px;
	height: 18px;
	margin-top: 5px;
}

.hero-form .notes {
	margin-top: 8px;
}

@media only screen and (max-width: 767px) {
	.hero.contact {
		padding: 100px 20px 40px;
	}

	.hero.contact .main .right iframe {
		min-height: 625px !important;
		max-height: 625px !important;
	}

	.hero.contact .main .left h5 {
		font-size: 13px;
		line-height: 13px;
		letter-spacing: 0.78px;
	}

	.hero.contact .main .left h1 {
		font-size: 36px;
		line-height: 36px;
		letter-spacing: -1.08px;
		margin-bottom: 12px;
	}

	.hero.contact .main .left .subtitle {
		gap: 8px;
		margin-bottom: 30px;
	}

	.hero.contact .main .left .subtitle li::before {
		min-width: 14px;
		height: 14px;
	}

	/*.hero.contact .main .left .subtitle li {
	  max-width: 320px;
  }*/
	.hero.contact .main .review-box {
		display: none;
	}

	.hero.contact .main .right {
		display: block;
	}

	.hero.contact .main {
		flex-direction: column;
		gap: 0px;
	}

	.hero.contact .main .right .hero-form {
		padding: 20px 20px 26px;
	}

	.hero.contact .main .right .hero-form h3 {
		font-size: 18px;
		line-height: 18px;
		text-align: center;
		margin-bottom: 18px;
	}

	.hero.contact .main .right .hero-form .notes {
		font-size: 8px;
		line-height: 12px;
	}

	.hero.contact .cont-logos {
		margin-top: 25px;
	}

	.hero.contact .cont-logos .cont-logos-wrap {
		gap: 0 13px;
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
	}

	.hero.contact .cont-logos .cont-logos-wrap img {
		height: 54px;
		max-width: 74px;
	}

	.after-hero.contact {
		padding: 50px 20px 50px;
	}

	.after-hero.contact h2 {
		font-size: 28px;
		line-height: 28px;
		letter-spacing: -0.84px;
		margin-bottom: 20px;
	}

	.after-hero.contact .upper {
		grid-template-columns: repeat(1, 1fr);
		margin-bottom: 44px;
		gap: 16px;
	}

	.after-hero.contact .upper .box {
		padding: 20px;
	}

	.after-hero.contact .upper .box img {
		height: 180px;
		margin-bottom: 20px;
	}

	.after-hero.contact .upper .box h3 {
		font-size: 17px;
		line-height: 20px;
		max-width: 250px;
		margin-bottom: 15px;
		letter-spacing: -0.5px;
	}

	.after-hero.contact .upper .box p {
		line-height: 21px;
		font-size: 14px;
	}

	.after-hero.contact .lower .left h5 {
		font-size: 13px;
		line-height: 13px;
		letter-spacing: 0.78px;
		margin-bottom: 8px;
	}

	.after-hero.contact .lower {
		flex-direction: column;
	}

	.after-hero.contact .lower .right {
		display: block;
	}

	.after-hero.contact .lower .right img {
		margin-top: 24px;
	}

	.after-hero.contact .lower .left p {
		font-size: 16px;
		line-height: 24px;
	}

	.trusted-by.contact {
		padding: 40px 20px;
	}

	.trusted-by.contact h2 {
		font-size: 28px;
		line-height: 28px;
		letter-spacing: -0.84px;
		margin: 0 auto 30px;
		max-width: 250px;
	}

	.trusted-by.contact .main {
		grid-template-columns: repeat(1, 1fr);
		gap: 16px;
		margin-bottom: 18px;
		padding: 0 40px;
	}

	.trusted-by.contact .main .box {
		border-radius: 15px;
		padding: 18px;
	}

	.trusted-by.contact .main .box h3 {
		font-size: 24px;
		line-height: 24px;
		margin-bottom: 12px;
		letter-spacing: -0.72px;
	}

	.trusted-by.contact .main .box p {
		font-size: 12px;
		line-height: 18px;
	}

	.trusted-by.contact p {
		font-size: 14px;
		line-height: 21px;
	}

	.trusted-by.contact .last {
		margin-top: 24px;
		grid-template-columns: repeat(1, 1fr);
		gap: 16px;
	}

	.trusted-by.contact .last .box {
		border-radius: 15px;
		padding: 16px;
	}

	.trusted-by.contact .last .box img {
		max-width: 86px;
	}

	.trusted-by.contact .last .box .data p {
		margin-top: 14px;
		font-size: 16px;
		line-height: 24px;
	}

	.trusted-by.contact .last .box .data h5 {
		margin: 18px 0 4px;
		font-size: 14px;
		line-height: 21px;
	}

	.trusted-by.contact .last .box .data h6 {
		font-size: 12px;
		line-height: 18px;
	}

	.info.contact {
		padding: 10px 20px 50px;
	}

	.info.contact .main {
		padding: 30px;
	}

	.info.contact .main .data h2 {
		font-size: 28px;
		line-height: 28px;
		letter-spacing: -0.84px;
		margin-bottom: 20px;
	}

	.info.contact .main .main-img {
		display: none;
	}

	.info.contact .main .data ul {
		gap: 14px;
	}

	.info.contact .main .data ul li a {
		gap: 10px;
		font-size: 17px;
		line-height: 25px;
	}

	.info.contact .main .data ul li a img {
		width: 32px;
	}

	#modal .modal-content {
		flex-direction: column;
	}

	.hero.contact .main {
		align-items: stretch;
	}

	#modal .modal-content .modal-head {
		max-width: 100%;
	}
	#modal .modal-content .modal-head h2 {
		font-size: 28px;
		line-height: 1.3;
	}
	#modal .cform-progress ul {
		margin-top: -10px;
	}
	#modal .cform-form {
		padding: 10px 0 0;
	}
	#modal .modal-content .modal-head ul li {
		font-size: 16px;
	}
	#modal .modal-content .modal-head ul {
		gap: 8px;
	}
	#modal .modal-content .modal-head {
		padding-bottom: 10px;
	}
	#modal .modal-content .modal-head + div.form-right {
		padding-top: 25px;
	}
}

@media (min-width: 768px) and (max-width: 1199px) {
	.hero.contact .main {
		gap: 30px;
	}

	.hero.contact {
		padding: 100px 20px 60px;
	}

	.after-hero.contact {
		padding: 50px 20px 50px;
	}

	trusted-by.contact {
		padding: 60px 20px 50px;
	}

	.after-hero.contact h2 {
		font-size: 38px;
		line-height: 40px;
	}

	.trusted-by.contact .main .box h3 {
		font-size: 30px;
	}

	.hero.contact .main .left h1 {
		font-size: 50px;
		line-height: 52px;
		letter-spacing: -3px;
	}

	.after-hero.contact .upper .box img {
		height: 135px;
	}

	.hero.contact .main .left .subtitle li {
		font-size: 16px;
	}

	.trusted-by.contact {
		padding: 90px 20px 82px;
	}
}




.indicators-section {
	margin: 160px auto;
	max-width: 1264px;
	padding: 0 32px;
}

.indi-top {
	display: flex;
	gap: 32px;
	justify-content: space-between;
	align-items: flex-end;
}

.indi-h2 {
	max-width: 480px;
}

.indi-swiper {
	margin-top: 48px;
	overflow: unset;
}

.indi-slide {
	border: 1px solid #E5E7EB;
	border-radius: 16px;
	padding: 24px;
	max-width: 384px;
}
.indi-slide .text-sm {
	max-width: 280px;
}

.indi-value {
	margin-bottom: 24px;
	font-size: 56px;
	font-family: Medium;
	line-height: 80px;
}

.swiper-navs {
	width: 104px;
	height: 48px;
	position: relative;
}

.swiper-button-prev {
	left: unset;
	top: 0;
	margin-top: unset;
}

.swiper-button-next {
	right: 0;
	top: 0;
	margin-top: unset;
}

.swiper-button-prev:after, .swiper-button-next:after {
	display: none;
}

.swiper-nav {
	width: 48px;
	height: 48px;
	border: 1px solid #D1D5DB;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.swiper-nav svg {
	height: 10px;
	width: 6px;
}

.swiper-button-prev svg {
	transform: rotate(180deg);
}

@media (max-width: 768px) {
	.indicators-section {
		margin: 64px 0;
		padding: 0 16px;
	}
	.indi-swiper {
		margin-top: 24px;
	}
	.indi-top {
		gap: 16px;
	}
	.swiper-navs {
		width: 72px;
		min-width: 72px;
		height: 32px;
	}
	.swiper-nav {
		width: 32px;
		height: 32px;
	}
}

.offer {
	margin: 110px auto;
	max-width: 684px;
	padding: 0 16px;
}

.offer .breadcrumbs {
	margin-bottom: 24px;
	color: #6B7280;
	display: flex;
	gap: 9px;
	width: 100%;
}
.offer .breadcrumbs a {
	color: #6B7280;
}
.offer .breadcrumbs a:visited {
	color: #6B7280;
}
.offer .breadcrumbs a:hover {
	color: #155EEF;
}
.offer .breadcrumbs svg {
	width: 6px;
	height: 10px;
	fill: #6B7280;
	margin-top: 6px;
}

.offer .offer-top {
	padding: 20px 0 32px;
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.offer .offer-top .text {
	color: #6B7280;
}

.offer-body h2 {
	margin: 32px 0 24px;
	font-size: 44px;
	line-height: 1.4;
	font-family: Medium;
}
.offer-body p {
	font-family: Medium;
	line-height: 1.5;
	color: #6B7280;
}
.offer-body ul {
	margin-left: 24px;
}
.offer-body ul li {
	list-style-type: disc;
	line-height: 1.5;
	color: #6B7280;
	font-family: Medium;
}

@media (max-width: 768px) {
	.breadcrumbs {
		margin-bottom: 0;
	}
	.offer-top {
		padding: 24px 0 0;
	}
	.offer-body h2 {
		margin: 32px 0 4px;
		font-size: 24px;
	}
}

.error {
	margin: 150px auto;
	padding: 0 16px;
	max-width: 800px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}
.error .h1 {
	margin: 20px 0;
}
.error .subtitle {
	max-width: 640px;
	color: #4B5563;
	margin-bottom: 40px;
}

@media (max-width: 768px) {
	.error {
		margin: 136px auto 120px;
	}
}
.cta {
	position: relative;
	display: flex;
	align-items: center;
	gap: 32px;
	justify-content: space-between;
	max-width: 1920px;
	margin: 0 auto;
}

.cta-img {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: -1;
}

.cta-wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
	flex-wrap: wrap;
	width: 100%;
	max-width: 1264px;
	padding: 64px 32px;
	margin: 0 auto;
}

.cta-box .subtitle {
	margin-top: 12px;
	color: #4B5563;
}

.cta-btns {
	display: flex;
	gap: 12px;
}

@media (max-width: 768px) {
	.cta-wrap {
		padding: 40px 16px;
	}
	.cta-box {
		text-align: center;
		margin: 0 auto;
	}
	.cta-btns {
		flex-direction: column;
		width: 100%;
	}
}
