.site-header {
	position: relative;
	z-index: 20;
	height: 108px;
	border-bottom: 1px solid var(--line);
	background: #fff;
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 100%;
}

.brand {
	display: inline-flex;
	align-items: center;
	width: 84px;
	height: 76px;
	padding: 9px 12px;
	background: #f0f3f4;
}

.brand img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.site-nav {
	display: flex;
	align-items: center;
	gap: 64px;
	margin-left: auto;
	margin-right: 84px;
}

.site-nav a {
	position: relative;
	padding: 42px 0;
	color: #283039;
	font-size: 17px;
	text-decoration: none;
	transition: color .2s ease;
}

.site-nav a::after {
	position: absolute;
	right: 0;
	bottom: 31px;
	left: 0;
	height: 2px;
	background: var(--red);
	content: "";
	transform: scaleX(0);
	transition: transform .2s ease;
}

.site-nav a:hover,
.site-nav a.is-active {
	color: var(--red);
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
	transform: scaleX(1);
}

.header-cta,
.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 54px;
	padding: 0 36px;
	border: 1px solid var(--red);
	background: var(--red);
	color: #fff;
	font-size: 15px;
	font-weight: 700;
	text-decoration: none;
	text-transform: uppercase;
	transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.header-cta:hover,
.button:hover {
	border-color: var(--red-dark);
	background: var(--red-dark);
}

.button--outline {
	border-color: var(--line);
	background: #fff;
	color: var(--ink);
}

.button--outline:hover {
	border-color: var(--ink);
	background: var(--ink);
	color: #fff;
}

.menu-toggle {
	display: none;
	width: 44px;
	height: 44px;
	border: 1px solid var(--line);
	background: #fff;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
	display: block;
	width: 19px;
	height: 2px;
	margin: 4px auto;
	background: var(--ink);
	content: "";
}

.page-hero {
	padding: 70px 0 78px;
	background: var(--soft);
}

.breadcrumb {
	margin-bottom: 22px;
	color: #737a80;
	font-size: 12px;
	letter-spacing: .06em;
	text-transform: uppercase;
}

.breadcrumb span {
	color: var(--red);
}

.page-hero h1 {
	max-width: 980px;
	margin: 0 0 16px;
	font-size: clamp(42px, 4vw, 76px);
	line-height: .98;
	letter-spacing: -.045em;
}

.page-hero p {
	max-width: 780px;
	margin: 0;
	color: var(--muted);
	font-size: 17px;
	line-height: 1.6;
}

.section {
	padding: 112px 0;
}

.section--soft {
	background: var(--soft);
}

.section--dark {
	background: var(--soft-dark);
	color: #fff;
}

.section-heading {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 28px;
	margin-bottom: 48px;
}

.section-heading h2 {
	margin: 0;
	font-size: clamp(30px, 2.8vw, 48px);
	line-height: 1.05;
	letter-spacing: -.035em;
}

.section-heading p {
max-width: 100%;
    margin: 10px auto;
    color: var(--muted);
    font-size: 15px;
}

.eyebrow {
	margin-bottom: 10px;
	color: var(--red);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.accent-line {
	width: 72px;
	height: 3px;
	margin: 17px auto 0;
	background: var(--red);
}

.card-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.feature-card {
	padding: 34px;
	border: 1px solid var(--line);
	background: #fff;
}
.redfont{
    color: #fff !important;
    background-color: red;
    padding: 13px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 10;
    font-size: 20px !important;
    font-weight: 700;
        margin-bottom: 20px !important;
}
.feature-card__icon {
	display: grid;
	place-items: center;
	width: 58px;
	height: 58px;
	margin-bottom: 22px;

	color: var(--red);
	font-size: 27px;
}

.feature-card h3 {
	margin: 0 0 14px;
	font-size: 23px;
}

.feature-card p {
	margin: 0;
	color: var(--muted);
	font-size: 15px;
	line-height: 1.7;
}

.text-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: 24px;
	color: var(--red);
	font-size: 13px;
	font-weight: 700;
	text-decoration: none;
	text-transform: uppercase;
}

.text-link::after {
	content: "->";
}

.cta-strip {
	padding: 66px 0;
	background: var(--red);
	color: #fff;
}

.cta-strip__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
}

.cta-strip h2 {
	margin: 0;
	font-size: clamp(30px, 3.3vw, 56px);
	line-height: 1.05;
}

.cta-strip p {
	max-width: 580px;
	margin: 14px 0 0;
	color: rgba(255, 255, 255, .82);
}

.cta-strip .button {
	border-color: #fff;
	background: #fff;
	color: var(--red);
	white-space: nowrap;
}

.site-footer {
	padding: 66px 0 30px;
	background: var(--navy);
	color: #fff;
}

.footer-grid {
	display: grid;
	grid-template-columns: 180px 1.5fr 1fr 1fr;
	gap: 54px;
	align-items: start;
}
.pagination svg{
    
    width: 13px;

    
}
.pagination .active {
 background: rgba(217, 35, 30, 1); 
 color: rgba(255, 255, 255, 1);
}
.prev-page,
.next-page{
    background-color: rgba(255, 255, 255, 1) !important;
    color: rgba(26, 28, 29, 1) !important;
}
.footer-brand {
	width: 100px;
	height: 110px;
	padding: 12px;
	background: #fff;
}

.footer-brand img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.footer-copy {
	color: #dfe4e7;
	font-size: 16px;
}

.footer-label {
	margin-bottom: 14px;
	color: #87939a;
	font-size: 12px;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.footer-copy p {
	margin: 0 0 6px;
}

.footer-bottom {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	margin-top: 72px;
	padding-top: 25px;
	border-top: 1px solid rgba(255, 255, 255, .14);
	color: #829097;
	font-size: 13px;
}

.footer-bottom a {
	margin-left: 20px;
	text-decoration: none;
}

.faq-list {
	border-top: 1px solid var(--line);
	
}

.faq-item {
	border-bottom: 1px solid var(--line);
	padding: 10px;
}

.faq-question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
	width: 100%;
	padding: 24px 0;
	border: 0;
	background: transparent;
	color: inherit;
	text-align: left;
}

.faq-question::after {
	content: "+";
	color: var(--red);
	font-size: 25px;
	font-weight: 300;
}

.faq-item.is-open .faq-question::after {
	content: "-";
}

.faq-answer {
	display: none;
	padding: 0 55px 25px 0;
	color: var(--muted);
}

.faq-item.is-open .faq-answer {
	display: block;
}

.product-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.product-card {
	border: 1px solid var(--line);
	background: #fff;
	text-decoration: none;
}

.product-card__image {
	aspect-ratio: 1.48;
	background: #f0f2f3;
}

.product-card__body {
	padding: 25px 28px 28px;
}

.product-card__top {
	display: flex;
	align-items: start;
	justify-content: space-between;
	gap: 12px;
}

.product-card h3 {
	margin: 0;
	font-size: 23px;
	line-height: 1.1;
}

.product-tag {
	padding: 4px 8px;
	background: #f0f1f2;
	color: #5d6468;
	font-size: 11px;
	white-space: nowrap;
	text-transform: uppercase;
}

.product-card .text-link {
	margin-top: 26px;
}

.step-list {
	display: grid;
	grid-template-columns: repeat(4, 1fr);

	gap: 20px;
}
.step{
  	position: relative;  
}
.step-list .img1{
    border-radius: 9999px;
    background: rgba(226, 226, 228, 0.1);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
        margin: 0 auto;
         position: relative;
    z-index: 10;
    
}
#downloads .card-grid {
   
    grid-template-columns: repeat(4, 1fr);
    
}
#downloads .feature-card h3 {
    margin: 0 0 4px;
  
}
#downloads .feature-card {
  
    background: rgba(249, 249, 251, 1);
}
.step::after {
 content: '';
    position: absolute;
    left: 0;
    bottom: 66%;
    width: 107%;
    height: 1px;
    z-index: 1;
    background-color: rgb(144 147 153 / 49%);
    transition: width 0.3s ease;
}
.step {
	position: relative;
	padding-top: 26px;
	/*border-top: 1px solid var(--line);*/
}

/*.step::before {*/
/*	position: absolute;*/
/*	top: -14px;*/
/*	left: 0;*/
/*	display: grid;*/
/*	place-items: center;*/
/*	width: 28px;*/
/*	height: 28px;*/
/*	background: var(--red);*/
/*	color: #fff;*/
/*	content: attr(data-step);*/
/*	font-size: 12px;*/
/*	font-weight: 700;*/
/*}*/

.step h3 {
	margin: 0 0 10px;
	font-size: 16px;
}

.step p {
	margin: 0;
	color: var(--muted);
	font-size: 14px;
	line-height: 1.55;
}

.support-band {
	display: grid;
	grid-template-columns: 1fr 1fr;
}

.support-band__image {
	min-height: 470px;
}

.support-band__content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 80px;
	background: var(--soft-dark);
	color: #fff;
}

.support-band__content p {
	max-width: 520px;
	color: rgba(255, 255, 255, .68);
}

.support-band__content ul {
	padding: 0;
	list-style: none;
}

.support-band__content li {
    margin: 13px 0;
    color: #fff;
    display: flex;
    gap: 7px;
    align-items: center;
}


.split-intro {
	display: grid;
	grid-template-columns: 1.05fr .95fr;
	gap: 70px;
	align-items: center;
}

.split-intro__image {
	aspect-ratio: 1.35;
}

.split-intro h2 {
	margin: 0 0 24px;
	font-size: clamp(34px, 3vw, 55px);
	line-height: 1.02;
}

.split-intro p {
	color: var(--muted);
	font-size: 16px;
}

.tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 28px;
	margin-bottom: 42px;
	border-bottom: 1px solid var(--line);
}

.tab {
	position: relative;
	padding: 0 0 19px;
	border: 0;
	background: transparent;
	color: #70777d;
	font-size: 14px;
	text-transform: uppercase;
}

.tab.is-active {
	color: var(--red);
}

.tab.is-active::after {
	position: absolute;
	right: 0;
	bottom: -1px;
	left: 0;
	height: 2px;
	background: var(--red);
	content: "";
}

.hidden-panel {
	display: none;
}

.hidden-panel.is-active {
	display: block;
}

.site-dialog {
	position: fixed;
	inset: 0;
	z-index: 100;
	display: none;
	place-items: center;
	padding: 20px;
	background: rgba(10, 15, 18, .72);
}

.site-dialog.is-open {
	display: grid;
}

.site-dialog__panel {
	position: relative;
	width: min(100%, 620px);
	padding: 45px;
	background: #fff;
}

.site-dialog__close {
	position: absolute;
	top: 16px;
	right: 16px;
	width: 34px;
	height: 34px;
	border: 1px solid var(--line);
	background: #fff;
	font-size: 20px;
}

.site-dialog__panel h2 {
	margin: 0 0 10px;
}

.site-dialog__panel p {
	margin: 0 0 25px;
	color: var(--muted);
}

.form-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 18px;
}

.form-field {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.form-field--full {
	grid-column: 1 / -1;
}

.form-field label {
	color: #596269;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.form-field input,
.form-field select,
.form-field textarea {
	width: 100%;
	padding: 15px 16px;
	border: 1px solid var(--line);
	background: #fff;
	color: var(--ink);
}

.form-field textarea {
	min-height: 120px;
	resize: vertical;
}

@media only screen and (max-width: 1440px) {
	.main {
		width: min(calc(100% - 120px), var(--main));
	}

	.site-nav {
		gap: 38px;
		margin-right: 44px;
	}

	.site-nav a {
		font-size: 15px;
	}

	.section {
		padding: 88px 0;
	}

	.support-band__content {
		padding: 56px;
	}
}

@media only screen and (max-width: 768px) {
	.main {
		width: calc(100% - 40px);
	}

	.site-header {
		height: 76px;
	}

	.brand {
		width: 58px;
		height: 54px;
		padding: 6px 8px;
	}

	.menu-toggle {
		display: block;
	}

	.site-nav {
		position: absolute;
		top: 76px;
		right: 20px;
		left: 20px;
		display: none;
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		margin: 0;
		padding: 10px 20px;
		border: 1px solid var(--line);
		background: #fff;
		box-shadow: 0 16px 30px rgba(15, 24, 30, .08);
	}

	.site-nav.is-open {
		display: flex;
	}

	.site-nav a {
		padding: 15px 0;
	}

	.site-nav a::after {
		bottom: 7px;
	}

	.header-cta {
		display: none;
	}

	.page-hero {
		padding: 42px 0 46px;
	}

	.page-hero h1 {
		font-size: 42px;
	}

	.page-hero p {
		font-size: 15px;
	}

	.section {
		padding: 64px 0;
	}

	.section-heading,
	.cta-strip__inner {
		display: block;
	}

	.section-heading p {
		margin-top: 18px;
	}

	.card-grid,
	.product-grid,
	.step-list,
	.split-intro,
	.support-band,
	.footer-grid {
		grid-template-columns: 1fr;
	}

	.feature-card {
		padding: 25px;
	}

	.product-grid {
		gap: 16px;
	}

	.product-card__body {
		padding: 20px;
	}

	.support-band__image {
		min-height: 300px;
	}

	.support-band__content {
		padding: 44px 20px;
	}

	.split-intro {
		gap: 35px;
	}

	.cta-strip .button {
		margin-top: 28px;
	}

	.footer-grid {
		gap: 28px;
	}

	.footer-bottom {
		display: block;
		margin-top: 42px;
	}

	.footer-bottom div + div {
		margin-top: 16px;
	}

	.footer-bottom a:first-child {
		margin-left: 0;
	}

	.form-grid {
		grid-template-columns: 1fr;
	}

	.form-field--full {
		grid-column: auto;
	}
}
