/* ==========================================================================
   Base - Typography, buttons and shared layout
   ========================================================================== */

:root {
	--color-primary: #f60;
	--color-primary-bg: #fff3eb;
	--color-text: #333;
	--color-text-mid: #595959;
	--color-neutral: #737373;
	--color-border: #e0e0e0;
	--color-border-light: #f1f2f3;
	--color-white: #fff;
}

.redesign {
	font-family: 'Helvetica Now Text', sans-serif;
}

.redesign p,
.redesign h1,
.redesign h2,
.redesign h3,
.redesign h4,
.redesign h5,
.redesign h6 {
	margin: 0;
	text-align: unset;
	hyphens: unset;
}

.redesign p {
	font-size: 16px;
}

.redesign h1 {
	font-size: 48px;
	font-weight: 800;
	line-height: 56px;
}

.redesign h2 {
	font-size: 28px;
	font-weight: 700;
}

.redesign h3 {
	font-size: 24px;
	font-weight: 700;
}

.redesign .button.big {
	padding: 14px 24px;
	font-family: 'Helvetica Now Text', sans-serif;
	font-weight: 500;
}

.redesign .button.big.white {
	padding: 12px 24px;
	color: var(--color-primary) !important;
	border: 2px solid var(--color-primary);
}

@media (min-width: 992px) {
	.redesign {
		max-width: 960px;
	}
}

@media (min-width: 1200px) {
	.redesign {
		max-width: calc(1158px + (2 * 48px));
		padding: 0 48px;
	}
}

@media (max-width: 991px) {
	.redesign h1 {
		font-size: 32px;
		line-height: normal;
	}

	.redesign h2 {
		font-size: 24px;
	}

	.redesign h3 {
		font-size: 20px;
	}
}

@media (max-width: 767px) {
	.redesign .button.big {
		width: 100%;
	}
}

/* ==========================================================================
   Components - Shared UI patterns
   ========================================================================== */

/* Component - Hero */

.hero .hero-content h1 {
	font-size: 64px;
	font-weight: 800;
	line-height: 72px;
}

.hero .hero-content {
	display: flex;
	flex-direction: column;
	gap: 28px;
}

.hero .hero-eyebrow {
	margin-bottom: -20px;
	font-family: 'Helvetica Now Display', sans-serif;
	font-size: 1.25rem;
	font-weight: bolder;
	line-height: 28px;
}

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

.hero .hero-bullets > div {
	display: flex;
	gap: 8px;
}

.hero .hero-bullets > div::before {
	position: relative;
	top: 2px;
	content: url('../img/check-icon.svg');
}

@media (max-width: 991px) {
	.hero .hero-content h1 {
		font-size: 36px;
		line-height: 40px;
	}
}

/* Component - Text + image */

.text-image-wrapper {
	display: flex;
	gap: 48px;
	align-items: center;
	justify-content: space-between;
}

.text-image-wrapper--reversed {
	flex-direction: row-reverse;
}

.text-image-wrapper > div {
	flex: 1 1 0;
}

.text-image-wrapper > div:last-of-type {
	display: flex;
	justify-content: center;
}

.text-image-wrapper > div:last-of-type > img {
	display: block;
	max-width: 100%;
	height: auto;
	border-radius: 8px;
}

@media (max-width: 991px) {
	.text-image-wrapper {
		flex-direction: column-reverse !important;
		gap: 16px;
	}

	.text-image-wrapper > div {
		width: 100%;
	}

	.text-image-wrapper > div:last-of-type > img {
		max-width: min(100%, 516px);
	}
}

/* Component - reCAPTCHA */

.grecaptcha-badge {
	display: none !important;
}

/* Component - Owl carousel */

.owl-nav {
	display: flex;
	gap: 20px;
	justify-content: center;
	margin-top: 16px;
	font-size: 24px;
	text-align: center;
}

/* Component - CTA container */

.cta-container {
	display: flex !important;
	flex-direction: row !important;
	justify-content: center !important;
	margin-top: 24px !important;
}

/* Component - Expandable */

.expandable-trigger {
	display: flex;
	gap: 16px;
	align-items: center;
	cursor: pointer;
	user-select: none;
}

.expandable-content {
	display: none;
}

.expandable-caret {
	flex-shrink: 0;
	transition: transform 0.3s ease;
}

.expandable-trigger > *:last-child {
	margin-left: auto;
}

.expandable-trigger.expanded + .expandable-content {
	display: block;
}

.expandable-trigger.expanded .expandable-caret {
	transform: rotate(180deg);
}

/* Component - FAQ */

.faq-v2 {
	max-width: 924px;
	margin-right: auto;
	margin-left: auto;
}

.faq-v2 > h2 {
	margin-bottom: 8px !important;
}

.faq-item {
	padding: 32px 0;
	border-bottom: 3px solid var(--color-border);
}

.faq-item .expandable-content {
	margin-top: 20px;
	margin-bottom: -2px;
	font-size: 18px;
	line-height: 28px;
}

.faq-item .expandable-caret {
	align-self: start;
}

.faq-item .expandable-trigger > h3 {
	font-size: 18px;
	line-height: 24px;
}

.faq-item .expandable-trigger.expanded > h3 {
	color: var(--color-primary);
}

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

/* Home - Hero */

.home .hero h1 {
	margin-bottom: 32px;
}

.home .hero p + p {
	margin-top: 16px;
}

@media (max-width: 991px) {
	.home .hero h1 {
		margin-bottom: 16px;
	}
}

/* Home - Products */

.products {
	margin: 24px 0 128px;
}

.products > h2 {
	margin-bottom: 16px;
	font-size: 32px;
	font-weight: 400;
}

.products > div {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin-top: 48px;
}

.products-item {
	position: relative;
	display: flex;
	flex: 1 1 calc(33.3333% - 16px);
	flex-direction: column;
	align-items: center;
	min-height: 280px;
	padding: 32px 24px;
	color: inherit !important;
	text-align: center;
	background-color: var(--color-white);
	border: 1px solid var(--color-neutral);
	border-radius: 12px;
}

.products-item:hover {
	border-color: var(--color-primary);
}

.products-item--wide {
	flex: 1 1 calc(50% - 16px);
}

.products-item > h3 {
	margin-top: 16px;
	margin-bottom: 4px;
	font-size: 18px;
}

.products-item > span {
	margin-top: auto;
	color: var(--color-primary);
}

.products-item-badge {
	position: absolute;
	top: -16px;
	left: 24px;
	display: flex;
	align-items: center;
	height: 32px;
	padding: 0 12px;
	font-size: 14px;
	font-weight: 500;
	color: var(--color-white);
	background-color: var(--color-primary);
	border-radius: 16px;
}

@media (max-width: 991px) {
	.products {
		margin: 40px 0 96px;
	}

	.products > h2 {
		font-size: 24px;
	}

	.products > div {
		margin-top: 24px;
	}

	.products-item,
	.products-item--wide {
		flex: 1 1 100%;
	}

	.products-item-badge {
		top: -12px;
		height: 24px;
		padding: 0 8px;
	}
}

/* Home - Questions */

.questions {
	text-align: center;
}

.questions > p {
	margin-bottom: 12px;
}

.questions > a {
	font-size: 24px;
	font-weight: 700;
	color: inherit;
	text-align: center;
	text-decoration: none;
	transition: color 0.15s ease-in-out, text-decoration 0.15s ease-in-out;
}

.questions > a:hover {
	color: var(--color-primary);
	text-decoration: underline;
}

/* Home - Benefits */

.benefits {
	padding: 128px 0;
	text-align: center;
	background-image: url('../img/benefits-bg.png');
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}

.benefits > h2 {
	margin-bottom: 16px;
}

.benefits > div {
	display: flex;
	gap: 32px;
	margin: 96px 0;
}

.benefits-item {
	width: calc((100% - 96px) / 4);
	padding: 0 8px;
}

.benefits-item > h3 {
	margin: 24px 0 16px;
}

@media (max-width: 991px) {
	.benefits {
		padding: 96px 0;
		background-image: url('../img/benefits-bg-mobile.png');
		background-size: unset;
	}

	.benefits > div {
		flex-direction: column;
		gap: 64px;
		align-items: center;
		margin: 64px 0;
	}

	.benefits-item {
		width: 100%;
	}

	.benefits-item > h3 {
		margin: 16px 0 8px;
	}
}

/* Home - Overview */

.overview {
	display: flex;
	flex-direction: column;
	gap: 96px;
}

.overview > h2 {
	text-align: center;
}

.overview .text-image-wrapper > div:first-of-type > h3 {
	margin-bottom: 16px;
}

.overview .text-image-wrapper > div:first-of-type > p {
	margin-bottom: 48px;
}

.overview-button-container {
	display: flex;
	flex-direction: row;
	gap: 20px;
}

@media (max-width: 991px) {
	.overview {
		gap: 64px;
	}

	.overview > h2 {
		margin-bottom: -32px;
	}

	.overview .text-image-wrapper > div:first-of-type > p {
		margin-bottom: 24px;
	}
}

@media (max-width: 767px) {
	.overview-button-container {
		flex-direction: column;
	}
}

/* Home - Testimonials */

.testimonials {
	margin: 128px 0 96px;
}

.testimonials > h2 {
	margin-bottom: 40px;
	text-align: center;
}

.testimonials-author {
	display: flex;
	gap: 16px;
	align-items: center;
	margin-top: 24px;
}

.testimonials-author > img {
	width: 56px !important;
	height: 56px !important;
}

@media (max-width: 991px) {
	.testimonials {
		margin: 96px 0 0;
	}

	.testimonials > h2 {
		margin-bottom: 24px;
	}
}

/* ==========================================================================
   Car insurance
   ========================================================================== */

/* Car insurance - Layout */

.redesign.car h2 {
	margin-bottom: 40px;
	text-align: center;
}

.redesign.car section {
	margin-bottom: 56px;
}

@media (max-width: 991px) {
	.redesign.car h2 {
		margin: 0 0 24px;
		text-align: unset;
	}

	.redesign.car section {
		margin-bottom: 48px;
	}
}

/* Car insurance - Navigation bar */

.navigation-bar {
	display: flex;
	gap: 24px;
	align-items: center;
	justify-content: center;
	height: 60px;
	padding: 16px 54px;
	margin: 0 -74px;
	background-color: var(--color-primary-bg);
	border-radius: 16px;
}

.navigation-bar > a {
	font-weight: 500;
	color: var(--color-text-mid);
	text-align: center;
}

.navigation-bar > span {
	width: 1px;
	height: 20px;
	background-color: var(--color-primary);
}

@media (max-width: 991px) {
	.navigation-bar {
		display: none;
	}
}

/* Car insurance - Why us */

.why-us > div {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
}

.why-us-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: calc((100% - 48px) / 3);
	padding: 24px;
	text-align: center;
	border: 1px solid var(--color-border);
	border-radius: 12px;
}

.why-us-item > h3 {
	margin: 24px 0 16px;
	font-size: 20px;
}

@media (max-width: 991px) {
	.why-us-item {
		width: 100%;
	}
}

/* Car insurance - How it works */

.how-it-works {
	padding: 48px 0;
	margin: -48px 0;
	background-image: url('../img/how-it-works-bg.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}

.how-it-works > h2 {
	margin-bottom: 24px !important;
}

.how-it-works > div {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.how-it-works-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 33.3333%;
	max-width: 300px;
	padding: 24px;
	text-align: center;
}

.how-it-works-item > h3 {
	margin: 24px 0 16px;
	font-size: 20px;
}

@media (max-width: 991px) {
	.how-it-works {
		padding: 24px;
		margin: 0;
		background-color: #fff9eb;
		background-image: unset;
		border-radius: 16px;
	}

	.how-it-works > h2 {
		text-align: center !important;
	}

	.how-it-works-item {
		width: 100%;
		max-width: 100%;
		padding: 24px 0;
	}
}

/* Car insurance - Product detail */

.product-detail {
	display: flex;
	gap: 48px;
	align-items: start;
	margin-top: -48px;
}

.product-detail .faq-item {
	border-bottom: unset;
}

.product-detail > div:first-child {
	flex-grow: 1;
	margin-top: 40px;
}

.product-detail > img {
	flex-shrink: 1;
	width: 340px;
	max-width: 100%;
}

@media (max-width: 991px) {
	.product-detail {
		flex-direction: column-reverse;
		gap: 12px;
		align-items: center;
		margin-top: -24px;
	}

	.product-detail > div:first-child {
		width: 100%;
		margin-top: 0;
	}
}

/* Car insurance - Discount schema */

.discount-schema > h2 {
	max-width: 724px;
	margin-right: auto;
	margin-left: auto;
}

.discount-schema > div {
	display: flex;
	gap: 132px;
	align-items: center;
	justify-content: space-between;
	margin-top: 56px;
}

.discount-schema > div > img {
	max-width: 584px;
}

.discount-schema-subtitle {
	margin-bottom: 24px !important;
	font-size: 18px !important;
	color: var(--color-primary);
}

.discount-schema-text {
	font-size: 18px !important;
}

@media (max-width: 1199px) {
	.discount-schema > div {
		gap: 56px;
	}
}

@media (max-width: 991px) {
	.discount-schema > h2 {
		max-width: unset;
	}

	.discount-schema > div {
		flex-direction: column;
		gap: 32px;
		margin-top: 32px;
	}

	.discount-schema > div > img {
		max-width: 100%;
	}

	.discount-schema h3 {
		margin-bottom: 8px !important;
	}

	.discount-schema p {
		line-height: 36px;
	}
}

/* Car insurance - Offer fit */

.offer-fit > div {
	display: flex;
	gap: 24px;
}

.offer-fit-item {
	display: flex;
	flex-direction: column;
	gap: 16px;
	width: calc((100% - 72px) / 4);
}

.offer-fit-item > h3 {
	font-size: 18px;
}

.offer-fit-item > div {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.offer-fit-item-box {
	min-height: 172px;
	padding: 16px;
	color: var(--color-text);
	background-color: var(--color-primary-bg);
	border: 1px solid var(--color-primary);
	border-radius: 8px;
}

.offer-fit-item-box + .offer-fit-item-box {
	background-color: #f5f5f5;
	border-color: #bfbfbf;
}

.offer-fit-item-box > b {
	display: inline-block;
	margin-bottom: 2px;
}

@media (max-width: 991px) {
	.offer-fit {
		margin-bottom: 48px;
	}

	.offer-fit > h2 {
		margin: 0 0 24px;
		text-align: unset;
	}

	.offer-fit > div {
		flex-direction: column;
	}

	.offer-fit-item {
		width: 100%;
	}

	.offer-fit-item > h3 {
		font-size: 14px;
	}

	.offer-fit-item > div {
		flex-flow: row wrap;
	}

	.offer-fit-item-box {
		width: calc((100% - 16px) / 2);
		min-height: 158px;
	}
}

@media (max-width: 767px) {
	.offer-fit-item-box {
		width: 100%;
	}
}

/* Car insurance - Value for money */

.value-for-money > div {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
}

.value-for-money-item {
	display: flex;
	flex-direction: column;
	gap: 16px;
	align-items: center;
	width: calc((100% - 72px) / 4);
	padding: 32px 24px;
	text-align: center;
	border: 1px solid var(--color-neutral);
	border-radius: 12px;
}

.value-for-money-item > img {
	width: 48px;
	height: 48px;
}

.value-for-money-item > h3 {
	font-size: 18px;
}

@media (max-width: 991px) {
	.value-for-money-item {
		width: 100%;
	}
}

/* Car insurance - Services */

.services > div {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.services-item {
	padding: 16px;
	border: 1px solid var(--color-neutral);
	border-radius: 8px;
}

.services .expandable-trigger > img {
	flex-shrink: 0;
}

.services .expandable-trigger > span {
	display: flex;
	gap: 8px;
	align-items: center;
	align-self: start;
	color: var(--color-neutral);
}

.services .expandable-trigger + div {
	padding: 16px 40px 0;
}

/* Car insurance - Testimonial banner */

.testimonial-banner {
	background-color: var(--color-primary-bg);
}

.testimonial-banner-content {
	width: 718px;
	max-width: 100%;
	padding: 80px 0 54px;
	margin-right: auto;
	margin-left: auto;
}

.testimonial-banner h2 {
	display: inline;
	font-size: 36px;
	font-weight: 400;
	line-height: 115%;
	color: var(--color-text);
}

.testimonial-banner h2::before {
	position: relative;
	top: -3px;
	display: inline-block;
	margin-right: 8px;
	content: url('../img/quotation-icon.svg');
}

.testimonial-banner h2::after {
	position: relative;
	bottom: -3px;
	display: inline-block;
	margin-left: 8px;
	content: url('../img/quotation-icon.svg');
	transform: rotate(180deg);
}

.testimonial-banner h3 {
	position: relative;
	top: 4px;
	right: -24px;
	font-size: 18px;
	line-height: 125%;
	color: var(--color-text);
	text-align: right;
}

@media (max-width: 991px) {
	.testimonial-banner-content {
		padding: 40px 24px 64px;
	}

	.testimonial-banner h2 {
		font-size: 24px;
		line-height: 133.3333%;
	}

	.testimonial-banner h3 {
		top: 24px;
		right: 0;
	}

	.testimonial-banner h2::before {
		top: 1px;
		transform: scale(0.75);
	}

	.testimonial-banner h2::after {
		bottom: 1px;
		transform: rotate(180deg) scale(0.75);
	}
}

/* Car insurance - Documents */

.documents {
	width: 692px;
	max-width: 100%;
	margin: 56px auto;
}

.documents > div {
	display: flex;
	flex-direction: column;
	gap: 80px;
}

.documents h3 {
	margin-bottom: 24px;
	font-size: 20px;
	line-height: 44px;
}

.documents-container {
	display: flex;
	flex-wrap: wrap;
	gap: 56px 32px;
}

.documents-container > a {
	display: flex;
	gap: 12px;
	width: calc(50% - 16px);
	color: inherit;
	cursor: pointer;
}

.documents-container > a > img:first-child {
	width: 58px;
	height: 58px;
}

.documents-container > a > div {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.documents-container > a > div > b {
	margin-top: -3px;
	font-size: 18px;
	line-height: 1;
	hyphens: auto;
	word-break: break-word;
}

.documents-container > a > div > span {
	font-size: 12px;
	line-height: 18px;
}

.documents-container > a > img:last-child {
	flex-shrink: 0;
	align-self: center;
	margin-left: auto;
}

.qrs-container {
	display: flex;
	gap: 16px;
	justify-content: space-between;
	color: var(--color-text-mid);
}

.qrs-container img {
	max-width: 120px;
}

.qrs-container > div > div {
	margin: 4px 0 0 8px;
}

@media (max-width: 991px) {
	.documents {
		margin: 48px auto;
	}

	.documents > div {
		gap: 56px;
	}

	.documents-container {
		gap: 32px;
	}

	.documents-container > a {
		width: 100%;
	}

	.qrs-container {
		justify-content: unset;
	}
}

/* Car insurance - DrivePod signup */

.drivepod-signup > h2 {
	max-width: 724px;
	margin-right: auto;
	margin-left: auto;
}

.drivepod-signup > div {
	margin-bottom: 52px;
	font-size: 18px;
}

.drivepod-signup > form {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

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

.drivepod-form-group > label {
	font-size: 14px;
	font-weight: 500;
	color: var(--color-neutral);
}

.drivepod-form-double-column {
	display: flex;
	gap: 16px;
}

.drivepod-form-double-column > .drivepod-form-group {
	flex: 1;
}

.drivepod-radio-group {
	display: flex;
	gap: 16px;
}

.drivepod-radio-option {
	display: flex;
	flex: 1;
	gap: 12px;
	align-items: center;
	min-height: 48px;
	padding: 0 16px;
	cursor: pointer;
	border: 1px solid var(--color-neutral);
	border-radius: 8px;
}

.drivepod-radio-option input[type='radio'] {
	flex-shrink: 0;
	width: 20px;
	height: 20px;
	appearance: none;
	cursor: pointer;
	background-color: var(--color-white);
	border: 1px solid var(--color-neutral);
	border-radius: 50%;
	opacity: unset;
	transition: border-color 0.15s ease-in-out;
}

.drivepod-radio-option input[type='radio']:checked {
	background-image: radial-gradient(circle, var(--color-primary) 42%, transparent 48%);
	border-color: var(--color-primary);
}

.drivepod-signup > form input[type='text'],
.drivepod-signup > form input[type='email'] {
	width: 100%;
	padding: 14px 16px;
	font-family: 'Helvetica Now Text', sans-serif;
	font-size: 16px;
	outline: none;
	border: 1px solid var(--color-neutral);
	border-radius: 8px;
}

.drivepod-signup > form input[type='text']:focus,
.drivepod-signup > form input[type='email']:focus {
	border-color: var(--color-primary);
}

.drivepod-signup > form select {
	width: 100%;
	padding: 14px 48px 14px 16px;
	font-family: 'Helvetica Now Text', sans-serif;
	font-size: 16px;
	color: #3f4656;
	appearance: none;
	cursor: pointer;
	outline: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6 9L12 15L18 9' stroke='%23FF6600' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 16px center;
	background-size: 24px;
	border: 1px solid var(--color-neutral);
	border-radius: 8px;
}

.drivepod-signup > form select:focus {
	border-color: var(--color-primary);
}

.drivepod-form-submit {
	display: flex;
	justify-content: center;
	margin-top: 36px;
}

.drivepod-form-message {
	padding: 16px;
	margin-top: 36px;
	font-size: 16px;
	text-align: center;
	border-radius: 8px;
}

.drivepod-form-message:empty {
	display: none;
}

.drivepod-form-message--success {
	color: #2e7d32;
	background-color: #e8f5e9;
}

.drivepod-form-message--error {
	color: #c62828;
	background-color: #fdecea;
}

@media (max-width: 767px) {
	.drivepod-signup {
		margin-bottom: 16px !important;
	}

	.drivepod-signup > h2 {
		max-width: unset;
	}

	.drivepod-signup > div {
		margin-bottom: 24px;
	}

	.drivepod-form-double-column {
		flex-direction: column;
	}

	.drivepod-radio-group {
		flex-direction: column;
	}

	.drivepod-form-submit,
	.drivepod-form-message {
		margin-top: 8px;
	}
}

/* Car insurance - Sticky footer */

.sticky-footer {
	position: fixed;
	right: 0;
	bottom: 0;
	left: 0;
	padding: 24px 0;
	background-color: var(--color-white);
	box-shadow: 0 0 12px 0 rgb(51 51 51 / 15%);
}

.sticky-footer-buttons {
	display: flex;
	gap: 16px;
	justify-content: end;
}

.sticky-footer ~ footer {
	margin-bottom: 95px;
}

@media (max-width: 767px) {
	.sticky-footer-buttons {
		flex-direction: column;
	}

	.sticky-footer ~ footer {
		margin-bottom: 158px;
	}
}

/* ==========================================================================
   Claims
   ========================================================================== */

/* Claims - Products override */

.claims .products {
	margin: 80px 0 56px;
}

.claims .products > div {
	gap: 32px 60px;
}

.claims .products-item {
	flex: 1 1 calc(33.3333% - 60px);
	min-height: 240px;
	padding: 24px;
	border-color: var(--color-border);
}

.claims .products-item:hover {
	border-color: var(--color-primary);
}

.claims .products-item--wide {
	flex: 1 1 calc(50% - 60px);
}

.claims h2 {
	margin: 24px 0 16px;
	font-size: 20px;
	line-height: 28px;
}

.claims h2 + p {
	line-height: 22px;
}

@media (max-width: 991px) {
	.claims .products {
		margin: 48px 0 16px;
	}

	.claims .products > div {
		gap: 16px;
	}

	.claims .products-item {
		flex: 1 1 100%;
	}
}

/* ==========================================================================
   Partner garages
   ========================================================================== */

.partner-garages {
	margin-bottom: 56px;
	line-height: 0;
}

.partner-garages h1 {
	text-align: center;
}

.partner-garages p {
	margin: 32px 0;
	text-align: center;
}

.partner-garages iframe {
	border: none;
}

@media (max-width: 991px) {
	.partner-garages {
		margin-bottom: 16px;
	}
}

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

footer .footer-separator {
	padding-top: 56px;
	margin-top: 32px;
	border-top: 1px solid var(--color-border-light);
}

footer .site-logo img {
	max-width: 118px;
	margin: 6px 74px 16px 0;
}

footer .footer-menu {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
}

footer .footer-menu > div {
	display: flex;
	flex-direction: column;
	gap: 8px;
	align-items: start;
	min-width: 200px;
}

footer .footer-menu > div > span {
	font-weight: 600;
}

footer .footer-menu > div > a {
	color: inherit;
}

footer .footer-menu > div > a:hover {
	color: var(--color-primary);
}

footer .footer-contact {
	display: flex;
	gap: 12px;
	margin: 112px 0 56px;
	font-size: 14px;
}

footer .footer-contact > a {
	font-weight: 700;
	color: var(--color-primary);
}

footer .footer-copyright {
	display: flex;
	gap: 24px;
	align-items: center;
	padding: 42px 0;
	font-size: 14px;
	border-top: 2px solid var(--color-border-light);
}

footer .footer-copyright > span:last-child {
	flex-shrink: 0;
}

@media (max-width: 1199px) {
	footer .footer-menu > div {
		width: calc(50% - 12px);
	}

	footer .footer-contact {
		margin-top: 72px;
	}
}

@media (max-width: 991px) {
	footer .footer-separator {
		padding-top: 48px;
	}

	footer .footer-menu {
		font-size: 14px;
	}

	footer .footer-menu > div {
		width: 100%;
	}

	footer .footer-contact {
		flex-direction: column;
		gap: 8px;
		align-items: start;
		margin: 48px 0;
	}

	footer .footer-copyright {
		flex-direction: column;
		padding: 24px 0;
		font-size: 12px;
		line-height: 20px;
		text-align: center;
	}
}
