/** Main Styles */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --primary: #9A0000;
    --secondary: #000000;
    --white: #FFFFFF;
    --box-shadow: 0 4px 30px 0 #00000040;
    --radius1: 10px;
    --radius2: 20px;
}

html {
    box-sizing: border-box;
}

body {
    font-family: "Montserrat", sans-serif!important;
}

button,
select,
input {
    font-family: "Montserrat", sans-serif!important;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

.page-content, .entry-content, .entry-summary {
    margin: 0!important;
}

.post, .page {
    margin: 0!important;
}

form .wpcf7-response-output {
    color: #000000;
}

header.entry-header {
    display: none!important;
}

/** Container Styles */

.container {
    width: 100%;
    max-width: 1536px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 16px;
    padding-right: 16px;
    box-sizing: border-box;
}

@media (max-width: 1536px) {
    .container {
        max-width: 1280px;
    }
}

@media (max-width: 1280px) {
    .container {
        max-width: 1024px;
    }
}

@media (max-width: 1024px) {
    .container {
        max-width: 768px;
    }
}

@media (max-width: 768px) {
    .container {
        max-width: 640px;
    }
}

@media (max-width: 640px) {
    .container {
        max-width: 100%;
        padding-left: 12px;
        padding-right: 12px;
    }
}

/** ================= Header ================= */

.header {
	position: relative;
	z-index: 100;
	background: var(--white);
}

.header__container {
	width: 100%;
}

.header__inner {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	gap: 40px;
	padding: 50px 100px;
	background: var(--white);
}

.header__logo {
	display: flex;
	align-items: center;
}

.header__logo .custom-logo-link {
	display: inline-flex;
	align-items: center;
}

.header__logo .custom-logo {
	display: block;
	width: 169px;
    height: auto;
}

.header__site-title,
.header__site-title a {
	margin: 0;
	color: var(--primary);
	font-size: 28px;
	font-weight: 800;
	line-height: 1;
	text-decoration: none;
	text-transform: uppercase;
}

.header__nav {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 0;
}

.header__menu {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 42px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.header__menu li {
	margin: 0;
}

.header__menu a,
.header__menu a:visited {
	display: inline-flex;
	align-items: center;
	color: var(--primary);
	font-size: 20px;
	font-weight: 700;
	text-decoration: none;
	transition: all 200ms ease;
}

.header__menu a:hover,
.header__menu a:focus {
	color: #760000;
    text-decoration: underline;
}

.header__actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 30px;
}

.header__phone,
.header__phone:visited {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 9px 36px;
	border-radius: var(--radius2);
	background: var(--primary);
	color: var(--white);
	font-size: 18px;
	font-weight: 700;
	text-decoration: none;
	white-space: nowrap;
	box-shadow: 0 16px 36px rgba(170, 0, 0, 0.18);
	transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.header__phone:hover,
.header__phone:focus {
	background: #870000;
	color: var(--white);
	transform: translateY(-1px);
	box-shadow: 0 18px 42px rgba(170, 0, 0, 0.24);
}

/* Burger */

.header__burger {
	display: none;
	position: relative;
	z-index: 130;
	width: 48px;
	height: 48px;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(164, 0, 0, 0.22);
	border-radius: 50%;
	background: #fff;
	box-shadow: 0 12px 34px rgba(78, 13, 13, 0.12);
	cursor: pointer;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.header__burger:hover,
.header__burger:focus {
	border-color: rgba(164, 0, 0, 0.42);
	box-shadow: 0 14px 38px rgba(78, 13, 13, 0.18);
	transform: translateY(-1px);
}

.header__burger-line {
	position: absolute;
	width: 22px;
	height: 2px;
	border-radius: 999px;
	background: #a40000;
	transition: transform 0.3s ease, opacity 0.2s ease, width 0.2s ease;
}

.header__burger-line:nth-child(1) {
	transform: translateY(-7px);
}

.header__burger-line:nth-child(2) {
	transform: translateY(0);
	width: 18px;
}

.header__burger-line:nth-child(3) {
	transform: translateY(7px);
}

.header.is-menu-open .header__burger {
	border-color: rgba(164, 0, 0, 0.28);
	box-shadow: 0 16px 44px rgba(78, 13, 13, 0.18);
}

.header.is-menu-open .header__burger-line:nth-child(1) {
	transform: rotate(45deg);
}

.header.is-menu-open .header__burger-line:nth-child(2) {
	opacity: 0;
}

.header.is-menu-open .header__burger-line:nth-child(3) {
	transform: rotate(-45deg);
}

/* Language switcher */

.header-language-switcher {
	position: relative;
}

.header-language-switcher__summary {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 0 20px;
	min-height: 49px;
	border: 1.5px solid rgba(170, 8, 8, 0.25);
	border-radius: 999px;
	background: #fff;
	color: #aa0808;
	font-size: 16px;
	font-weight: 800;
	cursor: pointer;
	list-style: none;
	user-select: none;
}

.header-language-switcher__summary::-webkit-details-marker {
	display: none;
}

.header-language-switcher__flag {
	display: block;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	object-fit: cover;
	flex: 0 0 auto;
}

.header-language-switcher__label {
	line-height: 1;
	white-space: nowrap;
}

.header-language-switcher__chevron {
	width: 8px;
	height: 8px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: rotate(45deg) translateY(-1px);
	transition: transform 0.2s ease;
}

.header-language-switcher[open] .header-language-switcher__chevron {
	transform: rotate(-135deg) translateY(-1px);
}

.header-language-switcher__list {
	position: absolute;
	top: calc(100% + 12px);
	right: 0;
	z-index: 140;
	min-width: 100%;
	margin: 0;
	padding: 10px;
	list-style: none;
	background: #fff;
	border: 1px solid rgba(170, 8, 8, 0.12);
	border-radius: 18px;
	box-shadow: 0 18px 45px rgba(78, 13, 13, 0.12);
}

.header-language-switcher__item {
	margin: 0;
}

.header-language-switcher__link {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 12px;
	color: #7d0505;
	font-weight: 700;
	text-decoration: none;
	white-space: nowrap;
	border-radius: 12px;
}

.header-language-switcher__link:hover,
.header-language-switcher__link:focus,
.header-language-switcher__link.is-current {
	background: #fff2f2;
	color: #aa0808;
}

.header-language-switcher--shortcode {
	display: inline-flex;
	align-items: center;
}

.header__menu-phone {
	display: none;
}

@media screen and (max-width: 1707px) {
	.header__inner {
		padding: 42px 80px;
		gap: 32px;
	}

	.header__menu {
		gap: 34px;
	}

	.header__menu a,
	.header__menu a:visited {
		font-size: 19px;
	}

	.header__actions {
		gap: 24px;
	}

	.header__phone,
	.header__phone:visited {
		padding: 9px 30px;
		font-size: 17px;
	}

	.header-language-switcher__summary {
		padding: 0 18px;
	}
}

@media screen and (max-width: 1536px) {
	.header__inner {
		padding: 36px 60px;
		gap: 28px;
	}

	.header__logo .custom-logo {
		width: 155px;
	}

	.header__menu {
		gap: 28px;
	}

	.header__menu a,
	.header__menu a:visited {
		font-size: 18px;
	}

	.header__phone,
	.header__phone:visited {
		padding: 9px 26px;
		font-size: 16px;
	}

	.header__actions {
		gap: 20px;
	}
}

@media screen and (max-width: 1400px) {
	.header__inner {
		padding: 30px 40px;
		gap: 22px;
	}

	.header__logo .custom-logo {
		width: 145px;
	}

	.header__menu {
		gap: 22px;
	}

	.header__menu a,
	.header__menu a:visited {
		font-size: 17px;
	}

	.header__phone,
	.header__phone:visited {
		padding: 8px 22px;
		font-size: 15px;
	}

	.header-language-switcher__summary {
		min-height: 46px;
		padding: 0 15px;
		font-size: 15px;
	}
}

@media screen and (max-width: 1280px) {
	.header__inner {
		padding: 24px 32px;
		gap: 18px;
	}

	.header__logo .custom-logo {
		width: 135px;
	}

	.header__menu {
		gap: 18px;
	}

	.header__menu a,
	.header__menu a:visited {
		font-size: 16px;
	}

	.header__phone,
	.header__phone:visited {
		padding: 8px 18px;
		font-size: 15px;
	}
}

@media screen and (max-width: 1200px) {
	body.is-header-menu-open {
		overflow: hidden;
	}

	.header__inner {
		grid-template-columns: auto 1fr auto;
		min-height: 104px;
		padding: 22px 32px;
		gap: 20px;
	}

	.header__logo {
		grid-column: 1 / 2;
	}

	.header__logo .custom-logo {
		max-width: 142px;
		max-height: 50px;
	}

	.header__nav {
		grid-column: 3 / 4;
		justify-content: flex-end;
		position: static;
	}

	.header__burger {
		display: inline-flex;
	}

	.header__actions {
		grid-column: 2 / 3;
		grid-row: 1;
		justify-content: flex-end;
		gap: 16px;
	}

	.header__phone {
		min-height: 46px;
		padding: 0 24px;
		font-size: 16px;
	}

	.header-language-switcher__summary {
		min-height: 46px;
		padding: 0 16px;
	}

	.header::before {
		content: "";
		position: fixed;
		inset: 0;
		z-index: 105;
		background: rgba(18, 8, 8, 0.48);
		backdrop-filter: blur(5px);
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transition: opacity 0.3s ease, visibility 0.3s ease;
	}

	.header.is-menu-open::before {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
	}

	.header__menu {
		position: fixed;
		top: 18px;
		right: 18px;
		bottom: 18px;
		z-index: 120;
		width: min(390px, calc(100vw - 36px));
		display: flex;
		flex-direction: column;
		align-items: stretch;
		justify-content: flex-start;
		flex-wrap: nowrap;
		gap: 0;
		margin: 0;
		padding: 92px 26px 28px;
		list-style: none;
		border: 1px solid rgba(170, 0, 0, 0.12);
		border-radius: 28px;
		background:
			radial-gradient(circle at 18% 0%, rgba(170, 0, 0, 0.08), transparent 34%),
			#fff;
		box-shadow: -22px 24px 80px rgba(78, 13, 13, 0.24);
		overflow-y: auto;
		transform: translateX(24px) scale(0.96);
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transition:
			transform 0.38s cubic-bezier(0.22, 1, 0.36, 1),
			opacity 0.28s ease,
			visibility 0.28s ease;
	}

	.header__nav.is-open .header__menu {
		transform: translateX(0) scale(1);
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
	}

	.header__menu::before {
		content: "Меню";
		position: absolute;
		top: 30px;
		left: 26px;
		color: #111;
		font-size: 22px;
		line-height: 1;
		font-weight: 800;
	}

	.header__menu li {
		opacity: 0;
		transform: translateY(12px);
		transition: opacity 0.28s ease, transform 0.28s ease;
	}

	.header__nav.is-open .header__menu li {
		opacity: 1;
		transform: translateY(0);
	}

	.header__nav.is-open .header__menu li:nth-child(1) { transition-delay: 0.08s; }
	.header__nav.is-open .header__menu li:nth-child(2) { transition-delay: 0.12s; }
	.header__nav.is-open .header__menu li:nth-child(3) { transition-delay: 0.16s; }
	.header__nav.is-open .header__menu li:nth-child(4) { transition-delay: 0.20s; }
	.header__nav.is-open .header__menu li:nth-child(5) { transition-delay: 0.24s; }
	.header__nav.is-open .header__menu li:nth-child(6) { transition-delay: 0.28s; }

	.header__menu a {
		position: relative;
		display: flex;
		align-items: center;
		min-height: 58px;
		padding: 0 48px 0 0;
		border-bottom: 1px solid rgba(164, 0, 0, 0.09);
		color: #a40000;
		font-size: 18px;
		line-height: 1.2;
		font-weight: 800;
		text-decoration: none;
	}

	.header__menu a::after {
		content: "";
		position: absolute;
		right: 4px;
		width: 8px;
		height: 8px;
		border-top: 2px solid currentColor;
		border-right: 2px solid currentColor;
		transform: rotate(45deg);
		opacity: 0.45;
		transition: transform 0.2s ease, opacity 0.2s ease;
	}

	.header__menu a:hover,
	.header__menu a:focus {
		color: #760000;
	}

	.header__menu a:hover::after,
	.header__menu a:focus::after {
		transform: translateX(4px) rotate(45deg);
		opacity: 1;
	}

    .header__phone {
		display: none;
	}

	.header__menu-phone {
		display: block;
		margin-top: 24px;
		border-bottom: 0;
	}

	.header__menu-phone a {
		justify-content: center;
		min-height: 52px;
		padding: 0 24px;
		border-bottom: 0;
		border-radius: 999px;
		background: #aa0000;
		color: #fff;
		font-size: 17px;
		font-weight: 800;
		box-shadow: 0 16px 36px rgba(170, 0, 0, 0.16);
	}

	.header__menu-phone a::after {
		display: none;
	}

	.header__menu-phone a:hover,
	.header__menu-phone a:focus {
		background: #870000;
		color: #fff;
	}
}

@media screen and (max-width: 700px) {
	.header__inner {
		grid-template-columns: auto 1fr auto auto;
		align-items: center;
		min-height: auto;
		padding: 18px 20px;
		gap: 14px;
	}

	.header__logo {
		grid-column: 1 / 2;
		grid-row: 1;
	}

	.header__logo .custom-logo {
		width: 120px;
		max-width: 120px;
	}

	.header__actions {
		grid-column: 3 / 4;
		grid-row: 1;
		display: flex;
		align-items: center;
		justify-content: flex-end;
		gap: 0;
	}

	.header__nav {
		grid-column: 4 / 5;
		grid-row: 1;
		justify-content: flex-end;
	}

	.header__phone {
		display: none;
	}

	.header-language-switcher {
		flex: 0 0 auto;
	}

	.header-language-switcher__summary {
		min-height: 42px;
		padding: 0 14px;
		font-size: 14px;
	}

	.header-language-switcher__flag {
		width: 20px;
		height: 20px;
	}

	.header__burger {
		width: 44px;
		height: 44px;
	}
}

@media screen and (max-width: 480px) {
	.header__inner {
		grid-template-columns: auto 1fr auto auto;
		padding: 16px 12px;
		gap: 10px;
	}

	.header__logo .custom-logo {
		width: 110px;
		max-width: 110px;
	}

	.header__actions {
		flex-direction: row;
		align-items: center;
		justify-content: flex-end;
		width: auto;
	}

	.header-language-switcher,
	.header-language-switcher__summary {
		width: auto;
	}

	.header-language-switcher__summary {
		justify-content: center;
		min-height: 40px;
		padding: 0 12px;
		font-size: 13px;
		gap: 8px;
	}

	.header__burger {
		width: 42px;
		height: 42px;
	}

	.header__menu {
		top: 10px;
		right: 10px;
		bottom: 10px;
		width: calc(100vw - 20px);
		padding: 72px 20px 22px;
		border-radius: 24px;
	}

	.header__menu::before {
		top: 26px;
		left: 20px;
		font-size: 24px;
	}

	.header__menu a {
		min-height: 50px;
		font-size: 18px;
		line-height: 1.15;
	}

	.header__menu-phone {
		margin-top: 14px;
	}

	.header__menu-phone a {
		min-height: 52px;
		font-size: 17px;
		padding: 0 18px;
	}
}

@media screen and (max-width: 440px) {
	.header__menu {
		top: 8px;
		right: 8px;
		bottom: 8px;
		width: calc(100vw - 16px);
		padding: 66px 18px 20px;
		border-radius: 22px;
	}

	.header__menu::before {
		top: 24px;
		left: 18px;
		font-size: 22px;
	}

	.header__menu a {
		min-height: 46px;
		font-size: 16px;
		padding-right: 36px;
	}

	.header__menu-phone {
		margin-top: 12px;
	}

	.header__menu-phone a {
		min-height: 48px;
		font-size: 15px;
		padding: 0 14px;
	}
}

/** ================= Footer ================= */

.footer__shell {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.footer__inner {
	color: var(--white);
}

.footer__columns {
	display: grid;
	grid-template-columns: minmax(280px, 1.35fr) minmax(180px, 0.7fr) minmax(180px, 0.7fr);
	gap: 50px;
	padding: 100px 100px 50px;
}

.footer__title {
	margin: 0 0 50px;
	color: var(--white);
	font-size: 32px;
	font-weight: 700;
}

.footer__company-content {
    max-width: 70%;
}

.footer__company-content p {
	margin: 0 0 15px;
	color: var(--white);
	font-size: 20px;
	font-weight: 700;
}

.footer__socials {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin-top: 100px;
}

.footer__social,
.footer__social:visited {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	border-radius: 100%;
	background: var(--white);
	color: var(--primary);
	text-decoration: none;
	transition: transform 0.2s ease, opacity 0.2s ease;
}

.footer__social:hover,
.footer__social:focus {
	color: #960404;
	transform: translateY(-4px);
	opacity: 0.85;
}

.footer__social svg {
	width: 30px;
	height: auto;
	fill: currentColor;
}

.footer__menu {
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer__menu li {
	margin: 0 0 20px;
}

.footer__menu a,
.footer__menu a:visited {
	color: var(--white);
	font-size: 20px;
	font-weight: 700;
	text-decoration: none;
}

.footer__menu a:hover,
.footer__menu a:focus {
	color: #fff3d3;
}

.footer__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 25px;
	padding: 40px 100px;
	border-top: 1px solid rgba(255, 255, 255, 0.35);
}

.footer__copyright,
.footer__credit {
	display: flex;
	flex-wrap: wrap;
	gap: 0.35em;
	margin: 0;
	color: var(--white);
	font-size: 18px;
	font-weight: 700;
}

.footer__inline-link,
.footer__inline-link:visited {
	color: var(--white);
	text-decoration: none;
	border-bottom: 1px solid transparent;
	transition: border-color 0.2s ease, color 0.2s ease;
}

.footer__inline-link:hover,
.footer__inline-link:focus {
	color: #fff3d3;
	border-color: currentColor;
}

@media (max-width: 1536px) {
	.footer__columns {
		padding: 80px 70px 45px;
		gap: 45px;
	}

	.footer__company-content {
		max-width: 85%;
	}

	.footer__bottom {
		padding: 35px 70px;
	}
}

@media (max-width: 1280px) {
	.footer__columns {
		padding: 70px 50px 40px;
		grid-template-columns: minmax(280px, 1.4fr) minmax(160px, 0.7fr) minmax(160px, 0.7fr);
		gap: 35px;
	}

	.footer__title {
		font-size: 28px;
		margin-bottom: 40px;
	}

	.footer__company-content {
		max-width: 95%;
	}

	.footer__company-content p,
	.footer__menu a,
	.footer__menu a:visited {
		font-size: 18px;
	}

	.footer__socials {
		margin-top: 80px;
		gap: 25px;
	}

	.footer__bottom {
		padding: 32px 50px;
	}
}

@media (max-width: 1024px) {
	.footer__columns {
		padding: 60px 35px 35px;
		grid-template-columns: 1.2fr 0.8fr 0.8fr;
		gap: 28px;
	}

	.footer__title {
		font-size: 25px;
		margin-bottom: 32px;
	}

	.footer__company-content p,
	.footer__menu a,
	.footer__menu a:visited {
		font-size: 16px;
		line-height: 1.45;
	}

	.footer__menu li {
		margin-bottom: 16px;
	}

	.footer__socials {
		margin-top: 60px;
		gap: 20px;
	}

	.footer__social,
	.footer__social:visited {
		width: 52px;
		height: 52px;
	}

	.footer__social svg {
		width: 25px;
	}

	.footer__bottom {
		padding: 28px 35px;
	}

	.footer__copyright,
	.footer__credit {
		font-size: 16px;
	}
}

@media (max-width: 768px) {
	.footer__columns {
		grid-template-columns: 1fr 1fr;
		padding: 50px 28px 35px;
		gap: 40px 30px;
	}

	.footer__col:first-child {
		grid-column: 1 / -1;
	}

	.footer__company-content {
		max-width: 100%;
	}

	.footer__title {
		font-size: 24px;
		margin-bottom: 25px;
	}

	.footer__socials {
		margin-top: 45px;
	}

	.footer__bottom {
		flex-direction: column;
		align-items: flex-start;
		padding: 25px 28px;
		gap: 12px;
	}
}

@media (max-width: 540px) {
	.footer__columns {
		grid-template-columns: 1fr;
		padding: 42px 22px 30px;
		gap: 35px;
	}

	.footer__title {
		font-size: 23px;
		margin-bottom: 22px;
	}

	.footer__company-content p,
	.footer__menu a,
	.footer__menu a:visited {
		font-size: 15px;
		line-height: 1.5;
	}

	.footer__socials {
		margin-top: 35px;
		gap: 16px;
	}

	.footer__social,
	.footer__social:visited {
		width: 48px;
		height: 48px;
	}

	.footer__bottom {
		padding: 22px;
	}

	.footer__copyright,
	.footer__credit {
		font-size: 14px;
		line-height: 1.45;
	}
}

@media (max-width: 440px) {
	.footer__columns {
		padding: 36px 12px 26px;
		gap: 30px;
	}

	.footer__title {
		font-size: 22px;
		margin-bottom: 20px;
	}

	.footer__company-content p {
		font-size: 14px;
	}

	.footer__menu li {
		margin-bottom: 14px;
	}

	.footer__menu a,
	.footer__menu a:visited {
		font-size: 15px;
	}

	.footer__socials {
		gap: 14px;
		margin-top: 30px;
	}

	.footer__social,
	.footer__social:visited {
		width: 44px;
		height: 44px;
	}

	.footer__social svg {
		width: 22px;
	}

	.footer__bottom {
		padding: 20px 18px;
	}

	.footer__copyright,
	.footer__credit {
		font-size: 13px;
	}
}

/** ================= Home Slider ================= */

.home-slider {
    width: 100%;
    background: #ffffff;
}

.home-slider__swiper {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.home-slider__slide {
    width: 100%;
    aspect-ratio: 8 / 3;
    overflow: hidden;
    background: #a90000;
}

.home-slider__link {
    width: 100%;
    height: 100%;
    display: block;
}

.home-slider__image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.home-slider__pagination {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 18px !important;
    z-index: 5;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.home-slider__pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 0 !important;
    background: #ffffff;
    opacity: 0.55;
}

.home-slider__pagination .swiper-pagination-bullet-active {
    opacity: 1;
    background: #ffffff;
}

.home-slider__arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    color: #a90000;
}

.home-slider__arrow::after {
    font-size: 18px;
    font-weight: 800;
}

.home-slider__arrow:hover {
    background: #ffffff;
}

.home-slider__image {
    object-fit: cover;
    object-position: center;
}

@media (max-width: 768px) {
    .home-slider__image {
        object-position: center;
    }
}

@media (max-width: 540px) {
    .home-slider__image {
        object-position: center;
    }
}

/** ================= Home Form Application ================= */

.home-form-application {
    padding-top: 50px;
    padding-bottom: 50px;
    background: var(--white);
}

.home-form-application__inner {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(340px, 560px);
    gap: 20px;
    align-items: stretch;
}

.home-form-application__info,
.home-form-application__form-card {
    position: relative;
    border-radius: var(--radius2);
    background: var(--white);
    box-shadow: var(--box-shadow);
}

.home-form-application__info {
    padding: 50px 50px 100px;
    overflow: hidden;
}

.home-form-application__title {
    margin: 0 0 50px;
    color: #a40000;
    font-size: 38px;
    font-weight: 700;
}

.home-form-application__description {
    max-width: 55%;
    margin: 0 0 72px;
    color: var(--secondary);
    font-size: 20px;
    font-weight: 400;
}

.home-form-application__description span,
.home-form-application__description strong,
.home-form-application__description b {
    color: var(--primary);
}

.home-form-application__features {
    display: flex;
    align-items: flex-start;
    gap: 50px;
    position: relative;
    z-index: 2;
}

.home-form-application__feature {
    max-width: 170px;
    text-align: center;
}

.home-form-application__feature + .home-form-application__feature {
    position: relative;
}

.home-form-application__feature + .home-form-application__feature::before {
    content: "";
    position: absolute;
    left: -25px;
    bottom: 18px;
    width: 2px;
    height: 98px;
    background: var(--primary);
}

.home-form-application__feature .home-form-application__feature-icon {
    width: 100px;
    height: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto 30px;
}

.home-form-application__feature-title {
    margin: 0 0 20px;
    color: var(--primary);
    font-size: 28px;
    font-weight: 700;
}

.home-form-application__feature-text {
    margin: 0;
    color: var(--secondary);
    font-size: 16px;
    font-weight: 300;
}

.home-form-application__info .home-form-application__person {
    position: absolute;
    right: 33px;
    bottom: 0;
    z-index: 1;
    max-width: 45%;
    object-fit: contain;
}

.home-form-application__form-card {
    padding: 30px;
}

.home-form-application__form-title {
    margin: 0 0 30px;
    color: #000000;
    font-size: 40px;
    font-weight: 700;
    text-align: center;
}

.home-form-application__tabs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 25px;
}

.home-form-application__tab {
    border: 2px solid var(--primary);
    border-radius: var(--radius1);
    background: var(--white);
    color: var(--primary);
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
}

.home-form-application__tab.is-active {
    background: var(--primary);
    color: var(--white);
}

.home-form-application__form {
    display: none;
}

.home-form-application__form.is-active {
    display: block;
}

.home-application-cf7 label {
    padding-bottom: 20px;
    color: var(--secondary);
    font-size: 20px;
    font-weight: 700;
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.t64f-form .home-application-cf7 input,
.t64f-form .home-application-cf7 select {
    width: 100%;
    padding: 15px 10px;
    border: 1px solid var(--primary);
    border-radius: var(--radius1);
    background: var(--white);
    color: var(--secondary);
    font-size: 16px;
    font-weight: 300;
    outline: none;
}

.t64f-form .home-application-cf7 input:focus,
.t64f-form .home-application-cf7 select:focus {
    border-color: #ad0000;
    box-shadow: 0 0 0 2px rgba(173, 0, 0, 0.12);
}

.t64f-form .home-application-cf7 input::placeholder {
    color: var(--secondary);
    opacity: 1;
}

.home-application-cf7__total {
    margin-top: 10px;
    margin-bottom: 40px;
    color: var(--secondary);
    font-size: 20px;
    font-weight: 700;
}

.home-application-cf7 button[type="submit"] {
    width: 100%;
    margin-top: 0;
    padding: 14px 20px;
    border: 0;
    border-radius: var(--radius2);
    background: var(--primary);
    color: var(--white);
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
}

.home-application-cf7 button[type="submit"]:hover,
.home-application-cf7 button[type="submit"]:focus {
    background: #870000;
    color: var(--white);
}

.home-form-application .wpcf7-spinner {
    display: none;
}

.home-form-application .wpcf7-response-output {
    margin: 12px 0 0;
    padding: 8px 10px;
    border-radius: 6px;
    font-size: 12px;
}

.home-form-application .wpcf7-not-valid-tip {
    margin-top: 5px;
    font-size: 11px;
    color: #ad0000;
}

@media (max-width: 1536px) {
    .home-form-application__title {
        font-size: 28px;
    }

    .home-form-application__description {
        font-size: 18px;
        max-width: 75%;
    }

    .home-form-application__form-title {
        font-size: 36px;
    }
}

@media (max-width: 1280px) {
    .home-form-application__inner {
        grid-template-columns: minmax(0, 1.6fr) minmax(340px, 460px);
    }

    .home-form-application__info {
        padding: 40px 35px 80px;
    }

    .home-form-application__title {
        font-size: 30px;
        margin-bottom: 35px;
    }

    .home-form-application__description {
        max-width: 100%;
        font-size: 17px;
        margin-bottom: 55px;
    }

    .home-form-application__feature .home-form-application__feature-icon {
        width: 70px;
    }

    .home-form-application__feature-title {
        font-size: 22px;
    }

    .home-form-application__feature {
        max-width: 130px;
    }

    .home-form-application__info .home-form-application__person {
        max-width: 42%;
        right: 20px;
    }
}

@media (max-width: 1024px) {
    .home-form-application__inner {
        grid-template-columns: 1fr;
    }

    .home-form-application__info {
        min-height: 520px;
    }

    .home-form-application__description {
        max-width: 55%;
    }

    .home-form-application__form-card {
        width: 100%;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .home-form-application {
        padding-top: 35px;
        padding-bottom: 35px;
    }

    .home-form-application__info {
        padding: 30px 25px 360px;
        min-height: auto;
    }

    .home-form-application__title {
        font-size: 26px;
        margin-bottom: 25px;
    }

    .home-form-application__description {
        max-width: 100%;
        font-size: 12px;
        margin-bottom: 35px;
    }

    .home-form-application__features {
        justify-content: center;
        gap: 35px;
    }

    .home-form-application__feature {
        max-width: 100%;
    }

    .home-form-application__feature + .home-form-application__feature::before {
        display: none;
    }

    .home-form-application__info .home-form-application__person {
        max-width: 320px;
        width: 70%;
        right: 50%;
        transform: translateX(50%);
    }

    .home-form-application__form-title {
        font-size: 30px;
    }
}

@media (max-width: 540px) {
    .home-form-application__info,
    .home-form-application__form-card {
        border-radius: 16px;
    }

    .home-form-application__info {
        padding: 25px 18px 320px;
    }

    .home-form-application__title {
        font-size: 23px;
    }

    .home-form-application__features {
        gap: 20px;
    }

    .home-form-application__feature .home-form-application__feature-icon {
        width: 50px;
        margin-bottom: 10px;
    }

    .home-form-application__feature-title {
        font-size: 22px;
    }

    .home-form-application__feature-text {
        font-size: 12px;
    }

    .home-form-application__feature + .home-form-application__feature::before {
        left: -11px;
        height: 78px;
    }

    .home-form-application__form-card {
        padding: 22px 16px;
    }

    .home-form-application__form-title {
        font-size: 27px;
    }

    .home-form-application__tab,
    .home-application-cf7 label,
    .home-application-cf7__total,
    .home-application-cf7 button[type="submit"] {
        font-size: 17px;
    }

    .home-form-application__info .home-form-application__person {
        max-width: 250px;
    }

    .home-form-application__form-card {
        padding: 20px 14px;
    }

    .home-form-application__form-title {
        margin-bottom: 22px;
        font-size: 24px;
    }

    .home-form-application__tabs {
        margin-bottom: 20px;
        gap: 8px;
    }

    .home-form-application__tab {
        padding: 9px 12px;
        font-size: 16px;
    }

    .home-application-cf7 label {
        padding-bottom: 16px;
        gap: 8px;
        font-size: 17px;
    }

    .t64f-form .home-application-cf7 input,
    .t64f-form .home-application-cf7 select {
        padding: 11px 12px;
        min-height: 46px;
        font-size: 15px;
    }

    .home-application-cf7__total {
        margin-top: 4px;
        margin-bottom: 24px;
        font-size: 17px;
    }

    .home-application-cf7 button[type="submit"] {
        padding: 11px 18px;
        font-size: 17px;
        border-radius: 16px;
    }
}

@media (max-width: 440px) {
    .home-form-application__title {
        font-size: 16px;
    }

    .home-form-application__info {
        padding-bottom: 290px;
    }

    .home-form-application__info .home-form-application__person {
        width: 78%;
    }

    .home-form-application__features {
        gap: 14px;
    }

    .home-form-application__feature-title {
        font-size: 16px;
        margin-bottom: 5px;
    }

    .home-form-application__form-title {
        font-size: 24px;
    }

    .home-form-application__tabs {
        gap: 6px;
    }

    .home-form-application__form-card {
        padding: 18px 12px;
    }

    .home-form-application__form-title {
        font-size: 22px;
    }

    .home-form-application__tab {
        font-size: 15px;
    }

    .home-application-cf7 label {
        font-size: 16px;
    }

    .t64f-form .home-application-cf7 input,
    .t64f-form .home-application-cf7 select {
        min-height: 42px;
        padding: 9px 10px;
        font-size: 14px;
    }
}

/** ================= Home Microloans ================= */

.home-microloans {
    padding-top: 50px;
    padding-bottom: 50px;
}

.home-microloans__title {
    margin: 0 0 50px;
    color: var(--primary);
    font-size: 40px;
    font-weight: 600;
}

.home-microloans__title span {
    display: inline-block;
    font-weight: 700;
    text-transform: uppercase;
    border-bottom: 2px dashed currentColor;
}

.home-microloans__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
}

.home-microloans__card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 55px 160px;
    min-height: 600px;
    border-radius: var(--radius1);
    overflow: hidden;
    background-color: var(--primary);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    text-decoration: none;
}

.home-microloans__card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(169, 0, 0, 0.05) 0%,
        rgba(169, 0, 0, 0.12) 45%,
        rgba(169, 0, 0, 0.42) 100%
    );
    pointer-events: none;
}

.home-microloans__image {
    position: absolute;
    top: 44px;
    left: 50%;
    z-index: 1;
    width: 78%;
    max-height: 400px;
    object-fit: contain;
    transform: translateX(-50%);
}

.home-microloans__card-title {
    position: relative;
    z-index: 2;
    margin: 0;
    color: var(--white);
    font-size: 32px;
    font-weight: 800;
    text-align: center;
}

.home-microloans__card:hover .home-microloans__image {
    transform: translateX(-50%) scale(1.03);
}

.home-microloans__image {
    transition: transform 0.25s ease;
}

@media (max-width: 1536px) {
    .home-microloans__card {
        min-height: 520px;
        padding: 45px 120px;
    }

    .home-microloans__image {
        max-height: 350px;
    }

    .home-microloans__card-title {
        font-size: 26px;
    }
}

@media (max-width: 1280px) {
    .home-microloans__title {
        font-size: 34px;
    }

    .home-microloans__grid {
        gap: 30px;
    }

    .home-microloans__card {
        min-height: 430px;
        padding: 40px 80px;
    }

    .home-microloans__image {
        top: 35px;
        width: 72%;
        max-height: 290px;
    }

    .home-microloans__card-title {
        font-size: 28px;
    }
}

@media (max-width: 1024px) {
    .home-microloans__card {
        min-height: 360px;
        padding: 35px 45px;
    }

    .home-microloans__image {
        max-height: 235px;
    }

    .home-microloans__card-title {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .home-microloans {
        padding-top: 35px;
        padding-bottom: 35px;
    }

    .home-microloans__title {
        margin-bottom: 30px;
        font-size: 28px;
    }

    .home-microloans__grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .home-microloans__card {
        min-height: 420px;
        padding: 35px 30px;
    }

    .home-microloans__image {
        max-height: 280px;
    }
}

@media (max-width: 540px) {
    .home-microloans__title {
        font-size: 24px;
    }

    .home-microloans__card {
        min-height: 340px;
        padding: 28px 20px;
    }

    .home-microloans__image {
        top: 30px;
        width: 80%;
        max-height: 220px;
    }

    .home-microloans__card-title {
        font-size: 22px;
    }
}

@media (max-width: 440px) {
    .home-microloans__title {
        font-size: 22px;
    }

    .home-microloans__card {
        min-height: 300px;
    }

    .home-microloans__image {
        max-height: 190px;
    }

    .home-microloans__card-title {
        font-size: 20px;
    }
}

/** ================= Home News ================= */

.home-news {
    padding-top: 50px;
    padding-bottom: 50px;
}

.home-news__title {
    margin: 0 0 50px;
    color: var(--primary);
    font-size: 40px;
    font-weight: 600;
}

.home-news__slider {
    width: 100%;
    overflow: hidden;
}

.home-news__slide {
    height: auto;
}

.home-news__image-link {
    display: block;
    width: 100%;
    height: 347px;
    margin-bottom: 32px;
    border-radius: var(--radius1);
    overflow: hidden;
    background: #f5f0eb;
}

.home-news__image-link .home-news__image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.home-news__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: #f5f0eb;
    color: #9f0000;
    font-size: 20px;
    font-weight: 800;
    text-align: center;
}

.home-news__card-title {
    margin: 0 0 23px;
    color: var(--primary);
    font-size: 21px;
    font-weight: 700;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.home-news__card-title a,
.home-news__card-title a:visited {
    color: inherit;
    text-decoration: none;
}

.home-news__card-title a:hover,
.home-news__card-title a:focus {
    color: #7d0000;
}

.home-news__text {
    margin: 0;
    color: #000000;
    font-size: 17px;
    font-weight: 600;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (max-width: 1536px) {
    .home-news__image-link {
        height: 300px;
    }

    .home-news__card-title {
        font-size: 20px;
    }
}

@media (max-width: 1280px) {
    .home-news__title {
        font-size: 34px;
    }

    .home-news__image-link {
        height: 260px;
        margin-bottom: 24px;
    }

    .home-news__card-title {
        margin-bottom: 18px;
        font-size: 18px;
    }

    .home-news__text {
        font-size: 16px;
    }
}

@media (max-width: 1024px) {
    .home-news__title {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .home-news__image-link {
        height: 220px;
    }

    .home-news__card-title {
        font-size: 17px;
    }

    .home-news__text {
        font-size: 15px;
        -webkit-line-clamp: 4;
    }
}

@media (max-width: 768px) {
    .home-news {
        padding-top: 35px;
        padding-bottom: 35px;
    }

    .home-news__title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .home-news__image-link {
        height: 260px;
        margin-bottom: 20px;
    }

    .home-news__card-title {
        margin-bottom: 14px;
        font-size: 18px;
    }

    .home-news__text {
        font-size: 15px;
    }
}

@media (max-width: 540px) {
    .home-news__title {
        font-size: 24px;
    }

    .home-news__image-link {
        height: 220px;
        border-radius: 12px;
    }

    .home-news__card-title {
        font-size: 17px;
    }

    .home-news__text {
        font-size: 14px;
        -webkit-line-clamp: 3;
    }
}

@media (max-width: 440px) {
    .home-news__title {
        font-size: 22px;
    }

    .home-news__image-link {
        height: 190px;
    }

    .home-news__card-title {
        font-size: 16px;
    }

    .home-news__text {
        font-size: 13px;
    }
}

/** ================= Home Faq Cards ================= */

.home-faq-cards {
    padding-top: 50px;
    background-color: var(--primary);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    overflow: hidden;
}

.home-faq-cards__title {
    margin: 0 0 80px;
    color: var(--white);
    font-size: 40px;
    font-weight: 600;
}

.home-faq-cards__inner {
    display: grid;
    grid-template-columns: minmax(300px, 424px) minmax(0, 1fr);
    gap: 50px;
    align-items: end;
}

.home-faq-cards__media {
    position: relative;
    width: 100%;
    height: auto;
    display: flex;
}

.home-faq-cards__person {
    width: 100%;
    object-fit: contain;
    object-position: top;
}

.home-faq-cards__list {
    padding-bottom: 100px;
}

.home-faq-cards__item {
    margin-bottom: 50px;
}

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

.home-faq-cards__item {
	margin-bottom: 38px;
	border-radius: var(--radius1);
	background: var(--white);
	overflow: hidden;
}

.home-faq-cards__question {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 25px 30px;
	border: 0;
	border-radius: 0;
	background: transparent;
	color: var(--primary);
	font-size: 20px;
	font-weight: 600;
	text-align: left;
	cursor: pointer;
}

.home-faq-cards__icon {
	display: inline-flex;
	color: var(--primary);
}

.home-faq-cards__icon svg {
    width: 50px;
    height: auto;
    transition: all 200ms ease;
}

.home-faq-cards__item.is-active .home-faq-cards__icon svg {
	transform: rotate(45deg);
}

.home-faq-cards__answer {
	max-height: 0;
	overflow: hidden;
	background: transparent;
	transition: max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-faq-cards__answer-inner {
	padding: 0 30px 32px;
	background: transparent;
	color: var(--primary);
	font-size: 18px;
	font-weight: 600;
	line-height: 1.25;
	opacity: 0;
	transform: translateY(-6px);
	transition:
		opacity 0.25s ease,
		transform 0.25s ease;
}

.home-faq-cards__item.is-active .home-faq-cards__answer-inner {
	opacity: 1;
	transform: translateY(0);
}

@media (max-width: 1536px) {
    .home-faq-cards__title {
        margin-bottom: 65px;
        font-size: 36px;
    }

    .home-faq-cards__inner {
        grid-template-columns: minmax(280px, 380px) minmax(0, 1fr);
    }

    .home-faq-cards__item {
        margin-bottom: 28px;
    }
}

@media (max-width: 1280px) {
    .home-faq-cards__title {
        margin-bottom: 50px;
        font-size: 34px;
    }

    .home-faq-cards__inner {
        grid-template-columns: minmax(250px, 330px) minmax(0, 1fr);
        gap: 35px;
    }

    .home-faq-cards__question {
        padding: 22px 24px;
        font-size: 18px;
    }

    .home-faq-cards__icon svg {
        width: 42px;
    }

    .home-faq-cards__answer-inner {
        padding: 0 24px 26px;
        font-size: 16px;
    }
}

@media (max-width: 1024px) {
    .home-faq-cards__inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .home-faq-cards__media {
        max-width: 320px;
        margin: 0 auto;
        order: 2;
    }

    .home-faq-cards__list {
        padding-bottom: 20px;
        order: 1;
    }
}

@media (max-width: 768px) {
    .home-faq-cards {
        padding-top: 40px;
    }

    .home-faq-cards__title {
        margin-bottom: 35px;
        font-size: 28px;
    }

    .home-faq-cards__item {
        margin-bottom: 18px;
    }

    .home-faq-cards__question {
        padding: 18px 20px;
        font-size: 16px;
    }

    .home-faq-cards__icon svg {
        width: 34px;
    }

    .home-faq-cards__answer-inner {
        padding: 0 20px 22px;
        font-size: 15px;
    }

    .home-faq-cards__media {
        max-width: 250px;
    }
}

@media (max-width: 540px) {
    .home-faq-cards__title {
        font-size: 24px;
    }

    .home-faq-cards__question {
        gap: 12px;
        padding: 16px;
        font-size: 15px;
    }

    .home-faq-cards__icon {
        flex: 0 0 auto;
    }

    .home-faq-cards__icon svg {
        width: 30px;
    }

    .home-faq-cards__answer-inner {
        padding: 0 16px 18px;
        font-size: 14px;
    }

    .home-faq-cards__media {
        max-width: 200px;
    }
}

@media (max-width: 440px) {
    .home-faq-cards__title {
        font-size: 22px;
    }

    .home-faq-cards__question {
        font-size: 14px;
    }

    .home-faq-cards__icon svg {
        width: 28px;
    }

    .home-faq-cards__media {
        max-width: 150px;
    }
}

/** ================= Home Form Question ================= */

.home-form-question {
    padding-top: 50px;
    padding-bottom: 50px;
    background: var(--white);
    overflow: hidden;
}

.home-form-question__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 700px);
    align-items: center;
    gap: 100px;
}

.home-form-question__title {
    margin: 0 0 30px;
    color: var(--primary);
    font-size: 56px;
    font-weight: 600;
}

.home-form-question__description {
    max-width: 90%;
    margin: 0 0 50px;
    color: var(--secondary);
    font-size: 18px;
    font-weight: 600;
}

.home-form-question__tabs {
    width: 100%;
    padding: 0 10%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
}

.home-form-question__tab {
    border: 3px solid var(--primary);
    border-radius: var(--radius1);
    padding: 12px 18px;
    background: var(--white);
    color: var(--primary);
    font-size: 24px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.home-form-question__tab.is-active {
    background: var(--primary);
    color: var(--white);
}

.home-form-question__form {
    display: none;
}

.home-form-question__form.is-active {
    display: block;
}

.home-question-cf7 label {
    display: block;
    margin: 0 0 50px;
    color: var(--primary);
    font-size: 24px;
    font-weight: 600;
}

.home-question-cf7 input[type="text"],
.home-question-cf7 input[type="tel"] {
    width: 100%;
    display: block;
    margin-top: 16px;
    padding: 15px 22px;
    border: 2px solid var(--primary);
    border-radius: var(--radius1);
    background: var(--white);
    color: var(--secondary);
    font-size: 20px;
    font-weight: 500;
    outline: none;
}

.home-question-cf7 input[type="text"]:focus,
.home-question-cf7 input[type="tel"]:focus {
    box-shadow: 0 0 0 3px rgba(173, 0, 0, 0.12);
}

.home-question-cf7 button[type="submit"] {
    width: 40%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    margin: 0 auto 0;
    border: 0;
    border-radius: var(--radius1);
    background: var(--primary);
    color: var(--white);
    font-size: 24px;
    font-weight: 700;
    cursor: pointer;
}

.home-question-cf7 button[type="submit"]:hover,
.home-question-cf7 button[type="submit"]:focus {
    background: #870000;
    color: var(--white);
}

.home-form-question .wpcf7-spinner {
    display: none;
}

.home-form-question .wpcf7-response-output {
    margin: 18px 0 0;
    padding: 10px 14px;
    border-radius: 7px;
    font-size: 14px;
}

.home-form-question .wpcf7-not-valid-tip {
    margin-top: 8px;
    color: #ad0000;
    font-size: 13px;
    font-weight: 600;
}

.home-form-question__media {
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-form-question__media .home-form-question__image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

@media (max-width: 1536px) {
    .home-form-question__inner {
        grid-template-columns: repeat(2, 1fr);
        gap: 70px;
    }

    .home-form-question__title {
        font-size: 38px;
    }

    .home-form-question__media .home-form-question__image {
        max-width: 620px;
    }

    .home-form-question__description {
        font-size: 16px;
    }

    .home-question-cf7 label {
        margin-bottom: 30px;
    }
}

@media (max-width: 1280px) {
    .home-form-question__inner {
        grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
        gap: 50px;
    }

    .home-form-question__title {
        font-size: 42px;
    }

    .home-form-question__tabs {
        padding: 0 5%;
        gap: 20px;
    }

    .home-form-question__tab,
    .home-question-cf7 label,
    .home-question-cf7 button[type="submit"] {
        font-size: 20px;
    }
}

@media (max-width: 1024px) {
    .home-form-question__inner {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .home-form-question__media {
        order: -1;
    }

    .home-form-question__media .home-form-question__image {
        max-width: 320px;
    }

    .home-form-question__description {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .home-form-question {
        padding-top: 35px;
        padding-bottom: 35px;
    }

    .home-form-question__title {
        margin-bottom: 22px;
        font-size: 34px;
    }

    .home-form-question__description {
        margin-bottom: 35px;
        font-size: 16px;
    }

    .home-form-question__tabs {
        padding: 0;
        margin-bottom: 35px;
    }

    .home-question-cf7 label {
        margin-bottom: 30px;
        font-size: 18px;
    }

    .home-question-cf7 input[type="text"],
    .home-question-cf7 input[type="tel"] {
        margin-top: 12px;
        font-size: 17px;
    }

    .home-question-cf7 button[type="submit"] {
        width: 55%;
        font-size: 18px;
    }

    .home-form-question__media .home-form-question__image {
        max-width: 250px;
    }
}

@media (max-width: 540px) {
    .home-form-question__media .home-form-question__image {
        max-width: 200px;
    }

    .home-form-question__title {
        font-size: 28px;
        margin-bottom: 18px;
    }

    .home-form-question__description {
        margin-bottom: 25px;
        font-size: 15px;
    }

    .home-form-question__tabs {
        gap: 10px;
        margin-bottom: 25px;
    }

    .home-form-question__tab {
        padding: 8px 12px;
        font-size: 16px;
    }

    .home-question-cf7 label {
        margin-bottom: 20px;
        font-size: 16px;
    }

    .home-question-cf7 input[type="text"],
    .home-question-cf7 input[type="tel"] {
        margin-top: 8px;
        padding: 10px 14px;
        min-height: 42px;
        font-size: 15px;
    }

    .home-question-cf7 button[type="submit"] {
        width: 100%;
        min-height: 44px;
        padding: 10px 16px;
        font-size: 16px;
    }

    .home-form-question__media .home-form-question__image {
        max-width: 200px;
    }
}

@media (max-width: 440px) {
    .home-form-question__media .home-form-question__image {
        max-width: 150px;
    }

    .home-form-question__title {
        font-size: 25px;
    }

    .home-form-question__description {
        font-size: 15px;
    }

    .home-form-question__tab,
    .home-question-cf7 label {
        font-size: 16px;
    }

    .home-form-question__title {
        font-size: 24px;
    }

    .home-question-cf7 label {
        font-size: 15px;
    }

    .home-question-cf7 input[type="text"],
    .home-question-cf7 input[type="tel"] {
        min-height: 38px;
        padding: 8px 12px;
        font-size: 14px;
    }

    .home-question-cf7 button[type="submit"] {
        min-height: 40px;
        font-size: 15px;
    }
}

/** ================= Home Review Cards ================= */

.home-review-cards {
    padding-top: 100px;
    padding-bottom: 100px;
    background-color: var(--primary);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.home-review-cards__inner {
    display: grid;
    grid-template-columns: 50% 50%;
    align-items: center;
    gap: 100px;
}

.home-review-cards__left {
    position: relative;
}

.home-review-cards__slider {
    overflow: hidden;
    border-radius: var(--radius2);
}

.home-review-cards__slider,
.home-review-cards__wrapper {
	height: 100%;
}

.home-review-cards__inner,
.home-review-cards__left,
.home-review-cards__slider,
.home-review-cards__wrapper,
.home-review-cards__slide {
    min-width: 0;
}

.home-review-cards__left,
.home-review-cards__slider {
    width: 100%;
    max-width: 100%;
}

.home-review-cards__wrapper {
	align-items: stretch;
}

.home-review-cards__slide {
    height: unset !important;
	min-height: 445px;
	display: flex;
	flex-direction: column;
	padding: 110px 70px 50px;
	border-radius: var(--radius2);
	background: var(--white);
}

.home-review-cards__text {
    margin: 0 0 50px;
    color: var(--secondary);
    font-size: 28px;
    font-weight: 400;
}

.home-review-cards__author {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 50px;
}

.home-review-cards__author .home-review-cards__avatar {
    width: 120px;
    height: 120px;
    flex: 0 0 120px;
    border-radius: 100%;
    object-fit: cover;
    object-position: center;
}

.home-review-cards__name {
    margin: 0;
    color: var(--primary);
    font-size: 28px;
    font-weight: 700;
}

.home-review-cards__arrow {
    position: absolute;
    top: 50%;
    z-index: 5;
    width: 100px;
    height: 100px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--white);
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    cursor: pointer;
    transform: translateY(-50%);
    transition: background 0.2s ease, transform 0.2s ease;
}

.home-review-cards__arrow svg {
    width: 35px;
    height: auto;
}

.home-review-cards__arrow:hover {
    background: #870000;
}

.home-review-cards__arrow--prev {
    left: -50px;
}

.home-review-cards__arrow--next {
    right: -50px;
}

.home-review-cards__right {
    color: var(--white);
}

.home-review-cards__title {
    margin: 0 0 50px;
    padding-bottom: 50px;
    border-bottom: 3px dashed var(--white);
    color: var(--white);
    font-size: 40px;
    font-weight: 700;
    text-align: center;
}

.home-review-cards__stats {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.home-review-cards__stat {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 100px;
    align-items: center;
}

.home-review-cards__stat-number {
    color: var(--white);
    font-size: 32px;
    font-weight: 700;
    text-align: right;
}

.home-review-cards__stat-text {
    color: var(--white);
    font-size: 24px;
    font-weight: 400;
}

@media (max-width: 1536px) {
    .home-review-cards__inner {
        gap: 70px;
    }

    .home-review-cards__slide {
        padding: 80px 50px 40px;
    }

    .home-review-cards__text {
        font-size: 24px;
    }

    .home-review-cards__title {
        font-size: 36px;
    }

    .home-review-cards__stat-number {
        font-size: 24px;
    }

    .home-review-cards__stat {
        grid-template-columns: 120px minmax(0, 1fr);
    }
}

@media (max-width: 1280px) {
    .home-review-cards {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .home-review-cards__inner {
        gap: 40px;
    }

    .home-review-cards__slide {
        min-height: 400px;
        padding: 60px 40px 40px;
    }

    .home-review-cards__text {
        font-size: 22px;
    }

    .home-review-cards__author {
        gap: 30px;
    }

    .home-review-cards__author .home-review-cards__avatar {
        width: 90px;
        height: 90px;
        flex: 0 0 90px;
    }

    .home-review-cards__name {
        font-size: 24px;
    }

    .home-review-cards__arrow {
        width: 80px;
        height: 80px;
    }

    .home-review-cards__arrow--prev {
        left: -35px;
    }

    .home-review-cards__arrow--next {
        right: -35px;
    }

    .home-review-cards__title {
        font-size: 32px;
    }

    .home-review-cards__stat {
        gap: 50px;
    }

    .home-review-cards__stat-number {
        font-size: 28px;
    }

    .home-review-cards__stat-text {
        font-size: 20px;
    }
}

@media (max-width: 1024px) {
    .home-review-cards__inner {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .home-review-cards__right {
        max-width: 700px;
        margin: 0 auto;
        width: 100%;
    }

    .home-review-cards__arrow--prev {
        left: -20px;
    }

    .home-review-cards__arrow--next {
        right: -20px;
    }
}

@media (max-width: 768px) {
    .home-review-cards {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .home-review-cards__slide {
        min-height: auto;
        padding: 40px 30px 30px;
    }

    .home-review-cards__text {
        margin-bottom: 35px;
        font-size: 20px;
        line-height: 1.5;
    }

    .home-review-cards__author {
        gap: 20px;
    }

    .home-review-cards__author .home-review-cards__avatar {
        width: 75px;
        height: 75px;
        flex: 0 0 75px;
    }

    .home-review-cards__name {
        font-size: 22px;
    }

    .home-review-cards__arrow {
        display: none;
    }

    .home-review-cards__title {
        margin-bottom: 35px;
        padding-bottom: 35px;
        font-size: 30px;
    }

    .home-review-cards__stats {
        gap: 35px;
    }

    .home-review-cards__stat {
        grid-template-columns: 140px 1fr;
        gap: 25px;
    }
}

@media (max-width: 540px) {
    .home-review-cards {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .home-review-cards__slide {
        padding: 25px 20px;
    }

    .home-review-cards__text {
        font-size: 17px;
    }

    .home-review-cards__author {
        gap: 15px;
    }

    .home-review-cards__author .home-review-cards__avatar {
        width: 60px;
        height: 60px;
        flex: 0 0 60px;
    }

    .home-review-cards__name {
        font-size: 18px;
    }

    .home-review-cards__arrow {
        width: 52px;
        height: 52px;
        border-width: 2px;
    }

    .home-review-cards__arrow svg {
        width: 18px;
    }

    .home-review-cards__arrow--prev {
        left: -10px;
    }

    .home-review-cards__arrow--next {
        right: -10px;
    }

    .home-review-cards__title {
        font-size: 24px;
    }

    .home-review-cards__stat {
        grid-template-columns: 1fr;
        gap: 8px;
        text-align: center;
    }

    .home-review-cards__stat-number {
        text-align: center;
        font-size: 26px;
    }

    .home-review-cards__stat-text {
        font-size: 18px;
    }
}

@media (max-width: 440px) {
    .home-review-cards__slide {
        padding: 20px 16px;
    }

    .home-review-cards__text {
        font-size: 16px;
    }

    .home-review-cards__title {
        font-size: 22px;
    }

    .home-review-cards__stat-number {
        font-size: 24px;
    }

    .home-review-cards__stat-text {
        font-size: 16px;
    }

    .home-review-cards__arrow {
        width: 46px;
        height: 46px;
    }
}

/** ================= Home Filial Maps ================= */

.home-filial-maps {
    padding-top: 50px;
    padding-bottom: 100px;
    background-color: var(--primary);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.home-filial-maps__title {
    margin: 0 0 100px;
    color: var(--white);
    font-size: 40px;
    font-weight: 600;
}

.home-filial-maps__title span {
    display: inline-block;
    font-weight: 700;
    text-transform: uppercase;
    border-bottom: 2px dashed currentColor;
}

.home-filial-maps__content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    align-items: stretch;
}

.home-filial-maps__map-wrap {
    height: 680px;
    border-radius: var(--radius2);
    overflow: hidden;
    background: var(--white);
}

.home-filial-maps__map {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
}

.home-filial-maps__list {
    max-height: 680px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-right: 15px;
    overflow-y: auto;
}

.home-filial-maps__list::-webkit-scrollbar {
    width: 5px;
}

.home-filial-maps__list::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.18);
    border-radius: 999px;
}

.home-filial-maps__list::-webkit-scrollbar-thumb {
    background: var(--white);
    border-radius: 999px;
}

.home-filial-maps__card {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
    padding: 28px 30px;
    border: 0;
    border-radius: var(--radius1);
    background: var(--white);
    color: var(--secondary);
    text-align: left;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.home-filial-maps__card:hover,
.home-filial-maps__card.is-active {
    transform: translateY(-1px);
    background: #fff5f5;
    box-shadow: var(--box-shadow);
}

.home-filial-maps__card strong {
    color: var(--secondary);
    font-size: 20px;
    font-weight: 700;
}

.home-filial-maps__card span {
    color: var(--secondary);
    font-size: 16px;
    font-weight: 500;
}

.home-filial-maps__loading {
    padding: 28px 30px;
    border-radius: var(--radius2);
    background: #ffffff;
    color: var(--primary);
    font-size: 20px;
    font-weight: 700;
}

.home-filial-maps__button-wrap {
    display: flex;
    justify-content: center;
    margin-top: 70px;
}

.home-filial-maps__button,
.home-filial-maps__button:visited {
    width: 30%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 25px 38px;
    border: 3px solid var(--white);
    border-radius: var(--radius2);
    background: transparent;
    color: #ffffff;
    font-size: 25px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}

.home-filial-maps__button:hover,
.home-filial-maps__button:focus {
    background: var(--white);
    color: var(--primary);
}

@media (max-width: 1536px) {
    .home-filial-maps__title {
        margin-bottom: 70px;
        font-size: 36px;
    }

    .home-filial-maps__map-wrap,
    .home-filial-maps__list {
        height: 560px;
        max-height: 560px;
    }

    .home-filial-maps__button {
        width: 32%;
    }
}

@media (max-width: 1280px) {
    .home-filial-maps__content {
        gap: 30px;
    }

    .home-filial-maps__map-wrap,
    .home-filial-maps__list {
        height: 500px;
        max-height: 500px;
    }

    .home-filial-maps__card {
        padding: 22px 24px;
        gap: 14px;
    }

    .home-filial-maps__button {
        width: 38%;
        font-size: 22px;
    }
}

@media (max-width: 1024px) {
    .home-filial-maps {
        padding-bottom: 70px;
    }

    .home-filial-maps__title {
        margin-bottom: 50px;
        font-size: 32px;
    }

    .home-filial-maps__content {
        grid-template-columns: 1fr;
    }

    .home-filial-maps__map-wrap {
        height: 450px;
    }

    .home-filial-maps__list {
        max-height: 430px;
        height: auto;
    }

    .home-filial-maps__button {
        width: 50%;
    }
}

@media (max-width: 768px) {
    .home-filial-maps {
        padding-top: 40px;
        padding-bottom: 55px;
    }

    .home-filial-maps__title {
        margin-bottom: 35px;
        font-size: 28px;
    }

    .home-filial-maps__map-wrap {
        height: 360px;
    }

    .home-filial-maps__list {
        max-height: 360px;
        gap: 14px;
        padding-right: 8px;
    }

    .home-filial-maps__card {
        padding: 20px;
    }

    .home-filial-maps__button-wrap {
        margin-top: 45px;
    }

    .home-filial-maps__button {
        width: 70%;
        padding: 20px 28px;
        font-size: 20px;
    }
}

@media (max-width: 540px) {
    .home-filial-maps__title {
        font-size: 24px;
    }

    .home-filial-maps__map-wrap {
        height: 300px;
        border-radius: 16px;
    }

    .home-filial-maps__card {
        padding: 18px 16px;
        border-radius: 12px;
    }

    .home-filial-maps__card strong {
        font-size: 18px;
    }

    .home-filial-maps__card span {
        font-size: 14px;
    }

    .home-filial-maps__button {
        width: 100%;
        padding: 18px 24px;
        font-size: 18px;
        border-radius: 16px;
    }
}

@media (max-width: 440px) {
    .home-filial-maps {
        padding-top: 35px;
        padding-bottom: 45px;
    }

    .home-filial-maps__title {
        font-size: 22px;
    }

    .home-filial-maps__map-wrap {
        height: 260px;
    }

    .home-filial-maps__list {
        max-height: 330px;
    }

    .home-filial-maps__card strong {
        font-size: 16px;
    }

    .home-filial-maps__card span {
        font-size: 13px;
    }

    .home-filial-maps__button {
        font-size: 17px;
    }
}

/** ================= About Banner ================= */

.about-banner {
    padding-top: 50px;
    padding-bottom: 50px;
    background-color: var(--primary);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.about-banner__inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 30px;
}

.about-banner__title {
    margin: 0 0 50px;
    color: var(--white);
    font-size: 40px;
    font-weight: 700;
}

.about-banner__text {
    color: var(--white);
    font-size: 24px;
    font-weight: 400;
}

.about-banner__text p {
    margin: 0 0 26px;
}

.about-banner__text p:last-child {
    margin-bottom: 0;
}

.about-banner__text strong,
.about-banner__text b {
    font-weight: 800;
    color: inherit;
}

.about-banner__image-wrap {
    width: 100%;
    aspect-ratio: 1 / 1;
    justify-self: center;
    position: relative;
}

.about-banner__image {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    clip-path: inherit;
}

@media (max-width: 1536px) {
	.about-banner__title {
		font-size: 38px;
		margin-bottom: 40px;
	}

	.about-banner__text {
		font-size: 22px;
	}
}

@media (max-width: 1280px) {
	.about-banner {
		padding-top: 40px;
		padding-bottom: 40px;
	}

	.about-banner__inner {
		gap: 24px;
	}

	.about-banner__title {
		font-size: 34px;
		margin-bottom: 32px;
	}

	.about-banner__text {
		font-size: 20px;
		line-height: 1.5;
	}

	.about-banner__text p {
		margin-bottom: 22px;
	}
}

@media (max-width: 1024px) {
	.about-banner__inner {
        grid-template-columns: 1fr;
		gap: 30px;
	}

    .about-banner__image-wrap {
		order: 1;
	}

	.about-banner__content {
		order: 2;
	}

	.about-banner__title {
		font-size: 30px;
		margin-bottom: 24px;
	}

	.about-banner__text {
		font-size: 18px;
		line-height: 1.55;
	}

	.about-banner__image-wrap {
		max-width: 420px;
	}
}

@media (max-width: 768px) {
	.about-banner {
		padding-top: 32px;
		padding-bottom: 32px;
	}

	.about-banner__inner {
		gap: 30px;
	}

	.about-banner__image-wrap {
		order: 1;
		max-width: 420px;
		width: 100%;
		margin: 0 auto;
	}

	.about-banner__content {
		order: 2;
	}

	.about-banner__title {
		font-size: 28px;
		margin-bottom: 20px;
		text-align: center;
	}

	.about-banner__text {
		font-size: 17px;
		line-height: 1.6;
	}

	.about-banner__text p {
		margin-bottom: 18px;
	}
}

@media (max-width: 540px) {
	.about-banner {
		padding-top: 28px;
		padding-bottom: 28px;
	}

	.about-banner__inner {
		gap: 24px;
	}

	.about-banner__image-wrap {
		max-width: 320px;
	}

	.about-banner__title {
		font-size: 24px;
		margin-bottom: 16px;
	}

	.about-banner__text {
		font-size: 15px;
		line-height: 1.65;
	}

	.about-banner__text p {
		margin-bottom: 16px;
	}
}

@media (max-width: 440px) {
	.about-banner {
		padding-top: 24px;
		padding-bottom: 24px;
	}

	.about-banner__image-wrap {
		max-width: 260px;
	}

	.about-banner__title {
		font-size: 22px;
		margin-bottom: 14px;
	}

	.about-banner__text {
		font-size: 14px;
		line-height: 1.7;
	}

	.about-banner__text p {
		margin-bottom: 14px;
	}
}

/** ================= News Cards/News Pagination ================= */

.about-mission {
    padding-top: 100px;
    padding-bottom: 100px;
}

.about-mission__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: flex-start;
    gap: 100px;
    text-align: center;
}

.about-mission__number {
    margin-bottom: 50px;
    color: var(--primary);
    font-size: 80px;
    font-weight: 700;
}

.about-mission__label {
    color: var(--primary);
    font-size: 32px;
    font-weight: 400;
}

.about-mission__separator {
    width: 100%;
    height: 50px;
    background: var(--primary);
}

.about-mission__content {
    padding-top: 30px;
    padding-bottom: 50px;
}

.about-mission__content .container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 100px;
}

.about-mission__image-wrap {
    width: 100%;
    aspect-ratio: 1 / 1;
    position: relative;
}

.about-mission__image {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    clip-path: inherit;
}

.about-mission__title {
    margin: 0 0 50px;
    color: var(--primary);
    font-size: 40px;
    font-weight: 700;
}

.about-mission__text {
    margin: 0;
    color: var(--secondary);
    font-size: 28px;
    font-weight: 700;
}

@media (max-width: 1536px) {
	.about-mission__stats {
		gap: 70px;
	}

	.about-mission__number {
		font-size: 72px;
		margin-bottom: 40px;
	}

	.about-mission__label {
		font-size: 28px;
	}

	.about-mission__content .container {
		gap: 70px;
	}

	.about-mission__title {
		font-size: 36px;
	}

	.about-mission__text {
		font-size: 24px;
	}
}

@media (max-width: 1280px) {
	.about-mission {
		padding-top: 80px;
		padding-bottom: 80px;
	}

	.about-mission__stats {
		gap: 50px;
	}

	.about-mission__number {
		font-size: 60px;
		margin-bottom: 30px;
	}

	.about-mission__label {
		font-size: 24px;
		line-height: 1.4;
	}

	.about-mission__separator {
		height: 40px;
	}

	.about-mission__content .container {
		gap: 50px;
	}

	.about-mission__title {
		margin-bottom: 30px;
		font-size: 34px;
	}

	.about-mission__text {
		font-size: 22px;
		line-height: 1.5;
	}
}

@media (max-width: 1024px) {
	.about-mission {
		padding-top: 60px;
		padding-bottom: 60px;
	}

	.about-mission__stats {
		gap: 30px;
	}

	.about-mission__number {
		font-size: 40px;
		margin-bottom: 24px;
	}

	.about-mission__label {
		font-size: 20px;
	}

	.about-mission__content .container {
		gap: 40px;
	}

	.about-mission__title {
		font-size: 30px;
	}

	.about-mission__text {
		font-size: 19px;
	}
}

@media (max-width: 768px) {
	.about-mission {
		padding-top: 40px;
		padding-bottom: 40px;
	}

	.about-mission__stats {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.about-mission__number {
		font-size: 54px;
		margin-bottom: 12px;
	}

	.about-mission__label {
		font-size: 20px;
	}

	.about-mission__separator {
		height: 20px;
	}

	.about-mission__content {
		padding-top: 30px;
		padding-bottom: 30px;
	}

	.about-mission__content .container {
		grid-template-columns: 1fr;
		gap: 35px;
	}

	.about-mission__image-wrap {
		max-width: 420px;
		margin: 0 auto;
		order: 1;
	}

	.about-mission__info {
		order: 2;
		text-align: center;
	}

	.about-mission__title {
		margin-bottom: 20px;
		font-size: 28px;
	}

	.about-mission__text {
		font-size: 17px;
		line-height: 1.6;
	}
}

@media (max-width: 540px) {
	.about-mission {
		padding-top: 30px;
		padding-bottom: 30px;
	}

	.about-mission__stats {
		gap: 30px;
	}

	.about-mission__number {
		font-size: 42px;
	}

	.about-mission__label {
		font-size: 18px;
	}

	.about-mission__image-wrap {
		max-width: 320px;
	}

	.about-mission__title {
		font-size: 24px;
		margin-bottom: 16px;
	}

	.about-mission__text {
		font-size: 15px;
		line-height: 1.65;
	}
}

@media (max-width: 440px) {
	.about-mission {
		padding-top: 24px;
		padding-bottom: 24px;
	}

	.about-mission__stats {
		gap: 24px;
	}

	.about-mission__number {
		font-size: 36px;
		margin-bottom: 10px;
	}

	.about-mission__label {
		font-size: 16px;
	}

	.about-mission__image-wrap {
		max-width: 260px;
	}

	.about-mission__title {
		font-size: 22px;
	}

	.about-mission__text {
		font-size: 14px;
		line-height: 1.7;
	}
}

/** ================= Microloans ================= */

.microloans-hero {
	min-height: 82px;
	display: flex;
	align-items: center;
	background-color: #ab0707;
	background-image: linear-gradient(180deg, rgba(171, 7, 7, 0.72) 0%, rgba(157, 0, 0, 0.76) 100%), var(--accent-bg-image);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.microloans-hero__title {
	margin: 0;
	color: #ffffff;
	font-size: 42px;
	line-height: 1.15;
	font-weight: 800;
}

.microloans-archive {
	padding: 34px 0 60px;
	background: #ffffff;
}

.microloans-archive__lead {
	max-width: 980px;
	margin-bottom: 32px;
	color: #181818;
	font-size: 1.14rem;
	font-weight: 700;
	line-height: 1.55;
}

.microloans-archive__lead .hl {
	color: #aa0808;
}

.microloans-archive__products {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 22px;
	margin-bottom: 40px;
}

.microloan-product-card {
	display: flex;
	flex-direction: column;
	padding: 22px;
	border: 1px solid rgba(170, 8, 8, 0.16);
	border-radius: 24px;
	background: #fff;
	color: inherit;
	text-decoration: none;
	box-shadow: 0 18px 44px rgba(78, 13, 13, 0.08);
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.microloan-product-card:hover,
.microloan-product-card:focus {
	transform: translateY(-2px);
	border-color: rgba(170, 8, 8, 0.35);
	box-shadow: 0 26px 52px rgba(78, 13, 13, 0.14);
}

.microloan-product-card__badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: fit-content;
	min-height: 30px;
	padding: 0 12px;
	margin-bottom: 14px;
	border-radius: 999px;
	background: #fff2f2;
	color: #aa0808;
	font-size: 0.82rem;
	font-weight: 800;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.microloan-product-card__title {
	margin: 0 0 14px;
	color: #111;
	font-size: 1.65rem;
	font-weight: 800;
	line-height: 1.18;
}

.microloan-product-card__image-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 260px;
	padding: 24px;
	border-radius: 18px;
	background: linear-gradient(180deg, rgba(255, 246, 246, 0.98) 0%, rgba(248, 231, 231, 0.98) 100%);
}

.microloan-product-card__image {
	display: block;
	max-width: 100%;
	max-height: 220px;
	object-fit: contain;
}

.microloan-product-card__placeholder {
	color: #aa0808;
	font-size: 1.2rem;
	font-weight: 800;
	text-align: center;
}

.microloan-product-card__text {
	margin: 16px 0 0;
	color: #2a2a2a;
	font-size: 0.98rem;
	line-height: 1.45;
}

.microloan-product-card__link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: 18px;
	color: #aa0808;
	font-weight: 800;
}

.microloan-product-card__link::after {
	content: '\2192';
	font-size: 1rem;
}

.microloans-archive__conditions {
	padding: 26px;
	border-radius: 28px;
	background: linear-gradient(180deg, rgba(255, 248, 248, 0.96) 0%, rgba(255, 255, 255, 0.98) 100%);
	border: 1px solid rgba(170, 8, 8, 0.08);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.microloans-archive__conditions-head {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 18px;
	margin-bottom: 22px;
}

.microloans-archive__conditions-title {
	margin: 0;
	color: #8f0909;
	font-size: 1.9rem;
	font-weight: 800;
}

.microloans-archive__conditions-subtitle {
	margin: 0;
	color: #7a5a5a;
	font-size: 0.96rem;
	font-weight: 700;
}

.microloans-conditions-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px 18px;
}

.microloans-condition-card {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	padding: 20px 22px;
	border-radius: 20px;
	background: #fff;
	border: 1px solid rgba(170, 8, 8, 0.08);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.microloans-condition-card:hover,
.microloans-condition-card:focus-within {
	transform: translateY(-1px);
	border-color: rgba(170, 8, 8, 0.18);
	box-shadow: 0 18px 38px rgba(78, 13, 13, 0.12);
}

.microloans-condition-card__icon {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: linear-gradient(180deg, #c90b0b 0%, #a50606 100%);
	color: #fff;
	box-shadow: 0 12px 24px rgba(165, 6, 6, 0.2);
}

.microloans-condition-card__icon svg {
	display: block;
	width: 22px;
	height: 22px;
	fill: currentColor;
}

.microloans-condition-card__title {
	margin: 0 0 8px;
	color: #1b1b1b;
	font-size: 1.08rem;
	font-weight: 800;
	line-height: 1.2;
}

.microloans-condition-card__desc {
	margin: 0;
	color: #333;
	font-size: 0.97rem;
	line-height: 1.4;
}

.microloans-archive__conditions-note {
	margin-top: 24px;
	padding: 18px 20px;
	border-radius: 16px;
	background: #fff2f2;
	color: #5e2b2b;
	font-size: 0.98rem;
	font-weight: 700;
	line-height: 1.5;
	border: 1px solid rgba(170, 8, 8, 0.08);
}

.microloans-archive__empty {
	padding: 18px;
	border-radius: 14px;
	background: #fff2f2;
	color: #7d0505;
	font-weight: 700;
}

@media (max-width: 1536px) {
	.microloans-archive__lead {
		max-width: 900px;
		font-size: 1.08rem;
	}

	.microloan-product-card__image-wrap {
		min-height: 240px;
	}

	.microloans-archive__conditions-title {
		font-size: 1.75rem;
	}
}

@media (max-width: 1280px) {
	.microloans-archive {
		padding: 30px 0 50px;
	}

	.microloans-archive__lead {
		margin-bottom: 28px;
		font-size: 1.02rem;
	}

	.microloans-archive__products {
		gap: 18px;
		margin-bottom: 34px;
	}

	.microloan-product-card {
		padding: 20px;
		border-radius: 22px;
	}

	.microloan-product-card__title {
		font-size: 1.45rem;
	}

	.microloan-product-card__image-wrap {
		min-height: 220px;
		padding: 20px;
	}

	.microloan-product-card__image {
		max-height: 185px;
	}

	.microloans-archive__conditions {
		padding: 24px;
	}

	.microloans-condition-card {
		padding: 18px 20px;
	}
}

@media (max-width: 1024px) {
	.microloans-hero {
		min-height: 74px;
	}

	.microloans-hero__title {
		font-size: 36px;
	}

	.microloans-archive__products,
	.microloans-conditions-grid {
		grid-template-columns: 1fr;
	}

	.microloans-archive__conditions-head {
		flex-direction: column;
		align-items: flex-start;
		gap: 10px;
	}

	.microloan-product-card__image-wrap {
		min-height: 240px;
	}

	.microloan-product-card__image {
		max-height: 200px;
	}
}

@media (max-width: 768px) {
	.microloans-hero {
		min-height: 66px;
	}

	.microloans-hero__title {
		font-size: 32px;
	}

	.microloans-archive {
		padding: 26px 0 42px;
	}

	.microloans-archive__lead {
		margin-bottom: 24px;
		font-size: 0.98rem;
		line-height: 1.5;
	}

	.microloans-archive__products {
		gap: 18px;
		margin-bottom: 30px;
	}

	.microloan-product-card {
		padding: 18px;
		border-radius: 20px;
	}

	.microloan-product-card__badge {
		min-height: 28px;
		font-size: 0.76rem;
	}

	.microloan-product-card__title {
		font-size: 1.32rem;
	}

	.microloan-product-card__image-wrap {
		min-height: 210px;
		padding: 18px;
		border-radius: 16px;
	}

	.microloan-product-card__image {
		max-height: 170px;
	}

	.microloan-product-card__text {
		font-size: 0.94rem;
		line-height: 1.45;
	}

	.microloans-archive__conditions {
		padding: 20px;
		border-radius: 22px;
	}

	.microloans-archive__conditions-title {
		font-size: 1.45rem;
	}

	.microloans-archive__conditions-subtitle {
		font-size: 0.88rem;
	}

	.microloans-condition-card {
		padding: 17px;
		border-radius: 16px;
	}

	.microloans-condition-card__icon {
		width: 38px;
		height: 38px;
	}

	.microloans-condition-card__title {
		font-size: 1rem;
	}

	.microloans-condition-card__desc {
		font-size: 0.92rem;
	}

	.microloans-archive__conditions-note {
		margin-top: 20px;
		padding: 15px 16px;
		font-size: 0.92rem;
	}
}

@media (max-width: 540px) {
	.microloans-hero {
		min-height: 58px;
	}

	.microloans-hero__title {
		font-size: 28px;
	}

	.microloans-archive {
		padding: 22px 0 34px;
	}

	.microloans-archive__lead {
		font-size: 0.92rem;
	}

	.microloans-archive__products {
		gap: 16px;
	}

	.microloan-product-card {
		padding: 16px;
		border-radius: 18px;
	}

	.microloan-product-card__title {
		font-size: 1.18rem;
	}

	.microloan-product-card__image-wrap {
		min-height: 180px;
		padding: 16px;
	}

	.microloan-product-card__image {
		max-height: 145px;
	}

	.microloans-archive__conditions {
		padding: 16px;
		border-radius: 18px;
	}

	.microloans-archive__conditions-title {
		font-size: 1.28rem;
	}

	.microloans-condition-card {
		gap: 12px;
		padding: 15px;
	}

	.microloans-condition-card__icon {
		width: 34px;
		height: 34px;
	}

	.microloans-condition-card__icon svg {
		width: 18px;
		height: 18px;
	}

	.microloans-condition-card__title {
		font-size: 0.95rem;
	}

	.microloans-condition-card__desc {
		font-size: 0.88rem;
	}
}

@media (max-width: 440px) {
	.microloans-hero__title {
		font-size: 25px;
	}

	.microloans-archive__lead {
		font-size: 0.88rem;
	}

	.microloan-product-card__title {
		font-size: 1.08rem;
	}

	.microloan-product-card__image-wrap {
		min-height: 155px;
	}

	.microloan-product-card__image {
		max-height: 125px;
	}

	.microloan-product-card__text {
		font-size: 0.88rem;
	}

	.microloans-archive__conditions-title {
		font-size: 1.18rem;
	}

	.microloans-condition-card {
		padding: 14px;
	}

	.microloans-condition-card__title {
		font-size: 0.9rem;
	}

	.microloans-condition-card__desc,
	.microloans-archive__conditions-note {
		font-size: 0.84rem;
	}
}

/** ================= Gold Banner ================= */

.gold-banner {
    display: flex;
    align-items: center;
    background-color: var(--primary);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
	padding-top: 50px;
	padding-bottom: 50px;
}

.gold-banner .container {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 50px;
}

.gold-banner__inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 50px;
}

.gold-banner__content {
    color: var(--white);
}

.gold-banner__title {
    margin: 0;
    color: var(--white);
    font-size: 32px;
    font-weight: 700;
}

.gold-banner__subtitle {
    margin: 0 0 50px;
    color: var(--white);
    font-size: 24px;
    font-weight: 700;
}

.gold-banner__text {
    color: var(--white);
    font-size: 20px;
    font-weight: 500;
}

.gold-banner__image-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
}

.gold-banner__image-wrap .gold-banner__image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

@media (max-width: 1536px) {
	.gold-banner .container {
		gap: 40px;
	}

	.gold-banner__inner {
		gap: 40px;
	}

	.gold-banner__title {
		font-size: 30px;
	}

	.gold-banner__subtitle {
		font-size: 22px;
	}

	.gold-banner__text {
		font-size: 19px;
	}
}

@media (max-width: 1280px) {
	.gold-banner {
		padding-top: 40px;
		padding-bottom: 40px;
	}

	.gold-banner .container {
		gap: 35px;
	}

	.gold-banner__inner {
		gap: 35px;
	}

	.gold-banner__title {
		font-size: 28px;
		line-height: 1.3;
	}

	.gold-banner__subtitle {
		margin-bottom: 35px;
		font-size: 20px;
	}

	.gold-banner__text {
		font-size: 18px;
		line-height: 1.5;
	}
}

@media (max-width: 1024px) {
	.gold-banner__inner {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.gold-banner__content {
		order: 1;
		text-align: center;
	}

	.gold-banner__image-wrap {
		order: 2;
		max-width: 700px;
		margin: 0 auto;
	}

	.gold-banner__subtitle {
		margin-bottom: 25px;
	}
}

@media (max-width: 768px) {
	.gold-banner {
		padding-top: 32px;
		padding-bottom: 32px;
	}

	.gold-banner .container {
		gap: 30px;
	}

	.gold-banner__inner {
		gap: 30px;
	}

	.gold-banner__title {
		font-size: 24px;
		line-height: 1.35;
		text-align: center;
	}

	.gold-banner__subtitle {
		margin-bottom: 20px;
		font-size: 20px;
		text-align: center;
	}

	.gold-banner__text {
		font-size: 16px;
		line-height: 1.6;
		text-align: center;
	}

	.gold-banner__image-wrap {
		max-width: 520px;
	}
}

@media (max-width: 540px) {
	.gold-banner {
		padding-top: 28px;
		padding-bottom: 28px;
	}

	.gold-banner .container {
		gap: 24px;
	}

	.gold-banner__title {
		font-size: 21px;
	}

	.gold-banner__subtitle {
		margin-bottom: 16px;
		font-size: 18px;
	}

	.gold-banner__text {
		font-size: 15px;
		line-height: 1.6;
	}

	.gold-banner__image-wrap {
		max-width: 420px;
	}
}

@media (max-width: 440px) {
	.gold-banner {
		padding-top: 24px;
		padding-bottom: 24px;
	}

	.gold-banner .container {
		gap: 20px;
	}

	.gold-banner__inner {
		gap: 20px;
	}

	.gold-banner__title {
		font-size: 18px;
		line-height: 1.4;
	}

	.gold-banner__subtitle {
		margin-bottom: 14px;
		font-size: 16px;
	}

	.gold-banner__text {
		font-size: 14px;
		line-height: 1.65;
	}
}

/** ================= Microloans Form ================= */

.microloans-form {
    padding-top: 50px;
	padding-bottom: 50px;
}

.microloans-form__box {
    padding: 40px 31px;
    border-radius: var(--radius1);
    background: var(--primary);
}

.microloans-cf7 {
    display: grid;
    grid-template-columns: 1.4fr 1.4fr 0.9fr 0.9fr;
    gap: 20px;
    align-items: center;
}

.microloans-cf7__field,
.microloans-cf7__submit {
    min-width: 0;
}

.microloans-form .microloans-cf7 input {
    width: 100%;
    padding: 22px 30px;
    border: 0;
    border-radius: var(--radius1);
    background: var(--white);
    color: var(--primary);
    font-size: 16px;
    font-weight: 700;
    outline: none;
}

.microloans-form .microloans-cf7 input::placeholder {
    color: var(--primary);
    opacity: 1;
}

.microloans-form .microloans-cf7 input:focus {
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.32);
}

.microloans-form .microloans-cf7 button[type="submit"] {
    width: 100%;
    padding: 22px 30px;
    border: 0;
    border-radius: var(--radius1);
    background: var(--white);
    color: var(--primary);
    font-size: 16px;
    font-weight: 700;
	text-align: center;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.microloans-form .microloans-cf7 button[type="submit"]:hover,
.microloans-form .microloans-cf7 button[type="submit"]:focus {
    background: #fff0f0;
    color: #870000;
    transform: translateY(-2px);
}

.microloans-cf7 .wpcf7-spinner {
    display: none;
}

.microloans-cf7 .wpcf7-not-valid-tip {
    margin-top: 6px;
    color: #ffffff;
    font-size: 11px;
    font-weight: 600;
}

.microloans-form .wpcf7-response-output {
    margin: 14px 0 0;
    padding: 10px 14px;
    border-radius: 6px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
}

@media (max-width: 1536px) {
	.microloans-form__box {
		padding: 36px 28px;
	}

	.microloans-cf7 {
		gap: 18px;
	}

	.microloans-form .microloans-cf7 input,
	.microloans-form .microloans-cf7 button[type="submit"] {
		padding: 20px 26px;
	}
}

@media (max-width: 1280px) {
	.microloans-form {
		padding-top: 40px;
		padding-bottom: 40px;
	}

	.microloans-form__box {
		padding: 30px 24px;
	}

	.microloans-cf7 {
		grid-template-columns: repeat(2, 1fr);
		gap: 16px;
	}

	.microloans-form .microloans-cf7 input,
	.microloans-form .microloans-cf7 button[type="submit"] {
		padding: 18px 22px;
		font-size: 15px;
	}
}

@media (max-width: 1024px) {
	.microloans-form__box {
		padding: 26px 22px;
	}

	.microloans-cf7 {
		gap: 14px;
	}
}

@media (max-width: 768px) {
	.microloans-form {
		padding-top: 32px;
		padding-bottom: 32px;
	}

	.microloans-form__box {
		padding: 24px 20px;
		border-radius: 18px;
	}

	.microloans-cf7 {
		grid-template-columns: 1fr;
		gap: 14px;
	}

	.microloans-form .microloans-cf7 input,
	.microloans-form .microloans-cf7 button[type="submit"] {
		padding: 16px 18px;
		font-size: 15px;
		border-radius: 14px;
	}
}

@media (max-width: 540px) {
	.microloans-form {
		padding-top: 28px;
		padding-bottom: 28px;
	}

	.microloans-form__box {
		padding: 18px;
		border-radius: 16px;
	}

	.microloans-form .microloans-cf7 input,
	.microloans-form .microloans-cf7 button[type="submit"] {
		padding: 15px 16px;
		font-size: 14px;
	}
}

@media (max-width: 440px) {
	.microloans-form {
		padding-top: 24px;
		padding-bottom: 24px;
	}

	.microloans-form__box {
		padding: 16px;
	}

	.microloans-cf7 {
		gap: 12px;
	}

	.microloans-form .microloans-cf7 input,
	.microloans-form .microloans-cf7 button[type="submit"] {
		padding: 14px;
		font-size: 13px;
	}
}

/** ================= Gold Info Cards ================= */

.gold-info-cards {
    padding-bottom: 50px;
}

.gold-info-cards__title {
    margin: 0 0 50px;
    color: var(--primary);
    font-size: 32px;
    font-weight: 700;
}

.gold-info-cards__inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    align-items: stretch;
}

.gold-info-cards__tabs {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.gold-info-cards__tab {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 30px;
    border: 2px solid var(--primary);
    border-radius: 31px;
    background: var(--white);
    color: var(--primary);
    font-size: 20px;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.gold-info-cards__tab:hover,
.gold-info-cards__tab:focus {
    transform: translateY(-2px);
	border: 2px solid var(--primary);
}

.gold-info-cards__tab.is-active {
    background: var(--primary);
    color: var(--white);
}

.gold-info-cards__tab-icon {
    flex: 0 0 auto;
    width: 41px;
    height: 41px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    transition: transform 0.25s ease, background 0.2s ease, color 0.2s ease;
}

.gold-info-cards__tab.is-active .gold-info-cards__tab-icon {
    background: #ffffff;
    color: #b00000;
    transform: rotate(90deg);
}

.gold-info-cards__contents {
    position: relative;
}

.gold-info-cards__content {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	border-radius: 44px;
	background: #f5f0eb;
	opacity: 0;
	visibility: hidden;
	transform: translateX(24px) scale(0.98);
	pointer-events: none;
	transition:
		opacity 0.45s ease,
		visibility 0.45s ease,
		transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.gold-info-cards__content.is-active {
	opacity: 1;
	visibility: visible;
	transform: translateX(0) scale(1);
	pointer-events: auto;
}

.gold-info-cards__content .gold-info-cards__image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
	object-position: center;
}

.gold-info-cards__overlay {
    position: absolute;
    left: 15px;
    right: 30px;
    bottom: 30px;
    padding: 20px 30px;
    border-radius: 22px;
    background: rgba(90, 80, 80, 0.62);
    backdrop-filter: blur(8px);
    color: var(--white);
	opacity: 0;
	transform: translateY(14px);
	transition:
		opacity 0.4s ease 0.12s,
		transform 0.4s ease 0.12s;
}

.gold-info-cards__content.is-active .gold-info-cards__overlay {
	opacity: 1;
	transform: translateY(0);
}

.gold-info-cards__content-title {
    margin: 0 0 15px;
    color: var(--white);
    font-size: 20px;
    font-weight: 700;
}

.gold-info-cards__text {
    margin: 0;
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
}

@media (max-width: 1536px) {
	.gold-info-cards__inner {
		gap: 40px;
	}

	.gold-info-cards__title {
		font-size: 30px;
		margin-bottom: 40px;
	}

	.gold-info-cards__tabs {
		gap: 24px;
	}

	.gold-info-cards__tab {
		padding: 20px 26px;
		font-size: 18px;
	}
}

@media (max-width: 1280px) {
	.gold-info-cards {
		padding-bottom: 40px;
	}

	.gold-info-cards__title {
		font-size: 28px;
		margin-bottom: 32px;
	}

	.gold-info-cards__inner {
		gap: 32px;
	}

	.gold-info-cards__tabs {
		gap: 20px;
	}

	.gold-info-cards__tab {
		padding: 18px 22px;
		border-radius: 26px;
		font-size: 17px;
	}

	.gold-info-cards__tab-icon {
		width: 36px;
		height: 36px;
	}

	.gold-info-cards__content {
		border-radius: 34px;
	}

	.gold-info-cards__overlay {
		right: 24px;
		bottom: 24px;
		padding: 18px 24px;
	}
}

@media (max-width: 1024px) {
	.gold-info-cards__inner {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.gold-info-cards__contents {
		min-height: 430px;
	}

	.gold-info-cards__content {
		min-height: 430px;
	}

	.gold-info-cards__tabs {
		gap: 16px;
	}

	.gold-info-cards__tab {
		padding: 16px 20px;
	}
}

@media (max-width: 768px) {
	.gold-info-cards {
		padding-bottom: 32px;
	}

	.gold-info-cards__title {
		font-size: 25px;
		line-height: 1.3;
		margin-bottom: 26px;
	}

	.gold-info-cards__inner {
		gap: 24px;
	}

	.gold-info-cards__tabs {
		gap: 14px;
	}

	.gold-info-cards__tab {
		padding: 15px 18px;
		border-radius: 22px;
		font-size: 16px;
	}

	.gold-info-cards__tab-icon {
		width: 32px;
		height: 32px;
	}

	.gold-info-cards__contents,
	.gold-info-cards__content {
		min-height: 360px;
	}

	.gold-info-cards__content {
		border-radius: 26px;
	}

	.gold-info-cards__overlay {
		left: 14px;
		right: 14px;
		bottom: 14px;
		padding: 16px 18px;
		border-radius: 18px;
	}

	.gold-info-cards__content-title {
		margin-bottom: 10px;
		font-size: 17px;
	}

	.gold-info-cards__text {
		font-size: 14px;
		line-height: 1.45;
	}
}

@media (max-width: 540px) {
	.gold-info-cards {
		padding-bottom: 28px;
	}

	.gold-info-cards__title {
		font-size: 22px;
		margin-bottom: 22px;
	}

	.gold-info-cards__tab {
		padding: 14px 16px;
		border-radius: 20px;
		font-size: 15px;
	}

	.gold-info-cards__tab-icon {
		width: 30px;
		height: 30px;
	}

	.gold-info-cards__contents,
	.gold-info-cards__content {
		min-height: 320px;
	}

	.gold-info-cards__content {
		border-radius: 22px;
	}

	.gold-info-cards__overlay {
		padding: 14px 16px;
	}

	.gold-info-cards__content-title {
		font-size: 16px;
	}

	.gold-info-cards__text {
		font-size: 13px;
	}
}

@media (max-width: 440px) {
	.gold-info-cards {
		padding-bottom: 24px;
	}

	.gold-info-cards__title {
		font-size: 20px;
		margin-bottom: 18px;
	}

	.gold-info-cards__tabs {
		gap: 12px;
	}

	.gold-info-cards__tab {
		padding: 13px 14px;
		font-size: 14px;
	}

	.gold-info-cards__tab-icon {
		width: 28px;
		height: 28px;
	}

	.gold-info-cards__contents,
	.gold-info-cards__content {
		min-height: 290px;
	}

	.gold-info-cards__overlay {
		left: 10px;
		right: 10px;
		bottom: 10px;
		padding: 12px 14px;
		border-radius: 16px;
	}

	.gold-info-cards__content-title {
		font-size: 15px;
	}

	.gold-info-cards__text {
		font-size: 12px;
	}
}

/** ================= Gold About Cards ================= */

.gold-about-cards {
    padding-top: 50px;
	padding-bottom: 50px;
    background-color: var(--primary);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.gold-about-cards__title {
    margin: 0 0 50px;
    color: #ffffff;
    font-size: 32px;
    font-weight: 700;
}

.gold-about-cards__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
    padding: 0 30px;
}

.gold-about-cards__item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 23px 38px;
    border-radius: var(--radius1);
    background: var(--white);
    color: var(--primary);
    font-size: 16px;
    font-weight: 700;
    text-align: center;
}

.gold-about-cards__bottom {
	margin-top: 50px;
    color: var(--white);
    font-size: 24px;
    font-weight: 700;
    text-align: center;
}

@media (max-width: 1536px) {
	.gold-about-cards__grid {
		gap: 36px;
		padding: 0;
	}

	.gold-about-cards__title {
		font-size: 30px;
		margin-bottom: 40px;
	}

	.gold-about-cards__bottom {
		margin-top: 40px;
		font-size: 22px;
	}
}

@media (max-width: 1280px) {
	.gold-about-cards {
		padding-top: 40px;
		padding-bottom: 40px;
	}

	.gold-about-cards__title {
		font-size: 28px;
		margin-bottom: 32px;
	}

	.gold-about-cards__grid {
		gap: 24px;
	}

	.gold-about-cards__item {
		padding: 20px 24px;
		font-size: 15px;
		min-height: 90px;
	}

	.gold-about-cards__bottom {
		margin-top: 32px;
		font-size: 20px;
	}
}

@media (max-width: 1024px) {
	.gold-about-cards__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}

	.gold-about-cards__item {
		min-height: 95px;
		padding: 18px 20px;
	}

	.gold-about-cards__bottom {
		font-size: 19px;
		line-height: 1.4;
	}
}

@media (max-width: 768px) {
	.gold-about-cards {
		padding-top: 32px;
		padding-bottom: 32px;
	}

	.gold-about-cards__title {
		margin-bottom: 24px;
		font-size: 24px;
		line-height: 1.3;
		text-align: center;
	}

	.gold-about-cards__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 16px;
	}

	.gold-about-cards__item {
		min-height: 85px;
		padding: 16px;
		font-size: 14px;
		line-height: 1.4;
		border-radius: 16px;
	}

	.gold-about-cards__bottom {
		margin-top: 24px;
		font-size: 18px;
		line-height: 1.45;
	}
}

@media (max-width: 540px) {
	.gold-about-cards {
		padding-top: 28px;
		padding-bottom: 28px;
	}

	.gold-about-cards__title {
		font-size: 22px;
		margin-bottom: 20px;
	}

	.gold-about-cards__grid {
		grid-template-columns: 1fr;
		gap: 14px;
	}

	.gold-about-cards__item {
		min-height: 74px;
		padding: 15px;
		font-size: 14px;
	}

	.gold-about-cards__bottom {
		margin-top: 20px;
		font-size: 17px;
	}
}

@media (max-width: 440px) {
	.gold-about-cards {
		padding-top: 24px;
		padding-bottom: 24px;
	}

	.gold-about-cards__title {
		font-size: 20px;
		margin-bottom: 18px;
	}

	.gold-about-cards__grid {
		gap: 12px;
	}

	.gold-about-cards__item {
		min-height: 68px;
		padding: 14px 12px;
		font-size: 13px;
		line-height: 1.35;
		border-radius: 14px;
	}

	.gold-about-cards__bottom {
		margin-top: 18px;
		font-size: 15px;
		line-height: 1.4;
	}
}

/** ================= Gold Choose Cards ================= */

.gold-choose-cards {
    padding-top: 50px;
	padding-bottom: 50px;
}

.gold-choose-cards__title {
    margin: 0 0 64px;
    color: var(--primary);
    font-size: 32px;
    font-weight: 700;
}

.gold-choose-cards__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.gold-choose-cards__item {
    padding: 30px;
    border-radius: var(--radius1);
    background: var(--primary);
    color: var(--white);
    text-align: center;
}

.gold-choose-cards__icon {
    width: 100px;
    height: auto;
    display: block;
    object-fit: contain;
	margin: 0 auto 30px;
}

.gold-choose-cards__card-title {
    margin: 0 0 30px;
    color: var(--white);
    font-size: 20px;
    font-weight: 700;
}

.gold-choose-cards__text {
    margin: 0;
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
}

@media (max-width: 1536px) {
	.gold-choose-cards__title {
		margin-bottom: 50px;
		font-size: 30px;
	}

	.gold-choose-cards__grid {
		gap: 32px;
	}
}

@media (max-width: 1280px) {
	.gold-choose-cards {
		padding-top: 40px;
		padding-bottom: 40px;
	}

	.gold-choose-cards__title {
		margin-bottom: 40px;
		font-size: 28px;
	}

	.gold-choose-cards__grid {
		gap: 24px;
	}

	.gold-choose-cards__item {
		padding: 26px 22px;
	}

	.gold-choose-cards__icon {
		width: 86px;
		margin-bottom: 24px;
	}

	.gold-choose-cards__card-title {
		margin-bottom: 22px;
		font-size: 18px;
	}

	.gold-choose-cards__text {
		font-size: 15px;
		line-height: 1.45;
	}
}

@media (max-width: 1024px) {
	.gold-choose-cards__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 22px;
	}

	.gold-choose-cards__item:last-child {
		grid-column: 1 / -1;
		max-width: 520px;
		width: 100%;
		margin: 0 auto;
	}
}

@media (max-width: 768px) {
	.gold-choose-cards {
		padding-top: 32px;
		padding-bottom: 32px;
	}

	.gold-choose-cards__title {
		margin-bottom: 28px;
		font-size: 25px;
		line-height: 1.3;
		text-align: center;
	}

	.gold-choose-cards__grid {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.gold-choose-cards__item,
	.gold-choose-cards__item:last-child {
		max-width: 520px;
		width: 100%;
		margin: 0 auto;
		padding: 26px 22px;
		border-radius: 20px;
	}

	.gold-choose-cards__icon {
		width: 76px;
		margin-bottom: 20px;
	}

	.gold-choose-cards__card-title {
		margin-bottom: 16px;
		font-size: 17px;
	}

	.gold-choose-cards__text {
		font-size: 14px;
		line-height: 1.5;
	}
}

@media (max-width: 540px) {
	.gold-choose-cards {
		padding-top: 28px;
		padding-bottom: 28px;
	}

	.gold-choose-cards__title {
		margin-bottom: 22px;
		font-size: 22px;
	}

	.gold-choose-cards__item {
		padding: 24px 18px;
		border-radius: 18px;
	}

	.gold-choose-cards__icon {
		width: 66px;
		margin-bottom: 16px;
	}

	.gold-choose-cards__card-title {
		font-size: 16px;
	}

	.gold-choose-cards__text {
		font-size: 13px;
	}
}

@media (max-width: 440px) {
	.gold-choose-cards {
		padding-top: 24px;
		padding-bottom: 24px;
	}

	.gold-choose-cards__title {
		font-size: 20px;
		margin-bottom: 18px;
	}

	.gold-choose-cards__grid {
		gap: 14px;
	}

	.gold-choose-cards__item {
		padding: 22px 16px;
		border-radius: 16px;
	}

	.gold-choose-cards__icon {
		width: 58px;
	}

	.gold-choose-cards__card-title {
		font-size: 15px;
	}

	.gold-choose-cards__text {
		font-size: 13px;
		line-height: 1.45;
	}
}

/** ================= Gold Support Cards ================= */

.gold-support-cards {
    padding-top: 50px;
	padding-bottom: 50px;
    background-color: var(--primary);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.gold-support-cards__title {
    margin: 0 0 30px;
    color: var(--white);
    font-size: 36px;
    font-weight: 700;
}

.gold-support-cards__description {
    margin: 0 0 50px;
    color: var(--white);
    font-size: 24px;
    font-weight: 500;
}

.gold-support-cards__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
}

.gold-support-cards__grid--top {
    margin-bottom: 50px;
}

.gold-support-cards__grid--bottom {
    margin-top: 50px;
	gap: 20px;
}

.gold-support-cards__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 106px;
    border-radius: var(--radius1);
    background: var(--white);
    color: var(--secondary);
    text-align: center;
}

.gold-support-cards__card-title {
    margin: 0 0 30px;
    color: var(--primary);
    font-size: 20px;
    font-weight: 700;
}

.gold-support-cards__text {
    margin: 0;
    color: var(--secondary);
    font-size: 16px;
    font-weight: 500;
}

.gold-support-cards__subtitle {
    margin: 0;
    color: var(--white);
    font-size: 24px;
    font-weight: 700;
    font-style: italic;
}

@media (max-width: 1536px) {
	.gold-support-cards__grid {
		gap: 40px;
	}

	.gold-support-cards__item {
		padding: 28px 70px;
	}

	.gold-support-cards__title {
		font-size: 34px;
	}
}

@media (max-width: 1280px) {
	.gold-support-cards {
		padding-top: 40px;
		padding-bottom: 40px;
	}

	.gold-support-cards__title {
		font-size: 30px;
	}

	.gold-support-cards__description {
		margin-bottom: 40px;
		font-size: 20px;
		line-height: 1.5;
	}

	.gold-support-cards__grid {
		gap: 28px;
	}

	.gold-support-cards__grid--top {
		margin-bottom: 40px;
	}

	.gold-support-cards__grid--bottom {
		margin-top: 40px;
	}

	.gold-support-cards__item {
		padding: 28px 40px;
	}

	.gold-support-cards__subtitle {
		font-size: 22px;
	}
}

@media (max-width: 1024px) {
	.gold-support-cards__item {
		padding: 26px 28px;
	}

	.gold-support-cards__card-title {
		margin-bottom: 20px;
		font-size: 18px;
	}

	.gold-support-cards__text {
		font-size: 15px;
		line-height: 1.5;
	}
}

@media (max-width: 768px) {
	.gold-support-cards {
		padding-top: 32px;
		padding-bottom: 32px;
	}

	.gold-support-cards__title {
		margin-bottom: 22px;
		font-size: 26px;
		line-height: 1.3;
		text-align: center;
	}

	.gold-support-cards__description {
		margin-bottom: 28px;
		font-size: 16px;
		line-height: 1.55;
		text-align: center;
	}

	.gold-support-cards__grid {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.gold-support-cards__grid--top {
		margin-bottom: 28px;
	}

	.gold-support-cards__grid--bottom {
		margin-top: 28px;
		gap: 18px;
	}

	.gold-support-cards__item {
		max-width: 520px;
		width: 100%;
		margin: 0 auto;
		padding: 26px 22px;
		border-radius: 20px;
	}

	.gold-support-cards__card-title {
		margin-bottom: 16px;
		font-size: 17px;
		line-height: 1.3;
	}

	.gold-support-cards__text {
		font-size: 14px;
		line-height: 1.5;
	}

	.gold-support-cards__subtitle {
		font-size: 20px;
		line-height: 1.35;
		text-align: center;
	}
}

@media (max-width: 540px) {
	.gold-support-cards {
		padding-top: 28px;
		padding-bottom: 28px;
	}

	.gold-support-cards__title {
		font-size: 23px;
	}

	.gold-support-cards__description {
		font-size: 15px;
	}

	.gold-support-cards__item {
		padding: 24px 18px;
		border-radius: 18px;
	}

	.gold-support-cards__card-title {
		font-size: 16px;
	}

	.gold-support-cards__text {
		font-size: 13px;
	}

	.gold-support-cards__subtitle {
		font-size: 18px;
	}
}

@media (max-width: 440px) {
	.gold-support-cards {
		padding-top: 24px;
		padding-bottom: 24px;
	}

	.gold-support-cards__title {
		font-size: 21px;
	}

	.gold-support-cards__description {
		margin-bottom: 22px;
		font-size: 14px;
	}

	.gold-support-cards__grid {
		gap: 14px;
	}

	.gold-support-cards__grid--top {
		margin-bottom: 22px;
	}

	.gold-support-cards__grid--bottom {
		margin-top: 22px;
		gap: 14px;
	}

	.gold-support-cards__item {
		padding: 22px 16px;
		border-radius: 16px;
	}

	.gold-support-cards__card-title {
		font-size: 15px;
	}

	.gold-support-cards__text {
		font-size: 13px;
		line-height: 1.45;
	}

	.gold-support-cards__subtitle {
		font-size: 16px;
	}
}

/** ================= Gold Why Cards ================= */

.gold-why-cards {
    padding-top: 50px;
	padding-bottom: 50px;
}

.gold-why-cards__title {
    margin: 0 0 50px;
    color: var(--primary);
    font-size: 40px;
    font-weight: 700;
}

.gold-why-cards__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 50px;
}

.gold-why-cards__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 37px 40px;
    border: 3px solid var(--primary);
    border-radius: var(--radius1);
    background: var(--white);
    text-align: center;
}

.gold-why-cards__card-title {
    margin: 0 0 20px;
    color: #000000;
    font-size: 16px;
    font-weight: 700;
}

.gold-why-cards__text {
    margin: 0;
    color: var(--secondary);
    font-size: 16px;
    font-weight: 500;
}

@media (max-width: 1536px) {
	.gold-why-cards__grid {
		gap: 26px 36px;
	}

	.gold-why-cards__title {
		font-size: 38px;
	}
}

@media (max-width: 1280px) {
	.gold-why-cards {
		padding-top: 40px;
		padding-bottom: 40px;
	}

	.gold-why-cards__title {
		margin-bottom: 40px;
		font-size: 34px;
	}

	.gold-why-cards__grid {
		gap: 24px;
	}

	.gold-why-cards__item {
		padding: 30px 24px;
	}

	.gold-why-cards__card-title {
		font-size: 18px;
		line-height: 1.4;
	}

	.gold-why-cards__text {
		font-size: 15px;
		line-height: 1.5;
	}
}

@media (max-width: 1024px) {
	.gold-why-cards__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}

	.gold-why-cards__item {
		padding: 28px 20px;
	}

	.gold-why-cards__card-title {
		margin-bottom: 16px;
		font-size: 17px;
	}

	.gold-why-cards__text {
		font-size: 14px;
	}
}

@media (max-width: 768px) {
	.gold-why-cards {
		padding-top: 32px;
		padding-bottom: 32px;
	}

	.gold-why-cards__title {
		margin-bottom: 28px;
		font-size: 28px;
		line-height: 1.3;
		text-align: center;
	}

	.gold-why-cards__grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.gold-why-cards__item {
		max-width: 520px;
		width: 100%;
		margin: 0 auto;
		padding: 24px 20px;
		border-width: 2px;
		border-radius: 20px;
	}

	.gold-why-cards__card-title {
		margin-bottom: 14px;
		font-size: 16px;
		line-height: 1.4;
	}

	.gold-why-cards__text {
		font-size: 14px;
		line-height: 1.55;
	}
}

@media (max-width: 540px) {
	.gold-why-cards {
		padding-top: 28px;
		padding-bottom: 28px;
	}

	.gold-why-cards__title {
		margin-bottom: 22px;
		font-size: 24px;
	}

	.gold-why-cards__grid {
		gap: 14px;
	}

	.gold-why-cards__item {
		padding: 22px 16px;
		border-radius: 18px;
	}

	.gold-why-cards__card-title {
		font-size: 15px;
	}

	.gold-why-cards__text {
		font-size: 13px;
		line-height: 1.5;
	}
}

@media (max-width: 440px) {
	.gold-why-cards {
		padding-top: 24px;
		padding-bottom: 24px;
	}

	.gold-why-cards__title {
		margin-bottom: 18px;
		font-size: 21px;
	}

	.gold-why-cards__grid {
		gap: 12px;
	}

	.gold-why-cards__item {
		padding: 20px 14px;
		border-radius: 16px;
	}

	.gold-why-cards__card-title {
		margin-bottom: 12px;
		font-size: 14px;
	}

	.gold-why-cards__text {
		font-size: 12px;
		line-height: 1.45;
	}
}

/** ================= Gold Progress Cards ================= */

.gold-progress-cards {
    padding-top: 50px;
	padding-bottom: 50px;
    background-color: var(--primary);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.gold-progress-cards__title {
    margin: 0 0 50px;
    color: var(--white);
    font-size: 36px;
    font-weight: 700;
}

.gold-progress-cards__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 50px;
}

.gold-progress-cards__item {
    padding: 38px 31px;
    border-radius: var(--radius2);
    background: var(--white);
    color: var(--secondary);
    text-align: center;
}

.gold-progress-cards__item .gold-progress-cards__icon {
    width: 100px;
    height: auto;
    display: block;
    object-fit: contain;
    margin: 0 auto 30px;
	filter: brightness(0);
}

.gold-progress-cards__card-title {
    margin: 0 0 30px;
    color: #000000;
    font-size: 20px;
    font-weight: 600;
}

.gold-progress-cards__text {
    margin: 0;
    color: #000000;
    font-size: 16px;
    font-weight: 500;
}

@media (max-width: 1536px) {
	.gold-progress-cards__grid {
		gap: 26px 36px;
	}

	.gold-progress-cards__title {
		font-size: 34px;
	}
}

@media (max-width: 1280px) {
	.gold-progress-cards {
		padding-top: 40px;
		padding-bottom: 40px;
	}

	.gold-progress-cards__title {
		margin-bottom: 40px;
		font-size: 30px;
	}

	.gold-progress-cards__grid {
		gap: 24px;
	}

	.gold-progress-cards__item {
		padding: 30px 24px;
	}

	.gold-progress-cards__item .gold-progress-cards__icon {
		width: 86px;
		margin-bottom: 24px;
	}

	.gold-progress-cards__card-title {
		margin-bottom: 20px;
		font-size: 18px;
	}

	.gold-progress-cards__text {
		font-size: 15px;
		line-height: 1.5;
	}
}

@media (max-width: 1024px) {
	.gold-progress-cards__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}

	.gold-progress-cards__item {
		padding: 28px 20px;
	}

	.gold-progress-cards__item .gold-progress-cards__icon {
		width: 76px;
	}

	.gold-progress-cards__card-title {
		font-size: 17px;
	}

	.gold-progress-cards__text {
		font-size: 14px;
	}
}

@media (max-width: 768px) {
	.gold-progress-cards {
		padding-top: 32px;
		padding-bottom: 32px;
	}

	.gold-progress-cards__title {
		margin-bottom: 28px;
		font-size: 26px;
		line-height: 1.3;
		text-align: center;
	}

	.gold-progress-cards__grid {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.gold-progress-cards__item,
	.gold-progress-cards__item:last-child {
		max-width: 520px;
		width: 100%;
		margin: 0 auto;
		padding: 26px 22px;
		border-radius: 20px;
	}

	.gold-progress-cards__item .gold-progress-cards__icon {
		width: 70px;
		margin-bottom: 18px;
	}

	.gold-progress-cards__card-title {
		margin-bottom: 14px;
		font-size: 16px;
		line-height: 1.4;
	}

	.gold-progress-cards__text {
		font-size: 14px;
		line-height: 1.55;
	}
}

@media (max-width: 540px) {
	.gold-progress-cards {
		padding-top: 28px;
		padding-bottom: 28px;
	}

	.gold-progress-cards__title {
		margin-bottom: 22px;
		font-size: 23px;
	}

	.gold-progress-cards__grid {
		gap: 14px;
	}

	.gold-progress-cards__item {
		padding: 22px 18px;
		border-radius: 18px;
	}

	.gold-progress-cards__item .gold-progress-cards__icon {
		width: 60px;
		margin-bottom: 16px;
	}

	.gold-progress-cards__card-title {
		font-size: 15px;
	}

	.gold-progress-cards__text {
		font-size: 13px;
		line-height: 1.5;
	}
}

@media (max-width: 440px) {
	.gold-progress-cards {
		padding-top: 24px;
		padding-bottom: 24px;
	}

	.gold-progress-cards__title {
		margin-bottom: 18px;
		font-size: 20px;
	}

	.gold-progress-cards__grid {
		gap: 12px;
	}

	.gold-progress-cards__item {
		padding: 20px 14px;
		border-radius: 16px;
	}

	.gold-progress-cards__item .gold-progress-cards__icon {
		width: 52px;
		margin-bottom: 14px;
	}

	.gold-progress-cards__card-title {
		margin-bottom: 10px;
		font-size: 14px;
	}

	.gold-progress-cards__text {
		font-size: 12px;
		line-height: 1.45;
	}
}

/** ================= Gold Role Cards ================= */

.gold-role-cards {
    padding-top: 50px;
	padding-bottom: 50px;
}

.gold-role-cards__title {
    margin: 0 0 50px;
    color: #9f0000;
    font-size: 36px;
    font-weight: 700;
}

.gold-role-cards__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

.gold-role-cards__item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 38px 61px;
    border: 3px solid var(--primary);
    border-radius: var(--radius1);
    background: var(--white);
    color: var(--secondary);
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    box-shadow: var(--box-shadow);
}

@media (max-width: 1536px) {
	.gold-role-cards__grid {
		gap: 36px;
	}

	.gold-role-cards__title {
		font-size: 34px;
	}
}

@media (max-width: 1280px) {
	.gold-role-cards {
		padding-top: 40px;
		padding-bottom: 40px;
	}

	.gold-role-cards__title {
		margin-bottom: 40px;
		font-size: 30px;
	}

	.gold-role-cards__grid {
		gap: 24px;
	}

	.gold-role-cards__item {
		padding: 30px 28px;
		font-size: 15px;
		line-height: 1.5;
	}
}

@media (max-width: 1024px) {
	.gold-role-cards__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}

	.gold-role-cards__item:last-child {
		grid-column: 1 / -1;
		max-width: 520px;
		width: 100%;
		margin: 0 auto;
	}

	.gold-role-cards__item {
		padding: 28px 22px;
	}
}

@media (max-width: 768px) {
	.gold-role-cards {
		padding-top: 32px;
		padding-bottom: 32px;
	}

	.gold-role-cards__title {
		margin-bottom: 28px;
		font-size: 26px;
		line-height: 1.3;
		text-align: center;
	}

	.gold-role-cards__grid {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.gold-role-cards__item,
	.gold-role-cards__item:last-child {
		max-width: 520px;
		width: 100%;
		margin: 0 auto;
		padding: 24px 20px;
		border-width: 2px;
		border-radius: 20px;
		font-size: 15px;
		line-height: 1.55;
	}
}

@media (max-width: 540px) {
	.gold-role-cards {
		padding-top: 28px;
		padding-bottom: 28px;
	}

	.gold-role-cards__title {
		margin-bottom: 22px;
		font-size: 23px;
	}

	.gold-role-cards__grid {
		gap: 14px;
	}

	.gold-role-cards__item {
		padding: 22px 16px;
		border-radius: 18px;
		font-size: 14px;
	}
}

@media (max-width: 440px) {
	.gold-role-cards {
		padding-top: 24px;
		padding-bottom: 24px;
	}

	.gold-role-cards__title {
		margin-bottom: 18px;
		font-size: 20px;
	}

	.gold-role-cards__grid {
		gap: 12px;
	}

	.gold-role-cards__item {
		padding: 20px 14px;
		border-radius: 16px;
		font-size: 13px;
		line-height: 1.45;
	}
}

/** ================= Microloans Advantage Cards ================= */

.microloans-advantage-cards {
    display: flex;
    align-items: center;
    background-color: var(--primary);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
	padding-top: 50px;
	padding-bottom: 50px;
}

.microloans-advantage-cards__inner {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    align-items: center;
    gap: 50px;
}

.microloans-advantage-cards__title {
    margin: 0 0 50px;
    color: var(--white);
    font-size: 36px;
    font-weight: 700;
}

.microloans-advantage-cards__list {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.microloans-advantage-cards__item {
    display: flex;
    align-items: center;
    gap: 50px;
    color: var(--white);
}

.microloans-advantage-cards__number {
    width: 70px;
    height: 70px;
    flex: 0 0 70px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--white);
    border-radius: 50%;
    color: var(--white);
    font-size: 48px;
    font-weight: 700;
}

.microloans-advantage-cards__text {
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
}

.microloans-advantage-cards__image-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
}

.microloans-advantage-cards__image-wrap .microloans-advantage-cards__image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

@media (max-width: 1536px) {
	.microloans-advantage-cards__inner {
		gap: 40px;
	}

	.microloans-advantage-cards__title {
		font-size: 34px;
	}

	.microloans-advantage-cards__text {
		font-size: 22px;
	}
}

@media (max-width: 1280px) {
	.microloans-advantage-cards {
		padding-top: 40px;
		padding-bottom: 40px;
	}

	.microloans-advantage-cards__inner {
		grid-template-columns: 1fr 1fr;
		gap: 35px;
	}

	.microloans-advantage-cards__title {
		margin-bottom: 40px;
		font-size: 30px;
	}

	.microloans-advantage-cards__list {
		gap: 35px;
	}

	.microloans-advantage-cards__item {
		gap: 30px;
	}

	.microloans-advantage-cards__number {
		width: 60px;
		height: 60px;
		flex: 0 0 60px;
		font-size: 40px;
	}

	.microloans-advantage-cards__text {
		font-size: 20px;
	}
}

@media (max-width: 1024px) {
	.microloans-advantage-cards__inner {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.microloans-advantage-cards__content {
		order: 1;
	}

	.microloans-advantage-cards__image-wrap {
		order: 2;
		max-width: 650px;
		margin: 0 auto;
	}

	.microloans-advantage-cards__title {
		text-align: center;
	}

	.microloans-advantage-cards__list {
		max-width: 700px;
		margin: 0 auto;
	}
}

@media (max-width: 768px) {
	.microloans-advantage-cards {
		padding-top: 32px;
		padding-bottom: 32px;
	}

	.microloans-advantage-cards__title {
		margin-bottom: 30px;
		font-size: 26px;
		line-height: 1.3;
		text-align: center;
	}

	.microloans-advantage-cards__list {
		gap: 25px;
	}

	.microloans-advantage-cards__item {
		gap: 20px;
	}

	.microloans-advantage-cards__number {
		width: 54px;
		height: 54px;
		flex: 0 0 54px;
		font-size: 32px;
		border-width: 2px;
	}

	.microloans-advantage-cards__text {
		font-size: 18px;
		line-height: 1.4;
	}

	.microloans-advantage-cards__image-wrap {
		max-width: 520px;
	}
}

@media (max-width: 540px) {
	.microloans-advantage-cards {
		padding-top: 28px;
		padding-bottom: 28px;
	}

	.microloans-advantage-cards__title {
		margin-bottom: 24px;
		font-size: 22px;
	}

	.microloans-advantage-cards__list {
		gap: 20px;
	}

	.microloans-advantage-cards__item {
		gap: 16px;
		align-items: flex-start;
	}

	.microloans-advantage-cards__number {
		width: 46px;
		height: 46px;
		flex: 0 0 46px;
		font-size: 26px;
	}

	.microloans-advantage-cards__text {
		font-size: 16px;
	}

	.microloans-advantage-cards__image-wrap {
		max-width: 420px;
	}

    .microloans-advantage-cards__image-wrap {
		order: 1;
	}

	.microloans-advantage-cards__content {
		order: 2;
	}
}

@media (max-width: 440px) {
	.microloans-advantage-cards {
		padding-top: 24px;
		padding-bottom: 24px;
	}

	.microloans-advantage-cards__title {
		font-size: 20px;
		margin-bottom: 20px;
	}

	.microloans-advantage-cards__item {
		gap: 14px;
	}

	.microloans-advantage-cards__number {
		width: 42px;
		height: 42px;
		flex: 0 0 42px;
		font-size: 22px;
	}

	.microloans-advantage-cards__text {
		font-size: 15px;
		line-height: 1.4;
	}
}

/** ================= Technik Banner ================= */

.technik-banner {
    display: flex;
    align-items: center;
    padding-top: 50px;
	padding-bottom: 50px;
    background-color: var(--primary);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.technik-banner__inner {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 50px;
}

.technik-banner__title {
    margin: 0 0 50px;
    color: var(--white);
    font-size: 36px;
    font-weight: 700;
}

.technik-banner__text {
    color: var(--white);
    font-size: 20px;
    font-weight: 600;
}

.technik-banner__image-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
}

.technik-banner__image-wrap .technik-banner__image {
    width: 100%;
	height: auto;
    display: block;
    object-fit: contain;
}

@media (max-width: 1536px) {
	.technik-banner__inner {
		gap: 40px;
	}

	.technik-banner__title {
		margin-bottom: 40px;
		font-size: 34px;
	}

	.technik-banner__text {
		font-size: 19px;
		line-height: 1.45;
	}
}

@media (max-width: 1280px) {
	.technik-banner {
		padding-top: 40px;
		padding-bottom: 40px;
	}

	.technik-banner__inner {
		grid-template-columns: 1.15fr 0.85fr;
		gap: 30px;
	}

	.technik-banner__title {
		margin-bottom: 30px;
		font-size: 30px;
	}

	.technik-banner__text {
		font-size: 18px;
		line-height: 1.5;
	}

	.technik-banner__image-wrap .technik-banner__image {
		max-width: 430px;
	}
}

@media (max-width: 1024px) {
	.technik-banner__inner {
		grid-template-columns: 1fr;
		gap: 25px;
	}

    .technik-banner__image-wrap {
		order: -1;
	}

	.technik-banner__title {
		margin-bottom: 24px;
		font-size: 28px;
	}

	.technik-banner__text {
		font-size: 16px;
	}

	.technik-banner__image-wrap .technik-banner__image {
		max-width: 360px;
	}
}

@media (max-width: 768px) {
	.technik-banner {
		padding-top: 32px;
		padding-bottom: 32px;
	}

	.technik-banner__inner {
		gap: 28px;
	}

	.technik-banner__content {
		text-align: center;
	}

	.technik-banner__title {
		margin-bottom: 20px;
		font-size: 26px;
		line-height: 1.25;
	}

	.technik-banner__text {
		font-size: 15px;
		line-height: 1.55;
	}

	.technik-banner__image-wrap .technik-banner__image {
		max-width: 330px;
	}
}

@media (max-width: 540px) {
	.technik-banner {
		padding-top: 28px;
		padding-bottom: 28px;
	}

	.technik-banner__inner {
		gap: 22px;
	}

	.technik-banner__title {
		margin-bottom: 16px;
		font-size: 23px;
	}

	.technik-banner__text {
		font-size: 14px;
		line-height: 1.6;
	}

	.technik-banner__image-wrap .technik-banner__image {
		max-width: 270px;
	}
}

@media (max-width: 440px) {
	.technik-banner {
		padding-top: 24px;
		padding-bottom: 24px;
	}

	.technik-banner__title {
		font-size: 21px;
	}

	.technik-banner__text {
		font-size: 13px;
		line-height: 1.65;
	}

	.technik-banner__image-wrap .technik-banner__image {
		max-width: 230px;
	}
}

/** ================= Technik Info Cards ================= */

.technik-info-cards__top {
    padding-top: 50px;
	padding-bottom: 50px;
    background: var(--white);
}

.technik-info-cards__top-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

.technik-info-cards__top-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 19px 55px;
    border-radius: var(--radius2);
    background: var(--white);
    color: var(--secondary);
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    box-shadow: var(--box-shadow);
}

.technik-info-cards__bottom {
    padding-top: 50px;
	padding-bottom: 50px;
    background-color: var(--primary);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.technik-info-cards__bottom-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

.technik-info-cards__bottom-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px 34px;
    border-radius: var(--radius2);
    background: var(--white);
    color: var(--primary);
    text-align: center;
}

.technik-info-cards__bottom-title {
    margin: 0 0 30px;
    color: var(--primary);
    font-size: 20px;
    font-weight: 600;
}

.technik-info-cards__bottom-text {
    margin: 0;
    color: var(--primary);
    font-size: 16px;
    font-weight: 600;
}

@media (max-width: 1536px) {
	.technik-info-cards__top-grid,
	.technik-info-cards__bottom-grid {
		gap: 40px;
	}

	.technik-info-cards__top-item {
		padding: 18px 42px;
	}

	.technik-info-cards__bottom-item {
		padding: 28px 30px;
	}
}

@media (max-width: 1280px) {
	.technik-info-cards__top,
	.technik-info-cards__bottom {
		padding-top: 40px;
		padding-bottom: 40px;
	}

	.technik-info-cards__top-grid,
	.technik-info-cards__bottom-grid {
		gap: 28px;
	}

	.technik-info-cards__top-item {
		padding: 18px 28px;
	}

	.technik-info-cards__bottom-title {
		font-size: 18px;
	}

	.technik-info-cards__bottom-text {
		font-size: 15px;
	}
}

@media (max-width: 1024px) {
	.technik-info-cards__top-grid,
	.technik-info-cards__bottom-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 24px;
	}

	.technik-info-cards__top-item:last-child,
	.technik-info-cards__bottom-item:last-child {
		grid-column: 1 / -1;
		max-width: 520px;
		width: 100%;
		margin: 0 auto;
	}
}

@media (max-width: 768px) {
	.technik-info-cards__top,
	.technik-info-cards__bottom {
		padding-top: 32px;
		padding-bottom: 32px;
	}

	.technik-info-cards__top-grid,
	.technik-info-cards__bottom-grid {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.technik-info-cards__top-item,
	.technik-info-cards__bottom-item,
	.technik-info-cards__top-item:last-child,
	.technik-info-cards__bottom-item:last-child {
		max-width: 520px;
		width: 100%;
		margin: 0 auto;
	}

	.technik-info-cards__top-item {
		min-height: 74px;
		padding: 18px 24px;
		font-size: 15px;
	}

	.technik-info-cards__bottom-item {
		padding: 26px 24px;
		border-radius: 20px;
	}

	.technik-info-cards__bottom-title {
		margin-bottom: 18px;
		font-size: 18px;
		line-height: 1.3;
	}

	.technik-info-cards__bottom-text {
		font-size: 15px;
		line-height: 1.5;
	}
}

@media (max-width: 540px) {
	.technik-info-cards__top,
	.technik-info-cards__bottom {
		padding-top: 28px;
		padding-bottom: 28px;
	}

	.technik-info-cards__top-grid,
	.technik-info-cards__bottom-grid {
		gap: 16px;
	}

	.technik-info-cards__top-item {
		min-height: auto;
		padding: 16px 18px;
		font-size: 14px;
		border-radius: 18px;
	}

	.technik-info-cards__bottom-item {
		padding: 22px 18px;
		border-radius: 18px;
	}

	.technik-info-cards__bottom-title {
		margin-bottom: 14px;
		font-size: 16px;
	}

	.technik-info-cards__bottom-text {
		font-size: 14px;
	}
}

@media (max-width: 440px) {
	.technik-info-cards__top,
	.technik-info-cards__bottom {
		padding-top: 24px;
		padding-bottom: 24px;
	}

	.technik-info-cards__top-grid,
	.technik-info-cards__bottom-grid {
		gap: 14px;
	}

	.technik-info-cards__top-item {
		padding: 14px 16px;
		font-size: 13px;
	}

	.technik-info-cards__bottom-item {
		padding: 20px 16px;
	}

	.technik-info-cards__bottom-title {
		font-size: 15px;
	}

	.technik-info-cards__bottom-text {
		font-size: 13px;
		line-height: 1.55;
	}
}

/** ================= Technik Safe Cards ================= */

.technik-safe-cards {
    padding-bottom: 50px;
}

.technik-safe-cards__top {
    padding-top: 50px;
	padding-bottom: 50px;
    background: var(--white);
}

.technik-safe-cards__title {
    margin: 0 0 50px;
    color: var(--primary);
    font-size: 36px;
    font-weight: 700;
}

.technik-safe-cards__intro {
    margin: 0 0 50px;
    color: var(--secondary);
    font-size: 20px;
    font-weight: 600;
}

.technik-safe-cards__intro p {
    margin: 0 0 16px;
}

.technik-safe-cards__intro p:last-child {
    margin-bottom: 0;
}

.technik-safe-cards__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

.technik-safe-cards__card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px 33px;
    border: 5px solid var(--primary);
    border-radius: var(--radius2);
    background: var(--white);
    color: var(--secondary);
    text-align: center;
}

.technik-safe-cards__card-title {
    margin: 0 0 30px;
    color: var(--secondary);
    font-size: 20px;
    font-weight: 600;
}

.technik-safe-cards__card-text {
    margin: 0;
    color: var(--secondary);
    font-size: 16px;
    font-weight: 600;
}

.technik-safe-cards__bottom {
    padding-top: 50px;
	padding-bottom: 50px;
    background-color: var(--primary);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.technik-safe-cards__bottom-title {
    margin: 0 0 30px;
    color: var(--white);
    font-size: 36px;
    font-weight: 700;
}

.technik-safe-cards__bottom-text {
    color: var(--white);
    font-size: 20px;
    font-weight: 600;
}

.technik-safe-cards__bottom-text p {
    margin: 0 0 16px;
}

.technik-safe-cards__bottom-text p:last-child {
    margin-bottom: 0;
}

@media (max-width: 1536px) {
	.technik-safe-cards__grid {
		gap: 40px;
	}

	.technik-safe-cards__title,
	.technik-safe-cards__bottom-title {
		font-size: 34px;
	}

	.technik-safe-cards__card {
		padding: 42px 28px;
	}
}

@media (max-width: 1280px) {
	.technik-safe-cards__top,
	.technik-safe-cards__bottom {
		padding-top: 40px;
		padding-bottom: 40px;
	}

	.technik-safe-cards__title {
		margin-bottom: 35px;
		font-size: 30px;
	}

	.technik-safe-cards__intro {
		margin-bottom: 35px;
		font-size: 18px;
		line-height: 1.5;
	}

	.technik-safe-cards__grid {
		gap: 28px;
	}

	.technik-safe-cards__card {
		padding: 34px 24px;
		border-width: 4px;
	}

	.technik-safe-cards__bottom-title {
		font-size: 30px;
	}

	.technik-safe-cards__bottom-text {
		font-size: 18px;
		line-height: 1.5;
	}
}

@media (max-width: 1024px) {
	.technik-safe-cards__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 24px;
	}

	.technik-safe-cards__card:last-child {
		grid-column: 1 / -1;
		max-width: 520px;
		width: 100%;
		margin: 0 auto;
	}

	.technik-safe-cards__card-title {
		font-size: 18px;
	}

	.technik-safe-cards__card-text {
		font-size: 15px;
	}
}

@media (max-width: 768px) {
	.technik-safe-cards {
		padding-bottom: 32px;
	}

	.technik-safe-cards__top,
	.technik-safe-cards__bottom {
		padding-top: 32px;
		padding-bottom: 32px;
	}

	.technik-safe-cards__title {
		margin-bottom: 24px;
		font-size: 26px;
		line-height: 1.25;
	}

	.technik-safe-cards__intro {
		margin-bottom: 28px;
		font-size: 16px;
		line-height: 1.55;
	}

	.technik-safe-cards__grid {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.technik-safe-cards__card,
	.technik-safe-cards__card:last-child {
		max-width: 520px;
		width: 100%;
		margin: 0 auto;
		padding: 28px 22px;
		border-width: 3px;
		border-radius: 20px;
	}

	.technik-safe-cards__card-title {
		margin-bottom: 18px;
		font-size: 17px;
		line-height: 1.35;
	}

	.technik-safe-cards__card-text {
		font-size: 14px;
		line-height: 1.5;
	}

	.technik-safe-cards__bottom-title {
		margin-bottom: 22px;
		font-size: 26px;
		line-height: 1.25;
	}

	.technik-safe-cards__bottom-text {
		font-size: 16px;
		line-height: 1.55;
	}
}

@media (max-width: 540px) {
	.technik-safe-cards {
		padding-bottom: 28px;
	}

	.technik-safe-cards__top,
	.technik-safe-cards__bottom {
		padding-top: 28px;
		padding-bottom: 28px;
	}

	.technik-safe-cards__title,
	.technik-safe-cards__bottom-title {
		font-size: 23px;
	}

	.technik-safe-cards__intro,
	.technik-safe-cards__bottom-text {
		font-size: 15px;
	}

	.technik-safe-cards__card {
		padding: 24px 18px;
		border-radius: 18px;
	}

	.technik-safe-cards__card-title {
		margin-bottom: 14px;
		font-size: 16px;
	}

	.technik-safe-cards__card-text {
		font-size: 13px;
	}
}

@media (max-width: 440px) {
	.technik-safe-cards {
		padding-bottom: 24px;
	}

	.technik-safe-cards__top,
	.technik-safe-cards__bottom {
		padding-top: 24px;
		padding-bottom: 24px;
	}

	.technik-safe-cards__title,
	.technik-safe-cards__bottom-title {
		font-size: 21px;
	}

	.technik-safe-cards__intro,
	.technik-safe-cards__bottom-text {
		font-size: 14px;
		line-height: 1.6;
	}

	.technik-safe-cards__grid {
		gap: 14px;
	}

	.technik-safe-cards__card {
		padding: 22px 16px;
		border-width: 2px;
	}

	.technik-safe-cards__card-title {
		font-size: 15px;
	}

	.technik-safe-cards__card-text {
		font-size: 13px;
	}
}

/** ================= Microloans Credit Info ================= */

.microloans-credit-info {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 50px;
    padding-bottom: 50px;
}

.microloans-credit-info > .container {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.microloans-credit-info__title {
    font-size: 32px;
    font-weight: 700;
    margin: 0;
    color: var(--primary);
}

.microloans-credit-info__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 30px;
}

.microloans-credit-info__card {
    background: var(--white);
    padding: 32px 40px;
    border-radius: 20px;
    border: 1px solid #0000001A;
    box-shadow: 0 4px 30px 0 #00000040;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 30px;
}

.microloans-credit-info__card svg {
    width: 50px;
    min-width: 50px;
    height: auto;
}

.microloans-credit-info__card-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
}

.microloans-credit-info__card-title {
    font-size: 24px;
    font-weight: 700;
}

.microloans-credit-info__card-description {
    font-size: 20px;
    font-weight: 500;
}

.microloans-credit-info__bottom-text {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    color: var(--secondary);
}

@media screen and (max-width: 1024px) {
	/*  */
    .microloans-credit-info__title {
        font-size: 20px;
    }

    .microloans-credit-info__card-title {
        font-size: 20px;
    }

    .microloans-credit-info__card-description {
        font-size: 20px;
    }

    .microloans-credit-info__card svg {
        width: 35px;
        min-width: 35px;
    }

    .microloans-credit-info__bottom-text {
        font-size: 20px;
    }

	.microloans-credit-info {
		padding-bottom: 30px;
	}

	.microloans-credit-info__bottom-text {
        margin-top: 30px;
    }
}

@media screen and (max-width: 1024px) {
	/*  */
    .microloans-credit-info__title {
        font-size: 18px;
    }

    .microloans-credit-info__card {
        padding: 18px 25px;
    }

    .microloans-credit-info__grid {
        gap: 20px;
    }

    .microloans-credit-info__card-title {
        font-size: 16px;
    }

    .microloans-credit-info__card-description {
        font-size: 14px;
    }

    .microloans-credit-info__card svg {
        width: 25px;
        min-width: 25px;
    }

    .microloans-credit-info__card {
        gap: 15px;
    }

    .microloans-credit-info__bottom-text {
        font-size: 16px;
    }

    .microloans-credit-info {
        gap: 35px;
        padding-bottom: 60px;
    }

    .microloans-credit-info__card-content {
        gap: 10px;
    }
}

@media screen and (max-width: 768px) {
	/*  */
    .microloans-credit-info__grid {
        grid-template-columns: 1fr;
    }

    .microloans-credit-info__card {
        padding: 8px 18px;
    }
}

@media screen and (max-width: 540px) {
	.microloans-credit-info {
        padding-bottom: 40px;
    }

	.microloan-credit-info .microloans-credit-info__bottom-text {
        margin-top: 40px;
        font-size: 14px;
    }
}

/** ================= Microloans Credit Questions ================= */

.microloans-credit-questions {
    width: 100%;
    color: var(--secondary);
    padding-bottom: 50px;
}

.microloans-credit-questions > .container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.microloans-credit-questions * {
    box-sizing: border-box;
}

.microloans-credit-questions__card {
    background: var(--primary);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 30px 0 #00000040;
}

.microloans-credit-questions__card-header {
    padding: 23px 50px 23px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.microloans-credit-questions__card-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
}

.microloans-credit-questions__card-button {
    border: none;
    border-radius: 20px;
    padding: 10px 92px;
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    background: var(--white);
    cursor: pointer;
    box-shadow: 0 4px 30px 0 #00000040;
    transition: all .15s ease;
}

.microloans-credit-questions__card-button:hover {
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 14px 30px #2a292940;
    background: #690101;
}

/* === ТЕЛО АККОРДИОНА С АНИМАЦИЕЙ === */

.microloans-credit-questions__card-body {
    overflow: hidden;
    max-height: 0;
    transition: max-height .35s ease;
}

.microloans-credit-questions__card-body-inner {
    padding: 0 28px 0;
    transition: padding .35s ease;
}

.microloans-credit-questions__card--active
.microloans-credit-questions__card-body-inner {
    padding-top: 30px;
    padding-bottom: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}


.microloans-credit-questions__card--active {
    box-shadow: 0 22px 52px rgba(0, 0, 0, 0.18);
}

/* === ТИТУЛЬНИК ВНУТРИ КАЖДОГО РАЗДЕЛА (если используешь h2) === */

.microloans-credit-questions__section-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 18px;
}

/* ============================================= */
/* === НИЖЕ — СТИЛИ ДЛЯ ВНУТРЕННЕГО КОНТЕНТА === */
/* (таблица тарифов, калькулятор, списки, ставки) */
/* ============================================= */

/* Общая карточка внутри (белые блоки на сером фоне аккордеона) */

.mcq-card {
    background: var(--white);
    border-radius: 20px;
    padding: 30px 50px;
    box-shadow: 0 4px 30px 0 #00000040;
    margin-bottom: 30px;
}

.mcq-card:last-child {
    margin-bottom: 0;
}

.mcq-banner {
    width: 90%;
    background: var(--white);
    color: var(--primary);
    border-radius: 20px;
    padding: 22px 36px;
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 80px;
    border: 1px solid #0000001A;
    box-shadow: 0 4px 30px 0 #00000040;
}

/* === Таблица "Компонент / Размер / Описание" === */

.mcq-card--table {
    padding-top: 20px;
    padding-bottom: 0;
}

.mcq-table {
    width: 100%;
}

.mcq-table__header-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 20px;
    margin-bottom: 30px;
}

.mcq-table__row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 20px;
    padding-bottom: 20px;
}

.mcq-table__cell {
    font-size: 16px;
    font-weight: 500;
}

.mcq-table__cell--head {
    font-size: 24px;
    font-weight: 700;
}

.mcq-card--table > div > div:nth-of-type(1) {
    text-align: left;
}

.mcq-card--table > div > div:nth-of-type(2) {
    text-align: center;
}

.mcq-card--table > div > div:nth-of-type(3) {
    text-align: right;
}

.mcq-card--table > div:not(.mcq-table__header-row) > div:nth-of-type(3) {
    color: #26981A;
}

/* === Калькулятор === */

.mcq-card--calc {
    padding-top: 30px;
    padding-bottom: 30px;
}

.mcq-calc-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 25px;
}

.mcq-calc-block__header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 30px;
    font-size: 16px;
    font-weight: 500;
}

.mcq-calc-block__label {
    color: var(--seconday);
}

.mcq-calc-block__span {
    color: #BCBCBC;
}

.mcq-input-wrapper {
    margin-bottom: 30px;
}

.mcq-input-wrapper > .mcq-input {
    width: 100%;
    border-radius: 10px;
    padding: 14px 20px;
    font-size: 16px;
    font-weight: 500;
    color: var(--white);
    outline: none;
    background-color: var(--primary);
    border: none;
}

.mcq-input-wrapper > .mcq-input::placeholder {
    color: var(--white)!important;
}

.mcq-input-wrapper > .mcq-input:focus {
    color: var(--white);
}

.mcq-input::-webkit-outer-spin-button,
.mcq-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.mcq-input[type=number] {
    -moz-appearance: textfield;
}

/* Range + значение */

.mcq-range-row {
    display: grid;
    grid-template-columns: 1fr 0.3fr;
    align-items: center;
    gap: 50px;
}

.mcq-range-row > .mcq-range {
    flex: 1;
    -webkit-appearance: none;
    appearance: none;
    height: 6px;
    border-radius: 999px;
    background: #BCBCBC;
    outline: none;
    margin: 10px 0;
}

.mcq-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary);
    cursor: pointer;
}
.mcq-range::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary);
    cursor: pointer;
}

.mcq-range__value {
    text-align: right;
    font-size: 16px;
    font-weight: 500;
    color: #BCBCBC;
}

/* Режим расчёта */

.mcq-mode-card {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
}

.mcq-mode-button {
    flex: 1;
    border-radius: 16px;
    border: 1px solid var(--primary);
    background: var(--white);
    padding: 14px 20px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background .18s ease, color .18s ease, box-shadow .18s ease;
    text-align: left;
}

.mcq-mode-button--active {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 8px 20px rgba(3, 89, 199, 0.5);
}

/* Результаты */

.mcq-result-card {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px 30px;
}

.mcq-result-card__item {
    display: flex;
    gap: 6px;
    font-size: 24px;
    font-weight: 700;
    color: var(--seconday);
}

.mcq-result-card__label {
    white-space: nowrap;
}

/* === Списки для 2 и 3 блока (галочка + текст) === */

.mcq-card--list {
    padding: 0;
    margin-bottom: 50px;
    border-radius: 0;
    box-shadow: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    background: transparent;
}

.mcq-list-item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 32px 40px;
    border: 1px solid #0000001A;
    box-shadow: 0 4px 30px 0 #00000040;
    border-radius: 20px;
    gap: 30px;
    background: var(--white);
}

.mcq-list-item__icon svg{
    width: 100%;
    height: auto;
}

.mcq-list-item__block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
}

.mcq-list-item__title {
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary);
}

.mcq-list-item__text {
    font-size: 20px;
    font-weight: 500;
    color: var(--secondary);
}

.mcq-list__bottom-text {
    padding: 22px 120px;
    border-radius: 20px;
    color: var(--secondary);
    font-size: 24px;
    font-weight: 700;
    box-shadow: 0 4px 30px 0 #00000040;
    border: 1px solid #0000001A;
    text-align: center;
    background: var(--white);
}

/* === Таблицы "Процентная ставка" === */

.mcq-card--tabs {
    box-shadow: none;
    border-radius: 0;
    padding: 0;
    background: transparent;
}

.mcq-tabs {
    display: inline-flex;
    background: #f2f2f2;
    border-radius: 20px;
    padding: 10px;
    margin-bottom: 50px;
}

.mcq-tabs__button {
    border: none;
    border-radius: 20px;
    padding: 17px 57px;
    font-size: 24px;
    font-weight: 700;
    background: transparent;
    color: #555555;
    cursor: pointer;
    transition: background .16s ease, box-shadow .16s ease, color .16s ease;
}

.mcq-tabs__button--active {
    background: var(--white);
    color: var(--secondary);
    box-shadow: 0 4px 30px 0 #00000040;
}

.mcq-rate-table {
    display: none;
}

.mcq-rate-table--active {
    display: block;
}

.mcq-rate-table--active {
    display: block;
}

.mcq-rate-table__header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
}

.mcq-rate-table__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 15px 30px;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 4px 30px 0 #00000040;
    border: 1px solid #0000001A;
    margin-bottom: 10px;
    border-radius: 10px;
    background: var(--white);
}

.mcq-rate-table__cell--head {
    font-weight: 700;
}

.mcq-rate-table__cell--right {
    text-align: right;
}

.mcq-rate-table__cell--green {
    color: #26981A;
}

/* Подписи под таблицей */

.mcq-rate-note {
    margin-top: 30px;
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary);
    text-align: center;
    padding: 22px 36px;
    border-radius: 20px;
    background: var(--white);
    border: 1px solid #0000001A;
    box-shadow: 0 4px 30px 0 #00000040;
}

.mcq-rate-note--overdue {
    display: none;
}

@media screen and (max-width: 1280px) {
	/*  */
    .microloans-credit-questions__card-title {
        font-size: 20px;
    }

    .microloans-credit-questions__card-button{
        font-size: 16px;
    }

	.microloans-credit-questions {
        padding-bottom: 30px;
    }

	.mcq-table__cell--head,
    .mcq-result-card__item,
    .mcq-tabs__button,
    .mcq-rate-table__header,
    .mcq-rate-note,
    .mcq-list-item__title,
    .mcq-list__bottom-text  {
        font-size: 20px;
    }

	.mcq-banner {
        font-size: 16px;
    }

    .mcq-calc-block__header, 
    .mcq-mode-button,
    .mcq-input-wrapper > .mcq-input,
    .mcq-range__value,
    .mcq-table__cell {
        font-size: 14px;
    }

    .mcq-rate-table__row {
        font-size: 12px;
    }

    .mcq-list-item__icon svg {
        width: 35px;
        min-width: 35px;
    }
}

@media screen and (max-width: 1024px) {
	/*  */
    .microloans-credit-questions__card-title{
        font-size: 16px;
    }

    .microloans-credit-questions__card-button, .mcq-banner {
        font-size: 14px;
    }

    .microloans-credit-questions__card-button {
        padding: 10px 42px;
    }

	.mcq-table__cell--head, 
    .mcq-result-card__item, 
    .mcq-tabs__button, 
    .mcq-rate-table__header, 
    .mcq-rate-note, 
    .mcq-list-item__title, 
    .mcq-list__bottom-text {
        font-size: 16px;
    }

	.mcq-banner {
        font-size: 14px;
    }

	.mcq-calc-block__header, .mcq-mode-button, .mcq-input-wrapper > .mcq-input, .mcq-range__value, .mcq-table__cell {
        font-size: 12px;
    }

    .mcq-banner {
        padding: 15px 36px;
        margin: 0 auto 40px;
    }

    .mcq-card {
        margin-bottom: 20px;
        padding: 30px 20px;
    }

    .mcq-calc-block__header,
    .mcq-input-wrapper {
        margin-bottom: 15px;
    }

    .mcq-input-wrapper > .mcq-input,
    .mcq-mode-button {
        padding: 8px 12px;
    }

    .mcq-mode-card {
        margin-bottom: 30px;
    }

    .mcq-card--tabs {
        padding: 0!important;
    }

    .mcq-tabs__button,
    .mcq-rate-note {
        padding: 8px 16px;
    }

    .mcq-tabs {
        margin-bottom: 20px;
    }

    .mcq-rate-table__header {
        margin-bottom: 10px;
    }

    .mcq-rate-table__row {
        padding: 8px 16px;
        margin-bottom: 5px;
    }

    .mcq-rate-note {
        margin-top: 10px;
    }

    .mcq-card--list {
        padding: 0!important;
    }

    .mcq-list-item__icon svg {
        width: 25px;
        min-width: 25px;
    }

    .mcq-list-item {
        gap: 15px;
        padding: 18px 25px;
    }

    .mcq-list-item__text {
        font-size: 14px;
    }

    .mcq-list-item__block {
        gap: 10px;
    }

    .mcq-card--list {
        gap: 15px;
    }

    .mcq-list__bottom-text {
        padding: 8px 40px;
    }
}

@media screen and (max-width: 768px) {
	.mcq-calc-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .microloans-credit-questions__card--active .microloans-credit-questions__card-body-inner {
        padding-top: 20px;
        padding-bottom: 20px;
    }
}

@media screen and (max-width: 540px) {
	/*  */
    .microloans-credit-questions__card-title, .mcq-table__cell--head, .mcq-result-card__item, .mcq-tabs__button, .mcq-rate-table__header, .mcq-rate-note, .mcq-list-item__title, .mcq-list__bottom-text {
        font-size: 14px;
    }

    .microloans-credit-questions__card-button, .mcq-banner {
        font-size: 12px;
    }

    .microloans-credit-questions__card-button {
        padding: 8px 25px;
    }

    .mcq-card {
        padding: 20px 12px;
    }

    .mcq-mode-card {
        margin-bottom: 20px;
        gap: 10px;
    }

    .mcq-tabs {
        padding: 5px;
    }

    .mcq-tabs__button, .mcq-rate-note, .mcq-rate-table__row {
        padding: 6px 12px;
    }

    .mcq-list-item {
        padding: 8px 18px;
    }

    .mcq-card--list {
        gap: 10px;
    }

    .microloans-credit-questions__card-body-inner {
        padding: 0 12px 0;
    }

    .mcq-list-item__text {
        font-size: 12px;
    }

	.microloans-credit-questions {
        padding-bottom: 20px;
    }
}

@media screen and (max-width: 376px) {
	/*  */
    .microloans-credit-questions__card-header {
        padding: 12px 25px;
    }

    .microloans-credit-questions__card-button {
        padding: 8px 15px;
    }

    .mcq-table__row {
        grid-template-columns: 1fr;
        padding-bottom: 12px;
    }

    .mcq-table__cell {
        text-align: center!important;
    }

    .mcq-table__header-row {
        grid-template-columns: 1fr;
        margin-bottom: 10px;
    }

    .mcq-table__cell--head {
        font-size: 12px;
    }

    .mcq-banner {
        padding: 8px 12px;
        width: 100%;
    }

    .mcq-result-card {
        gap: 10px;
    }
}

/** ================= New Info/New Related ================= */

.microloans-pay-cards {
    padding-bottom: 50px;
}

.microloans-pay-cards__block-title {
    margin-bottom: 100px;
    font-size: 48px;
    font-weight: 700;
    color: var(--primary);
}

.microloans-pay-cards__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 30px;
}

.microloans-pay-cards__card {
    background: var(--white);
    border-radius: 18px;
    padding: 72px 25px;
    text-align: center;
    box-shadow: 0 4px 30px 0 #00000040;
    transition: all 200ms ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.microloans-pay-cards__card:hover {
    transform: translateY(-10px);
}

.microloans-pay-cards__image {
    display: flex;
    justify-content: center;
}

.microloans-pay-cards__image img {
    width: auto!important;
    height: 70px!important;
    margin-bottom: 30px;
    display: block;
}

.microloans-pay-cards__title {
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary);
}

.microloans-pay-cards__middle {
    margin-top: 40px;
}

.microloans-pay-cards__middle--text {
    max-width: 90%;
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary);
}

.microloans-pay-cards__middle--button {
    max-width: 75%;
    width: 100%;
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    background: var(--primary);
    border-radius: 10px;
    transition: all 200ms ease;
}

.microloans-pay-cards__button {
    width: 100%;
    height: 100%;
    display: block;
    padding: 13px 25px;
}

.microloans-pay-cards__middle--button a:visited,
.microloans-pay-cards__middle--button a,
.microloans-pay-cards__middle--button a:hover {
    color: var(--white);
}

.microloans-pay-cards__middle--button:hover {
    background: var(--primary);
	opacity: 0.85;
}

@media screen and (max-width: 1280px) {
	.microloans-pay-cards__block-title {
        font-size: 40px;
        margin-bottom: 60px;
        margin-top: 60px;
    }

	.microloans-pay-cards {
        padding-bottom: 60px;
    }

	.microloans-pay-cards__image img {
        height: 55px!important;
        margin-bottom: 15px;
    }

    .microloans-pay-cards__title {
        font-size: 25px;
    }

    .microloans-pay-cards__card {
        padding: 42px 15px;
    }

    .microloans-pay-cards__middle {
        margin-top: 20px;
    }

    .microloans-pay-cards__middle--text {
        font-size: 16px;
    }

    .microloans-pay-cards__middle--button {
        font-size: 16px;
        max-width: 65%;
    }

    .microloans-pay-cards__button {
        padding: 8px 18px;
    }
}

@media screen and (max-width: 1024px) {
	.microloans-pay-cards__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .microloans-pay-cards__image img {
        height: 45px!important;
    }

    .microloans-pay-cards__block-title {
        font-size: 30px;
        margin-bottom: 40px;
    }
}

@media screen and (max-width: 540px) {
	.microloans-pay-cards__block-title {
        margin-top: 40px;
        font-size: 25px;
        margin-bottom: 25px;
    }

	.microloans-pay-cards {
        padding-bottom: 40px;
    }

	.microloans-pay-cards__middle--text {
        margin-top: 10px;
        font-size: 13px;
    }

    .microloans-pay-cards__middle--button {
        font-size: 13px;
        max-width: fit-content;
    }

    .microloans-pay-cards__button {
        padding: 5px 35px;
    }

	.microloans-pay-cards__grid {
        grid-template-columns: 1fr;
    }

    .microloans-pay-cards__card {
        padding: 22px 15px;
    }

    .microloans-pay-cards__image img {
        height: 35px !important;
    }

    .microloans-pay-cards__title {
        font-size: 18px;
    }
}

/** ================= New Info/New Related ================= */

.news-detail-info {
	padding-top: 50px;
    padding-bottom: 50px;
}

.news-detail-info__article {
	margin: 0;
}

.news-detail-info__title {
	margin: 0 0 50px;
	color: var(--primary);
	font-size: 36px;
	font-weight: 700;
}

.news-detail-info__image-wrap {
    width: 100%;
	margin: 0 0 30px;
	border-radius: var(--radius1);
	background: #f5f0eb;
}

.news-detail-info__image-wrap .news-detail-info__image {
	width: 100%;
	height: 700px;
	display: block;
	object-fit: cover;
    object-position: center;
    border-radius: var(--radius1);
}

.news-detail-info__date {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 18px;
	padding: 7px 22px;
	border-radius: 5px;
	background: var(--primary);
	color: var(--white);
	font-size: 16px;
	font-weight: 600;
}

.news-detail-info__content {
	color: var(--secondary);
	font-size: 20px;
	font-weight: 600;
}

.news-detail-info__content p {
	margin: 0 0 16px;
}

.news-detail-info__content strong,
.news-detail-info__content b {
	color: var(--primary);
}

.news-detail-info__content ul,
.news-detail-info__content ol {
	margin: 0 0 16px 18px;
	padding: 0;
	color: var(--primary);
}

.news-detail-info__content li::marker {
	color: var(--primary);
}

.news-detail-info__empty {
	margin: 0;
	font-size: 16px;
	font-weight: 700;
}

.news-detail-related {
	padding-top: 50px;
    padding-bottom: 50px;
}

.news-detail-related__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 30px;
}

.news-detail-related__title {
	margin: 0;
	color: var(--secondary);
	font-size: 34px;
	font-weight: 700;
}

.news-detail-related__link,
.news-detail-related__link:visited {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 58px;
	padding: 0 30px;
	border-radius: 8px;
	background: var(--primary);
	color: var(--white);
	font-size: 20px;
	font-weight: 800;
	text-decoration: none;
}

.news-detail-related__link:hover,
.news-detail-related__link:focus {
	background: #7c0000;
	color: var(--white);
}

.news-detail-related__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 26px;
}

.news-card {
	display: flex;
	flex-direction: column;
	min-height: 100%;
}

.news-card__thumb {
	display: block;
	aspect-ratio: 1 / 0.84;
	overflow: hidden;
	border-radius: 14px;
	background: #f5f0eb;
}

.news-card__img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.news-card__placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 100%;
	padding: 24px;
	background: linear-gradient(135deg, #f4d8d3 0%, #f7f1ef 100%);
	color: #8f0909;
	font-size: 1.2rem;
	font-weight: 800;
	text-align: center;
}

.news-card__content {
	padding-top: 22px;
}

.news-card__date {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 31px;
	padding: 0 12px;
	border-radius: 4px;
	background: var(--primary);
	color: var(--white);
	font-size: 14px;
	font-weight: 700;
	line-height: 1;
}

.news-card__title,
.news-card__title a,
.news-card__title a:visited {
	margin: 18px 0 12px;
	color: var(--primary);
	font-size: 24px;
	font-weight: 700;
	text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card__title a:hover,
.news-card__title a:focus {
	color: var(--primary);
}

.news-card__desc {
	margin: 0;
	color: var(--secondary);
	font-size: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-detail-related__slider {
	width: 100%;
	overflow: hidden;
}

.news-detail-related__wrapper {
	align-items: stretch;
}

.news-detail-related .swiper-slide {
	height: auto;
}

.news-detail-related .news-card {
	height: 100%;
}

@media (max-width: 1536px) {
	.news-detail-info__image-wrap .news-detail-info__image {
		height: 620px;
	}

	.news-detail-related__title {
		font-size: 32px;
	}

	.news-card__title,
	.news-card__title a,
	.news-card__title a:visited {
		font-size: 22px;
	}

	.news-card__desc {
		font-size: 18px;
	}
}

@media (max-width: 1280px) {
	.news-detail-info,
	.news-detail-related {
		padding-top: 40px;
		padding-bottom: 40px;
	}

	.news-detail-info__title {
		margin-bottom: 35px;
		font-size: 30px;
	}

	.news-detail-info__image-wrap .news-detail-info__image {
		height: 520px;
	}

	.news-detail-info__content {
		font-size: 18px;
		line-height: 1.55;
	}

	.news-detail-related__title {
		font-size: 30px;
	}

	.news-detail-related__link,
	.news-detail-related__link:visited {
		min-height: 52px;
		padding: 0 26px;
		font-size: 18px;
	}

	.news-detail-related__grid {
		gap: 22px;
	}

	.news-card__title,
	.news-card__title a,
	.news-card__title a:visited {
		font-size: 20px;
	}

	.news-card__desc {
		font-size: 17px;
	}
}

@media (max-width: 1024px) {
	.news-detail-info__image-wrap .news-detail-info__image {
		height: 430px;
	}

	.news-detail-related__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 28px 22px;
	}

	.news-card__title,
	.news-card__title a,
	.news-card__title a:visited {
		font-size: 19px;
		line-height: 1.35;
	}

	.news-card__desc {
		font-size: 16px;
		line-height: 1.45;
	}
}

@media (max-width: 768px) {
	.news-detail-info,
	.news-detail-related {
		padding-top: 32px;
		padding-bottom: 32px;
	}

	.news-detail-info__title {
		margin-bottom: 25px;
		font-size: 26px;
		line-height: 1.25;
	}

	.news-detail-info__image-wrap {
		margin-bottom: 24px;
	}

	.news-detail-info__image-wrap .news-detail-info__image {
		height: 340px;
	}

	.news-detail-info__date {
		padding: 6px 18px;
		font-size: 14px;
	}

	.news-detail-info__content {
		font-size: 16px;
		line-height: 1.6;
	}

	.news-detail-related__head {
		align-items: flex-start;
		margin-bottom: 24px;
	}

	.news-detail-related__title {
		font-size: 26px;
	}

	.news-detail-related__link,
	.news-detail-related__link:visited {
		min-height: 46px;
		padding: 0 22px;
		font-size: 16px;
	}

	.news-detail-related__grid {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.news-card {
		width: 100%;
		margin: 0 auto;
	}

	.news-card__content {
		padding-top: 18px;
	}

	.news-card__title,
	.news-card__title a,
	.news-card__title a:visited {
		margin: 14px 0 10px;
		font-size: 19px;
	}

	.news-card__desc {
		font-size: 16px;
	}
}

@media (max-width: 540px) {
	.news-detail-info,
	.news-detail-related {
		padding-top: 28px;
		padding-bottom: 28px;
	}

	.news-detail-info__title {
		font-size: 23px;
	}

	.news-detail-info__image-wrap .news-detail-info__image {
		height: 260px;
	}

	.news-detail-info__content {
		font-size: 15px;
	}

	.news-detail-related__head {
		flex-direction: column;
		gap: 16px;
	}

	.news-detail-related__title {
		font-size: 24px;
	}

	.news-detail-related__link,
	.news-detail-related__link:visited {
		min-height: 44px;
		padding: 0 20px;
		font-size: 15px;
	}

	.news-card__title,
	.news-card__title a,
	.news-card__title a:visited {
		font-size: 18px;
	}

	.news-card__desc {
		font-size: 15px;
	}
}

@media (max-width: 440px) {
	.news-detail-info,
	.news-detail-related {
		padding-top: 24px;
		padding-bottom: 24px;
	}

	.news-detail-info__title {
		margin-bottom: 20px;
		font-size: 21px;
	}

	.news-detail-info__image-wrap .news-detail-info__image {
		height: 220px;
	}

	.news-detail-info__date {
		font-size: 13px;
	}

	.news-detail-info__content {
		font-size: 14px;
	}

	.news-detail-related__title {
		font-size: 22px;
	}

	.news-card__title,
	.news-card__title a,
	.news-card__title a:visited {
		font-size: 17px;
	}

	.news-card__desc {
		font-size: 14px;
	}
}

/** ================= News Cards/News Pagination ================= */

.press-center-news {
    padding-top: 50px;
    padding-bottom: 50px;
}

.press-center-news__cats {
    position: relative;
    width: fit-content;
    margin-bottom: 24px;
}

.press-center-news__cats-summary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 44px;
    padding: 0 18px;
    border: 1px solid rgba(170, 8, 8, 0.18);
    border-radius: 999px;
    background: #ffffff;
    color: #7f0606;
    font-weight: 700;
    cursor: pointer;
    list-style: none;
}

.press-center-news__cats-summary::-webkit-details-marker {
    display: none;
}

.press-center-news__cats-chevron {
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.2s ease;
}

.press-center-news__cats[open] .press-center-news__cats-chevron {
    transform: rotate(-135deg);
}

.press-center-news__cats-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    z-index: 10;
    min-width: 220px;
    margin: 0;
    padding: 10px;
    list-style: none;
    background: #ffffff;
    border: 1px solid rgba(170, 8, 8, 0.12);
    border-radius: 14px;
    box-shadow: 0 18px 40px rgba(78, 13, 13, 0.12);
}

.press-center-news__cats-menu a,
.press-center-news__cats-menu a:visited {
    display: block;
    padding: 10px 12px;
    color: #271717;
    text-decoration: none;
    border-radius: 10px;
}

.press-center-news__cats-menu a:hover,
.press-center-news__cats-menu a:focus,
.press-center-news__cats-menu a.is-active {
    background: #fff3f3;
    color: #9d0000;
}

.press-center-news__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 30px;
}

.press-center-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.press-center-card__thumb {
    display: block;
    width: 100%;
    height: 100%;
    margin-bottom: 30px;
    border-radius: var(--radius1);
}

.press-center-card__thumb .press-center-card__img {
    width: 100%;
    height: 400px;
    display: block;
    object-fit: cover;
    object-position: center;
    border-radius: var(--radius1);
}

.press-center-card__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: #f5f0eb;
    color: #ad0000;
    font-weight: 800;
    text-align: center;
}

.press-center-card__content {
    display: flex;
    flex-direction: column;
}

.press-center-card__date {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    padding: 7px 22px;
    margin-bottom: 20px;
    border-radius: 5px;
    background: var(--primary);
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
}

.press-center-card__title {
    margin: 0 0 20px;
    font-size: 24px;
    font-weight: 700;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.press-center-card__title a,
.press-center-card__title a:visited {
    color: var(--primary);
    text-decoration: none;
}

.press-center-card__title a:hover,
.press-center-card__title a:focus {
    color: #870000;
}

.press-center-card__desc {
    margin: 0;
    color: var(--secondary);
    font-size: 20px;
    font-weight: 700;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.press-center-card__footer {
    padding-top: 55px;
    margin-top: auto;
    text-align: center;
}

.press-center-card__btn,
.press-center-card__btn:visited {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 26px;
    border-radius: var(--radius1);
    background: var(--primary);
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
}

.press-center-card__btn:hover,
.press-center-card__btn:focus {
    background: #870000;
    color: var(--white);
}

.press-center-pagination {
    margin-top: 60px;
}

.press-center-pagination ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.press-center-pagination ul li {
    display: flex;
    align-items: center;
}

.press-center-pagination a,
.press-center-pagination a:visited,
.press-center-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    font-size: 24px;
    font-weight: 700;
    text-decoration: none;
}

.press-center-pagination .current {
    min-width: 35px;
    width: 35px;
    padding: 0 10px;
    border-radius: 5px;
    background: var(--primary);
    color: var(--white);
}

.press-center-pagination .prev svg,
.press-center-pagination .next svg {
    width: 25px;
    height: auto;
}

.press-center-pagination .prev {
    padding-right: 25px;
}

.press-center-pagination .next {
    padding-left: 25px;
}

.press-center-news__empty {
    margin: 0;
    color: var(--secondary);
    font-size: 16px;
}

@media (max-width: 1536px) {
	.press-center-card__thumb .press-center-card__img {
		height: 360px;
	}

	.press-center-card__title {
		font-size: 22px;
	}

	.press-center-card__desc {
		font-size: 18px;
	}
}

@media (max-width: 1280px) {
	.press-center-news {
		padding-top: 40px;
		padding-bottom: 40px;
	}

	.press-center-news__grid {
		gap: 24px;
	}

	.press-center-card__thumb {
		margin-bottom: 24px;
	}

	.press-center-card__thumb .press-center-card__img {
		height: 300px;
	}

	.press-center-card__date {
		font-size: 15px;
	}

	.press-center-card__title {
		font-size: 20px;
	}

	.press-center-card__desc {
		font-size: 17px;
	}

	.press-center-card__footer {
		padding-top: 40px;
	}
}

@media (max-width: 1024px) {
	.press-center-news__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 35px 24px;
	}

	.press-center-card__thumb .press-center-card__img {
		height: 280px;
	}
}

@media (max-width: 768px) {
	.press-center-news {
		padding-top: 32px;
		padding-bottom: 32px;
	}

	.press-center-news__cats {
		margin-bottom: 22px;
	}

	.press-center-news__cats-summary {
		min-height: 40px;
		padding: 0 16px;
		font-size: 14px;
	}

	.press-center-news__grid {
		grid-template-columns: 1fr;
		gap: 34px;
	}

	.press-center-card {
		width: 100%;
		max-width: 520px;
		margin: 0 auto;
	}

	.press-center-card__thumb {
		margin-bottom: 20px;
	}

	.press-center-card__thumb .press-center-card__img {
		height: 300px;
	}

	.press-center-card__date {
		padding: 6px 18px;
		margin-bottom: 16px;
		font-size: 14px;
	}

	.press-center-card__title {
		margin-bottom: 14px;
		font-size: 20px;
		line-height: 1.35;
	}

	.press-center-card__desc {
		font-size: 16px;
		line-height: 1.45;
	}

	.press-center-card__footer {
		padding-top: 26px;
	}

	.press-center-card__btn,
	.press-center-card__btn:visited {
		padding: 12px 24px;
		font-size: 15px;
	}

	.press-center-pagination {
		margin-top: 42px;
	}

	.press-center-pagination ul {
		gap: 14px;
	}

	.press-center-pagination a,
	.press-center-pagination a:visited,
	.press-center-pagination span {
		font-size: 18px;
		line-height: 1;
	}

	.press-center-pagination .current {
		width: 30px;
		min-width: 30px;
		height: 30px;
		padding: 0;
		font-size: 17px;
	}

	.press-center-pagination .prev svg,
	.press-center-pagination .next svg {
		width: 25px;
		height: auto;
		display: block;
	}

	.press-center-pagination .prev,
	.press-center-pagination .next {
		padding: 0 12px;
	}
}

@media (max-width: 540px) {
	.press-center-news {
		padding-top: 28px;
		padding-bottom: 28px;
	}

	.press-center-news__grid {
		gap: 30px;
	}

	.press-center-card__thumb .press-center-card__img {
		height: 250px;
	}

	.press-center-card__title {
		font-size: 18px;
	}

	.press-center-card__desc {
		font-size: 15px;
	}

	.press-center-pagination {
		margin-top: 34px;
	}

	.press-center-pagination ul {
		gap: 12px;
	}

	.press-center-pagination a,
	.press-center-pagination a:visited,
	.press-center-pagination span {
		font-size: 17px;
	}

	.press-center-pagination .current {
		width: 28px;
		min-width: 28px;
		height: 28px;
		font-size: 16px;
	}
}

@media (max-width: 440px) {
	.press-center-news {
		padding-top: 24px;
		padding-bottom: 24px;
	}

	.press-center-news__cats-summary {
		min-height: 38px;
		padding: 0 14px;
		font-size: 13px;
	}

	.press-center-card__thumb .press-center-card__img {
		height: 210px;
	}

	.press-center-card__date {
		padding: 6px 16px;
		font-size: 13px;
	}

	.press-center-card__title {
		font-size: 17px;
	}

	.press-center-card__desc {
		font-size: 14px;
	}

	.press-center-card__footer {
		padding-top: 22px;
	}

	.press-center-card__btn,
	.press-center-card__btn:visited {
		padding: 11px 22px;
		font-size: 14px;
	}

	.press-center-pagination {
		margin-top: 30px;
	}

	.press-center-pagination ul {
		gap: 10px;
	}

	.press-center-pagination a,
	.press-center-pagination a:visited,
	.press-center-pagination span {
		font-size: 16px;
	}

	.press-center-pagination .current {
		width: 26px;
		min-width: 26px;
		height: 26px;
		font-size: 15px;
		border-radius: 4px;
	}
}

/** ================= Documents Cards ================= */

.documents-cards {
    padding-top: 50px;
    padding-bottom: 50px;
}

.documents-cards__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 20px;
}

.documents-cards__item {
    padding: 43px 68px;
    border: 3px solid var(--primary);
    border-radius: var(--radius2);
    background: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
}

.documents-cards__icon {
    width: 120px;
    height: auto;
    object-fit: contain;
    display: block;
}

.documents-cards__title {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary);
}

.documents-cards__button,
.documents-cards__button:visited {
    width: 100%;
    padding: 15px 20px;
    border-radius: var(--radius2);
    background: var(--primary);
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    transition: all 200ms ease;
}

.documents-cards__button:hover {
    color: var(--white);
    transform: translateY(-4px);
    opacity: 0.85;
}

@media (max-width: 1536px) {
	.documents-cards__item {
		padding: 40px 55px;
	}

	.documents-cards__icon {
		width: 110px;
	}
}

@media (max-width: 1280px) {
	.documents-cards {
		padding-top: 40px;
		padding-bottom: 40px;
	}

	.documents-cards__grid {
		gap: 24px 18px;
	}

	.documents-cards__item {
		padding: 34px 38px;
		gap: 26px;
	}

	.documents-cards__icon {
		width: 95px;
	}

	.documents-cards__title {
		font-size: 18px;
	}

	.documents-cards__button,
	.documents-cards__button:visited {
		padding: 14px 18px;
		font-size: 15px;
	}
}

@media (max-width: 1024px) {
	.documents-cards__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 22px;
	}

	.documents-cards__item {
		padding: 32px 34px;
	}
}

@media (max-width: 768px) {
	.documents-cards {
		padding-top: 32px;
		padding-bottom: 32px;
	}

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

	.documents-cards__item {
		padding: 28px 24px;
		gap: 22px;
		border-width: 2px;
	}

	.documents-cards__icon {
		width: 82px;
	}

	.documents-cards__title {
		font-size: 17px;
		line-height: 1.3;
	}

	.documents-cards__button,
	.documents-cards__button:visited {
		padding: 13px 16px;
		font-size: 14px;
	}
}

@media (max-width: 540px) {
	.documents-cards {
		padding-top: 28px;
		padding-bottom: 28px;
	}

	.documents-cards__grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.documents-cards__item {
		padding: 26px 22px;
		gap: 20px;
	}

	.documents-cards__icon {
		width: 76px;
	}

	.documents-cards__title {
		font-size: 16px;
	}

	.documents-cards__button,
	.documents-cards__button:visited {
		width: 100%;
		max-width: 260px;
		padding: 12px 16px;
		font-size: 14px;
	}
}

@media (max-width: 440px) {
	.documents-cards {
		padding-top: 24px;
		padding-bottom: 24px;
	}

	.documents-cards__grid {
		gap: 14px;
	}

	.documents-cards__item {
		padding: 24px 18px;
		gap: 18px;
		border-radius: 18px;
	}

	.documents-cards__icon {
		width: 68px;
	}

	.documents-cards__title {
		font-size: 15px;
	}

	.documents-cards__button,
	.documents-cards__button:visited {
		max-width: 240px;
		padding: 11px 14px;
		font-size: 13px;
	}
}

/** ================= Filials Maps ================= */

.filials-maps-hero {
	padding-top: 50px;
    padding-bottom: 50px;
	background-color: var(--primary);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

.filials-maps-hero__title {
	margin: 0 0 50px;
	color: var(--white);
	font-size: 48px;
	font-weight: 700;
}

.filials-maps-hero__grid {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 50px;
	align-items: start;
}

.filials-maps__visuals {
	width: 100%;
}

.filials-maps__visuals .filials-maps__visual {
	display: none;
	width: 100%;
	height: 622px;
	background: rgba(255, 255, 255, 0.12);
    border-radius: var(--radius2);
}

.filials-maps__visual.is-active {
	display: block;
}

.filials-maps__image {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
    border-radius: var(--radius2);
}

.filials-maps__image-placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 30px;
	background: #f5f0eb;
	color: var(--primary);
	font-size: 24px;
	font-weight: 800;
	text-align: center;
    border-radius: var(--radius2);
}

.filials-maps__nav {
	max-height: 622px;
	display: flex;
	flex-direction: column;
	gap: 30px;
	padding-right: 6px;
	overflow-y: auto;
}

.filials-maps__nav::-webkit-scrollbar {
	width: 6px;
}

.filials-maps__nav::-webkit-scrollbar-thumb {
	background: rgba(255, 255, 255, 0.55);
	border-radius: 999px;
}

.filials-maps__nav-btn {
	width: 100%;
	padding: 20px 25px;
	border: 0;
	border-radius: var(--radius1);
	background: var(--white);
	color: var(--secondary);
	font-size: 20px;
	font-weight: 700;
	text-align: center;
	cursor: pointer;
	transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.filials-maps__nav-btn:hover,
.filials-maps__nav-btn.is-active {
	background: #fff0f0;
	color: #ad0000;
}

.filials-maps__empty {
	margin: 0;
	color: var(--white);
	font-size: 18px;
	font-weight: 700;
}

.filials-maps-details {
	position: relative;
	background: var(--white);
}

.filials-maps-detail {
	display: none;
	position: relative;
	min-height: 400px;
}

.filials-maps-detail.is-active {
	display: block;
}

.filials-maps-detail__map-wrap {
	position: absolute;
	inset: 0;
	z-index: 1;
}

.filials-maps-detail__map,
.filials-maps-detail__map-placeholder {
	width: 100%;
	height: 100%;
	min-height: 666px;
	background: #f5f0eb;
}

.filials-maps-detail__map {
	opacity: 0.42;
}

.filials-maps-detail__container {
	position: relative;
	z-index: 2;
	min-height: 666px;
	display: flex;
	align-items: center;
}

.filials-maps-detail__card {
	width: 40%;
	margin-left: 50px;
	padding: 31px 54px;
	background: var(--white);
	color: var(--secondary);
	box-shadow: var(--box-shadow);
    border-radius: var(--radius2);
}

.filials-maps-detail__title {
	margin: 0 0 50px;
	color: var(--secondary);
	font-size: 24px;
	font-weight: 700;
}

.filials-maps-detail__row {
	display: grid;
	grid-template-columns: 25px minmax(0, 1fr);
	gap: 15px;
	margin-bottom: 25px;
	font-size: 24px;
	font-weight: 600;
    align-items: center;
}

.filials-maps-detail__icon {
	display: inline-flex;
	justify-content: center;
    align-items: center;
	width: 25px;
	color: var(--secondary);
}

.filials-maps-detail__phones {
	display: flex;
	flex-direction: column;
	gap: 25px;
	margin: 0 0 50px;
}

.filials-maps-detail__phones a,
.filials-maps-detail__phones a:visited {
	display: grid;
	grid-template-columns: 25px minmax(0, 1fr);
	gap: 15px;
	color: var(--secondary);
	font-size: 24px;
	font-weight: 600;
	text-decoration: none;
}

.filials-maps-detail__phones a:hover {
	color: var(--primary);
}

.filials-maps-detail__schedule strong {
	display: block;
	margin-bottom: 50px;
	font-size: 24px;
    font-weight: 600;
}

.filials-maps-detail__row--time {
	margin-bottom: 0;
}

@media (max-width: 1536px) {
	.filials-maps-hero__grid {
		gap: 40px;
	}

	.filials-maps__visuals .filials-maps__visual {
		height: 560px;
	}

	.filials-maps__nav {
		max-height: 560px;
		gap: 24px;
	}

	.filials-maps-detail__card {
		width: 45%;
	}
}

@media (max-width: 1280px) {
	.filials-maps-hero {
		padding-top: 40px;
		padding-bottom: 40px;
	}

	.filials-maps-hero__title {
		margin-bottom: 35px;
		font-size: 40px;
	}

	.filials-maps-hero__grid {
		grid-template-columns: 1.7fr 1fr;
		gap: 30px;
	}

	.filials-maps__visuals .filials-maps__visual {
		height: 480px;
	}

	.filials-maps__nav {
		max-height: 480px;
		gap: 18px;
	}

	.filials-maps__nav-btn {
		padding: 16px 20px;
		font-size: 18px;
	}

	.filials-maps-detail__card {
		width: 52%;
		margin-left: 35px;
		padding: 28px 40px;
	}

	.filials-maps-detail__title,
	.filials-maps-detail__row,
	.filials-maps-detail__phones a,
	.filials-maps-detail__schedule strong {
		font-size: 21px;
	}
}

@media (max-width: 1024px) {
	.filials-maps-hero__grid {
		grid-template-columns: 1fr;
		gap: 25px;
	}

	.filials-maps__visuals .filials-maps__visual {
		height: 430px;
	}

	.filials-maps__nav {
		max-height: none;
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 16px;
		padding-right: 0;
		overflow: visible;
	}

	.filials-maps__nav-btn {
		padding: 15px 18px;
		font-size: 17px;
	}

	.filials-maps-detail__container {
		min-height: 560px;
		align-items: center;
	}

	.filials-maps-detail__map,
	.filials-maps-detail__map-placeholder {
		min-height: 560px;
	}

	.filials-maps-detail__card {
		width: 60%;
		margin-left: 30px;
		padding: 26px 34px;
	}

	.filials-maps-detail__title {
		margin-bottom: 35px;
	}
}

@media (max-width: 768px) {
	.filials-maps-hero {
		padding-top: 32px;
		padding-bottom: 32px;
	}

	.filials-maps-hero__title {
		margin-bottom: 28px;
		font-size: 34px;
	}

	.filials-maps__visuals .filials-maps__visual {
		height: 340px;
	}

	.filials-maps__nav {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.filials-maps__nav-btn {
		padding: 14px 16px;
		font-size: 16px;
	}

	.filials-maps-detail {
		min-height: auto;
	}

	.filials-maps-detail__map-wrap {
		position: relative;
		inset: auto;
		height: 520px;
	}

	.filials-maps-detail__map,
	.filials-maps-detail__map-placeholder {
		height: 520px;
		min-height: 520px;
	}

	.filials-maps-detail__container {
		position: absolute;
		left: 0;
		right: 0;
		top: 24px;
		z-index: 5;
		min-height: auto;
		display: block;
		padding: 0 20px;
		pointer-events: none;
	}

	.filials-maps-detail__card {
		width: 100%;
		max-width: 460px;
		margin: 0 auto;
		padding: 24px 26px;
		border-radius: 20px;
		pointer-events: auto;
	}

	.filials-maps-detail__title {
		margin-bottom: 24px;
		font-size: 20px;
		line-height: 1.25;
	}

	.filials-maps-detail__row,
	.filials-maps-detail__phones a,
	.filials-maps-detail__schedule strong {
		grid-template-columns: 22px minmax(0, 1fr);
		gap: 12px;
		font-size: 18px;
		line-height: 1.35;
	}

	.filials-maps-detail__row {
		margin-bottom: 20px;
	}

	.filials-maps-detail__phones {
		gap: 16px;
		margin-bottom: 24px;
	}

	.filials-maps-detail__schedule strong {
		margin-bottom: 22px;
	}
}

@media (max-width: 540px) {
	.filials-maps-hero {
		padding-top: 28px;
		padding-bottom: 28px;
	}

	.filials-maps-hero__title {
		margin-bottom: 24px;
		font-size: 30px;
	}

	.filials-maps__visuals .filials-maps__visual {
		height: 260px;
	}

	.filials-maps__image,
	.filials-maps__visuals .filials-maps__visual {
		border-radius: 18px;
	}

	.filials-maps__nav-btn {
		padding: 13px 14px;
		font-size: 15px;
		border-radius: 14px;
	}

	.filials-maps-detail__map-wrap,
	.filials-maps-detail__map,
	.filials-maps-detail__map-placeholder {
		height: 500px;
		min-height: 500px;
	}

	.filials-maps-detail__container {
		top: 18px;
		padding: 0 14px;
	}

	.filials-maps-detail__card {
		width: 100%;
		max-width: none;
		padding: 22px 20px;
		border-radius: 18px;
	}

	.filials-maps-detail__title {
		margin-bottom: 20px;
		font-size: 18px;
	}

	.filials-maps-detail__row,
	.filials-maps-detail__phones a,
	.filials-maps-detail__schedule strong {
		grid-template-columns: 20px minmax(0, 1fr);
		gap: 10px;
		font-size: 16px;
		line-height: 1.35;
	}

	.filials-maps-detail__icon {
		width: 20px;
	}

	.filials-maps-detail__phones {
		gap: 14px;
		margin-bottom: 22px;
	}

	.filials-maps-detail__schedule strong {
		margin-bottom: 18px;
	}
}

@media (max-width: 440px) {
	.filials-maps-hero {
		padding-top: 24px;
		padding-bottom: 24px;
	}

	.filials-maps-hero__title {
		margin-bottom: 20px;
		font-size: 26px;
	}

	.filials-maps__visuals .filials-maps__visual {
		height: 220px;
	}

	.filials-maps__nav {
		gap: 10px;
	}

	.filials-maps__nav-btn {
		padding: 12px;
		font-size: 14px;
	}

	.filials-maps-detail__map-wrap,
	.filials-maps-detail__map,
	.filials-maps-detail__map-placeholder {
		height: 480px;
		min-height: 480px;
	}

	.filials-maps-detail__container {
		top: 14px;
		padding: 0 10px;
	}

	.filials-maps-detail__card {
		width: 100%;
		padding: 20px 16px;
		border-radius: 16px;
	}

	.filials-maps-detail__title {
		margin-bottom: 18px;
		font-size: 17px;
	}

	.filials-maps-detail__row,
	.filials-maps-detail__phones a,
	.filials-maps-detail__schedule strong {
		font-size: 15px;
	}

	.filials-maps-detail__row {
		margin-bottom: 16px;
	}
}

/** ================= Hero ================= */

.hero {
    width: 100%;
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
}

.hero__title {
	margin: 0;
	padding: 40px 0;
	font-size: 48px;
	font-weight: 700;
	line-height: 1.2;
	color: var(--white);
	text-align: left;
	word-wrap: break-word;
}

@media (max-width: 1536px) {
	.hero__title {
		padding: 35px 0;
		font-size: 44px;
	}
}

@media (max-width: 1280px) {
	.hero__title {
		padding: 30px 0;
		font-size: 40px;
	}
}

@media (max-width: 1024px) {
	.hero__title {
		padding: 25px 0;
		font-size: 34px;
	}
}

@media (max-width: 768px) {
	.hero {
		background-position: center;
	}

	.hero__title {
		padding: 22px 0;
		font-size: 30px;
	}
}

@media (max-width: 540px) {
	.hero__title {
		padding: 18px 0;
		font-size: 26px;
		line-height: 1.2;
	}
}

@media (max-width: 440px) {
	.hero__title {
		padding: 16px 0;
		font-size: 22px;
		line-height: 1.2;
	}
}

/** ================= Reviews Cards ================= */

.reviews-cards {
    padding-top: 50px;
    padding-bottom: 50px;
}

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

.reviews-cards__item {
    padding: 54px 30px;
    border: 3px solid var(--primary);
    border-radius: var(--radius2);
    background: var(--white);
    text-align: center;
    box-shadow: none;
    transition: all 200ms ease;
}

.reviews-cards__item:hover {
    box-shadow: 8px 8px 18px rgba(0, 0, 0, 0.18);
    transform: translateY(-4px);
}

.reviews-cards__avatar-wrap {
    width: 200px;
    height: auto;
    margin: 0 auto 30px;
    border-radius: 100%;
}

.reviews-cards__avatar-wrap .reviews-cards__avatar {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.reviews-cards__name {
    margin: 0 auto 40px;
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
}

.reviews-cards__text {
    margin: 0;
    font-size: 18px;
    font-weight: 400;
    color: var(--secondary);
}

@media (max-width: 1536px) {
	.reviews-cards__item {
		padding: 45px 25px;
	}

	.reviews-cards__avatar-wrap {
		width: 180px;
		margin-bottom: 25px;
	}

	.reviews-cards__name {
		font-size: 20px;
		margin-bottom: 30px;
	}
}

@media (max-width: 1280px) {
	.reviews-cards {
		padding-top: 40px;
		padding-bottom: 40px;
	}

	.reviews-cards__grid {
		gap: 16px;
	}

	.reviews-cards__item {
		padding: 35px 20px;
	}

	.reviews-cards__avatar-wrap {
		width: 150px;
		margin-bottom: 20px;
	}

	.reviews-cards__name {
		font-size: 18px;
		margin-bottom: 25px;
	}

	.reviews-cards__text {
		font-size: 16px;
		line-height: 1.6;
	}
}

@media (max-width: 1024px) {
	.reviews-cards__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}

	.reviews-cards__item {
		padding: 35px 24px;
	}

	.reviews-cards__avatar-wrap {
		width: 140px;
	}

	.reviews-cards__name {
		font-size: 18px;
	}
}

@media (max-width: 768px) {
	.reviews-cards {
		padding-top: 30px;
		padding-bottom: 30px;
	}

	.reviews-cards__grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.reviews-cards__item {
		padding: 30px 20px;
	}

	.reviews-cards__avatar-wrap {
		width: 130px;
		margin-bottom: 18px;
	}

	.reviews-cards__name {
		font-size: 18px;
		margin-bottom: 20px;
	}

	.reviews-cards__text {
		font-size: 15px;
	}
}

@media (max-width: 540px) {
	.reviews-cards__item {
		padding: 25px 18px;
		border-width: 2px;
	}

	.reviews-cards__avatar-wrap {
		width: 110px;
	}

	.reviews-cards__name {
		font-size: 17px;
		line-height: 1.35;
		margin-bottom: 16px;
	}

	.reviews-cards__text {
		font-size: 14px;
		line-height: 1.7;
	}
}

@media (max-width: 440px) {
	.reviews-cards__item {
		padding: 20px 15px;
	}

	.reviews-cards__avatar-wrap {
		width: 90px;
		margin-bottom: 15px;
	}

	.reviews-cards__name {
		font-size: 16px;
		margin-bottom: 14px;
	}

	.reviews-cards__text {
		font-size: 13px;
		line-height: 1.6;
	}
}

/** ================= Thank You ================= */

.thankyou-wrapper {
    padding: 100px 0 100px 0;
}

.thankyou-box {
    background: var(--primary);
    border-radius: 40px;
    padding: 80px 40px;
    text-align: center;
}

.thankyou-title {
    margin: 0 0 30px;
    font-size: 52px;
    line-height: 1.2;
    font-weight: 700;
    color: var(--white);
}

.thankyou-description {
    margin: 0 0 50px;
    font-size: 28px;
    line-height: 1.5;
    font-weight: 500;
    color: var(--white);
}

.thankyou-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 420px;
    min-height: 72px;
    padding: 18px 40px;
    border: 2px solid var(--white);
    border-radius: 22px;
    font-size: 28px;
    font-weight: 600;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.thankyou-button:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-4px);
}

/* Планшеты */
@media (max-width: 992px) {
    .thankyou-box {
        padding: 60px 30px;
        border-radius: 30px;
    }

    .thankyou-title {
        font-size: 40px;
    }

    .thankyou-description {
        font-size: 22px;
        margin-bottom: 40px;
    }

    .thankyou-button {
        min-width: 320px;
        min-height: 64px;
        font-size: 22px;
    }
}

/* Мобильные устройства */
@media (max-width: 576px) {
    .thankyou-wrapper {
        padding: 30px 15px;
    }

    .thankyou-box {
        padding: 40px 20px;
        border-radius: 24px;
    }

    .thankyou-title {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .thankyou-description {
        font-size: 18px;
        margin-bottom: 30px;
    }

    .thankyou-button {
        width: 100%;
        min-width: 100%;
        min-height: 56px;
        font-size: 18px;
        border-radius: 16px;
        padding: 16px 20px;
    }
}