:root {
	--main-text: #151515;
	--accent: #07a04a;
	--secondary-text: #898989;
	--white: #ffffff;
	--stroke: #cacaca;
	--light-bg: #fafafa;
	--border: #e5e5e5;
}

/* FONTS */
@font-face {
	font-family: 'Gilroy';
	src: local('Gilroy Medium'), local('Gilroy-Medium'),
	url('../fonts/Gilroy-Medium.woff2') format('woff2');
	font-weight: 500;
	font-style: normal;
}

@font-face {
	font-family: 'Gilroy';
	src: local('Gilroy Semibold'), local('Gilroy-Semibold'),
	url('../fonts/Gilroy-Semibold.woff2') format('woff2');
	font-weight: 600;
	font-style: normal;
}

body {
	background-color: var(--white, #ffffff);
	font-family: 'Gilroy', sans-serif;
	font-size: 16px;
	line-height: 24px;
	font-weight: 500;
	color: var(--main-text, #151515);
}

body.overflow {
	overflow: hidden;
}

img {
	height: auto;
}

.visually-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	border: 0;
	padding: 0;
	white-space: nowrap;
	clip-path: inset(100%);
	clip: rect(0 0 0 0);
	overflow: hidden;
}

.section__container {
	padding-top: 40px;
	padding-bottom: 40px;
}

.section__title {
	margin-bottom: 8px;
}

.section__title:not(:has(+ .section__subtitle)) {
	margin-bottom: 20px;
}

.section__subtitle {
	margin-bottom: 20px;
	color: var(--secondary-text, #898989);
}

.container {
	width: 100%;
	max-width: 1416px;
	margin-right: auto;
	margin-left: auto;
	padding-right: 20px;
	padding-left: 20px;
}

.title {
	font-weight: 600;
}

.title br {
	display: none;
}

.title--h1 {
	font-size: 36px;
	line-height: 44px;
}

.title--h2 {
	font-size: 28px;
	line-height: 36px;
}

.title--h3 {
	font-size: 24px;
	line-height: 32px;
}

.title--h4 {
	font-size: 20px;
	line-height: 28px;
}

.secondary-text {
	color: var(--secondary-text, #898989);
}

.btn {
	display: inline-block;
	text-align: center;
	border: 1px solid transparent;
	border-radius: 8px;
	text-decoration: none;
	font-family: inherit;
	transition: all 0.3s ease-in-out;
	cursor: pointer;
}

.btn--accent {
	background-color: var(--accent, #07a04a);
	padding: 11px 23px;
	color: var(--white, #ffffff);
}

.btn--outline {
	padding: 9px 15px;
	background-color: transparent;
	border-color: var(--stroke, #cacaca);
	font-size: 14px;
	line-height: 20px;
	font-weight: 600;
	color: var(--main-text, #151515);
}

.btn--light {
	padding: 14px 23px;
	background-color: var(--white, #ffffff);
	color: var(--main-text, #151515);
	font-size: 16px;
	line-height: 18px;
	font-weight: 500;
}

.btn--arrow {
	padding-top: 11px;
	padding-bottom: 11px;
	position: relative;
	display: flex;
	align-items: center;
	width: max-content;
}

.btn--arrow::after {
	content: "";
	display: inline-block;
	width: 24px;
	height: 24px;
	background-image: url("../img/icons/icon-arrow.svg");
	background-repeat: no-repeat;
	margin-left: 8px;
	transition: all 0.3s ease-in-out;
}

.btn--accent.btn--arrow::after {
	filter: invert(1);
}

.btn--arrow:hover::after {
	margin-left: 16px;
	transition: all 0.3s ease-in-out;
}

.btn:disabled {
	cursor: not-allowed;
	background-color: #78c59a;
}

.header {
	border-bottom: 1px solid #eeeeee;
	transition: 0.3s background-color;
}

.header.active {
	background-color: var(--main-text);
	border-color: rgba(238, 238, 238, 0.1);
}

.header__container {
	padding-top: 6px;
	padding-bottom: 6px;
}

.header__nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.header__logo {
	max-width: 198px;
}

.header__logo--light {
	filter: invert(1);
}

.header__logo.active {
	filter: invert(1);
}

.header__menu-btn {
	margin-right: -8px;
}

.menu-btn {
	position: relative;
	z-index: 10;
	width: 44px;
	height: 44px;
	background-color: transparent;
	border: none;
	padding: 15px 12px;
	display: block;
	cursor: pointer;
}

.menu-btn__line {
	position: absolute;
	top: 21px;
	left: 12px;
	height: 2px;
	width: 20px;
	background-color: var(--main-text, #151515);
	transition: width 0.3s ease-out;
}

.menu-btn__line:after,
.menu-btn__line:before {
	content: '';
	position: absolute;
	left: 0;
	width: 20px;
	height: 2px;
	background-color: var(--main-text, #151515);
	transition: all 0.3s ease-out;
}

.menu-btn__line:before {
	top: -6px;
}

.menu-btn__line:after {
	bottom: -6px;
}

.menu-btn.open .menu-btn__line {
	width: 0;
	background-color: var(--white, #ffffff);
}

.menu-btn.open .menu-btn__line:before {
	top: 0;
	background-color: var(--white, #ffffff);
	transform: rotate(45deg);
}

.menu-btn.open .menu-btn__line:after {
	bottom: 0;
	background-color: var(--white, #ffffff);
	transform: rotate(-45deg);
}

.header__menu-wrapper {
	opacity: 0;
	visibility: hidden;
}

.header__menu-wrapper.open {
	opacity: 1;
	visibility: visible;
}

.menu-wrapper {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	width: 100%;
	height: 100vh;
	background-color: var(--main-text, #151515);
	padding-bottom: 20px;
	overflow-x: hidden;
	overflow-y: auto;
	opacity: 0;
	visibility: hidden;
	transition: 0.3s opacity, 0.3s visibility;
}

.menu-wrap {
	padding: 20px;
	border-bottom: 1px solid rgba(238, 238, 238, 0.1);
}

.menu-list {
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.menu-list--inner {
	padding: 0 20px;
}

.menu-list--services {
	padding: 0 20px;
}

.menu-wrapper__row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 6px 20px;
	border-bottom: 1px solid rgba(238, 238, 238, 0.1);
}

.menu-list__wrapper {
	position: absolute;
	top: 0;
	left: 0;
	display: flex;
	flex-direction: column;
	width: 100%;
	height: 100%;
	padding: 0 0 40px;
	background-color: var(--main-text, #151515);
	transform: translateX(100%);
	transition: 0.3s transform;
	z-index: 1;
}

.menu-list__wrapper.show {
	transform: translateX(0);
}

.menu-list__row {
	padding: 12px 20px;
	border-bottom: 1px solid rgba(238, 238, 238, 0.1);
	margin-bottom: 40px;
}

.menu-list__prev {
	display: flex;
	align-items: center;
	gap: 24px;
	width: fit-content;
	color: var(--white, #fff);
	font-size: 16px;
	font-weight: 500;
	line-height: 24px;
	background-color: transparent;
	border: 0;
	padding: 0;
}

.menu-list__prev::before {
	content: '';
	width: 16px;
	height: 32px;
	font-size: 0;
	border: 0;
	padding: 0;
	background-color: transparent;
	background-image: url("../img/icons/icon-chevron-right.svg");
	background-repeat: no-repeat;
	background-position: center;
	background-size: 24px;
	filter: invert(100);
	transform: scaleX(-1);
	cursor: pointer;
}

.menu-list__name {
	display: block;
	color: var(--secondary-text, #898989);
	font-size: 16px;
	font-weight: 500;
	line-height: 24px;
	padding-left: 20px;
	margin-bottom: 8px;
}

.menu-list__item--sub {
	display: flex;
	justify-content: space-between;
}

.menu__container {
	display: contents;
}

.menu-list__button {
	width: 44px;
	height: 44px;
	font-size: 0;
	border: 0;
	padding: 0;
	background-color: transparent;
	background-image: url("../img/icons/icon-chevron-right.svg");
	background-repeat: no-repeat;
	background-position: right center;
	background-size: 24px;
	filter: invert(100);
	cursor: pointer;
}

.services-btn {
	position: relative;
	display: flex;
	width: 100%;
	align-items: center;
	background-color: transparent;
	border: none;
	cursor: pointer;
	color: var(--white, #ffffff);
	font-size: 18px;
	text-decoration: none;
	line-height: 26px;
	padding: 9px 0;
}

.services-btn::after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	background-image: url("../img/icons/icon-chevron-right.svg");
	background-repeat: no-repeat;
	background-position: right center;
	background-size: 24px;
	filter: invert(100);
}

.header__services-btn {
	margin-bottom: 4px;
}

.menu-list__link {
	color: var(--white, #ffffff);
	font-size: 18px;
	text-decoration: none;
	line-height: 26px;
	display: inline-block;
	padding: 9px 0;
}

.header__menu-technical {
	position: relative;
}

.header__info {
	padding: 20px;
}

.languages-btn {
	display: none;
}

.languages-list {
	padding: 0;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.languages-list__link {
	width: 60px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	color: var(--white, #ffffff);
	text-transform: uppercase;
	font-weight: 600;
	border: 1px solid rgba(238, 238, 238, 0.1);
	border-radius: 8px;
}

.languages-list__link--active {
	background-color: var(--white, #ffffff);
	color: var(--main-text, #151515);
	border-color: var(--white, #ffffff);
}

.menu-info--inner {
	display: none;
}

.header__menu-info {
	margin-top: 54px;
}

.menu-info__title {
	font-size: 20px;
	line-height: 28px;
	color: var(--white, #ffffff);
}

.menu-info__item {
	color: var(--secondary-text, #898989);
}

.header__social-list {
	margin-top: 40px;
}

.social-list {
	padding: 0;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.social-list__link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: var(--main-text, #151515);
}

.social-list--light .social-list__link {
	background-color: var(--white, #ffffff);
}

.social-list__link:hover,
.social-list--light .social-list__link:hover {
	background-color: var(--accent, #07a04a);
}

.social-list__icon {
	filter: invert(1);
}

.header__btn {
	margin-top: 30px;
	width: 100%;
	font-size: 14px;
	font-weight: 600;
}

.hero__container {
	padding-top: 20px;
	padding-bottom: 40px;
	display: flex;
	flex-direction: column;
}

.hero__title {
	font-weight: 600;
	font-size: 36px;
	line-height: 44px;
	text-align: center;
	max-width: 512px;
	margin: 0 auto;
}

.hero__list {
	margin-left: auto;
	margin-top: 40px;
}

.hero__label {
	margin-top: 40px;
	line-height: 18px;
}

.main-cards-list {
	padding: 0;
	list-style: none;
	line-height: 18px;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.main-cards-list__link {
	color: var(--main-text);
	text-decoration: none;
	line-height: 18px;
	display: inline-block;
}

.banner__img {
	width: 100%;
	max-height: 320px;
	object-fit: cover;
}

.about__inner {
	max-width: 1004px;
	margin-left: auto;
}

.about__title {
	font-size: 28px;
	font-weight: 600;
	line-height: 36px;
}

.about__list {
	margin-top: 20px;
}

.about-list {
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.about-list__title {
	font-size: 32px;
	line-height: 40px;
	font-weight: 600;
	position: relative;
}

.about-list__title::after {
	content: "";
	display: block;
	width: 240px;
	height: 1px;
	background-color: var(--stroke, #cacaca);
	margin-top: 12px;
}

.about-list__desc {
	margin-top: 12px;
	color: var(--secondary-text, #898989);
}

.services {
	background-color: var(--light-bg, #fafafa);
}

.cards-list {
	padding: 0;
	list-style: none;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 12px;
}

.cards-list__item {
	padding: 19px;
	width: 100%;
	max-width: 678px;
	background-color: var(--white, #ffffff);
	border: 1px solid var(--border, #e5e5e5);
	border-radius: 12px;
}

.cards-list__title {
	font-size: 20px;
	line-height: 28px;
	font-weight: 600;
}

.cards-list__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	box-shadow: -1px 3px 12px 0 #0000003d;
	background-color: var(--main-text, #151515);
	border-radius: 12px;
	margin-bottom: 20px;
}

.cards-list__desc {
	margin-top: 8px;
	color: var(--secondary-text, #898989);
}

.cards-list__link,
.cards-list__more {
	margin-top: 20px;
}

.cards-list--accent .cards-list__title {
	font-size: 24px;
	line-height: 32px;
}

.cards-list--accent .cards-list__icon {
	background-color: var(--accent, #07a04a);
}

.cards-list--tiny .cards-list__item {
	padding: 23px;
	display: flex;
	align-items: center;
	gap: 24px;
}

.cards-list--tiny .cards-list__icon {
	flex: 0 0 auto;
	margin: 0;
}

.cta {
	border-top: 1px solid var(--stroke, #cacaca);
}

.cta--post {
	border-top: 0;
}

.cta__container--post {
	padding: 0;
}

.cta__wrapper {
	padding: 378px 20px 20px;
	max-width: 350px;
	margin: 0 auto;
	background-image: url("../img/cta-banner-mobile.png"), linear-gradient(180deg, rgba(0, 3, 0, 0) 61.69%, #000300 74.74%);
	background-position: top center;
	background-size: cover;
	background-repeat: no-repeat;
	border-radius: 12px;
	color: var(--white, #ffffff);
}

.cta__desc {
	color: var(--stroke, #cacaca);
	margin-top: 12px;
	line-height: 18px;
}

.cta__btn {
	margin-top: 20px;
}

.portfolio-list {
	padding: 0;
	list-style: none;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 12px;
}

.portfolio-list__item {
	max-width: 445px;
}

.portfolio-list__link {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	border: 1px solid var(--border, #e5e5e5);
	border-radius: 12px;
	background-color: var(--light-bg, #fafafa);
	text-decoration: none;
	z-index: 10;
}

.portfolio-list__labels {
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding: 16px;
	position: absolute;
	top: 0;
}

.portfolio-list__label {
	padding: 4px 10px;
	font-size: 14px;
	line-height: 20px;
	width: max-content;
	border-radius: 8px;
}

.portfolio-list__label--accent {
	background-color: var(--accent, #07a04a);
	color: var(--white, #ffffff);
}

.portfolio-list__label--light {
	background-color: var(--white, #ffffff);
	color: var(--main-text, #151515);
}

.portfolio-list__img {
	height: 320px;
	object-fit: cover;
	border-radius: 12px;
}

.portfolio-list__footer {
	padding: 20px;
}

.portfolio-list__year {
	color: var(--secondary-text, #898989);
}

.portfolio-list__title {
	font-size: 20px;
	line-height: 28px;
	font-weight: 600;
	color: var(--main-text, #151515);
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: relative;
}

.portfolio-list__title::after {
	content: "";
	display: inline-block;
	width: 32px;
	height: 32px;
	background-image: url("../img/icons/icon-arrow.svg");
	background-size: cover;
	background-repeat: no-repeat;
	margin-left: 8px;
	transition: all 0.3s ease-in-out;
}

.portfolio__more-btn {
	margin-top: 20px;
	width: 100%;
}

.testimonials__text {
	margin-top: 20px;
	color: var(--secondary-text, #898989);
}

.testimonials__text p + p,
.testimonials__text ul,
.testimonials__text ol,
.testimonials__text img {
	margin-top: 24px;
}

.testimonials__list {
	margin-top: 20px;
}

.testimonials-list {
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.testimonials-list__item {
	position: relative;
	padding-bottom: 16px;
	counter-increment: testimonials;
	border-bottom: 1px solid var(--border, #e5e5e5);
}

.testimonials-list__item:before {
	content: '/0' counter(testimonials, decimal-leading-zero);
	display: block;
	margin-bottom: 24px;
}

.testimonials-list__item:last-child {
	padding-bottom: 0;
	border-bottom: 0;
}

.testimonials-list__text {
	overflow: hidden;
	transition: all 0.3s ease-in-out;
}

.more-text.hide {
	max-height: 72px;
	overflow: hidden;
}

.more-text.show {
	max-height: max-content;
	transition: all 0.3s ease-in-out;
}

.more-text-btn {
	background-color: transparent;
	border: none;
	padding: 0;
	margin-top: 12px;
	text-decoration: underline;
	font-weight: 600;
	cursor: pointer;
}

.more-text-btn.hide {
	display: none;
}

.testimonials-list__author {
	margin-top: 24px;
}

.author {
	display: flex;
	gap: 16px;
}

.author__img {
	width: 60px;
	height: 60px;
	object-fit: cover;
	border-radius: 50%;
	box-shadow: 0 1px 9px 0 #0000007a;
	flex: 0 0 60px;
}

.author__info {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.author__name {
	font-size: 20px;
	line-height: 28px;
	font-weight: 600;
}

.author__position {
	color: var(--secondary-text, #898989);
}

.author--column {
	flex-direction: column;
}

.author--column .author__img {
	width: 80px;
	height: 80px;
	flex: 0 0 80px;
}

.author--column .author__name {
	margin-bottom: 4px;
}

.faq {
	background-color: var(--main-text, #151515);
}

.faq__container {
	padding-top: 20px;
	padding-bottom: 20px;
}

.faq__inner {
	max-width: 960px;
	margin: 0 auto;
}

.faq__title {
	color: var(--white, #ffffff);
}

.faq__list {
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.faq-list__item {
	border-bottom: 1px solid #373737;
	padding-bottom: 24px;
}

.faq-list__item:last-child {
	border-bottom: none;
}

.faq-list__btn {
	padding: 0 34px 0 0;
	border: 0;
	background-color: transparent;
	position: relative;
	font-size: 20px;
	line-height: 24px;
	color: var(--white, #ffffff);
	text-align: left;
	width: 100%;
	cursor: pointer;
}

.faq-list__btn::after {
	content: "";
	display: block;
	width: 24px;
	height: 24px;
	position: absolute;
	top: 0;
	right: 0;
	background-image: url("../img/icons/icon-plus.svg");
	background-size: cover;
	transition: all 0.3s ease-in-out;
}

.faq-list__btn.active::after {
	transform: rotate(45deg);
	transition: all 0.3s ease-in-out;
}

.faq-list__text {
	display: none;
	color: var(--secondary-text, #898989);
	padding-top: 12px;
}

.faq-list__text p + p,
.faq-list__text ul,
.faq-list__text ol,
.faq-list__text img {
	margin-top: 24px;
}

.faq-list__text.show {
	display: block;
	padding-bottom: 12px;
}

.clients__container {
	padding-top: 20px;
	padding-bottom: 20px;
}

.clients-list {
	padding: 0;
	list-style: none;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 12px;
}

.clients-list__btn {
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 96px;
	background-color: transparent;
	border: 1px solid var(--border, #e5e5e5);
	border-radius: 8px;
}

.clients-list__img {
	max-height: 52px;
	max-width: 125px;
	width: auto;
}

.discuss {
	background-color: var(--light-bg, #fafafa);
}

.discuss__container {
	padding-top: 40px;
	padding-bottom: 40px;
}

.discuss__title {
	font-size: 28px;
	line-height: 36px;
	font-weight: 600;
	margin-bottom: 20px;
	text-align: center;
}

.discuss__btn {
	margin: 0 auto;
}

.footer {
	background-color: var(--main-text, #151515);
}

.footer__container {
	padding-top: 20px;
	padding-bottom: 20px;
}

.footer__container--menus,
.footer__column--menus {
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.footer__title {
	font-size: 16px;
	line-height: 24px;
	color: var(--secondary-text, #898989);
	margin-bottom: 24px;
}

.footer-menu {
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.footer-menu__item {
	display: inline;
}

.footer-menu__link,
.copyright {
	color: var(--white, #ffffff);
}

.footer-menu__link {
	text-decoration: none;
}

.footer__images {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.footer__img {
	max-height: 40px;
	width: auto;
}

.copyright {
	display: flex;
	flex-direction: column;
	gap: 20px;
	position: relative;
}

.copyright::before {
	content: "";
	position: absolute;
	top: 0;
	left: 20px;
	display: block;
	width: calc(100% - 40px);
	height: 1px;
	background-color: #2c2c2c;
}

.page__body--no-scroll {
	overflow: hidden;
}

.page-header__container {
	padding-top: 20px;
	padding-bottom: 20px;
	min-height: 184px;
	display: grid;
	grid-template-rows: auto 1fr;
	grid-gap: 40px;
}

.page-header__text {
	align-self: center;
	text-align: center;
}

.page-header__subtitle {
	margin-top: 16px;
	color: var(--secondary-text, #898989);
}

.breadcrumbs-list {
	padding: 0;
	list-style: none;
	display: flex;
	gap: 4px;
	line-height: 20px;
	overflow-x: auto;
}

.breadcrumbs-list__item {
	position: relative;
	display: flex;
	align-items: center;
}

.breadcrumbs-list__item:not(:last-child)::after {
	content: "";
	margin-left: 4px;
	display: inline-block;
	width: 20px;
	height: 20px;
	background-image: url("../img/icons/icon-chevron-right.svg");
	background-repeat: no-repeat;
	background-position: center;
}

.breadcrumbs-list__link {
	color: var(--main-text, #151515);
	text-decoration: none;
	white-space: nowrap;
}

.breadcrumbs-list__link:not([href]) {
	color: var(--accent, #07a04a);
}

.text__inner:has(+ .cards-list),
.text__inner:has(+ .workflow-list) {
	margin-bottom: 32px;
}

.text--left .text__title {
	max-width: 1004px;
}

.text--left .text__content {
	max-width: 480px;
}

.text__content {
	color: var(--secondary-text, #898989);
	margin-top: 16px;
}

.text__content p:not(:last-child),
.text__content ul:not(:last-child),
.text__content ol:not(:last-child) {
	margin-bottom: 32px;
}

.workflow-list {
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.workflow-list--three-columns .workflow-list__ite {
	max-width: 432px;
}

.workflow-list__item {
	margin: 0 auto;
}

.workflow-list__label {
	background-color: var(--accent, #07a04a);
	border-radius: 8px;
	padding: 4px 10px;
	color: var(--white, #ffffff);
	font-size: 14px;
	line-height: 20px;
	max-width: max-content;
	margin-bottom: 16px;
}

.workflow-list__title {
	padding-bottom: 16px;
	border-bottom: 1px solid var(--stroke, #cacaca);
}

.workflow-list__desc {
	color: var(--secondary-text, #898989);
	margin-top: 16px;
}

.accordion-list {
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.accordion-list__item {
	counter-increment: accordion-item;
	padding-bottom: 16px;
	border-bottom: 1px solid var(--border, #e5e5e5);
}

.accordion-list__title {
	position: relative;
	padding-right: 40px;
	font-size: 20px;
	font-weight: 600;
	line-height: 28px;
	cursor: pointer;
}

.accordion-list__title::before {
	content: '/0' counter(accordion-item, decimal-leading-zero);
	display: block;
	margin-bottom: 16px;
	font-size: 16px;
	line-height: 24px;
}

.accordion-list__title::after {
	content: "";
	position: absolute;
	top: 40px;
	right: 0;
	display: block;
	width: 24px;
	height: 24px;
	background-image: url("../img/icons/icon-plus.svg");
	background-repeat: no-repeat;
	background-position: center;
	filter: invert(1);
}

.accordion-list__title.open::after {
	transform: rotate(45deg);
}

.accordion-list__desc {
	color: var(--secondary-text, #898989);
	margin-top: 16px;
	display: none;
}

.accordion-list__desc ul {
	padding-left: 24px;
}

.accordion-list__desc.show {
	display: block;
}

/* Rich text typography for service_cms_accordion block */
.section.accordion > .container > p,
.section.accordion > .container > h1,
.section.accordion > .container > h2,
.section.accordion > .container > h3,
.section.accordion > .container > h4,
.section.accordion > .container > h5,
.section.accordion > .container > h6,
.section.accordion > .container > ul,
.section.accordion > .container > ol,
.section.accordion > .container > blockquote,
.section.accordion > .container > hr,
.section.accordion > .container > pre {
	max-width: 960px;
}

.section.accordion > .container > p {
	color: var(--secondary-text, #898989);
	font-size: 16px;
	line-height: 24px;
	margin-bottom: 16px;
}

.section.accordion > .container > p:last-of-type {
	margin-bottom: 32px;
}

.section.accordion > .container > h1,
.section.accordion > .container > h2,
.section.accordion > .container > h3,
.section.accordion > .container > h4,
.section.accordion > .container > h5,
.section.accordion > .container > h6 {
	color: var(--main-text, #151515);
	font-weight: 600;
	margin-top: 24px;
	margin-bottom: 12px;
}

.section.accordion > .container > h1 {
	font-size: 32px;
	line-height: 40px;
}

.section.accordion > .container > h2 {
	font-size: 28px;
	line-height: 36px;
}

.section.accordion > .container > h3 {
	font-size: 24px;
	line-height: 32px;
}

.section.accordion > .container > h4 {
	font-size: 20px;
	line-height: 28px;
}

.section.accordion > .container > h5 {
	font-size: 18px;
	line-height: 26px;
}

.section.accordion > .container > h6 {
	font-size: 16px;
	line-height: 24px;
}

.section.accordion > .container > h1:first-child,
.section.accordion > .container > h2:first-child,
.section.accordion > .container > h3:first-child,
.section.accordion > .container > h4:first-child,
.section.accordion > .container > h5:first-child,
.section.accordion > .container > h6:first-child {
	margin-top: 0;
}

.section.accordion > .container > ul,
.section.accordion > .container > ol {
	color: var(--secondary-text, #898989);
	padding-left: 24px;
	margin-bottom: 16px;
}

.section.accordion > .container > ul li,
.section.accordion > .container > ol li {
	margin-bottom: 8px;
	line-height: 24px;
}

.section.accordion > .container > ul li:last-child,
.section.accordion > .container > ol li:last-child {
	margin-bottom: 0;
}

.section.accordion > .container > blockquote {
	color: var(--main-text, #151515);
	font-size: 18px;
	line-height: 28px;
	font-style: italic;
	border-left: 4px solid var(--accent, #07a04a);
	padding-left: 20px;
	margin: 24px 0;
}

.section.accordion > .container > hr {
	border: none;
	border-top: 1px solid var(--border, #e5e5e5);
	margin: 24px 0;
}

.section.accordion > .container a {
	color: var(--accent, #07a04a);
	font-weight: 600;
	text-decoration: underline;
	transition: color 0.3s ease;
}

.section.accordion > .container a:hover {
	color: var(--main-text, #151515);
}

.section.accordion > .container strong,
.section.accordion > .container b {
	font-weight: 600;
	color: var(--main-text, #151515);
}

.section.accordion > .container em,
.section.accordion > .container i {
	font-style: italic;
}

.section.accordion > .container code {
	font-family: monospace;
	font-size: 14px;
	background-color: var(--light-bg, #fafafa);
	border: 1px solid var(--border, #e5e5e5);
	border-radius: 4px;
	padding: 2px 6px;
}

.section.accordion > .container > pre {
	font-family: monospace;
	font-size: 14px;
	line-height: 20px;
	background-color: var(--light-bg, #fafafa);
	border: 1px solid var(--border, #e5e5e5);
	border-radius: 8px;
	padding: 16px;
	margin: 16px 0;
	overflow-x: auto;
}

.section.accordion > .container > pre code {
	background-color: transparent;
	border: none;
	padding: 0;
}

/* Accordion desc rich text refinements */
.accordion-list__desc p {
	margin-bottom: 12px;
}

.accordion-list__desc p:last-child {
	margin-bottom: 0;
}

.accordion-list__desc a {
	color: var(--accent, #07a04a);
	font-weight: 600;
	text-decoration: underline;
	transition: color 0.3s ease;
}

.accordion-list__desc a:hover {
	color: var(--main-text, #151515);
}

.accordion-list__desc strong,
.accordion-list__desc b {
	font-weight: 600;
	color: var(--main-text, #151515);
}

.accordion-list__desc em,
.accordion-list__desc i {
	font-style: italic;
}

.accordion-list__desc ol {
	padding-left: 24px;
}

.accordion-list__desc li {
	margin-bottom: 8px;
	line-height: 24px;
}

.accordion-list__desc li:last-child {
	margin-bottom: 0;
}

.accordion-list__desc blockquote {
	font-style: italic;
	border-left: 4px solid var(--accent, #07a04a);
	padding-left: 16px;
	margin: 16px 0;
}

.accordion-list__desc hr {
	border: none;
	border-top: 1px solid var(--stroke, #cacaca);
	margin: 16px 0;
}

.accordion-list__desc code {
	font-family: monospace;
	font-size: 14px;
	background-color: rgba(0, 0, 0, 0.05);
	border-radius: 4px;
	padding: 2px 6px;
}

.accordion-list__desc h1,
.accordion-list__desc h2,
.accordion-list__desc h3,
.accordion-list__desc h4,
.accordion-list__desc h5,
.accordion-list__desc h6 {
	color: var(--main-text, #151515);
	font-weight: 600;
	margin-top: 16px;
	margin-bottom: 8px;
}

.accordion-list__desc h1:first-child,
.accordion-list__desc h2:first-child,
.accordion-list__desc h3:first-child,
.accordion-list__desc h4:first-child,
.accordion-list__desc h5:first-child,
.accordion-list__desc h6:first-child {
	margin-top: 0;
}

.accordion-list__desc h1 { font-size: 24px; line-height: 32px; }
.accordion-list__desc h2 { font-size: 22px; line-height: 30px; }
.accordion-list__desc h3 { font-size: 20px; line-height: 28px; }
.accordion-list__desc h4 { font-size: 18px; line-height: 26px; }
.accordion-list__desc h5 { font-size: 16px; line-height: 24px; }
.accordion-list__desc h6 { font-size: 14px; line-height: 20px; }

@media screen and (max-width: 767px) {
	.section.accordion > .container > h1 { font-size: 28px; line-height: 36px; }
	.section.accordion > .container > h2 { font-size: 24px; line-height: 32px; }
	.section.accordion > .container > h3 { font-size: 20px; line-height: 28px; }
	.section.accordion > .container > h4 { font-size: 18px; line-height: 26px; }
	.section.accordion > .container > blockquote { font-size: 16px; line-height: 24px; }
}

.info-block {
	background-color: var(--main-text, #151515);
	color: var(--white, #ffffff);
	text-align: center;
}

.info-block__title {
	max-width: 1004px;
	margin: 0 auto;
}

.info-block__subtitle {
	max-width: 480px;
	margin: 16px auto 0;
}

.modal {
	display: none;
	position: fixed;
	z-index: 1000;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	right: 0;
	align-items: center;
	justify-content: center;
	background-color: #0000007a;
	overflow-y: scroll;
}

.modal.show {
	display: flex;
}

.modal--form {
	align-items: unset;
}

.modal__container {
	padding: 20px;
}

.contact-form {
	position: relative;
	background-color: var(--white, #ffffff);
	border-radius: 16px;
	padding: 20px;
}

.modal__close-btn {
	position: absolute;
	top: 12px;
	right: 12px;
	padding: 0;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: transparent;
	border: none;
	filter: invert(100);
	transform: rotate(45deg);
	cursor: pointer;
}

.contact-form--small {
	max-width: 560px;
}

.contact-form--medium {
	max-width: 640px;
}

.contact-form--border {
	border: 1px solid var(--border, #e5e5e5);
}

.contact-form__title {
	margin-bottom: 20px;
}

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

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

.form-input {
	border: 1px solid #e9e9e9;
	background-color: #f7f7f7;
	padding: 11px 15px;
	border-radius: 8px;
	outline: none;
}

.form-input::placeholder {
	color: var(--secondary-text, #898989);
}

.form__footer {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
}

.form__btn {
	width: 100%;
}

.form-checkbox {
	position: relative;
	display: flex;
	align-items: center;
	padding-left: 40px;
	font-size: 14px;
	line-height: 20px;
}

.form-checkbox__input {
	position: absolute;
	appearance: none;
	outline: none;
}

.form-checkbox__icon {
	position: absolute;
	left: 0;
	width: 24px;
	height: 24px;
	border: 1px solid var(--secondary-text, #898989);
	border-radius: 4px;
	background-color: var(--white, #ffffff);
	background-repeat: no-repeat;
	background-position: center;
}

.form-checkbox__input:checked + .form-checkbox__icon {
	border-color: var(--main-text, #151515);
	background-color: var(--main-text, #151515);
	background-image: url("../img/icons/icon-check.svg");
}

.form-input:focus,
.form-checkbox__input:focus + .form-checkbox__icon {
	border-color: var(--accent, #07a04a);
}

.contacts__container {
	display: grid;
	gap: 24px;
}

.contacts__form {
	margin: 0 auto;
}

.contacts__info {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.address__label {
	margin-bottom: 16px;
}

.contacts__links {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.contacts__social-list {
	margin-bottom: 16px;
}

.contacts__links > a {
	color: var(--main-text, #151515);
	text-decoration: none;
	width: max-content;
}

.contacts__links a:hover {
	color: var(--accent, #07a04a);
}

.contacts__info-text {
	max-width: 480px;
}

.map__img {
	object-fit: cover;
	object-position: center;
	height: 320px;
	border-radius: 16px;
}

.page-header__container--post {
	padding-top: 16px;
	padding-bottom: 24px;
	min-height: unset;
	grid-gap: 24px;
}

.page-blog__text {
	display: grid;
	gap: 16px;
}

.page-blog__title {
	color: var(--main-text, #151515);
	font-size: 24px;
	font-weight: 600;
	line-height: 32px;
}

.page-blog__info {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	color: #6c6c6c;
	font-size: 16px;
	font-weight: 500;
	line-height: 24px;
}

.page-blog__info-dot {
	display: flex;
	align-items: center;
	gap: 8px;
}

.page-blog__info-dot::after {
	content: '';
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background-color: #6c6c6c;
	pointer-events: none;
}

.page-blog__author {
	display: flex;
	gap: 8px;
	align-items: center;
	color: #6c6c6c;
	font-size: 16px;
	font-weight: 500;
	line-height: 24px;
	text-decoration: none;
}

.page-blog__author img {
	width: 24px;
	min-width: 24px;
	height: 24px;
	border-radius: 50%;
}

.page-blog {
	display: grid;
	padding-bottom: 16px;
}

.page-blog__img {
	width: 100%;
	border-radius: 12px;
	box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.08);
}

.page-blog__keys {
	border-radius: 12px;
	border: 1px solid #e5e5e5;
	background-color: var(--light-bg, #fafafa);
	padding: 20px;
	margin: 16px 0;
}

.page-blog__keys-title {
	color: var(--main-text, #151515);
	font-size: 18px;
	font-weight: 600;
	line-height: 26px;
	margin-bottom: 20px;
}

.page-blog__keys-list {
	display: grid;
	gap: 12px;
	list-style: none;
	padding: 0;
}

.page-blog__keys-item {
	color: var(--main-text, #151515);
	font-size: 16px;
	font-weight: 500;
	line-height: 28px;
	padding-left: 40px;
	background-image: url(../img/icons/icon-check-alt.svg);
	background-repeat: no-repeat;
	background-size: 28px;
	background-position: left top;
}

.page-blog__content {
	color: #3b3b3b;
	font-size: 14px;
	font-weight: 400;
	line-height: 20px;
}

.page-blog__content h2 {
	color: var(--main-text, #151515);
	font-size: 20px;
	font-weight: 600;
	line-height: 28px;
	margin-bottom: 8px;
}

.page-blog__content h3 {
	color: var(--main-text, #151515);
	font-size: 18px;
	font-weight: 600;
	line-height: 24px;
	margin-bottom: 8px;
}

.page-blog__content h4 {
	color: var(--main-text, #151515);
	font-size: 16px;
	font-weight: 600;
	line-height: 22px;
	margin-bottom: 8px;
}

.page-blog__content h2:not(:first-child),
.page-blog__content h3:not(:first-child),
.page-blog__content h4:not(:first-child) {
	margin-top: 20px;
}

.page-blog__content p:not(:last-child) {
	margin-bottom: 20px;
}

.page-blog__content b,
.page-blog__content strong {
	font-weight: 600;
}

.page-blog__content a {
	color: #07a04a;
	font-weight: 600;
	text-decoration: underline;
	transition: 0.3s color;
}

.page-blog__content a:hover {
	color: var(--main-text, #151515);
}

.page-blog__content li {
	color: #000;
	font-weight: 500;
}

.page-blog__content ul,
.page-blog__content ol {
	padding-left: 22px;
	margin: 8px 0 20px;
}

/* ============================================
   Blog Content Typography - Explicit Styles
   Per /Templates design specifications
   ============================================ */

/* Headings h1, h5, h6 (h2-h4 defined above) */
.page-blog__content h1 {
	color: var(--main-text, #151515);
	font-size: 24px;
	font-weight: 600;
	line-height: 32px;
	margin-bottom: 8px;
}

.page-blog__content h5 {
	color: var(--main-text, #151515);
	font-size: 14px;
	font-weight: 600;
	line-height: 20px;
	margin-bottom: 8px;
}

.page-blog__content h6 {
	color: var(--main-text, #151515);
	font-size: 12px;
	font-weight: 600;
	line-height: 18px;
	margin-bottom: 8px;
}

.page-blog__content h1:not(:first-child),
.page-blog__content h5:not(:first-child),
.page-blog__content h6:not(:first-child) {
	margin-top: 20px;
}

/* Emphasis / Italic */
.page-blog__content em,
.page-blog__content i {
	font-style: italic;
}

/* Links focus state */
.page-blog__content a:focus {
	color: var(--main-text, #151515);
	outline: 2px solid var(--accent, #07a04a);
	outline-offset: 2px;
}

/* Blockquote */
.page-blog__content blockquote {
	color: var(--main-text, #151515);
	font-size: 18px;
	line-height: 28px;
	font-style: italic;
	font-weight: 500;
	border-left: 4px solid var(--accent, #07a04a);
	padding-left: 20px;
	margin: 24px 0;
}

.page-blog__content blockquote p {
	margin-bottom: 0;
}

.page-blog__content blockquote cite {
	display: block;
	margin-top: 8px;
	font-size: 14px;
	font-style: normal;
	color: var(--secondary-text, #898989);
}

/* Images */
.page-blog__content img {
	max-width: 100%;
	height: auto;
	border-radius: 12px;
}

/* Figures and Captions */
.page-blog__content figure {
	margin: 24px 0;
}

.page-blog__content figure img {
	display: block;
	width: 100%;
}

.page-blog__content figcaption {
	margin-top: 8px;
	font-size: 14px;
	line-height: 20px;
	color: var(--secondary-text, #898989);
	text-align: center;
}

/* Tables */
.page-blog__content table {
	width: 100%;
	border-collapse: collapse;
	margin: 24px 0;
	font-size: 14px;
	line-height: 20px;
}

.page-blog__content thead {
	background-color: var(--light-bg, #fafafa);
}

.page-blog__content th {
	color: var(--main-text, #151515);
	font-weight: 600;
	text-align: left;
	padding: 12px 16px;
	border: 1px solid var(--border, #e5e5e5);
}

.page-blog__content td {
	color: var(--main-text, #151515);
	font-weight: 500;
	padding: 12px 16px;
	border: 1px solid var(--border, #e5e5e5);
}

.page-blog__content tbody tr:hover {
	background-color: var(--light-bg, #fafafa);
}

/* Inline Code */
.page-blog__content code {
	font-family: monospace;
	font-size: 14px;
	background-color: var(--light-bg, #fafafa);
	border: 1px solid var(--border, #e5e5e5);
	border-radius: 4px;
	padding: 2px 6px;
}

/* Code Blocks */
.page-blog__content pre {
	font-family: monospace;
	font-size: 14px;
	line-height: 20px;
	background-color: var(--light-bg, #fafafa);
	border: 1px solid var(--border, #e5e5e5);
	border-radius: 8px;
	padding: 16px;
	margin: 24px 0;
	overflow-x: auto;
	white-space: pre-wrap;
	word-wrap: break-word;
}

.page-blog__content pre code {
	background-color: transparent;
	border: none;
	padding: 0;
	font-size: inherit;
	line-height: inherit;
}

/* Horizontal Rule */
.page-blog__content hr {
	border: none;
	border-top: 1px solid var(--border, #e5e5e5);
	margin: 24px 0;
}

/* List styling refinements */
.page-blog__content ul li::marker {
	color: var(--accent, #07a04a);
}

.page-blog__content ol li::marker {
	color: var(--main-text, #151515);
	font-weight: 600;
}

.page-blog__content li {
	margin-bottom: 8px;
}

.page-blog__content li:last-child {
	margin-bottom: 0;
}

/* Nested lists */
.page-blog__content ul ul,
.page-blog__content ul ol,
.page-blog__content ol ul,
.page-blog__content ol ol {
	margin: 8px 0;
}

/* Definition lists */
.page-blog__content dl {
	margin: 20px 0;
}

.page-blog__content dt {
	color: var(--main-text, #151515);
	font-weight: 600;
	margin-bottom: 4px;
}

.page-blog__content dd {
	margin-left: 20px;
	margin-bottom: 12px;
	color: #3b3b3b;
}

/* Abbreviations */
.page-blog__content abbr[title] {
	text-decoration: underline dotted;
	cursor: help;
}

/* Mark / Highlight */
.page-blog__content mark {
	background-color: #fff3cd;
	padding: 0 4px;
	border-radius: 2px;
}

/* Small text */
.page-blog__content small {
	font-size: 12px;
	line-height: 18px;
}

/* Subscript and Superscript */
.page-blog__content sub,
.page-blog__content sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

.page-blog__content sup {
	top: -0.5em;
}

.page-blog__content sub {
	bottom: -0.25em;
}

/* Keyboard input */
.page-blog__content kbd {
	font-family: monospace;
	font-size: 14px;
	background-color: var(--main-text, #151515);
	color: var(--white, #ffffff);
	border-radius: 4px;
	padding: 2px 6px;
}

/* Sample output */
.page-blog__content samp {
	font-family: monospace;
	font-size: 14px;
}

/* Variable */
.page-blog__content var {
	font-style: italic;
}

/* Address */
.page-blog__content address {
	font-style: normal;
	margin: 20px 0;
	line-height: 24px;
}

/* ============================================
   End Blog Content Typography
   ============================================ */

.page-blog__float {
	display: grid;
	gap: 20px;
	margin: 20px 0 52px;
}

.faq-blog__title {
	color: var(--main-text, #151515);
	font-size: 24px;
	font-weight: 600;
	line-height: 32px;
	margin-bottom: 16px;
}

.faq-blog__list {
	display: grid;
	gap: 12px;
	list-style: none;
	padding: 0;
}

.faq-blog__item {
	border-radius: 12px;
	border: 1px solid #e5e5e5;
	background-color: var(--light-bg, #fafafa);
	padding: 16px;
}

.faq-blog__btn {
	position: relative;
	width: 100%;
	color: var(--main-text, #151515);
	font-size: 16px;
	font-weight: 600;
	line-height: 24px;
	text-align: left;
	background-color: transparent;
	border: 0;
	cursor: pointer;
	padding: 0 48px 0 0;
}

.faq-blog__btn::before {
	content: '';
	position: absolute;
	top: 50%;
	right: 3px;
	width: 18px;
	height: 2px;
	background-color: var(--main-text, #151515);
	transform: translateY(-50%);
}

.faq-blog__btn::after {
	content: '';
	position: absolute;
	top: 50%;
	right: 11px;
	width: 2px;
	height: 18px;
	background-color: var(--main-text, #151515);
	transform: translateY(-50%);
	transition: 0.3s transform;
}

.faq-blog__btn.active::after {
	transform: translateY(-50%) rotate(90deg);
}

.faq-blog__text {
	display: none;
	color: #6c6c6c;
	font-size: 14px;
	font-weight: 400;
	line-height: 20px;
	padding-top: 12px;
}

.faq-blog__text.show {
	display: block;
}

.relation__title {
	color: var(--main-text, #151515);
	font-size: 20px;
	font-weight: 600;
	line-height: 28px;
	margin-bottom: 16px;
}

.relation__grid {
	display: grid;
	gap: 20px;
}

.post-card {
	border-radius: 12px;
	border: 1px solid #e5e5e5;
	background-color: var(--light-bg, #fafafa);
	overflow: hidden;
}

.post-card__picture {
	display: block;
}

.post-card__img {
	width: 100%;
	aspect-ratio: 358/200;
	object-fit: cover;
	object-position: center;
	border-radius: 11px;
}

.post-card__block {
	padding: 20px;
}

.post-card__title {
	color: var(--main-text, #151515);
	font-size: 16px;
	font-weight: 600;
	line-height: 24px;
	text-decoration: none;
	transition: 0.3s color;
}

.post-card__title:hover {
	color: #07a04a;
}

.post-card__desc {
	color: #6c6c6c;
	font-size: 14px;
	font-weight: 400;
	line-height: 20px;
	margin-top: 4px;
}

.post-card__info {
	display: flex;
	gap: 8px;
	margin-top: 12px;
	padding-top: 12px;
	border-top: 1px solid var(--border);
}

.post-card__info-text {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	color: #6c6c6c;
	font-size: 14px;
	font-weight: 500;
	line-height: 20px;
	text-decoration: none;
}

.post-card__info-dot {
	display: flex;
	align-items: center;
	gap: 8px;
}

.post-card__info-dot::after {
	content: '';
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background-color: #6c6c6c;
	pointer-events: none;
}

.page-header__container--category {
	gap: 24px;
	padding: 16px;
	padding-bottom: 24px;
}

.page-category__block {
	display: grid;
}

.page-category__title {
	color: var(--main-text, #151515);
	font-size: 24px;
	font-weight: 600;
	line-height: 32px;
}

.page-category__text {
	color: var(--secondary-text, #898989);
	font-size: 16px;
	font-weight: 500;
	line-height: 24px;
	margin-top: 8px;
}

.page-category__cat {
	display: flex;
	gap: 8px;
	list-style: none;
	padding: 0;
	margin-top: 16px;
	overflow-x: auto;
}

.page-category__cat-link {
	display: block;
	color: var(--main-text, #151515);
	font-size: 14px;
	font-weight: 600;
	line-height: 20px;
	text-decoration: none;
	border-radius: 8px;
	border: 1px solid var(--stroke, #cacaca);
	background-color: var(--white, #fff);
	padding: 10px 16px;
}

.page-category__cat-link--active {
	color: var(--white, #fff);
	border: 1px solid var(--accent);
	background-color: var(--accent);
}

.page-category__container {
	display: grid;
	gap: 20px;
}

.page-category__grid {
	display: grid;
	gap: 16px;
}

.pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	padding: 12px 0;
	list-style: none;
	margin: 20px 0 0;
}

.pagination__link {
	display: flex;
	justify-content: center;
	border-radius: 50%;
	width: 24px;
	height: 24px;
	color: #6c6c6c;
	text-align: center;
	font-size: 12px;
	font-weight: 600;
	line-height: 24px;
	background-color: #ebebeb;
	text-decoration: none;
}

.pagination__link--active {
	color: var(--white, #fff);
	background-color: var(--accent);
}

.pagination__dots {
	display: flex;
	justify-content: center;
	width: 24px;
	height: 24px;
	color: #6c6c6c;
	text-align: center;
	font-size: 12px;
	font-weight: 600;
	line-height: 24px;
}

.sidebar {
	display: grid;
	gap: 20px;
}

.page-blog__sidebar {
	display: none;
}

.sidebar-block {
	border-radius: 12px;
	border: 1px solid #e5e5e5;
	background-color: var(--light-bg, #fafafa);
	padding: 20px;
}

.sidebar-block__title {
	color: var(--main-text, #151515);
	font-size: 18px;
	font-weight: 600;
	line-height: 26px;
}

.subscribe__text {
	color: #6c6c6c;
	font-size: 14px;
	font-weight: 400;
	line-height: 20px;
	margin-top: 8px;
}

.subscribe__form {
	margin-top: 20px;
}

.subscribe__input {
	width: 100%;
	border-radius: 8px;
	border: 1px solid #e9e9e9;
	background-color: #f1f1f1;
	padding: 8px 12px;
	color: var(--secondary-text, #898989);
	font-size: 14px;
	font-weight: 500;
	line-height: 20px;
}

.subscribe__button {
	width: 100%;
	color: var(--white, #fff);
	font-size: 14px;
	font-weight: 600;
	line-height: 20px;
	padding: 10px 16px;
	border-radius: 8px;
	background-color: var(--accent, #07a04a);
	border: 0;
	cursor: pointer;
	margin-top: 16px;
}

.popular__list {
	display: grid;
	gap: 20px;
	counter-reset: count;
	list-style: none;
	padding: 0;
	margin-top: 20px;
}

.popular__link {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	color: var(--main-text, #151515);
	font-size: 16px;
	font-weight: 600;
	line-height: 24px;
	text-decoration: none;
	counter-increment: count;
}

.popular__link::before {
	content: counter(count);
	display: block;
	width: 24px;
	min-width: 24px;
	height: 24px;
	border-radius: 6px;
	background-color: #ebebeb;
	color: var(--main-text, #151515);
	font-size: 14px;
	font-weight: 600;
	line-height: 24px;
	text-align: center;
	transition: 0.3s color, 0.3s background-color;
}

.popular__link:hover::before {
	background-color: var(--accent, #07a04a);
	color: var(--white)
}

.popular__time {
	color: #6C6C6C;
	font-size: 14px;
	font-weight: 400;
	line-height: 20px;
	padding-left: 36px;
	margin-top: 4px;
}

.category__list {
	display: grid;
	gap: 8px;
	list-style: none;
	padding: 0;
	margin-top: 20px;
}

.category__link {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 12px;
	color: #6C6C6C;
	font-size: 16px;
	font-weight: 500;
	line-height: 24px;
	text-decoration: none;
	padding: 4px 0;
}

.category__link span {
	display: flex;
	justify-content: center;
	border-radius: 50%;
	width: 24px;
	height: 24px;
	color: #6c6c6c;
	text-align: center;
	font-size: 12px;
	font-weight: 600;
	line-height: 24px;
	background-color: #ebebeb;
}

@media screen and (min-width: 768px) and (min-height: 700px) {
	.modal--form {
		align-items: center;
	}
}

@media screen and (min-width: 768px) {
	.contact-form {
		padding: 40px;
	}

	.modal__close-btn {
		top: 28px;
		right: 28px;
	}

	.form__footer {
		flex-direction: row-reverse;
		gap: 32px;
		margin-top: 20px;
	}

	.form__btn {
		flex: 0 0 max-content;
	}
}

@media screen and (min-width: 992px) {
	.title br {
		display: inline-block;
	}

	.cards-list {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}

	.cards-list__item {
		padding: 31px;
	}

	.cards-list__icon {
		margin-bottom: 32px;
	}

	.cards-list__link {
		margin-top: 32px;
	}

	.clients-list {
		grid-template-columns: repeat(auto-fill, minmax(329px, 1fr));
		gap: 20px;
	}

	.clients-list__btn {
		height: 172px;
	}

	.clients-list__img {
		max-width: 225px;
		max-height: 92px;
	}

	.text--center .text__title {
		text-align: center;
	}

	.workflow-list {
		display: grid;
		grid-gap: 40px;
	}

	.workflow-list--two-columns {
		grid-template-columns: repeat(2, 1fr);
	}

	.workflow-list--three-columns {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media screen and (min-width: 1280px) {
	.title--h1,
	.discuss__title {
		font-size: 64px;
		line-height: 80px;
	}

	.title--h2 {
		font-size: 48px;
		line-height: 56px;
	}

	.title--h3 {
		font-size: 32px;
		line-height: 40px;
	}

	.title--h4 {
		font-size: 24px;
		line-height: 32px;
	}

	.header__container {
		padding: 0;
		max-width: unset;
	}

	.menu-btn {
		display: none;
	}

	.header__logo--out {
		display: none;
	}

	.menu-wrapper {
		position: static;
		display: flex;
		align-items: center;
		gap: 32px;
		height: auto;
		overflow: unset;
		opacity: 1;
		visibility: visible;
		padding: 16px 32px;
		background-color: var(--white, #fff);
		transition: 0.3s background-color;
	}

	.menu-wrapper.active {
		background-color: var(--main-text);
	}

	.menu-wrapper.active .menu-list__info .menu-list__link {
		color: var(--white);
	}

	.menu__container {
		display: block;
		max-width: 1050px;
	}

	.menu-wrapper__row {
		display: contents;
	}

	.menu-wrap {
		display: flex;
		flex-direction: row-reverse;
		gap: 32px;
		border-bottom: 0;
		padding: 0;
		margin-left: auto;
	}

	.menu-list__info .menu-list__link {
		font-size: 16px;
		line-height: 24px;
		white-space: nowrap;
		color: var(--main-text);
	}

	.menu-list__wrapper {
		justify-content: center;
		top: 100%;
		height: calc(100vh - 75px);
		padding: 40px 0;
		opacity: 0;
		visibility: hidden;
		transform: translateY(1px);
		transition: 0.3s opacity, 0.3s visibility;
	}

	.menu-list__wrapper.show {
		opacity: 1;
		visibility: visible;
		transform: translateY(1px);
	}

	.menu-list__wrapper::before {
		content: '';
		position: absolute;
		top: 0;
		left: 50%;
		width: 1px;
		height: 100%;
		background-color: rgba(238, 238, 238, 0.10);
		transform: translateX(120px);
	}

	.menu-list__row {
		display: none;
	}

	.menu-list__name {
		display: none;
		padding-left: 0;
		margin-bottom: 16px;
	}

	.menu-list--services {
		position: relative;
		width: 640px;
		gap: 40px;
		padding: 0;
	}

	.menu-list__item--sub > .menu-list__link {
		font-size: 40px;
		font-style: normal;
		font-weight: 600;
		line-height: 44px;
		color: var(--white);
		padding: 0;
		transition: 0.3s color;
	}

	.menu-list__button {
		position: relative;
		background-image: none;
		filter: unset
	}

	.menu-list__button::before {
		content: '';
		position: absolute;
		top: 14px;
		left: 12px;
		width: 16px;
		height: 16px;
		border-top: 2px solid var(--white);
		border-right: 2px solid var(--white);
		filter: unset;
		transform: rotate(45deg);
		transition: 0.3s border;
	}

	.menu-list__item--active > .menu-list__link {
		color: var(--accent);
	}

	.menu-list__item--active > .menu-list__button::before {
		border-top: 2px solid var(--accent);
		border-right: 2px solid var(--accent);
	}

	.menu-list__item--active .menu-list__wrapper {
		opacity: 1;
		visibility: visible;
	}

	.menu-list--services .menu-list__name {
		display: block;
	}

	.menu-list--inner {
		gap: 8px;
		padding: 0;
	}

	.menu-list--services .menu-list__wrapper {
		top: 0;
		left: 100%;
		height: auto;
		width: 100%;
		padding: 0;
		transform: translateX(100px);
	}

	.menu-list--services .menu-list__wrapper::before {
		display: none;
	}

	.menu-list--services .menu-list__wrapper .menu-list__link {
		font-size: 20px;
		font-style: normal;
		font-weight: 500;
		line-height: 28px;
		color: var(--white);
		padding: 0;
	}

	.menu-info--inner {
		display: block;
		margin-top: 70px;
	}

	.services-btn {
		display: flex;
		align-items: center;
		gap: 32px;
		font-size: 16px;
		line-height: 24px;
		color: var(--main-text);
		transition: 0.3s color;
	}

	.services-btn::before {
		content: '';
		display: block;
		width: 1px;
		height: 24px;
		background-color: var(--stroke);
		order: -2;
		transition: 0.3s background-color;
	}

	.services-btn::after {
		display: none;
	}

	.services-btn span {
		order: -1;
		position: relative;
		height: 2px;
		width: 20px;
		background-color: var(--main-text);
		transition: 0.3s all;
	}

	.services-btn span:after,
	.services-btn span:before {
		content: '';
		position: absolute;
		left: 0;
		width: 20px;
		height: 2px;
		background-color: var(--main-text);
		transition: 0.3s all;
	}

	.services-btn span:before {
		top: -6px;
	}

	.services-btn span:after {
		bottom: -6px;
	}

	.menu-wrapper.active .services-btn {
		color: var(--white);
	}

	.menu-wrapper.active .services-btn::before {
		background-color: rgba(202, 202, 202, 0.30);
	}

	.menu-wrapper.active .services-btn span {
		background-color: transparent;
	}

	.menu-wrapper.active .services-btn span:after,
	.menu-wrapper.active .services-btn span:before {
		background-color: var(--white);
	}

	.menu-wrapper.active .services-btn span:before {
		top: 0;
		transform: rotate(45deg);
	}

	.menu-wrapper.active .services-btn span:after {
		bottom: 0;
		transform: rotate(-45deg);
	}

	.header {
		position: relative;
	}

	.header__logo--light {
		filter: unset;
	}

	.header__services-btn {
		margin: 0;
	}

	.header__menu-technical {
		flex-direction: row;
		gap: 48px;
	}

	.header__info {
		display: contents;
	}

	.header__menu-info {
		display: none;
	}

	.header__btn {
		width: fit-content;
		margin-top: 0;
		padding: 7px 16px;
	}

	.languages {
		position: relative;
	}

	.languages-btn {
		display: block;
		position: relative;
		font-size: 16px;
		font-style: normal;
		font-weight: 500;
		line-height: 24px;
		color: var(--main-text);
		text-transform: uppercase;
		background-color: transparent;
		border: 0;
		padding: 0;
		cursor: pointer;
		transition: 0.3s color;
	}

	.languages-list {
		position: absolute;
		top: 40px;
		left: 50%;
		background-color: var(--white);
		border: 1px solid var(--stroke);
		border-radius: 10px;
		padding: 4px;
		transform: translateX(-50%);
		opacity: 0;
		visibility: hidden;
		z-index: 1;
		transition: 0.3s opacity, 0.3s visibility;
	}

	.languages-list.show {
		opacity: 1;
		visibility: visible;
	}

	.languages-list__link {
		color: var(--main-text, #151515);
	}

	.menu-wrapper.active .languages-btn {
		color: var(--white);
	}

	.menu-wrapper.active .languages-list__link {
		color: var(--white);
	}

	.menu-wrapper.active .languages-list__link--active {
		color: var(--main-text, #151515);
	}

	.menu-wrapper.active .languages-list {
		background-color: var(--main-text);
		border: 1px solid rgba(238, 238, 238, 0.1);
	}

	.cards-list--default {
		grid-template-columns: repeat(3, 1fr);
	}

	.cards-list__title {
		font-size: 24px;
		line-height: 32px;
	}

	.cards-list--tiny .cards-list__item {
		padding: 31px;
		min-height: 208px;
		flex-direction: column;
		align-items: flex-start;
		justify-content: space-between;
	}

	.cards-list--tiny .cards-list__title {
		font-size: 20px;
		line-height: 28px;
	}

	.faq__container,
	.clients__container {
		padding-top: 64px;
		padding-bottom: 64px;
	}

	.cta__wrapper {
		max-width: 100%;
		padding: 48px;
		background-image: url("../img/cta-banner-desktop.png");
		background-position: bottom left;
		background-size: 594px auto;
		background-color: #000300;
		border-radius: 20px;
		min-height: 322px;
	}

	.cta__inner {
		max-width: 554px;
		margin-left: auto;
	}

	.cta__desc {
		margin-top: 16px;
	}

	.cta__btn {
		margin-top: 32px;
	}

	.portfolio-list {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 40px 20px;
	}

	.portfolio__more-btn {
		margin-top: 64px;
	}

	.testimonials__container {
		display: grid;
		grid-template-columns: 1fr 624px;
		grid-gap: 32px;
	}

	.testimonials__title {
		max-width: 552px;
	}

	.testimonials__text {
		max-width: 480px;
		margin-top: 64px;
	}

	.testimonials__list {
		margin-top: 0;
	}

	.testimonials-list {
		gap: 32px;
	}

	.testimonials-list__item,
	.testimonials-list__item:last-child {
		padding-bottom: 32px;
	}

	.testimonials-list__text {
		font-size: 18px;
		line-height: 26px;
	}

	.testimonials-list__author {
		margin-top: 32px;
	}

	.faq-list__btn {
		font-size: 24px;
		line-height: 32px;
	}

	.faq-list__btn::after {
		width: 32px;
		height: 32px;
	}

	.discuss__container {
		padding-top: 116px;
		padding-bottom: 116px;
	}

	.discuss__title {
		margin: 0 auto 40px;
		max-width: 550px;
	}

	.footer {
		padding-top: 40px;
		padding-bottom: 40px;
	}

	.footer__container {
		padding-top: 0;
		padding-bottom: 0;
	}

	.footer__container--menus,
	.copyright {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 88px;
	}

	.footer__column--menus:nth-child(2),
	.footer__column--menus:nth-child(3) {
		display: grid;
		grid-template-rows: repeat(2, 1fr);
	}

	.copyright {
		margin-top: 40px;
		padding-top: 40px;
	}

	.footer__images {
		align-self: flex-end;
		justify-content: flex-end;
	}

	.footer__img {
		max-height: 48px;
	}

	.page-header__container {
		min-height: 324px;
	}

	.text--center .text__content {
		margin-top: 64px;
		display: grid;
		grid-template-columns: 344px 446px;
		align-items: center;
		justify-content: center;
		grid-gap: 48px 96px;
	}

	.text--center .text__inner {
		margin-top: 72px;
		margin-bottom: 72px;
	}

	.text__inner:has(+ .workflow-list) {
		margin-bottom: 64px;
	}

	.text--right .text__inner {
		max-width: 1004px;
		margin-left: auto;
	}

	.text--right .text__content {
		display: grid;
		grid-template-columns: repeat(2, 308px);
		grid-gap: 40px;
	}

	.text--right .text__title {
		font-size: 64px;
		line-height: 80px;
	}

	.workflow-list__label {
		margin-bottom: 20px;
	}

	.workflow-list__title {
		padding-bottom: 20px;
	}

	.workflow-list__desc {
		margin-top: 20px;
	}

	.accordion-list {
		gap: 20px;
	}

	.accordion-list__title {
		font-size: 24px;
		line-height: 32px;
	}

	.accordion-list__title::before {
		position: absolute;
		top: 0;
		left: 0;
		margin: 0;
	}

	.accordion-list__title::after {
		top: 0;
	}

	.accordion-list__title,
	.accordion-list__desc {
		padding-right: 64px;
	}

	.accordion-list__title-text {
		margin-left: auto;
		max-width: 940px;
	}

	.accordion-list__desc {
		margin-left: auto;
		max-width: 1004px;
	}

	.author--column {
		flex-direction: row;
		gap: 24px;
	}

	.contacts__container {
		grid-template-columns: repeat(2, 1fr);
		grid-gap: 64px 96px;
	}

	.address__text {
		display: flex;
		flex-direction: column;
		gap: 16px;
	}

	.contacts__map {
		grid-column: 1 / 3;
	}

	.page-header__container--post {
		min-height: unset;
		padding-top: 32px;
		padding-bottom: 40px;
		gap: 40px;
	}

	.page-blog__text {
		justify-content: center;
	}

	.page-blog__title {
		font-size: 34px;
		line-height: 40px;
		text-align: center;
		max-width: 750px;
	}

	.page-blog__info {
		justify-content: center;
	}

	.page-blog__container {
		display: grid;
		grid-template-columns: 320px 1fr;
		gap: 20px;
		align-items: flex-start;
	}

	.sidebar {
		position: sticky;
		top: 16px;
		display: grid;
		gap: 20px;
	}

	.toc__list {
		display: grid;
		gap: 20px;
		counter-reset: count;
		list-style: none;
		padding: 0;
		margin-top: 20px;
	}

	.toc__link {
		display: flex;
		align-items: flex-start;
		gap: 12px;
		color: var(--main-text, #151515);
		font-size: 16px;
		font-weight: 500;
		line-height: 24px;
		text-decoration: none;
		counter-increment: count;
	}

	.toc__link::before {
		content: counter(count);
		display: block;
		width: 24px;
		min-width: 24px;
		height: 24px;
		border-radius: 6px;
		background-color: #ebebeb;
		color: var(--main-text, #151515);
		font-size: 14px;
		font-weight: 600;
		line-height: 24px;
		text-align: center;
		transition: 0.3s color, 0.3s background-color;
	}

	.toc__link--active::before {
		background-color: var(--accent, #07a04a);
		color: var(--white)
	}

	.page-blog {
		padding-bottom: 48px;
	}

	.page-blog__img {
		aspect-ratio: 1036/320;
		width: 100%;
		object-fit: cover;
		object-position: center;
	}

	.page-blog__keys {
		margin-top: 32px;
	}

	.page-blog__float {
		gap: 40px;
		margin: 40px 0 0;
	}

	.faq-blog {
		order: -1;
	}

	.faq-blog__btn {
		font-size: 18px;
		line-height: 26px;
	}

	.relation__title {
		font-size: 24px;
		line-height: 32px;
	}

	.relation__grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.cta__container--post {
		padding: 0;
	}

	.cta__container--post .cta__wrapper {
		padding-right: 96px;
		min-height: unset;
	}

	.cta__container--post .cta__inner {
		max-width: 280px;
	}

	.cta__container--post .cta__title {
		font-size: 24px;
		line-height: 32px;
	}

	.page-header__container--category {
		gap: 40px;
		padding-top: 32px;
		padding-bottom: 40px;
	}

	.page-category {
		padding-bottom: 32px;
	}

	.page-category__title {
		font-size: 34px;
		line-height: 40px;
	}

	.page-category__cat {
		margin-top: 40px;
	}

	.page-category__container {
		display: grid;
		grid-template-columns: 1fr 320px;
		gap: 20px;
		align-items: flex-start;
	}

	.page-category__grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.pagination {
		padding: 36px 0;
	}
}

@media screen and (min-width: 1366px) {
	.section__container {
		padding-top: 64px;
		padding-bottom: 64px;
	}

	.section__title:not(:has(+ .section__subtitle)) {
		margin-bottom: 40px;
	}

	.section__subtitle {
		margin-bottom: 32px;
	}

	.container {
		padding-left: 32px;
		padding-right: 32px;
		max-width: 1440px;
	}

	.header__container {
		padding: 0;
	}

	.menu__container {
		max-width: 1200px;
	}

	.hero__container {
		padding-top: 114px;
		padding-bottom: 34px;
	}

	.hero__title,
	.about__title {
		font-size: 64px;
		line-height: 80px;
	}

	.hero__list {
		margin-top: 94px;
		margin-left: 792px;
	}

	.hero__label {
		margin-top: 46px;
	}

	.banner__img {
		max-height: 424px;
	}

	.about__list {
		margin-top: 64px;
	}

	.about-list {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		grid-gap: 64px 40px;
	}

	.about-list__title {
		font-size: 40px;
		line-height: 48px;
	}

	.services__title {
		font-size: 48px;
		line-height: 56px;
	}

	.page-header__container--post {
		min-height: unset;
	}

	.page-header__container--category {
		min-height: unset;
	}
}

/* ==========================================================================
   Blog Templates - Scoped Styles
   Ensures heading semantics while maintaining visual design
   ========================================================================== */

/* FAQ H3 Question - resets H3 default styles within FAQ context */
.faq-blog__question {
	margin: 0;
	padding: 0;
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
}

.faq-blog__question .faq-blog__btn {
	font-size: 16px;
	font-weight: 600;
	line-height: 24px;
}

/* Ensure post card titles maintain visual style without H-tags */
.post-card__title {
	display: block;
	font-size: 18px;
	font-weight: 600;
	line-height: 26px;
	color: var(--main-text, #151515);
	text-decoration: none;
	transition: color 0.3s ease;
}

.post-card__title:hover {
	color: var(--accent, #07a04a);
}

/* Related section title - styled as heading visually but uses p tag */
.relation__title {
	font-size: 24px;
	font-weight: 600;
	line-height: 32px;
	margin-bottom: 24px;
	color: var(--main-text, #151515);
}

/* CTA title - styled as H2 visually but uses p tag to avoid H-tag in CTA */
.cta__title {
	font-size: 28px;
	font-weight: 600;
	line-height: 36px;
}

/* Sidebar block titles - styled consistently */
.sidebar-block__title {
	font-size: 18px;
	font-weight: 600;
	line-height: 26px;
	margin-bottom: 16px;
	color: var(--main-text, #151515);
}

/* FAQ blog title - styled as section heading */
.faq-blog__title {
	font-size: 24px;
	font-weight: 600;
	line-height: 32px;
	margin-bottom: 24px;
	color: var(--main-text, #151515);
}

/* Key takeaways title */
.page-blog__keys-title {
	font-size: 18px;
	font-weight: 600;
	line-height: 26px;
	margin-bottom: 16px;
	color: var(--main-text, #151515);
}

/* Page category title (H1) - explicit styling */
.page-category__title {
	font-size: 36px;
	font-weight: 600;
	line-height: 44px;
	color: var(--main-text, #151515);
}

/* Post page title (H1) - explicit styling */
.page-blog__title {
	font-size: 36px;
	font-weight: 600;
	line-height: 44px;
	color: var(--main-text, #151515);
}

@media (min-width: 768px) {
	.page-category__title,
	.page-blog__title {
		font-size: 48px;
		line-height: 56px;
	}

	.relation__title,
	.faq-blog__title {
		font-size: 28px;
		line-height: 36px;
	}

	.cta__title {
		font-size: 32px;
		line-height: 40px;
	}
}

@media (min-width: 1280px) {
	.page-category__title,
	.page-blog__title {
		font-size: 56px;
		line-height: 64px;
	}
}

/* ============================================
   Blog Content Typography - Responsive Styles
   ============================================ */

@media (min-width: 768px) {
	.page-blog__content {
		font-size: 16px;
		line-height: 24px;
	}

	.page-blog__content h1 {
		font-size: 28px;
		line-height: 36px;
	}

	.page-blog__content h2 {
		font-size: 24px;
		line-height: 32px;
	}

	.page-blog__content h3 {
		font-size: 20px;
		line-height: 28px;
	}

	.page-blog__content h4 {
		font-size: 18px;
		line-height: 26px;
	}

	.page-blog__content blockquote {
		font-size: 20px;
		line-height: 30px;
		padding-left: 24px;
	}

	.page-blog__content table {
		font-size: 16px;
		line-height: 24px;
	}

	.page-blog__content th,
	.page-blog__content td {
		padding: 16px 20px;
	}
}

@media (min-width: 1280px) {
	.page-blog__content h1 {
		font-size: 32px;
		line-height: 40px;
	}

	.page-blog__content h2 {
		font-size: 26px;
		line-height: 34px;
	}

	.page-blog__content h3 {
		font-size: 22px;
		line-height: 30px;
	}

	.page-blog__content h4 {
		font-size: 20px;
		line-height: 28px;
	}

	.page-blog__content blockquote {
		font-size: 22px;
		line-height: 32px;
	}
}
