/* 1.1.general-setting-pages *************************/
/****************************************************/
:root {
	--pr-color: #fff;
	--second-color: #0a0a0a;
	--muted-color: #9e9e9e;
	--accent-color: #d7b46a;
	--cubicbz: cubic-bezier(.9, 0, .1, 1);
	--fz-big: 60px;
}

* {
	box-sizing: border-box;
	font-family: 'Syne', sans-serif;
	font-weight: 800;
	margin: 0;
	padding: 0;
	font-feature-settings: 'pnum' on, 'lnum' on;
}

body {
	background: var(--second-color);
	color: var(--pr-color);
}

html {
	scroll-behavior: smooth;
}

html,
body {
	overflow-x: hidden;
}

a {
	color: inherit;
	text-decoration: none;
}

p {
	font-weight: 400;
}

/******************************************/
section {
	padding-top: 150px;
	padding-bottom: 50px;
}

.wrapp {
	width: 100%;
	height: auto;
	overflow: hidden;
	z-index: 1;
}

.content {
	width: 100%;
	padding: 0 70px;
}

.char {
	display: inline-block;
}

/* Paralax Effect On GSAP **********************************/
/* header ********/
.header {
	position: relative;
	display: flex;
	padding: 0 70px;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100vh;
}

.header__content {
	position: relative;
	z-index: 3;
	max-width: 980px;
	text-align: center;
}

.header__eyebrow {
	margin-bottom: 18px;
	color: var(--accent-color);
	font-size: 18px;
	font-weight: 800;
	text-transform: uppercase;
}

.header__lead {
	max-width: 680px;
	margin: 26px auto 0;
	color: #d6d6d6;
	font-size: 24px;
	line-height: 1.35;
}

.header__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-top: 34px;
	padding: 16px 24px;
	border: 1px solid var(--accent-color);
	color: var(--accent-color);
	font-size: 15px;
	text-transform: uppercase;
	transition: color .3s var(--cubicbz), background .3s var(--cubicbz);
}

.header__cta:hover {
	background: var(--accent-color);
	color: var(--second-color);
}

.header__marq {
	position: absolute;
	bottom: 0;
	left: 0;
}

.header__marq {
	width: 100%;
	height: auto;
	background: #171717;
	overflow: hidden;
}

.header__marq-wrapp {
	display: flex;
	width: 100%;
	height: auto;
	padding: 8px 70px;
}

.header__marq-txt {
	position: relative;
	flex: 0 0 auto;
	display: inline-block;
	padding-right: 55px;
	margin-right: 15px;
	text-transform: uppercase;
	color: var(--pr-color);
	color: #9e9e9e;
	font-size: 35px;
}

.header__marq-star {
	position: absolute;
	width: 40px;
	height: 40px;
	right: 0;
}

.header__marq-star img {
	display: block;
	width: 100%;
	height: 100%;
}

.title {
	position: relative;
	margin: 0;
	font-size: 85px;
	line-height: .9;
	text-align: center;
	color: var(--pr-color);
	text-transform: uppercase;
	mix-blend-mode: difference;
	z-index: 2;
}

.title_paralax {
	display: inline-block;
	will-change: transform;
}

.title .stroke {
	display: block;
	color: transparent;
	-webkit-text-stroke: 1px var(--pr-color);
}

.header__img {
	position: absolute;
	width: 45%;
	height: 100%;
	top: 0;
	right: 100px;
	clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
	overflow: hidden;
}

.header__img img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.section-title {
	position: relative;
	margin: 0;
	margin-bottom: 60px;
	line-height: .8;
	font-size: 70px;
	text-align: center;
	color: var(--pr-color);
	text-transform: uppercase;
}

.section-title .stroke {
	color: transparent;
	-webkit-text-stroke: 1px var(--pr-color);
}

.section-title__square {
	position: absolute;
	display: inline-block;
	width: 130px;
	height: 130px;
	border: 1px solid #4b4b4b;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: -1;
}

/* about ********/
.about .section-title {
	text-align: left;
}

.about__wrapp {
	display: flex;
	justify-content: space-between;
}

.about__img,
.about__txt {
	width: calc(50% - 35px);
	height: auto;
}

.about__txt {
	padding-right: 70px;
}

.about__p {
	margin-bottom: 22px;
	line-height: 1.4;
	font-size: 20px;
	color: var(--muted-color);
}

.about__img {
	height: 100vh;
	overflow: hidden;
}

.about__img img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* process ********/
.process {
	padding-top: 120px;
}

.process__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.35fr) minmax(320px, .65fr);
	align-items: center;
	gap: 56px;
}

.process__media {
	position: relative;
	overflow: hidden;
	background: #171717;
	aspect-ratio: 16 / 9;
}

.process__media::before {
	content: "";
	position: absolute;
	inset: 18px;
	border: 1px solid rgba(215, 180, 106, .55);
	pointer-events: none;
	z-index: 2;
}

.process__video {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.process__copy {
	color: var(--muted-color);
}

.process__text {
	margin-bottom: 34px;
	font-size: 22px;
	line-height: 1.45;
	color: #d6d6d6;
}

.process__steps {
	list-style: none;
}

.process__steps li {
	padding: 22px 0;
	border-top: 1px solid #2f2e2e;
	font-size: 20px;
	font-weight: 400;
	line-height: 1.35;
}

.process__steps li:last-child {
	border-bottom: 1px solid #2f2e2e;
}

.process__steps span {
	display: inline-block;
	min-width: 58px;
	color: transparent;
	font-weight: 800;
	-webkit-text-stroke: 1px var(--accent-color);
}

/* benefits ********/
.benefits__list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 40px;
	width: 100%;
	height: auto;
}

.benefits__item {
	list-style: none;
	width: calc(33.33% - 27px);
	padding-top: 18px;
	border-top: 1px solid #2f2e2e;
}

.benefits__num {
	display: inline-block;
	font-size: 60px;
	color: transparent;
	-webkit-text-stroke: 1px var(--accent-color);
}

.benefits__p {
	font-size: 20px;
	line-height: 1.4;
	color: var(--muted-color);
}

/* work ********/
.work {
	padding-top: 150px;
}

.work__top {
	position: relative;
}

.work__controls {
	display: none;
	align-items: center;
	gap: 10px;
}

.work__control {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	border: 1px solid #3c3c3c;
	border-radius: 50%;
	background: #151515;
	cursor: pointer;
	transition: border-color .3s var(--cubicbz), background .3s var(--cubicbz);
}

.work__control:hover {
	border-color: var(--accent-color);
	background: #1e1e1e;
}

.work__control:disabled {
	opacity: .35;
	cursor: default;
}

.work__control:disabled:hover {
	border-color: #3c3c3c;
	background: #151515;
}

.work__control img {
	display: block;
	width: 20px;
	height: 20px;
	object-fit: contain;
}

.work__control--prev img {
	transform: rotate(0deg);
}

.work__control--next img {
	transform: rotate(180deg);
}

.work__wrapp {
	display: flex;
	flex-wrap: wrap;
	row-gap: 120px;
	justify-content: space-between;
	padding: 0 120px;
}

.work__item {
	position: relative;
	width: calc(50% - 60px);
	height: 100vh;
}

.work__item-num {
	position: absolute;
	display: inline-block;
	font-size: 70px;
	color: var(--pr-color);
	mix-blend-mode: difference;
	z-index: 2;
}

.work__item-img {
	width: 100%;
	height: 100%;
	overflow: hidden;
	background: #171717;
}

.work__item-img img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* serv ********/
.serv {
	padding-bottom: 90px;
}

.serv .section-title {
	margin-bottom: 34px;
}

.serv__intro {
	max-width: 780px;
	margin: 0 auto 48px;
	text-align: center;
}

.serv__lead {
	font-size: 22px;
	line-height: 1.45;
	color: #d6d6d6;
}

.serv__list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.serv__item {
	position: relative;
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: flex-start;
	gap: 24px;
	min-height: 230px;
	padding: 30px;
	border: 1px solid #2f2e2e;
	border-radius: 8px;
	background: linear-gradient(135deg, rgba(215, 180, 106, .12), rgba(23, 23, 23, .92) 38%, #111);
	overflow: hidden;
	transition: transform .3s var(--cubicbz), border-color .3s var(--cubicbz), background .3s var(--cubicbz);
}

.serv__item::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 3px;
	background: var(--accent-color);
	transform: scaleX(.18);
	transform-origin: left center;
	transition: transform .3s var(--cubicbz);
}

.serv__item:hover {
	transform: translateY(-4px);
	border-color: rgba(215, 180, 106, .55);
	background: linear-gradient(135deg, rgba(215, 180, 106, .18), rgba(23, 23, 23, .95) 42%, #111);
}

.serv__item:hover::before {
	transform: scaleX(1);
}

.serv__item-num {
	display: inline-block;
	grid-column: 1;
	grid-row: 1;
	font-size: 38px;
	line-height: 1;
	color: transparent;
	-webkit-text-stroke: 1px var(--accent-color);
}

.serv__item-arrow {
	display: inline-block;
	grid-column: 3;
	grid-row: 1;
	justify-self: end;
	width: 46px;
	height: 46px;
	opacity: .78;
}

.serv__item-arrow img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	transform: rotate(180deg);
}

.serv__item-txt {
	grid-column: 2;
	grid-row: 1;
	align-self: stretch;
	color: var(--pr-color);
}

.serv__item-text {
	margin-bottom: 18px;
	font-size: 32px;
	line-height: 1.05;
	text-transform: uppercase;
}

.serv__item-desc {
	max-width: 520px;
	font-size: 18px;
	line-height: 1.45;
	color: var(--muted-color);
}

/* footer ********/
.footer {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100vh;
}

.footer__div {
	font-size: clamp(28px, 7vw, 70px);
	letter-spacing: clamp(2px, 1.3vw, 15px);
	color: var(--pr-color);
	text-transform: uppercase;
	white-space: nowrap;
}

.footer__div span {
	display: inline-block;
}

@media (max-width: 1100px) {
	section {
		padding-top: 120px;
	}

	.content,
	.header {
		padding-left: 40px;
		padding-right: 40px;
	}

	.title {
		font-size: 68px;
	}

	.section-title {
		font-size: 55px;
	}

	.about__txt {
		padding-right: 40px;
	}

	.work__wrapp {
		padding: 0 70px;
	}

	.serv__item {
		min-height: 250px;
		padding: 26px;
	}

	.serv__item-text {
		font-size: 28px;
	}
}

@media (max-width: 820px) {
	section {
		padding-top: 90px;
		padding-bottom: 35px;
	}

	.content,
	.header {
		padding-left: 24px;
		padding-right: 24px;
	}

	.header {
		min-height: 100vh;
		height: auto;
		padding-top: 120px;
		padding-bottom: 110px;
	}

	.header__img {
		right: 0;
		width: 100%;
		opacity: .38;
	}

	.header__marq-wrapp {
		padding-left: 24px;
		padding-right: 24px;
	}

	.title {
		font-size: 52px;
	}

	.header__lead {
		font-size: 20px;
	}

	.section-title {
		margin-bottom: 42px;
		font-size: 46px;
		line-height: 1;
		padding: .08em 0;
		text-align: left;
	}

	.process .section-title .stroke,
	.benefits .section-title .stroke {
		display: block;
	}

	.section-title__square {
		width: 96px;
		height: 96px;
	}

	.about__wrapp,
	.process__grid {
		display: flex;
		flex-direction: column;
		gap: 34px;
	}

	.about__img,
	.about__txt {
		width: 100%;
	}

	.about__txt {
		padding-right: 0;
	}

	.about__img {
		height: 60vh;
	}

	.process__grid {
		align-items: stretch;
	}

	.benefits__item {
		width: calc(50% - 20px);
	}

	.work__top {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 16px;
		margin-bottom: 34px;
	}

	.work__top .section-title {
		margin-bottom: 0;
	}

	.work__controls {
		display: flex;
		flex: 0 0 auto;
	}

	.work__wrapp {
		flex-wrap: nowrap;
		justify-content: flex-start;
		gap: 18px;
		row-gap: 0;
		padding: 0 24px 18px;
		overflow-x: auto;
		overscroll-behavior-x: contain;
		scroll-padding: 0 24px;
		scroll-snap-type: x mandatory;
		scrollbar-width: none;
		-webkit-overflow-scrolling: touch;
	}

	.work__wrapp::-webkit-scrollbar {
		display: none;
	}

	.work__item {
		flex: 0 0 76%;
		width: auto;
		height: 64vh;
		min-height: 390px;
		max-height: 620px;
		scroll-snap-align: center;
	}

	.work__item-num {
		top: 16px;
		left: 16px;
		font-size: 54px;
	}

	.work__item-img {
		border-radius: 8px;
	}

	.serv__intro {
		margin-bottom: 34px;
		text-align: left;
	}

	.serv__lead {
		font-size: 20px;
	}

	.serv__list {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.serv__item {
		min-height: 0;
		padding: 28px;
	}

	.serv__item-text {
		font-size: 30px;
	}

	.serv__item-arrow {
		width: 42px;
		height: 42px;
	}

	.footer {
		height: 70vh;
	}

	.footer__div {
		font-size: clamp(30px, 8vw, 48px);
		letter-spacing: clamp(2px, 1vw, 8px);
	}
}

@media (max-width: 520px) {
	.header {
		padding-left: 18px;
		padding-right: 18px;
	}

	.content {
		padding-left: 18px;
		padding-right: 18px;
	}

	.header__eyebrow {
		font-size: 14px;
		line-height: 1.35;
	}

	.title {
		font-size: 42px;
	}

	.header__lead {
		font-size: 18px;
	}

	.header__cta {
		width: 100%;
		max-width: 280px;
		padding: 15px 18px;
	}

	.header__marq-txt {
		font-size: 24px;
	}

	.header__marq-star {
		width: 30px;
		height: 30px;
	}

	.section-title {
		font-size: 38px;
	}

	.about__img {
		height: 52vh;
	}

	.about__p,
	.benefits__p,
	.process__steps li {
		font-size: 18px;
	}

	.process__text {
		font-size: 19px;
	}

	.benefits__item {
		width: 100%;
	}

	.benefits__num,
	.work__item-num {
		font-size: 44px;
	}

	.work__top {
		margin-bottom: 24px;
	}

	.work__controls {
		gap: 8px;
	}

	.work__control {
		width: 40px;
		height: 40px;
	}

	.work__control img {
		width: 18px;
		height: 18px;
	}

	.work__wrapp {
		gap: 14px;
		padding: 0 18px 16px;
		scroll-padding: 0 18px;
	}

	.work__item {
		flex-basis: 84%;
		height: 56vh;
		min-height: 320px;
		max-height: 460px;
	}

	.serv__item {
		grid-template-columns: 1fr auto;
		gap: 18px;
		padding: 22px;
	}

	.serv__item-num {
		font-size: 30px;
	}

	.serv__item-arrow {
		grid-column: 2;
		grid-row: 1;
		width: 36px;
		height: 36px;
		justify-self: end;
	}

	.serv__item-txt {
		grid-column: 1 / -1;
		grid-row: 2;
	}

	.serv__item-text {
		margin-bottom: 12px;
		font-size: 25px;
	}

	.serv__item-desc {
		font-size: 16px;
	}

	.serv__lead {
		font-size: 18px;
	}

	.footer__div {
		font-size: clamp(25px, 8.5vw, 34px);
		letter-spacing: clamp(1px, .6vw, 3px);
	}
}

@media (max-width: 380px) {
	section {
		padding-top: 72px;
	}

	.header,
	.content {
		padding-left: 14px;
		padding-right: 14px;
	}

	.title {
		font-size: 34px;
	}

	.section-title {
		font-size: 32px;
	}

	.work__controls {
		gap: 6px;
	}

	.work__control {
		width: 38px;
		height: 38px;
	}

	.work__wrapp {
		padding: 0 14px 16px;
		scroll-padding: 0 14px;
	}

	.work__item {
		flex-basis: 88%;
		height: 52vh;
		min-height: 300px;
	}

	.serv__item {
		padding: 18px;
	}

	.serv__item-text {
		font-size: 22px;
	}

	.serv__lead {
		font-size: 17px;
	}

	.footer__div {
		font-size: clamp(22px, 8vw, 28px);
		letter-spacing: 1px;
	}
}
