/* ------------------------------------------------------------ *\
	Variables
\* ------------------------------------------------------------ */

:root {
	--shell-max-width: 1440px;
	--shell-gutter-mobile: 16px;
	--shell-gutter-tablet: 42px;
	--shell-gutter: 101px;
	--shell-gutter-large: 154px;

	--c-charcoal: #544F4A;
	--c-charcoal-decimal: 84, 79, 74;
	--c-red-hex: #D9201E;
	--c-red-decimal: 217, 32, 30;
	--c-lightgray: #EFEFEF;
	--c-darkred-hex: #991C1F;
	--c-beige-hex: #F9F2E6;
	--c-base: #4a4541;

	--ff-montserrat: 'Montserrat', sans-serif;
	--ff-play-fair: 'Playfair Display', 'playfair display', serif;
	--ff-nunito-sans: 'Nunito Sans', sans-serif;

	--theme-transition-duration: 0.4s;
}

/* ------------------------------------------------------------ *\
	Fonts
\* ------------------------------------------------------------ */

@font-face {
    font-family: 'Playfair Display';
    src: url('../fonts/PlayfairDisplay-Regular.woff2') format('woff2'),
         url('../fonts/PlayfairDisplay-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Playfair Display';
    src: url('../fonts/PlayfairDisplay-Italic.woff2') format('woff2'),
         url('../fonts/PlayfairDisplay-Italic.woff') format('woff');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}


/* ------------------------------------------------------------ *\
	Generic
\* ------------------------------------------------------------ */

body {
	margin: 0 !important;
}

@media (max-width: 1023px) {
	body.nav-open {
		overflow: hidden;
	}
}

.style-reseter {
	font-size: 18px;
	line-height: 1.67;
	font-family: var(--ff-nunito-sans, 'sans-serif');
	font-weight: 400;
	color: var(--c-charcoal);
	background-color: var(--c-lightgray) !important;
	text-align: initial;
	overflow: hidden;
}

/* ------------------------------------------------------------ *\
	Data Backgrounds
\* ------------------------------------------------------------ */

.background-red {
	background-color: var(--c-darkred-hex);
	color: white;
}

.background-red + .background-red {
	padding-top: 0;
}

.background-white {
	background-color: white;
}

.background-white + .background-white,
.background-white + .background-white-gray {
	padding-top: 0;
}

.background-light-gray {
	background-color: var(--c-lightgray);
}

.background-light-gray + .background-light-gray,
.background-light-gray + .background-gray-white {
	padding-top: 0;
}

.background-light-gray + .background-gray-white.padding-block-small:before {
	top: calc(50% - (clamp(32px, 5vw, 76px) / 2));
}

.background-light-yellow {
	background-color: var(--c-beige-hex);
}

.background-white-gray {
	position: relative;
	background-color: white;
}

.background-white-gray > * {
	position: relative;
	z-index: 2;
}

.background-white-gray:before {
	content: ' ';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	top: 50%;
	background-color: var(--c-lightgray);
	pointer-events: none;
}

.background-white-gray + .background-gray {
	padding-top: 0;
}

.background-gray-white {
	position: relative;
}

.background-gray-white + .background-white {
	padding-top: 0;
}

.background-gray-white > * {
	position: relative;
	z-index: 2;
}

.background-gray-white:before {
	content: ' ';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	top: 50%;
	background-color: white;
	pointer-events: none;
	z-index: 1;
}

/* ------------------------------------------------------------ *\
	Block Padding
\* ------------------------------------------------------------ */

.padding-block-large {
	padding-block: clamp(60px, 7vw, 120px);
}

.padding-block-normal {
	padding-block: clamp(60px, 7vw, 96px);
}

.padding-block-small {
	padding-block: clamp(32px, 5vw, 76px);
}

.padding-block-xsmall {
	padding-block: clamp(40px, 5vw, 60px);
}

.padding-block-xxsmall {
	padding-block: clamp(32px, 5vw, 48px);
}

/* ------------------------------------------------------------ *\
	Hot Fixes
\* ------------------------------------------------------------ */

@media (max-width: 985px) {
	body:not(.show-nav-main) .header-v2 .header__main { left: -4000px; }
}

/* ------------------------------------------------------------ *\
	Shell
\* ------------------------------------------------------------ */

.shell {
	max-width: calc(var(--shell-max-width) + (2 * var(--shell-gutter)));
	margin: 0 auto;
	padding: 0 var(--shell-gutter);
}

@media (max-width: 1200px) {
	.shell {
		--shell-gutter: var(--shell-gutter-tablet);
	}
}

@media (max-width: 767px) {
	.shell {
		--shell-gutter: var(--shell-gutter-mobile);
	}
}

.shell--max {
	--shell-max-width: 1440px;
	--shell-gutter: 36px;
	width: 100%;
}

@media (max-width: 1200px) {
	.shell--max {
		--shell-gutter: var(--shell-gutter-tablet);
	}
}

@media (max-width: 767px) {
	.shell--max {
		--shell-gutter: var(--shell-gutter-mobile);
	}
}

/* ------------------------------------------------------------ *\
	Logo
\* ------------------------------------------------------------ */

.logo {
	display: inline-block;
	width: 99px;
	height: 56px;
}

@media (max-width: 1023px) {
	.logo {
		width: 121px;
		height: 68px;
	}
}

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

.logo-footer {
	display: inline-block;
}

/* ------------------------------------------------------------ *\
	Header
\* ------------------------------------------------------------ */

.header {
	position: relative;
	z-index: 99;
}

@media (max-width: 1023px) {
	.header {
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
	}

	.header + .hero,
	.header + section {
		margin-top: 143px;
	}
}

@media (max-width: 767px) {
	.header + .hero,
	.header + section {
		margin-top: 230px;
	}
}

.header .header__notice {
	padding-block: 9px;
	background: var(--c-red-hex, red) !important;
	color: #FFF;
	font-size: 16px;
	font-weight: 600;
}

@media (max-width: 1023px) {
	.header .header__notice {
		font-size: 14px;
	}
}

@media (max-width: 767px) {
	.header .header__notice {
		padding-block: 5px;
	}

	.header .header__notice--countdown .header__notice-inner {
		flex-direction: column;
		gap: 0;
	}
}

.header .header__notice-inner {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 30px;
}

@media (max-width: 1023px) {
	.header .header__notice-inner {
		gap: 8px;
	}
}

.header .header__notice img {
	width: 24px;
	height: 18px;
	object-fit: contain;
}

@media (max-width: 1023px) {
	.header .header__notice img {
		width: 19px;
		height: 14px;
	}
}

.header .header__bar {
	background: #F4F4F4 !important;
	padding-block: 13px;
}

.header .header__bar-inner {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 48px;
	padding-right: 10px;
}

@media (max-width: 1279px) {
	.header .header__bar-inner {
		gap: 20px;
	}
}

.header .header__utils {
	margin-right: auto;
}

.header .header__actions ul {
	display: flex;
	align-items: center;
	gap: 24px;
}

.header .header__actions a {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.4;
}

.header .header__main {
	background: #FFF !important;
	padding-block: 24px;
}

@media (min-width: 1024px) {
	.header.scrolled {
		margin-bottom: 104px;
	}

	.header.scrolled .header__main {
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
	}
}

@media (max-width: 1023px) {
	.header .header__main {
		padding-block: 12px;
	}
}

.header .header__main-inner {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 48px;
}

@media (max-width: 767px) {
	.header .header__main {
		padding-block: 32px 24px;
	}

	.header .header__main-inner {
		padding-inline: 10px;
	}
}

@media (max-width: 1279px) {
	.header .header__main-inner {
		gap: 20px;
		justify-content: space-between;
	}
}

.header .header__menu {
	flex: 1;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

@media (max-width: 1023px) {
	.header .header__menu {
		flex-direction: column;
		justify-content: flex-start;
		position: absolute;
		left: 0;
		right: 0;
		height: calc(100vh - 230px);
		overflow-y: auto;
		overflow-x: hidden;
		top: 142px;
		background: #FFF !important;
		visibility: hidden;
		gap: 40px;
		padding-bottom: 20px;
		opacity: 0;
		transition: opacity 250ms ease-out, visibility 250ms ease-out;
	}

	.header .header__menu > * {
		max-width: 290px;
		min-width: 290px;
	}

	body.nav-open .header .header__menu {
		visibility: visible;
		opacity: 1;
		transition: opacity 250ms ease-out, visibility 0ms;
	}
}

@media (max-width: 767px) {
	.header .header__menu {
		top: 230px;
		padding-top: 20px;
		padding-inline: 15px;
	}

	.header .header__notice--countdown ~ .header__main .header__menu {
		top: 252px;
	}
}

.header .header__cta {
	font-size: 14px;
	text-transform: none;
	color: var(--c-red-hex, red) !important;
	padding: 12px 24px;
	letter-spacing: normal;
}

.header a {
	color: var(--c-charcoal) !important;
}

@media (hover: hover) and (pointer: fine) {
	.header a:hover {
		color: var(--c-red-hex, red) !important;
	}

	.header .header__cta:hover {
		color: #FFF !important;
	}
}

.header .header__actions-mobile {
	flex: 0 1 112px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px 16px;
}

.header .header__actions-mobile a:first-child {
	font-size: 13px;
	font-weight: 700;
	color: var(--c-red-hex, red) !important;
	flex: 0 0 100%;
	text-align: right !important;
}

.header .header__search-mobile {
	max-width: none;
}

@media (max-width: 1023px) {
	.header .header__search-mobile {
		display: block;
	}
}

@media (max-width: 767px) {
	.header .header__search-mobile {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		height: 64px;
		padding-inline: 48px;
		padding-block: 12px;
		background: #F4F4F4 !important;
	}
}

@media (max-width: 370px) {
	.header .header__search-mobile {
		padding-inline: 15px;
	}
}

.header + .section-contacts,
.header-v2 + .section-contacts { padding-top: clamp(32px, 6vw, 80px); }
.header + .section-contacts .form-steps,
.header-v2 + .section-contacts .form-steps { border-top: 4px solid var(--c-red-hex); padding-top: clamp(16px, 3vw, 35px); }
.header + .section--gallery,
.header-v2 + .section--gallery { padding-top: clamp(32px, 5vw, 66px); }

/* ------------------------------------------------------------ *\
	Nav Trigger
\* ------------------------------------------------------------ */

.nav-trigger {
	z-index: 2;
}

.nav-trigger > div {
	position: relative;
	width: 17px;
	height: 14px;
}

.nav-trigger span {
	display: block;
	background-color: var(--c-red-hex, red) !important;
	width: 100%;
	height: 2px;
	position: absolute;
	left: 0;
	transition: top 150ms 200ms ease-in-out, bottom 150ms 200ms ease-out, transform 150ms 150ms ease-in-out, opacity 150ms 150ms ease-in-out;
}

.nav-trigger span:first-child {
	top: 0;
}

.nav-trigger span:nth-child(2) {
	top: 50%;
}

.nav-trigger span:last-child {
	bottom: 0;
}

body.nav-open .nav-trigger span {
	transition: top 150ms 0ms ease-in-out, bottom 150ms 0ms ease-out, transform 150ms 0ms ease-in-out, opacity 150ms 150ms ease-in-out;
}

body.nav-open .nav-trigger span:first-child {
	top: 50%;
}

body.nav-open .nav-trigger span:nth-child(2) {
	opacity: 0;
}

body.nav-open .nav-trigger span:last-child {
	bottom: 50%;
}

/* ------------------------------------------------------------ *\
	Nav
\* ------------------------------------------------------------ */

.nav {
	font-size: 14px;
	letter-spacing: 0.044em;
}

.nav > ul {
	display: flex;
	align-items: center;
	gap: 32px;
}

@media (max-width: 1279px) {
	.nav > ul {
		gap: 16px;
	}
}

@media (max-width: 1023px) {
	.nav > ul {
		flex-direction: column;
		align-items: flex-start;
	}
}

.nav li.menu-item--has-children {
	isolation: isolate;
	position: relative;
}

.nav > ul > li > a {
	text-transform: uppercase;
}

.nav > ul > li.menu-item--has-children > a {
	position: relative;
	padding-right: 16px;
}

@media (max-width: 1023px) {
	.nav > ul > li.menu-item--has-children {
		width: 100%;
	}

	.nav > ul > li.menu-item--has-children > a {
		position: static;
	}
}

.nav > ul > li.menu-item--has-children > a:after {
	content: '';
	position: absolute;
	right: 0;
	top: 45%;
	display: block;
	width: 6px;
	height: 6px;
	border: 1px solid var(--c-charcoal);
	border-width: 0 1px 1px 0;
	transition: transform 250ms ease-out;
	pointer-events: none;
}

@media (max-width: 1023px) {
	.nav > ul > li.menu-item--has-children a:after {
		top: 12px;
	}
}

.nav > ul > li.menu-item--has-children {
	filter: drop-shadow(0px 2px 10px rgba(0,0,0,.18));
}

.nav > ul > li > .submenu {
	position: absolute;
	top: 100%;
	left: 50%;
	background: #FFF !important;
	padding: 36px 32px 32px;
	min-width: 200px;
	margin-top: 22px;
	--arrow-position: 50%;
	clip-path: polygon(0 6px, calc(var(--arrow-position, 36px) - 6px) 6px, var(--arrow-position, 36px) 0, calc(var(--arrow-position, 36px) + 6px) 6px, 100% 6px, 100% 100%, 0 100%, 0 6px);
	visibility: hidden;
	outline: 1px solid #EEE;
	opacity: 0;
	transition: opacity 250ms ease-out, visibility 250ms;
}

@media (max-width: 1023px) {
	.nav > ul > li.menu-item--has-children {
		filter: none;
	}

	.nav > ul > li > .submenu {
		position: relative;
		top: unset;
		left: unset;
		clip-path: none;
		visibility: visible;
		opacity: 1;
		outline: none;
	}
}

.nav > ul > li:first-child > .submenu {
	left: -16px;
	--arrow-position: 36px;
}

@media (hover: hover) and (pointer: fine) {
	.nav > ul > li:hover > .submenu {
		visibility: visible;
		opacity: 1;
		transition: opacity 250ms ease-out, visibility 0ms;
	}
}

.nav > ul > li.menu-item--has-children:after {
	content: '';
	position: absolute;
	top: 100%;
	height: 28px;
	left: 0;
	right: 0;
	display: block;
}

@media (max-width: 1023px) {
	.nav > ul > li.menu-item--has-children:after {
		content: none;
	}
}

.nav .submenu a {
	font-size: 14px;
	letter-spacing: -0.015em;
}

.nav li.menu-item--cols > .submenu {
	display: flex;
	padding: 23px 0 4px;
}

@media (min-width: 1279px) {
	.nav li.menu-item--cols > .submenu {
		display: flex !important;
	}
}

@media (max-width: 1023px) {
	.nav li.menu-item--cols > .submenu {
		display: block;
	}
}

.nav li.menu-item--cols > .submenu > li {
	min-width: 182px;
	width: max-content;
	padding-block: 14px;
	padding-inline: 32px;
	position: relative;
}

.nav li.menu-item--cols > .submenu .submenu {
	line-height: 2;
}

.nav li.menu-item--cols > .submenu > li > a,
.nav li.menu-item--megamenu > .submenu > li > a {
	font-weight: 700;
	font-size: 15px;
	letter-spacing: 0.015em;
	margin-bottom: 10px;
	display: block;
}

.nav li.menu-item--cols > .submenu > li:not(:first-child):before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 1px;
	background: #EFEFEF !important;
}

@media (max-width: 1023px) {
	.nav li.menu-item--cols > .submenu > li:not(:first-child):before {
		content: none;
	}
}

.nav li.menu-item--banner {
	padding-block: 0 !important;
	padding-inline: 18px 14px !important;
}

@media (max-width: 1023px) {
	.nav li.menu-item--banner {
		display: none;
	}
}

.nav li.menu-item--banner a {
	position: relative;
}

.nav li.menu-item--banner:before {
	content: none !important;
}

.nav li.menu-item--banner span {
	position: absolute;
	display: block;
	bottom: 10px;
	left: 10px;
	right: 10px;
	font-size: 13px;
	letter-spacing: normal;
	padding-block: 12px;
}

.nav li.menu-item--banner img {
	display: block;
	aspect-ratio: 196 / 210;
	width: 100%;
	height: auto;
	object-fit: cover;
}

.nav li.menu-item--megamenu > .submenu {
	min-width: 640px;
}

@media (hover: hover) and (pointer: fine) {
	.nav li.menu-item--megamenu:hover > .submenu > li > .submenu > li.menu-item--default > .submenu {
		visibility: visible;
		z-index: 0;
	}
}

.nav li.menu-item--megamenu li {
	position: static;
}

.nav li.menu-item--megamenu li.menu-item--default {
	height: 0;
	visibility: hidden;
}

.nav li.menu-item--megamenu > .submenu > li {
	max-width: 43.5%;
	line-height: 2;
	border-right: 1px solid #000;
}

@media (max-width: 1023px) {
	.nav li.menu-item--megamenu > .submenu > li {
		border: none;
	}
}

.nav li.menu-item--megamenu > .submenu > li > a {
	margin-bottom: 5px;
}

.nav li.menu-item--megamenu > .submenu > li > .submenu > li > a {
	display: block;
	width: 100%;
	position: relative;
}

.nav li.menu-item--megamenu > .submenu > li > .submenu > li.menu-item--has-children > a:after {
	content: '';
	position: absolute;
	top: 55%;
	right: 14%;
	display: block;
	width: 6px;
	height: 6px;
	border: 1px solid #666;
	border-width: 1px 1px 0 0;
}

@media (max-width: 1023px) {
	.nav li.menu-item--megamenu > .submenu > li > .submenu > li.menu-item--has-children > a:after {
		content: none;
	}
}

.nav li.menu-item--megamenu > .submenu .submenu .submenu {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: 56%;
	padding: 36px 32px 32px;
	visibility: hidden;
	background: #FFF !important;
}

.nav li.menu-item--megamenu img {
	width: 54px;
	height: 36px;
	object-fit: cover;
	display: block;
}

.nav li.menu-item--megamenu > .submenu .submenu .submenu li:not(:last-child) {
	margin-bottom: 20px;
}

.nav li.menu-item--megamenu > .submenu .submenu .submenu a {
	display: flex;
	align-items: center;
	gap: 16px;
	font-size: 13px;
}

.nav li.menu-item--megamenu > .submenu .submenu .submenu a span {
	margin-top: 8px;
	letter-spacing: 0.005em;
	line-height: 1;
}

.nav li.menu-item--megamenu > .submenu .submenu .submenu h6 {
	font-size: 15px;
	font-weight: 700;
	line-height: 2;
	letter-spacing: 0.015em;
	margin-bottom: 16px;
	color: #353535 !important;
}

@media (hover: hover) and (pointer: fine) {
	.nav a:hover {
		text-decoration: none;
	}

	.nav li.menu-item--megamenu > .submenu .submenu .submenu a:hover {
		text-decoration: underline;
	}

	.nav li.menu-item--megamenu > .submenu > li > .submenu > li:hover > .submenu {
		visibility: visible;
		z-index: 1;
	}
}

@media (max-width: 1023px) {
	.nav .submenu.submenu.submenu.submenu {
		padding: 0;
		left: 0;
	}

	.nav > ul > li > .submenu.submenu.submenu.submenu {
		display: none;
	}

	.nav .submenu.submenu.submenu.submenu li {
		padding: 0;
		width: 100%;
	}
}

/* ------------------------------------------------------------ *\
	Nav-Utils
\* ------------------------------------------------------------ */

.nav-utils ul {
	display: flex;
	gap: 16px;
}

@media (max-width: 1023px) {
	.nav-utils ul {
		flex-direction: column;
	}
}

.nav-utils a {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.4;
}

.nav-utils a[href^="tel:"] {
	color: var(--c-red-hex, red) !important;
}

.nav-utils li:not(:first-child) {
	padding-left: 18px;
	position: relative;
}

.nav-utils li:not(:first-child):before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 1px;
	background: #000 !important;
}

@media (max-width: 1023px) {
	.nav-utils li:not(:first-child) {
		padding-left: 0;
	}

	.nav-utils li:not(:first-child):before {
		content: none;
	}
}

/* ------------------------------------------------------------ *\
	Search
\* ------------------------------------------------------------ */

.search {
	position: relative;
}

.search form {
	position: relative;
}

.search .search__field {
	appearance: none;
	background: #FFF !important;
	border: 1px solid #DDD;
	padding-inline: 40px 16px;
	height: 40px;
	border-radius: 23px;
	font-size: 14px;
	min-width: 255px;
}

@media (max-width: 767px) {
	.search .search__field {
		width: 100%;
	}
}

.search .search__btn {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 42px;
	display: block;
	appearance: none;
	background: none !important;
	border: none;
	display: grid;
	place-content: center;
}

/* ------------------------------------------------------------ *\
	Hero
\* ------------------------------------------------------------ */

@media (max-width: 767px) {
	.hero {
		background: #FFF !important;
	}
}

.hero .hero__shell {
	padding-right: 80px;
}

@media (max-width: 1023px) {
	.hero .hero__shell {
		padding-right: var(--shell-gutter-tablet);
	}
}

@media (max-width: 767px) {
	.hero .hero__shell {
		padding-inline: var(--shell-gutter-mobile);
	}
}

.hero .hero__inner {
	display: flex;
}

@media (max-width: 767px) {
	.hero .hero__inner {
		flex-direction: column-reverse;
	}
}

.hero .hero__media {
	height: auto;
	flex: 0 1 805px;
	display: flex;
	margin-left: calc(var(--shell-gutter-large) * -1);
}

@media (max-width: 1023px) {
	.hero .hero__media {
		flex: 0 1 100%;
	}
}

@media (max-width: 767px) {
	.hero .hero__media {
		margin-inline: calc(-1 * var(--shell-gutter-mobile));
	}
}

.hero .hero__slider {
	width: 100%;
	display: flex;
}

.hero .hero__aside {
	flex: 0 1 554px;
	margin-left: -72px;
	display: flex;
	align-self: center;
	align-items: center;
	padding: 48px 0;
	position: relative;
	z-index: 2;
}

@media (max-width: 1023px) {
	.hero .hero__aside {
		flex: 0 1 100%;
	}
}

@media (max-width: 767px) {
	.hero .hero__aside {
		padding-block: 0;
		margin: 0;
	}
}

.hero .hero__content {
	background-color: #fff !important;
	padding: 63px 72px 52px;
	text-align: left;
}

@media (max-width: 767px) {
	.hero .hero__content {
		background: none !important;
		padding: 42px 0 40px;
	}

	.hero .hero__content * {
		text-align: center !important;
	}
}

.hero .hero__aside .hero__intro {
	font-family: var(--ff-play-fair, 'sans-serif');
	font-size: 46px;
	line-height: 1.17;
	color: var(--c-red-hex, red);
	font-style: italic;
}

@media (max-width: 767px) {
	.hero .hero__aside .hero__intro {
		font-size: 32px;
		line-height: 1.375;
	}
}

.hero .hero__aside .hero__intro strong {
	font-weight: 400;
}

.hero .hero__intro + .hero__entry {
	margin-top: 8px;
}

@media (max-width: 767px) {
	.hero .hero__entry {
		font-size: 16px;
	}

	.hero .hero__intro + .hero__entry {
		margin-top: 15px;
	}
}

.hero .hero__aside .hero__entry + .hero__actions {
	margin-top: 24px;
}

@media (max-width: 767px) {
	.hero .hero__actions a {
		display: block;
	}
}

.hero .hero__title:not(:last-child) { margin-bottom: 20px; }
.hero .hero__title h6 { font-size: 14px; color: var(--c-red-hex); font-weight: 700; margin-bottom: 16px; }
.hero .hero__title h2 { font-size: clamp(22px, 3vw, 32px); margin-bottom: 16px; font-weight: 700; font-family: var(--ff-nunito-sans); }
.hero .hero__title h2 a { color: var(--c-charcoal); }
.hero .hero__title > *:last-child { margin-bottom: 0; }
.hero .hero__title + .hero__entry { font-size: 16px; }

@media (hover) and (pointer: fine) {
	.hero .hero__title h2 a:hover { color: var(--c-red-hex); text-decoration: none; }
}

@media (max-width: 767px) {
	.hero .hero__title h6 { margin-bottom: 22px; }
	.hero .hero__title:not(:last-child) { margin-bottom: 10px; }
}

.hero .hero__meta { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-top: 16px; }
.hero .hero__meta > i { display: block; width: 1px; height: 16px; background-color: #ccc; font-size: 0; line-height: 0; text-indent: -4000px; }
.hero .hero__meta > p { color: #7a736d; font-size: 14px; line-height: 1.57; display: flex; align-items: center; gap: 4px; }


.hero--alt { width: auto; margin-inline: 36px; box-shadow: 0 0 0 40px white; position: relative; z-index: 10; background: white; }
.hero--alt .hero__aside { flex: 0 1 100%; max-width: 708px; margin-left: -36px; }
.hero--alt .hero__media { margin-left: 0; }
.hero--alt .hero__shell { padding-right: 36px; padding-left: 0; }
.hero--alt .hero__content { padding: 51px 60px 48px; }
.hero--alt + section.section-articles.accordion-faq,
.hero--alt + .section-articles.background-white.padding-block-normal { margin-top: 0; padding-top: clamp(40px, 4vw, 60px); padding-bottom: clamp(48px, 6vw, 80px); }

@media (max-width: 767px) {
	.hero--alt { margin-inline: 16px; }
	.hero--alt .hero__inner { flex-direction: column; }
	.hero--alt .hero__aside { max-width: 100%; margin-left: 0; }
	.hero--alt .hero__shell { padding-right: 0; background: white; }
	.hero--alt .hero__content { padding: 16px 0 0 0; }
	.hero--alt .hero__content * { text-align: left !important; }
	.hero--alt .hero__media { margin: 0; }
	.hero--alt .hero__entry > p:last-child { display: -webkit-box; -webkit-line-clamp: 3; line-clamp: 3; -webkit-box-orient: vertical; position: relative; overflow: hidden; }
	.hero--alt .slider-images-alt .slider__slide { aspect-ratio: 1 / 0.56; }
	.hero--alt + section.section-articles { margin-top: -20px; }
	.hero--alt.background-white + section.section-articles.background-white { margin-top: 0; position: relative; z-index: 10; }
}

/* ------------------------------------------------------------ *\
	Slider-images
\* ------------------------------------------------------------ */
.slider-images-alt {
	height: auto;
	display: flex;
	width: 100%;
}

.slider-images-alt .slider__clip {
	width: 100%;
}

.slider-images-alt .slider__slide {
	position: relative;
	width: 100% !important;
	height: 100%;
	aspect-ratio: 805 / 488;
}

.slider-images-alt .slider__slide img {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	object-fit: cover;
}

.slider-images-alt .slider__pagination {
	line-height: 1;
	bottom: 24px !important;
	text-align: center !important;
}

@media (max-width: 767px) {
	.slider-images-alt .slider__pagination {
		bottom: 16px !important;
	}
}

.slider-images-alt .slider__pagination .swiper-pagination-bullet {
	background-color: rgba(255, 255, 255, .6) !important;
	opacity: 1;
	line-height: 1;
	transition: background-color .3s;
	width: 12px;
	height: 12px;
	margin: 0 6px;
}

.slider-images-alt .slider__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active,
.slider-images-alt .slider__pagination .swiper-pagination-bullet:hover {
	background-color: rgba(255, 255, 255, 1) !important;
	opacity: 1;
}

/* ------------------------------------------------------------ *\
	Section-intro
\* ------------------------------------------------------------ */
.section-intro {
	background-color: #fff !important;
	padding: 70px 0 45px;
}

@media (max-width: 767px) {
	.section-intro {
		padding-block: 32px 50px;
	}
}

.section-intro .section__inner {
	display: flex;
	margin: 0 -10px;
	justify-content: space-between;
	align-items: flex-end;
}

@media (max-width: 767px) {
	.section-intro .section__inner {
		display: block;
	}
}

.section-intro .section__main {
	flex: 0 1 678px;
	padding: 0 10px;
	text-align: left;
}

@media (max-width: 1023px) {
	.section-intro .section__main {
		flex: 0 1 50%;
	}
}

.section-intro .section__title {
	line-height: 1.2 !important;
}

.section-intro .section__title span {
	display: inline-block;
}

.section-intro .section__title + .section__entry {
	margin-top: 16px;
}

@media (max-width: 767px) {
	.section-intro .section__entry {
		line-height: 1.55;
	}
}

.section-intro .section__entry p:not(:last-child) {
	margin-bottom: 16px;
}

.section-intro .section__entry a {
	color: var(--c-red-hex, red) !important;
}

.section-intro .section__aside {
	flex: 0 0 384px;
	padding: 0 10px 4px;
	text-align: left;
}

@media (max-width: 1023px) {
	.section-intro .section__aside {
		flex: 0 0 50%;
	}
}

@media (max-width: 767px) {
	.section-intro .section__aside {
		margin-top: 40px;
	}
}

.section-intro .section__items .section__item {
	padding: 12px 0;
}

.section-intro .section__items .section__item:last-child {
	padding-bottom: 0;
}

.section-intro .section__items .section__item + .section__item {
	border-top: 1px solid var(--c-lightgray);
}

/* ------------------------------------------------------------ *\
	Title-two-colors
\* ------------------------------------------------------------ */

.title-two-colors > * {
	line-height: 1.5;
}

.title-two-colors .title__charcoal-normal {
	color: var(--c-charcoal);
	font-style: normal;
	font-size: 20px;
	text-transform: uppercase;
	font-weight: 700;
	font-family:var(--ff-montserrat, 'sans-serif');
}

@media (max-width: 767px) {
	.title-two-colors .title__charcoal-normal {
		line-height: 1.1875;
		font-size: 16px;
	}
}

.title-two-colors .title__red-italic {
	color: var(--c-red-hex, red);
	font-style: italic;
	font-size: 36px;
	line-height: 1.43;
	text-transform: capitalize;
	font-family: var(--ff-play-fair, 'sans-serif')
}

@media (max-width: 767px) {
	.title-two-colors .title__red-italic {
		font-size: 28px;
	}
}

/* ------------------------------------------------------------ *\
	Tile-tip
\* ------------------------------------------------------------ */
.tile-tip {
	display: inline-flex;
	text-align: left;
	align-items: center;
	text-decoration: none;
	position: relative;
}

.tile-tip .tile__info {
	position: absolute;
	width: 288px;
	background-color: #fff !important;
	padding: 20px 24px;
	bottom: 94%;
	left: 38px;
	box-shadow: 0px 0px 15px 5px rgba(0, 0, 0, .16);
	font-size: 16px;
	line-height: 1.38;
	font-family: var(--ff-nunito-sans, 'sans-serif');
	font-weight: 400;
	transform: translateY(25%);
	opacity: 0;
	visibility: hidden;
	transition: transform, opacity, visibility;
	transition-duration: .3s;
}

.tile-tip .tile__info a {
	color: var(--c-red-hex, red) !important;
}

.tile-tip .tile__info:after {
	content: '';
	position: absolute;
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	border-top: 10px solid #fff;
	left: 50%;
	top: 100%;
	transform: translateX(-50%);
}

.tile-tip .tile__ico {
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: rgba(217, 32, 30, .1) !important;
	flex: 0 0 72px;
	height: 72px;
	border-radius: 50%;
}

@media (max-width: 767px) {
	.tile-tip .tile__ico {
		flex: 0 0 64px;
		height: 64px;
	}
}

/*  TIle__ico--rotate  */
.tile-tip .tile__ico--rotate {
	transform: rotate(-45deg);
}

.tile-tip .tile__ico img {
	max-width: 35px;
	height: auto;
	vertical-align: middle;
}

.tile-tip .tile__ico + .tile__text {
	margin-left: 24px;
}

.tile-tip .tile__text {
	display: inline-block;
	width: max-content;
	color: var(--c-charcoal);
	font-size: 18px;
	line-height: 1.33;
	font-family: var(--ff-nunito-sans, 'sans-serif');
	font-weight: 700;
}

.tile-tip .tile__text p {
	width: max-content;
	position: relative;
	padding-right: 28px;
}

.tile-tip .tile__text p:after {
	content: '';
	position: absolute;
	right: 0;
	top: 5px;
	width: 14px;
	height: 14px;
	/* background-image: url('data:image/svg+xml,<svg width="14px" height="14px" viewBox="0 0 14 14" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><g id="Redesign" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><g id="KCK---Homepage-V2" transform="translate(-1205, -923)" fill="%23D9201E" fill-rule="nonzero"><g id="help_FILL0_wght600_GRAD0_opsz48" transform="translate(1205, 923)"><path d="M7.04221954,10.9433052 C7.2336148,10.9433052 7.39967833,10.8729393 7.54041013,10.7322075 C7.68114194,10.5914757 7.75150784,10.4197829 7.75150784,10.2171291 C7.75150784,10.0257338 7.68114194,9.85967029 7.54041013,9.71893848 C7.39967833,9.57820667 7.2336148,9.50784077 7.04221954,9.50784077 C6.83956574,9.50784077 6.66787294,9.57820667 6.52714113,9.71893848 C6.38640933,9.85967029 6.31604343,10.0257338 6.31604343,10.2171291 C6.31604343,10.4197829 6.38640933,10.5914757 6.52714113,10.7322075 C6.66787294,10.8729393 6.83956574,10.9433052 7.04221954,10.9433052 Z M6.36670688,8.47768396 L7.51507841,8.47768396 C7.51507841,8.19622035 7.55166868,7.93445919 7.62484922,7.69240048 C7.69802975,7.45034178 7.91475674,7.17732207 8.27503016,6.87334138 C8.61278649,6.61439485 8.85203056,6.33856051 8.99276236,6.04583836 C9.13349417,5.7531162 9.20386007,5.43224769 9.20386007,5.08323281 C9.20386007,4.47527141 9.01527945,3.98552473 8.63811821,3.61399276 C8.26095698,3.2424608 7.75150784,3.05669481 7.10977081,3.05669481 C6.53558504,3.05669481 6.02613591,3.20587053 5.5814234,3.50422195 C5.1367109,3.80257338 4.81302774,4.21069562 4.61037394,4.72858866 L5.65741858,5.11700844 C5.79252111,4.79051066 5.97828709,4.54282268 6.21471653,4.37394451 C6.45114596,4.20506634 6.72135103,4.12062726 7.02533172,4.12062726 C7.34057097,4.12062726 7.60514676,4.21351025 7.81905911,4.39927624 C8.03297145,4.58504222 8.13992762,4.82428629 8.13992762,5.11700844 C8.13992762,5.34217933 8.07237636,5.56172095 7.93727382,5.77563329 C7.80217129,5.98954564 7.61077604,6.19782871 7.36308806,6.40048251 C7.03659027,6.68194612 6.78890229,6.97466828 6.62002413,7.27864897 C6.45114596,7.58262967 6.36670688,7.982308 6.36670688,8.47768396 L6.36670688,8.47768396 Z M6.99155609,14 C6.03457982,14 5.13108162,13.8170487 4.28106152,13.451146 C3.43104142,13.0852433 2.68797748,12.584238 2.05186972,11.9481303 C1.41576196,11.3120225 0.914756735,10.5717732 0.548854041,9.72738239 C0.182951347,8.88299156 0,7.97667873 0,7.00844391 C0,6.04020909 0.182951347,5.13108162 0.548854041,4.28106152 C0.914756735,3.43104142 1.41294733,2.69079212 2.04342581,2.06031363 C2.6739043,1.42983514 3.4141536,0.928829916 4.2641737,0.557297949 C5.11419381,0.185765983 6.02332127,0 6.99155609,0 C7.95979091,0 8.87173301,0.185765983 9.72738239,0.557297949 C10.5830318,0.928829916 11.3232811,1.42702051 11.9481303,2.05186972 C12.5729795,2.67671894 13.0711701,3.4141536 13.4427021,4.2641737 C13.814234,5.11419381 14,6.02895054 14,7.00844391 C14,7.97667873 13.814234,8.88580619 13.4427021,9.7358263 C13.0711701,10.5858464 12.5701649,11.3260957 11.9396864,11.9565742 C11.3092079,12.5870527 10.5717732,13.0852433 9.72738239,13.451146 C8.88299156,13.8170487 7.97104946,14 6.99155609,14 Z M6.99155609,12.6658625 C8.56775231,12.6658625 9.90470446,12.1141938 11.0024125,11.0108565 C12.1001206,9.9075191 12.6489747,8.57338158 12.6489747,7.00844391 C12.6489747,5.43224769 12.1001206,4.09529554 11.0024125,2.99758745 C9.90470446,1.89987937 8.56775231,1.35102533 6.99155609,1.35102533 C5.42661842,1.35102533 4.0924809,1.89987937 2.98914355,2.99758745 C1.88580619,4.09529554 1.33413752,5.43224769 1.33413752,7.00844391 C1.33413752,8.57338158 1.88580619,9.9075191 2.98914355,11.0108565 C4.0924809,12.1141938 5.42661842,12.6658625 6.99155609,12.6658625 Z" id="Shape"></path></g></g></g></svg>'); */
	background-size: 100% 100%;
	background-repeat: no-repeat;
	opacity: .6;
	transition: opacity .3s;
}


.tile-tip:hover .tile__info {
	transform: translateY(0);
	opacity: 1;
	visibility: visible;
}

.tile-tip:hover .tile__text p:after {
	opacity: 1;
}

@media (max-width: 767px) {
	.tile-tip .tile__text {
		font-size: 16px;
	}
}

/* ------------------------------------------------------------ *\
	Section-columns
\* ------------------------------------------------------------ */
.section-columns {
	position: relative;
	padding: 50px 0 40px;
}

.section-columns:after {
	content: '';
	position: absolute;
	width: 100%;
	height: 277px;
	top: 0;
	left: 0;
	background-color: #fff !important;
	z-index: 1;
}

.section-columns .article-list .article__actions a.btn-alt { background: var(--c-red-hex) !important; color: white !important; }

@media (hover) and (pointer: fine) {
	.section-columns .article-list .article__actions a.btn-alt:hover { background: white !important; color: var(--c-red-hex) !important; }
}

@media (max-width: 767px) {
	.section-columns {
		padding-block: 55px 30px;
	}

	.section-columns:after {
		content: none;
	}
}

.section-columns .section__inner {
	position: relative;
	z-index: 2;
	display: flex;
	margin: 0 -10px;
	row-gap: 40px;
}

@media (max-width: 767px) {
	.section-columns .section__inner {
		display: block;
	}
}

.section-columns .section__inner .section__item {
	flex: 0 1 50%;
	padding: 0 10px;
	display: flex;
}

@media (max-width: 767px) {
	.section-columns .section__inner .section__item + .section__item {
		margin-top: 30px;
	}
}

/* ------------------------------------------------------------ *\
	Article-list
\* ------------------------------------------------------------ */
.article-list {
	height: auto;
	display: flex;
	flex-direction: column;
	padding: 20px 0 52px;
	background-color: #fff !important;
	text-align: left;
	box-shadow: 0px 0px 15px 5px rgba(0, 0, 0, .12);
}

.article-list .article__title {
	text-align: center;
	background-color: #fff !important;
	padding: 0 50px 19px;
}

@media (max-width: 1023px) {
	.article-list .article__title {
		padding: 0 25px 19px;
	}
}

@media (max-width: 767px) {
	.article-list {
		padding-block: 25px 40px;
	}

	.article-list .article__title {
		padding-bottom: 25px;
	}
}

.article-list .article__title h2 {
	font-family: var(--ff-montserrat, 'sans-serif');
	font-size: 20px;
	line-height: 1.6;
	font-weight: 700;
	text-transform: uppercase;
	text-align: center !important;
}

@media (max-width: 767px) {
	.article-list .article__title h2 {
		font-size: 16px;
		line-height: 1.5;
	}
}

.article-list .article__title-red {
	color: var(--c-red-hex, red);
}

.article-list .article__title-charcoal {
	color: var(--c-charcoal);
}

.article-list .article__image {
	width: 100%;
	aspect-ratio: 554 / 347;
	position: relative;
}

.article-list .article__image img {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	object-fit: cover;
}

.article-list .article__content {
	background-color: #fff !important;
	padding: 42px 50px 0;
	font-family: var(--ff-nunito-sans, 'sans-serif');
	font-size: 18px;
	line-height: 1.65;
}

@media (max-width: 1023px) {
	.article-list .article__content {
		padding: 30px;
	}
}

@media (max-width: 767px) {
	.article-list .article__content {
		padding-inline: 24px;
		font-size: 16px;
		line-height: 1.75;
	}
}

.article-list .article__entry + .article__list {
	margin-top: 32px;
}

.article-list .article__list {
	font-weight: 700;
}

@media (max-width: 767px) {
	.article-list .article__entry + .article__list {
		margin-top: 35px;
	}
}

.article-list .article__list ul {
	list-style-type: none;
}

.article-list .article__list li {
	display: flex;
	align-items: flex-start;
}

.article-list .article__list-ico {
	flex: 0 0 28px;
}

.article-list .article__list-ico img {
	max-width: 28px;
	height: auto;
	vertical-align: middle;
}

.article-list .article__list-entry {
	margin-left: 24px;
	line-height: 1.4;
	letter-spacing: 0.01em;
}

@media (max-width: 767px) {
	.article-list .article__list-entry {
		margin-top: 5px;
		line-height: 1.5;
	}
}

.article-list .article__list li + li {
	margin-top: 26px;
}

@media (max-width: 767px) {
	.article-list .article__list li + li {
		margin-top: 12px;
	}
}

.article-list .article__content + .article__actions {
	margin-top: 50px;
}

.article-list .article__actions {
	padding: 0 50px;
	flex-grow: 1;
	display: flex;
	align-items: flex-end;
}

@media (max-width: 1023px) {
	.article-list .article__actions {
		padding-inline: 20px;
	}
}

@media (max-width: 767px) {
	.article-list .article__content + .article__actions {
		margin-top: 8px;
	}
}

.article-list .article__btn {
	width: 100%;
}

/* ------------------------------------------------------------ *\
	Btn-alt
\* ------------------------------------------------------------ */
.btn-alt {
	display: block;
	font-family: var(--ff-nunito-sans, 'sans-serif');
	font-weight: 600;
	font-size: 16px;
	line-height: 1.38;
	letter-spacing: 2px;
	text-decoration: none;
	text-align: center;
	text-transform: uppercase;
	text-align: center !important;
	background-color: transparent !important;
	border: 1px solid var(--c-red-hex, red);
	border-radius: 4px;
	padding: 16px 25px;
	color: var(--c-red-hex, red) !important;
	transition: color, background-color;
	transition-duration: .3s !important;
}

.btn-alt:hover {
	color: #fff !important;
	background-color: var(--c-red-hex, red) !important;
	text-decoration: none;
}

/*  Btn-alt--red  */
.btn-alt--red {
	background-color: var(--c-red-hex, red) !important;
	color: #fff !important;
	transition: background-color, color;
	transition-duration: .3s;
}

.btn-alt--red:hover {
	background-color: #fff !important;
	color: var(--c-red-hex, red) !important;
}

/*  Btn-alt--white  */
.btn-alt--white {
	background-color: #fff !important;
	color: var(--c-red-hex, red) !important;
	border-color: #fff;
	transition: color, background-color, border-color;
	transition-duration: .3s;
	padding: 16px clamp(17px, 2vw, 23px);
}

.btn-alt--white:hover {
	background-color: inherit !important;
	color: #fff !important;
	border-color: #fff;
}

/*  Btn-alt--inline  */
.btn-alt--inline {
	display: inline-block;
}

/*  Btn-alt--uppercase  */
.btn-alt--uppercasse {
	text-transform: uppercase;
}

/* ------------------------------------------------------------ *\
	Btn-Cart
\* ------------------------------------------------------------ */

.btn-cart {
	gap: 4px !important;
}

.btn-cart img {
	margin-right: 8px;
}

.btn-cart:after {
	content: '(' attr(data-items) ')';
	display: inline-block;
}

/* ------------------------------------------------------------ *\
	Btn-Mobile
\* ------------------------------------------------------------ */

.btn-mobile {
	display: grid;
	width: 48px;
	height: 48px;
	place-content: center;
	border: 1px solid #979797;
	border-radius: 2px;
}

.btn-mobile.active {
	border-color: var(--c-red-hex, red);
}

/* ------------------------------------------------------------ *\
	Link-arrow
\* ------------------------------------------------------------ */

.link-arrow {
	display: inline-block;
	padding-right: 23px;
	color: var(--c-red-hex, red) !important;
	font-family: var(--ff-nunito-sans, 'sans-serif');
	font-weight: 600;
	font-size: 18px;
	line-height: 1.67;
	text-transform: capitalize;
	text-decoration: none;
	position: relative;
}

.link-arrow:before {
	content: '';
	position: absolute;
	right: 0;
	top: 15px;
	width: 11px;
	height: 1px;
	background-color: currentColor;
	transition: transform .3s;
}

.link-arrow:after {
	content: '';
	position: absolute;
	right: 0;
	top: 13px;
	width: 5px;
	height: 5px;
	border-bottom: 1px solid currentColor;
	border-right: 1px solid currentColor;
	transform: rotate(-45deg);
	transition: transform .3s;
}

.link-arrow:hover {
	text-decoration: none;
}

.link-arrow:hover::before{
	transform: translateX(5px);
}

.link-arrow:hover::after {
	transform: translateX(5px) rotate(-45deg);
}

/* ------------------------------------------------------------ *\
	Section-tiles
\* ------------------------------------------------------------ */
.section-tiles {
	padding: 35px 0 128px;
}

@media (max-width: 767px) {
	.section-tiles {
		padding-block: 20px 60px;
	}
}

.section-tiles .section__inner {
	display: flex;
	justify-content: space-between;
	margin: 0 -10px;
}

@media (max-width: 767px) {
	.section-tiles .section__inner {
		display: block;
	}
}

.section-tiles .section__body {
	flex: 0 1 767px;
	padding: 0 10px;
}

@media (max-width: 1023px) {
	.section-tiles .section__body {
		flex: 0 1 75%;
	}
}

.section-tiles .section__head + .section__entry {
	margin-top: 19px;
}

.section-tiles .section__entry {
	letter-spacing: -0.0025em;
}

.section-tiles .section__entry a {
	color: var(--c-red-hex, red) !important;
}

@media (max-width: 767px) {
	.section-tiles .section__head + .section__entry {
		margin-top: 22px;
	}

	.section-tiles .section__entry {
		font-size: 16px;
		line-height: 1.5;
	}
}

.section-tiles .section__actions {
	flex: 0 1 auto;
	padding: 0 10px;
	align-self: flex-end;
}

@media (max-width: 767px) {
	.section-tiles .section__body + .section__actions {
		margin-top: 25px;
	}
}

.section-tiles .section__bar + .section__items {
	margin-top: 49px;
}

.section-tiles .section__items {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 25px;
}

@media (max-width: 1023px) {
	.section-tiles .section__items {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 767px) {
	.section-tiles .section__bar + .section__items {
		margin-top: 30px;
	}

	.section-tiles .section__items {
		gap: 18px 20px;
	}
}

@media (max-width: 370px) {
	.section-tiles .section__items {
		grid-template-columns: 1fr;
	}
}

/* ------------------------------------------------------------ *\
	Tile-img-text
\* ------------------------------------------------------------ */
.tile-img-text {
	position: relative;
	width: 100%;
	aspect-ratio: 361 / 340;
	padding: 22px 32px;
	display: flex;
	align-items: flex-end;
}

@media (max-width: 767px) {
	.tile-img-text {
		padding: 10px 15px;
	}
}

.tile-img-text:after {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, .6) 100%);
	z-index: 2;
	opacity: 1;
	transition: opacity .3s linear;
}

.tile-img-text:before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: rgba(0, 0, 0, .5);
	z-index: 3;
	opacity: 0;
	transition: opacity .3s linear;
}

.tile-img-text a {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 5;
}

.tile-img-text img {
	position: absolute;
	z-index: 1;
}

.tile-img-text .tile-title {
	position: relative;
	z-index: 4;
	font-size: 18px;
	line-height: 1.22;
	font-weight: 700;
	color: #fff;
	text-transform: uppercase;
	font-family: var(--ff-montserrat, 'sans-serif');
}

@media (max-width: 767px) {
	.tile-img-text .tile-title {
		font-size: 16px;
	}
}

.tile-img-text:hover::after {
	opacity: 0;
	transition: opacity .3s;
}

.tile-img-text:hover::before {
	opacity: 1;
	transition: opacity .3s;

}

/* ------------------------------------------------------------ *\
	Image-fit
\* ------------------------------------------------------------ */

.image-fit {
	overflow: hidden;
	position: relative;
	background-size: cover;
	background-position: center;
}

.image-fit img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* ------------------------------------------------------------ *\
	Section-cta
\* ------------------------------------------------------------ */

.section-cta {
	background-color: var(--c-darkred-hex) !important;
	margin: 65px 0 0;
}

@media (max-width: 767px) {
	.section-cta {
		margin-top: 100px;
	}
}

.section-cta .section__inner {
	display: flex;
	margin: 0 -30px;
	justify-content: space-between;
}

@media (max-width: 1023px) {
	.section-cta .section__inner {
		flex-direction: column-reverse;
	}
}

.section-cta .section__main {
	flex: 0 1 518px;
	color: #fff;
}

.section-cta .section__main:not([class*="padding-block"]) {
	padding: 82px 30px 80px;
}

@media (max-width: 1023px) {
	.section-cta .section__main {
		flex: none;
	}

	.section-cta .section__main:not([class*="padding-block"]) {
		padding-top: 90px;
	}
}

.section-cta .section__head h2 {
	font-family: var(--ff-play-fair, 'sans-serif');
	font-style: italic;
	font-size: 36px;
	font-weight: 400;
	line-height: 1.11;
}

@media (max-width: 767px) {
	.section-cta .section__head h2 {
		font-size: 28px;
		line-height: 1.43;
	}

	.section-cta .section__head p {
		line-height: 1.62;
	}
}

.section-cta .section__head + .section__body {
	margin-top: 18px;
}

@media (max-width: 767px) {
	.section-cta .section__head + .section__body {
		margin-top: 14px;
	}
}

.section-cta .section__body {
	letter-spacing: -0.0025em;
}

@media (max-width: 767px) {
	.section-cta .section__body {
		font-size: 16px;
		line-height: 1.62;
	}
}

.section-cta .section__body + .section__form {
	margin-top: 40px;
}

.section-cta .section__action:not(:first-child) {
	margin-top: 40px;
}

.section-cta .section__media {
	flex: 0 1 590px;
	padding: 0 30px;
}

@media (max-width: 1023px) {
	.section-cta .section__media {
		flex: none;
	}
}

.section-cta .section__images {
	margin-right: -26px;
}

@media (max-width: 1023px) {
	.section-cta .section__images {
		margin: 0;
	}
}

.section-cta .section__image {
	border: clamp(15px, 2vw, 21px) solid #fff;
	max-width: 405px;
	width: 100%;
	aspect-ratio: 444 / 279;
}

.section-cta .section__image--top {
	transform: rotate(8deg);
	margin-left: auto;
	margin-top: 14px;
}

.section-cta .section__image--top:first-child:last-child {
	border-width: clamp(26px, 4vw, 50px);
	max-width: 550px;
	margin-top: 17px;
	box-shadow: 0px 0px 39.6px 0px rgba(0, 0, 0, 0.20);
	transform: rotate(12deg);
}

@media (max-width: 767px) {
	.section-cta .section__image--top:first-child:last-child {
		transform: rotate(6deg);
		margin-top: 48px;
		margin-bottom: 10px;
	}
}

.section-cta .section__image--bottom {
	transform: rotate(345deg);
	margin-top: -75px;
	margin-bottom: -12px;
	margin-left: auto;
	margin-right: 70px;
}

@media (max-width: 1023px) {
	.section-cta .section__image--bottom {
		margin-top: -30%;
	}
}

@media (max-width: 575px) {
	.section-cta .section__image {
		max-width: 245px;
		border-width: 8px;
	}

	.section-cta .section__image--top {
		margin-top: -90px;
		margin-right: 25px;
	}

	.section-cta .section__image--bottom {
		margin-top: -50px;
		margin-left: 32px;
		margin-bottom: -30px;
	}
}

.section-cta:not([class*="background-"]) .form-subscribe .field,
.section-cta:not([class*="background-"]) .form-subscribe .field::placeholder {
	color: white;
}

	/*
		-- Gray background
	*/

.section-cta.background-light-gray {
	background-color: var(--c-lightgray) !important;
	padding-block: clamp(60px, 6vw, 80px);
}

.section-cta.background-light-gray .section__main {
	color: var(--c-charcoal);
	padding-top: 0;
	padding-bottom: 0;
}

.section-cta.background-light-gray .section__inner {
	align-items: center;
}

.section-cta.background-light-gray .section__head h2 {
	color: var(--c-red-hex);

}

.section-cta.background-light-gray .section__image {
	aspect-ratio: 360 / 226;
	max-width: 401px;
	box-shadow: 0px 0px 20.418px 0px rgba(0, 0, 0, 0.12);
	border-width: clamp(11px, 2vw, 20px);
}

.section-cta.background-light-gray .section__image--top {
	margin-top: -88px;
}

.section-cta.background-light-gray .section__image--bottom {
	margin-top: -75px;
	margin-bottom: -65px;
	margin-left: auto;
	margin-right: clamp(1px, 7vw, 70px);
}

.section-cta.background-light-gray .form-subscribe .field { background-color: white; color: #7a736d; }

@media (max-width: 1024px) {
	.section-cta.background-light-gray .section__inner {
		align-items: normal;
	}

	.section-cta.background-light-gray .section__image--top {
		margin-top: -113px;
	}

	.section-cta.background-light-gray .section__image--bottom {
		margin-top: -71px;
		margin-bottom: 60px;
		margin-left: 27px;
		margin-right: auto;
	}
}

@media (max-width: 767px) {
	.section-cta.background-light-gray .section__body p {
		line-height: 1.625;
	}

	.section-cta.background-light-gray .section__head + .section__body {
		margin-top: 18px;
	}
}

@media (max-width: 575px) {
	.section-cta.background-light-gray .section__image {
		max-width: 245px;
	}
}

.section-cta--alt,
.section-cta--alt .section__inner {
	margin: 0;
	position: relative;
	z-index: 10;
}

.section-cta--alt .section__media {
	padding: 0;
}

.section-cta--alt .section__main {
	padding-right: 10px;
}

@media (max-width: 1024px) {
	.section-cta--alt .section__main {
		padding-inline: 8px;
	}
}

@media (max-width: 767px) {
	.section-cta--alt {
		padding-bottom: 14px;
	}

	.section-cta--alt .section__media {
		padding-inline: 18px;
	}
}

/* ------------------------------------------------------------ *\
	Form-subscribe
\* ------------------------------------------------------------ */

.form-subscribe {
	color: #fff;
	font-family: var(--ff-nunito-sans, 'sans-serif');
	font-weight: 400;
	font-size: 16px;
	line-height: 1.88;
}

.form-subscribe .field {
	background-color: transparent;
	appearance: none;
	border: 1px solid #fff;
	border-radius: 4px;
	height: 54px;
	width: 100%;
	padding: 0 15px;
}

.form-subscribe .form__body + .form__actions {
	margin-top: 14px;
}

@media (max-width: 767px) {
	.form-subscribe .field {
		padding: 0 13px;
	}

	.form-subscribe .form__actions input {
		display: block;
		width: 100%;
	}
}

/* ------------------------------------------------------------ *\
	Section-logos
\* ------------------------------------------------------------ */

.section-logos {
	padding-block: clamp(60px, 7vw, 96px);
	background-color: #fff !important;
}

.section-logos .section__inner {
	display: flex;
	flex-wrap: wrap;
	row-gap: 34px;
	margin: 0 -32px;
	justify-content: space-around;
}

@media (max-width: 767px) {
	.section-logos .section__inner {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 22px 20px;
		margin: 0;
	}
}

.section-logos .section__logo {
	height: auto;
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 32px;
}

.section-logos .section__logo img {
	max-width: 179px;
	height: auto;
	filter: grayscale(1);
}

@media (max-width: 767px) {
	.section-logos .section__logo {
		padding: 0;
	}

	.section-logos .section__logo img {
		max-width: 100%;
		max-height: 48px;
	}
}

.section-logos .section__head {
	text-align: center;
	margin-bottom: clamp(14px, 3vw, 40px);
}

.section-logos .section__head h2 {
	font-size: clamp(16px, 2vw, 20px);
	color: var(--c-charcoal);
	font-weight: 700;
	line-height: 1.5;
	text-transform: uppercase;
	margin-bottom: 0;
}

/* ------------------------------------------------------------ *\
	Section-groups
\* ------------------------------------------------------------ */

.section-groups {
	background-color: #fff !important;
	padding: 78px 0 56px;
}

@media (max-width: 767px) {
	.section-groups {
		padding-block: 55px 28px;
	}
}

.section-groups .section__intro {
	max-width: 748px;
	margin: 0 auto;
}

@media (max-width: 767px) {
	.section-groups .section__intro {
		margin-inline: -10px;
	}
}

.section-groups .section__intro * {
	text-align: center !important;
}

.section-groups .section__head + .section__entry {
	margin-top: 20px;
}

@media (max-width: 767px) {
	.section-groups .section__head + .section__entry {
		margin-top: 25px;
	}

	.section-groups .section__entry {
		font-size: 16px;
		line-height: 1.75;
		padding-inline: 10px;
	}
}

.section-groups .section__intro + .section__groups {
	margin-top: 76px;
}

@media (max-width: 767px) {
	.section-groups .section__intro + .section__groups {
		margin-top: 67px;
	}
}

.section-groups .section__group-inner {
	display: flex;
	column-gap: 30px;
	justify-content: space-between;
}

.section-groups .section__group-media {
	align-self: flex-start;
	flex: 0 1 495px;
	max-width: 495px;
	width: 100%;
	aspect-ratio: 1;
	position: relative;
	margin-left: -20px;
}

@media (max-width: 1023px) {
	.section-groups .section__group-media {
		order: 0;
		align-self: unset;
		flex: none;
		margin: 0;
	}
}

@media (max-width: 575px) {
	.section-groups .section__group-media {
		max-width: 290px;
	}
}

.section-groups .section__group-media:before {
	content: '';
	position: absolute;
	width: 90%;
	height: 90%;
	background-color: var(--c-beige-hex) !important;
	border-radius: 50%;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
}

@media (max-width: 767px) {
	.section-groups .section__group-media:before {
		width: 95%;
		height: 95%;
	}
}

.section-groups .section__group-img {
	max-width: 474px;
	width: 100%;
	aspect-ratio: 474 / 298;
	border: 15px solid #fff;
	position: absolute;
	z-index: 2;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) rotate(352deg);
}

@media (max-width: 767px) {
	.section-groups .section__group-img {
		border-width: 8px;
	}
}

.section-groups .section__group-main {
	flex: 0 1 554px;
	align-self: center;
	padding: 55px 0 52px;
}

@media (max-width: 1023px) {
	.section-groups .section__group-main {
		flex: none;
		padding-top: 25px;
	}
}

@media (max-width: 767px) {
	.section-groups .section__group-main {
		padding-top: 42px;
	}
}

.section-groups .section__group-head h3 {
	text-transform: uppercase;
	font-family: var(--ff-montserrat, 'sans-serif');
	font-size: 20px;
	line-height: 2;
	font-weight: 700;
}

@media (max-width: 767px) {
	.section-groups .section__group-head h3 {
		font-size: 16px;
		line-height: 1.1875;
	}
}

.section-groups .section__group-head + .section__group-entry {
	margin-top: 24px;
}

.section-groups .section__group-entry p:not(:last-child) {
	margin-bottom: 15px;
}

.section-groups .section__group-entry a {
	color: var(--c-red-hex, red) !important;
}

@media (max-width: 767px) {
	.section-groups .section__group-entry {
		font-size: 16px;
		line-height: 1.75;
	}
}

.section-groups .section__group-entry + .section__group-actions {
	margin-top: 39px;
}

@media (max-width: 767px) {
	.section-groups .section__group-entry + .section__group-actions {
		margin-top: 30px;
	}

	.section-groups .section__group-actions a {
		display: block;
	}
}

.section-groups .section__group + .section__group {
	margin-top: 23px;
}

@media (max-width: 767px) {
	.section-groups .section__group + .section__group {
		margin-top: 40px;
	}
}

/*  Section__group-inner--reversed  */
.section-groups .section__group-inner--reversed {
	flex-direction: row-reverse;
}

@media (max-width: 1023px) {
	.section-groups .section__group-inner {
		flex-direction: column;
		align-items: center;
	}
}

.section-groups .section__group-inner--reversed .section__group-media {
	margin-left: 0;
	margin-right: -20px;
}

@media (max-width: 767px) {
	.section-groups .section__group-inner--reversed .section__group-media {
		margin-right: 0;
	}
}

.section-groups .section__group-inner--reversed .section__group-img {
	transform: translate(-50%, -50%) rotate(8deg);
}

/* ------------------------------------------------------------ *\
	Section-cols-3
\* ------------------------------------------------------------ */

.section-cols-3 {
	position: relative;
}

.section-cols-3:not([class*="padding"]) {
	padding: 42px 0 0;
	margin-bottom: 49px;
}

.section-cols-3:not([class*="background"]):before {
	content: '';
	position: absolute;
	width: 100%;
	height: 348px;
	top: 0;
	left: 0;
	background-color: #fff;
	z-index: 1;
}

@media (max-width: 767px) {
	.section-cols-3:not([class*="padding"]) {
		padding-block: 65px 0;
	}

	.section-cols-3:before {
		content: none;
	}
}

.section__inner {
	position: relative;
	z-index: 2;
}

.section-cols-3 .section__head h2 {
	font-family: var(--ff-play-fair, 'sans-serif');
	font-style: italic;
	color: var(--c-red-hex, red);
	font-size: 36px;
	text-align: center !important;
}

@media (max-width: 767px) {
	.section-cols-3 .section__head h2 {
		font-size: 28px;
		line-height: 1.43;
	}
}

.section-cols-3 .section__head + .section__cols {
	margin-top: 39px;
}

.section-cols-3 .section__cols {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px 25px;
}

@media (max-width: 1023px) {
	.section-cols-3 .section__cols {
		gap: 40px 15px;
	}
}

@media (max-width: 767px) {
	.section-cols-3 .section__cols {
		grid-template-columns: 1fr;
		gap: 30px;
	}
}

.section-cols-3 .section__col {
	display: flex;
	height: auto;
}

@media (max-width: 767px) {
	.section-cols-3 .section__col {
		display: block;
	}
}

/* ------------------------------------------------------------ *\
	Section-cols-3-Alt
\* ------------------------------------------------------------ */

.section-cols-3--alt { padding: clamp(32px, 9vw, 120px) 0; background-color: white; margin: 0; }
.section-cols-3--alt:before { display: none; }

@media (max-width: 767px) {
	.section-cols-3--alt .section__head { padding-inline: 10px; }
}

/* ------------------------------------------------------------ *\
	Tile-ico-text-centered
\* ------------------------------------------------------------ */

.tile-ico-text-centered {
	background-color: #fff !important;
	padding: 35px 32px 40px;
	text-align: center;
	box-shadow: 0px 0px 15px 5px rgba(0, 0, 0, .12);
	display: flex;
	flex-direction: column;
	min-height: 424px;
}

@media (max-width: 1023px) {
	.tile-ico-text-centered {
		padding: 20px;
	}
}

@media (max-width: 767px) {
	.tile-ico-text-centered {
		padding: 40px 25px 38px;
	}
}

.tile-ico-text-centered * {
	text-align: center !important;
}

.tile-ico-text-centered .tile__ico-wrapper {
	position: relative;
	width: 108px;
	height: 108px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
}

.tile-ico-text-centered .tile__ico-bg {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	transform: translate(-50%, -50%);
	z-index: 2;
}

.tile-ico-text-centered .tile__ico {
	position: relative;
	z-index: 3;
	max-width: 41px;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}


.tile-ico-text-centered .tile__ico img {
	width: 100%;
	height: auto;
}

.tile-ico-text-centered .tile__ico-wrapper + .tile__content {
	margin-top: 24px;
}

.tile-ico-text-centered .tile__head h3 {
	font-size: 18px;
	line-height: 1.67;
	font-family: var(--ff-nunito-sans, 'sans-serif');
	font-weight: 700;
	letter-spacing: .01em;
}

@media (max-width: 767px) {
	.tile-ico-text-centered .tile__ico-wrapper + .tile__content {
		margin-top: 28px;
	}
}

.tile-ico-text-centered .tile__head:not(:last-child) {
	margin-bottom: 16px;
}

.tile-ico-text-centered .tile__content {
	flex-grow: 1;
}

@media (max-width: 767px) {
	.tile-ico-text-centered .tile__content {
		font-size: 16px;
		line-height: 1.75;
	}
}

.tile-ico-text-centered .tile__content:not(:last-child) {
	margin-bottom: 23px;
}

@media (max-width: 767px) {
	.tile-ico-text-centered .tile__content:not(:last-child) {
		margin-bottom: 16px;
	}
}

.tile-ico-text-centered .tile__actions { margin-top: auto; }

.tile-ico-text-centered .link-arrow { font-size: 16px; }

/* ------------------------------------------------------------ *\
	Section-testimonials
\* ------------------------------------------------------------ */

.section-testimonials {
	margin-block: clamp(60px, 7vw, 96px);
}

@media (max-width: 767px) {
	.section-testimonials {
		margin-block: 60px;
	}
}

.section-testimonials * {
	text-align: center !important;
}

.section-testimonials .section__head h2 {
	margin-bottom: clamp(24px, 3vw, 32px);
}

.section-testimonials .section__head > *:last-child {
	margin-bottom: 0;
}

.section-testimonials .section__body {
	width: 100%;
}

.section-testimonials .section__body:not(:last-child) {
	margin-bottom: 40px;
}

.section-testimonials .section__head:not(:last-child) {
	margin-bottom: clamp(22px, 2vw, 31px);
}

@media (max-width: 767px) {
	.section-testimonials .section__body:not(:last-child) {
		margin-bottom: 39px;
	}
}

.section-testimonials .section__head-bottom,
.section-testimonials .section__head-top { display: block; }
.section-testimonials .section__head-top + br { display: none; }

@media (max-width: 767px) {
	.section-testimonials .section__head-top { margin-bottom: 10px; }
}

/* -- Gray */
.section-testimonials--gray {
	background-color: #efefef;
	margin-block: 0;
	padding-block: clamp(60px, 7vw, 96px);
}

@media (max-width: 767px) {
	.section-testimonials {
		padding-block: 60px;
	}
}

/* ------------------------------------------------------------ *\
	Slider-testimonials
\* ------------------------------------------------------------ */

.slider-testimonials {
	position: relative;
	padding-inline: clamp(60px, 8vw, 120px);
}

@media (max-width: 1200px) {
	.slider-testimonials {
		padding-inline: 30px;
	}
}

@media (max-width: 767px) {
	.slider-testimonials {
		margin-right: calc(-1 * var(--shell-gutter-mobile));
		padding-inline: 0;
	}
}

.slider-testimonials .slider__slide {
	display: flex;
	flex-direction: column;
	height: auto;
}

.slider-testimonials .slider__slide > * {
	height: 100%;
}

.slider-testimonials .slider__actions {
	position: absolute;
	top: 49.1%;
	left: 0;
	right: 0;
	height: 50px;
	transform: translateY(-50%);
	pointer-events: none;
	display: flex;
	align-items: center;
	justify-content: space-between;
	z-index: 1;
}

@media (max-width: 767px) {
	.slider-testimonials .slider__actions {
		position: relative;
		inset: unset;
		justify-content: flex-start;
		transform: none;
		gap: 16px;
		margin-top: 32px;
	}
}

.slider-testimonials .slider__prev {
	left: 0;
}

.slider-testimonials .slider__next {
	right: 0;
}

.slider-testimonials .slider__prev,
.slider-testimonials .slider__next {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	border: 1px solid var(--c-charcoal);
	pointer-events: all;
}

@media (max-width: 767px) {
	.slider-testimonials .slider__prev,
	.slider-testimonials .slider__next {
		position: relative;
		inset: unset;
		margin: 0;
	}
}

/*  Swiper default btn styling  */
.slider-testimonials .slider__prev:after,
.slider-testimonials .slider__next:after {
	display: none;
}

.slider-testimonials .slider__prev:before,
.slider-testimonials .slider__next:before {
	content: '';
	position: absolute;
	width: 10px;
	height: 10px;
	top: 50%;
	left: 57%;
	border-left: 1px solid var(--c-charcoal);
	border-bottom: 1px solid var(--c-charcoal);
	transform: translate(-50%, -50%) rotate(45deg);
	transition: border-color;
}

.slider-testimonials .slider__next:before {
	left: 43.5%;
	transform: translate(-50%, -50%) rotate(-135deg);
}
/* ------------------------------------------------------------ *\
	Tile-testimonial
\* ------------------------------------------------------------ */

.tile-testimonial {
	background-color: #fff !important;
	padding: 32px 32px 32px;
}

@media (max-width: 767px) {
	.tile-testimonial {
		padding-inline: 20px;
	}
}

.tile-testimonial * {
	text-align: center !important;
}

.tile-testimonial .tile__content {
	max-width: 361px;
	width: 100%;
	margin: 0 auto;
}

@media (max-width: 767px) {
	.tile-testimonial .tile__content {
		font-size: 16px;
		line-height: 1.625;
	}
}

.tile-testimonial .tile__rate ul {
	list-style-type: none;
	display: flex;
	flex-wrap: wrap;
	gap: 2px;
	align-items: center;
	justify-content: center;
}

.tile-testimonial .tile__rate li {
	background-color: #00B67A !important;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
}

.tile-testimonial .tile__rate li.tile__rate-opacity {
	opacity: .5;
}

.tile-testimonial .tile__rate img {
	max-width: 14px;
	width: 100%;
	height: auto;
}

.tile-testimonial .tile__rate:not(:last-child) {
	margin-bottom: 20px;
}

.tile-testimonial .tile__head {
	font-weight: 700;
	letter-spacing: .01em;
}

.tile-testimonial .tile__head:not(:last-child) {
	margin-bottom: 16px;
}

.tile-testimonial .tile__entry:not(:last-child) {
	margin-bottom: 24px;
}

@media (max-width: 767px) {
	.tile-testimonial .tile__rate:not(:last-child) {
		margin-bottom: 24px;
	}

	.tile-testimonial .tile__head:not(:last-child) {
		margin-bottom: 18px;
	}

	.tile-testimonial .tile__entry:not(:last-child) {
		margin-bottom: 32px;
	}
}

.tile-testimonial .tile__meta {
	font-size: 14px;
	line-height: normal;
}

.tile-testimonial .tile__entry,
.tile-testimonial .tile__head {
	font-size: 16px;
}

/* ------------------------------------------------------------ *\
	Section-socials
\* ------------------------------------------------------------ */

.section-socials {
	background-color: var(--c-header-main, #d91f1f) !important;
	padding: 50px 0;
}

@media (max-width: 767px) {
	.section-socials {
		padding-block: 45px 35px;
	}
}

.section-socials .section__shell {
	max-width: calc(930px + (var(--shell-gutter) * 2));
	width: 100%;
	margin: 0 auto;
}

.section-socials .section__inner {
	display: flex;
	align-items: center;
	margin: 0 -24px;
	flex-wrap: wrap;
	gap: 10px 0;
}

@media (max-width: 767px) {
	.section-socials .section__inner {
		display: block;
	}
}

.section-socials .section__head {
	color: #fff;
	padding: 0 24px;
	flex: 0 1 255px;
}

@media (max-width: 767px) {
	.section-socials .section__head:not(:last-child) {
		margin-bottom: 28px;
	}
}

.section-socials .section__head h4 {
	font-size: 20px;
	line-height: 2;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .006em;
}

@media (max-width: 767px) {
	.section-socials .section__head h4 {
		text-align: center !important;
	}
}

.section__content {
	padding: 0 24px;
	flex: 0 0 669px;
}

/* ------------------------------------------------------------ *\
	Socials-new
\* ------------------------------------------------------------ */

.socials-new {
	display: flex;
	align-items: center;
	margin: 0 -48px;
}

.socials-new .socials__main {
	list-style-type: none;
	display: flex;
	align-items: center;
	margin: 0 -8px;
	row-gap: 16px;
	padding: 0 48px;
}

@media (max-width: 767px) {
	.socials-new {
		margin: 0;
		flex-direction: column;
	}

	.socials-new .socials__main {
		margin: 0;
		padding: 0;
	}
}

.socials-new .socials__main li {
	padding: 0 8px;
}

.socials-new .socials__main li a {
	text-decoration: none;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	border: 1px solid #fff;
	transition: background-color, border-color;
	transition-duration: .3s;
}

@media (max-width: 767px) {
	.socials-new .socials__main li a {
		width: 50px;
		height: 50px;
	}
}

.socials-new .socials__main li a svg {
	font-size: 24px;
	fill: #fff;
	transition: fill .3s;
}

@media (max-width: 767px) {
	.socials-new .socials__main li a svg {
		font-size: 18px;
	}
}

.socials-new .socials__main li a:hover {
	background-color: #fff !important;
	border-color: #fff;
}

.socials-new .socials__main li a:hover svg {
	fill: var(--c-darkred-hex);
}

.socials-new .socials__aside {
	padding: 0 48px;
	border-left: 1px solid #fff;
	padding-top: 11px;
}

@media (max-width: 767px) {
	.socials-new .socials__aside {
		border-left: none;
		border-top: 1px solid #707070;
		padding: 0;
		padding-top: 38px;
		margin-top: 38px;
		width: 100%;
		max-width: 310px;
		margin-inline: auto;
	}
}

.socials-new .socials__box {
	display: flex;
	align-items: center;
	color: #fff !important;
	font-size: 39px;
	line-height: 1;
	text-decoration: none;
}

.socials-new .socials__box svg {
	fill: currentColor;
}

.socials-new .socials__box-text {
	margin-left: 13px;
	font-weight: 700;
	letter-spacing: .06em;
}

@media (max-width: 767px) {
	.socials-new .socials__box {
		justify-content: center;
		font-size: 32px;
	}
}

/* ------------------------------------------------------------ *\
	Footer
\* ------------------------------------------------------------ */

.footer {
	margin-top: 70px;
}

@media (max-width: 767px) {
	.footer {
		margin-top: 48px;
	}

	.footer .footer__main-inner {
		padding-inline: 16px;
	}
}

.footer .footer__main-inner {
	display: flex;
	justify-content: space-between;
	gap: 10px;
	padding-bottom: 65px;
}

@media (max-width: 1023px) {
	.footer .footer__main-inner {
		gap: 20px;
		flex-wrap: wrap;
	}
}

@media (max-width: 767px) {
	.footer .footer__main-inner {
		display: block;
		padding-bottom: 50px;
	}
}

.footer .footer__aside {
	flex: 0 1 19.5%;
}

@media (max-width: 1023px) {
	.footer .footer__aside {
		flex: 0 0 100%;
	}
}

@media (max-width: 767px) {
	.footer .footer__aside {
		max-width: 225px;
		margin-inline: auto;
	}

	.footer .footer__slogan p {
		text-align: center !important;
	}
}

.footer .footer__logo {
	margin-bottom: 25px;
}

@media (max-width: 767px) {
	.footer .footer__logo {
		width: fit-content;
		margin-inline: auto;
	}
}

.footer .footer__slogan {
	font-style: italic;
	font-size: 20px;
	line-height: 1.6;
	font-family: var(--ff-play-fair, 'sans-serif');
	color: var(--c-darkred-hex);
}

.footer .footer__accordion {
	display: flex;
	flex: 0 1 auto;
	margin-right: 7px;
}

.footer .footer__accordion-section {
	width: max-content;
	max-width: 254px;
	padding: 0 48px;
}

.footer .footer__accordion-section:nth-last-child(2) {
	padding-left: 52px;
	padding-right: 0;
}

@media (max-width: 1199px) {
	.footer .footer__accordion {
		margin-right: 0;
	}

	.footer .footer__accordion-section.footer__accordion-section {
		padding-inline: 25px;
	}

	.footer .footer__accordion-section:nth-last-child(2) {
		padding-right: 0;
	}
}

@media (max-width: 1023px) {
	.footer .footer__accordion-section:first-child {
		padding-left: 0;
	}
}

@media (max-width: 767px) {
	.footer .footer__accordion {
		display: block;
		max-width: 472px;
		margin-inline: auto;
		margin-top: 78px;
	}

	.footer .footer__accordion-section.footer__accordion-section {
		padding-inline: 0;
		width: 100%;
		max-width: none;
	}
}

.footer .footer__accordion-head {
	margin-bottom: 18px;
}

@media (max-width: 767px) {
	.footer .footer__accordion-head {
		margin-bottom: 16px;
	}
}

.footer .footer__accordion-head h4,
.footer .footer__accordion-contacts-head h4 {
	text-transform: uppercase;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.38;
	letter-spacing: 0.03em;
}

.footer .footer__accordion-section + .footer__accordion-section {
	border-left: 1px solid #D8D8D8;
}

@media (max-width: 767px) {
	.footer .footer__accordion-section + .footer__accordion-section {
		border: none;
	}
}

.footer .footer__accordion-body {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

@media (max-width: 767px) {
	.footer .footer__accordion-head {
		padding-bottom: 15px;
		border-bottom: 1px solid #A3A3A3;
		position: relative;
	}

	.footer .footer__accordion-head::after {
		content: '';
		position: absolute;
		right: 0;
		top: 25%;
		display: block;
		width: 6px;
		height: 6px;
		border: 1px solid var(--c-charcoal);
		border-width: 0 1px 1px 0;
		transition: transform 250ms ease-out;
		pointer-events: none;
	}

	.footer .footer__accordion-body {
		display: none;
		margin-bottom: 15px;
	}
}

.footer .footer__accordion-contacts {
	margin-top: 50px;
}

@media (max-width: 767px) {
	.footer .footer__accordion-contacts {
		margin-top: 0;
	}

	.footer .footer__accordion-contacts a {
		font-size: 14px !important;
		letter-spacing: -0.01em;
	}
}

.footer .footer__accordion-contacts a[href^="tel:"] {
	font-weight: 700;
	line-height: 1.4;
}

.footer .footer__accordion-contacts-head {
	margin-bottom: 14px;
}

.footer .footer__bar {
	background-color: #F6F6F6 !important;
	padding-block: 50px;
}

@media (max-width: 1023px) {
	.footer .footer__bar {
		padding-block: 25px;
	}
}

@media (max-width: 767px) {
	.footer .footer__bar {
		padding-block: 23px;
	}
}

.footer .footer__bar-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
}

@media (max-width: 1023px) {
	.footer .footer__bar-inner {
		flex-direction: column;
		max-width: 230px;
		margin-inline: auto;
	}
}

@media (max-width: 767px) {
	.footer .footer__bar-inner {
		flex-direction: column-reverse;
		gap: 32px;
	}
}

.footer .footer__logos ul {
	display: flex;
	gap: 49px;
	align-items: center;
}

@media (max-width: 1023px) {
	.footer .footer__logos ul {
		gap: 20px;
		justify-content: center;
	}
}

@media (max-width: 767px) {
	.footer .footer__logos ul {
		gap: 12px 20px;
		flex-wrap: wrap;
	}

	.footer .footer__logos li {
		max-width: 112px;
	}
}

.footer .footer__copyright {
	color: #7E7E7E;
	font-size: 14px;
	line-height: 2.2;
	padding-right: 10px;
}

@media (max-width: 767px) {
	.footer .footer__copyright {
		line-height: 1.5;
	}

	.footer .footer__copyright p {
		text-align: center !important;
	}
}

/* ------------------------------------------------------------ *\
	Nav Footer
\* ------------------------------------------------------------ */

.nav-footer {
	font-size: 13px;
	line-height: 1.7;
}

.nav-footer a {
	color: #353535 !important;
	font-size: 13px !important;
}

@media (hover: hover) and (pointer: fine) {
	.nav-footer a:hover {
		color: var(--c-red-hex, red) !important;
	}
}

.nav-footer ul a {
	letter-spacing: -0.03em;
}

.nav-footer .nav__head {
	margin-bottom: 5px;
	font-weight: 700;
}

@media (max-width: 767px) {
	.nav-footer + .nav-footer {
		margin-top: 20px;
	}
}

/* ------------------------------------------------------------ *\
	Section-Title
\* ------------------------------------------------------------ */

.section-title {
	padding-block: 17px 216px;
	background-color: #fff !important;
}

.section-title .section__content {
	margin-top: 10px;
}

.section-title .section__content > * {
	text-align: center !important;
}

.section-title .section__content span {
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	line-height: 2;
	color: var(--c-charcoal);
	font-size: 20px;
	text-transform: uppercase;
}

.section-title .section__content h1 {
	font-size: 46px;
	line-height: 1.17;
	font-family: 'Playfair Display', sans-serif;
	color: #D9201E;
	margin-bottom: 18px;
}

.section-title .section__content h1:last-child {
	margin-bottom: 0;
}

@media (max-width: 767px) {
	.section-title {
		padding-block: 42px 252px;
	}

	.section-title .section__content {
		margin-top: 32px;
	}

	.section-title .section__content span {
		font-size: 16px;
		line-height: 1.18;
		margin-bottom: 3px;
	}

	.section-title .section__content h1 {
		font-size: 32px;
		line-height: 1.375;
		margin-bottom: 11px;
	}
}

/* ------------------------------------------------------------ *\
	Breadcrumbs
\* ------------------------------------------------------------ */

.breadcrumbs-alt {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 9.5px;
	font-family: 'NunitoSans-Regular', sans-serif;
	font-size: 14px;
	line-height: 1;
	letter-spacing: -0.22px;
	color: #7a736d;
}

.breadcrumbs-alt a {
	color: #7a736d !important;

}

.breadcrumbs-alt li:not(:first-child) {
	position: relative;
	padding-left: 14px;
}

.breadcrumbs-alt li:not(:first-child):after {
	content: '';
	position: absolute;
	background: url('../media/svg/arrow-breadcrumbs.svg') no-repeat 0 0;
	background-size: contain;
	top: 50%;
	left: 0;
	width: 9px;
	height: 8px;
	transform: translateY(-50%);
}

/* ------------------------------------------------------------ *\
	Section-products
\* ------------------------------------------------------------ */

.section-products {
	margin-top: -159px;
	padding-bottom: 64px;
}

.section-products .section__inner {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
	gap: 25px;
}

@media (max-width: 767px) {
	.section-products {
		padding-bottom: 65px;
	}

	.section-products .section__inner {
		grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
		gap: 32px;
	}
}

/* ------------------------------------------------------------ *\
	Product
\* ------------------------------------------------------------ */

.product {
	padding-block: 17px 52px;
	display: flex;
	flex-direction: column;
	box-shadow: 0 0 24px rgba(0, 0, 0, 0.12);
	background-color: #fff !important;
}

.product .product__head {
	padding: 0 20px 18px;
}

.product .product__head h2 {
	transition: color .4s;
}

.product .product__head h2 a {
	font-size: 20px;
	line-height: 1.6;
	color: #544F4A !important;
	font-weight: 700;
	text-transform: uppercase;
	font-family: 'Montserrat', sans-serif;
}

.product .product__head h2:hover a {
	color: #D9201E !important;
	text-decoration: none;
}

.product .product__head > * {
	text-align: center !important;
}

.product .product__head span {
	color: #D9201E;
}

.product .product__image {
	width: 100%;
	margin-bottom: 40px;
	overflow: hidden;
}

.product .product__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .4s ease;
}

.product .product__entry {
	margin-bottom: 36px;
}

.product .product__entry p {
	font-weight: 700;
	line-height: 1.66;
	color: var(--c-charcoal);
	margin-bottom: 33px;
}

.product .product__entry ul {
	list-style: none;
	padding-left: 13px;
}

.product .product__entry ul li {
	position: relative;
	padding-left: 23px;
	margin-bottom: 10px;
	line-height: 1.44;
}

.product .product__entry ul li:after {
	content: '';
	position: absolute;
	top: 10px;
	left: 0;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background-color: #D9201E;
}

.product .product__actions {
	margin-top: auto;
}



.product .product__entry,
.product .product__actions {
	padding-inline: 50px;
}

@media (max-width: 1023px) {
	.product .product__entry ul {
		padding-left: 0;
	}
}

@media (max-width: 767px) {
	.product {
		padding-block: 25px 39px;
	}

	.product .product__head h2 a {
		font-size: 16px;
		line-height: 1.5;
		padding-bottom: 23px;
	}

	.product .product__image {
		margin-bottom: 31px;
	}

	.product .product__entry {
		padding-inline: 24px;
		margin-bottom: 29px;
	}

	.product .product__entry p {
		font-size: 16px;
		line-height: 1.75;
		margin-bottom: 24px;
	}

	.product .product__entry ul {
		padding-left: 13px;
	}

	.product .product__entry ul li {
		font-size: 16px;
		line-height: 1.5;
	}

	.product .product__actions {
		padding-inline: 23px;
	}
}

/* ------------------------------------------------------------ *\
	Section-benefits
\* ------------------------------------------------------------ */

.section-benefits {
	padding-bottom: 36px;
}

.section-benefits .section__head {
	margin-bottom: 48px;
	max-width: 748px;
	margin-inline: auto;
}

.section-benefits .section__head > * {
	text-align: center !important;
}

.section-benefits .section__head h2 {
	margin-bottom: 16px;
	font-size: 20px;
	line-height: 2;
	font-weight: 700;
	font-family: 'Montserrat', sans-serif;
	text-transform: uppercase;
}

.section-benefits .section__benefits {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
	gap: 24px 25px;
}

.section-benefits .section__benefit {
	display: grid;
	grid-template-columns: 140px auto;
	background-color: #fff !important;
	align-items: center;
	padding: 32px;
}

.section-benefits .section__icon img {
	height: 108px;
	width: 108px;
	object-fit: contain;
	padding: 32px;
	border-radius: 50%;
}

.section-benefits .section__icon--green img {
	background-color: rgba(35, 124, 36, .1) !important;
}

.section-benefits .section__icon--red img {
	background-color: rgba(217, 32, 30, .1) !important;
}

.section-benefits .section__icon--blue img {
	background-color: rgba(30, 82, 98, .1) !important;
}

.section-benefits .section__icon--yellow img {
	background-color: rgba(249, 242, 230, 1) !important;
}

.section-benefits .section__entry { display: flex; flex-direction: column; justify-content: center; min-height: 100%; }

.section-benefits .section__entry h3 {
	margin-bottom: 16px;
	font-size: 18px;
	line-height: 1.66;
	font-family: var(--ff-nunito-sans, 'sans-serif');
	font-weight: 700;
}

.section-benefits .section__entry {
	height: 100%;
}

@media (max-width: 767px) {
	.section-benefits {
		padding-bottom: 23px;
	}

	.section-benefits .section__benefits {
		grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	}

	.section-benefits .section__head {
		margin-bottom: 56px;
	}

	.section-benefits .section__head h2 {
		font-size: 16px;
		line-height: 1.18;
		margin-bottom: 23px;
	}

	.section-benefits .section__head p {
		font-size: 16px;
		line-height: 1.75;
	}

	.section-benefits .section__benefit {
		grid-template-columns: 1fr;
		gap: 16px;
		max-width: calc(100vw - 32px);
	}

	.section-benefits .section__icon img {
		width: 72px;
		height: 72px;
		padding: 21px;
	}

	.section-benefits .section__entry h3 {
		font-size: 16px;
		line-height: 1.75;
		margin-bottom: 8px;
	}

	.section-benefits .section__entry p {
		font-size: 16px;
		line-height: 1.75;
	}
}

/* ------------------------------------------------------------ *\
	Section-benefits-alt
\* ------------------------------------------------------------ */

.section-benefits--alt { background: white; padding-block: clamp(60px, 7vw, 96px); }
.section-benefits--alt .section__head { margin-bottom: 40px; }
.section-benefits--alt .section__head h2 { font-family: var(--ff-play-fair, 'sans-serif'); font-weight: 400; font-style: italic; color: var(--c-red-hex, red); font-size: clamp(28px, 10vw, 36px); line-height: 1.25; margin-bottom: 32px; text-transform: none; }
.section-benefits--alt .section__head > *:last-child { margin-bottom: 0; }
.section-benefits--alt .section__benefits { grid-template-columns: repeat(auto-fit, minmax(450px, 1fr)); }
.section-benefits--alt .section__benefit { box-shadow: 0 0 10px rgba(0,0,0,.18); }

.section-benefits--alt + section.section-columns { padding-block: clamp(60px, 7vw, 96px); background: none; }
.section-benefits--alt + section.section-columns:after { display: none; }

/* ------------------------------------------------------------ *\
	Section-features
\* ------------------------------------------------------------ */

.section-features {
	padding-block: 34px 96px;
}

.section-features .section__inner {
	padding: 47px 47px 36px 47px;
	display: grid;
	grid-template-columns: 44.1% auto;
	border: 1px solid #857E78;
}

.section-features .section__head h2 {
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	line-height: 2;
	font-size: 20px;
	margin-bottom: 16px;
	text-transform: uppercase;
}

.section-features .section__features {
	padding-left: 48px;
	padding-top: 12px;
}

.section-features .section__features li {
	position: relative;
	font-weight: 700;
	line-height: 1.33;
	margin-bottom: 20px;
	padding-left: 28px;
	letter-spacing: -0.01em;;
}

.section-features .section__features li:after {
	content: '';
	position: absolute;
	top: 4px;
	left: 0;
	width: 18px;
	height: 14px;
	background: url('../media/svg/check.svg') no-repeat 0 0;
}

@media (max-width: 767px) {
	.section-features {
		padding-block: 17px 87px;
	}

	.section-features .section__inner {
		grid-template-columns: 1fr;
        padding: 24px 20px 16px 24px;
		gap: 20px;
	}

	.section-features .section__head h2 {
		font-size: 16px;
		line-height: 1.18;
		margin-bottom: 23px;
	}

	.section-features .section__head p {
		font-size: 16px;
		line-height: 1.75;
	}

	.section-features .section__features {
		padding-left: 0;
	}

	.section-features .section__features li {
		font-size: 16px;
		line-height: 1.375;
		margin-bottom: 16px;
		letter-spacing: -0.017em;
	}
}

/* ------------------------------------------------------------ *\
	Section-image-content
\* ------------------------------------------------------------ */

.section-image-content .section__inner {
	display: grid;
	grid-template-columns: auto 35.7%;
}

.section-image-content .section__content {
	padding: 72px 97px 72px 153px;
	background-color: #991C1F !important;
	color: #fff;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.section-image-content .section__content > * {
	max-width: 677px;
}

.section-image-content .section__content h2 {
	margin-bottom: 24px;
	font-size: 36px;
	font-family: 'Playfair Display', sans-serif;
	font-style: italic;
	line-height: 1.11;
}

.section-image-content .section__actions {
	margin-top: 39px;
}

.section-image-content .section__image {
	width: 100%;
}

.section-image-content .section__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

@media (max-width: 1023px) {
	.section-image-content .section__inner {
		grid-template-columns: 1fr 1fr;
	}

	.section-image-content .section__content {
		padding: 50px;
	}
}

@media (max-width: 767px) {
	.section-image-content .section__inner {
		display: flex;
		flex-direction: column-reverse;
	}

	.section-image-content .section__content {
		padding: 41px 23px 46px 26px;
		justify-content: start;
		flex: unset;
	}

	.section-image-content .section__image img {
		aspect-ratio: 375 / 240;
	}

	.section-image-content .section__content h2 {
		font-size: 28px;
		line-height: 1.42;
	}

	.section-image-content .section__content p {
		font-size: 16px;
		line-height: 1.75;
		letter-spacing: -0.005em;
	}
}

/* ------------------------------------------------------------ *\
	Section-products-grid
\* ------------------------------------------------------------ */

.section-products-grid {
	padding-block: 80px 57px;
	background-color: #fff !important;
}

.section-products-grid .section__head {
	margin-bottom: 32px;
}

.section-products-grid .section__head h2 span {
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	font-size: 20px;
	font-style: normal;
	line-height: 2;
	text-transform: uppercase;
	color: var(--c-charcoal);
}

.section-products-grid .section__head h2 {
	font-size: 36px;
	font-style: italic;
	font-family: 'Playfair Display', sans-serif;
	line-height: 1.11;
	color: #D9201E;
}

.section-products-grid .section__btn {
	padding-right: 21px;
}

.section-products-grid .section__entry {
	margin-bottom: 46px;
	display: grid;
	grid-template-columns: 66% auto;
	align-items: end;
}

.section-products-grid .section__entry span {
	color: #D9201E;
}

.section-products-grid .section__entry .section__btn {
	justify-self: end;
}

.section-products-grid .section__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 25px;
}

.section-products-grid .section__grid .section__item {
	display: block;
	position: relative;
	overflow: hidden;
}

.section-products-grid .section__item:hover h3 {
	text-decoration: underline;
}

.section-products-grid .section__item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .4s ease;
}

.section-products-grid .section__item h3 {
	position: absolute;
	bottom: 19px;
	left: 33px;
	color: #fff;
	font-weight: 700;
	font-size: 18px;
	font-family: 'Montserrat', sans-serif;
	text-transform: uppercase;
	transition: color .4s, text-decoration .4s;
}

@media (max-width: 767px) {
	.section-products-grid {
		padding-block: 58px;
	}

	.section-products-grid .section__head {
		margin-bottom: 23px;
	}

	.section-products-grid .section__head h2 span {
		font-size: 16px;
		line-height: 1.18;
		margin-bottom: 4px;
	}

	.section-products-grid .section__head h2 {
		font-size: 28px;
		line-height: 1.42;
	}

	.section-products-grid .section__entry {
		grid-template-columns: 1fr;
		gap: 23px;
		margin-bottom: 33px;
	}

	.section-products-grid .section__entry p {
		font-size: 16px;
		line-height: 1.5;
	}

	.section-products-grid .section__entry .section__btn {
		justify-self: start;
	}

	.section-products-grid .section__grid {
		grid-template-columns: repeat(auto-fit, minmax(158px, 1fr));
		gap: 17px 18px;
	}

	.section-products-grid .section__item h3 {
		bottom: 9px;
		left: 15px;
		font-size: 16px;
		line-height: 1.18;
	}

	.section-products-grid .section__item img {
		aspect-ratio: 163 / 153;
	}
}

/* ------------------------------------------------------------ *\
	Section-image-content-alt
\* ------------------------------------------------------------ */

.section-image-content-alt {
	padding-block: 72px 97px;
	background-color: #fff !important;
}

.section-image-content-alt .section__inner {
	display: flex;
	flex-wrap: wrap;
	gap: 101px;
	align-items: center;
}

.section-image-content-alt .section__image {
	width: 42.1%;
	position: relative;
}

.section-image-content-alt .section__image img {
	aspect-ratio: 440 / 276;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border: solid 15px #fff;
	transform: rotate(-8deg);
	box-shadow: 0 0 30px rgba(0, 0, 0, .2);
	position: relative;
	right: 10px;
}


.section-image-content-alt .section__image:after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 458px;
	height: 458px;
	border-radius: 50%;
	background-color: #F9F2E6;
	z-index: -1;
	transform: translate(-50%, -50%);
}

.section-image-content-alt .section__content {
	flex: 1;
	padding: 0;
}

.section-image-content-alt .section__content h2 {
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	line-height: 2;
	font-size: 20px;
	margin-bottom: 24px;
	text-transform: uppercase;
}

.section-image-content-alt .section__content p {
	margin-bottom: 30px;
}

.section-image-content-alt .section__content span {
	color: #D9201E;
}

.section-image-content-alt .section__content p:last-child {
	margin-bottom: 0;
	letter-spacing: -0.001em;
}

/* Section-image-content-alt--reversed */

.section-image-content-alt.section-image-content-alt--reversed .section__inner {
	flex-direction: row-reverse;
}

.section-image-content-alt.section-image-content-alt--reversed .section__image img {
	transform: rotate(8deg);
	left: 9px;
}

.section-image-content-alt--reversed + .section-image-content-alt {
	padding-block: 133px 191px;
}

@media (max-width: 900px) {
	.section-image-content-alt .section__image {
		width: 80%;
		margin-inline: auto;

	}

	.section-image-content-alt .section__content {
		width: 100%;
	}
}

@media (max-width: 767px) {
	.section-image-content-alt {
		padding-block: 66px 90px;
	}

	.section-image-content-alt .section__inner {
		gap: 79px;
	}

	.section-image-content-alt .section__content h2 {
		font-size: 16px;
		margin-bottom: 16px;
	}

	.section-image-content-alt .section__content p {
		font-size: 16px;
		line-height: 1.75;
	}

	.section-image-content-alt .section__image:after {
		width: 286px;
		height: 276px;
		top: 44%;
	}

	.section-image-content-alt .section__image {
		width: 84.6%;
	}

	.section-image-content-alt .section__image img {
		border-width: 10px;
		bottom: 12px;
		left: 2px;
	}

	.section-image-content-alt.section-image-content-alt--reversed .section__image img {
		left: 0px;
	}

	.section-image-content-alt--reversed + .section-image-content-alt {
		padding-block: 66px 97px;
	}
}

/* ------------------------------------------------------------ *\
	Section-message
\* ------------------------------------------------------------ */

.section-message {
	padding-block: 72px;
	position: relative;
}

.section-message:not([class*="background"]) {
	background-color: #991C1F !important;
	color: #fff;
}

.section-message:before {
	content: '';
	position: absolute;
	height: 139.6%;
    width: 45.6%;
	background: url('../media/images/circles-bg-1.png') no-repeat 0 0;
	background-size: contain;
	right: 69.7%;
    top: 19%;
}

.section-message:after {
	content: '';
	position: absolute;
	height: 139.6%;
    width: 45.6%;
	background: url('../media/images/circles-bg-2.png') no-repeat 0 0;
	background-size: contain;
	bottom: 19%;
    left: 84.5%;
}

.section-message * {
	text-align: center !important;
}

.section-message h2 {
	font-size: 36px;
	font-style: italic;
	font-family: 'Playfair Display', sans-serif;
	margin-bottom: clamp(24px, 2vw, 25px);
}

.section-message p {
	max-width: 748px;
	margin-inline: auto;
}

.section-message .section__actions {
	margin-top: 39px;
}

@media (max-width: 767px) {
	.section-message {
		padding-block: 81px 25px;
	}

	.section-message h2 {
		font-size: 28px;
		line-height: 1.42;
		text-indent: 6px;
	}

	.section-message p {
		font-size: 16px;
		line-height: 1.625;
		padding-inline: 5px;
	}

	.section-message .section__actions {
		padding-inline: 8px;
	}

	.section-message .section__btn {
		width: 100%;
	}
}

	/*
		-- Alt
	*/

.section-message--alt {
	padding-block: clamp(48px, 5vw, 72px);
}
.section-message--alt:before,
.section-message--alt:after {
	display: none;
}

.section-message--alt p {
	max-width: 760px;
}

@media (max-width: 767px) {
	.section-message--alt *:not(.btn-alt) {
		text-align: left !important;
	}

	.section-message--alt .btn-alt { padding-inline: 15px; }
}

.section-message--alt.background-light-gray h2 { color: var(--c-red-hex); }

/* ------------------------------------------------------------ *\
	Section-text-image
\* ------------------------------------------------------------ */

.section-text-image {
	padding-block: 80px;
}

.section-text-image .section__inner {
	display: grid;
	grid-template-columns: 42.5% auto;
	gap: 97px;
}

.section-text-image .section__image-title h2 span {
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	font-size: 20px;
	line-height: 2;
	text-transform: uppercase;
	font-style: normal;
	color: var(--c-charcoal);
}

.section-text-image .section__image-title p {
	letter-spacing: -0.003em;
}

.section-text-image .section__image-title h2 {
	color: #D9201E;
	font-family: 'Playfair Display', sans-serif;
	font-style: italic;
	font-size: 36px;
	line-height: 1.11;
	margin-bottom: 31px;
}

.section-text-image .section__image {
	width: 100%;
	margin-top: 86px;
}

.section-text-image .section__image img {
	aspect-ratio: 444 / 276;
	border: solid 15px #fff;
	width: 98.3%;
	height: 100%;
	object-fit: cover;
	transform: rotate(-8deg);
	position: relative;
	right: 9px;
}

.section-text-image .section__text li {
	margin-bottom: 24px;
}

.section-text-image .section__text li:last-child {
	margin-block: 42px 0;
}

.section-text-image .section__text li h3 {
	font-weight: 700;
	display: inline-block;
	margin-bottom: 15px;
	font-size: 18px;
	line-height: 1.66;
}

.section-text-image .section__text li p span {
	color: #D9201E;
}

@media (max-width: 1023px) {
	.section-text-image .section__inner {
		grid-template-columns: 1fr;
	}

	.section-text-image .section__image {
		width: 80%;
		margin-inline: auto;
	}
}

@media (max-width: 767px) {
	.section-text-image {
		padding-block: 40px 64px;
	}

	.section-text-image .section__inner {
		gap: 30px;
	}

	.section-text-image .section__image-title {
		display: flex;
		flex-direction: column-reverse;
	}

	.section-text-image .section__image {
		margin-top: 20px;
		width: 85.6%;
		margin-bottom: 54px;
	}

	.section-text-image .section__image img {
		width: 100%;
		border-width: 10px;
		right: 0;
	}

	.section-text-image .section__image-title h2 span {
		font-size: 16px;
		line-height: 1.18;
	}

	.section-text-image .section__image-title h2 {
		font-size: 28px;
		line-height: 1.42;
		margin-bottom: 24px;
	}

	.section-text-image .section__image-title p {
		font-size: 16px;
		line-height: 1.75;
	}

	.section-text-image .section__text li h3 {
		font-size: 16px;
		line-height: 1.75;
	}

	.section-text-image .section__text li {
		margin-bottom: 26px;
	}

	.section-text-image .section__text li p {
		font-size: 16px;
		line-height: 1.75;
	}
}

/* ------------------------------------------------------------ *\
	Section-accordion
\* ------------------------------------------------------------ */

.section-accordion {
	padding-block: 80px 338px;
	background-color: #fff !important;
}

.section-accordion .section__head {
	margin-bottom: 64px;
}

.section-accordion .section__head h2 {
	font-family: 'Playfair Display', sans-serif;
	font-size: 36px;
	font-style: italic;
	line-height: 1.11;
	text-align: center !important;
	color: #D9201E;
}

.section-accordion .section__box {
	max-width: 748px;
	background-color: #F9F2E6 !important;
	margin-inline: auto;
	padding: 48px 54px 47px;
}

.section-accordion .section__box .section__box-title {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 14px;
	text-transform: uppercase;
}

.section-accordion .section__box-title p {
	font-size: 20px;
	font-weight: 700;
	font-family: 'Montserrat';
	line-height: 2;
}

.section-accordion .section__box span {
	color: #D9201E;
}

@media (max-width: 767px) {
	.section-accordion {
		padding-block: 65px 313px;
	}

	.section-accordion .section__head h2 {
		font-size: 28px;
		line-height: 1.42;
	}

	.section-accordion .section__head {
		margin-bottom: 38px;
	}

	.section-accordion .section__box {
		padding: 49px 32px 47px;
	}

	.section-accordion .section__box-title p {
		font-size: 16px;
		line-height: 1.18;
	}
}

/* ------------------------------------------------------------ *\
	Accordion-Faq
\* ------------------------------------------------------------ */

.accordion-faq {
	max-width: 748px;
	margin: 64px auto 80px;
}

.accordion-faq .accordion__section {
	border: solid 2px #E0E0E0;
	margin-bottom: 20px;
	transition: border .4s;
}

.accordion-faq .accordion__head {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	padding: 19px 28px 17px 32px;
	cursor: pointer;
}

.accordion-faq .accordion__head h3 {
	margin-bottom: 0;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.33;
}

.accordion-faq .accordion__head img {
	width: 11px;
	height: 7px;
	object-fit: contain;
	transition: transform .6s ease;
	transform-origin: center;
}

.accordion-faq .accordion__body {
	padding: 10px 29px 32px;
	transition: max-height .6s ease;
}

.accordion-faq .accordion__body p {
	margin-bottom: 29px;
}

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

.accordion-faq .accordion__section.is-current {
	border-left: 2px solid #D9201E;
}

.accordion-faq .accordion__section.is-current img {
	transform: rotate(-180deg);
}

@media (max-width: 767px) {
	.accordion-faq {
		margin-block: 38px 71px;
	}

	.accordion-faq .accordion__section {
		margin-bottom: 14px;
	}

	.accordion-faq .accordion__head {
		padding: 17px 22px 15px 30px;
		flex-wrap: nowrap;
	}

	.accordion-faq .accordion__head h3 {
		font-size: 16px;
		line-height: 1.5;
		padding-right: 6px;
	}

	.accordion-faq .accordion__body {
		padding: 9px 20px 58px 30px;
	}

	.accordion-faq .accordion__body p {
		font-size: 16px;
		line-height: 1.75;
	}
}

/* ------------------------------------------------------------ *\
	Section-posts-featured
\* ------------------------------------------------------------ */

.section-posts-featured {
	margin-top: -248px;
}

.section-posts-featured .section__head {
	margin-bottom: 54px;
}

.section-posts-featured .section__head > * {
	text-align: center !important;
}

.section-posts-featured .section__head h2 {
	font-size: 36px;
	font-family: 'Playfair Display', sans-serif;
	font-style: italic;
	line-height: 1.11;
	color: #D9201E;
}

.section-posts-featured .section__posts {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 25px;
}

@media (max-width: 767px) {
	.section-posts-featured {
		background-color: #F4F4F4 !important;
		padding-top: 54px;
	}

	.section-posts-featured .section__head {
		margin-bottom: 30px;
	}

	.section-posts-featured .section__head h2 {
		font-size: 28px;
		line-height: 1.42;
	}

	.section-posts-featured .section__posts {
		gap: 23px;
	}
}

/* ------------------------------------------------------------ *\
	Post-featured
\* ------------------------------------------------------------ */

.post-featured {
	display: flex;
	flex-direction: column;
	position: relative;
}

.post-featured .post-featured__image {
	width: 100%;
	overflow: hidden;
}

.post-featured .post-featured__btn {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 3;
}

.post-featured:hover h3 {
	color: #D9201E;
}

.post-featured .post-featured__image img {
	aspect-ratio: 361 / 230;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .4s ease;
}

.post-featured .post-featured__entry {
	flex: 1;
	padding: 32px 30px;
	background-color: #fff !important;
}

.post-featured .post-featured__entry h3 {
	font-size: 18px;
	font-weight: 700;
	line-height: 1.66;
	transition: color .4s;
}

@media (max-width: 767px) {
	.post-featured .post-featured__entry {
		padding: 25px 32px 24px;
	}
}

/* ------------------------------------------------------------ *\
	Section-testimonials--alt
\* ------------------------------------------------------------ */

.section-testimonials.section-testimonials--alt h2 span.section__head-bottom.title__red-italic {
	font-size: 36px;
	line-height: 1.3;
}

.section-testimonials.section-testimonials--alt .section__head {
	margin-bottom: 25px;
}

.section-testimonials.section-testimonials--alt .section__body {
	margin-inline: auto;
	max-width: 750px;
}

@media (max-width: 767px) {
	.section-testimonials.section-testimonials--alt {
		margin-block: 49px 88px;
	}

	.section-testimonials.section-testimonials--alt h2 span.section__head-bottom.title__red-italic {
		font-size: 28px;
		line-height: 1.42;
	}

	.section-testimonials.section-testimonials--alt .section__head {
		margin-bottom: 22px;
	}
}

/* ------------------------------------------------------------ *\
	Tile-testimonial--alt
\* ------------------------------------------------------------ */

.tile-testimonial.tile-testimonial--alt .tile__head {
	font-size: 16px;
	margin-bottom: 15px;
}

.tile-testimonial.tile-testimonial--alt .tile__content {
	max-width: 360px;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.tile-testimonial.tile-testimonial--alt .tile__entry {
	font-size: 16px;
	line-height: 1.375;
	flex: 1;
	margin-bottom: 16px;
}

.tile-testimonial.tile-testimonial--alt .tile__meta {
	font-size: 14px;
	line-height: 1.36;
	margin-top: auto;
}

@media (max-width: 767px) {
	.tile-testimonial.tile-testimonial--alt .tile__head {
		margin-bottom: 17px;
	}

	.tile-testimonial.tile-testimonial--alt .tile__entry p {
		line-height: 1.75;
	}

	.tile-testimonial.tile-testimonial--alt {
		padding-inline: 30px;
	}

	.tile-testimonial.tile-testimonial--alt .tile__meta {
		font-size: 16px;
		line-height: 1.375;
	}
}

/* ------------------------------------------------------------ *\
	Section-contact-socials
\* ------------------------------------------------------------ */

.section-contact-socials {
	background-color: #991C1F !important;
	color: #fff;
	padding-block: 50px;
}

.section-contact-socials .section__inner {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 48px;
}

.section-contact-socials .section__entry h5 {
	font-family: 'Montserrat', sans-serif;
	font-size: 20px;
	line-height: 2;
	font-weight: 700;
	text-transform: uppercase;
}

.section-contact-socials .section__logo {
	padding-left: 47px;
	border-left: solid 1px rgba(255, 255, 255, .5);
}

.section-contact-socials .section__logo img {
	height: 60px;
	object-fit: contain;
	width: 161px;
}

@media (max-width: 1023px) {
	.section-contact-socials .section__logo {
		width: 90%;
		text-align: center !important;
		border-left: none;
		padding-left: 0;
		border-top: solid 1px rgba(255, 255, 255, .5);
		margin-top: 16px;
		padding-top: 38px;
	}
}

@media (max-width: 767px) {
	.section-contact-socials {
		padding-block: 48px 40px;
	}

	.section-contact-socials .section__inner {
		gap: 24px;
	}

	.section-contact-socials .section__entry {
		width: 100%;
	}

	.section-contact-socials .section__entry h5 {
		text-align: center !important;
	}

	.section-contact-socials .section__logo img {
		width: 129px;
		height: 30px;
	}
}

/* ------------------------------------------------------------ *\
	Socials-contacts
\* ------------------------------------------------------------ */

.socials-contacts ul {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	align-items: center;
}

.socials-contacts ul a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 60px;
	height: 60px;
	border: solid 1px rgba(255, 255, 255, .5);
	transition: color .4s, background-color .4s;
}

.socials-contacts ul a:hover {
	background-color: #fff !important;
}

.socials-contacts ul a:hover path {
	fill: #991C1F;
}

.socials-contacts ul a svg path {
	fill: #fff;
	transition: fill .4s;
}

@media (max-width: 767px) {
	.socials-contacts {
		width: 100%;
	}

	.socials-contacts ul {
		gap: 15px;
		justify-content: center;
	}

	.socials-contacts ul a {
		width: 50px;
		height: 50px;
	}
}

/* ------------------------------------------------------------ *\
	Section-Cols-Media
\* ------------------------------------------------------------ */

section.section-cols-media { padding-bottom: clamp(30px, 7vw, 96px); }

/* ------------------------------------------------------------ *\
	Countdown
\* ------------------------------------------------------------ */

.js-countdown.is-countdown {
	border: none;
}

/* ------------------------------------------------------------ *\
	Helper classes
\* ------------------------------------------------------------ */

@media (min-width: 1024px) {
	.desktop-hidden {
		display: none !important;
	}
}

@media (max-width: 1023px) {
	.tablet-hidden {
		display: none !important;
	}
}

@media (min-width: 768px) {
	.tablet-up-hidden {
		display: none !important;
	}
}

@media (max-width: 767px) {
	.mobile-hidden {
		display: none !important;
	}
}

.section-links {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 100px 0;
}

.section-links ul {
	list-style: none;
	display: flex;
	flex-direction: column;
	text-align: center;
	gap: 10px;
}

.section-links a {
	display: block;
	background-color: var(--c-header-main, black);
	color: white;
	font-weight: 700;
	text-transform: uppercase;
	padding: 10px;
}

@media (hover) and (pointer: fine) {
	.section-links a:hover {
		background-color: var(--c-base, black);
		text-decoration: none;
	}
}

/* ------------------------------------------------------------ *\
	Section Form
\* ------------------------------------------------------------ */

.section-form { padding: 80px 0; position: relative; z-index: 2; }
.section-form .section__head { width: 100%; font-size: 16px; line-height: 1.625; text-align: center; }
.section-form .section__head:not(:last-child) { margin-bottom: 24px; }
.section-form .section__form { background-color: white; padding: clamp(20px, 7vw, 96px); }

@media (max-width: 985px) {
	.section-form { padding: 48px 0; background-color: white; box-shadow: 0 0 10px rgba(0,0,0,0.3); }
	.section-form .section__head { display: none; }
	.section-form .section__form { padding: 0; }
}

/* ------------------------------------------------------------ *\
	Form Steps
\* ------------------------------------------------------------ */

.form-steps { width: 100%; counter-reset: formSteps; }
.form-steps > form { display: flex; flex-wrap: wrap; }

.form-steps .form__steps { width: 290px; padding-right: 40px; }
.form-steps .form__steps ul { list-style: none; margin: 0; padding-top: 0; display: flex; flex-direction: column; gap: 24px; }
.form-steps .form__steps li { display: flex; align-items: center; gap: 12px; counter-increment: formSteps; color: #A8A8A8; cursor: pointer; transition: color var(--theme-transition-duration); font-size: 14px; line-height: 1.57; }
.form-steps .form__steps li:before { content: counter(formSteps); display: flex; align-items: center; justify-content: center; width: 24px; min-width: 24px; height: 24px; border-radius: 50%; background-color: var(--c-red-hex, red); opacity: 0.1; transition: opacity var(--theme-transition-duration); font-family: var(--ff-montserrat, 'sans-serif'); font-weight: 500; color: white; }
.form-steps .form__steps li.active { color: var(--c-charcoal); }
.form-steps .form__steps li.active:before { opacity: 1; }
.form-steps .form__steps li.complete { color: var(--c-charcoal); }
.form-steps .form__steps li.complete:before { background-color: var(--c-darkred-hex); font-size: 0; line-height: 0; opacity: 1; background-image: url(../images/ico-check.svg); background-repeat: no-repeat; background-position: center; background-size: 9px 7px; }
.form-steps .form__steps p { display: none; }

.form-steps .form__tabs { width: calc(100% - 290px); position: relative; }
.form-steps .form__tab { position: absolute; left: 0; right: 0;top: 0; opacity: 0; visibility: hidden; transition: opacity var(--theme-transition-duration), visibility var(--theme-transition-duration); }
.form-steps .form__tab.active { opacity: 1; visibility: visible; position: relative; }

.form-steps .form__entry h2 { font-size: clamp(28px, 3vw, 32px); line-height: 1.42; margin-bottom: 16px; font-family: var(--ff-montserrat); font-weight: 600; }
.form-steps .form__entry p { font-size: 16px; line-height: 1.62; margin-bottom: 16px; }
.form-steps .form__entry p a { text-decoration: underline; }
.form-steps .form__entry > *:last-child { margin-bottom: 0; }
.form-steps .form__entry:not(:last-child) { padding-bottom: 48px; margin-bottom: 48px; border-bottom: 1px solid #e0e0e0; }

@media (hover) and (pointer: fine) {
	.form-steps .form__entry p a:hover {
		text-decoration: underline;
	}
}

.form-steps .form__fields { display: flex; flex-wrap: wrap; position: relative; margin: -16px -12px; }
.form-steps .form__fields > * { width: 100%; padding: 16px 12px; }

.form-steps .form__fields--alt { margin-inline: -12px; }
.form-steps .form__fields--alt > * { padding-inline: 12px; }

.form-steps .form__fields--alt .form__field--error:after { left: 12px; right: 12px; }

.form-steps .form__field { display: flex; flex-direction: column; gap: 8px; position: relative; justify-content: flex-end; z-index: 2; }
.form-steps .form__field > label { width: 100%; min-width: calc(100% + 6px); font-size: 16px; line-height: 1.5; font-weight: 600; }
.form-steps .form__field > label > span { color: #857E78; }
.form-steps .form__field > label > em { display: block; width: 100%; font-size: 14px; line-height: 1.57; color: #857E78; }
.form-steps .form__field > label > strong { color: var(--c-red-hex) !important; }
.form-steps .form__field > label > * { display: inline-block; vertical-align: middle; }
.form-steps .form__field input[type="number"]::-webkit-outer-spin-button,
.form-steps .form__field input[type="number"]::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.form-steps .form__field input[type="number"] { -moz-appearance: textfield; }

.form-steps .form__field > span[data-prefix] input,
.form-steps .form__field > span[data-prefix] select { padding-left: 26px; }
.form-steps .form__field > span[data-prefix]:before { content: attr(data-prefix); position: absolute; left: 16px; top: 50%; transform: translateY(-50%); font-size: 14px; line-height: 1; pointer-events: none; color: var(--c-charcoal); }

.form-steps .form__field > span[data-suffix] input,
.form-steps .form__field > span[data-suffix] select { padding-right: 26px; }
.form-steps .form__field > span[data-suffix]:after { content: attr(data-suffix); position: absolute; right: 16px; top: 50%; transform: translateY(-50%); font-size: 14px; line-height: 1; pointer-events: none; color: var(--c-charcoal); }

.form-steps .form__field > span[data-width="half"] { max-width: 50%; }

.form-steps .form__field--half { width: 50%; }
.form-steps .form__field--1of3 { width: calc(100% / 3); }

.form-steps .form__field--heading h5 { font-family: var(--ff-montserrat, 'sans-serif'); font-weight: 700; font-size: 20px; line-height: 1.5; color: var(--c-charcoal); text-transform: uppercase; margin-bottom: 0; }
.form-steps .form__field--heading h5 span { font-size: 16px; line-height: 1.1; color: #857E78; font-weight: 400; text-transform: none; }
.form-steps .form__field--heading p { font-size: 16px; line-height: 1.62; }

.form-steps .form__field--label { position: relative; margin-bottom: -25px; width: 100%; }
.form-steps .form__field--label h6 { font-size: 18px; line-height: 1.11; font-weight: 700; margin-bottom: 0; }

.form-steps .form__field--input textarea,
.form-steps .form__field--input input,
.form-steps .form__field--select select,
.form-steps .form__field--zip input,
.form-steps .form__field--file input,
.form-steps .form__field--calendar input { background: white; width: 100%; border: 1px solid #d4d4d4; border-radius: 4px; padding: 0 16px; font-size: 14px; line-height: 1; height: 48px; color: var(--c-charcoal); transition: color var(--theme-transition-duration), border var(--theme-transition-duration); }
.form-steps .form__field--input textarea:focus,
.form-steps .form__field--input input:focus,
.form-steps .form__field--select select:focus,
.form-steps .form__field--zip input:focus,
.form-steps .form__field--file input:focus,
.form-steps .form__field--calendar input:focus { border-color: var(--c-charcoal); }
.form-steps .form__field--input textarea::placeholder,
.form-steps .form__field--input input::placeholder,
.form-steps .form__field--select select::placeholder { color: #A8A8A8; }
.form-steps .form__field--select > span,
.form-steps .form__field--input > span,
.form-steps .form__field--zip > span,
.form-steps .form__field--file > span,
.form-steps .form__field--calendar > span { display: block; position: relative; }

.form-steps .form__field--input textarea { resize: none; height: 190px; padding-block: 10px; line-height: 1.57; font-size: 16px; }

.form-steps .form__field--zip > span { max-width: 148px; }

.form-steps .form__field--file input { padding-block: 12px; }

.form-steps .form__field--calendar > span:before { content: ' '; width: 9px; height: 5px; background-image: url(../images/ico-select.svg); background-repeat: no-repeat; background-size: 9px 5px; position: absolute; right: 16px; top: 50%; transform: translateY(-50%); pointer-events: none; z-index: 2; }
.form-steps .form__field--calendar input::-webkit-calendar-picker-indicator { background: none; position: absolute; left: 0; top: 0; right: 0; bottom: 0; width: 100%; height: 100%; z-index: 10; cursor: pointer; opacity: 0; }

.form-steps .form__field--select { z-index: 10; }
.form-steps .form__field--select select { appearance: none; padding-right: 26px; cursor: pointer; }
.form-steps .form__field--select select[style] { display: block !important; position: absolute; left: -4000px; opacity: 0; }
.form-steps .form__field--select select::-ms-expand { display: none; }
.form-steps .form__field--select select:required:invalid { color: #AFAFAF; }
.form-steps .form__field--select > span:before { content: ' '; width: 9px; height: 5px; background-image: url(../images/ico-select.svg); background-repeat: no-repeat; background-size: 9px 5px; position: absolute; right: 16px; top: 50%; transform: translateY(-50%); pointer-events: none; z-index: 2; }
.form-steps .form__field--select ~ .form__field--select { z-index: 9; }
.form-steps .form__field--select ~ .form__field--select ~ .form__field--select { z-index: 8; }
.form-steps .form__field--select ~ .form__field--select ~ .form__field--select ~ .form__field--select { z-index: 7; }
.form-steps .form__field--select ~ .form__field--select ~ .form__field--select ~ .form__field--select ~ .form__field--select { z-index: 6; }
.form-steps .form__field--select ~ .form__field--select ~ .form__field--select ~ .form__field--select ~ .form__field--select ~ .form__field--select { z-index: 5; }

.form-steps .form__field--radio > span { display: flex; flex-wrap: wrap; gap: 9px; }
.form-steps .form__field--radio > span > input { position: absolute; left: -4000px; opacity: 0; visibility: hidden; }
.form-steps .form__field--radio > span > input:checked + label:before { background-color: var(--c-red-hex, red); border-color: var(--c-red-hex, red); }
.form-steps .form__field--radio > span > input:checked + label { border-color: var(--c-red-hex, red); background-color: rgba(217,32,30, 0.1); }
.form-steps .form__field--radio > span > label { display: flex; flex-grow: 1; width: calc((100% / 3) - 9px); border: 1px solid #d4d4d4; border-radius: 4px; padding: 0 16px 0 36px; background-color: white; }
.form-steps .form__field--radio > span > label { align-items: center; min-height: 48px; position: relative; font-size: 14px; line-height: 1.1; color: var(--c-charcoal); cursor: pointer; }
.form-steps .form__field--radio > span > label { transition: border, background; transition-duration: var(--theme-transition-duration); }
.form-steps .form__field--radio > span > label:before { content: ' '; position: absolute; left: 14px; top: 50%; transform: translateY(-50%); width: 14px; height: 14px; border-radius: 50%; border: 1px solid #D4D4D4; transition: border var(--theme-transition-duration), background var(--theme-transition-duration); }
.form-steps .form__field--radio > span > label:after { content: ' '; position: absolute; left: 18px; top: 50%; transform: translateY(-50%); width: 6px; height: 6px; border-radius: 50%; background-color: white; }

.form-steps .form__field--radio-alt > span { display: flex; flex-wrap: wrap; gap: 12px; }
.form-steps .form__field--radio-alt > span > input { position: absolute; left: -4000px; opacity: 0; visibility: hidden; }
.form-steps .form__field--radio-alt > span > input:checked + label:before { background-color: var(--c-red-hex, red); border-color: var(--c-red-hex, red); }
.form-steps .form__field--radio-alt > span > input:checked + label { border-color: var(--c-red-hex, red); background-color: rgba(217,32,30, 0.1); }
.form-steps .form__field--radio-alt > span > label { display: flex; flex-direction: column; gap: 14px; width: calc((100% / 5) - 12px); border: 1px solid #d4d4d4; border-radius: 4px; padding: 36px 0 14px 0; position: relative; background-color: white; }
.form-steps .form__field--radio-alt > span > label { transition: border, background; transition-duration: var(--theme-transition-duration); }
.form-steps .form__field--radio-alt > span > label:before { content: ' '; position: absolute; right: 14px; top: 14px; width: 14px; height: 14px; border-radius: 50%; border: 1px solid #D4D4D4; transition: border var(--theme-transition-duration), background var(--theme-transition-duration); }
.form-steps .form__field--radio-alt > span > label:after { content: ' '; position: absolute; right: 18px; top: 18px; width: 6px; height: 6px; border-radius: 50%; background-color: white; }
.form-steps .form__field--radio-alt > span > label img { display: block; width: 100%; height: 75px; object-fit: contain; object-position: center; }
.form-steps .form__field--radio-alt > span > label > span { display: flex; min-height: 40px; align-items: center; text-align: center; font-size: 14px; line-height: 1.42; color: var(--c-charcoal); padding-inline: 10px; width: 100%; justify-content: center; }

.form-steps .form__field--clone { z-index: unset; }
.form-steps .form__field--clone > span { color: var(--c-red-hex, red); font-size: 16px; line-height: 1.37; font-weight: 600; display: inline-flex; gap: 7px; align-items: center; cursor: pointer; transition: color var(--theme-transition-duration); z-index: 2; }
.form-steps .form__field--clone > span:before { content: ' '; width: 8px; height: 8px; background-image: url(../images/ico-plus.svg); background-repeat: no-repeat; background-position: center; background-size: 8px 8px; }
.form-steps .form__field--clone:not(:first-child) { margin-top: -15px; }

.form-steps .form__field--error > span label,
.form-steps .form__field--error > span input,
.form-steps .form__field--error > span select,
.form-steps .form__field--error > span textarea,
.form-steps .form__field--error > span > .custom-select > button  { border-color: var(--c-red-hex, red); }
.form-steps .form__field--error:after { content: attr(data-error-text); color: var(--c-red-hex, red); font-size: 12px; line-height: 1.66; position: absolute; left: 20px; top: calc(100% - 14px); right: 20px; }
.form-steps .form__field--error ~ .form__field--clone:not(:first-child) { margin-top: -20px; }

.form-steps .form__description { text-align: right; margin-top: 40px; width: 100%; font-size: 14px; }
.form-steps .form__description strong { color: var(--c-red-hex); }

.form-steps .form__action { width: 100%; margin-top: 40px; display: flex; align-items: center; gap: 32px; justify-content: flex-end; }
.form-steps .form__action-btn { background-color: var(--c-red-hex, red); color: white; padding: 0 21px; font-size: 16px; line-height: 1; font-weight: 600; height: 54px; border-radius: 4px; border: 2px solid var(--c-red-hex, red); transition: background var(--theme-transition-duration), color var(--theme-transition-duration); text-transform: uppercase; letter-spacing: 2px; cursor: pointer; }
.form-steps .form__action-btn[disabled] { pointer-events: none; opacity: 0.5; }

.form-steps .form__action-link { display: inline-flex; gap: 8px; align-items: center; height: 54px; border: 1px solid transparent; border-radius: 4px; background: none; color: var(--c-red-hex, red); cursor: pointer; }
.form-steps .form__action-link:before { content: ' '; width: 12px; height: 7px; background-image: url(../images/ico-arrow.svg); background-repeat: no-repeat; background-size: 12px 7px; background-position: center; transition: transform var(--theme-transition-duration); }
.form-steps .form__action-link > span { font-size: 16px; line-height: 1; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }

@media (hover) and (pointer: fine) {
	.form-steps .form__action-btn:hover { background-color: transparent; color: var(--c-red-hex, red); }
	.form-steps .form__action-link:hover:before { transform: translateX(-5px); }
	.form-steps .form__field--clone > span:hover { color: var(--c-base, black); }
	.form-steps .form__field--radio > span > label:hover,
	.form-steps .form__field--radio-alt > span > label:hover,
	.form-steps .form__field--input textarea:hover,
	.form-steps .form__field--input input:hover,
	.form-steps .form__field--select select:hover,
	.form-steps .form__field--zip input:hover,
	.form-steps .form__field--file input:hover { border-color: var(--c-charcoal); }
}

@media (max-width: 1100px) {
	.form-steps .form__steps { width: 190px; padding-right: 20px; }
	.form-steps .form__tabs { width: calc(100% - 190px); }

	.form-steps .form__field > span[data-width="half"] { max-width: 100%; }
}

@media (max-width: 985px) {
	.form-steps .form__steps { width: 100%; padding-right: 0; margin-bottom: 3px; }
	.form-steps .form__steps ul { flex-direction: row; gap: 8px; justify-content: center; }
	.form-steps .form__steps li { font-size: 0; line-height: 0; gap: 0; }
	.form-steps .form__steps li:before { line-height: 1; font-size: 14px; }
	.form-steps .form__steps p { display: block; color: var(--c-red-hex, red); text-align: center; font-size: 14px; line-height: 1.57; font-weight: 500; text-transform: uppercase; margin-top: 16px; }

	.form-steps .form__tabs { width: 100%; }

	.form-steps .form__fields { margin: -16px 0; }
	.form-steps .form__fields > * { padding: 16px 0; }

	.form-steps .form__fields--alt { margin: -16px -8px; }
	.form-steps .form__fields--alt > * { padding: 16px 8px; }
	.form-steps .form__fields--alt .form__field--error:after { left: 8px; right: 8px; }

	.form-steps .form__field--half { width: 100%; }

	.form-steps .form__field--1of3 { width: 50%; }

	.form-steps .form__field--heading h5 { margin-bottom: 12px; text-align: center; }

	.form-steps .form__field--zip > span { max-width: 100%; }

	.form-steps .form__field--clone:not(:first-child) { margin-top: -12px; }

	.form-steps .form__field--error:after { top: calc(100% - 16px); left: 0; right: 0; }
	.form-steps .form__field--error ~ .form__field--clone:not(:first-child) { margin-top: -10px; }

	.form-steps .form__action { margin-top: 48px; justify-content: space-between; gap: 16px; }
	.form-steps .form__action-btn { flex-grow: 1; width: 50%; }
	.form-steps .form__action-link { flex-grow: 1; width: 50%; border-color: var(--c-red-hex, red); justify-content: center; padding-right: 12px; }
}

@media (max-width: 767px) {
	.form-steps .form__field--radio-alt > span { gap: 16px; }
	.form-steps .form__field--radio-alt > span > label { width: calc(50% - 16px); }
	.form-steps .form__field--select select[style] { position: relative; left: 0; opacity: 1; }
	.form-steps .form__field--select select[style] + .custom-select { display: none !important; }
}

/* ------------------------------------------------------------ *\
	Custom Select
\* ------------------------------------------------------------ */

.custom-select { width: 100%; position: relative; z-index: 10; }
.custom-select > button { width: 100%; border: 1px solid #d4d4d4; border-radius: 4px; padding: 0 16px; font-size: 14px; line-height: 1; height: 48px; color: var(--c-charcoal); transition: color var(--theme-transition-duration), border var(--theme-transition-duration); background: white; }
.custom-select > button { padding-right: 26px; cursor: pointer; text-align: left; position: relative; }
.custom-select > button:focus { border-color: var(--c-charcoal); }
.custom-select > button:before { content: ' '; width: 9px; height: 5px; background-image: url(../images/ico-select.svg); background-repeat: no-repeat; background-size: 9px 5px; position: absolute; right: 16px; top: 50%; margin-top: -2px; pointer-events: none; transition: transform var(--theme-transition-duration), margin var(--theme-transition-duration); }
.custom-select--active { z-index: 20; }
.custom-select--active > button:before { transform: rotate(180deg); }
.custom-select__dropdown { position: absolute; left: 0; right: 0; top: calc(100% + 2px); background-color: white; overflow: hidden; overflow-y: auto; -webkit-overflow-scrolling: touch; max-height: 210px; border-radius: 4px; box-shadow: 0 0 10px rgba(0,0,0,.18); z-index: 100; }
.custom-select__dropdown button { display: flex; width: 100%; min-height: 42px; transition: background var(--theme-transition-duration); font-size: 14px; line-height: 1.85; padding: 5px 16px; border: 0; border-radius: 0; background: white; align-items: center; }

@media (hover) and (pointer: fine) {
	.custom-select > button:hover { border-color: var(--c-charcoal); }
	.custom-select__dropdown button:hover { background-color: #EFEFEF; }
}

/* ------------------------------------------------------------ *\
	label Tooltip
\* ------------------------------------------------------------ */

.label-tooltip { display: inline-flex; width: 14px; height: 14px; align-items: center; justify-self: center; position: relative; font-style: normal; background-image: url('../images/ico-tooltip.svg'); background-repeat: no-repeat; background-position: center; background-size: contain; cursor: pointer; z-index: 99999; }
.label-tooltip:before { content: ' '; position: absolute; left: -20px; right: -20px; top: -20px; bottom: 0; pointer-events: none; z-index: 10; }
.label-tooltip > span { position: absolute; left: 0; top: -6px; background-color: white; padding: 16px; transform: translate(-50%, -100%); font-size: 14px; line-height: 1.14; color: var(--c-charcoal); min-width: 246px; box-shadow: 0 5px 10px rgba(0,0,0,0.2); }
.label-tooltip > span { opacity: 0; visibility: hidden; transition: opacity var(--theme-transition-duration), visibility var(--theme-transition-duration); }
.label-tooltip > span:before { content: ' '; position: absolute; left: 50%; bottom: -9px; width: 0; height: 0; border-left: 10px solid transparent; border-right: 10px solid transparent; border-top: 10px solid white; margin-left: -3px;}
.label-tooltip:hover:before { pointer-events: all; }
.label-tooltip:hover > span { opacity: 1; visibility: visible; }

@media (max-width: 767px) {
	.label-tooltip > span { position: fixed; left: 16px; right: 16px; top: 50%; transform: translateY(-50%); min-width: 0; box-shadow: 0 0 10px rgba(0,0,0,0.6); padding: 24px; font-size: 16px; line-height: 1.625; }
	.label-tooltip > span:before { display: none; }
}

/* ------------------------------------------------------------ *\
	Section Content And Images
\* ------------------------------------------------------------ */

.section-content-and-images { width: 100%; position: relative; background-color: white; padding-block: 80px; }
.section-content-and-images:first-child { padding-top: 40px; }
.section-content-and-images > * { display: flex; align-items: center; }
.section-content-and-images .section__content { width: calc(50% + 32px); padding-inline: 0 60px; display: flex; flex-direction: column; gap: 24px; flex: none; position: relative; z-index: 10; }
.section-content-and-images .section__content-entry { font-size: 18px; line-height: 1.66; color: var(--c-charcoal); }
.section-content-and-images .section__content-entry h1 { font-size: clamp(32px, 4vw, 46px); line-height: 1.17; font-style: italic; color: var(--c-red-hex, red); margin-bottom: 16px; font-family: var(--ff-play-fair, 'sans-serif'); font-weight: 400; max-width: 530px; }
.section-content-and-images .section__content-entry p { margin-bottom: 16px; }
.section-content-and-images .section__content-entry> *:last-child { margin-bottom: 0; }
.section-content-and-images .section__images { width: calc(50% - 32px); position: relative; font-size: 0; line-height: 0; pointer-events: none; }
.section-content-and-images .section__images:before { content: ' '; position: absolute; left: 0; right: 0; top: 50%; transform: translateY(-50%); aspect-ratio: 1/1; background-color: #EFEFEF; border-radius: 50%; }
.section-content-and-images .section__image { padding: clamp(20px, 3vw, 32px); background-color: white; box-shadow: 0 0 10px rgba(0, 0, 0, .2); position: relative; z-index: 2; }
.section-content-and-images .section__image:first-child { margin: 27px 8px 0 96px; transform: rotate(8deg); z-index: 3; }
.section-content-and-images .section__image:last-child { margin: -28px 96px 0 8px; transform: rotate(-8deg); }
.section-content-and-images .section__image strong { display: block; position: relative; width: 100%; }
.section-content-and-images .section__image span + span { position: absolute; left: 0; top: 0; right: 0; bottom: 0; }
.section-content-and-images .section__image span + span img { position: absolute; left: 0; top: 0; width: 100%; height: 100%; object-fit: cover; object-position: center center; }

@media (max-width: 1100px) {
	.section-content-and-images .section__image { padding: 20px; }
	.section-content-and-images .section__image:first-child { margin: 14px 4px 0 40px; }
	.section-content-and-images .section__image:last-child { margin: -14px 40px 0 4px; }
}

@media (max-width: 767px) {
	.section-content-and-images { padding-block: 32px; }
	.section-content-and-images:first-child { padding-top: 38px; }
	.section-content-and-images > * { flex-direction: column-reverse; gap: 32px; }
	.section-content-and-images .section__content { width: 100%; padding-right: 0; }
	.section-content-and-images .section__images { width: auto; margin-inline: 20px; }
	.section-content-and-images .section__image { padding: 16px; }
}

/* ------------------------------------------------------------ *\
	Btn Main
\* ------------------------------------------------------------ */

.btn-main { display: inline-flex; align-items: center; min-height: 54px; padding: 4px 22px; font-size: 0; line-height: 0; background-color: var(--c-red-hex, red); color: white; border-radius: 4px; border: 1px solid var(--c-red-hex, red); text-decoration: none; }
.btn-main { transition: color var(--theme-transition-duration), background var(--theme-transition-duration), border var(--theme-transition-duration); }
.btn-main > span { display: block; font-size: 16px; line-height: 1.25; text-transform: uppercase; letter-spacing: 2px; font-weight: 600; }

@media (hover) and (pointer: fine) {
	.btn-main:hover { background-color: transparent; color: var(--c-red-hex, red); text-decoration: none; }
}

/* ------------------------------------------------------------ *\
	Section Content And Form
\* ------------------------------------------------------------ */

.section-content-and-form { width: 100%; padding-block: 50px 102px; position: relative; }
.section-content-and-form:before { content: ' '; position: absolute; left: 0; right: 0; bottom: 0; top: 60%; background-color: white; }

.section-content-and-form .section__wrap { width: 100%; background-color: white; box-shadow: 0 0 10px rgba(0, 0, 0, .16); position: relative; z-index: 2; }

.section-content-and-form .section__image { width: 100%; }
.section-content-and-form .section__image img { display: block; width: 100%; aspect-ratio: 1/0.245; object-fit: cover; object-position: center; }

.section-content-and-form .section__inner { padding: clamp(20px, 10vw, 80px); display: flex; flex-wrap: wrap; }
.section-content-and-form .section__inner-content { width: 50%; padding-right: clamp(20px, 10vw, 80px); font-size: 18px; line-height: 1.66; }
.section-content-and-form .section__inner-content h1,
.section-content-and-form .section__inner-content h2 { font-size: clamp(32px, 8vw, 46px); line-height: 1.17; font-style: italic; font-weight: 400; font-family: var(--ff-play-fair, 'sans-serif'); color: var(--c-red-hex, red); margin-bottom: 16px; }
.section-content-and-form .section__inner-content p { margin-bottom: 10px; }
.section-content-and-form .section__inner-content > *:last-child { margin-bottom: 0; }

.section-content-and-form .section__inner-form { width: 50%; }

.section-content-and-form .form-steps > form { width: 100%; }
.section-content-and-form .form-steps .form__tabs { width: 100%; }
.section-content-and-form .form-steps .form__fields { margin: -16px -8px; }
.section-content-and-form .form-steps .form__fields > * { padding: 16px 8px; }
.section-content-and-form .form-steps .form__field--zip > span { max-width: 100%; }
.section-content-and-form .form-steps .form__field--radio > span > label { flex-grow: unset; }
.section-content-and-form .form-steps .form__action { margin-top: 32px; }
.section-content-and-form .form-steps .form__action > * { flex-grow: 1; }
.section-content-and-form .form-steps .form__field--error:after { left: 10px; right: 10px; top: calc(100% - 14px); }

.section-content-and-form + section.section-benefits--alt { padding-top: 0; }

@media (max-width: 985px) {
	.section-content-and-form { padding-block: 40px 48px; background-color: white; }
	.section-content-and-form:before { display: none; }
	.section-content-and-form .section__wrap { box-shadow: none; }
	.section-content-and-form .section__image { width: auto; margin-inline: -26px; }
	.section-content-and-form .section__image img { aspect-ratio: 1/0.608; }
	.section-content-and-form .section__inner { padding: 0; flex-direction: column; }
	.section-content-and-form .section__inner-content { width: 100%; padding: 40px 0; }
	.section-content-and-form .section__inner-form { width: 100%; }

	.section-content-and-form .form-steps .form__fields { margin: -12px 0; }
	.section-content-and-form .form-steps .form__fields > * { padding: 12px 0; }
	.section-content-and-form .form-steps .form__field--radio > span > label { flex-grow: 1; }
	.section-content-and-form .form-steps .form__action { margin-top: 24px; }
	.section-content-and-form .form-steps .form__field--error:after { left: 0; right: 0; top: calc(100% - 10px); }
}

/* ------------------------------------------------------------ *\
	Section List Contacts
\* ------------------------------------------------------------ */

.section-list-contacts { width: 100%; position: relative; overflow: hidden; padding-block: clamp(60px, 7vw, 96px); text-align: center; background-color: var(--c-darkred-hex); color: white; }
.section-list-contacts .section__list > ul { display: flex; flex-wrap: wrap; position: relative; margin: -20px; list-style: none; padding: 0; }
.section-list-contacts .section__list > ul > li { width: calc(100% / 3); flex-grow: 1; padding: 20px; }
.section-list-contacts .section__list > ul > li > *:last-child { margin-bottom: 0; }
.section-list-contacts .section__list h4 { font-size: 20px; line-height: 1.5; text-transform: uppercase; font-weight: 700; font-family: var(--ff-montserrat, 'sans-serif'); margin-bottom: 16px; }
.section-list-contacts .section__list p { font-size: 18px; line-height: 1.66; }
.section-list-contacts .section__list a { color: white; text-decoration: underline; }
.section-list-contacts .section__actions { width: 100%; display: flex; justify-content: center; }
.section-list-contacts .section__actions:not(:first-child) { margin-top: clamp(48px, 5vw, 60px); }
.section-list-contacts .section__actions a.btn-alt { display: inline-flex; align-items: center; border-color: var(--c-darkred-hex); color: var(--c-red-hex, red) !important; background-color: white !important; }
.section-list-contacts .section__actions a.btn-alt { box-shadow: 0 0 10px rgba(0,0,0,.18); transition: box-shadow: var(--theme-transition-duration), color var(--theme-transition-duration), border var(--theme-transition-duration); }

@media (hover) and (pointer: fine) {
	.section-list-contacts .section__actions a.btn-alt:hover { box-shadow: 0 0 10px rgba(0,0,0,.9); color: var(--c-darkred-hex); border-color: color: var(--c-darkred-hex) !important; }
	.section-list-contacts .section__list a:hover { text-decoration: none; }
}

@media (max-width: 1100px) {
	.section-list-contacts .section__list > ul > li { width: 50%; }
}

@media (max-width: 767px) {
	.section-list-contacts { text-align: left; }
	.section-list-contacts .section__list > ul > li { width: 100%; }
	.section-list-contacts .section__list > ul { margin: -24px 0; }
	.section-list-contacts .section__list > ul > li { padding: 24px 0; }
}

/*
	From The style-category
*/

/* ------------------------------------------------------------ *\
	Shell large
\* ------------------------------------------------------------ */

.shell.shell--small {
	--shell-max-width: 1145px;
	--shell-gutter-large: 36px;
}

@media (max-width: 1024px) {
	.shell.shell--small {
		--shell-gutter-large: 42px;
	}
}

@media (max-width: 767px) {
	.shell.shell--small {
		--shell-gutter-large: 16px;
	}
}

.shell.shell--medium {
	--shell-max-width: 1196px;
	--shell-gutter-large: 36px;
}

@media (max-width: 1024px) {
	.shell.shell--medium {
		--shell-gutter-large: 42px;
	}
}

@media (max-width: 767px) {
	.shell.shell--medium {
		--shell-gutter-large: 16px;
	}
}

.shell.shell--large {
	--shell-max-width: 1440px;
	--shell-gutter-large: 36px;
}

@media (max-width: 1024px) {
	.shell.shell--large {
		--shell-gutter-large: 42px;
	}
}

@media (max-width: 767px) {
	.shell.shell--large {
		--shell-gutter-large: 16px;
	}
}

/* ------------------------------------------------------------ *\
	Hero Card
\* ------------------------------------------------------------ */

.hero-card {
	padding: 60px 0 56px;
	background-color: #fff;
	border-bottom: 1px solid #e0e0e0;
}

@media (max-width: 1279px) {
	.hero-card {
		padding: 50px 0;
	}
}

@media (max-width: 1024px) {
	.hero-card {
		padding: 40px 0;
	}
}

@media (max-width: 767px) {
	.hero-card {
		padding: 27px 0 20px;
	}
}

.hero-card h1 {
	margin-bottom: 0;
	font-size: 36px;
	font-weight: 600;
	line-height: 1.222;
}

@media (max-width: 1279px) {
	.hero-card h1 {
		font-size: 34px;
	}
}

@media (max-width: 767px) {
	.hero-card h1 {
		font-size: 32px;
		line-height: 1.375;
	}
}

.hero-card .hero__inner {
	display: grid;
	grid-template-columns: auto 49.16%;
	align-items: center;
	gap: 80px;
}

@media (max-width: 1279px) {
	.hero-card .hero__inner {
		gap: 40px;
	}
}

@media (max-width: 1024px) {
	.hero-card .hero__inner {
		grid-template-columns: 1fr;
		gap: 24px;
	}
}

.hero-card .hero__title {
	padding-right: 9%;
	margin-bottom: 16px;
}

@media (max-width: 1279px) {
	.hero-card .hero__title {
		padding-right: 0;
	}
}

@media (max-width: 767px) {
	.hero-card .hero__title {
		margin-bottom: 0;
	}
}

@media (max-width: 767px) {
	.hero-card .hero__entry {
		display: none;
	}
}

.hero-card .hero__card {
	padding: 33px 30px 33px 40px;
	color: #7a736d;
	background-color: #fff;
	border-top: 4px solid var(--c-red-hex, red);
	filter: drop-shadow(0px 6px 20px rgba(0, 0, 0, 0.06));
	font-size: 14px;
	line-height: 1.57;
}

@media (max-width: 1279px) {
	.hero-card .hero__card {
		padding: 20px 20px;
	}
}

@media (max-width: 1024px) {
	.hero-card .hero__card {
		padding: 35px;
	}
}

@media (max-width: 767px) {
	.hero-card .hero__card {
		padding: 16px;
	}
}

.hero-card .hero__card ul {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	align-items: start;
	gap: 19px 20px;
	margin-bottom: 24px;
	color: var(--c-charcoal);
	font-size: 16px;
	font-weight: 700;
	line-height: 1.625;
}

@media (max-width: 1279px) {
	.hero-card .hero__card ul {
		gap: 10px 20px;
	}
}

@media (max-width: 1024px) {
	.hero-card .hero__card ul {
		gap: 20px;
	}
}

@media (max-width: 767px) {
	.hero-card .hero__card ul {
		grid-template-columns: 1fr;
		gap: 12px;
		margin-bottom: 16px;
	}
}

.hero-card .hero__card ul:last-child {
	margin-bottom: 0;
}

.hero-card .hero__card li {
	display: grid;
	grid-template-columns: 28px auto;
	justify-content: start;
	gap: 8px;
}

@media (max-width: 767px) {
	.hero-card .hero__card li {
		grid-template-columns: 24px auto;
		align-items: center;
	}
}

.hero-card .hero__card li img {
	padding-top: 2px;
	justify-self: center;
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

@media (max-width: 767px) {
	.hero-card .hero__card li img {
		padding-top: 0;
	}
}

/* ------------------------------------------------------------ *\
	Breadcrumbs-hero
\* ------------------------------------------------------------ */

.breadcrumbs-hero {
	margin-bottom: 23px;
}

.breadcrumbs-hero:last-child {
	margin-bottom: 0;
}

.breadcrumbs-hero ul {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.breadcrumbs-hero li {
	position: relative;
	padding-left: 20px;
}

.breadcrumbs-hero li:first-child {
	padding-left: 0;
}

.breadcrumbs-hero li:first-child:before {
	display: none;
}

.breadcrumbs-hero li:last-child a {
	color: #7a736d;
}

.breadcrumbs-hero li:before {
	content: '';
    position: absolute;
    background: url(../media/svg/arrow-breadcrumbs.svg) no-repeat 0 0;
    background-size: contain;
    top: 50%;
    left: 8px;
    width: 9px;
    height: 8px;
    transform: translateY(-50%);
}

.breadcrumbs-hero a {
	text-decoration: underline;
	text-decoration-color: transparent;
	font-size: 14px;
	line-height: 1.57;
	transition: color .4s, text-decoration-color .4s;
}

.breadcrumbs-hero a:hover {
	color: var(--c-darkred-hex);
	text-decoration-color: currentColor;
}

.breadcrumbs-hero.breadcrumbs-hero--hidden-desktop {
	display: none;
}

@media (max-width: 767px) {
	.breadcrumbs-hero.breadcrumbs-hero--hidden-desktop {
		display: block;
	}
}

/* ------------------------------------------------------------ *\
	Dropdown category
\* ------------------------------------------------------------ */

.dropdown-category {
	position: relative;
}

.dropdown-category.is-visible {
	z-index: 100;
}

.dropdown-category .dropdown__label {
	padding: 10px 16px;
	display: grid;
	grid-template-columns: auto 21px;
	gap: 20px;
	align-items: center;
	border: 1px solid #cccccc;
	background-color: #fff;
	border-radius: 4px;
	font-size: 16px;
	line-height: 1.625;
	cursor: pointer;
	transition: border-color 0.4s;
}

.dropdown-category.is-visible .dropdown__label,
.dropdown-category:hover .dropdown__label {
	border-color: var(--c-charcoal);
}

.dropdown-category .dropdown__label:after {
	content: '';
	display: block;
	margin: 0 auto;
	width: 12px;
	height: 7px;
	background: url(../media/svg/icon-arrow-down.svg) no-repeat center;
	background-size: contain;
	transition: transform .4s;
}

.dropdown-category.is-visible .dropdown__label:after {
	transform: rotate3d(1, 0, 0, 180deg);
}

.dropdown-category .dropdown__content {
	position: absolute;
	padding: 19px 16px;
	top: calc(100% + 2px);
	left: 0;
	min-width: 100%;
	width: max-content;
	max-height: 310px;
	background-color: #fff;
	box-shadow: 0px 12px 40px rgba(0, 0, 0, 0.16);
	border-radius: 4px;
	overflow-y: scroll;
	transition: opacity .4s;
	opacity: 0;
	pointer-events: none;
	z-index: 3;
}

/* Is visible */

.dropdown-category.is-visible .dropdown__content {
	opacity: 1;
	pointer-events: all;
}

.dropdown-category .dropdown__content ul {
	display: grid;
	gap: 23px;
}

.dropdown-category .dropdown__content input[type="radio"],
.dropdown-category .dropdown__content input[type="checkbox"] {
	cursor: pointer;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	z-index: 10;
}

.dropdown-category .dropdown__content input[type="radio"] ~ label,
.dropdown-category .dropdown__content input[type="checkbox"] ~ label {
	position: relative;
	padding-left: 26px;
	display: flex;
	align-items: flex-start;
	font-size: 16px;
	line-height: 1.2;
}

.dropdown-category .dropdown__content input[type="radio"] ~ label span,
.dropdown-category .dropdown__content input[type="checkbox"] ~ label span {
	margin-left: auto;
}

.dropdown-category .dropdown__content input[type="radio"] ~ label:hover:before,
.dropdown-category .dropdown__content input[type="checkbox"] ~ label:hover:before,
.dropdown-category .dropdown__content input[type="radio"]:hover ~ label:before,
.dropdown-category .dropdown__content input[type="checkbox"]:hover ~ label:before {
	border-color: #353535;
}

.dropdown-category .dropdown__content input[type="checkbox"] ~ label:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 18px;
	height: 18px;
	border: 1px solid #7e7e7e;
	border-radius: 4px;
	transition: background-color .15s, border-color .15s;
}

.dropdown-category .dropdown__content input[type="checkbox"]:checked ~ label:before {
	background-color: #d9201e;
	border-color: #d9201e;
}

.dropdown-category .dropdown__content input[type="checkbox"] ~ label:after {
	content: '';
    position: absolute;
    top: 3px;
    left: 7px;
    width: 5px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
	opacity: 0;
	transition: opacity .15s;
}

.dropdown-category .dropdown__content input[type="checkbox"]:checked ~ label:after {
	opacity: 1;
}

.dropdown-category .dropdown__content input[type="radio"] ~ label:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 18px;
	height: 18px;
	border: 1px solid #7e7e7e;
	border-radius: 50%;
	transition: background-color .15s, border-color .15s;
}

.dropdown-category .dropdown__content input[type="radio"]:checked ~ label:before {
	background-color: #d9201e;
	border-color: #d9201e;
}

.dropdown-category .dropdown__content input[type="radio"] ~ label:after {
	content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    width: 8px;
	height: 8px;
    background-color: #fff;
	border-radius: 50%;
	opacity: 0;
	transition: opacity .15s;
}

.dropdown-category .dropdown__content input[type="radio"]:checked ~ label:after {
	opacity: 1;
}

.dropdown-category .dropdown__content a { text-decoration: none; color: var(--c-charcoal); font-size: 14px; line-height: 1.57; display: block; position: relative; padding-right: 18px; }
.dropdown-category .dropdown__content a:after { content: ' '; position: absolute; top: 4px; right: 0; width: 5px; height: 10px; border: solid var(--c-red-hex); border-width: 0 2px 2px 0; transform: rotate(45deg); opacity: 0; transition: opacity .15s; }
.dropdown-category .dropdown__content .active a:after { opacity: 1; }

@media (hover) and (pointer: fine) {
	.dropdown-category .dropdown__content a:hover { color: var(--c-red-hex); }
}

/* [data-prefix] */
.dropdown-category[data-prefix] { display: flex; align-items: center; gap: 8px; }
.dropdown-category[data-prefix]:before { content: attr(data-prefix); color: #7a736d; font-size: 14px; line-height: 1.57; font-weight: 400; }

@media (max-width: 767px) {
	.dropdown-category[data-prefix] { border: 1px solid #ccc; border-radius: 4px; background-color: #fff; padding-left: 16px; gap: 4px; }
	.dropdown-category[data-prefix]:before { font-weight: 700; white-space: nowrap; }
	.dropdown-category[data-prefix] .dropdown__label { border-radius: 0; background: none; padding-left: 0; border: 0; min-width: 0; width: 100%; }
}

@media (max-width: 370px) {
	.dropdown-category[data-prefix]:before { display: none; }
}

/* -- Auto Width */
.dropdown-category--auto-width .dropdown__content li { position: relative; }
@media (min-width: 767px) {
	.dropdown-category--auto-width .dropdown__content { min-width: 260px; left: 50%; transform: translateX(-50%); }
}

/* -- List */
.dropdown-category--list .dropdown__content { min-width: 516px; overflow: hidden; overflow-x: auto; }
.dropdown-category--list .dropdown__content ul { display: flex; flex-wrap: nowrap; gap: 24px; }
.dropdown-category--list .dropdown__content li { min-width: 140px; position: relative; }
.dropdown-category--list .dropdown__content strong { display: block; width: 100%; border: 1px solid #ccc; border-radius: 4px; margin-bottom: 6px; }

@media (max-width: 1024px) {
	.dropdown-category--list .dropdown__content { left: 0; transform: none; }
}

@media (max-width: 767px) {
	.dropdown-category--list .dropdown__content { width: auto; min-width: calc(100vw - 24px); max-width: calc(100vw - 24px); position: relative !important; overflow: hidden !important; overflow-x: auto !important; margin-left: -24px; transform: translateX(24px); }
}

/* -- Alt */
.dropdown-category--alt .dropdown__label { padding: 8px 10px 8px 16px; font-size: 14px; min-width: 200px; }
.dropdown-category--alt .dropdown__content { left: auto; right: 0; min-width: 200px; }
.dropdown-category--alt .dropdown__content ul { gap: 16px; }

/* ------------------------------------------------------------ *\
	Section category products
\* ------------------------------------------------------------ */

.section-category-products {
	padding-block: 60px clamp(40px, 7vw, 95px);
	background-color: #fff;
}

.section-category-products .breadcrumbs-hero {
	margin-top: -36px;
}

.section-category-products h2,
.section-category-products h1 {
	color: #4a4541;
	font-size: 32px;
	font-weight: 600;
	line-height: 1.31;
	margin-bottom: clamp(10px, 2vw, 20px);
}

.section-category-products h1 {
	border: 0;
}

@media (max-width: 1024px) {
	.section-category-products h2,
	.section-category-products h1 {
		font-size: 30px;
	}
}

@media (max-width: 767px) {
	.section-category-products h2,
	.section-category-products h1 {
		font-size: 24px;
		line-height: 1.29;
	}
}

.section-category-products .section__head {
	margin-bottom: 8px;
	text-align: center;
}

.section-category-products .section__head > *:last-child {
	margin-bottom: 0;
}

@media (max-width: 767px) {
	.section-category-products .section__head {
		margin-bottom: 9px;
	}
}

.section-category-products .section__head:last-child {
	margin-bottom: 0;
}

.section-category-products .section__head .title-two-colors .title__red-italic {
	font-size: clamp(32px, 3vw, 46px);
	font-weight: 400;
}

.section-category-products .section__filters-btn {
	display: none;
}

@media (max-width: 767px) {
	.section-category-products .section__filters-btn {
		display: flex;
		position: sticky;
		top: 128px;
		padding: 8px 0;
		margin-bottom: 32px;
		background-color: #fff;
		z-index: 999;
		transition: margin .4s;
		gap: 8px;
	}

	.section-category-products .section__filters-btn > a {
		flex-grow: 1;
		display: grid;
		padding: 7px 24px;
		grid-template-columns: repeat(2, auto);
		justify-content: center;
		align-items: center;
		gap: 10px;
		color: var(--c-charcoal);
		border: 1px solid #ccc;
		border-radius: 4px;
		text-decoration: none;
		font-size: 14px;
		font-weight: 700;
	}

	.section-category-products .section__filters-btn > a:first-child:not(:last-child) {
		padding: 7px 16px;
		max-width: 94px;
		min-width: 94px;
	}

	.section-category-products .section__filters-btn > a:first-child:not(:last-child) + * {
		width: 100%;
	}
}

@media (max-width: 767px) {
	.section-category-products .section__filters-btn:has(+ .section__filters-bar span) {
		margin-bottom: 16px;
	}
}

.section-category-products .section__filters-btn img {
	width: 15px;
	height: 14px;
}

.section-category-products .section__filters {
	position: sticky;
	top: 106px;
	left: 0;
	padding: 16px 0;
	margin-bottom: 40px;
	background-color: #fff;
	z-index: 999;
	transition: margin .4s;
}

@media (max-width: 1346px) {
	.section-category-products .section__filters {
		top: 135px;
	}
}

@media (max-width: 1100px) {
	.section-category-products .section__filters {
		top: 108px;
	}
}

@media (max-width: 1024px) {
	.section-category-products .section__filters {
		top: 128px;
	}
}

@media (max-width: 767px) {
	.section-category-products .section__filters {
		position: fixed;
		top: auto;
		bottom: 0;
		left: 0;
		padding: 0;
		display: flex;
		flex-direction: column;
		margin-bottom: 0;
		width: 100%;
		height: 100%;
		background-color: #fff;
		z-index: 99999;
		transform: translateY(100%);
		transition: transform .4s;
	}

	.section-category-products .section__filters.is-visible {
		transform: translateY(0);
	}
}

.section-category-products .section__filters:has(~ .section__filters-bar span) {
	margin-bottom: 24px;
}

@media (max-width: 767px) {
	.section-category-products .section__filters:has(~ .section__filters-bar span) {
		margin-bottom: 0;
	}
}

.section-category-products .section__filters:last-child {
	margin-bottom: 0;
}

.section-category-products .section__filters-inner-head {
	display: none;
}

@media (max-width: 767px) {
	.section-category-products .section__filters-inner-head {
		position: relative;
		padding: 16px 24px;
		display: grid;
		grid-template-columns: repeat(2, auto);
		justify-content: space-between;
		align-items: center;
		gap: 20px;
		color: #4a4541;
		box-shadow: 0px 6px 24px rgba(0, 0, 0, 0.06);
	}
}

.section-category-products .section__filters-inner {
	position: relative;
	display: grid;
	grid-template-columns: repeat(4, minmax(158px, 214px));
	justify-content: center;
	gap: 16px;
	z-index: 4;
	transition: margin .4s;
}

@media (max-width: 767px) {
	.section-category-products .section__filters-inner {
		padding: 27px 24px 115px;
		grid-template-columns: 1fr;
		gap: 24px;
		align-items: end;
		overflow-y: auto;
	}
}

@media (max-width: 374px) {
	.section-category-products .section__filters-inner {
		padding: 27px 24px 157px;
	}
}

/* -- Auto Width */

@media (min-width: 767px) {
	.section-category-products .section__filters-inner--auto-width {
		display: flex;
		flex-wrap: wrap;
	}
}

.section-category-products .section__filters-inner.section__filters-inner--5-cols {
	grid-template-columns: repeat(5, 1fr);
}

.section-category-products .section__filters-actions {
	display: none;
}

@media (max-width: 767px) {
	.section-category-products .section__filters-actions {
		position: absolute;
		bottom: 0;
		left: 0;
		padding: 16px 24px;
		display: grid;
		grid-template-columns: repeat(2, auto);
		align-items: center;
		gap: 16px;
		margin-top: auto;
		width: 100%;
		background-color: #fff;
		box-shadow: 0px -6px 24px rgba(0, 0, 0, 0.06);
		z-index: 5;
	}

	.section-category-products .section__filters-inner.section__filters-inner--5-cols {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 374px) {
	.section-category-products .section__filters-actions {
		grid-template-columns: 1fr;
		justify-items: center;
	}
}

@media (max-width: 767px) {
	.section-category-products .section__dropdown {
		padding-bottom: 24px;
		border-bottom: 1px solid #e0e0e0;
	}

	.section-category-products .section__dropdown:last-child {
		padding-bottom: 0;
		border-bottom: none;
	}

	.section-category-products .section__dropdown .dropdown__label {
		padding: 0;
		margin-bottom: 16px;
		background-color: transparent;
		border: none;
		font-weight: 700;
	}

	.section-category-products .section__dropdown .dropdown__label:after {
		display: none;
	}

	.section-category-products .section__dropdown .dropdown__content {
		position: static;
		padding: 0;
		background-color: transparent;
		box-shadow: none;
		overflow: visible;
		opacity: 1;
		pointer-events: all;
		top: 0;
	}

	.section-category-products .section__dropdown .dropdown__content ul {
		gap: 16px;
	}
}

.section-category-products .section__filters-bar {
	display: grid;
	grid-template-rows: 0fr;
	justify-content: start;
	align-items: center;
	gap: 8px;
	transition: grid-template-rows .4s, margin .4s;
}

.section-category-products .section__filters-bar > * {
	overflow: hidden;
	opacity: 0;
	transition: opacity .4s;
}

.section-category-products .section__filters-bar:has(span) {
	grid-template-rows: 1fr;
	margin-bottom: 24px;
}

.section-category-products .section__filters-bar:has(span) > * {
	opacity: 1;
}

.section-category-products .section__filters-bar-container {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
}

.section-category-products .section__filters-bar-inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 9px;
}

.section-category-products .section__filters-bar-inner span {
	padding: 6px 14px 6px 12px;
	display: grid;
	grid-template-columns: auto 8px;
	align-items: center;
	gap: 11px;
	background-color: #efefef;
	border-radius: 4px;
	font-size: 14px;
	line-height: 1;
	cursor: pointer;
}

.section-category-products .section__filters-bar-inner span > * { pointer-events: none; }

.section-category-products .section__body {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 59px 24px;
}

@media (max-width: 1279px) {
	.section-category-products .section__body {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 767px) {
	.section-category-products .section__body {
		grid-template-columns: 1fr;
		gap: 41px;
	}
}

.section-category-products .section__body--gallery { gap: 40px 24px; }
.section-category-products .section__body--gallery-alt { gap: 24px; }

@media (max-width: 767px) {
	.section-category-products .section__body--gallery { gap: 24px; }
}

.section-category-products .section__tabs:not(:first-child) { margin-top: clamp(24px, 3vw, 32px); }
.section-category-products .section__tabs-head { display: flex; justify-content: center; position: relative; width: 100%; margin-bottom: clamp(24px, 4vw, 60px); }
.section-category-products .section__tabs-head button { border: 0; background: none; position: relative; padding-bottom: 7px; overflow: hidden; font-size: 22px; line-height: 1.62; font-weight: 600; padding-inline: 8px; }
.section-category-products .section__tabs-head button:before { content: ' '; position: absolute; left: 0; right: 0; bottom: 0; height: 3px; opacity: 0; background-color: var(--c-red-hex); }
.section-category-products .section__tabs-head button.active { color: var(--c-red-hex); }
.section-category-products .section__tabs-head button.active:before { opacity: 1; z-index: 2; }
.section-category-products .section__tabs-head button h2 { font-size: 22px; line-height: 1.62; font-weight: 600; font-family: var(--ff-nunito-sans); margin: 0; }
.section-category-products .section__tabs-head-wrap { display: flex; gap: 16px; flex-wrap: wrap; position: relative; }
.section-category-products .section__tabs-head-wrap:before { content: ' '; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background-color: #e0e0e0; }
.section-category-products + section.section-cta { position: relative; }
.section-category-products + section.section-cta:before { content: ' '; position: absolute; left: 0; right: 0; top: -66px; height: 66px; background-color: white; }
.section-category-products + section.section-cta .section__image { box-shadow: 0px 0px 20.418px 0px rgba(0, 0, 0, 0.12); }

@media (max-width: 767px) {
	.section-category-products + section.section-cta:before { height: 101px; top: -101px; }
}

.section-category-products .section__tabs-body {
	position: relative;
}

.section-category-products .section__tabs-body > * {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	opacity: 0;
	visibility: hidden;
}

.section-category-products .section__tabs-body > .active {
	position: relative;
	opacity: 1;
	visibility: visible;
}

.section-category-products .section__filters ~ .section__filters-sort { margin-top: -34px; }
.section-category-products .section__filters-sort { display: flex; align-items: flex-end; }
.section-category-products .section__filters-sort > p { margin-right: auto; font-size: 14px; line-height: 1.57; }
.section-category-products .section__filters-sort:not(:last-child) { margin-bottom: clamp(16px, 2vw, 24px); }

@media (max-width: 767px) {
	.section-category-products .section__filters ~ .section__filters-sort { margin-top: -16px; }
	.section-category-products .section__filters-sort .dropdown-category { display: none; }
}

/* -- Related */

.section-category-products--related { padding-block: 80px 120px; }
.section-category-products--related:not(:first-child) { border-top: 1px solid #E0E0E0; }
.section-category-products--related .section__head { margin-bottom: 40px; }

@media (max-width: 767px) {
	.section-category-products--related { padding-block: 60px; }
	.section-category-products--related:not(:first-child) { border-top: 0; }
	.section-category-products--related .section__head { margin-bottom: 32px; }
}

/* -- Gallery */

.section-category-products--gallery .section__head h2,
.section-category-products--gallery .section__head h1 { margin-bottom: 0; }

/* -- Before After */
.section-category-products--before-after .section__head p { max-width: 952px; margin-inline: auto; margin-bottom: 16px; font-size: 16px; line-height: 1.62; }
.section-category-products--before-after .section__head p:last-child { margin-bottom: 0; }
.section-category-products--before-after .section__tabs:not(:first-child) { margin-top: clamp(40px, 4vw, 60px); }

/* ------------------------------------------------------------ *\
	Product category
\* ------------------------------------------------------------ */

.product-category {
	position: relative;
}

.product-category .product__inner:hover img + img {
	opacity: 1;
	pointer-events: all;
}

.product-category .product__image {
	display: grid;
	grid-template-areas: 'image';
	margin-bottom: 10px;
}

@media (max-width: 767px) {
	.product-category .product__image {
		margin-bottom: 14px;
	}
}

.product-category .product__image img {
	grid-area: image;
	width: 100%;
	aspect-ratio: 464 / 371;
	object-fit: cover;

}

.product-category .product__image:last-child img {
	aspect-ratio: 464 / 309;
}

.product-category .product__image img + img {
	position: relative;
	opacity: 0;
	pointer-events: none;
	z-index: 3;
	transition: opacity .4s;
}

.product-category .product__image:last-child {
	margin-bottom: 0;
}

.product-category .product__image .block-ribbon { position: absolute; left: 12px; top: 12px; z-index: 11; }

.product-category .product__flag {
	position: absolute;
	top: 12px;
	left: 12px;
	width: 48px;
	height: 35px;
	z-index: 3;
}

.product-category .product__content {
	margin-bottom: 16px;
}

.product-category .product__content:last-child {
	margin-bottom: 0;
}

.product-category .product__bar {
	display: flex;
	align-items: center;
	gap: 5px;
}

.product-category .product__title {
	margin-bottom: 3px;
	color: #38342e;
	font-family: var(--ff-montserrat, 'sans-serif');
	font-size: 22px;
	font-weight: 500;
	line-height: 1.22;
}

.product-category .product__title h3,
.product-category .product__title h2 { 	color: #38342e; font-family: var(--ff-montserrat, 'sans-serif'); font-size: clamp(18px, 2vw, 22px); font-weight: 500; line-height: 1.22; margin-bottom: 0; }

.product-category .product__title:last-child {
	margin-bottom: 0;
}

.product-category .product__info {
	font-size: 16px;
	line-height: 1.625;
}

.product-category .product__price {
	font-size: 16px;
	font-weight: 700;
	line-height: 1.625;
	display: flex;
	align-items: center;
	gap: 4px;
}

.product-category .product__price > p {
	flex-wrap: nowrap;
	margin: 0;
}

.product-category .product__price > p:not(:last-child) {
	color: #7A736D;
	position: relative;
	display: inline-block;
}

.product-category .product__price > p:not(:last-child):before {
	content: ' ';
	position: absolute;
	left: 0;
	right: 0;
	top: 50%;
	height: 1px;
	background-color: #7A736D;
}

.product-category .product__price > p + p {
	color: var(--c-red-hex);
}

.product-category .product__actions {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	justify-content: space-between;
	align-items: center;
	gap: 16px;
}

@media (max-width: 1279px) {
	.product-category .product__actions {
		gap: 5px;
	}
}

@media (max-width: 1279px) {
	.product-category .product__actions {
		gap: 16px;
	}
}

@media (max-width: 374px) {
	.product-category .product__actions {
		grid-template-columns: 1fr;
	}
}

.product-category .product__actions.product__actions--alt-layout {
	grid-template-columns: calc(50% - 8px) minmax(152px, 32.78%);
	justify-content: start;
	gap: 10px;
}

@media (max-width: 1024px) {
	.product-category .product__actions.product__actions--alt-layout {
		grid-template-columns: repeat(2, calc(50% - 5px));
		gap: 10px;
	}
}

@media (max-width: 374px) {
	.product-category .product__actions.product__actions--alt-layout {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 767px) {
	.product-category .product__image img { aspect-ratio: 343 / 274; }
	.product-category .product__image:last-child img { aspect-ratio: 343 / 228; }
}

.product__btn:nth-child(n+3) {
	grid-column: 1 / -1;
}

.product-category .product__actions.product__actions--alt {
	grid-template-columns: 1fr;
}

.product-category .product__promotion { position: absolute; z-index: 10; pointer-events: none; right: 12px; top: 12px; background-color: white; border-radius: 4px; padding: 0 8px; color: var(--c-red-hex); font-size: clamp(14px, 2vw, 16px); font-weight: 700; }

/* -- Gallery */

.product-category--gallery .product__image { position: relative; }
.product-category--gallery .product__image > a { position: absolute; inset: 0; z-index: 20; }
.product-category--gallery .product__image > a i { position: absolute; right: 12px; top: 12px; opacity: 0; transition: opacity var(--theme-transition-duration); }
.product-category--gallery .product__image--contain { background-color: white; }
.product-category--gallery .product__image--contain:before { content: ' '; position: absolute; inset: 0; border: 1px solid #ccc; }
.product-category--gallery .product__image--contain img { object-fit: contain; aspect-ratio: 464 / 300; }
.product-category--gallery .product__content h3,
.product-category--gallery .product__content h2 { transition: color var(--theme-transition-duration); font-family: var(--ff-nunito-sans); font-weight: 700; }
.product-category--gallery .product__content h3 a,
.product-category--gallery .product__content h2 a { color: var(--c-charcoal); text-decoration: none; }

@media (hover) and (pointer: fine) {
	.product-category--gallery .product__image > a:hover i { opacity: 1; }
	.product-category--gallery .product__image > a:hover ~ .product__content h3,
	.product-category--gallery .product__image > a:hover ~ .product__content h2 { color: var(--c-red-hex); }
	.product-category--gallery .product__content h3 a:hover,
	.product-category--gallery .product__content h2 a:hover { color: var(--c-red-hex); }
}

.product-category--gallery .product__popup { position: fixed; top: 0; left: 0; display: grid; justify-content: center; align-items: center; width: 100%; height: 100%; overflow-y: auto; opacity: 0; pointer-events: none; z-index: 99999; transition: opacity .4s; }
.product-category--gallery .product__popup-overlay { position: fixed; inset: 0; background-color: var(--c-charcoal); opacity: .8; }
.product-category--gallery .product__popup-container { padding: 20px 20px 65px; }
.product-category--gallery .product__popup-title { padding-bottom: 26px; margin-bottom: 24px; color: #4a4541; border-bottom: 1px solid #ccc; font-size: 24px; font-weight: 600; line-height: 1.29; display: flex; gap: 20px; align-items: center; }
.product-category--gallery .product__popup-title h4,
.product-category--gallery .product__popup-title h3,
.product-category--gallery .product__popup-title h2 { font-size: 24px; font-weight: 600; line-height: 1.29; font-family: var(--ff-nunito-sans); }
.product-category--gallery .product__popup-title:last-child { margin-bottom: 0; }
.product-category--gallery .product__popup-title blockquote { width: 40%; }
.product-category--gallery .product__popup-title blockquote + blockquote { width: 60%; display: flex; justify-content: flex-end; gap: 10px; flex-direction: column; align-items: flex-end; }
.product-category--gallery .product__popup-title blockquote + blockquote p { border: 1px solid var(--c-red-hex); border-radius: 4px; background-color: #fbe9e9; padding: 8px 16px; font-size: 14px; line-height: 1.57; }
.product-category--gallery .product__popup-title blockquote + blockquote p strong { color: var(--c-red-hex); }
.product-category--gallery .product__popup-title ul { list-style: none; display: flex; flex-wrap: wrap; font-size: 16px; }
.product-category--gallery .product__popup-title ul:not(:first-child) { margin-top: 11px; }
.product-category--gallery .product__popup-title ul li { padding-inline: 12px; position: relative; }
.product-category--gallery .product__popup-title ul li:not(:last-child):before { content: ' '; position: absolute; right: -1px; width: 1px; top: 0; bottom: 0; background-color: #ccc; }
.product-category--gallery .product__popup-title ul li:first-child { padding-left: 0; }
.product-category--gallery .product__popup-title ul li:last-child { padding-right: 0; }
.product-category--gallery .product__popup-container-inner { position: relative; padding: 40px 60px; width: 100%; max-width: 1440px; background-color: #fff; opacity: 0; transition: opacity .4s 0.23s ease-in; }
.product-category--gallery .product__popup-close { justify-self: end; margin: 0 13px 18px auto; }
.product-category--gallery .product__popup-close:last-child { margin-bottom: 0; }
.product-category--gallery .product__popup-foot { display: none; }
.product-category--gallery .product__popup.is-visible { opacity: 1; pointer-events: all; }
.product-category--gallery .product__popup.is-visible .product__popup-container-inner { opacity: 1; }

@media (max-width: 1279px) {
	.product-category--gallery .product__popup-container-inner { padding: 40px; }
}

@media (max-width: 1024px) {
	.product-category--gallery .product__popup { display: block; }
	.product-category--gallery .product__popup-container-inner { padding: 20px; }
	.product-category--gallery .product__popup-foot { display: block; text-align: center; }
	.product-category--gallery .product__popup-foot ul { display: flex; flex-direction: column; justify-content: center; align-items: center; padding-top: 42px; border-top: 1px solid #ccc; margin-bottom: 16px; }
	.product-category--gallery .product__popup-foot p { border: 1px solid var(--c-red-hex); border-radius: 4px; background-color: #fbe9e9; padding: 16px; font-size: 16px; line-height: 1.62; text-align: left; }
	.product-category--gallery .product__popup-foot p strong { color: var(--c-red-hex); }
	.product-category--gallery .product__popup-title { padding-bottom: 0; border-bottom: 0; text-align: center; text-align: center; }
	.product-category--gallery .product__popup-title ul { display: none; }
	.product-category--gallery .product__popup-title blockquote { width: 100%; margin: 0; padding-inline: 15px; }
	.product-category--gallery .product__popup-title blockquote p { margin: 0; }
	.product-category--gallery .product__popup-title blockquote + blockquote { display: none; }
	.product-category--gallery .slider-product-popup { position: relative; margin-bottom: 38px; padding-bottom: 30px; }
	.product-category--gallery .slider-product-popup .slider__progress { position: absolute; left: 0; right: 0; bottom: 0; top: auto; }

	.product-category--gallery-top-title-on-mobile .product__popup-foot { display: none; }
	.product-category--gallery-top-title-on-mobile .product__popup-title ul { display: flex; justify-content: center; }
}

@media (max-width: 767px) {
	.product-category--gallery .product__popup-container { padding: 0; height: 100%; }
	.product-category--gallery .product__popup-title { padding-bottom: 0; border-bottom: none; text-align: center; line-height: 1.29; }
	.product-category--gallery .product__popup-title h4,
	.product-category--gallery .product__popup-title h3,
	.product-category--gallery .product__popup-title h2 { line-height: 1.29; }
	.product-category--gallery .product__popup-container-inner { padding: 0; display: flex; flex-direction: column; justify-content: center; height: auto; background-color: white; padding-block: 91px 81px; }
	.product-category--gallery .product__popup-close { position: absolute; top: 16px; right: 17px; margin: 0; z-index: 3; }
	.product-category--gallery .product__popup-close:before,
	.product-category--gallery .product__popup-close:after { background-color: var(--c-charcoal) !important; }
	.product-category--gallery .product__popup-foot { padding-inline: 16px; }
	.product-category--gallery .product__image > a i { opacity: 1; }
}

/* -- Discounted */

.product-category--descounted .product__image { position: relative; }
.product-category--descounted .product__image:after { content: ' '; position: absolute; inset: 0; background-color: rgba(255,255,255,0.5); z-index: 10; }

/* ------------------------------------------------------------ *\
	Popup product cat
\* ------------------------------------------------------------ */

.popup-product-cat {
	position: fixed;
	top: 0;
	left: 0;
	display: grid;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	overflow-y: auto;
	opacity: 0;
	pointer-events: none;
	z-index: 99999;
	transition: opacity .4s;
}

.popup-product-cat .popup__overlay {
	position: fixed;
	inset: 0;
	background-color: var(--c-charcoal);
	opacity: .8;
}

.popup-product-cat .popup__container {
	padding: 20px 20px 65px;
}

@media (max-width: 767px) {
	.popup-product-cat .popup__container {
		padding: 20px 10px 65px;
	}
}

.popup-product-cat .popup__container-inner {
	opacity: 0;
	transition: opacity .4s 0.1s ease-in;
}

.popup-product-cat .popup__close {
	justify-self: end;
	margin: 0 13px 18px auto;
}

@media (max-width: 767px) {
	.popup-product-cat .popup__close {
		margin: 0 11px 12px auto;
	}
}

.popup-product-cat .popup__close:last-child {
	margin-bottom: 0;
}

.popup-product-cat.is-visible {
	opacity: 1;
	pointer-events: all;
}

.popup-product-cat.is-visible .popup__container-inner {
	opacity: 1;
}


.popup-layout .popup__container {
	position: relative;
	width: 100%;
	max-width: 1323px;
}

.popup-layout .popup__container-inner {
	padding: 60px;
	display: grid;
	grid-template-columns: 49.55% auto;
	align-items: center;
	gap: 60px;
	background-color: #fff;
}

@media (max-width: 1279px) {
	.popup-layout .popup__container-inner {
		padding: 40px;
		gap: 40px;
	}
}

@media (max-width: 1024px) {
	.popup-layout .popup__container-inner {
		padding: 20px;
		grid-template-columns: 1fr;
		gap: 20px;
	}
}

@media (max-width: 767px) {
	.popup-layout .popup__container-inner {
		padding: 0;
		gap: 0;
	}
}

.popup-layout .popup__title {
	margin-bottom: 24px;
}

@media (max-width: 1279px) {
	.popup-layout .popup__title {
		margin-bottom: 15px;
	}
}

@media (max-width: 1024px) {
	.popup-layout .popup__title {
		margin-bottom: 10px;
	}
}

@media (max-width: 767px) {
	.popup-layout .popup__title {
		padding: 16px 24px;
		margin-bottom: 0;
	}
}

@media (max-width: 767px) {
	.popup-layout .popup__title {
		padding: 16px;
	}
}

.popup-layout .popup__title:last-child {
	margin-bottom: 0;
}

.popup-layout .popup__content {
	padding: 40px 38px 40px 40px;
	border: 1px solid #cccccc;
}

@media (max-width: 1279px) {
	.popup-layout .popup__content {
		padding: 20px;
	}
}

@media (max-width: 767px) {
	.popup-layout .popup__content {
		padding: 24px;
		border: none;
	}
}

@media (max-width: 374px) {
	.popup-layout .popup__content {
		padding: 16px;
	}
}

.popup-layout .popup__subtitle {
	margin-bottom: 8px;
	font-family: var(--ff-play-fair, 'sans-serif');
	font-style: italic;
	line-height: 1.222;
}

.popup-layout .popup__subtitle:last-child {
	margin-bottom: 0;
}

.popup-layout .popup__text {
	margin-bottom: 23px;
	text-transform: uppercase;
	color: #d9201e;
	font-family: var(--ff-montserrat, 'sans-serif');
	font-size: 24px;
	line-height: 1.666;
}

@media (max-width: 1024px) {
	.popup-layout .popup__text {
		margin-bottom: 10px;
	}
}

@media (max-width: 767px) {
	.popup-layout .popup__text {
		margin-bottom: 16px;
		letter-spacing: 1.5px;
		line-height: 1.66;
	}
}

.popup-layout .popup__text:last-child {
	margin-bottom: 0;
}

.popup-layout .popup__list {
	font-size: 16px;
	line-height: 1.62;
}

.popup-layout .popup__list li {
	position: relative;
	padding-left: 36px;
	margin-bottom: 11px;
}

@media (max-width: 767px) {
	.popup-layout .popup__list li {
		margin-bottom: 13px;
	}
}

@media (max-width: 374px) {
	.popup-layout .popup__list li {
		padding-left: 25px;
	}
}

.popup-layout .popup__list li:before {
	content: '';
	position: absolute;
	top: 0;
	left: 2px;
	margin-top: 2px;
	width: 20px;
	height: 20px;
	background: transparent url('../../assets/media/svg/icon-check-red.svg') no-repeat center;
	background-size: contain;
}

@media (max-width: 374px) {
	.popup-layout .popup__list li:before {
		margin-top: 5px;
		width: 15px;
		height: 15px;
	}
}

/* ------------------------------------------------------------ *\
	Popup info
\* ------------------------------------------------------------ */

.popup-quick-info p {
	margin-bottom: 4px;
}

.popup-quick-info p:last-child {
	margin-bottom: 0;
}

.popup-quick-info .popup__container {
	position: relative;
	width: 100%;
	max-width: 992px;
}

.popup-quick-info .popup__container-inner {
	padding: 40px;
	display: grid;
	grid-template-columns: 32.24% auto;
	align-items: center;
	gap: 40px;
	background-color: #fff;
}

@media (max-width: 1024px) {
	.popup-quick-info .popup__container-inner {
		padding: 20px;
		grid-template-columns: 1fr;
		justify-items: center;
	}
}

@media (max-width: 767px) {
	.popup-quick-info .popup__container-inner {
		padding: 24px;
		gap: 16px;
	}
}

@media (max-width: 1024px) {
	.popup-quick-info .popup__image {
		max-width: 400px;
	}
}

@media (max-width: 767px) {
	.popup-quick-info .popup__image {
		max-width: 220px;
	}
}

.popup-quick-info .popup__content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

@media (max-width: 1024px) {
	.popup-quick-info .popup__content {
		align-items: center;
	}
}

.popup-quick-info .popup__title {
	margin-bottom: 23px;
	color: #38342e;
	font-family: var(--ff-montserrat, 'sans-serif');
	font-size: 22px;
	font-weight: 500;
	line-height: 1.22;
}

@media (max-width: 767px) {
	.popup-quick-info .popup__title {
		margin-bottom: 8px;
		font-size: 18px;
		font-weight: 700;
		line-height: 1.66;
	}
}

.popup-quick-info .popup__title:last-child {
	margin-bottom: 0;
}

.popup-quick-info .popup__entry {
	margin-bottom: 15px;
	font-size: 16px;
	line-height: 1.625;
}

@media (max-width: 767px) {
	.popup-quick-info .popup__entry {
		margin-bottom: 8px;
	}
}

.popup-quick-info .popup__entry:last-child {
	margin-bottom: 0;
}

.popup-quick-info .popup__btn-gallery {
	margin-bottom: 55px;
}

@media (max-width: 767px) {
	.popup-quick-info .popup__btn-gallery {
		margin-bottom: 15px;
	}
}

.popup-quick-info .popup__btn-gallery:last-child {
	margin-bottom: 0;
}

.popup-quick-info .popup__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 16px;
	margin-top: auto;
}

@media (max-width: 1024px) {
	.popup-quick-info .popup__actions {
		width: 100%;
		flex-direction: column;
		align-items: stretch;
	}
}

/* ------------------------------------------------------------ *\
	Popup layout
\* ------------------------------------------------------------ */

.popup-layout-btn {
	display: inline-block;
	vertical-align: middle;
	width: 14px;
	height: 14px;
	margin-bottom: 2px;
	background: transparent url('../../assets/media/svg/ico-question.svg') no-repeat center;
	background-size: contain;
	opacity: .6;
	transition: opacity .4s;
}

.popup-layout-btn:hover {
	opacity: 1;
}

.popup-layout h2 {
	color: var(--c-charcoal);
	margin-bottom: 0;
}

@media (max-width: 767px) {
	.popup-layout h2 {
		font-size: 22px;
		font-weight: 500;
		line-height: 1.22;
	}
}

/* ------------------------------------------------------------ *\
	Btn alt
\* ------------------------------------------------------------ */

.btn-alt--green {
	color: #1e5262 !important;
	border-color: #1e5262;
}

.btn-alt--green:hover {
	color: #1e5262 !important;
	background-color: #E9EEEF !important;
	border-color: #1e5262;
}

.btn-alt--small {
	padding: 13px 25px;
	font-weight: 700;
}

@media (max-width: 1024px) {
	.btn-alt--small {
		padding: 10px 25px;
	}
}

@media (max-width: 767px) {
	.btn-alt--small {
		padding: 13px 25px;
	}
}

@media (max-width: 374px) {
	.btn-alt--small {
		padding: 13px 15px;
	}
}

.btn-alt--medium {
	padding: 15px 22px;
}

@media (max-width: 1279px) {
	.btn-alt--medium {
		padding: 11px 18px;
		font-size: 14px;
	}
}

@media (max-width: 1024px) {
	.btn-alt--medium {
		padding: 15px 22px;
		font-size: 16px;
	}
}

.btn-alt--titlecase {
	text-transform: capitalize;
	letter-spacing: 0;
}

.btn-alt--flex {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 6px;
}

/* ------------------------------------------------------------ *\
	Btn plain text
\* ------------------------------------------------------------ */

.btn-plain-text {
	color: #d91f1f;
	text-decoration: underline;
	text-decoration-color: transparent;
	font-size: 16px;
	line-height: 1.625;
	transition: color .4s, text-decoration .4s;
}

.btn-plain-text:hover {
	color: var(--c-darkred-hex);
	text-decoration-color: currentColor;
}

.btn-plain-text.btn-plain-text--small {
	font-size: 14px;
	line-height: 1.57;
}

/* ------------------------------------------------------------ *\
	Btn close
\* ------------------------------------------------------------ */

.btn-close {
	position: relative;
	display: block;
	width: 8px;
	height: 8px;
}

.btn-close:before {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	height: 1px;
	background-color: var(--c-charcoal);
	transform: translateY(-50%) rotate(-45deg);
	transition: background-color .4s;
}

.btn-close:after {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	height: 1px;
	background-color: var(--c-charcoal);
	transform: translateY(-50%) rotate(45deg);
	transition: background-color .4s;
}

.btn-close.btn-close--large {
	width: 27px;
	height: 27px;
	transition: transform .4s;
}

.btn-close.btn-close--medium {
	width: 13px;
	height: 13px;
}

.btn-close.btn-close--white:before,
.btn-close.btn-close--white:after {
	height: 2px;
	background-color: #fff;
}

.btn-close.btn-close--dark:before,
.btn-close.btn-close--dark:after {
	background-color: #1c1b1f;
}

.btn-close:hover:before,
.btn-close:hover:after {
	background-color: var(--c-red-hex, red);
}

/* ------------------------------------------------------------ *\
	Style reset
\* ------------------------------------------------------------ */

.style-reseter {
	overflow: clip;
}

/* ------------------------------------------------------------ *\
	Section cols media
\* ------------------------------------------------------------ */

.section-cols-media {
	padding: 48px 0;
	background-color: #fff;
}

@media (max-width: 1279px) {
	.section-cols-media {
		padding: 50px 0;
	}
}

@media (max-width: 1024px) {
	.section-cols-media {
		padding: 40px 0;
	}
}

@media (max-width: 767px) {
	.section-cols-media {
		padding: 30px 0;
	}
}

.section-cols-media h2 {
	font-size: 32px;
	font-weight: 600;
	line-height: 1.31;
}

@media (max-width: 1024px) {
	.section-cols-media h2 {
		font-size: 30px;
	}
}

@media (max-width: 767px) {
	.section-cols-media h2 {
		font-size: 28px;
		line-height: 1.428;
	}
}

.section-cols-media .section__head {
	max-width: 660px;
	margin: 0 auto 32px;
	text-align: center;
}

@media (max-width: 767px) {
	.section-cols-media .section__head {
		margin: 0 auto 25px;
	}
}

.section-cols-media .section__head:last-child {
	margin-bottom: 0;
}

.section-cols-media .section__cols {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
}

@media (max-width: 767px) {
	.section-cols-media .section__cols {
		grid-template-columns: 1fr;
	}
}

.section-cols-media .section__col-media {
	position: relative;
	margin-bottom: 24px;
}

@media (max-width: 767px) {
	.section-cols-media .section__col-media {
		margin-bottom: 16px;
	}
}

.section-cols-media .section__col-media:last-child {
	margin-bottom: 0;
}

.section-cols-media .section__col-media img {
	display: block;
	width: 100%;
	aspect-ratio: 586 / 329;
	object-fit: cover;
}

.section-cols-media .section__col-entry {
	text-align: center;
}

/* ------------------------------------------------------------ *\
	Btn play
\* ------------------------------------------------------------ */

.btn-play {
	position: absolute;
	inset: 0;
}

.btn-play:before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 42px;
	height: 42px;
	background: transparent url('../../assets/media/svg/icon-play-btn.svg') no-repeat center;
	background-size: contain;
	border-radius: 50%;
	transition: transform .4s;
}

.btn-play:hover:before {
	transform: translate(-50%, -50%) scale(1.1);
}

/* ------------------------------------------------------------ *\
	ColorBox Styles
\* ------------------------------------------------------------ */

#cboxClose {
	display: flex;
	align-items: center;
	gap: 5px;
	width: auto;
	height: auto;
	background-color: transparent;
	border: none;
	transition: color .2s;
}

#cboxClose:before {
	padding-top: 5px;
	font-size: 18px;
}

#cboxClose:hover {
	color: red;
	background-color: transparent;
}

/* ------------------------------------------------------------ *\
	Section image map
\* ------------------------------------------------------------ */

.section-image-map {
	padding: 96px 0;
}

@media (max-width: 1279px) {
	.section-image-map {
		padding: 50px 0;
	}
}

@media (max-width: 1024px) {
	.section-image-map {
		padding: 40px 0;
	}
}

@media (max-width: 767px) {
	.section-image-map {
		padding: 31px 0 40px;
		background-color: #fff;
	}
}

.section-image-map h2 {
	margin-bottom: 24px;
	font-size: 32px;
	font-weight: 600;
	line-height: 1.31;
}

@media (max-width: 1024px) {
	.section-image-map h2 {
		margin-bottom: 15px;
		font-size: 30px;
	}
}

@media (max-width: 767px) {
	.section-image-map h2 {
		margin-bottom: 21px;
		text-align: center;
		font-size: 28px;
		line-height: 1.428;
	}
}

.section-image-map h2:last-child {
	margin-bottom: 0;
}

.section-image-map a {
	text-decoration: underline;
	text-decoration-color: transparent;
	transition: color .4s, text-decoration-color .4s;
}

.section-image-map a:hover {
	color: var(--c-darkred-hex);
	text-decoration-color: currentColor;
}

.section-image-map .section__head {
	padding: 0 36px;
	max-width: 1022px;
	margin: 0 auto 40px;
	text-align: center;
	letter-spacing: 0;
}

@media (max-width: 1279px) {
	.section-image-map .section__head {
		padding: 0 42px;
	}
}

@media (max-width: 1024px) {
	.section-image-map .section__head {
		margin: 0 auto 30px;
	}
}

@media (max-width: 767px) {
	.section-image-map .section__head {
		padding: 0 16px;
		margin: 0 auto 24px;
		text-align: left;
		font-size: 16px;
		line-height: 1.625;
	}
}

.section-image-map .section__head:last-child {
	margin-bottom: 0;
}

.section-image-map .section__body {
	display: grid;
	grid-template-columns: 47.72% auto;
	align-items: center;
}

@media (max-width: 767px) {
	.section-image-map .section__body {
		grid-template-columns: 1fr;
	}
}

.section-image-map .section__image {
	min-height: 666px;
}

@media (max-width: 1279px) {
	.section-image-map .section__image {
		min-height: 550px;
	}
}

@media (max-width: 1024px) {
	.section-image-map .section__image {
		min-height: 500px;
	}
}

@media (max-width: 767px) {
	.section-image-map .section__image {
		min-height: 307px;
	}
}

.section-image-map .section__content {
	padding: 0 36px 0 0;
	margin-left: -75px;
	z-index: 1;
}

@media (max-width: 1279px) {
	.section-image-map .section__content {
		padding: 0 42px 0 0;
		margin-left: -60px;
	}
}

@media (max-width: 1024px) {
	.section-image-map .section__content {
		margin-left: -80px;
	}
}

@media (max-width: 767px) {
	.section-image-map .section__content {
		padding: 0 16px;
		margin: 0 0 40px 0;
		order: -1;
	}
}

.section-image-map .section__map {
	padding: 60px 58px 60px 60px;
	background-color: #fff;
}

@media (max-width: 1279px) {
	.section-image-map .section__map {
		padding: 40px;
	}
}

@media (max-width: 1024px) {
	.section-image-map .section__map {
		padding: 25px;
	}
}

@media (max-width: 767px) {
	.section-image-map .section__map {
		padding: 0;
	}
}

.section-image-map .section__map-image {
	margin-bottom: 32px;
}

@media (max-width: 1279px) {
	.section-image-map .section__map-image {
		margin-bottom: 25px;
	}
}

@media (max-width: 767px) {
	.section-image-map .section__map-image {
		display: none;
		margin-bottom: 27px;
	}
}

.section-image-map .section__map-image.section__map-image--mobile {
	display: none;
}

@media (max-width: 767px) {
	.section-image-map .section__map-image.section__map-image--mobile {
		display: block;
	}
}

@media (max-width: 1279px) {
	.section-image-map .section__map-entry {
		font-size: 16px;
	}
}

@media (max-width: 767px) {
	.section-image-map .section__map-entry {
		line-height: 1.625;
	}
}

/* ------------------------------------------------------------ *\
	Section groups -- alt
\* ------------------------------------------------------------ */

.section-groups.section-groups--alt {
	padding: 96px 0 22px;
}

@media (max-width: 1279px) {
	.section-groups.section-groups--alt {
		padding: 50px 0;
	}
}

@media (max-width: 1024px) {
	.section-groups.section-groups--alt {
		padding: 40px 0 20px;
	}
}

.section-groups.section-groups--alt h2 {
	margin-bottom: 0;
	font-size: 32px;
	font-weight: 600;
	line-height: 1.312;
}

@media (max-width: 1024px) {
	.section-groups.section-groups--alt h2 {
		font-size: 30px;
	}
}

@media (max-width: 767px) {
	.section-groups.section-groups--alt h2 {
		font-size: 28px;
		line-height: 1.428;
	}
}

.section-groups.section-groups--alt .section__intro {
	max-width: 780px;
}

.section-groups.section-groups--alt .section__groups {
	margin-top: 50px;
}

@media (max-width: 767px) {
	.section-groups.section-groups--alt .section__groups {
		margin-top: 31px;
	}
}

.section-groups.section-groups--alt .section__group + .section__group {
	margin-top: 22px;
}

@media (max-width: 767px) {
	.section-groups.section-groups--alt .section__group + .section__group {
		margin-top: 11px;
	}
}

.section-groups.section-groups--alt .section__group-inner {
	align-items: center;
}

.section-groups.section-groups--alt .section__group-head h3 {
	margin-bottom: 0;
	text-transform: none;
	font-size: 24px;
	font-weight: 600;
	line-height: 1.29;
	letter-spacing: -0.01em;
}

.section-groups.section-groups--alt .section__group-head + .section__group-entry {
	margin-top: 24px;
}

@media (max-width: 1279px) {
	.section-groups.section-groups--alt .section__group-head + .section__group-entry {
		margin-top: 15px;
	}
}

@media (max-width: 767px) {
	.section-groups.section-groups--alt .section__group-head + .section__group-entry {
		margin-top: 20px;
	}
}

.section-groups.section-groups--alt .section__group-media {
	flex: 0 1 510px;
	max-width: 510px;
	margin: 4px 0 0 -20px;
}

@media (max-width: 767px) {
	.section-groups.section-groups--alt .section__group-media {
		width: 92%;
		flex: 0;
		margin: 4px 0 0;
	}
}

@media (max-width: 767px) {
	.section-groups.section-groups--alt .section__group-media:before {
		width: 97.6%;
		max-width: 450px;
		height: 97.6%;
		max-height: 450px;
	}
}

.section-groups.section-groups--alt .section__group-img {
	border: 29px solid #fff;
	box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.2);
}

@media (max-width: 1279px) {
	.section-groups.section-groups--alt .section__group-img {
		border: 19px solid #fff;
	}
}

.section-groups.section-groups--alt .section__group-main {
	padding: 35px 0;
}

@media (max-width: 767px) {
	.section-groups.section-groups--alt .section__group-main {
		padding: 35px 0 20px;
	}
}

@media (max-width: 767px) {
	.section-groups.section-groups--alt .section__group-entry {
		font-size: 18px;
		line-height: 1.66;
	}

	.section-groups.section-groups--alt .section__group-inner--reversed .section__group-entry {
		font-size: 16px;
	}
}

.section-groups .section__group-entry ul {
	margin-bottom: 15px;
}

.section-groups .section__group-entry ul:last-child {
	margin-bottom: 0;
}

.section-groups .section__group-entry li {
	position: relative;
	padding-left: 27px;
	margin-bottom: 11px;
}

.section-groups .section__group-entry li:last-child {
	margin-bottom: 0;
}

.section-groups .section__group-entry li:before {
	content: '';
	position: absolute;
	top: 12px;
	left: 10px;
	background-color: var(--c-charcoal);
	width: 6px;
	height: 6px;
	border-radius: 50%;
}

/* ------------------------------------------------------------ *\
	Section accordion - alt
\* ------------------------------------------------------------ */

.section-accordion-alt {
	padding: 47px 0 54px;
	background-color: #fff;
}

@media (max-width: 1279px) {
	.section-accordion-alt {
		padding: 50px 0;
	}
}

@media (max-width: 1024px) {
	.section-accordion-alt {
		padding: 40px 0;
	}
}

@media (max-width: 767px) {
	.section-accordion-alt {
		padding: 20px 0 60px;
	}
}

.section-accordion-alt h2 {
	margin-bottom: 0;
	font-size: 32px;
	font-weight: 600;
	line-height: 1.28;
}

@media (max-width: 767px) {
	.section-accordion-alt h2 {
		font-size: 28px;
		line-height: 1.428;
	}
}

.section-accordion-alt .section__head {
	margin-bottom: 48px;
	text-align: center;
}

@media (max-width: 767px) {
	.section-accordion-alt .section__head {
		margin-bottom: 38px;
	}
}

.section-accordion-alt .section__head:last-child {
	margin-bottom: 0;
}

/* ------------------------------------------------------------ *\
	Accordion faq - alt
\* ------------------------------------------------------------ */

.accordion-faq-alt .accordion-faq-alt__section {
	border-bottom: 1px solid #ccc;
}

.accordion-faq-alt h3 {
	margin-bottom: 0;
	font-size: 24px;
	font-weight: 600;
	line-height: 1.29;
	transition: color .4s;
}

@media (max-width: 1279px) {
	.accordion-faq-alt h3 {
		font-size: 20px;
	}
}

@media (max-width: 1024px) {
	.accordion-faq-alt h3 {
		font-size: 19px;
	}
}

@media (max-width: 767px) {
	.accordion-faq-alt h3 {
		font-size: 16px;
		line-height: 1.625;
	}
}

.accordion-faq-alt a:not(.btn-alt) {
	text-decoration: underline;
	text-decoration-color: transparent;
	transition: text-decoration-color .4s, color .4s;
}

.accordion-faq-alt a:not(.btn-alt):hover {
	color: var(--c-darkred-hex);
	text-decoration-color: #d91f1f;
}

.accordion-faq-alt p {
	margin-bottom: 17px;
}

@media (max-width: 1279px) {
	.accordion-faq-alt p {
		margin-bottom: 10px;
	}
}

@media (max-width: 767px) {
	.accordion-faq-alt p {
		margin-bottom: 17px;
	}
}

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

.accordion-faq-alt p:has(+ ul) {
	margin-bottom: 16px;
}

@media (max-width: 1279px) {
	.accordion-faq-alt p:has(+ ul) {
		margin-bottom: 10px;
	}
}

@media (max-width: 767px) {
	.accordion-faq-alt p:has(+ ul) {
		margin-bottom: 16px;
	}
}

.accordion-faq-alt p:has(+ .btn-alt) {
	margin-bottom: 24px;
}

@media (max-width: 1279px) {
	.accordion-faq-alt p:has(+ .btn-alt) {
		margin-bottom: 20px;
	}
}

@media (max-width: 767px) {
	.accordion-faq-alt p:has(+ .btn-alt) {
		margin-bottom: 16px;
	}
}

.accordion-faq-alt ul {
	margin-bottom: 16px;
}

@media (max-width: 1279px) {
	.accordion-faq-alt ul {
		margin-bottom: 10px;
	}
}

@media (max-width: 767px) {
	.accordion-faq-alt ul {
		margin-bottom: 16px;
	}
}

.accordion-faq-alt ul:last-child {
	margin-bottom: 0;
}

.accordion-faq-alt li {
	position: relative;
	padding-left: 27px;
	margin-bottom: 10px;
	line-height: 1.666;
}

@media (max-width: 1024px) {
	.accordion-faq-alt li {
		margin-bottom: 5px;
	}
}

@media (max-width: 767px) {
	.accordion-faq-alt li {
		padding-left: 25px;
		margin-bottom: 0;
		line-height: 1.625;
	}
}

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

.accordion-faq-alt li:before {
	content: '';
	position: absolute;
	top: 12px;
	left: 11px;
	width: 6px;
	height: 6px;
	background-color: currentColor;
	border-radius: 50%;
}

@media (max-width: 767px) {
	.accordion-faq-alt li:before {
		top: 11px;
		left: 9px;
	}
}

.accordion-faq-alt .accordion-faq-alt__head {
	padding: 24px 0;
	display: grid;
	grid-template-columns: repeat(2, auto);
	justify-content: space-between;
	align-items: center;
	gap: 20px;
	cursor: pointer;
}

@media (max-width: 1279px) {
	.accordion-faq-alt .accordion-faq-alt__head {
		padding: 20px 0;
	}
}

@media (max-width: 767px) {
	.accordion-faq-alt .accordion-faq-alt__head {
		padding: 15px 0;
	}
}

.accordion-faq-alt .accordion-faq-alt__section:first-child .accordion-faq-alt__head {
	padding-top: 0;
}

.accordion-faq-alt .accordion-faq-alt__head:after {
	content: '';
	display: block;
	margin-right: 8px;
	width: 8px;
	height: 8px;
	border: solid var(--c-charcoal);
	border-width: 0 0 2px 2px;
	transform: rotate(-45deg);
	transition: transform .4s, border-color .4s;
}

.accordion-faq-alt .accordion-faq-alt__head:hover h3 {
	color: #d9201e;
}

.accordion-faq-alt .accordion-faq-alt__head:hover:after {
	border-color: #d9201e;
}

.accordion-faq-alt .accordion-faq-alt__section.is-visible h3 {
	color: #d9201e;
}

.accordion-faq-alt .accordion-faq-alt__section.is-visible .accordion-faq-alt__head:after {
	border-color: #d9201e;
	transform: rotate3d(1, 0.42, 0, 180deg);
}

.accordion-faq-alt .accordion-faq-alt__body {
	padding-bottom: 0;
	display: grid;
	grid-template-rows: 0fr;
	line-height: 1.666;
	transition: padding .4s, grid-template-rows .4s;
}

@media (max-width: 767px) {
	.accordion-faq-alt .accordion-faq-alt__body {
		font-size: 16px;
		line-height: 1.625;
	}
}

.accordion-faq-alt .accordion-faq-alt__body-inner {
	overflow: hidden;
}

.accordion-faq-alt .accordion-faq-alt__section.is-visible .accordion-faq-alt__body {
	padding-bottom: 24px;
	grid-template-rows: 1fr;
}

.accordion-faq-alt__btn {
	display: inline-block;
}

@media (max-width: 767px) {
	.accordion-faq-alt__btn {
		display: block;
	}
}

/* ------------------------------------------------------------ *\
	Section product single
\* ------------------------------------------------------------ */

.section-product-single {
	position: relative;
	padding: 25px 0 80px;
	background-color: #fff;
}

.section-product-single.is-visible {
	z-index: 9999999;
}

.section-product-single h1 {
	margin-bottom: 0;
	color: #4a4541;
	font-size: 36px;
	font-weight: 600;
	line-height: 1.22;
}

.section-product-single + section.section-list-products { padding-top: 0; }

@media (max-width: 1279px) {
	.section-product-single h1 {
		font-size: 34px;
	}
}

@media (max-width: 767px) {
	.section-product-single h1 {
		font-size: 28px;
	}
}

@media (max-width: 767px) {
	.section__breadcrumbs {
		margin-bottom: 26px;
	}
}

.section-product-single .section__head {
	display: grid;
	grid-template-columns: repeat(2, auto);
	justify-content: space-between;
	align-items: center;
	gap: 20px;
	margin-bottom: 30px;
}

@media (max-width: 767px) {
	.section-product-single .section__head {
		margin-bottom: 19px;
	}
}

.section-product-single .section__head:last-child {
	margin-bottom: 0;
}

.section-product-single .section__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 16px;
}

@media (max-width: 1279px) {
	.section-product-single .section__actions {
		gap: 10px;
	}
}

@media (max-width: 1024px) {
	.section-product-single .section__actions {
		display: none;
	}
}

@media (max-width: 1024px) {
	.section-product-single .section__actions {
		gap: 16px;
	}
}

.section-product-single .section__actions.section__actions--mobile {
	display: none;
}

@media (max-width: 1024px) {
	.section-product-single .section__actions.section__actions--mobile {
		display: flex;
	}
}

@media (max-width: 1024px) {
	.section-product-single .section__btn {
		width: calc(50% - 10px);
	}
}

@media (max-width: 767px) {
	.section-product-single .section__btn {
		width: 100%;
	}
}

.section-product-single .section__body:last-child {
	margin-bottom: 0;
}

@media (max-width: 1024px) {
	.section-product-single .section__body {
		margin-bottom: 40px;
	}
}

/* ------------------------------------------------------------ *\
	Tabs product single
\* ------------------------------------------------------------ */

.tabs-product-single .tabs__head {
	margin-bottom: 24px;
	border-bottom: 1px solid #e0e0e0;
}

.tabs-product-single .tabs__head:last-child {
	margin-bottom: 0;
}

.tabs-product-single .tabs__nav ul {
	display: flex;
	align-items: center;
	gap: 8px;
}

@media (max-width: 767px) {
	.tabs-product-single .tabs__nav ul {
		position: relative;
		overflow: hidden;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
	}
}

@media (max-width: 767px) {
	.tabs-product-single .tabs__nav ul::-webkit-scrollbar {
		display: none;
	}
}

.tabs-product-single .tabs__nav a {
	position: relative;
	padding: 0 8px 7px;
	display: block;
	color: var(--c-charcoal);
	text-decoration: none;
	font-size: 16px;
	line-height: 1.625;
	transition: font-weight .4s, color .4s;
}

.tabs-product-single .tabs__nav a:after {
	content: '';
	position: absolute;
	bottom: -1px;
	left: 50%;
	width: 0;
	height: 4px;
	background-color: var(--c-red-hex, red);
	transition: left .4s, right .4s, width .4s;
}

.tabs-product-single .tabs__nav a:hover {
	color: var(--c-red-hex, red);
}

.tabs-product-single .tabs__nav li.is-active a {
	font-weight: 700;
}

.tabs-product-single .tabs__nav li.is-active a:after {
	left: 0;
	width: 100%;
}

.tabs-product-single .tabs__body {
	width: 100%;
	position: relative;
}

/* ------------------------------------------------------------ *\
	Tab product single
\* ------------------------------------------------------------ */

.tab-product-single {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	background-color: #fff;
	opacity: 0;
	pointer-events: none;
	transition: opacity .4s;
}

.tab-product-single.is-active {
	position: relative;
	opacity: 1;
	pointer-events: all;
	z-index: 10;
}

/* ------------------------------------------------------------ *\
	Product overview
\* ------------------------------------------------------------ */

.product-overview {
	display: grid;
	grid-template-columns: 63.63% auto;
	justify-content: space-between;
	gap: 60px;
}

@media (max-width: 1279px) {
	.product-overview {
		grid-template-columns: 60% 35.5%;
		gap: 30px;
	}
}

@media (max-width: 1024px) {
	.product-overview {
		grid-template-columns: 100%;
	}
}

@media (max-width: 767px) {
	.product-overview {
		gap: 21px;
	}
}

.product-overview .product__aside {
	padding-top: 5px;
}

.product-overview .product__list {
	margin-bottom: 24px;
}

.product-overview .product__list:last-child {
	margin-bottom: 0;
}

.product-overview .product__list li {
	display: grid;
	grid-template-columns: 33px auto;
	align-items: start;
	gap: 16px;
	margin-bottom: 30px;
}

@media (max-width: 1279px) {
	.product-overview .product__list li {
		gap: 10px;
		margin-bottom: 10px;
	}
}

@media (max-width: 767px) {
	.product-overview .product__list li {
		gap: 15px;
		margin-bottom: 20px;
	}
}

.product-overview .product__list li:last-child {
	margin-bottom: 0;
}

.product-overview .product__list-icon {
	padding: 8px;
	display: grid;
	align-items: center;
	margin-top: -5px;
	width: 33px;
	height: 33px;
	background-color: #fbe9e9;
	border-radius: 50%;
}

.product-overview .product__list-icon img {
	display: block;
	width: 100%;
	object-fit: contain;
}

.product-overview .product__list-content {
	font-size: 16px;
	line-height: 1.625;
}

.product-overview .product__text {
	padding: 16px 24px;
	margin-bottom: 16px;
	background-color: #fff;
	box-shadow: 0px 6.131px 24.524px rgba(0, 0, 0, 0.06);
}

@media (max-width: 1279px) {
	.product-overview .product__text {
		padding: 16px;
	}
}

.product-overview .product__text:last-child {
	margin-bottom: 0;
}

.product-overview .product__text img {
	vertical-align: top;
	width: 53px;
}

.product__review {
	padding: 24px;
	box-shadow: 0px 6.131px 24.524px rgba(0, 0, 0, 0.06);
}

@media (max-width: 1279px) {
	.product__review {
		padding: 16px;
	}
}

.product-overview .product__review-stars {
	display: flex;
	align-items: center;
	gap: 3px;
	margin-bottom: 16px;
}

@media (max-width: 1279px) {
	.product-overview .product__review-stars {
		margin-bottom: 10px;
	}
}

.product-overview .product__review-stars:last-child {
	margin-bottom: 0;
}

.product-overview .product__review-stars li {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 21px;
	height: 21px;
	background-color: #00b67a;
}

.product-overview .product__review-stars li img {
	display: block;
	width: 14px;
	height: 14px;
	object-fit: contain;
}

.product-overview .product__review-quote {
	margin-bottom: 8px;
	font-size: 16px;
	line-height: 1.625;
}

.product-overview .product__review-quote:last-child {
	margin-bottom: 0;
}

.product-overview .product__review-meta {
	font-size: 14px;
	line-height: 1.428;
}

.product-overview .product__popup {
	position: fixed;
	top: 0;
	left: 0;
	display: grid;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	overflow-y: auto;
	opacity: 0;
	pointer-events: none;
	z-index: 99999;
	transition: opacity .4s;
}

.product-overview .product__popup-overlay {
	position: fixed;
	inset: 0;
	background-color: var(--c-charcoal);
	opacity: .8;
}

.product-overview .product__popup-container {
	padding: 20px 20px 65px;
}

@media (max-width: 767px) {
	.product-overview .product__popup-container {
		padding: 0;
		height: 100%;
	}
}

.product-overview .product__popup-title {
	padding-bottom: 16px;
	margin-bottom: 24px;
	color: #4a4541;
	border-bottom: 1px solid #ccc;
	font-size: 24px;
	font-weight: 600;
	line-height: 1.29;
}

@media (max-width: 767px) {
	.product-overview .product__popup-title {
		padding-bottom: 0;
		border-bottom: none;
		text-align: center;
		line-height: 1.29;
	}
}

.product-overview .product__popup-title:last-child {
	margin-bottom: 0;
}

.product-overview .product__popup-container-inner {
	position: relative;
	padding: 40px 60px;
	width: 100%;
	max-width: 1440px;
    background-color: #fff;
	opacity: 0;
	transition: opacity .4s 0.23s ease-in;
}

@media (max-width: 1279px) {
	.product-overview .product__popup-container-inner {
		padding: 40px;
	}
}

@media (max-width: 1024px) {
	.product-overview .product__popup-container-inner {
		padding: 20px;
	}
}

@media (max-width: 767px) {
	.product-overview .product__popup-container-inner {
		padding: 0;
		display: flex;
		flex-direction: column;
		justify-content: center;
		height: 100%;
	}
}

.product-overview .product__popup-close {
	justify-self: end;
	margin: 0 13px 18px auto;
}

@media (max-width: 767px) {
	.product-overview .product__popup-close {
		position: absolute;
		top: 16px;
		right: 17px;
		margin: 0;
		z-index: 3;
	}
}

@media (max-width: 767px) {
	.product-overview .product__popup-close:before,
	.product-overview .product__popup-close:after {
		background-color: var(--c-charcoal);
	}
}

.product-overview .product__popup-close:last-child {
	margin-bottom: 0;
}

.product-overview .product__popup.is-visible {
	opacity: 1;
	pointer-events: all;
}

.product-overview .product__popup.is-visible .product__popup-container-inner {
	opacity: 1;
}

/* ------------------------------------------------------------ *\
	Slider product
\* ------------------------------------------------------------ */

.slider-product .slider__clip {
	position: relative;
	margin-bottom: 16px;
}

@media (max-width: 1279px) {
	.slider-product .slider__clip {
		margin-bottom: 10px;
	}
}

@media (max-width: 767px) {
	.slider-product .slider__clip {
		margin-bottom: 6px;
	}
}

.slider-product .slider__clip:last-child {
	margin-bottom: 0;
}

.slider-product .slider__expand {
	position: absolute;
	top: 16px;
	right: 16px;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 36px;
	height: 36px;
	background-color: rgba(255, 255, 255, .9);
	background-size: 17px;
	border-radius: 50%;
	z-index: 3;
}

.slider-product .slider__expand path {
	transition: fill .4s;
}

.slider-product .slider__expand:hover path {
	fill: var(--c-red-hex, red);
}

.slider-product .slider__utilities {
	display: flex;
	align-items: center;
	gap: 26px;
}

@media (max-width: 1024px) {
	.slider-product .slider__utilities {
		gap: 0;
	}
}

@media (max-width: 1024px) {
	.slider-product .slider__thumbs {
		padding: 0 16px;
	}
}

.slider-product .slider__prev,
.slider-product .slider__next {
	position: static;
	display: grid;
	align-items: center;
	margin-top: 0;
	width: 25px;
	flex: 0 0 25px;
	height: 37px;
	text-decoration: none;
}

@media (max-width: 1024px) {
	.slider-product .slider__prev,
	.slider-product .slider__next {
		display: none;
	}
}

.slider-product .slider__prev:after,
.slider-product .slider__next:after {
	content: '';
	display: block;
	width: 11px;
	height: 11px;
	border: solid var(--c-charcoal);
	border-width: 0 2px 2px 0;
	transform: rotate(-45deg);
}

.slider-product .slider__prev:after {
	margin-left: 5px;
	border-width: 0 0 2px 2px;
	transform: rotate(45deg);
}

.slider-product .slider__next:after {
	margin-right: 5px;
}

.slider-product .slider__slide img {
	display: block;
	width: 100%;
	aspect-ratio: 916 / 540;
	object-fit: cover;
}

@media (max-width: 767px) {
	.slider-product .slider__slide img {
		aspect-ratio: 343 / 257;
	}
}

.slider-product .slider__thumbs .slider__slide img {
	 aspect-ratio: 130 / 98;
}

@media (max-width: 767px) {
	.slider-product .slider__thumbs .slider__slide img {
		aspect-ratio: 80 / 60;
	}
}

.slider-product .slider__thumbs .slider__slide {
	padding: 0;
	box-shadow: inset 0 0 1px 1px transparent;
	cursor: pointer;
	transition: padding .1s, box-shadow .1s;
}

.slider-product .slider__thumbs .slider__slide.swiper-slide-thumb-active {
	padding: 4px;
	box-shadow: inset 0 0 1px 1px var(--c-charcoal);
}

/* ------------------------------------------------------------ *\
	Product features
\* ------------------------------------------------------------ */

.product-features {
	display: grid;
	grid-template-columns: 40.69% auto;
	align-items: start;
	gap: 60px;
}

@media (max-width: 1279px) {
	.product-features {
		gap: 40px;
	}
}

@media (max-width: 1024px) {
	.product-features {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 1024px) {
	.product-features {
		gap: 21px;
	}
}

.product-features li {
	position: relative;
	padding-left: 23px;
	margin-bottom: 8px;
	font-size: 16px;
	line-height: 1.62;
}

.product-features li:last-child {
	margin-bottom: 0;
}

.product-features li:before {
	content: '';
	position: absolute;
	top: 10px;
	left: 8px;
	width: 6px;
	height: 6px;
	background-color: var(--c-charcoal);
	border-radius: 50%;
}

.product-features .product__image {
	border: 1px solid #e0e0e0;
}

.product-features .product__image img {
	display: block;
	width: 100%;
}

/* ------------------------------------------------------------ *\
	Product specs
\* ------------------------------------------------------------ */

.product-specs {
	position: relative;
}

.product-specs .has-max-height {
	padding-right: 40px;
	overflow: hidden;
	overflow-y: scroll;
 }

.product-specs .has-max-height::-webkit-scrollbar {
	width: 4px;
	height: 4px;
}

.product-specs .has-max-height::-webkit-scrollbar-track {
	background: white;
	border: 0;
}

.product-specs .has-max-height::-webkit-scrollbar-thumb {
	background: #7A736D;
	border-radius: 10px;
	border: 0;
}

.product-specs .has-max-height::-webkit-scrollbar-thumb:hover {
	background: var(--c-base);
	border: 0;
}

.product-specs:before {
	content: ' ';
	position: absolute;
	left: 0;
	right: calc(40px + var(--scroll-bar-width, 0px));
	top: 0;
	bottom: 0;
	pointer-events: none;
	border-top: 1px solid #ccc;
	border-bottom: 1px solid #ccc;

}

@media (max-width: 1024px) {
	.product-specs .has-max-height {
		padding-right: 0;
		border-top: 1px solid #ccc;
		border-bottom: 1px solid #ccc;
	}

	.product-specs:before {
		display: none;
	}
}

.product-specs .product__row {
	display: grid;
	grid-template-columns: 23.61% auto;
	border-bottom: 1px solid #ccc;
	min-width: calc(100% + 4px);
}

@-moz-document url-prefix() {
	.product-specs .product__row {
		min-width: 100%;
	}
}


@media (max-width: 767px) {
	.product-specs .product__row {
		grid-template-columns: 41.81% auto;
	}
}

.product-specs .product__row:last-child { border-bottom: 0; }

.product-specs .product__col {
	padding: 12px 16px;
	font-size: 16px;
	line-height: 1.625;
}

@media (max-width: 1279px) {
	.product-specs .product__col {
		padding: 8px 13px;
		line-height: 1.4;
	}
}

@media (max-width: 1024px) {
	.product-specs .product__col {
		padding: 8px;
		line-height: 1.3;
	}
}

@media (max-width: 767px) {
	.product-specs .product__col {
		padding: 12px 16px;
		font-size: 14px;
		line-height: 1.571;
	}
}

.product-specs .product__col:first-child {
	color: var(--c-charcoal);
	background-color: #efefef;
}

.product-specs .product__col:last-child {
	border-right: 1px solid #ccc;
}

/* ------------------------------------------------------------ *\
	Product-about
\* ------------------------------------------------------------ */

.product-about {
	padding-right: 45px;
	display: grid;
	grid-template-columns: 42.11% auto;
	gap: 60px;
}

@media (max-width: 1279px) {
	.product-about {
		padding-right: 20px;
		grid-template-columns: 42.11% auto;
		gap: 40px;
	}
}

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

@media (max-width: 767px) {
	.product-about {
		padding-right: 11px;
		gap: 19px;
	}
}

.product-about p {
	margin-bottom: 15px;
}

@media (max-width: 1279px) {
	.product-about p {
		margin-bottom: 10px;
	}
}

@media (max-width: 767px) {
	.product-about p {
		margin-bottom: 15px;
	}
}

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

.product-about a {
	text-decoration: underline;
	text-decoration-color: transparent;
	transition: color .4s, text-decoration-color .4s;
}

.product-about a:hover {
	color: var(--c-darkred-hex);
	text-decoration-color: var(--c-darkred-hex);
}

.product-about .product__content {
	font-size: 16px;
	line-height: 1.625;
}

/* ------------------------------------------------------------ *\
	Product assembly
\* ------------------------------------------------------------ */

.product-assembly {
	display: grid;
	grid-template-columns: 48% 40.55%;
	justify-content: space-between;
	gap: 40px;
}

@media (max-width: 1279px) {
	.product-assembly {
		grid-template-columns: 50% auto;
	}
}

@media (max-width: 1024px) {
	.product-assembly {
		grid-template-columns: 1fr;
		gap: 20px;
	}
}

@media (max-width: 767px) {
	.product-assembly {
		grid-template-columns: 1fr;
		gap: 16px;
	}
}

.product-assembly a {
	text-decoration: underline;
	text-decoration-color: transparent;
	transition: color .4s, text-decoration-color .4s;
}

.product-assembly a:hover {
	color: var(--c-darkred-hex);
	text-decoration-color: currentColor;
}

.product-assembly .product__content {
	font-size: 16px;
	line-height: 1.625;
}

.product-assembly .product__aside a {
	font-size: 16px;
	line-height: 1.625;
}

.product-assembly .product__aside-heading {
	margin-bottom: 8px;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.625;
}

.product-assembly .product__aside-heading:last-child {
	margin-bottom: 0;
}

.product-assembly .product__list {
	margin-bottom: 23px;
}

@media (max-width: 767px) {
	.product-assembly .product__list {
		margin-bottom: 16px;
	}
}

.product-assembly .product__list:last-child {
	margin-bottom: 0;
}

.product-assembly .product__list li {
	margin-bottom: 4px;
}

.product-assembly .product__list li:last-child {
	margin-bottom: 0;
}

.product-assembly .product__pdf {
	display: grid;
	grid-template-columns: 20px auto;
	justify-content: start;
	gap: 8px;
}

.product-assembly .product__pdf:before {
	content: '';
	display: block;
	margin: 4px auto 0;
	width: 13px;
	height: 16px;
	background: transparent url('../../assets/media/svg/icon-pdf.svg') no-repeat center;
	background-size: contain;
}

.product-assembly .product__video {
	display: grid;
	grid-template-columns: 20px auto;
	justify-content: start;
	gap: 8px;
}

.product-assembly .product__video:before {
	content: '';
	display: block;
	margin: 6px auto 0;
	width: 16px;
	height: 13px;
	background: transparent url('../../assets/media/svg/icon-video.svg') no-repeat center;
	background-size: contain;
}

/* ------------------------------------------------------------ *\
	Has max-height
\* ------------------------------------------------------------ */

.has-max-height {
	max-height: 496px;
	overflow-y: auto;
}

@media (max-width: 1024px) {
	.has-max-height {
		max-height: 59.4dvh;
	}
}

@media (max-width: 767px) {
	.has-max-height {
		max-height: 55.4dvh;
	}
}

/* Target Firefox specifically */
@supports (-moz-appearance: none) {
    .has-max-height {
		scrollbar-color: var(--c-charcoal) transparent;
		scrollbar-width: thin;
	}
}

.has-max-height::-webkit-scrollbar {
	width: 8px;
}

.has-max-height::-webkit-scrollbar-thumb {
	background-color: #7A736D;
	border-radius: 4px;
}

.has-max-height.has-max-height--mobile {
	max-height: initial;
}

@media (max-width: 1024px) {
	.has-max-height.has-max-height--mobile {
		max-height: 59.4dvh;
	}
}

@media (max-width: 767px) {
	.has-max-height.has-max-height--mobile {
		max-height: 55.4dvh;
	}
}


/* ------------------------------------------------------------ *\
	Slider product popup
\* ------------------------------------------------------------ */

.slider-product-popup {
	position: relative;
	display: flex;
	gap: 60px;
}

@media (max-width: 1279px) {
	.slider-product-popup {
		gap: 30px;
	}
}

@media (max-width: 1024px) {
	.slider-product-popup {
		padding-bottom: 35px;
		flex-direction: column;
		gap: 20px;
	}
}

@media (max-width: 767px) {
	.slider-product-popup {
		padding-bottom: 0;
		flex-direction: column;
		gap: 14px;
	}
}

.slider-product-popup .slider__inner {
	flex-basis: 84.1%;
}

@media (max-width: 1024px) {
	.slider-product-popup .slider__inner {
		width: 100%;
		flex-basis: 100%;
	}
}

.slider-product-popup .slider__clip {
	position: relative;
	margin-bottom: 16px;
}

@media (max-width: 1024px) {
	.slider-product-popup .slider__clip {
		margin-bottom: 0;
	}
}

.slider-product-popup .slider__clip:last-child {
	margin-bottom: 0;
}

.slider-product-popup .slider__slide img {
	display: block;
	width: 100%;
	height: auto;
}

.slider-product-popup .slider__pagination {
	position: static;
	padding-right: 14px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
	flex-basis: 11.45%;
	max-height: clamp(450px, 46.296vw, 700px);
	order: -1;
	overflow-y: scroll;
}

@media (max-width: 1279px) {
	.slider-product-popup .slider__pagination {
		padding-right: 10px;
	}
}

@media (max-width: 1024px) {
	.slider-product-popup .slider__pagination {
		padding: 0 16px 6px;
		flex-direction: row;
		gap: 10px;
		width: 100%;
		flex-basis: 100%;
		order: initial;
		overflow-x: auto;
	}
}

@media (max-width: 767px) {
	.slider-product-popup .slider__pagination {
		padding: 0 16px 12px;
		max-height: 320px;
	}

}

/* Target Firefox specifically */
@supports (-moz-appearance: none) {
    .slider-product-popup .slider__pagination {
		scrollbar-color: var(--c-charcoal) transparent;
		scrollbar-width: thin;
	}
}

.slider-product-popup .slider__pagination::-webkit-scrollbar {
	width: 8px;
}

@media (max-width: 1024px) {
	.slider-product-popup .slider__pagination::-webkit-scrollbar {
		height: 8px;
	}
}

.slider-product-popup .slider__pagination::-webkit-scrollbar-thumb {
	background-color: #7A736D;
	border-radius: 4px;
}

.slider-product-popup .slider__pagination .swiper-pagination-bullet {
	margin: 0;
	width: initial;
	height: initial;
	background: transparent;
	box-shadow: inset 0 0 1px 1px transparent;
	border-radius: 0;
	opacity: 1;
	transition: padding .1s, box-shadow .1s;
}

@media (max-width: 1024px) {
	.slider-product-popup .slider__pagination .swiper-pagination-bullet {
		display: block;
		flex: 0 0 15%;
	}
}

@media (max-width: 767px) {
	.slider-product-popup .slider__pagination .swiper-pagination-bullet {
		display: block;
		flex: 0 0 23.4%;
	}
}

.slider-product-popup .slider__pagination .swiper-pagination-bullet img {
	aspect-ratio: 130 / 97;
}

.slider-product-popup .slider__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
	padding: 4px;
	box-shadow: inset 0 0 1px 1px var(--c-charcoal);
}

.slider-product-popup .slider__progress {
	display: flex;
	justify-content: center;
	align-items: center;
	color: var(--c-charcoal);
	font-size: 16px;
	line-height: 1.625;
}

@media (max-width: 1024px) {
	.slider-product-popup .slider__progress {
		position: fixed;
		bottom: 0;
		left: 0;
		width: 100%;
	}
}

@media (max-width: 767px) {
	.slider-product-popup .slider__progress {
		bottom: 24px;
		font-size: 14px;
	}
}

.slider-product-popup .slider__actions {
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: auto;
	width: 100%;
	z-index: 1;
}

.slider-product-popup .slider__next,
.slider-product-popup .slider__prev {
	position: relative;
	display: block;
	top: 0;
	left: 0;
	margin-top: 0;
	width: 48px;
	height: 48px;
	background-color: rgba(255, 255, 255, .8);
}

@media (max-width: 1279px) {
	.slider-product-popup .slider__next,
	.slider-product-popup .slider__prev {
		width: 35px;
		height: 35px;
	}
}

@media (max-width: 767px) {
	.slider-product-popup .slider__next,
	.slider-product-popup .slider__prev {
		width: 40px;
		height: 48px;
	}
}

.slider-product-popup .slider__next:after,
.slider-product-popup .slider__prev:after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 10px;
	height: 17px;
	background: transparent url('../../assets/media/svg/icon-arrow-left.svg') no-repeat center;
	background-size: contain;
	font-size: initial;
}

@media (max-width: 1279px) {
	.slider-product-popup .slider__next:after,
	.slider-product-popup .slider__prev:after {
		width: 8px;
		height: 15px;
	}
}

@media (max-width: 767px) {
	.slider-product-popup .slider__next:after,
	.slider-product-popup .slider__prev:after {
		width: 10px;
		height: 17px;
	}
}

.slider-product-popup .slider__next:after {
	background: transparent url('../../assets/media/svg/icon-arrow-right.svg') no-repeat center;
	background-size: contain;
}

/* ------------------------------------------------------------ *\
	Icons
\* ------------------------------------------------------------ */

.ico-grid { width: 14px; height: 14px; background-image: url('../../assets/images/ico-grid.svg'); background-repeat: no-repeat; background-size: 14px 14px; background-position: center; }
.ico-list { width: 16px; height: 12px; background-image: url('../../assets/images/ico-list.svg'); background-repeat: no-repeat; background-size: 16px 12px; background-position: center; }
.ico-clock { width: 16px; height: 16px; background-image: url('../../assets/images/ico-clock.svg'); background-repeat: no-repeat; background-size: 16px 16px; background-position: center; }
.ico-color { width: 18px; height: 18px; border-radius: 50%; background-color: var(--background, transparent); margin-right: 8px; }
.ico-color[style*="#fff"] { box-shadow: inset 0 0 0 1px #ccc; }
.ico-color--none { background-image: url('../../assets/images/ico-none-color.svg'); background-repeat: no-repeat; background-size: contain; background-position: center; }
.ico-eye { width: 36px; height: 36px; border-radius: 50%; background-color: white; display: flex; align-items: center; justify-content: center; }
.ico-eye:before { content: ' '; display: block; width: 18px; height: 12px; background-image: url('../../assets/images/ico-eye.svg'); background-repeat: no-repeat; background-size: contain; background-position: center; }
.ico-zoom { width: 36px; height: 36px; border-radius: 50%; background-color: white; display: flex; align-items: center; justify-content: center; }
.ico-zoom:before { content: ' '; display: block; width: 17px; height: 17px; background-image: url('../../assets/images/ico-zoom.svg'); background-repeat: no-repeat; background-size: contain; background-position: center; }
.ico-error { width: 16px; height: 16px; background-image: url('../../assets/images/ico-error.svg'); background-repeat: no-repeat; background-size: 16px 16px; background-position: center; }

@media (max-width: 767px) {
	.ico-zoom { width: 28px; height: 28px; }
	.ico-zoom:before { width: 14px; height: 14px; }
}

/* ------------------------------------------------------------ *\
	Section List Products
\* ------------------------------------------------------------ */

.section-list-products { width: 100%; padding-block: 80px; background: white; }
.section-list-products .shell { display: flex; }
.section-list-products .section__aside { width: 370px; padding-right: clamp(20px, 10vw, 60px); }
.section-list-products .section__aside > * { position: sticky; display: block; overflow: hidden; top: var(--header-height, 107px); padding-right: clamp(10px, 10vw, 24px); }
.section-list-products .section__aside > * { max-height: calc(100svh - var(--header-height, 107px)); overflow-y: auto; -webkit-overflow-scrolling: touch; padding-block: 64px; }
.section-list-products .section__aside > *::-webkit-scrollbar-thumb { border: 4px solid white; }

html.fixed-header .section-list-products .section__aside > * { top: calc(106px + 20px); }

.section-list-products .section__list { width: 100%; display: flex; flex-direction: column; gap: 24px; }
.section-list-products .section__list:not(:first-child) { width: calc(100% - 370px); }

.section-list-products .section__list__filters { display: flex; align-items: center; flex-wrap: wrap; gap: 24px; width: 100%; }
.section-list-products .section__list__filters-items { margin-right: auto; font-size: 14px; line-height: 1.57; }

.section-list-products .section__list__filters-sorting > ul { display: flex; gap: 24px; flex-wrap: wrap; }
.section-list-products .section__list__filters-sorting > ul > li { display: flex; align-items: center; gap: 4px; }
.section-list-products .section__list__filters-sorting > ul > li.mobile-filter-button { display: none; }
.section-list-products .section__list__filters-sorting > ul > li.mobile-filter-button + li .custom-select { min-width: 200px; }
.section-list-products .section__list__filters-sorting > ul > li:first-child select,
.section-list-products .section__list__filters-sorting > ul > li:first-child .custom-select__option { font-weight: 700; }
.section-list-products .section__list__filters-sorting label { display: block; font-size: 14px; line-height: 1.57; white-space: nowrap; }
.section-list-products .section__list__filters-sorting select { height: 40px; padding: 0 16px; border: 1px solid #CCC; border-radius: 4px; background: white; cursor: pointer; font-size: 14px; line-height: 1.1; font-weight: 400; color: var(--c-charcoal); }
.section-list-products .section__list__filters-sorting li > button { display: flex; width: 32px; height: 32px; border-radius: 4px; background: white; align-items: center; justify-content: center; border: 0; transition: background var(--theme-transition-duration); }
.section-list-products .section__list__filters-sorting li > button.active { background-color: #EFEFEF; pointer-events: none; }
.section-list-products .section__list__filters-sorting .custom-select > button { height: 40px; }

.section-list-products .section__list-products { width: 100%; position: relative;overflow: hidden; }
.section-list-products .section__list-products > ul { padding: 0; display: flex; flex-wrap: wrap; }
.section-list-products .section__list-products > ul > li { width: 100%; }
.section-list-products .section__list-products.grid > ul { margin: -30px -12px; }
.section-list-products .section__list-products.grid > ul > li { width: calc(100% / 3); padding: 30px 12px; }
.section-list-products .section__list-products.list > ul { margin: -20px 0; }
.section-list-products .section__list-products.list > ul > li { padding: 20px 0; }
.section-list-products .custom-select > button { padding-right: 40px; }

.section-list-products .section__list-pagination { margin-top: 56px; }

.section-list-products .section__list__filters-mobile,
.section-list-products .section__list__filters-mobile-result { position: absolute; left: -4000px; opacity: 0; font-size: 0; line-height: 0; }

@media (hover) and (pointer: fine) {
	.section-list-products .section__list__filters-sorting li > button:hover { background-color: #EFEFEF; }
}

@media (max-width: 1100px) {
	.section-list-products .section__aside { width: 300px; padding-right: 20px; }
	.section-list-products .section__list:not(:first-child) { width: calc(100% - 300px); }
	.section-list-products .section__list-products.grid > ul > li { width: 50%; }
}

@media (max-width: 985px) {
	.section-list-products .section__aside { position: fixed; left: 0; right: 0; top: 0; bottom: 0; background-color: white; z-index: 999999; width: auto; transform: translateY(100%); }
	.section-list-products .section__aside { padding: 0; opacity: 0; visibility: hidden; transition: opacity var(--theme-transition-duration), visibility var(--theme-transition-duration), transform var(--theme-transition-duration); }
	.section-list-products .section__aside > * { max-height: 100svh; min-height: 100svh; position: relative; top: 0; padding: 0; }

	.section-list-products .section__list:not(:first-child) { width: 100%; }

	.section-list-products .section__list__filters { flex-direction: column-reverse; gap: 16px; padding: 5px 0; min-width: calc(100% + 84px); position: sticky; top: 128px; margin-left: -42px; padding-inline: 42px; background-color: white; z-index: 100; transition: box-shadow var(--theme-transition-duration); }
	.section-list-products .section__list__filters.is-sticky { box-shadow: 0 0 10px rgba(0,0,0,.18); }
	.section-list-products .section__list__filters-sorting { width: 100%; }
	.section-list-products .section__list__filters-sorting li { position: relative; }
	.section-list-products .section__list__filters-sorting li:first-child,
	.section-list-products .section__list__filters-sorting li:last-child { display: none; }
	.section-list-products .section__list__filters-sorting select { padding-left: 65px; text-align: left; width: 100%; }
	.section-list-products .section__list__filters-sorting label { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); font-weight: 700; pointer-events: none; }
	.section-list-products .section__list__filters-sorting > ul { gap: 8px; flex-wrap: nowrap; }
	.section-list-products .section__list__filters-sorting > ul > li.mobile-filter-button { display: block; }
	.section-list-products .section__list__filters-sorting > ul > li.mobile-filter-button + * { width: 100%; }
	.section-list-products .section__list__filters-sorting .mobile-filter-button button { border: 1px solid #ccc; border-radius: 4px; background: white; padding: 0 16px; height: 40px; }
	.section-list-products .section__list__filters-sorting .mobile-filter-button button { font-size: 14px; font-weight: 700; display: flex; align-items: center; gap: 8px; width: auto; background: white; }
	.section-list-products .section__list__filters-sorting .mobile-filter-button button:before { content: ' '; display: block; min-width: 20px; width: 20px; height: 20px; background-image: url('../../assets/images/ico-filter.svg'); background-repeat: no-repeat; background-size: 20px 20px; background-position: center; }

	.section-list-products .section__list__filters-items { display: none; }

	.section-list-products .section__list__filters-mobile,
	.section-list-products .section__list__filters-mobile-result { position: relative; left: 0; opacity: 1; }
	.section-list-products .section__list__filters-mobile-result { font-size: 14px; line-height: 1.1; }

	body.show-filters .section-list-products .section__aside { opacity: 1; visibility: visible; transform: translateY(0); }
}

@media (max-width: 767px) {
	.section-list-products .section__list-pagination { margin-top: 36px; }
	.section-list-products .section__list-products.grid > ul > li { width: 100%; }
	.section-list-products + section.section-category-products { padding-top: 0; }
}

/* ------------------------------------------------------------ *\
	Nav Filters Aside
\* ------------------------------------------------------------ */

.nav-filters-aside { width: 100%; }
.nav-filters-aside button { border: 0; border-radius: 0; background: none; display: block; width: 100%; position: relative; text-align: left; font-size: 14px; line-height: 1.28; font-weight: 400; }
.nav-filters-aside > .nav__active { font-size: 0; line-height: 0; width: 100%; }
.nav-filters-aside > .nav__active > button.nav__active-clear:first-child { position: absolute; left: -4000px; opacity: 0; }
.nav-filters-aside > .nav__list { display: flex; flex-direction: column; gap: 16px; width: 100%; }

.nav-filters-aside .nav__list-group { width: 100%; }
.nav-filters-aside .nav__list-group:not(:last-child) { border-bottom: 1px solid #E0E0E0; }
.nav-filters-aside .nav__list-group > h6 { font-size: 16px; line-height: 1.62; font-weight: 700; position: relative; margin-bottom: 0; color: #38342E; }
.nav-filters-aside .nav__list-group > h6[class] { padding-right: 20px; cursor: pointer; transition: color var(--theme-transition-duration); }
.nav-filters-aside .nav__list-group > h6[class]:before { content: ' '; margin-top: -6px; position: absolute; right: 5px; top: 50%; width: 8px; height: 8px; border-left: 2px solid #544F4A; border-top: 2px solid #544F4A; transform: rotate(-135deg); transition: transform var(--theme-transition-duration), margin var(--theme-transition-duration), border var(--theme-transition-duration); }
.nav-filters-aside .nav__list-group > h6[class] + ul { opacity: 0; visibility: hidden; position: relative; overflow: hidden; max-height: 0; transition: opacity var(--theme-transition-duration); }
.nav-filters-aside .nav__list-group.active > h6[class]:before { transform: rotate(45deg); }
.nav-filters-aside .nav__list-group.active > h6[class] + ul { opacity: 1; visibility: visible; max-height: 9999px; }
.nav-filters-aside .nav__list-group > ul { padding: 0; margin: 0; list-style: none; display: flex; flex-direction: column; }
.nav-filters-aside .nav__list-group > ul > li { padding: 10px 0; }
.nav-filters-aside .nav__list-group > ul > li:not(.nav__has-children):first-child { padding-top: 16px; }
.nav-filters-aside .nav__list-group > ul > li.nav__has-children { padding: 18px 0; border-bottom: 1px solid #E0E0E0; position: relative; }
.nav-filters-aside .nav__list-group > ul > li.nav__has-children:last-child { border-bottom: 0; }
.nav-filters-aside .nav__list-group > ul > li.nav__has-children > button.nav__filter > span > strong { font-weight: 700; }
.nav-filters-aside .nav__list-group > ul ul { padding-left: 26px; display: flex; flex-direction: column; gap: 16px; position: relative; overflow: hidden; max-height: 0; opacity: 0; visibility: hidden; transition: opacity var(--theme-transition-duration), visibility var(--theme-transition-duration), padding var(--theme-transition-duration); }
.nav-filters-aside .nav__list-group > ul li.active ul { opacity: 1; visibility: visible; max-height: 9999px; padding-top: 16px; }

.nav-filters-aside button.nav__arrow { position: absolute; right: 5px; top: 19px; width: 8px; height: 8px; border-left: 2px solid #544F4A; border-top: 2px solid #544F4A; transform: rotate(-135deg); transition: transform var(--theme-transition-duration), margin var(--theme-transition-duration), border var(--theme-transition-duration); z-index: 10; }
.nav-filters-aside button.nav__arrow + button.nav__filter { width: calc(100% - 20px); }
.nav-filters-aside li.active button.nav__arrow { transform: rotate(45deg); margin-top: 4px; }

.nav-filters-aside .nav__more { order: 10; }
.nav-filters-aside .nav__more > button { color: var(--c-red-hex, red); font-weight: 700; transition: color var(--theme-transition-duration); }
.nav-filters-aside .nav__more > button span + span { display: none; }
.nav-filters-aside .nav__more.active > button span { display: none; }
.nav-filters-aside .nav__more.active > button span + span { display: block; }
.nav-filters-aside .nav__more:not(.active) { border-bottom: 0; }
.nav-filters-aside .nav__more:not(.active) ~ * { position: absolute; left: 4000px; opacity: 0; }

.nav-filters-aside button.nav__filter { padding: 0 0 0 26px; }
.nav-filters-aside button.nav__filter:before { content: ' '; position: absolute; left: 0; top: 0; width: 18px; height: 18px; border-radius: 4px; border: 1px solid #7E7E7E; transition: border var(--theme-transition-duration), background var(--theme-transition-duration); }
.nav-filters-aside button.nav__filter:after { content: ' '; position: absolute; left: 3px; top: 4px; background-image: url('../../assets/images/ico-check-filter.svg'); background-repeat: no-repeat; background-size: 11px 10px; background-position: center; width: 11px; height: 10px; }
.nav-filters-aside button.nav__filter > span { display: flex; align-items: center; min-height: 18px; gap: 2px; font-size: 14px; line-height: 1.28; }
.nav-filters-aside button.nav__filter > span > strong { font-weight: 400; font-size: 14px; line-height: 1.28; color: var(--c-charcoal);}
.nav-filters-aside button.nav__filter > span > small { font-size: 14px; line-height: 1.28; color: #7A736D; }
.nav-filters-aside button.nav__filter.active:before { border-color: var(--c-red-hex, red); background-color: var(--c-red-hex, red); }

.nav-filters-aside .nav__head,
.nav-filters-aside .nav__actions { position: absolute; left: -4000px; opacity: 0; }

@media (hover) and (pointer: fine) {
	.nav-filters-aside button.nav__filter:hover:before { border-color: #353535; }
	.nav-filters-aside button.nav__arrow:hover { border-color: var(--c-red-hex, red); }
	.nav-filters-aside .nav__more > button:hover { text-decoration: none; color: var(--c-darkred-hex); }
	.nav-filters-aside .nav__list-group > h6[class]:hover { color: var(--c-red-hex, red); }
	.nav-filters-aside .nav__list-group > h6[class]:hover:before { border-color: var(--c-red-hex, red); }
}

@media (max-width: 985px) {
	.nav-filters-aside .nav__head,
	.nav-filters-aside .nav__actions { position: relative; left: 0; opacity: 1; }
	.nav-filters-aside > * { padding-inline: 24px; padding-block: 24px; }
	.nav-filters-aside > *:last-child { position: fixed; right: 0; bottom: 0; left: 0; }
	.nav-filters-aside > *:nth-last-of-type(2) { padding-bottom: 120px; }
	.nav-filters-aside .nav__head { display: flex; align-items: center; gap: 10px; box-shadow: 0 0 10px rgba(0, 0, 0, .12); min-height: 64px; }
	.nav-filters-aside .nav__head h6 { margin-bottom: 0; font-size: 18px; line-height: 1.1; font-weight: 700; margin-right: auto; color: #4A4541; }
	.nav-filters-aside .nav__head button { width: 14px; height: 14px; position: relative; border: 0; border-radius: 0; background: none; }
	.nav-filters-aside .nav__head button:before,
	.nav-filters-aside .nav__head button:after { content: ' '; position: absolute; left: 0; right: 0; top: 50%; height: 2px; background-color: #1C1B1F; margin-top: -1px; }
	.nav-filters-aside .nav__head button:before { transform: rotate(45deg); }
	.nav-filters-aside .nav__head button:after { transform: rotate(-45deg); }
	.nav-filters-aside .nav__active { display: none; }
	.nav-filters-aside .nav__actions { display: flex; width: 100%; align-items: center; gap: 10px; box-shadow: 0 0 10px rgba(0, 0, 0, .12); min-height: 64px; background-color: white; z-index: 10; }
	.nav-filters-aside .nav__actions > button:first-child { color: var(--c-red-hex, red); background: none; border: 0; border-radius: 0; margin-right: auto; font-size: 16px; line-height: 1.1; }
	.nav-filters-aside .nav__actions > button:last-child { background-color: var(--c-red-hex, red); color: white; padding: 0 24px; height: 54px; border-radius: 4px; border: 0; background-color: var(--c-red-hex, red); }
	.nav-filters-aside .nav__actions > button:last-child { font-size: 16px; line-height: 1.1; text-transform: uppercase; letter-spacing: 2px; text-align: center; width: auto; white-space: nowrap; }
	.nav-filters-aside .nav__list-group.active > h6[class] + ul,
	.nav-filters-aside .nav__list-group > ul li.active ul { visibility: hidden; }

	body.show-filters .nav-filters-aside .nav__list-group.active > h6[class] + ul,
	body.show-filters .nav-filters-aside .nav__list-group > ul li.active ul { visibility: visible; }
}

/* ------------------------------------------------------------ *\
	Nav Pagination
\* ------------------------------------------------------------ */

.nav-pagination { width: 100%; display: flex; flex-direction: column; gap: 24px; }
.nav-pagination .nav__body { display: flex; gap: 24px; justify-content: center; }
.nav-pagination .nav__body a { display: flex; align-items: center; justify-content: center; min-width: 36px; min-height: 36px; border-radius: 4px; border: 1px solid transparent; position: relative; background-color: white; text-decoration: none; }
.nav-pagination .nav__body a { transition: border var(--theme-transition-duration), background var(--theme-transition-duration), color var(--theme-transition-duration); }
.nav-pagination .nav__body a { font-size: 16px; line-height: 1.62; font-weight: 400; }
.nav-pagination .nav__body > a { border-color: var(--c-red-hex, red); }
.nav-pagination .nav__body > a:before { content: ' '; position: absolute; left: 50%; top: 50%; width: 8px; height: 8px; border-left: 2px solid #544F4A; border-top: 2px solid #544F4A; }
.nav-pagination .nav__body > a:before { margin-top: -4px; transition: border var(--theme-transition-duration); }
.nav-pagination .nav__body > a:first-child:before { transform: rotate(-45deg); margin-left: -2px; }
.nav-pagination .nav__body > a:last-child:before { transform: rotate(135deg); margin-left: -5px; }
.nav-pagination .nav__body > a[disabled] { pointer-events: none; opacity: 0.5; }
.nav-pagination .nav__body > ul { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; }
.nav-pagination .nav__body > ul a { color: var(--c-charcoal); }
.nav-pagination .nav__body > ul > li.current > a { background-color: var(--c-red-hex, red); color: white; }
.nav-pagination .nav__body > ul span { display: block; min-width: 36px; text-align: center; }
.nav-pagination .nav__foot { text-align: center; width: 100%; font-size: 14px; line-height: 1.57; }

@media (hover) and (pointer: fine) {
	.nav-pagination .nav__body a:hover { text-decoration: none; }
	.nav-pagination .nav__body > ul a:hover { border-color: var(--c-red-hex, red); }
	.nav-pagination .nav__body > a:hover { background-color: var(--c-red-hex, red); }
	.nav-pagination .nav__body > a:hover:before { border-color: white; }
}

@media (max-width: 374px) {
	.nav-pagination,
	.nav-pagination .nav__body { gap: 12px; }
	.nav-pagination .nav__body > ul { gap: 4px; }
}

/* ------------------------------------------------------------ *\
	Article Item
\* ------------------------------------------------------------ */

.article-item { width: 100%; display: flex; flex-wrap: wrap; }

.article-item .article__image { aspect-ratio: 1/1; position: relative; overflow: hidden; width: 100%; border: 1px solid #E0E0E0; }
.article-item .article__image a { position: absolute; left: 0; right: 0; top: 0; bottom: 0; text-decoration: none; }
.article-item .article__image img { position: absolute; left: 0; top: 0; width: 100%; height: 100%; object-fit: contain; object-position: center center; transition: transform var(--theme-transition-duration); }

.article-item .article__group__head { display: flex; flex-direction: column; gap: 8px; }
.article-item .article__group__head-title h6,
.article-item .article__group__head-title h3 { font-size: 18px; line-height: 1.44; color: #38342E; font-weight: 700; margin-bottom: 0; }
.article-item .article__group__head-title a { color: #38342E; text-decoration: none; transition: color var(--theme-transition-duration); }

.article-item .article__group__head-list:not(:last-child) { width: 100%; padding-bottom: 3px; }
.article-item .article__group__head-list > ul { display: flex; flex-wrap: wrap; gap: 6px; }
.article-item .article__group__head-list span { display: flex; align-items: center; padding: 2px 8px; min-height: 30px; background-color: #EFEFEF; font-size: 14px; line-height: 1.57; color: var(--c-charcoal); }
.article-item .article__group__head-list strong { font-weight: 400; }

.article-item .article__group__head-meta p { font-size: 14px; line-height: 1.28; }

.article-item .article__group-price { display: flex; flex-direction: column; gap: 4px; }
.article-item .article__group-price h4 { font-size: 24px; line-height: 1.33; margin-bottom: 0; font-family: var(--ff-nunito-sans); font-weight: 700; }
.article-item .article__group-price p { font-size: 14px; line-height: 1.71; display: flex; gap: 4px; align-items: center; margin-bottom: 0; }
.article-item .article__group-price p span { display: block; position: relative; color: #7A736D; }
.article-item .article__group-price p span:before { content: ' '; position: absolute; left: 0; right: 0; top: 50%; height: 1px; background-color: #7A736D; }
.article-item .article__group-price p strong { color: var(--c-red-hex, red); }

.article-item .article__group-options > button { border: 0; border-radius: 0; background: none; color: var(--c-red-hex, red); font-size: 16px; line-height: 1.62; display: inline-flex; gap: 8px; align-items: center; cursor: pointer; }
.article-item .article__group-options > button { transition: color var(--theme-transition-duration); height: 18px; line-height: 1; }
.article-item .article__group-options > button:after { content: ' '; display: block; width: 9px; height: 6px; background-image: url(../../assets/images/ico-link-red-arrow.svg); background-repeat: no-repeat; background-position: center; background-size: 9px 6px; transition: transform var(--theme-transition-duration); }
.article-item .article__group-options ul { display: flex; flex-direction: column; gap: 24px; width: 100%; position: relative; overflow: hidden; }
.article-item .article__group-options ul > li { display: flex; flex-direction: column; gap: 4px; }
.article-item .article__group-options ul > li > label { display: block; font-size: 16px; line-height: 1.62; font-weight: 600; }
.article-item .article__group-options ul > li > label span { color: var(--c-red-hex, red); }
.article-item .article__group-options select { height: 48px; padding: 0 16px; border: 1px solid #D4D4D4; border-radius: 4px; background: white; cursor: pointer; font-size: 16px; line-height: 1.1; font-weight: 400; color: var(--c-charcoal); width: 100%; }
.article-item .article__group-options > div { display: grid; grid-template-rows: 0fr; transition: grid-template-rows var(--theme-transition-duration); }
.article-item .article__group-options.active > div { grid-template-rows: 1fr; }
.article-item .article__group-options.active > button:after { transform: rotate(180deg); }

.article-item .article__group-actions { display: flex; align-items: center; gap: 4px; }
.article-item .article__group-actions > label { font-size: 16px; line-height: 1.62; }
.article-item .article__group-actions > input { min-width: 54px; height: 54px; border-radius: 4px; border: 1px solid #ccc; padding: 0 5px; text-align: center; }
.article-item .article__group-actions > input { font-size: 16px; line-height: 1; color: var(--c-charcoal); background: white; transition: color var(--theme-transition-duration); }
.article-item .article__group-actions > input::-webkit-outer-spin-button,
.article-item .article__group-actions > input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.article-item .article__group-actions > input[type="number"] { -moz-appearance: textfield; }
.article-item .article__group-actions > button { background-color: var(--c-red-hex, red); border: 1px solid var(--c-red-hex, red); border-radius: 4px; transition: color var(--theme-transition-duration), background var(--theme-transition-duration); height: 54px; padding: 0 20px; width: 100%; }
.article-item .article__group-actions > button { font-size: 16px; line-height: 1.1; text-transform: uppercase; font-weight: 600; color: white; letter-spacing: 2px; }

@media (min-width: 1300px) {
	.list .article-item .article__group__head,
	.list .article-item .article__group-options { float: left; width: calc(100% - 260px); padding-right: 40px; }
	.list .article-item .article__group-price,
	.list .article-item .article__group-actions { float: right; width: 260px; }
	.list .article-item .article__group-price { margin-bottom: 48px; }
	.list .article-item .article__group-options { margin-top: 14px; }
	.list .article-item .article__group-actions { flex-wrap: wrap; gap: 10px 8px; }
}

@media (min-width: 985px) {
	.list .article-item .article__image { width: 300px; }
	.list .article-item .article__group { width: calc(100% - 300px); padding-left: 40px; }
}

@media (min-width: 767px) {
	.grid .article-item { flex-direction: column; gap: 16px; }
	.grid .article-item .article__group { display: flex; flex-direction: column; gap: 16px; }
	.grid .article-item .article__group-options { width: 100%; margin-top: -5px; }

	.list .article-item { align-items: flex-start; }
	.list .article-item .article__image { width: 200px; }
	.list .article-item .article__group { width: calc(100% - 200px); padding-left: 20px; position: relative; overflow: hidden; }
	.list .article-item .article__group-options.active > div { max-width: 265px; }
	.list .article-item .article__group-options { margin-block: 8px; }
}

@media (max-width: 767px) {
	.article-item { align-items: flex-start; }
	.article-item .article__image { width: 148px; }
	.article-item .article__group { width: calc(100% - 148px); padding-left: 16px; display: flex; flex-direction: column; gap: 16px; }
	.article-item .article__group__head-title h6,
	.article-item .article__group__head-title h3 { font-size: 16px; line-height: 1.62; }
	.article-item .article__group__head-list span { font-size: 12px; min-height: 26px; }
	.article-item .article__group__head-list span:after { content: attr(data-suffix); display: inline; }
	.article-item .article__group__head-list strong { display: none; }
	.article-item .article__group__head-meta p { font-size: 12px; }
	.article-item .article__group-price p { font-size: 12px; }
	.article-item .article__group-actions { flex-wrap: wrap; gap: 16px 4px; }
	.article-item .article__group-actions > input { height: 40px; }
}

@media (hover) and (pointer: fine) {
	.article-item .article__image a:hover img { transform: scale(0.9); }
	.article-item .article__group__head-title a:hover { color: var(--c-red-hex, red); }
	.article-item .article__group-options > button:hover { color: var(--c-darkred-hex); }
	.article-item .article__group-actions > input:hover { border-color: #353535; }
	.article-item .article__group-actions > button:hover { color: var(--c-red-hex, red); background-color: white; }
}

/* ------------------------------------------------------------ *\
	Block Filtered Buttons
\* ------------------------------------------------------------ */

.block-filtered-buttons { display: flex; flex-wrap: wrap; gap: 8px; }
.block-filtered-buttons > button { width: auto !important; min-height: 26px; display: inline-flex; align-items: center; gap: 10px; font-weight: 400; font-size: 14px; line-height: 1.1; border: 0; }
.block-filtered-buttons > button:not(:last-child) { background-color: #EFEFEF; border-radius: 4px; padding: 5px 12px; color: var(--c-charcoal); transition: color var(--theme-transition-duration); }
.block-filtered-buttons > button:not(:last-child):after { content: ' '; display: block; width: 8px; height: 8px; background-image: url('../../assets/images/ico-x.svg'); background-repeat: no-repeat; background-size: 8px 8px; background-position: center; }
.block-filtered-buttons > button:last-child { color: var(--c-darkred-hex); background: none; border-radius: 0; transition: color var(--theme-transition-duration); margin-bottom: 24px; }

@media (hover) and (pointer: fine) {
	.block-filtered-buttons > button:hover { color: var(--c-red-hex, red); }
}

@media (max-width: 767px) {
	.block-filtered-buttons > button:last-child { margin-bottom: 16px; }
}

/* ------------------------------------------------------------ *\
	Block Ribbon
\* ------------------------------------------------------------ */

.block-ribbon { display: inline-flex; align-items: center; gap: 6px; background-color: white; border-radius: 40px; padding: 7px 10px; }
.block-ribbon span { color: var(--c-red-hex); font-size: clamp(14px, 1vw, 16px); font-weight: 700; line-height: 1.1; }

@media (max-width: 767px) {
	.block-ribbon { padding: 6px 10px; }
}
/* ------------------------------------------------------------ *\
	Block Titke
\* ------------------------------------------------------------ */

.block-title { display: flex; align-items: center; gap: 20px; padding-bottom: 31px; }
.block-title__content { width: 60%; text-align: left; }
.block-title__content h2,
.block-title__content h1 { font-weight: 600; color: var(--c-charcoal); font-weight: 600; font-size: 24px; line-height: 1.3; margin-bottom: 8px; }
.block-title__content h1 { text-transform: none; border: 0; }
.block-title__content ul { list-style: none; display: flex; flex-wrap: wrap; font-size: 16px; }
.block-title__content ul:not(:first-child) { margin-top: 11px; }
.block-title__content ul li { padding-inline: 12px; position: relative; }
.block-title__content ul li:not(:last-child):before { content: ' '; position: absolute; right: -1px; width: 1px; top: 0; bottom: 0; background-color: #ccc; }
.block-title__content ul li:first-child { padding-left: 0; }
.block-title__content ul li:last-child { padding-right: 0; }
.block-title__content blockquote { border: 1px solid var(--c-red-hex); border-radius: 4px; background-color: #fbe9e9; padding: 8px 16px; font-size: clamp(14px, 2vw, 16px); line-height: 1.57; display: inline-block; vertical-align: top; margin-top: 16px; }
.block-title__content blockquote strong { color: var(--c-red-hex); }
.block-title__content > *:last-child { margin-bottom: 0; }
.block-title__actions { display: flex; flex-direction: column; justify-content: flex-end; align-items: flex-end; width: 40%; }

@media (max-width: 1024px) {
	.block-title { flex-direction: column; gap: 8px; padding-bottom: 15px; }
	.block-title__content blockquote { padding: 8px; margin-top: 6px; }
	.block-title__content { width: 100%; }
	.block-title__content ul:not(:first-child) { margin-top: 8px; }
	.block-title__content ul { flex-direction: column; gap: 7px; }
	.block-title__content ul li { padding: 0; }
	.block-title__content ul li:not(:last-child):before { display: none; }
	.block-title__actions { width: 100%; justify-content: flex-start; align-items: flex-start; }
	.block-title__actions .btn-alt { font-size: 14px; line-height: 1.57; padding: 10px 15px; }
}

/* ------------------------------------------------------------ *\
	Block Before After
\* ------------------------------------------------------------ */

.block-before-after__inner { display: flex; flex-wrap: wrap; row-gap: 24px; }
.block-before-after__image { width: calc(50% - 8px); position: relative; overflow: hidden; }
.block-before-after__image:before { content: attr(data-title); position: absolute; left: 0; top: 0; z-index: 10; background-color: rgba(255,255,255,0.9); font-size: 16px; line-height: 1.62; padding: 8px 15px; color: var(--c-charcoal); font-weight: 700; pointer-events: none; z-index: 210; }
.block-before-after__image > a { position: absolute; right: 12px; top: 12px; z-index: 9; opacity: 0; visibility: hidden; transition: opacity 0.4s, visibility 0.4s; z-index: 210; }
.block-before-after__image + .block-before-after__image { margin-left: auto; }
.block-before-after__content { display: flex; align-items: flex-end; width: 100%; column-gap: 24px; }
.block-before-after__content__entry { display: flex; gap: 16px; }
.block-before-after__content__entry-image { width: 83px; height: 94px; border: 1px solid #ccc; background-color: white; position: relative; overflow: hidden; }
.block-before-after__content__entry-image img { position: absolute; top: 12px; left: 12px; width: calc(100% - 24px); height: calc(100% - 24px); object-fit: contain; object-position: center; }
.block-before-after__content__entry-text h6,
.block-before-after__content__entry-text h3 { font-size: 22px; line-height: 1.36; color: var(--c-charcoal); font-weight: 700; margin-bottom: 4px; font-family: var(--ff-nunito-sans); }
.block-before-after__content__entry-text p { color: #7A736D; font-size: clamp(14px, 2vw, 16px); line-height: 1.62; }
.block-before-after__content__entry-text ul { display: flex; flex-wrap: wrap; }
.block-before-after__content__entry-text ul li { padding: 0 12px; position: relative; font-size: clamp(14px, 2vw, 16px); line-height: 1.62; }
.block-before-after__content__entry-text ul li ~ li:last-child { padding-right: 0; }
.block-before-after__content__entry-text ul li ~ li:last-child:before { display: none; }
.block-before-after__content__entry-text ul li:first-child { padding-left: 0; }
.block-before-after__content__entry-text ul li:before { content: ' '; position: absolute; right: 0; width: 1px; top: 0; bottom: 0; background-color: #ccc; }
.block-before-after__content__entry-text > *:last-child { margin-bottom: 0; }
.block-before-after__content__actions { margin-left: auto; display: flex; gap: 12px; justify-content: flex-end; align-items: flex-end; flex-direction: column; }
.block-before-after + .block-before-after { margin-top: 96px; }

@media (hover) and (pointer: fine) {
	.block-before-after:hover .block-before-after__image > a { opacity: 1; visibility: visible; }
}

@media (max-width: 985px) {
	.block-before-after__inner { flex-direction: column; gap: 12px; }
	.block-before-after__image { width: 100%; }
	.block-before-after__image:before { font-size: 14px; padding: 6px 16px; }
	.block-before-after__image > i { opacity: 1; visibility: visible; right: 10px; top: 10px; }
	.block-before-after__content,
	.block-before-after__content__entry { flex-direction: column; align-items: flex-start; }
	.block-before-after__content__actions { margin-left: 0; justify-content: flex-start; align-items: flex-start; margin-top: 8px; }
	.block-before-after__content__actions .btn-alt { font-size: 14px; padding: 10px 16px; }
	.block-before-after__content__entry-text { font-size: 14px; }
	.block-before-after__content__entry-text h6,
	.block-before-after__content__entry-text h3 { font-size: 16px; margin-bottom: 7px; }
	.block-before-after__content__entry-text p { margin-bottom: 3px; }
	.block-before-after__content__entry-image { width: 54px; height: 68px; }
	.block-before-after + .block-before-after { margin-top: 72px; }
	.block-before-after__image > a { opacity: 1; visibility: visible; }
}

@media (max-width: 767px) {
	.block-before-after__content__entry-text ul { flex-direction: column; gap: 5px; }
	.block-before-after__content__entry-text ul li { padding: 0; }
	.block-before-after__content__entry-text ul li:before { display: none; }
}

/* ------------------------------------------------------------ *\
	Slider Before After
\* ------------------------------------------------------------ */

.slider-before-after__slide strong { display: block; position: relative; overflow: hidden; aspect-ratio: 712/475; font-size: 0; line-height: 0; z-index: 10; }
.slider-before-after__slide strong > *:not(a) { pointer-events: none; }
.slider-before-after__slide strong > a { position: absolute; inset: 0; font-size: 0; line-height: 0; text-decoration: none; }
.slider-before-after__slide img { position: absolute; left: 0; top: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform var(--theme-transition-duration); }
.slider-before-after__actions a { position: absolute; top: 50; transform: translateY(-50%); margin-top: 0; width: 48px; height: 48px; background-color: rgba(255, 255, 255, .8); z-index: 200; }
.slider-before-after__actions a { opacity: 0; visibility: hidden; transition: opacity 0.4s, visibility 0.4s; }
.slider-before-after__actions a:after { content: ' '; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 10px; height: 17px; background-size: contain; font-size: initial; }
.slider-before-after__actions a:first-child { left: 0; }
.slider-before-after__actions a:first-child:after { background: transparent url(../../assets/media/svg/icon-arrow-left.svg) no-repeat center; }
.slider-before-after__actions a:last-child { right: 0; }
.slider-before-after__actions a:last-child:after { background: transparent url(../../assets/media/svg/icon-arrow-right.svg) no-repeat center; }

@media (hover) and (pointer: fine) {
	.slider-before-after:hover .slider-before-after__actions a,
	.slider-before-after:hover .slider-before-after__slide i { opacity: 1; visibility: visible; }
	.slider-before-after__slide strong > a:hover img { transform: scale(1.1); }
}

/* ------------------------------------------------------------ *\
	Colorbox
\* ------------------------------------------------------------ */

#cboxOverlay { background-color: var(--c-charcoal) !important; opacity: .8 !important; }
#cboxContent { margin: 50px 0; display: flex; flex-direction: column; overflow: visible; }
#cboxTitle { order: 1; position: relative; left: 0; right: 0; top: 0; bottom: 0; font-weight: 700; text-align: left; margin-bottom: 10px; }
#cboxClose { position: absolute; right: 0; top: -35px; padding: 0; margin: 0; transform: none; opacity: 1; width: 27px; height: 27px; }
#cboxClose:before,
#cboxClose:after { content: ' '; position: absolute; left: 0; right: 0; top: 50%; height: 2px; background-color: white; margin-top: -1px; transition: background var(--theme-transition-duration); padding: 0; font-size: 0; line-height: 0; }
#cboxClose:before { transform: rotate(45deg); }
#cboxClose:after { transform: rotate(-45deg); }
#cboxLoadedContent { order: 2; margin: 0; }

@media (hover) and (pointer: fine) {
	#cboxClose:hover:before,
	#cboxClose:hover:after {
		background-color: var(--c-red-hex);
	}
}

/* ------------------------------------------------------------ *\
	Section
\* ------------------------------------------------------------ */

.section { width: 100%; position: relative; }
.section .section__head { text-align: center; width: 100%; }
.section .section__head:not(:last-child) { margin-bottom: clamp(24px, 3vw, 40px); }
.section .section__head h6 { font-size: clamp(16px, 2vw, 20px); text-transform: uppercase; font-family: var(--ff-montserrat); font-weight: 700; color: var(--c-charcoal); margin-bottom: 0; }
.section .section__head h2 { font-size: clamp(28px, 3vw, 36px); color: var(--c-red-hex); font-family: var(--ff-play-fair); font-weight: 400; font-style: italic; }
.section .section__head > *:last-child { margin-bottom: 0; }

.section .section__cols { display: grid; gap: 24px; grid-template-columns: 1fr; width: 100%; }
.section .section__cols[data-cols="4"] { grid-template-columns: 1fr 1fr 1fr 1fr;}
.section .section__cols[data-cols="3"] { grid-template-columns: 1fr 1fr 1fr;}
.section .section__cols[data-cols="2"] { grid-template-columns: 1fr 1fr;}

.section .section__cols .tile-ico-text-centered { min-height: 100%; }

@media (max-width: 1200px) {
	.section .section__cols[data-cols="4"] { grid-template-columns: 1fr 1fr 1fr; }
}

@media (max-width: 1024px) {
	.section .section__cols[data-cols="4"],
	.section .section__cols[data-cols="3"] { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 767px) {
	.section .section__cols[data-cols="4"],
	.section .section__cols[data-cols="3"],
	.section .section__cols[data-cols="2"] { grid-template-columns: 1fr; }
}

/* ------------------------------------------------------------ *\
	Section--gallery
\* ------------------------------------------------------------ */

.section--gallery { position: relative; overflow: hidden; }
.section--gallery .section__head:not(:last-child) { margin-bottom: clamp(32px, 4vw, 60px); }
.section--gallery .section__head h2 { font-size: clamp(32px, 4vw, 46px); }
.section--gallery .section__body { position: relative; }
.section--gallery .section__body.background-white-gray:before { left: -900px; right: -900px; bottom: -300px; }

.section--gallery-has-half-gray + section.section--gallery.background-light-gray { padding-top: 0; }

@media (max-width: 767px) {
	.section--grid .section__head h2 { line-height: 1.428; }
}

/* ------------------------------------------------------------ *\
	Block Gallery
\* ------------------------------------------------------------ */

.block-gallery { width: 100%; background-color: white; padding: clamp(24px, 3vw, 32px); box-shadow: 0 0 24px rgba(0, 0, 0, .12); display: flex; align-items: center; }
.block-gallery__content { width: 430px; padding: clamp(24px, 2vw, 28px); padding-right: clamp(24px, 4vw, 60px); display: flex; flex-direction: column; justify-content: center; gap: clamp(24px, 4vw, 48px); }
.block-gallery__content-entry h3 { font-family: var(--ff-play-fair); font-weight: 400; color: var(--c-red-hex); font-style: italic; margin-bottom: clamp(16px, 2vw, 24px); font-size: clamp(28px, 3vw, 36px); }
.block-gallery__content-entry p { margin-bottom: clamp(10px, 2vw, 17px); font-size: clamp(16px, 2vw, 18px); }
.block-gallery__content-entry > *:last-child { margin-bottom: 0; }
.block-gallery__images { display: grid; gap: clamp(8px, 2vw, 16px); grid-template-columns: repeat(3, 1fr); width: calc(100% - 430px); }
.block-gallery__images a { display: block; text-decoration: none; width: 100%; font-size: 0; line-height: 0; aspect-ratio: 1/0.8; position: relative; overflow: hidden; z-index: 10; }
.block-gallery__images a[data-title]:before { content: attr(data-title); position: absolute; left: 0; bottom: 0; z-index: 20; font-size: clamp(14px, 2vw, 18px); font-weight: 700; padding-inline: clamp(12px, 2vw, 20px); padding-block: clamp(4px, 2vw, 8px); background-color: rgba(255,255,255,0.8); color: var(--c-charcoal); line-height: 1.57; min-width: clamp(67px, 7vw, 95px); text-align: center; }
.block-gallery__images img { position: absolute; left: 0; top: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform var(--theme-transition-duration); }
.block-gallery__images--1of2 { grid-template-columns: repeat(2, 1fr); }
.block-gallery__images--1of2 a { aspect-ratio: 1/1.112; }

@media (hover) and (pointer: fine) {
	.block-gallery__images a:hover img {
		transform: scale(1.1);
	}
}

@media (max-width: 985px) {
	.block-gallery { flex-direction: column-reverse; padding: 0; }
	.block-gallery__content { width: 100%; padding-right: clamp(24px, 2vw, 28px); }
	.block-gallery__images { width: 100%; }
}

@media (max-width: 767px) {
	.block-gallery__images { grid-template-columns: repeat(2, 1fr); }
	.block-gallery__images a { aspect-ratio: 1/0.72; }
	.block-gallery__content-action a.btn-alt { display: block; width: 100%; max-width: 100%; min-width: 0; }
}

	/*
		-- Reverse
	*/

.block-gallery--reverse { flex-direction: row-reverse; }
.block-gallery--reverse .block-gallery__content { padding-right: clamp(24px, 2vw, 28px); padding-left: clamp(24px, 4vw, 60px); }

@media (max-width: 985px) {
	.block-gallery--reverse { flex-direction: column-reverse; }
}

/* ------------------------------------------------------------ *\
	Section Articles
\* ------------------------------------------------------------ */

.section-articles { width: 100%; position: relative; padding-top: clamp(45px, 5vw, 60px); }
.section-articles.background-white.padding-block-normal { padding-top: clamp(45px, 6vw, 80px); }
.section-articles.background-light-yellow { padding-top: clamp(45px, 6vw, 80px); }
.section-articles .shell { display: flex; flex-wrap: wrap; gap: clamp(24px, 3vw, 40px); }
.section-articles__title { margin-right: auto; order: 1; width: auto; }
.section-articles__title h2 { font-size: clamp(24px, 3vw, 32px); font-weight: 600; font-family: var(--ff-montserrat); margin-bottom: 0; }
.section-articles__title h6 { font-size: 18px; font-weight: 700; }
.section-articles__title h6:last-child { position: relative; margin-bottom: -12px; }
.section-articles__head { text-align: center; width: 100%; }
.section-articles__head h2 { font-size: clamp(28px, 3vw, 36px); color: var(--c-red-hex); font-family: var(--ff-play-fair); font-weight: 400; font-style: italic; }
.section-articles__head > *:last-child { margin-bottom: 0; }
.section-articles__action { margin-left: auto; order: 2; width: auto; text-align: right; display: flex; flex-direction: column; gap: 10px; align-items: flex-end; justify-content: flex-end; padding-block: 8px; }
.section-articles__grid { width: 100%; order: 3; display: grid; gap: clamp(40px, 6vw, 80px); }
.section-articles__grid--type-left-large-article { grid-template-columns: calc(50% - 134px) 1fr; }
.section-articles__grid--type-articles { grid-template-columns: 1fr; }
.section-articles__grid--type-callout { grid-template-columns: 1fr calc(50% - 174px); gap: clamp(40px, 8vw, 120px); }
.section-articles__col { display: flex; justify-content: flex-start; }
.section-articles__col--1of1 { flex-direction: column; gap: clamp(32px, 3vw, 40px); }
.section-articles__col--1of1 > * { width: 100%; }
.section-articles__col--1of2 { flex-wrap: wrap; gap: clamp(32px, 3vw, 40px); }
.section-articles__col--1of2 > * { width: calc(50% - (clamp(32px, 3vw, 40px) / 2)) !important; }
.section-articles__col--1of4 { flex-wrap: wrap; gap: clamp(40px, 4vw, 60px) 25px; }
.section-articles__col--1of4 > * { width: calc(25% - (25px / 1.33)) !important; }
.section-articles__foot { order: 10; text-align: center; width: 100%; display: flex; justify-content: center; padding-top: clamp(16px, 2vw, 20px); }
.section-articles + section.section-cta.background-light-gray { margin-top: 0; }
.section-articles.background-white + .section-articles.background-white { padding-top: 27px; }
.section-articles.background-white + .section-articles.background-white:before { content: ' '; display: block; height: 1px; width: 100%; max-width: 1440px; background-color: #E0E0E0; margin-inline: auto; position: relative; }
.section-articles.background-white + .section-articles.background-white:before { top: calc(32px - clamp(60px, 7vw, 96px)); }
.section-articles.background-white[data-padding-block="xsmall"] + section.section-separator.background-white { padding-top: 20px; }

.section-articles--action-on-bottom .section-articles__action { order: 4; padding: 0; align-items: flex-start; justify-content: flex-start; text-align: left; width: 100%; margin: 0; }
.section-articles--action-on-bottom.background-light-yellow.padding-block-normal { padding-bottom: clamp(40px, 6vw, 82px); }

@media (max-width: 1512px) {
	.section-articles.background-white + .section-articles.background-white:before { margin-inline: 36px; max-width: none; width: auto; }
}

@media (max-width: 1200px) {
	.section-articles__grid--type-callout { grid-template-columns: 1fr calc(50% - 120px); gap: clamp(40px, 6vw, 80px); }
}

@media (max-width: 1024px) {
	.section-articles.background-white + section.section-cta.background-light-gray { margin-top: 73px; position: relative; }
	.section-articles.background-white + section.section-cta.background-light-gray:before { content: ' '; position: absolute; left: 0; right: 0; top: -73px; height: 73px; background-color: white; }

	.section-articles__col--1of4 { flex-wrap: wrap; gap: clamp(32px, 3vw, 40px); }
	.section-articles__col--1of4 > * { width: calc(50% - (clamp(32px, 3vw, 40px) / 2)) !important; }
}

@media (max-width: 985px) {
	.section-articles__grid--type-callout,
	.section-articles__grid--type-left-large-article { grid-template-columns: 1fr; }
	.section-articles__action { order: 4; align-items: flex-start; justify-content: flex-start; text-align: left; width: 100%; margin: 0; }
	.section-articles__title h6:last-child { margin-bottom: 0; }
}

@media (max-width: 767px) {
	.section-articles__action { padding-block: 18px 0; }
	.section-articles__head { text-align: left; }
	.section-articles__col--1of4 { gap: 32px; }
	.section-articles__col--1of4 > *,
	.section-articles__col--1of2 > * { width: 100% !important; }
	.section-articles.background-white + .section-articles.background-white { padding-top: 38px; }
	.section-articles.background-white + .section-articles.background-white:before { margin-inline: 16px; top: calc(12px - clamp(60px, 7vw, 96px)); }
}

/* ------------------------------------------------------------ *\
	Ico Arrow
\* ------------------------------------------------------------ */

.ico-arrow { display: inline-block; position: relative; width: 12px; height: 7px; }
.ico-arrow:before { content: ' '; display: block; background-image: url('../images/ico-arrow.svg'); background-repeat: no-repeat; background-size: contain; background-position: center; transition: transform var(--theme-transition-duration); width: inherit; height: inherit; }

	/*
		-- Right
	*/

.ico-arrow--right:before { transform: rotate(180deg); }

/* ------------------------------------------------------------ *\
	Link
\* ------------------------------------------------------------ */

.link { font-size: 0; line-height: 0; display: inline-flex; gap: 8px; align-items: center; color: var(--c-red-hex); }
.link > span { font-size: 16px; line-height: 1; font-weight: 600; }
.link > i { transition: transform var(--theme-transition-duration); }

@media (hover) and (pointer: fine) {
	.link:hover { text-underline-offset: 2px; }
	.link:hover > i {
		transform: translateX(5px);
	}
}

/* ------------------------------------------------------------ *\
	Article Main
\* ------------------------------------------------------------ */

.article-main { width: 100%; position: relative; overflow: hidden; display: flex; flex-direction: column; }
.article-main > a { position: absolute; left: 0; right: 0; top: 0; bottom: 0; z-index: 10; font-size: 0; line-height: 0; text-decoration: none; }
.article-main__image { width: 100%; position: relative; overflow: hidden; aspect-ratio: 1/0.564; }
.article-main__image img { position: absolute; left: 0; top: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform var(--theme-transition-duration); }

.article-main__body { width: 100%; }
.article-main__body > * { max-width: 506px; }
.article-main__body h4 { font-size: clamp(18px, 2vw, 24px); line-height: 1.25; font-weight: 700; color: var(--c-charcoal); margin-bottom: 8px; font-family: var(--ff-nunito-sans); transition: color var(--theme-transition-duration); }
.article-main__body h6 { color: var(--c-red-hex); font-size: 14px; font-weight: 700; margin-bottom: 11px; }
.article-main__body h6:first-child { margin-top: 4px; }
.article-main__body p { font-size: 16px; line-height: 1.62; color: var(--c-charcoal); }
.article-main__body > *:last-child { margin-bottom: 0; }

.article-main__body-categories { position: absolute; right: 12px; top: 12px; z-index: 10; display: flex; justify-content: flex-end; gap: 8px; }
.article-main__body-categories > span { display: inline-block; padding: clamp(1px, 1vw, 2px) clamp(8px, 1vw, 12px); font-size: 14px; background-color: var(--c-charcoal); border-radius: 30px; color: white; font-weight: 700; }

.article-main__action { width: 100%; background-color: var(--c-darkred-hex); color: white; position: relative; overflow: hidden; padding-block: 40px; padding-inline: clamp(24px, 3vw, 40px); display: flex; flex-direction: column; gap: 16px; min-height: 100%; justify-content: center; }
.article-main__action-background { position: absolute; left: 0; top: 0; right: 0; bottom: 0; opacity: 0.4; }
.article-main__action-background img { position: absolute; left: 0; top: 0; width: 100%; height: calc(100% - 50px); object-fit: cover; object-position: center; }
.article-main__action-background:after { content: ' '; position: absolute; left: 0; right: 0; bottom: 50px; top: 0; background: linear-gradient(to bottom, rgba(153,28,31,0.5) 0%,rgba(153,28,31,1) 100%); }
.article-main__action-background ~ * { position: relative; z-index: 10; }
.article-main__action-icon i { display: flex; width: 48px; height: 48px; border-radius: 50%; background-color: white; align-items: center; justify-content: center; }
.article-main__action-icon svg { display: block; width: 20px; height: auto; }
.article-main__action-content p { font-size: 16px; line-height: 1.62; }
.article-main__action-button a.btn-alt { display: block; width: 100%; }

.article-main--large { gap: clamp(16px, 2vw, 24px); }

.article-main--medium { gap: 16px; }
.article-main--medium .article-main__body h4 { font-size: clamp(16px, 2vw, 18px); line-height: 1.37; }
.article-main--medium .article-main__body > * { max-width: 327px; }

.article-main--medium-alt { gap: 16px; }
.article-main--medium-alt .article-main__body h4 { font-size: clamp(16px, 2vw, 18px); line-height: 1.37; }
.article-main--medium-alt .article-main__body > * { max-width: 327px; }

@media (hover) and (pointer: fine) {
	.article-main > a:hover ~ .article-main__image img {
		transform: scale(1.1);
	}

	.article-main > a:hover ~ .article-main__body h4 {
		color: var(--c-red-hex);
	}
}

@media (max-width: 767px) {
	.article-main__body-categories { right: auto; left: 12px; }
	.article-main__body-categories > span { line-height: 1.57; padding-block: 0; }
	.article-main__body p { overflow: hidden; display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 3; }
	.article-main__body h6 { margin-bottom: 6px; }
	.article-main__body h6:first-child { margin-top: 0; }

	.article-main--medium { flex-direction: row; align-items: flex-start; }
	.article-main--medium .article-main__image { width: 90px; max-width: 90px; min-width: 90px; aspect-ratio: 1/0.667; }
	.article-main--medium .article-main__image + .article-main__body { width: calc(100% - 90px); }
	.article-main--medium .article-main__body > * { max-width: 100%; }
	.article-main--medium .article-main__body-categories { position: relative; left: 0; top: 0; justify-content: flex-start; margin-bottom: 8px; }
	.article-main--medium .article-main__body-categories > span { font-size: 12px; }

	.article-main--medium:not(:first-child) .article-main__action { margin-top: 5px; }

	.article-main--medium-alt { gap: 23px; }
	.article-main--medium-alt .article-main__body h6 { font-size: 16px; margin-bottom: 11px; }
}

/* ------------------------------------------------------------ *\
	Block Callout
\* ------------------------------------------------------------ */

.block-callout { width: 100%; min-height: 100%; display: flex; flex-direction: column; justify-content: center; padding-inline: clamp(24px, 6vw, 80px); padding-block: clamp(40px, 6vw, 80px); background-color: var(--c-darkred-hex); color: white; }
.block-callout { gap: clamp(24px, 3vw, 40px); }
.block-callout__actions { display: flex; flex-direction: column; gap: 16px; align-items: flex-start; }
.block-callout__content h4 { font-family: var(--ff-montserrat); font-weight: 600; font-size: 24px; margin-bottom: 16px; line-height: 1.3; }
.block-callout__content p { font-size: clamp(16px, 2vw, 18px); line-height: 1.66; }

@media (max-width: 767px) {
	.block-callout__actions a.btn-alt { font-size: 14px; letter-spacing: 2px; padding: 11px 16px; }
	.block-callout__content p { line-height: 1.625; }
}

/* ------------------------------------------------------------ *\
	Section Topics
\* ------------------------------------------------------------ */

.section-topics { width: 100%; position: relative; overflow: hidden; }
.section-topics__head { text-align: center; margin-bottom: clamp(32px, 3vw, 40px); }
.section-topics__head h2 { font-size: clamp(24px, 3vw, 32px); font-family: var(--ff-montserrat); font-weight: 600; line-height: 1.3; margin-bottom: 0; }
.section-topics__grid { display: flex; gap: clamp(12px, 2vw, 24px); width: 100%; max-width: 1320px; margin-inline: auto; position: relative; overflow: hidden; overflow-x: auto; -webkit-overflow-scrolling: touch; }
.section-topics__grid > * { flex-grow: 1; min-width: clamp(164px, 14vw, 200px); }
.section-topics__grid a { display: flex; flex-direction: column; min-height: 100%; width: 100%; background-color: white; border-radius: 4px; position: relative; overflow: hidden; z-index: 10; color: var(--c-charcoal); }
.section-topics__grid img { display: block; width: 100%; height: clamp(131px, 11vw, 160px); object-fit: cover; object-position: center; }
.section-topics__grid span { padding: 16px; text-align: center; font-size: 16px; line-height: 1.37; font-weight: 700; display: flex; align-items: center; justify-content: center; min-height: 80px; margin-block: auto; }

@media (max-width: 1200px) {
	.section-topics .shell { padding-right: 0; padding-left: 0; }
	.section-topics__grid { padding-left: 32px; }
}

@media (max-width: 767px) {
	.section-topics__grid { padding-left: 16px; }
}

/* ------------------------------------------------------------ *\
	Section List Categories
\* ------------------------------------------------------------ */

.section-list-categories { padding-block: clamp(32px, 4vw, 60px); }
.section-list-categories .shell { display: flex; flex-direction: column; gap: clamp(32px, 4vw, 60px); }
.section-list-categories__head { text-align: center; }
.section-list-categories__head h1 { color: var(--c-red-hex); font-size: clamp(32px, 4vw, 46px); font-family: var(--ff-play-fair); font-weight: 400; font-style: italic; margin-bottom: 16px; line-height: 1.17; }
.section-list-categories__head p { max-width: 667px; margin-inline: auto; font-size: 16px; line-height: 1.62; }
.section-list-categories__head > *:last-child { margin-bottom: 0; }

@media (max-width: 767px) {
	.section-list-categories__head h1 { line-height: 1.375; }
}

/* ------------------------------------------------------------ *\
	Nav Categories
\* ------------------------------------------------------------ */

.nav-categories { width: 100%; position: relative; }
.nav-categories:before { content: ' '; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background-color: #e0e0e0; }
.nav-categories > ul { display: flex; gap: 16px; justify-content: center; }
.nav-categories > ul > li { font-size: 16px; line-height: 1.62; font-weight: 700; }
.nav-categories > ul > li > a { color: var(--c-charcoal); display: block; padding: 4px 8px 7px 8px; position: relative; overflow: hidden; }
.nav-categories > ul > li > a:before { content: ' '; position: absolute; left: 0; right: 0; bottom: 0; height: 3px; opacity: 0; background-color: var(--c-red-hex); }
.nav-categories > ul > li.current-cat > a { pointer-events: none; }
.nav-categories > ul > li.current-cat > a:before { opacity: 1; }

@media (hover) and (pointer: fine) {
	.nav-categories > ul > li > a:hover { color: var(--c-red-hex); text-decoration: none; }
}

@media (max-width: 1460px) {
	.nav-categories { width: auto; margin-inline: -36px; overflow: hidden; overflow-x: auto; -webkit-overflow-scrolling: touch; }
	.nav-categories > ul { justify-content: flex-start; padding-inline: 36px; }
	.nav-categories > ul > li > a { white-space: nowrap; }
}

@media (max-width: 767px) {
	.nav-categories { margin-inline: -16px; }
	.nav-categories > ul { padding-inline: 16px; }
}

/* ------------------------------------------------------------ *\
	Section List Categories
\* ------------------------------------------------------------ */

.section-separator { padding-block: clamp(40px, 6vw, 80px); pointer-events: none; font-size: 0; line-height: 0; text-indent: -4000px; }
.section-separator > *:before { content: ' '; display: block; width: 100%; height: 1px; background-color: #e0e0e0; }

/* ------------------------------------------------------------ *\
	Section Entry
\* ------------------------------------------------------------ */

.section-entry { padding-block: clamp(60px, 6vw, 96px); }
.section-entry__body { width: 100%; }
.section-entry__body h2 { margin-bottom: 16px; font-weight: 600; font-family: var(--ff-montserrat); font-size: clamp(28px, 3vw, 32px); line-height: 1.3; }
.section-entry__body h3 { margin-bottom: 16px; font-weight: 600; font-family: var(--ff-montserrat); font-size: 24px; line-height: 1.3; }
.section-entry__body h4 { margin-bottom: 16px; font-weight: 600; font-family: var(--ff-montserrat); font-size: 18px; line-height: 1.3; }
.section-entry__body h1:not(:first-child),
.section-entry__body h2:not(:first-child),
.section-entry__body h3:not(:first-child),
.section-entry__body h4:not(:first-child),
.section-entry__body h5:not(:first-child),
.section-entry__body h6:not(:first-child) { margin-top: 24px; }
.section-entry__body p,
.section-entry__body ul,
.section-entry__body ol { font-size: 16px; line-height: 1.62; margin-bottom: 16px; }
.section-entry__body ul:not([class]),
.section-entry__body ol:not([class]) { margin-left: 22px; }
.section-entry__body ul:not([class]) li:not(:last-child),
.section-entry__body ol:not([class]) li:not(:last-child) { margin-bottom: 10px; }
.section-entry__body ul:not([class]) { list-style: disc; }
.section-entry__body ol:not([class]) { list-style: decimal; }
.section-entry__body p a:not([class]) { text-decoration: underline; }
.section-entry__body > *:last-child { margin-bottom: 0; }

@media (hover) and (pointer: fine) {
	.section-entry__body p a:not([class]):hover { text-decoration: none; }
}

/* ------------------------------------------------------------ *\
	List Guides
\* ------------------------------------------------------------ */

.section-list-guides { width: 100%; padding-block: clamp(32px, 4vw, 60px); }
.section-list-guides .shell { display: flex; flex-direction: column; gap: clamp(16px, 2vw, 28px); }
.section-list-guides__head h6 { font-size: 18px; font-weight: 700; }
.section-list-guides__head > *:last-child { margin-bottom: 0; }
.section-list-guides__head ~ .section-list-guides__head { padding-top: 20px; }
.section-list-guides__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2vw, 24px); }
.section-list-guides__grid > .article-guide { min-height: 0; }

@media (max-width: 1024px) {
	.section-list-guides__grid { grid-template-columns: repeat(2, 1fr); }
}

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

/* ------------------------------------------------------------ *\
	Article Guide
\* ------------------------------------------------------------ */

.article-guide { width: 100%; min-height: 100%; background-color: white; display: flex; align-items: center; gap: 16px; padding: 16px; border-radius: 4px; box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.12); position: relative; overflow: hidden; }
.article-guide > a { position: absolute; left: 0; top: 0; right: 0; bottom: 0; font-size: 0; line-height: 0; text-indent: -4000px; z-index: 10; }
.article-guide__image { width: clamp(90px, 7vw, 100px); min-width: clamp(90px, 7vw, 100px); position: relative; aspect-ratio: 1/1; }
.article-guide__image img { display: block; position: absolute; left: 0; top: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.article-guide__body { width: 100%; }
.article-guide__body h6 { transition: color var(--theme-transition-duration); color: var(--c-red-hex); font-size: 14px; line-height: 1.57; font-weight: 700; margin-bottom: clamp(3px, 1vw, 8px); }
.article-guide__body p { font-size: 16px; line-height: 1.37; font-weight: 700; }
.article-guide__body > *:last-child { margin-bottom: 0; }

@media (hover) and (pointer: fine) {
	.article-guide > a:hover ~ .article-guide__body h6 { color: var(--c-darkred-hex); }
}

/* ------------------------------------------------------------ *\
	Section List Services
\* ------------------------------------------------------------ */

.section-list-services { width: 100%; position: relative; padding-block: 60px; }
.section-list-services .shell { display: grid; gap: clamp(24px, 4vw, 55px); grid-template-columns: repeat(3, auto); }
.section-list-services__col { display: flex; align-items: center; gap: 16px; }
.section-list-services__image { min-width: 48px; max-width: 48px; border-radius: 50%; height: 48px; background-color: #fbe9e9; display: flex; align-items: center; justify-content: center; }
.section-list-services__image img { display: block; width: 24px; height: auto; }
.section-list-services__content { width: 100%; }
.section-list-services__content h6 { font-size: 18px; line-height: 1.66; font-weight: 700; margin-bottom: 0; }
.section-list-services__content p { font-size: 16px; line-height: 1.62; }
.section-list-services__content p a { color: var(--c-red-hex); text-decoration: underline; }
.section-list-services__content > *:last-child { margin-bottom: 0; }

@media (hover) and (pointer: fine) {
	.section-list-services__content p a:hover { text-decoration: none; }
}

@media (max-width: 985px) {
	.section-list-services .shell { grid-template-columns: repeat(2, auto); }
}

@media (max-width: 767px) {
	.section-list-services .shell { grid-template-columns: repeat(1, auto); }
}

/* ------------------------------------------------------------ *\
	Section Contacts
\* ------------------------------------------------------------ */

.section-contacts { width: 100%; position: relative; z-index: 3; }
.section-contacts .form-steps { padding-inline: clamp(16px, 3vw, 40px); padding-block: 40px; background: white; box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.12); }
.section-contacts .form-steps .form__tabs { width: 100%; }
.section-contacts .shell { display: flex; }
.section-contacts__form:not(:last-child) { width: calc(100% - clamp(280px, 26vw, 388px)); padding-right: clamp(40px, 7vw, 100px); }
.section-contacts__aside { width: clamp(280px, 26vw, 388px); }
.section-contacts.background-white + section.section-articles.background-light-gray { padding-block: clamp(63px, 6vw, 80px) clamp(63px, 6vw, 80px); }

@media (max-width: 985px) {
	.section-contacts .shell { flex-direction: column; gap: 40px; }
	.section-contacts__form:not(:last-child) { width: 100%; padding-right: 0; }
	.section-contacts__aside { width: 100%; }
}

/* ------------------------------------------------------------ *\
	Block Widget
\* ------------------------------------------------------------ */

.block-widget { width: 100%; display: flex; flex-direction: column; gap: 8px; }
.block-widget__title h6 { font-size: 20px; line-height: 1.5; font-weight: 700; text-transform: uppercase; margin-bottom: 0; }
.block-widget__title h2 { font-size: clamp(28px, 3vw, 36px); color: var(--c-red-hex); font-style: italic; font-weight: 400; font-family: var(--ff-play-fair); }
.block-widget__content p { font-size: clamp(16px, 2vw, 18px); line-height: 1.62; }
.block-widget__article { border: 1px solid #ccc; background-color: white; display: flex; flex-direction: column; gap: 24px; }
.block-widget__article > * { width: 100%; }
.block-widget__article > *:last-child { padding-bottom: 24px; }
.block-widget__article-image { position: relative; overflow: hidden; min-height: 216px; }
.block-widget__article-image a { display: block; font-size: 0; line-height: 0; text-indent: -4000px; min-height: inherit; }
.block-widget__article-image img { position: absolute; left: 0; top: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.block-widget__article-content { padding-inline: 24px; }
.block-widget__article-content h6 { font-size: 18px; line-height: 1.66; font-weight: 700; margin-bottom: 8px; }
.block-widget__article-content h6 a { text-decoration: none; color: var(--c-charcoal); }
.block-widget__article-content p { font-size: 16px; line-height: 1.62; }
.block-widget__article-content > *:last-child { margin-bottom: 0; }
.block-widget__article-action { padding-inline: 24px; margin-top: -5px; }
.block-widget__article-action .link-arrow { font-size: 16px; }
.block-widget__article-action .link-arrow:before { top: 13px; }
.block-widget__article-action .link-arrow:after { top: 11px; }
.block-widget__article-image { margin: -1px -1px -1px 0; }

.block-widget__list { display: flex; flex-direction: column; gap: 24px; }
.block-widget__list-row { display: flex; align-items: center; gap: 16px; align-items: center; }
.block-widget__list-row h6 { font-size: 18px; line-height: 1.66; font-weight: 700; margin-bottom: 0; }
.block-widget__list-row p { font-size: 16px; line-height: 1.62; }
.block-widget__list-row p a { text-decoration: underline; }
.block-widget__list-row > i { min-width: 48px; width: 48px; height: 48px; border-radius: 50%; background-color: #fbe9e9; display: flex; align-items: center; justify-content: center; }
.block-widget__list-row > blockquote:not(:first-child) { width: calc(100% - 48px); }
.block-widget__list-row > blockquote > *:last-child { margin-bottom: 0; }

.block-widget__articles { display: flex; flex-direction: column; gap: 24px; }
.block-widget__articles blockquote { padding: 24px; background-color: white; box-shadow: 0px 6px 24px 0px rgba(0, 0, 0, 0.06); }
.block-widget__articles blockquote > i { display: block; width: 72px; height: 72px; background-color: #FBE9E9; border-radius: 50%; margin-bottom: 24px; display: flex; align-items: center; justify-content: center; }
.block-widget__articles blockquote > p { font-size: 16px; line-height: 1.62; margin-bottom: 16px; }
.block-widget__articles blockquote > h6 { font-size: 18px; line-height: 1.66; font-weight: 700; margin-bottom: 8px; }
.block-widget__articles blockquote > *:last-child { margin-bottom: 0; }
.block-widget__articles blockquote .link-arrow { font-size: 16px; }

.block-widget--entry + .block-widget--entry { padding-top: 24px; margin-top: 24px; border-top: 1px solid var(--c-lightgray); }

.block-widget--article:not(:first-child) { margin-top: 48px; }

.block-widget--list-services:not(:last-child) { margin-bottom: clamp(60px, 5vw, 75px);}

@media (hover) and (pointer: fine) {
	.block-widget__article-content h6 a:hover { color: var(--c-red-hex); }
	.block-widget__list-row p a:hover { text-decoration: none; }
}

/* ------------------------------------------------------------ *\
	Section Contact List
\* ------------------------------------------------------------ */

.section-contact-list .shell { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.section-contact-list__col { background-color: white; padding: clamp(16px, 2vw, 23px); display: flex; align-items: center; min-height: 100%; gap: 16px; box-shadow: 0px 6px 24px 0px rgba(0, 0, 0, 0.06); width: 100%; }
.section-contact-list__col blockquote h6 { margin-bottom: 6px; font-size: clamp(16px, 2vw, 20px); margin-bottom: 0; text-transform: uppercase; color: var(--c-charcoal); font-weight: 700; font-family: var(--ff-montserrat); }
.section-contact-list__col blockquote p { font-size: clamp(16px, 2vw, 18px); word-break: break-word; }
.section-contact-list__col blockquote a { color: var(--c-red-hex); text-decoration: none; }
.section-contact-list__col > i { display: flex; align-items: center; justify-content: center; width: 48px; min-width: 48px; height: 48px; border-radius: 50%; background-color: #fbe9e9; }

@media (hover) and (pointer: fine) {
	.section-contact-list__col blockquote a:hover { text-decoration: underline; }
}

@media (max-width: 1024px) {
	.section-contact-list .shell { grid-template-columns: 1fr; }
	.section-contact-list__col blockquote h6 { margin-bottom: 4px; }
	.section-contact-list.background-gray-white:before { display: none; }
	.section-contact-list.background-gray-white + .padding-block-large { padding-top: clamp(60px, 7vw, 120px); }
}

/* ------------------------------------------------------------ *\
	Section Content Center
\* ------------------------------------------------------------ */

.section-content-center { text-align: center; }
.section-content-center h1 { color: var(--c-red-hex); font-style: italic; font-family: var(--ff-play-fair); font-weight: 400; margin-bottom: 16px; }
.section-content-center p { font-size: clamp(16px, 2vw, 18px); line-height: 1.66; max-width: 772px; margin-inline: auto; }
.section-content-center blockquote > *:last-child { margin-bottom: 0; }

/* ------------------------------------------------------------ *\
	Section Box
\* ------------------------------------------------------------ */

.section-box { width: 100%; }
.section-box__inner { padding-inline: clamp(24px, 4vw, 60px); padding-block: 40px; display: flex; align-items: center; gap: clamp(16px, 2vw, 24px); }
.section-box__inner > *:not(.section-box__icon) { flex-grow: 1; }
.section-box__icon { width: 72px; height: 72px; min-width: 72px; border-radius: 50%; background-color: white; display: flex; align-items: center; justify-content: center; }
.section-box__icon img { display: block; width: 37px; height: auto; }
.section-box__title { min-width: clamp(250px, 31vw, 455px); width: auto; }
.section-box__title h4 { font-size: 24px; line-height: 1.3; margin-bottom: 8px; font-family: var(--ff-montserrat); font-weight: 600; }
.section-box__title p { font-size: 16px; line-height: 1.62; font-weight: 700; }
.section-box__title > *:last-child { margin-bottom: 0; }
.section-box__title p { font-size: 16px; line-height: 1.62; font-weight: 700; }
.section-box__title + .section-box__content { padding-left: clamp(10px, 2vw, 28px); }
.section-box__content { width: 100%; }
.section-box__content p { font-size: 14px; line-height: 1.57; }

@media (max-width: 767px) {
	.section-box__inner { flex-direction: column; align-items: flex-start; }
	.section-box__title { min-width: 0; width: 100%; }
	.section-box__title h4 { margin-bottom: 16px; }
	.section-box__title + .section-box__content { padding-left: 0; }
}

/* ------------------------------------------------------------ *\
	Section Title
\* ------------------------------------------------------------ */

.section-title-alt { width: 100%; text-align: center; }
.section-title-alt h1 { color: var(--c-red-hex); font-size: clamp(32px, 4vw, 46px); font-style: italic; font-family: var(--ff-play-fair); font-weight: 400; }
.section-title-alt > * > *:last-child { margin-bottom: 0; }

/* ------------------------------------------------------------ *\
	Section Box Content And Media
\* ------------------------------------------------------------ */

.section-box-content-and-media { width: 100%; position: relative; }
.section-box-content-and-media__inner { width: 100%; box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.12); background-color: white; display: flex; min-height: 420px; }
.section-box-content-and-media__content { width: calc(50% + 12px); display: flex; flex-direction: column; gap: 16px; padding-inline: clamp(16px, 4vw, 60px); padding-block: clamp(40px, 6vw, 80px); margin-block: auto; }
.section-box-content-and-media__content-entry { width: 100%; }
.section-box-content-and-media__content-entry h6 { font-size: clamp(16px, 2vw, 20px); line-height: 1.37; text-transform: uppercase; font-weight: 700; font-family: var(--ff-montserrat); margin-bottom: 8px; }
.section-box-content-and-media__content-entry h2 { font-size: clamp(24px, 3vw, 32px); line-height: 1.3; margin-bottom: clamp(1px, 1vw, 15px); font-family: var(--ff-montserrat); font-weight: 600; color: var(--c-red-hex); }
.section-box-content-and-media__content-entry p { font-size: clamp(14px, 2vw, 16px); line-height: 1.62; margin-bottom: clamp(3px, 1vw, 14px); }
.section-box-content-and-media__content-entry p strong { font-weight: 700; }
.section-box-content-and-media__content-entry p strong + strong { display: inline-block; vertical-align: middle; padding: 1px 8px; color: var(--c-red-hex); background-color: #fbe9e9; border-radius: 4px; letter-spacing: 1px; }
.section-box-content-and-media__content-entry p strong:first-child:last-child { font-size: 16px; }
.section-box-content-and-media__content-entry > *:last-child { margin-bottom: 0; }
.section-box-content-and-media__content-actions { display: flex; flex-wrap: wrap; gap: 16px; width: 100%; padding-top: clamp(1px, 2vw, 23px); }
.section-box-content-and-media__content-actions a.btn-alt { min-width: 260px; }
.section-box-content-and-media__content-actions a.btn-alt:first-child:last-child { min-width: 0; }
.section-box-content-and-media__media { width: calc(50% - 12px); position: relative; font-size: 0; line-height: 0; pointer-events: none; }
.section-box-content-and-media__content-images { display: flex; align-items: center; gap: 8px; }
.section-box-content-and-media__content-images img { display: block; height: clamp(32px, 3vw, 40px); width: auto; }
.section-box-content-and-media .slider-images-alt { position: absolute; left: 0; right: 0; top: 0; bottom: 0; height: 100%; width: 100%; display: block; }
.section-box-content-and-media .slider-images-alt .slider__clip { position: absolute; left: 0; right: 0; top: 0; bottom: 0; }
.section-box-content-and-media .slider-images-alt .slider__pagination { bottom: clamp(12px, 1vw, 16px) !important; }
.section-box-content-and-media .slider-images-alt .slider__pagination .swiper-pagination-bullet { width: 8px; height: 8px; margin: 0 4px; }
.section-box-content-and-media.background-white-gray + section.section-box-content-and-media.background-gray,
.section-box-content-and-media.background-gray + section.section-box-content-and-media.background-gray,
.section-box-content-and-media.background-white + section.section-box-content-and-media.background-white { padding-top: clamp(40px, 4vw, 60px); }
.section-box-content-and-media--reverse .section-box-content-and-media__inner { flex-direction: row-reverse; }

@media (max-width: 767px) {
	.section-box-content-and-media--reverse .section-box-content-and-media__inner,
	.section-box-content-and-media__inner { flex-direction: column-reverse; }
	.section-box-content-and-media__content { width: 100%; }
	.section-box-content-and-media__media { width: 100%; aspect-ratio: 1/0.592; }
	.section-box-content-and-media__content-actions { flex-direction: column; }
	.section-box-content-and-media__content-actions a.btn-alt { min-width: 0; width: 100%; }
}

/* ------------------------------------------------------------ *\
	Cart Page
\* ------------------------------------------------------------ */

.block-quantity { display: flex; align-items: center; gap: 8px; }
.block-quantity > button { width: 16px; height: 16px; font-size: 0; line-height: 0; position: relative; border: 0; background: transparent; }
.block-quantity > button:before,
.block-quantity > button:after { content: ' '; position: absolute; width: 8px; height: 1px; background-color: var(--c-charcoal); left: 50%; top: 50%; margin-left: -4px; }
.block-quantity > button:last-child:before { transform: rotate(90deg); }
.block-quantity input { width: 33px !important; height: 30px; border: 1px solid #ccc; border-radius: 4px; background: white; font-size: 14px; line-height: 1.1; padding: 0; }
.block-quantity + button { position: absolute; left: -4000px; opacity: 0; }

.main-container--cart { background-color: white; }
.main-container--cart .main { padding-top: clamp(32px, 4vw, 53px); padding-bottom: clamp(60px, 6vw, 93px);}

body .cart { --aside: clamp(350px, 32vw, 464px); --right-offset: clamp(20px, 6vw, 80px); display: flex; flex-wrap: wrap; position: relative; align-items: flex-start; }
body .cart:after { display: none; }
body .cart .page-title { margin: 0; width: 100%; margin-bottom: 15px; }
body .cart .page-title h1 { padding-bottom: 0; border: 0; text-transform: capitalize; font-size: clamp(28px, 3vw, 32px); font-weight: 600; }
body .cart .totals .checkout-types li:nth-child(2) { margin-top: 40px; }

body .cart .cart-table th.col-img,
body .cart .cart-table th.col-edit,
body .cart .cart-table td.col-edit { display: none; }
body .cart .cart-table td:first-child,
body .cart .cart-table th:first-child,
body .cart .cart-table th.col-img + * { padding-left: 0; }
body .cart .cart-table td:last-child,
body .cart .cart-table th:last-child { padding-right: 0; }
body .cart .cart-table th { font-size: 14px; font-family: var(--ff-nunito-sans); font-weight: 700; line-height: 1.57; }
body .cart .cart-table .product-image { width: 140px; height: 140px; position: relative; overflow: hidden; }
body .cart .cart-table .product-image img { position: absolute; left: 0; top: 0; width: 100%; height: 100%; object-fit: contain; object-position: center; }
body .cart .cart-table .product-name { font-size: 16px; line-height: 1.62; margin-bottom: 4px; font-family: var(--ff-nunito-sans); font-weight: 700; color: var(--c-charcoal); }
body .cart .cart-table .product-name ~ a { font-size: 14px; line-height: 1.57; text-decoration: underline; }
body .cart .cart-table .cartsku { font-size: 14px; line-height: 1.57; font-weight: 400; color: var(--c-charcoal); }
body .cart .cart-table input.qty { width: 33px !important; }
body .cart .cart-table tfoot td { border: 0; }
body .cart .data-table tr.even { background: transparent; }
body .cart .data-table tr td,
body .cart .data-table tr th { border-right: 0; }
body .cart .data-table .price { font-size: 14px; line-height: 1.57; color: var(--c-charcoal); font-weight: 400; }
body .cart .data-table .btn-remove { width: 19px; height: 19px; border-radius: 50%; border: 0; color: white; background-color: var(--c-red-hex); font-size: 0; line-height: 0; position: relative; margin: 6px 0; }
body .cart .data-table .btn-remove:before,
body .cart .data-table .btn-remove:after { content: ' '; position: absolute; left: 4px; right: 4px; top: 50%; height: 1px; background-color: white; transition: transform 0.4s; }
body .cart .data-table .btn-remove:before { transform: rotate(45deg); }
body .cart .data-table .btn-remove:after { transform: rotate(-45deg); }

body .cart .the-cart-form { width: calc(100% - var(--aside)); padding-right: var(--right-offset); padding-bottom: 60px; padding-top: 5px; }
body .cart .the-cart-form + * { width: var(--aside); position: static; margin: 0; }

body .cart .cart-collaterals { display: flex; flex-direction: column-reverse; justify-content: flex-end; background-color: white; padding: clamp(20px, 3vw, 40px); border: 1px solid #ccc; border-radius: 4px; }
body .cart .cart-collaterals:after { content: 'Order Summary'; display: block; width: 100%; font-size: clamp(18px, 10vw, 22px); font-weight: 700; color: var(--c-charcoal); padding-bottom: 24px; border-bottom: 1px solid #e0e0e0; height: auto; line-height: 1.36; }
body .cart .cart-collaterals > * { margin: 0; width: 100%; }
body .cart .cart-collaterals > .cart-right-column { margin-top: 24px; }
body .cart .cart-collaterals .block_cart_below_table { position: absolute; left: -4000px; opacity: 0; visibility: hidden; }
body .cart .block_cart_below_table { margin-top: clamp(24px, 4vw, 60px); width: 100%; }
body .cart .block_cart_below_table > img { display: block; width: 100%; height: auto; }

body .cart .totals { background: transparent; }
body .cart .totals-inner { padding: 0; }

body .cart .affirm-as-low-as { text-align: center; max-width: 268px; margin-inline: auto; font-size: 14px; color: var(--c-charcoal); }
body .cart .affirm-as-low-as a { text-decoration: underline; color: var(--c-charcoal); }

body .cart .checkout-types { text-align: center; }
body .cart .checkout-types li:nth-child(3) { display: none; }
body .cart .checkout-types .button { background-color: var(--c-red-hex); color: white; width: 100%; font: none; display: flex; align-items: center; justify-content: center; border: 1px solid var(--c-red-hex); }
body .cart .checkout-types .button { border-radius: 4px; font-size: 16px; line-height: 1.1; text-transform: uppercase; font-weight: 600; letter-spacing: 2px; min-height: 54px; padding: 0 20px; }
body .cart .checkout-sub-types { text-align: center; font-size: 14px; line-height: 1.57; font-weight: 400; color: var(--c-charcoal); margin-bottom: 16px; }
body .cart .paypal-logo a { border: 0; display: flex; align-items: center; justify-content: center; gap: 4px; background-color: #ffc439; min-height: 54px; border-radius: 4px; }
body .cart .paypal-logo a img { position: absolute; left: -4000px; opacity: 0; visibility: hidden; }
body .cart .paypal-logo a:before { content: 'Check out with'; display: inline-block; color: var(--c-charcoal); font-size: 14px; line-height: 1.1; transition: color 0.4s; }
body .cart .paypal-logo a:after { content: ' '; background-image: url('../images/ico-paypal.svg'); width: 82px; height: 26px; background-size: contain; background-position: center; display: block; }

body .cart .cart-left-column { display: flex; flex-direction: column; }
body .cart .cart-left-column > *:not(.block_cart_below_table) { width: 100% !important; margin: 0; }
body .cart .cart-left-column > .grid12-6 { border-bottom: 1px solid #e0e0e0; }

body .cart #shopping-cart-totals-table td,
body .cart #shopping-cart-totals-table th { padding: 0; color: var(--c-charcoal); }
body .cart #shopping-cart-totals-table td:first-child { text-align: left !important; }
body .cart #shopping-cart-totals-table tbody td:first-child { font-size: 14px; line-height: 1.57; font-weight: 400; }
body .cart #shopping-cart-totals-table tfoot td:first-child { font-size: 18px; line-height: 1.66; font-weight: 700; }

body .cart .desktop-cart-buttons { display: flex; align-items: center; flex-wrap: wrap; gap: 32px; padding-top: 24px; border-top: 1px solid #E0E0E0; }
body .cart .desktop-cart-buttons > button { margin: 0; position: relative; }
body .cart .desktop-cart-buttons > button:first-child { margin-right: auto; background-color: var(--c-red-hex); color: white; font-size: 16px; line-height: 1.1; height: 54px; border-radius: 4px; display: flex; align-items: center; justify-content: center; letter-spacing: 2px; text-transform: uppercase; font-weight: 600; border: 1px solid var(--c-red-hex); }
body .cart .desktop-cart-buttons > button:first-child ~ button { padding: 0; height: auto; background: transparent; color: var(--c-red-hex); text-transform: none; font-size: 16px; line-height: 1.1; font-weight: 400; text-decoration: underline; letter-spacing: 0; font-family: var(--ff-nunito-sans); }
body .cart .desktop-cart-buttons > button:first-child ~ button:not(:last-child):before { content: ' '; position: absolute; right: -16px; top: 0; bottom: 0; width: 1px; background-color: #E0E0E0; }
body .cart .desktop-cart-buttons > button:nth-child(4):before { display: none; }

body .cart .shipping > h2,
body .cart .discount > h2 { font-size: 16px; line-height: 1.62; font-weight: 700; color: var(--c-charcoal); padding-block: 24px; position: relative; text-transform: none; border: 0; margin: 0; cursor: pointer; }
body .cart .shipping > h2:before,
body .cart .discount > h2:before { content: ' '; position: absolute; right: 0; top: 50%; width: 10px; height: 10px; border-left: 1px solid var(--c-red-hex); border-top: 1px solid var(--c-red-hex); margin-top: -5px; transform: rotate(-135deg); transition: transform 0.4s;  }
body .cart .active .shipping > h2:before,
body .cart .active .discount > h2:before { transform: rotate(45deg); }

body .cart .shipping-form { opacity: 0; visibility: hidden; max-height: 0px; position: relative; overflow: hidden; width: 100%; transition: opacity 0.4s, visibility 0.4s, padding 0.4s; }
body .cart .shipping-form > form { width: 100%; position: relative; overflow: hidden; }
body .cart .shipping-form > form > p { display: none; }
body .cart .active .shipping-form { opacity: 1; visibility: visible; max-height: 9999px; padding-bottom: 24px; }

body .cart .discount-form { display: flex; opacity: 0; visibility: hidden; max-height: 0px; position: relative; overflow: hidden; width: 100%; transition: opacity 0.4s, visibility 0.4s, padding 0.4s; }
body .cart .discount-form > label { display: none; }
body .cart .discount-form > .input-box input { margin: 0; width: 100%; appearance: none; padding-inline: 16px 30px; height: 48px; border-radius: 4px; border: 1px solid #7a736d; background: white; font-size: 14px; line-height: 1.1; }
body .cart .discount-form > .input-box { width: calc(100% - 96px); padding-right: 12px; }
body .cart .discount-form > .buttons-set { width: 96px; margin: 0; }
body .cart .discount-form > .buttons-set:after { display: none; }
body .cart .discount-form > .buttons-set button.button { background: var(--c-red-hex); color: white; border-radius: 4px; height: 48px; padding: 0 20px; border: 1px solid var(--c-red-hex); margin: 0; width: 100%; min-width: 0; }
body .cart .discount-form > .buttons-set button.button:before { content: 'Apply'; display: block; font-size: 14px; line-height: 1.1; text-transform: uppercase; letter-spacing: 2px; font-family: var(--ff-nunito-sans); font-weight: 600; }
body .cart .discount-form > .buttons-set button.button span { display: none; }
body .cart .active .discount-form { opacity: 1; visibility: visible; max-height: 9999px; padding-bottom: 24px; }

body .cart .form-list { display: flex; flex-direction: column; gap: 24px; }
body .cart .form-list > * { margin: 0; }
body .cart .form-list label { display: block; font-size: 16px; font-weight: 600; margin-block: 0 9px; line-height: 1.5; color: var(--c-charcoal); font-family: var(--ff-nunito-sans); }
body .cart .form-list label[for="postcode"] + .input-box:before { display: none; }
body .cart .form-list label.required:after { color: var(--c-red-hex); }
body .cart .form-list .input-box { position: relative; }
body .cart .form-list .input-box select { cursor: pointer; }
body .cart .form-list .input-box select,
body .cart .form-list .input-box input { margin: 0; width: 100%; appearance: none; padding-inline: 16px 30px; height: 48px; border-radius: 4px; border: 1px solid #7a736d; background: white; font-size: 14px; line-height: 1.1; }
body .cart .form-list .input-box:before { content: ' '; width: 9px; height: 5px; background-image: url(../images/ico-select.svg); background-repeat: no-repeat; background-size: 9px 5px; position: absolute; right: 16px; top: 50%; transform: translateY(-50%); pointer-events: none; z-index: 2; }
body .cart .shipping .buttons-set { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
body .cart .shipping .buttons-set:after { display: none; }
body .cart .shipping .buttons-set button.button { background: var(--c-red-hex); color: white; font-size: 14px; line-height: 1.1; text-transform: uppercase; letter-spacing: 2px; border-radius: 4px; height: 48px; padding: 0 20px; font-family: var(--ff-nunito-sans); font-weight: 600; border: 1px solid var(--c-red-hex); margin: 0; }
body .cart > .block_cart_below_table { display: none; }
body .cart .block_cart_below_totals { display: flex; justify-content: center; }
body .cart .mobile-cart-buttons { display: none; }

@media (hover) and (pointer: fine) {
	body .cart .affirm-as-low-as a:hover,
	body .cart .desktop-cart-buttons > button:first-child ~ button:hover,
	body .cart .cart-table .product-name ~ a:hover {
		text-decoration: none;
	}
	body .cart .paypal-logo a:hover {
		background-color: var(--c-red-hex);
		text-decoration: none;
	}

	body .cart .paypal-logo a:hover:before {
		color: white;
	}

	body .cart .checkout-types .button:hover {
		background-color: transparent;
		color: var(--c-red-hex);
	}

	body .cart .data-table .btn-remove:hover:before {
		transform: rotate(-45deg);
	}

	body .cart .data-table .btn-remove:hover:after {
		transform: rotate(45deg);
	}

	body .cart .desktop-cart-buttons > button:hover:first-child,
	body .cart .shipping .buttons-set button.button:hover {
		background-color: transparent;
		color: var(--c-red-hex);
	}
}

@media (max-width: 985px) {
	body .cart { --aside: 100%; --right-offset: 0; flex-direction: column; }
	body .cart .the-cart-form { width: 100%; padding-top: 0; }
	body .cart .the-cart-form .block_cart_below_table { display: none; }
	body .cart > .block_cart_below_table { display: block; }
}

@media (max-width: 767px) {
	body .cart .page-title h1 { margin-bottom: 24px; }
	body .cart .the-cart-form { padding-bottom: 40px; }
	body .cart .cart-table .product-image { width: 80px; height: 80px; }
	body .cart .cart-table tbody tr { display: flex; flex-wrap: wrap; margin-bottom: 24px; padding-bottom: 24px; }
	body .cart .cart-table tbody td { width: 100%; }
	body .cart .cart-table tbody td:first-child { width: 80px; }
	body .cart .cart-table tbody td:first-child + * { width: calc(100% - 80px); padding-left: 16px; }
	body .cart .cart-table tbody td:first-child + * ~ * { display: flex; align-items: center; }
	body .cart .cart-table tbody td:first-child + * ~ * span + span,
	body .cart .cart-table tbody td:first-child + * ~ * span + .block-quantity { margin-left: auto; }
	body .cart .cart-table tfoot tr { border: 0 !important; margin: 0; }
	body .cart .cart-table .cell-label { font-size: 14px; }
	body .cart .cart-table .product-name ~ a { display: none; }
	body .cart .cart-table .col-edit,
	body .cart .cart-table .col-delete { order: 20; width: auto; }
	body .cart .cart-table .col-edit a { font-size: 14px; line-height: 1.1; text-decoration: underline; font-weight: 400; font-family: var(--ff-nunito-sans); }
	body .cart .desktop-cart-buttons { gap: 8px 16px; border-top: 0; padding-top: 0; }
	body .cart .desktop-cart-buttons > button:first-child { background: none; height: auto; color: var(--c-red-hex); font-size: 14px; line-height: 1.1; text-transform: none; letter-spacing: 0; font-weight: 400; display: block; margin: 0 0 10px 0; padding: 0 0 30px 0; border: 0; width: 100%; border-bottom: 1px solid #e0e0e0; }
	body .cart .desktop-cart-buttons > button:first-child span { text-decoration: underline; }
	body .cart .desktop-cart-buttons > button:first-child ~ button { font-size: 14px; }
	body .cart .desktop-cart-buttons > button:first-child ~ button:not(:last-child):before { right: -8px; }
	body .cart .data-table .btn-remove { width: auto; height: auto; border-radius: 0; color: var(--c-red-hex); background: none; margin: 0; }
	body .cart .data-table .btn-remove { font-size: 14px; line-height: 1.1; text-decoration: underline; border-left: 1px solid #ccc; padding-left: 10px; }
	body .cart .data-table .btn-remove:before,
	body .cart .data-table .btn-remove:after { display: none; }
	body .cart .totals .checkout-types li:nth-child(2) { margin-top: 25px; }
}

/* ------------------------------------------------------------ *\
	Checkout Page
\* ------------------------------------------------------------ */

.main-container--checkout { --aside: clamp(350px, 25vw, 464px); background-color: white; }
.main-container--checkout .main { padding-top: clamp(32px, 3vw, 53px); padding-bottom: clamp(60px, 5vw, 93px);}

.main-container--checkout .page-title { margin-bottom: clamp(32px, 3vw, 40px); }
.main-container--checkout .page-title h1 { padding-bottom: 0; border: 0; text-transform: capitalize; font-size: clamp(28px, 2vw, 32px); font-weight: 600; margin-bottom: 8px; }
.main-container--checkout .page-title .checkout-subtitle { font-size: 16px; line-height: 1.62; color: var(--c-charcoal); }
.main-container--checkout .page-title > *:last-child { margin-bottom: 0; }

.main-container--checkout .clearer { display: none; }
.main-container--checkout #firecheckout-form { display: flex; flex-wrap: wrap; }
.main-container--checkout #firecheckout-form .onecolumn { width: calc(100% - var(--aside)); padding-right: clamp(40px, 10vw, 80px); counter-reset: theStep; }
.main-container--checkout #firecheckout-form .onecolumn-aside { width: var(--aside); }

.main-container--checkout .firecheckout-set input[type="checkbox"]:checked,
.main-container--checkout .firecheckout-set input[type="radio"]:checked { border-color: var(--c-red-hex); box-shadow: inset 0 0 0 5px var(--c-red-hex) !important; }

.main-container--checkout .qty-wrapper .qty-less,
.main-container--checkout .qty-wrapper .qty-more { top: 50%; transform: translateY(-50%); }

.main-container--checkout #checkout-review { padding: 40px; border: 1px solid #ccc; border-radius: 4px; background-color: white; position: sticky; top: calc(var(--header-height) + 20px); margin-bottom: clamp(80px, 9vw, 171px); }
.main-container--checkout #checkout-review:after { content: ' '; position: absolute; left: 0; top: calc(100% + 16px); right: 0; height: clamp(80px, 9vw, 171px); background-image: url(../images/paypal-credit-option.jpg); background-repeat: no-repeat; background-size: contain; background-position: center; }
.main-container--checkout #checkout-review .block-title { margin-bottom: 24px; font-size: clamp(18px, 10vw, 22px); font-weight: 700; font-family: var(--ff-nunito-sans); color: var(--c-charcoal); }
.main-container--checkout #checkout-review .block-title:before { display: none; }

.main-container--checkout #agreements-wrapper { padding: 24px 0; border-top: 1px solid #e0e0e0; border-bottom: 1px solid #e0e0e0; }
.main-container--checkout #agreements-wrapper .checkout-agreements { padding: 0; }
.main-container--checkout #agreements-wrapper .checkout-agreements li { padding: 0; background: transparent; }
.main-container--checkout #agreements-wrapper .checkout-agreements p.agree { padding: 0; }
.main-container--checkout #agreements-wrapper .checkout-agreements p.agree label { padding-left: 24px; font-family: var(--ff-nunito-sans); font-weight: 400; }

.main-container--checkout #checkout-review-table-wrapper { position: relative; overflow: hidden; padding-top: 24px; }
.main-container--checkout #checkout-review-table-wrapper thead { display: none; }
.main-container--checkout #checkout-review-table-wrapper table,
.main-container--checkout #checkout-review-table-wrapper tbody,
.main-container--checkout #checkout-review-table-wrapper tfoot,
.main-container--checkout #checkout-review-table-wrapper tr,
.main-container--checkout #checkout-review-table-wrapper th,
.main-container--checkout #checkout-review-table-wrapper td { display: block; padding: 0; border: 0; }
.main-container--checkout #checkout-review-table-wrapper table { display: flex; flex-direction: column-reverse; }
.main-container--checkout #checkout-review-table-wrapper tbody { display: flex; flex-direction: column; }
.main-container--checkout #checkout-review-table-wrapper tbody tr { border-bottom: 1px solid #e0e0e0; padding-bottom: 24px; margin-bottom: 24px; display: flex; flex-direction: column; gap: 6px; }
.main-container--checkout #checkout-review-table-wrapper tfoot { display: flex; gap: 8px; flex-direction: column; width: 100%; }
.main-container--checkout #checkout-review-table-wrapper tbody td { display: flex; align-items: center; gap: 10px; }
.main-container--checkout #checkout-review-table-wrapper tbody td:nth-child(1) h3 { font-size: 14px; line-height: 1.57; }
.main-container--checkout #checkout-review-table-wrapper tbody td:nth-child(1) .collateral { padding: 0; }
.main-container--checkout #checkout-review-table-wrapper tbody td:nth-child(2):before { content: 'Unit Price:'; display: block; margin-right: auto; text-align: left; font-size: 14px; line-height: 1.57; font-weight: 700; }
.main-container--checkout #checkout-review-table-wrapper tbody td:nth-child(3):before { content: 'Qty:'; display: block; margin-right: auto; text-align: left; font-size: 14px; line-height: 1.57; font-weight: 700; }
.main-container--checkout #checkout-review-table-wrapper tbody td:nth-child(4):before { content: 'Subtotal:'; display: block; margin-right: auto; text-align: left; font-size: 14px; line-height: 1.57; font-weight: 700; }
.main-container--checkout #checkout-review-table-wrapper tfoot tr { display: flex; align-items: center; width: 100%; gap: 12px; }
.main-container--checkout #checkout-review-table-wrapper tfoot tr td { padding: 0; font-size: 14px; line-height: 1.57; }
.main-container--checkout #checkout-review-table-wrapper tfoot tr td:first-child { text-align: left !important; max-width: 250px; }
.main-container--checkout #checkout-review-table-wrapper tfoot tr td + td { margin-left: auto; }

.main-container--checkout #checkout-review-submit { padding: 0; margin-bottom: 0; margin-top: 24px; }
.main-container--checkout #checkout-review-submit .buttons-set { padding: 0; display: flex; flex-direction: column; }
.main-container--checkout #checkout-review-submit button.button { background-color: var(--c-red-hex); color: white; font-size: 16px; line-height: 1.1; text-transform: uppercase; letter-spacing: 2px; padding: 0 24px; border-radius: 4px; height: 54px; border: 1px solid var(--c-red-hex); font-family: var(--ff-nunito-sans); font-weight: 600; margin-top: 20px; }

.main-container--checkout #review-buttons-container { position: relative; }
.main-container--checkout #review-buttons-container > span:first-child { width: 100%; display: flex !important; justify-content: center; }
.main-container--checkout #review-buttons-container > span.please-wait { position: absolute; left: 20px; right: 20px; bottom: -27px; text-align: center; font-size: 14px; }
.main-container--checkout #scrolling-spacer { display: none; }

.main-container--checkout .step:not(.step-shipping-payment-method) { border: 1px solid #ccc; border-radius: 4px; padding: clamp(20px, 3vw, 40px); }
.main-container--checkout .step .step-mask { display: none !important; }
.main-container--checkout .step .block-title { position: relative; display: flex; align-items: baseline; gap: 12px; flex-direction: row-reverse; justify-content: flex-end; counter-increment: theStep; padding: 0 !important; }
.main-container--checkout .step .block-title:before { display: none; }
.main-container--checkout .step .block-title:after { content: counter(theStep); min-width: 28px; width: 28px; height: 28px; border-radius: 50%; background-color: var(--c-charcoal); color: white; display: flex; align-items: center; justify-content: center; font-size: 14px; line-height: 1.1; font-family: var(--ff-nunito-sans); font-weight: 700; }
.main-container--checkout .step .block-title span { display: block; font-size: 22px; line-height: 1.36; font-weight: 700; color: var(--c-charcoal); white-space: normal; }

.main-container--checkout .step label { display: block; font-size: 16px; line-height: 1.5; font-weight: 600; color: var(--c-charcoal); margin-bottom: 8px; font-family: var(--ff-nunito-sans); }
.main-container--checkout .step label.required::after { color: var(--c-red-hex); }
.main-container--checkout .step .input-box > input:not([type="radio"], [type="checkbox"]),
.main-container--checkout .step .input-box > select { width: 100%; height: 48px; padding: 0 16px; border: 1px solid #d4d4d4; border-radius: 4px; font-size: 14px; line-height: 1.1; background: white; }
.main-container--checkout .step .input-box > select { cursor: pointer; }
.main-container--checkout .step .form-list .control label { padding-left: 26px; font-size: 16px; line-height: 1.62; font-weight: 400; color: var(--c-charcoal); }
.main-container--checkout .step .form-list .control input[type="checkbox"],
.main-container--checkout .step .form-list .control input[type="radio"] { top: 3px; }

.main-container--checkout .step .step-buttons-set { display: flex; flex-wrap: wrap; justify-content: flex-start; gap: 12px; }
.main-container--checkout .step .step-buttons-set button { height: 54px; padding: 0 24px; font-size: 16px; line-height: 1.1; text-transform: uppercase; letter-spacing: 2px; border-radius: 4px; border: 1px solid var(--c-red-hex); background-color: var(--c-red-hex); font-family: var(--ff-nunito-sans); font-weight: 600; }

.main-container--checkout .step-shipping-payment-method { border: 0; padding: 0; background: none; }
.main-container--checkout .step-shipping-payment-method .step-content { display: flex; flex-direction: column; gap: 24px; }
.main-container--checkout .step-shipping-payment-method .step-content > * { border: 1px solid #ccc; border-radius: 4px; padding: clamp(20px, 3vw, 40px); width: 100%; }

.main-container--checkout #step-name .customer-name { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.main-container--checkout #step-name .customer-name > * { padding: 0; width: 100%; }
.main-container--checkout #step-name .form-list { margin: 0; }

.main-container--checkout #billing-new-address-form > fieldset > ul { display: flex; flex-direction: column; gap: 24px; }
.main-container--checkout #billing-new-address-form > fieldset > ul > li { padding: 0; max-width: 100%; }
.main-container--checkout #billing-new-address-form > fieldset > ul > li.fields { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.main-container--checkout #billing-new-address-form > fieldset > ul > li.fields > * { width: 100%; padding: 0; max-width: 100%; }

.main-container--checkout dl.sp-methods + ul li { display: flex; align-items: center; gap: 8px; }
.main-container--checkout dl.sp-methods + ul input[type="checkbox"] { margin: 0 !important; }
.main-container--checkout dl.sp-methods + ul a label { margin: 0; }
.main-container--checkout #checkout-payment-method-load dl.sp-methods { display: flex; flex-direction: column; }
.main-container--checkout #checkout-payment-method-load dl.sp-methods > * { margin: 0; padding: 29px 0; }
.main-container--checkout #checkout-payment-method-load dl.sp-methods > dt { border-bottom: 1px solid #e0e0e0; position: relative; }
.main-container--checkout #checkout-payment-method-load dl.sp-methods > dt label { display: flex; align-items: center; gap: 12px; padding-left: 28px; }
.main-container--checkout #checkout-payment-method-load dl.sp-methods > dd { padding: 0; }
.main-container--checkout #checkout-payment-method-load dl.sp-methods label { margin: 0; }
.main-container--checkout #checkout-payment-method-load dl.sp-methods input[type="radio"] { position: absolute; left: 0; top: 50%; transform: translateY(-50%); }

.main-container--checkout #discount-code label { padding-left: 0; font-size: 14px; line-height: 1.57; }
.main-container--checkout #discount-code .input-box { display: flex; gap: 10px; }
.main-container--checkout #discount-code .input-box .input-field-wrapper { margin: 0; padding: 0; }
.main-container--checkout #discount-code .input-box .input-field-wrapper input { width: 100%; height: 48px; padding: 0 16px; border: 1px solid #d4d4d4; border-radius: 4px; font-size: 14px; line-height: 1.1; background: white; margin: 0; }
.main-container--checkout #discount-code .input-box button.button { height: 48px; text-transform: uppercase; letter-spacing: 2px; font-family: var(--ff-nunito-sans); font-weight: 600; font-size: 16px; line-height: 1.1; border-radius: 4px; border: 1px solid var(--c-red-hex); background-color: var(--c-red-hex); margin: 0; padding: 0 20px; }
.main-container--checkout #discount-code .input-box button.button span { text-transform: uppercase !important; }

@media (hover) and (pointer: fine) {
	.main-container--checkout #checkout-review-submit button.button:hover,
	.main-container--checkout #checkout-review-submit button.button:hover span,
	.main-container--checkout .step .step-buttons-set button:hover { background-color: transparent; color: var(--c-red-hex) !important; }
}

@media (max-width: 985px) {
	.main-container--checkout #firecheckout-form { flex-direction: column-reverse; gap: 24px; }
	.main-container--checkout #firecheckout-form .onecolumn { width: 100%; padding-right: 0; }
	.main-container--checkout #firecheckout-form .onecolumn-aside { width: 100%; }
}

@media (max-width: 767px) {
	.main-container--checkout #step-name .customer-name,
	.main-container--checkout #billing-new-address-form > fieldset > ul > li.fields { grid-template-columns: 1fr; }
	.main-container--checkout #discount-code .input-box button.button:before { content: 'Apply'; display: block; }
	.main-container--checkout #discount-code .input-box button.button span { display: none; }
}

/* ------------------------------------------------------------ *\
	Confirm Page
\* ------------------------------------------------------------ */

.main-container--confirm { --aside: clamp(350px, 25vw, 464px); background-color: white; }
.main-container--confirm .main { padding-top: clamp(32px, 3vw, 53px); padding-bottom: clamp(60px, 5vw, 93px);}
.main-container--confirm svg.check-mark { display: none; }
.main-container--confirm .col-main { display: flex; flex-wrap: wrap; row-gap: 40px; }

.main-container--confirm .tm-checkoutsuccess-middleleft { width: 100%; }
.main-container--confirm .tm-checkoutsuccess-middleright { width: 50%; padding-left: clamp(20px, 4vw, 60px); order: 3; }
.main-container--confirm .tm-checkoutsuccess-bottom { width: 50%; padding-right: clamp(20px, 4vw, 60px); }

.main-container--confirm .thank-you-note { color: var(--c-charcoal); }
.main-container--confirm .thank-you-note > svg { display: none; }
.main-container--confirm .thank-you-note > h2 { font-size: clamp(24px, 2vw, 32px); font-family: var(--ff-nunito-sans); font-weight: 600; margin-bottom: 16px; position: relative; padding-left: 44px; }
.main-container--confirm .thank-you-note > h2:before { content: ' '; position: absolute; left: 0; top: 0; width: 36px; height: 36px; background-image: url('../images/ico-check-alt.svg'); background-size: contain; background-position: center; }
.main-container--confirm .thank-you-note > p { font-size: 16px; line-height: 1.62; font-family: var(--ff-nunito-sans); font-weight: 400; margin-bottom: 8px; }
.main-container--confirm .thank-you-note > *:last-child { margin-bottom: 0; }

.main-container--confirm .order-details { border: 1px solid #ccc; border-radius: 4px; background-color: white; padding: clamp(16px, 3vw, 40px); }
.main-container--confirm .order-details h2 { display: none; }
.main-container--confirm .order-details .data-table table { display: flex; flex-direction: column; margin: 0; }
.main-container--confirm .order-details .data-table thead { display: none; }
.main-container--confirm .order-details .data-table tbody { display: block; position: relative; order: 2; }
.main-container--confirm .order-details .data-table tbody:before { content: 'Items Order'; font-size: 18px; font-family: var(--ff-nunito-sans); font-weight: 700; margin-bottom: 16px; display: block; }
.main-container--confirm .order-details .data-table tbody tr { display: flex; flex-direction: column; border: 0; }
.main-container--confirm .order-details .data-table tbody td { padding: 0; text-align: left !important; border: 0 !important; font-size: 14px; line-height: 1.57; font-weight: 400; color: var(--c-charcoal); display: flex; align-items: center; gap: 4px; }
.main-container--confirm .order-details .data-table tbody td:nth-child(2):before { content: 'SKU: '; }
.main-container--confirm .order-details .data-table tbody td:nth-child(3):before { content: 'Price: '; }
.main-container--confirm .order-details .data-table tbody td:nth-child(5):before { content: 'Subtotal: '; }
.main-container--confirm .order-details .data-table tbody h3 { font-size: 14px; font-weight: 700; margin: 0 0 4px 0; }
.main-container--confirm .order-details .data-table tbody br { display: none; }
.main-container--confirm .order-details .data-table tbody .cart-price { font-size: 14px; line-height: 1.57; font-weight: 400; color: var(--c-charcoal); }
.main-container--confirm .order-details .data-table tbody .nobr { font-size: 0; line-height: 0; }
.main-container--confirm .order-details .data-table tbody .nobr strong { font-size: 14px; line-height: 1.57; font-weight: 400; }
.main-container--confirm .order-details .data-table tbody .nobr strong:before { content: 'Qty: '; }
.main-container--confirm .order-details .data-table tfoot { display: block; position: relative; order: 1; width: 100%; padding-bottom: 24px; margin-bottom: 24px; border-bottom: 1px solid #e0e0e0; }
.main-container--confirm .order-details .data-table tfoot tr { display: flex; align-items: center; gap: 8px; }
.main-container--confirm .order-details .data-table tfoot td { font-size: 14px; line-height: 1.57; font-family: var(--ff-nunito-sans); padding: 0; }
.main-container--confirm .order-details .data-table tfoot td:first-child { text-align: left !important; margin-right: auto; }
.main-container--confirm .order-details .data-table tfoot td:last-child { font-weight: 700; }
.main-container--confirm .order-details .data-table tfoot:before { content: 'Order Summary'; font-size: 18px; font-family: var(--ff-nunito-sans); font-weight: 700; margin-bottom: 24px; display: block; }

.main-container--confirm .checkoutsuccess-block-wrapper .order-info { margin: 0; }
.main-container--confirm .checkoutsuccess-block-wrapper .order-info dt { padding-top: 0; }
.main-container--confirm .checkoutsuccess-block-wrapper .order-info-box { background: none; padding: 0; width: auto; display: flex; flex-wrap: wrap; margin: -40px -20px; color: var(--c-charcoal); font-size: 16px; line-height: 1.62; }
.main-container--confirm .checkoutsuccess-block-wrapper .order-info-box > * { width: 50%; flex-grow: 1; border: 0; min-height: 100%; display: flex; flex-direction: column; gap: 40px; padding: 40px 20px; }
.main-container--confirm .checkoutsuccess-block-wrapper .order-info-box > *:after { content: ' '; display: block; width: 100%; height: 1px; max-height: 1px; background-color: #ccc; margin-top: auto; }
.main-container--confirm .checkoutsuccess-block-wrapper .order-info-box:after { display: none; }
.main-container--confirm .checkoutsuccess-block-wrapper .order-info-box + .order-info-box > *:after { display: none; }
.main-container--confirm .checkoutsuccess-block-wrapper .order-info-box h2 { font-size: 18px; line-height: 1.66; font-weight: 700; font-family: var(--ff-nunito-sans); margin-bottom: 8px; }

@media (max-width: 985px) {
	.main-container--confirm .tm-checkoutsuccess-middleright { width: 100%; padding-left: 0; order: 2; }
	.main-container--confirm .tm-checkoutsuccess-bottom { width: 100%; padding-right: 0; order: 3; }
}

@media (max-width: 767px) {
	.main-container--confirm .checkoutsuccess-block-wrapper .order-info-box { margin: -12px 0; }
	.main-container--confirm .checkoutsuccess-block-wrapper .order-info-box > * { width: 100%; padding: 12px 0; gap: 24px; }
	.main-container--confirm .checkoutsuccess-block-wrapper .order-info-box + .order-info-box > *:first-child:after { display: block; }
}

/* ------------------------------------------------------------ *\
	Product Page
\* ------------------------------------------------------------ */

body .main-container--product .postscript { display: none !important; }

.list-product-info-and-contact { width: 100%; position: relative; overflow: hidden; margin-block: 26px; }
.list-product-info-and-contact__row { display: flex; flex-wrap: wrap; text-align: center; justify-content: center; width: auto; margin: -20px; }
.list-product-info-and-contact__col { padding: 20px; width: calc(100% / 3); display: flex; flex-direction: column; gap: 8px; }
.list-product-info-and-contact__col p { font-size: 16px; line-height: 1.6; font-family: var(--ff-nunito-sans); font-weight: 400; color: #544f4a; }
.list-product-info-and-contact__col p a { font-weight: 700; }
.list-product-info-and-contact__col > i { margin-inline: auto; display: block; width: 40px; height: 40px; position: relative; overflow: hidden; }
.list-product-info-and-contact__col > i img { position: absolute; left: 0; top: 0; width: 100%; height: 100%; object-fit: contain; object-position: center; }

@media (max-width: 1100px) {
	.list-product-info-and-contact__col { width: 50%; }
}

@media (max-width: 1024px) {
	.list-product-info-and-contact__row { flex-direction: column; margin: 0; gap: 9px; text-align: left; }
	.list-product-info-and-contact__col { width: 100%; padding: 0; display: flex; flex-direction: row; align-items: center; gap: 8px; }
	.list-product-info-and-contact__col p { font-size: 14px; line-height: 1.57; }
	.list-product-info-and-contact__col p br { display: none; }
	.list-product-info-and-contact__col > i { width: 24px; height: 24px; margin: 0; }
}

.breadcrumbs li { padding: 0; }
