@charset "UTF-8";
/*
Theme Name: CareSpaces WP Theme
Text Domain: carespaces
Version: 1.0.2
Description: Custom WordPress theme for carespaces.ie
Author: Outro Flow Digital Media
Author URI: https://outroflow.co.mz/
*/

/* ROOT VARS */
:root {
	--color-grey-text: #757575;
	--color-grey-bg: #F1F1F1;
	--color-grey-border: rgba(1, 1, 1, .15);
	--color-black: #010101;

	--sky-gradient: linear-gradient(180deg, #93acbb 44%, #ded2c6 100%);
	
	--box-shadow-subtle: 0px 5px 10px 0px rgba(0, 0, 0, .05), 0px 1px 1px 0px rgba(0, 0, 0, .03), 0px 3px 5px 0px rgba(0, 0, 0, .03);
	--box-shadow-strong: 0px 5px 10px 0px rgba(0, 0, 0, .08), 0px 1px 1px 0px rgba(0, 0, 0, .06), 0px 3px 5px 0px rgba(0, 0, 0, .06);
	--box-shadow-ph: 0 0 10px 0 rgba(0,0,0,.025),0 1px 1px 0 rgba(0,0,0,.01),0 0 50px 0 rgba(0,0,0,.07);

	--ease-in-out-circ: cubic-bezier(0.85, 0, 0.15, 1);
	--ease-out-circ: cubic-bezier(0, 0.55, 0.45, 1);
	--page-section-py: 120px;
}

/* -- ROOT VARS - Tablet */
@media screen and (max-width: 1023px) {
	:root {
		--page-section-py: 80px;
	}
}

/* BASE */
html {
	scroll-behavior: smooth;
}
body {
	font: 18px/1.67 "DM Sans", sans-serif;
	color: var(--color-black);
	background: #fff;
}
::-webkit-scrollbar-track {
	background: var(--color-grey-bg);
}
[loading="lazy"] {
	opacity: 0;
	transition: opacity .6s var(--ease-out-circ);
}
.elementor-editor-active [loading="lazy"],
[loading="lazy"].loaded {
	opacity: 1;
}
html body .grecaptcha-badge {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}


/* TYPOGRAPHY */
.title-eyebrow-md {
	font-size: 14px;
	font-weight: 500;
	line-height: 1.2;
	text-transform: uppercase;
	margin-bottom: 25px;
	color: var(--color-grey-text);
}
.page-title-md {
	font-size: 70px;
	line-height: 1.085;
	font-weight: 500;
}
.section-title-md {
	font-size: 56px;
	font-weight: 500;
	line-height: 1.107;
}
.section-subtitle-md {
	font-size: 23px;
	line-height: 1.5;
	color: var(--color-grey-text);
}

/* -- TYPOGRAPHY - Tablet */
@media screen and (max-width: 1023px) {
	.page-title-md {
		font-size: 47px;
	}
	.section-title-md {
		font-size: 38px;
	}
	.section-subtitle-md {
		font-size: 21px;
	}
}

/* -- TYPOGRAPHY - Mobile */
@media screen and (max-width: 767px) {
	.title-eyebrow-md {
		margin-bottom: 10px;
	}
	.page-title-md {
		font-size: 34px;
	}
	.section-title-md {
		font-size: 27px;
	}
	.section-subtitle-md {
		font-size: 19px;
	}
}

/* UTILITIES */

.visually-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}
.just-validate-error-label {
	font-size: 16px;
	margin-top: 7px;
}

/* -- Appear On Scroll */
.appear-observer .appear-on-scroll {
	opacity: 0;
	transform: translate3d(0, 30px, 0);
}
.elementor-editor-active .appear-observer .appear-on-scroll {
	opacity: 1;
	transform: none;
}

.appear-observer.can-appear .appear-on-scroll {
	animation: appearOnScroll .6s var(--ease-out-circ) 0s forwards;
}
@keyframes appearOnScroll {
	to {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}
}

/* -- Simple Link */
html body .simple-link,
html body .has-simple-links a {
	text-decoration: dashed underline 1px;
}
html body .simple-link:hover,
html body .simple-link:active,
html body .has-simple-links a:hover,
html body .has-simple-links a:active {
	text-decoration: solid underline 1px;
}

/* COMPONENTS */

/* -- Buttons */
[class^="btn--"],
[class*=" btn--"] {
	height: 53px;
	padding-inline: 32px;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.5;
	text-transform: uppercase;
	border-radius: 4px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	position: relative;
	overflow: hidden;
	gap: 5px;
}
[class^="btn--"]:disabled,
[class*=" btn--"]:disabled {
	cursor: auto;
}
[class^="btn--"]:after,
[class*=" btn--"]:after {
	content: '';
	display: block;
	position: absolute;
	inset: 0;
	transform: scale3d(1, 0, 1);
	transform-origin: 50% 0;
	transition: transform .45s var(--ease-in-out-circ);
	opacity: .1;
}
[class^="btn--"]:not(:disabled):hover:after,
[class*=" btn--"]:not(:disabled):hover:after {
	transform: scale3d(1, 1, 1);
	transform-origin: 50% 100%;
}
.btn--outline {
	border: 1px solid var(--color-black);
}
.btn--light {
	background: #fff;
	color: var(--color-black);
}
.btn--outline:after,
.btn--light:after {
	background: var(--color-black);
}
.btn--dark {
	background: var(--color-black);
	color: #fff;
}
.btn--dark:after {
	background: #fff;
	opacity: .15;
}

/* -- Arrow Button */
.arrow-btn {
	width: 48px;
	height: 48px;
	background: transparent;
	opacity: 1;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	opacity: 1 !important;
}
.arrow-btn:before {
	content: '';
	display: block;
	position: absolute;
	inset: 0;
	background: #fff;
	box-shadow: var(--box-shadow-subtle);
	border-radius: 50%;
	transition: transform .3s var(--ease-in-out-circ), box-shadow .3s var(--ease-in-out-circ);
}
.arrow-btn:hover:before {
	transform: scale3d(1.25, 1.25, 1);
	box-shadow: var(--box-shadow-strong);
}
.arrow-btn .arrow-btn__img {
	position: relative;
}
.arrow-btn--right .arrow-btn__img {
	transform: rotate(180deg);
}
.arrow-btn--up .arrow-btn__img {
	transform: rotate(90deg);
}

/* -- Input Fields */
.input-field {
	padding: 13px 20px;
	height: 53px;
	border: 1px solid var(--color-grey-border);
	border-radius: 4px;
	background: transparent;
	line-height: 1.5;
	width: 100%;
	font-size: 16px;
}
.input-field::placeholder {
	color: var(--color-grey-text);
}

/* JS Enabled Forms */
.js-form {
	display: flex;
	flex-direction: column;
	gap: 40px;
}
.js-form__fields {
	border: none;
	transition: opacity .3s;
}
.js-form__fields:disabled {
	opacity: .9;
}
.jf__submit-btn--loading {
	color: transparent;
}
.jf__submit-btn--loading:before {
	content: '';
	display: block;
	position: absolute;
	border-top: 3px solid var(--color-grey-text);
	border-radius: 50%;
	width: 20px;
	aspect-ratio: 1;
	inset: 50% auto auto 50%;
	margin: -10px 0 0 -10px;
	animation: submit-btn--loading .6s var(--ease-in-out-circ) infinite forwards;
}
@keyframes submit-btn--loading {
	0% {
		transform: rotate3d(0, 0, 1, 0deg);
	}
	100% {
		transform: rotate3d(0, 0, 1, 360deg);
	}
}
.jf__response {
	display: none;
	padding: 16px 32px;
	background: var(--color-grey-bg);
	border-radius: 4px;
}
.js-form.jf--error-response .js-form__response {
	color: rgb(184, 17, 17); 
}
.jf__response-btn {
	font-size: 14px;
	color: var(--color-grey-text);
	display: inline-block;
	line-height: 1.43;
}
.js-form.jf--success-response .js-form__fields,
.js-form.jf--error-response .jf__response-btn {
	display: none;
}
.js-form.jf--success-response .jf__response,
.js-form.jf--error-response .jf__response {
	display: block;
}

/* LAYOUT */
.layout-wrapper {
	max-width: 1300px;
	width: calc(100% - 60px);
	margin-inline: auto;
}
.section-separator-hr {
	border-top: 1px solid var(--color-grey-border);
}

/* LAYOUT - Mobile */
@media screen and (max-width: 767px) {
	.layout-wrapper {
		width: calc(100% - 40px);
	}
}


/* -- Page Header */
.page-header {
	height: 85px;
	display: flex;
	align-items: center;
	font-size: 17px;
	font-weight: 500;;
	position: fixed;
	inset: 0 0 auto;
	z-index: 1;
	transition: height .45s var(--ease-out-circ), background-color .45s var(--ease-out-circ), box-shadow .45s var(--ease-out-circ);
}
.elementor-editor-active .page-header {
	position: relative;
}
.page-header .appear-on-scroll {
	transform: translate3d(0, -30px, 0);
}
.page-header.page-header--opaque {
	height: 65px;
	background: #fff;
	box-shadow: var(--box-shadow-ph);
}
.ph__layout-wrapper {
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
}
.ph__nav-wrapper {
	flex-grow: 1;
}
.ph__nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.ph__nav:before {
	content: '';
	display: block;
}
.ph__nav-menu {
	display: flex;
	gap: 36px;
}
.phn__link {
	position: relative;
	line-height: 30px;
}
.phn__link:after {
	content: '';
	display: block;
	inset: auto 0 0;
	border-top: 2px solid var(--color-black);
	transform-origin: 100% 50%;
	transform: scale3d(0, 1, 1);
	transition: transform .45s var(--ease-in-out-circ);
}
.phn__link:hover:after,
.phn__link:active:after {
	transform-origin: 0 50%;
	transform: scale3d(1, 1, 1);
}
.ph__action-btn {
	height: 47px;
	padding-inline: 0;
	width: 150px;
}
.phn__toggle-btn {
	display: none;
	width: 32px;
	aspect-ratio: 1;
	position: relative;
}
.phn__toggle-btn * {
	position: absolute;
	inset: 0;
	transition: opacity .45s var(--ease-in-out-circ), transform .45s var(--ease-in-out-circ);
}
.phn__toggle-btn.tb--nav-open * {
	transform: rotate3d(0, 0, 1, 180deg);
}
.tb__close-icon,
.phn__toggle-btn.tb--nav-open .tb__menu-icon {
	opacity: 0;
}
.phn__toggle-btn.tb--nav-open .tb__close-icon {
	opacity: 1;
}

/* -- Page Header - Tablet */
@media screen and (max-width: 1023px) {
	.ph__nav-wrapper {
		position: absolute;
		inset: calc(100% + 10px) 0 auto auto;
		width: 272px;
		display: grid;
		grid-template-rows: 0fr;
		opacity: 0;
		transition: grid-template-rows .45s var(--ease-in-out-circ), opacity .45s var(--ease-in-out-circ);
	}
	.tb--nav-open + .ph__nav-wrapper {
		grid-template-rows: 1fr;
		opacity: 1;
	}
	.ph__nav {
		flex-direction: column;
		gap: 16px;
		overflow: hidden;
		background: #fff;
		border-radius: 4px;
		box-shadow: var(--box-shadow-ph), inset 0 0 0 1px var(--color-grey-border);
	}
	.ph__nav:before {
		display: none;
	}
	.ph__nav-menu {
		flex-direction: column;
		gap: 8px;
		width: 100%;
		padding: 16px 20px 0;
	}
	.ph__action-btn {
		width: calc(100% - 32px);
		margin: 0 auto 20px;
	}
	.phn__toggle-btn {
		display: block;
	}
}

/* -- Page Sections */
.page-section {
	padding-top: var(--page-section-py);
	padding-bottom: var(--page-section-py);
}

/* -- Section Hero */
.section-hero {
	position: relative;
	min-height: 810px;
	overflow: hidden;
	padding-top: calc(var(--page-section-py) + 85px);
	display: flex;
	align-items: center;
	background: var(--sky-gradient);
	isolation: isolate;
}
.sh__bg-pic {
	--offset-x: 460px;
	position: absolute;
	inset: auto auto 0 calc(50% + var(--offset-x));
	transform: translateX(-50%);
	z-index: -1;
}
.sh__bg-pic:after {
	content: '';
	display: block;
	inset: 0 auto 0 0;
	width: 100px;
	
}
.sh__bg-pic,
.section-hero .sh__bg-img {
	height: 600px;
	max-width: none;
}
.sh__layout-wrapper {
	position: relative;
}
.sh__text-wrapper {
	max-width: 720px;
}
.sh__title-eyebrow,
.sh__subtitle,
.sh__anti-friction {
	color: #000;
}
.sh__title {
	margin-bottom: 30px;
}
.sh__subtitle {
	margin-bottom: 50px;
}
.sh__action-btn {
	margin-bottom: 20px;
}
.sh__anti-friction {
	font-size: 14px;
	line-height: 1.67;
}

/* -- Section Hero - Custom Viewport */
@media screen and (max-width: 1360px) {
	/*	1115*/
	.sh__bg-pic {
		left: 1136px;
	}
}

/* -- Section Hero - Tablet */
@media screen and (max-width: 1023px) {
	.section-hero {
		padding-bottom: 40%;
		align-items: flex-start;
		min-height: auto;
		text-align: center;
	}
	.sh__bg-pic {
		inset: auto 0 0 50%;
		transform: translateX(-50%);
		width: 70%;
	}
	.section-hero .sh__bg-img {
		width: 100%;
	}
	.sh__bg-pic,
	.section-hero .sh__bg-img {
		min-width: 300px;
		height: auto;
	}
	.sh__text-wrapper {
		max-width: 520px;
		margin-inline: auto;
	}
}

/* -- Section Hero - Mobile */
@media screen and (max-width: 767px) {
	.section-hero {
		padding-bottom: max(230px, 40%);
	}
	.sh__text-wrapper {
		max-width: 480px;
	}
}

/* -- Section About */
.sa__title-wrapper {
	display: flex;
	justify-content: space-between;
	margin-bottom: 60px;
	gap: 30px;
}
.sa__title {
	max-width: 690px;
}
.sa__subtitle {
	max-width: 250px;
	font-size: 17px;
	font-weight: 500;
	line-height: 1.5;
}
.sa__cols-wrapper {
	display: flex;
	justify-content: space-between;
	gap: 30px;
}
.sa__img-col {
	width: min(630px, calc(50% - 15px));
}
.sa__img {
	width: 100%;
	height: auto;
}
.sa__text-col {
	width: min(545px, calc(50% - 15px));
	display: flex;
	flex-direction: column;
	gap: 30px;
}
.sa__h3 {
	font-size: 20px;
	font-weight: 500;
	line-height: 1.2;
	margin-bottom: 20px;
}
.sa__body {
	font-size: 18px;
	line-height: 1.67;
	color: var(--color-grey-text);
}

/* -- Section About - Tablet */
@media screen and (max-width: 1023px) {
	.sa__title {
		max-width: calc(50% - 15px);
	}
	.sa__cols-wrapper {
		flex-direction: column;
		gap: 60px;
	}
	.sa__img-col,
	.sa__text-col {
		width: 100%;
	}
}

/* -- Section About - Mobile */
@media screen and (max-width: 767px) {
	.sa__title-wrapper {
		flex-direction: column;
		gap: 20px;
		margin-bottom: 30px;
	}
	.sa__title-wrapper > * {
		max-width: none;
	}
}

/* -- Section Services */
.ss__title-wrapper {
	display: flex;
	justify-content: space-between;
	margin-bottom: 80px;
	gap: 30px;
}
.ss__title {
	width: min(630px, calc(50% - 15px));
}
.ss__subtitle {
	width: min(545px, calc(50% - 15px));
}
.ss__services-grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 30px;
}
.ss__service-box {
	padding: 60px 40px;
	text-align: center;
	border: 1px solid var(--color-grey-border);
	border-radius: 4px;
}
.sb__icon-wrapper {
	width: 94px;
	aspect-ratio: 1;
	border-radius: 50%;
	background: var(--color-grey-bg);
	margin-inline: auto;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 30px;
}
.sb__icon-img {
	width: 48px;
}
.sb__title {
	font-size: 19px;
	font-weight: 500;
	line-height: 1.2;
	margin-bottom: 15px;
}
.sb__body {
	color: var(--color-grey-text);
	font-size: 16px;
	line-height: 1.625;
}

/* -- Section Services - Tablet */
@media screen and (max-width: 1023px) {
	.ss__services-grid {
		grid-template-columns: 1fr 1fr;
	}
}

/* -- Section Services - Mobile */
@media screen and (max-width: 767px) {
	.ss__title-wrapper {
		flex-direction: column;
		margin-bottom: 30px;
	}
	.ss__title-wrapper > * {
		width: 100%;
	}
	.ss__services-grid {
		grid-template-columns: 1fr;
	}
}

/* -- Section FAQ */
.sf__layout-wrapper {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 60px;
}
.sf__photos-col {
	width: min(730px, calc(60% - 30px));
	aspect-ratio: 73 / 78;
	position: relative;
}
.sf__photo-wrapper {
	position: absolute;
}
.sf__photo-wrapper:nth-child(2) {
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}
.sf__photo-wrapper:nth-child(3) {
	right: 0;
	bottom: 0;
}
.sf__portrait-photo {
	width: calc(260 * 100% / 730);
	height: calc(337 * 100% / 780);
}
.sf__landscape-photo {
	width: calc(544 * 100% / 730);
	height: calc(350 * 100% / 780);
}
.sf__photo-wrapper .sf__photo-img {
	position: absolute;
	inset: 0;
	object-fit: cover;
	width: 100%;
	height: 100%;
	border: 3px solid #fff;
	box-shadow: var(--box-shadow-subtle);
}
.sf__text-col {
	width: min(520px, calc(40% - 30px));
}
.sf__title {
	margin-bottom: 50px;
}
.sf__accordion {
	border-top: 1px solid var(--color-black);
}
.sf__accordion-item {
	border-bottom: 1px solid var(--color-black);
}
.ai__header-btn {
	padding: 20px 0;
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 15px;
	font-size: 20px;
	font-weight: 500;
	line-height: 1.4;
	text-align: left;
}
.ai__header-icon {
	transition: transform .45s var(--ease-in-out-circ);
}
.sf__accordion-item.ai--open .ai__header-icon {
	transform: rotate3d(0, 0, 1, 180deg);
}
.ai__body {
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows .45s var(--ease-in-out-circ);
	line-height: 1.625;
}
.sf__accordion-item.ai--open .ai__body {
	grid-template-rows: 1fr;
}
.ai__body-content {
	overflow: hidden;
}
.ai__body-content:after {
	content: '';
	display: block;
	height: 30px;
}

/* -- Section FAQ - Tablet */
@media screen and (max-width: 1023px) {
	.sf__layout-wrapper {
		flex-direction: column;
	}
	.sf__photos-col,
	.sf__text-col {
		width: 100%;
	}
}

/* -- Section Newsletter */
.section-newsletter {
	position: relative;
	background: #151515;
	isolation: isolate;
}
.section-newsletter .sn__bg-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: -1;
}
.sn__layout-wrapper {
	max-width: 630px;
}
.sn__title {
	font-size: 40px;
	font-weight: 500;
	line-height: 1.2;
	color: #fff;
	margin-bottom: 40px;
	text-align: center;
}
.sn__form {
	color: rgba(255, 255, 255, .7);
}
.snf__fields {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
.snf__input-wrapper {
	flex-grow: 1;
}
.snf__input-field {
	border-color: rgba(255, 255, 255, .2);
}
.snf__input-field:focus {
	color: #fff;
    border-color: rgba(255, 255, 255, .55);
    outline: none;
}
.snf__agreenment {
	width: 100%;
	font-size: 14px;
	line-height: 1.67;
	margin-top: 10px;
}
.snf__agreenment > p:first-child {
	margin-bottom: 10px;
}
.snf__response {
	background: #0d0d0d;
}

/* -- Section Newsletter - Tablet */
@media screen and (max-width: 1023px) {
	.sn__title {
		font-size: 32px;
	}
}

/* -- Section Newsletter - Mobile */
@media screen and (max-width: 767px) {
	.sn__title {
		font-size: 26px;
	}
	.snf__fields {
		flex-direction: column;
	}
}


/* -- Section Contact */
.sc__layout-wrapper {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 60px;
	max-width: 630px;
}
.sc__title {
	max-width: 520px;
}
.sc__form-wrapper {
	width: 100%;
	display: flex;
	flex-direction: row-reverse;
	justify-content: space-between;
	gap: 60px;
}
.sc__form {
	flex-grow: 1;
}
.scf__fields {
	display: flex;
	flex-wrap: wrap;
	column-gap: 30px;
	row-gap: 20px;
}
.scf__input-wrapper {
	width: calc(50% - 15px);
}
.scf__label {
	font-weight: 500;
	line-height: 1.3;
	margin-bottom: 7px;
	display: inline-block;
	cursor: pointer;
}
.scf__textarea-wrapper {
	width: 100%;
}
.scf__textarea-field {
	display: block;
	border: 1px solid var(--color-grey-border);
	border-radius: 4px;
	padding: 13px 20px;
	line-height: 1.5;
	width: 100%;
	min-height: 130px;
	resize: vertical;
	font-size: 16px;
}
.scf__textarea-field::placeholder {
	color: var(--color-grey-text);
}
.scf__input-field:focus,
.scf__textarea-field:focus {
	border-color: rgba(0, 0, 0, .7);
    box-shadow: 0 0 3px rgba(0, 0, 0, .3);
    outline: none;
}
.scf__agreenment {
	width: calc(100% - 195px);
	font-size: 14px;
	line-height: 1.43;
	color: var(--color-grey-text);
}
.scf__btn,
.scf__agreenment {
	margin-top: 20px;
}
.scf__agreenment > :first-child {
	margin-bottom: 10px;
}

/* -- Section Contact - Tablet */
@media screen and (max-width: 1023px) {
	.sc__header,
	.scf__input-wrapper,
	.scf__agreenment {
		width: 100%;
		margin-top: 0;
	}
}

/* -- Section Contact - Mobile */
@media screen and (max-width: 767px) {
	.sc__layout-wrapper {
		gap: 50px;
	}
	.sc__form-wrapper {
		flex-direction: column;
		gap: 50px;
	}
}

/* -- Section Title */
.section-title {
	background: var(--sky-gradient);
	text-align: center;
	padding-top: calc(var(--page-section-py) + 85px);
}

/* -- Section Content */
.section-content {
	font-size: 20px;
}
.sct__layout-wrapper {
	max-width: 850px;
}
.sct__layout-wrapper .elementor-widget-container > :not(:last-child) {
	margin-bottom: 30px;
}
.section-content h2 {
	font-size: 26px;
	line-height: 1.5;
	font-weight: 500;
}
.section-content h2:not(:first-child) {
	margin-top: 45px;
}
body .section-content a {
	text-decoration: dashed underline 1px;
}
.section-content a:hover,
.section-content a:active {
	text-decoration: solid underline 1px;
}

/* -- Section Content - Mobile */
@media screen and (max-width: 767px) {
	.section-content {
		font-size: 18px;
	}
	.sct__layout-wrapper .elementor-widget-container > :not(:last-child) {
		margin-bottom: 28px;
	}
	.section-content h2 {
		font-size: 23px;
	}
	.section-content h2:not(:first-child) {
		margin-top: 42px;
	}
}

/* -- Section Error */
.section-error {
	background: var(--sky-gradient);
	min-height: 100vh;
	display: flex;
	align-items: center;
	text-align: center;
}
.se__layout-wrapper {
	max-width: 600px;
}
.se__title {
	font-size: 86px;
	font-weight: 500;
	line-height: 1.085;
	margin-bottom: 40px;
}
.se__subtitle {
	font-size: 23px;
	line-height: 1.5;
	margin-bottom: 40px;
}

/* -- Section Error - Tablet */
@media screen and (max-width: 1023px) {
	.se__title {
		font-size: 57px;
	}
	.se__subtitle {
		font-size: 21px;
	}
}

/* -- Section Error - Mobile */
@media screen and (max-width: 767px) {
	.se__title {
		font-size: 39px;
		margin-bottom: 30px;
	}
	.se__subtitle {
		font-size: 20px;
		margin-bottom: 30px;
	}
}

/* -- Page Footer */
.page-footer {
	background: var(--color-grey-bg);
	padding: 40px 0;
	color: var(--color-grey-text);
}
.pf__layout-wrapper {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap: 60px;
	font-size: 16px;
	font-weight: 500;
}
.pf__layout-wrapper:after {
	content: '';
	display: block;
	width: 48px;
}
.pf__copyright-col {
	max-width: 517px;
}

/* -- Page Footer - Tablet */
@media screen and (max-width: 1023px) {
	.pf__layout-wrapper {
		flex-direction: column;
		gap: 30px;
	}
	.pf__layout-wrapper:after {
		display: none;
	}
	.pf__layout-wrapper > * {
		width: 100%;
	}
	.pf__copyright-col {
		max-width: none;
	}
}

/* Scroll Button */
.scroll-btn-wrapper {
	position: fixed;
	inset: auto 0 0;
}
.sbt__layout-wrapper {
	position: relative;
}
.scroll-btn {
	position: absolute;
	inset: auto 0 30px auto;
	transform: translate3d(0, calc(100% + 30px), 0);
	transition: transform .45s var(--ease-in-out-circ);
}
.scroll-btn.scroll-btn--shown {
	transform: translate3d(0, 0, 0);
}