/* global rules */
:root {
	--regular-font-weight: 400;
	--semi-font-weight: 600;
	--bold-font-weight: 700;
	--black-font-weight: 900;
	--orange-color: #f14f26;
	--orange-accent-color: #f06643;
	--grey-color: #d1d1d1;
	--grey-accent-color: #f1f1f1;
	--textcolor-accent-color: #474747;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}
body {
	margin: 0 0;
	font-family: "Inter", sans-serif;
}
a {
	text-decoration: none;
}
.fixed--quote {
	display: block;
	position: fixed;
	bottom: 15vh;
	left: -3.75rem;
	transform: rotate(-90deg);
	z-index: 9999;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
@media (max-width: 1000px) {
	.fixed--quote {
		left: -3rem;
	}
}

.btn-container {
	position: relative;
}
.fixed--quote::after {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	top: -100%;
	left: 0%;
	background-color: inherit;
}
.fixed--quote:hover {
	transition: 0.5s ease-out;
	left: -2.75rem;
}
.header {
	background-color: #fff;
	position: sticky;
	top: 0;
	z-index: 4000;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
.header--container {
	display: flex;
	height: 4.5rem;
	align-items: center;
	justify-content: space-around;
}

.header--navigation ul {
	display: flex;
	flex-direction: row;
	gap: 0.5rem;
}
.header--navigation-link {
	list-style-type: none;
	font-size: 1.25rem;
}
.header--navigation-link a {
	padding: 0.5rem 1rem;
	color: #000;
	border: 1px solid black;
}
.header--navigation-link #current-page {
	background-color: #000;
	color: #fff;
}
.header--navigation-link a:hover {
	background-color: #000;
	color: #fff;
	transition: 0.2s ease-in;
}

.header--navigation-mobile img {
	max-width: 2rem;
}
.logo-full,
.logo-small {
	max-height: 64px;
}
.logo-small {
	display: none;
}
.btn {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: nowrap;
	font-weight: var(--semi-font-weight);
	font-size: 1.25rem;
	background-color: var(--orange-color);
	padding: 0.75rem 1rem;
	color: #fff;
}
.mobile-button-footer {
	display: flex;
	flex-basis: 0%;
	justify-content: center;
	/* flex-wrap: wrap; */
}

@media (max-width: 1000px) {
	.btn {
		font-size: 1rem;
	}
}
.btn:hover {
	background-color: var(--orange-accent-color);
	transition: 0.2s ease-out;
}
.phone-icon {
	margin-right: 0.5rem;
}
.bold--000 {
	font-weight: var(--semi-font-weight);
	color: #000;
}
.bold--fff {
	font-weight: var(--bold-font-weight);
	color: rgb(255, 255, 255);
}
#hamline {
	border: 1px solid black;
	width: 34px;
	margin: 6px;
}
.hamburger--menu {
	display: none;
	background: none;
	border: none;
}
@media (min-width: 1000px) {
	#display--none-small {
		display: none;
	}
}
@media (max-width: 1000px) {
	#display--none-hero {
		display: none;
	}
	#display--none-large {
		display: none;
	}
	.header--navigation {
		top: 100%;
		left: 50%;
		transform: translateX(-50%);
		transform: translateY();
		position: absolute;
		z-index: 10;
	}
	.header--navigation ul {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		gap: 3rem;
		border: none;
		padding: 3rem 0;
	}
	.header--navigation-link {
		font-size: 2.25rem;
	}
	.header--navigation::before {
		content: "";
		position: absolute;
		background-color: #fff;
		width: 100vw;
		height: 100vh;
		top: 0;
		left: 50%;
		transform: translate(-50%);
		z-index: -1;
		box-shadow: inset 0px 5px 20px rgba(0, 0, 0, 0.253);
	}
	#display--none {
		display: none;
	}
	.phone-icon {
		margin-right: 0rem;
	}
	.header--container {
		align-items: center;
		margin-inline: 0.75rem;
		justify-content: space-between;
	}
	.logo-full {
		display: none;
	}
	.logo-small {
		display: block;
	}
	.menu-line {
		display: flex;
		flex-direction: column;
	}
	.hamburger--menu {
		display: block;
	}
}

/* ---ARROW ANIMATION--- */
.down-arrow_container {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.down-arrow_1,
.down-arrow_2 {
	height: 40px;
	width: 3px;
	background-color: black;
	border-radius: 5px;
	margin: 15px;
}
.down-arrow_1 {
	transform: rotate(-60deg);
}
.down-arrow_2 {
	transform: rotate(60deg);
}
.down-arrow_3,
.down-arrow_4 {
	height: 40px;
	width: 3px;
	background-color: black;
	border-radius: 5px;
	margin: 15px;
}
.down-arrow_3 {
	transform: rotate(-60deg);
}
.down-arrow_4 {
	transform: rotate(60deg);
}
.down-arrow_1_container,
.down-arrow_2_container {
	display: flex;
	height: 20px;
}
.down-arrow_1_container,
.down-arrow_2_container {
	transform: translateY(-180%);
}
.down-arrow_1_container {
	animation: arrowOne 2.5s ease-in infinite;
}
.down-arrow_2_container {
	animation: arrowTwo 2.5s ease-in infinite;
}
@keyframes arrowOne {
	0% {
		opacity: 0;
		transform: translateY(-200%);
	}
	50% {
		opacity: 1;
	}
	100% {
		opacity: 0;
		transform: translateY(100%);
	}
}
@keyframes arrowTwo {
	0% {
		opacity: 0;
		transform: translateY(-200%);
	}
	50% {
		opacity: 1;
		transform: translateY(-200%);
	}
	100% {
		opacity: 0;
		transform: translateY(-50%);
	}
}
@media (max-width: 1000px) {
}
.down-arrow {
	position: absolute;
	z-index: 10;
	bottom: 0%;
	left: 50%;
	transform: translateX(-50%);
}
/* ---ARROW ANIMATION--- */

/* footer / section four */

.section--four-container {
	max-width: 900px;
	margin: 0 auto;
	padding: 2rem 1rem;
}
.section--four-header {
	margin-top: 0;
	font-size: 2.5rem;
	line-height: 100%;
	font-weight: var(--bold-font-weight);
}
.section--four-paragraph {
	font-size: 1.25rem;
}
.foot-section--wrapper {
	background: linear-gradient(
		145deg,
		rgba(246, 246, 246, 1) 0%,
		rgba(209, 209, 209, 1) 79%,
		rgba(164, 164, 164, 1) 79%
	);
	position: relative;
	padding-bottom: calc(34px + 4rem);
}
@media (max-width: 1000px) {
	.foot-section--wrapper {
		background: linear-gradient(
			180deg,
			rgba(246, 246, 246, 1) 0%,
			rgba(209, 209, 209, 1) 65%,
			rgba(164, 164, 164, 1) 80%
		);
	}
	.section--four-header {
		margin-top: 0;
		font-size: 2rem;
	}
}
.section--four {
	text-align: center;
	line-height: 200%;
}
.foot--icon-email,
.foot--icon-insta,
.foot--icon-facebook {
	max-height: 34px;
}
.social--icons {
	margin: 4rem auto;
}
footer {
	display: flex;
	flex: 1 1 100%;
	/* flex-direction: row; */
	align-items: center;
	justify-content: center;
	max-height: 4rem;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
}
.foot--logo {
	right: 0%;
}
/* footer section */
