:root {
	/* --- COLORS --- */
	--color-bg: #0c0c0c;
	--color-text: #9c9c9c;
	--color-text-inv: #131212;
	--color-border: #646464;
	--color-focus: #9c9c9c;
	--color-error: #b10000;

	/* --- TYPOGRAPHY --- */
	/*
      Font: Clash Display
      License: Free for Commercial Use
      Link: https://befonts.com/clash-display-font.html
    */
	--font-reg: 'Clash-Display-Regular';
	--font-med: 'Clash-Display-Medium';

	/* --- LAYOUT --- */
	--max-w: 1600px;
	
	/* --- BORDERS & RADIUS --- */
	--radius-xs: 3px;
	--radius-sm: 5px;
	--radius-pill: 100px;

	/* --- Z-INDEX --- */
	--z-footer: 1;
	--z-content: 4;
	--z-navbar: 5;
	--z-menu: 99;
	--z-burger: 100;

	/* --- TRANSITIONS --- */
	--trans-fast: 0.15s ease;
	--trans-std: 0.3s ease;
	--trans-std-in: 0.3s ease-in;
	--trans-std-in-out: 0.3s ease-in-out;
}

@font-face {
	font-family: Clash-Display-Medium;
	src: url(/assets/font/ClashDisplay-Medium.woff2);
	font-display: swap;
}

@font-face {
	font-family: Clash-Display-Regular;
	src: url(/assets/font/ClashDisplay-Regular.woff2);
	font-display: swap;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend, table, caption,
tbody, tfoot, thead, tr, th, td, article,
aside, canvas, details, embed, figure,
figcaption, footer, header, hgroup, menu,
nav, output, ruby, section, summary, time,
mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}

blockquote, q {
	quotes: none;
}

blockquote::before, blockquote::after,
q::before, q::after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

*, *:before, *:after {
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

html {
	text-size-adjust: 100%;
	text-rendering: optimizeLegibility;
	-webkit-tap-highlight-color: transparent;
}

a {
	text-decoration: none;
	color: inherit;
}

p {
	line-height: 130%;
}

ol,
ul,
li {
	list-style: none;
}

body {
	background-color: var(--color-bg);
	color: var(--color-text);
	font-family: var(--font-reg);
	font-size: 19px;
	line-height: 1;
	max-width: var(--max-w);
	margin: 0 auto;
	overflow-x: hidden;
}

.main-content {
	position: relative;
	background-color: var(--color-bg);
	z-index: var(--z-content);
}

[data-fade-section] {
	opacity: 0;
	transition: opacity 0.3s ease-in;
	will-change: opacity;
}

.fadeIn {
	opacity: 1;
}

.fadeOut {
	opacity: 0;
}

img[data-zoom-out] {
	width: 100%;
	height: auto;
	display: block;
	transform-origin: center center;
	transform: scale(1.05);
	opacity: 0.5;
	transition: transform 0.3s ease, opacity 0.3s ease;
	will-change: transform, opacity;
}

img[data-zoom-out].animate-zoom-out {
	transform: scale(1);
	opacity: 1;
}

[data-blur-out] {
	filter: blur(8px);
	transition: filter 0.3s ease;
	will-change: filter;
}

.un-blur {
	filter: blur(0);
}

body:not(.nav-open) .nav-parent.nav-hidden {
	transform: translateY(-100%);
}

._link, 
.btn_outlined {
    text-transform: uppercase;
    align-items: center;
    color: var(--color-text);
    display: inline-flex;
    width: max-content;
}

._link {
    --icon-size: 13px;
    gap: .5rem;
    transition-duration: .3s;
    transition-property: background-size, opacity;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    background-image: linear-gradient(currentColor, currentColor);
    background-position: 0% 100%;
    background-repeat: no-repeat;
    background-size: 0% 1px;
    padding-bottom: .15rem;
}

.btn_outlined {
    --icon-size: 13px;
    gap: .75rem;
    cursor: pointer;
    font-size: inherit;
    font-family: var(--font-reg);
    text-decoration: none;
    border: 1px solid var(--color-border);
    background-color: transparent;
    border-radius: var(--radius-pill);
    padding: .75rem 1rem;
    transition: all 0.25s ease-in;
}

._link .btn_icon,
.btn_outlined .btn_icon {
    display: inline-block;
    overflow: hidden;
    position: relative;
    width: var(--icon-size);
    height: var(--icon-size);
    flex-shrink: 0;
}

._link .btn_icon::before,
._link .btn_icon::after,
.btn_outlined .btn_icon::before,
.btn_outlined .btn_icon::after {
    background-color: currentColor;
    content: "";
    mask-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHdpZHRoPSc5JyBoZWlnaHQ9JzknIGZpbGw9J25vbmUnPjxwYXRoIGZpbGw9JyNmZmYnIGQ9J004LjM1NCA4aC0xVjEuNzA3TC43MDcgOC4zNTQgMCA3LjY0NiA2LjY0NiAxSC4zNTRWMGg4eicvPjwvc3ZnPg==");
    mask-position: center;
    mask-repeat: no-repeat;
    mask-size: var(--icon-size) var(--icon-size);
    top: 0;
    left: 0;
    position: absolute;
    width: var(--icon-size);
    height: var(--icon-size);
    transition-duration: .25s;
    transition-property: opacity, transform;
    transition-timing-function: ease-out;
}

._link .btn_icon::before,
.btn_outlined .btn_icon::before {
    opacity: 1;
    transform: translate(0px, 0px);
    transition-delay: .2s;
}

._link .btn_icon::after,
.btn_outlined .btn_icon::after {
    opacity: 0;
    transform: translate(-4px, 4px);
    transition-delay: 0s;
}

.nav-parent {
	max-width: var(--max-w);
	width: 100%;
	background: var(--color-bg);
	margin: 0 auto;
	position: fixed;
	top: 0;
	z-index: var(--z-navbar);
	transition: transform 0.4s ease-in-out;
}

.nav-parent .nav-wrapper {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 0 .5rem;
	padding: .5rem 0;
}

.nav-parent .nav-wrapper .brand {
    display: block;
	font-family: var(--font-med);
	text-transform: uppercase;
	font-size: 1.35rem;
}

.nav-parent .nav-wrapper .main-nav {
	position: fixed;
	top: 0;
	width: 100%;
	height: 100%;
	right: -100%;
	transition: right 0.15s ease;
	background: var(--color-bg);
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: space-between;
	padding: 5rem .5rem 2rem;
	box-sizing: border-box;
	z-index: var(--z-menu);
}

.nav-parent .nav-wrapper .main-nav.active {
	right: 0;
}

.nav-parent .nav-wrapper .main-nav ul {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	list-style: none;
	margin: 0;
	padding: 0;
	width: 100%;
	gap: 1rem;
}

.nav-parent .nav-wrapper .main-nav ul li a {
    display: inline-block;
	position: relative;
	font-size: 2rem;
	text-transform: uppercase;
	transition: all 0.3s ease;
}

.nav-parent .nav-wrapper .burger {
	display: flex;
	background: transparent;
	width: 26px;
	height: 14px;
	cursor: pointer;
	border: 0;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	z-index: var(--z-burger);
	position: relative;
}

.nav-parent .nav-wrapper .burger .bar {
	width: 26px;
	height: 1.6px;
	background: var(--color-text);
	transform-origin: center;
	transition: all .15s ease;
}

.nav-parent .nav-wrapper .burger.active .bar:nth-child(1) {
	transform: translateY(5px) rotate(45deg);
}

.nav-parent .nav-wrapper .burger.active .bar:nth-child(2) {
	transform: translateY(-5px) rotate(-45deg);
}

.nav-parent .nav-wrapper .mobile-socials {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	width: 100%;
	gap: .5rem;
}

.hero-container {
	display: flex;
	flex-direction: column;
	padding: 12rem 0 10rem;
	margin: 0 .5rem;
	gap: 1rem;
}

.hero-container h1 {
    font-family: var(--font-med);
	text-transform: uppercase;
	font-size: 2.8rem;
}

.hero-container p,
.section-header p {
    text-transform: uppercase;
	max-width: 90%;
}

.hero-container .btn-group,
#about .btn-group {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	padding-top: 1rem;
	gap: .5rem;
}

#about h2,
#services h2,
#prices h2,
#work h2,
#contact h2,
#quotes h2{
	font-family: var(--font-med);
	text-transform: uppercase;
	font-size: 2.4rem;
}

#about, 
#services, 
#work, 
#prices, 
#contact, 
#quotes {
	display: flex;
	padding: 3rem 0;
	margin: 0 .5rem;
	flex-direction: column;
	gap: 2rem;
}

.section-header {
    display: flex;
	flex-direction: column;
	gap: 1rem;
}

#about .about-grid {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.5rem;
}

#about .about-text {
	display: flex;
	flex-direction: column;
	order: 2;
	gap: 1rem;
}

#about .btn-group {
  padding-top: 2rem;
}

#about .about-grid .about-img-container {
	display: flex;
	justify-content: center;
	order: 1;
	width: 100%;
}

#about .about-grid .about-img-container #imageContainer {
	position: relative;
	width: 100%;
	max-width: 30rem;
	aspect-ratio: 1 / 1;
	height: auto;
	cursor: pointer;
}

#about .about-grid .about-img-container canvas {
	display: block;
	border-radius: var(--radius-sm);
	width: 100%;
	height: 100%;
}

#services .services-grid {
	display: grid;
	grid-template-columns: 1fr;
	grid-auto-rows: auto;
	counter-reset: service;
	gap: 1.5rem;
}

#services .services-card {
	padding: 1rem;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-sm);
	counter-increment: service;
	transition: 0.25s ease-in;
	gap: 3rem;
}

#services .services-card::before {
	content: counter(service, decimal-leading-zero);
	display: block;
	font-size: 4rem;
}

#services .services-card h3,
#prices .prices-card-head h3,
#work .wc-card h3 {
    font-family: var(--font-med);
	text-transform: uppercase;
	font-size: 2rem;
}

#services .services-card p {
	margin-top: auto;
}

#work .wc-grid, 
#prices .prices-grid, 
#quotes .quotes-box {
	display: grid;
	grid-template-columns: 1fr;
	grid-auto-rows: auto;
	gap: 1.5rem;
}

#work .wc-card,
#prices .prices-card-head {
	display: flex;
    flex-direction: column;
    gap: .5rem;
}

#prices .prices-card-head span,
#work .wc-card h3 {
    padding-top: .5rem;
}

#work .wc-image-wrapper {
	overflow: hidden;
	aspect-ratio: 1 / 1;
	border-radius: var(--radius-sm);
}

#work .wc-image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

#work .wc-card ._link {
    --icon-size: 18px;
    font-size: 1.6rem;
    display: flex;
    width: max-content;
}

#prices .prices-card {
	padding: 1rem;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-sm);
	transition: 0.25s ease-in;
	gap: 3rem;
}

#prices .prices-card-item {
	display: flex;
	flex-direction: column;
	margin-top: auto;
	gap: 3rem;
}

#prices .prices-card  .prices-card-item ul {
	list-style: none;
	padding-left: 0;
}

#prices .prices-card .prices-card-item ul li {
	line-height: 150%;
}

#prices .info {
	display: flex;
	flex-direction: row;
	align-items: center;
	margin-top: 0;
	font-size: 16px;
	gap: .5rem;
}

#prices .info span {
    display: flex;
    height: 1.25rem;
	width: 1.25rem;
	min-width: 1.25rem;
	align-items: center;
	background-color: var(--color-text);
	border-radius: 2em;
	color: #0c0c0c;
	justify-content: center;
}

#quotes .quotes-card {
    display: flex;
	flex-direction: column;
	padding: 1rem;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-sm);
	transition: 0.25s ease-in;
	gap: 3rem;
}

#quotes .quotes-box .quotes-card svg {
    width: 5rem;
    height: auto;
}

#quotes .quotes-box .quotes-card cite {
    margin-top: auto;
    text-transform: uppercase;
}

#contact .contact-box {
	display: flex;
    flex-direction: column;
    gap: 5rem;
}

#contact .contactForm-box {
	display: flex;
	flex-direction: column;
	margin: 0 auto;
	width: 100%;
}

#contact .contact-box-desc {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    padding: 3rem 0 0;
    border-top: 1px solid var(--color-border);
    gap: 3rem;
}

#contact .mail-phone-btn,
#contact .desktop-social-btn {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1.5rem;
}

#contact .mail,
#contact .tel  {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

#contact .mail-phone-btn a {
    font-family: var(--font-med);
    text-transform: uppercase;
    text-decoration: underline;
    transition: 0.25s ease-in;
    font-size: 1.6rem;
}

footer {
	max-width: var(--max-w);
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	height: auto;
	z-index: var(--z-footer);
	background-color: var(--color-bg);
	margin: 0 auto;
	padding: 0 .5rem;
	padding-bottom: env(safe-area-inset-bottom);
	will-change: transform;
}

footer .footer-wrapper {
	display: flex;
    flex-direction: column-reverse;
    gap: .5rem;
}

footer .copyright {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	text-transform: uppercase;
	font-size: .75rem;
	border-top: 1px solid var(--color-border);
	padding: 1rem 0;
	gap: .75rem;
}

footer .copyright a {
    transition: 0.25s ease-in;
}

footer .heart-box {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: .25rem;
}

footer .heart-box svg {
	height: .85em;
	fill: var(--color-text);
	display: inline-block;
	width: auto;
}

footer .footer-legal {
    display: block;
}

footer .footer-brand-svg {
	width: 100%;
	height: auto;
}

footer .footer-brand-svg text {
	font-family: var(--font-med);
	font-size: 248px;
	font-weight: 600;
	fill: var(--color-text);
	text-transform: uppercase;
	display: block;
}

/* ============================================================
   Contact Form
   ============================================================ */

.contact-form {
	display: flex;
	flex-direction: column;
	width: 100%;
	gap: .6rem;
}

.contact-form label {
	font-size: inherit;
	color: var(--color-text);
	text-transform: uppercase;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea,
.contact-form select {
	background: transparent;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-sm);
	padding: 1rem;
	color: var(--color-text);
	font-size: 1rem;
	font-family: var(--font-reg);
	outline: none;
	width: 100%;
	box-sizing: border-box;
	transition: border-color 0.2s;
}

.contact-form textarea {
	min-height: 20rem;
}

#contactMessage {
	resize: none;
}

.contact-form select {
	appearance: none;
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='21' height='10' fill='none' viewBox='0 0 21 10'><path stroke='%239c9c9c' d='m1 1 9.5 8L20 1'/></svg>");
	background-repeat: no-repeat;
	background-position: right 10px center;
	background-size: 1.5em;
	background-color: var(--color-bg);
	color: var(--color-text);
	cursor: pointer;
	padding-right: 30px;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
	border-color: var(--color-focus);
}

.contact-form .gdpr-checkbox input[type="checkbox"]:focus {
    border-color: var(--color-focus);
}

.contact-form input.input-error,
.contact-form textarea.input-error,
.contact-form select.input-error {
	border-color: var(--color-error);
}

.contact-form .gdpr-checkbox input[type="checkbox"].input-error {
    border-color: var(--color-error);
}

.error-message {
	color: var(--color-error);
	font-size: 13px;
	margin-top: -5px;
	min-height: 15px;
}

#formMessage {
	display: none;
	margin-top: 10px;
	font-size: 14px;
}

#formMessage.success {
	color: inherit;
	display: block;
}

#formMessage.error {
	background: none;
	display: block;
	color: var(--color-error);
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: inset(50%);
    white-space: nowrap;
    border: 0;
    left: -9999px;
}

.contact-form .gdpr-checkbox {
	display: flex;
	align-items: center;
	font-size: inherit;
	gap: 1rem;
}

.contact-form .gdpr-checkbox input[type="checkbox"] {
	appearance: none;
	width: 25px;
	height: 25px;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-xs);
	background: transparent;
	cursor: pointer;
	position: relative;
	flex-shrink: 0;
	transition: border-color 0.2s, background-color 0.2s;
}

.contact-form .gdpr-checkbox input[type="checkbox"]::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 7px;
	height: 14px;
	border: solid var(--color-text);
	border-width: 0 2px 2px 0;
	transform: translate(-50%, -60%) rotate(45deg);
	opacity: 0;
	transition: opacity 0.2s ease-in-out;
}

.contact-form .gdpr-checkbox input[type="checkbox"]:checked {
	background-color: transparent;
}

.contact-form .gdpr-checkbox input[type="checkbox"]:checked::after {
	opacity: 1;
}

.contact-form .gdpr-checkbox input[type="checkbox"]:focus-visible {
	outline: 2px solid #f0f0f0;
}

.contact-form .gdpr-checkbox label {
	color: var(--color-text);
	text-transform: uppercase;
}

.contact-form .gdpr-checkbox label a {
    cursor: pointer;
	color: var(--color-text);
	text-decoration: underline;
	line-height: 130%;
}

.form-group {
	display: flex;
	flex-direction: column;
	gap: 10px;
	width: 100%;
}

/* ============================================================
   Cookie Consent
   ============================================================ */

#cookieConsent {
	position: fixed;
	bottom: 1rem;
	right: 1rem;
	width: 100%;
	max-width: 30rem;
	background: inherit;
	border: 1px solid var(--color-border);
	padding: 1rem;
	z-index: 999;
	display: none;
	border-radius: var(--radius-sm);
}

#cookieConsent.show {
	display: block;
	animation: slideUp 0.3s ease-out 1s both;
}

@media (max-width: 600px) {
	#cookieConsent {
		left: 1rem;
		right: 1rem;
		width: auto;
		max-width: none;
	}
}

@keyframes slideUp {
	from {
		transform: translateY(100%);
		opacity: 0;
	}

	to {
		transform: translateY(0);
		opacity: 1;
	}
}

.cookie-content {
	display: flex;
    flex-direction: column;
    gap: 2rem;
}

.cookie-content h3 {
    font-family: var(--font-med);
    font-size: 1.8rem;
    text-transform: uppercase;
}

.cookie-msg {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cookie-msg a {
	text-decoration: underline;
	cursor: pointer;
}

.cookie-btns {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.c-btn {
	padding: .75rem 1rem;
	border-radius: var(--radius-pill);
	border: 1px solid var(--color-border);
	background: transparent;
	color: inherit;
	cursor: pointer;
	font-size: inherit;
	font-family: inherit;
	text-transform: uppercase;
	transition: 0.3s;
}

#cookieModal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--color-bg);
	z-index: 1000;
	justify-content: center;
	align-items: center;
}

#cookieModal.show {
	display: flex;
}

.modal-box {
	background: transparent;
	border-radius: var(--radius-sm);
	border: 1px solid var(--color-border);
	padding: 1rem;
	max-width: 500px;
	width: 90%;
	max-height: 90vh;
	overflow-y: auto;
}

.modal-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
	border-bottom: 1px solid var(--color-border);
	padding-bottom: 1rem;
}

.modal-header h4 {
    font-family: var(--font-med);
    text-transform: uppercase;
    font-size: 1.4rem
}

.modal-close {
	background: none;
	border: none;
	font-size: 40px;
	color: inherit;
	cursor: pointer;
}

.cookie-option {
	display: flex;
	align-items: flex-end;
	margin-bottom: 1rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid var(--color-border);
	gap: 1rem;
}

.option-text h4 {
    font-family: var(--font-med);
	margin: 0 0 1rem 0;
	text-transform: uppercase;
	font-size: 1.2rem
}

.option-text p {
	margin: 0;
}

.switch {
	position: relative;
	display: inline-block;
	flex-shrink: 0;
	width: 40px;
	height: 24px;
}

.switch input {
	opacity: 0;
	width: 0;
	height: 0;
}

.slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: var(--color-text);
	transition: .3s;
	border-radius: 24px;
}

.slider:before {
	position: absolute;
	content: "";
	height: 16px;
	width: 16px;
	left: 4px;
	bottom: 4px;
	background-color: var(--color-bg);
	transition: .3s;
	border-radius: 50%;
}

.modal-actions {
    margin-top: 20px;
    text-align: right;
}

input:checked+.slider {
	background-color: var(--color-text);
}

input:checked+.slider:before {
	transform: translateX(16px);
}

input:disabled+.slider {
	cursor: not-allowed;
}

#link-cookie-trigger {
    position: fixed;
    bottom: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
    border: 0;
    z-index: 10;
    cursor: pointer;
    text-decoration: none;
    padding: .5rem;
}

#link-cookie-trigger::before {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239c9c9c' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 2a10 10 0 1 0 10 10 4 4 0 0 1-5-5 4 4 0 0 1-5-5Z'/%3E%3Ccircle cx='8.5' cy='8.5' r='0.5' fill='%239c9c9c'/%3E%3Ccircle cx='16' cy='15.5' r='0.5' fill='%239c9c9c'/%3E%3Ccircle cx='12' cy='12' r='0.5' fill='%239c9c9c'/%3E%3Ccircle cx='11' cy='17' r='0.5' fill='%239c9c9c'/%3E%3Ccircle cx='7' cy='14' r='0.5' fill='%239c9c9c'/%3E%3C/svg%3E");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

@media (min-width: 576px) {
	
	.nav-parent .nav-wrapper {
		margin: 0 1rem;
		padding: 1rem 0;
	}
	
	.nav-parent .nav-wrapper .main-nav {
		padding: 8rem 1rem 4rem;
	}
	
	.nav-parent .nav-wrapper .main-nav ul li a {
		font-size: 2.35rem;
	}
	
	.hero-container {
		padding: 18rem 0 12rem;
		margin: 0 1rem;
	}
	
	.hero-container h1 {
		font-size: 3.5rem;
	}
	
	.hero-container p,
	.section-header p {
		max-width: 60%;
	}
	
	.hero-container .btn-group,
    #about .btn-group {
        flex-direction: row;
    }
	
	#about h2, 
	#services h2, 
	#prices h2, 
	#work h2, 
	#contact h2, 
	#quotes h2 {
		font-size: 3rem;
	}
	
	#about, 
	#services, 
	#work, 
	#prices, 
	#contact, 
	#quotes {
		padding: 4rem 0;
		margin: 0 1rem;
		gap: 4rem;
	}
	
	footer {
	    padding: 0 1rem;
	}
}

@media (min-width: 768px) {
    
	.nav-parent .nav-wrapper {
		margin: 0 1.5rem;
		padding: 1.5rem 0;
	}
	
	.nav-parent .nav-wrapper .main-nav {
		padding: 8rem 1.5rem 4rem;
	}
	
	.nav-parent .nav-wrapper .main-nav ul {
		gap: 1.5rem;
	}
	
	.nav-parent .nav-wrapper .main-nav ul li a {
		font-size: 2.75rem;
	}
	
	.hero-container h1 {
		font-size: 4rem;
	}
	
	.hero-container p,
	.section-header p {
		font-size: 1.3rem;
	}
	
	.hero-container {
		padding: 25rem 0 20rem;
		margin: 0 1.5rem;
	}
	
	#about h2, 
	#services h2, 
	#prices h2, 
	#work h2, 
	#contact h2, 
	#quotes h2 {
		font-size: 3.5rem;
	}
	
	#about, 
	#services, 
	#work, 
	#prices, 
	#contact, 
	#quotes {
		margin: 0 1.5rem;
	}
	
	#about .about-grid {
		display: grid;
		grid-template-columns: 1fr 1fr;
		align-items: start;
	}
    
	#about .about-text {
		order: unset;
	}
	
	#about .about-grid .about-img-container {
		order: unset;
		justify-content: flex-end;
	}
	
	#services .services-card::before {
	    font-size: 5rem;
    }
	
	#services .services-grid, 
	#work .wc-grid, 
	#prices .prices-grid, 
	#quotes .quotes-box {
		grid-template-columns: repeat(2, 1fr);
	}
	
	#prices .info {
		margin-top: -2rem;
	}
	
	#quotes .quotes-box .quotes-card svg {
        width: 6rem;
    }
    
    #contact .contactForm-box {
		width: 75%;
	}
    
    #contact .mail-phone-btn a {
        font-size: 2rem;
    }
    
    #contact .mail-phone-btn,
    #contact .desktop-social-btn {
        justify-content: space-between;
    }
    
	footer {
	    padding: 0 1.5rem;
	}
}

@media (min-width: 1024px) {
    
    body.nav-open {
		overflow-x: visible;
	}
   
	.nav-parent .nav-wrapper .main-nav {
		position: static;
		width: auto;
		height: auto;
		right: auto;
		background: transparent;
		flex-direction: row;
		align-items: center;
		justify-content: center;
		padding: 0;
		z-index: auto;
	}

	.nav-parent .nav-wrapper .main-nav ul {
		flex-direction: row;
		align-items: center;
		gap: 1.5rem;
		width: auto;
	}

	.nav-parent .nav-wrapper .main-nav ul li a {
		font-size: .9rem;
	}

	.nav-parent .nav-wrapper .burger,
	.nav-parent .nav-wrapper .mobile-socials {
		display: none;
	}
	
	.hero-container h1 {
		font-size: 5rem;
	}

	#about h2, 
	#services h2, 
	#prices h2, 
	#work h2, 
	#contact h2, 
	#quotes h2 {
		font-size: 4rem;
	}
}

@media (min-width: 1200px) {
    
    .nav-parent .nav-wrapper {
		margin: 0 2rem;
		padding: 1rem 0;
	}

	.hero-container {
		padding: 13rem 0rem; 
		margin: 0 2rem;
	}

	.hero-container h1 {
		font-size: 6rem;
	}

	.hero-container p {
		max-width: 30rem;
	}
    
	#about h2,
	#services h2,
	#prices h2,
	#work h2,
	#contact h2,
	#quotes h2 {
		font-size: 5.5rem;
	}

	#about, 
	#services, 
	#work, 
	#prices, 
	#contact, 
	#quotes {
		margin: 0 2rem;
		gap: 4rem;
	}
    
	#services .services-grid, 
	#work .wc-grid, 
	#prices .prices-grid, 
	#quotes .quotes-box {
		grid-template-columns: repeat(3, 1fr);
	}
    
	#contact .contactForm-box {
		max-width: 900px;
	}
	
	footer {
		padding: 0 2rem;
	}
	
	.contact-form {
		display: grid;
		grid-template-columns: 1fr 1fr;
		align-items: end;
	}

	#message-group,
	#gdpr-group,
	#submit-group {
		grid-column: 1 / -1;
	}
}

@media screen and (min-width: 250px) and (max-width: 340px) {
  .hero-container h1 {
    font-size: 2.2rem;
  }

  #about h2,
	#services h2,
	#prices h2,
	#work h2,
	#contact h2  {
    font-size: 2rem;
  }
  
  #services .services-card h3, #prices .prices-card-head h3 {
    font-size: 1.7rem;
  }
}

@media (hover: hover) and (pointer: fine) {
    
    ._link:hover,
    ._link:focus-visible,
    .wc-card:hover ._link {
        background-size: 100% 1px;
        opacity: 1;
    }

    .btn_outlined:hover,
    .btn_outlined:focus-visible {
        opacity: 1;
        border: 1px solid var(--color-text);
    }

    ._link:hover .btn_icon::before,
    ._link:focus-visible .btn_icon::before,
    .wc-card:hover .btn_icon::before,
    .btn_outlined:hover .btn_icon::before,
    .btn_outlined:focus-visible .btn_icon::before {
        opacity: 0;
        transform: translate(4px, -4px);
        transition-delay: 0s;
    }

    ._link:hover .btn_icon::after,
    ._link:focus-visible .btn_icon::after,
    .wc-card:hover .btn_icon::after,
    .btn_outlined:hover .btn_icon::after,
    .btn_outlined:focus-visible .btn_icon::after {
        opacity: 1;
        transform: translate(0px, 0px);
        transition-delay: .2s;
    }
 
	.c-btn:hover, 
	.c-btn.accept:hover {
	    background: var(--color-text);
	    color: var(--color-text-inv);
    }
    
    .nav-parent .nav-wrapper .main-nav ul li a:before {
		content: "";
		position: absolute;
		width: 0;
		height: 1px;
		bottom: -2px;
		background: var(--color-text);
		transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
	}
   
	.nav-parent .nav-wrapper .main-nav ul li a:hover:before {
		width: 100%;
	}
	
	#services .services-card:hover,
	#prices .prices-card:hover,
	#quotes .quotes-card:hover {
	    border-color: var(--color-focus);
	}
	
	footer .footer-legal a:hover,
	#contact .mail-phone-btn a:hover {
	    color: var(--color-border);
	}
}

@media (max-width: 1023px) and (orientation: landscape) {
    .nav-parent .nav-wrapper .main-nav {
        padding: 4rem 1rem 1rem;
        justify-content: flex-start;
        gap: 1rem;
    }
    
    .nav-parent .nav-wrapper .main-nav ul {
        gap: .75rem;
    }
    
    .nav-parent .nav-wrapper .main-nav ul li a {
        font-size: 1.4rem;
    }
    
    .nav-parent .nav-wrapper .mobile-socials {
        display: none;
    }
}