@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

html {
	scroll-behavior: smooth;
}

html:focus-within {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	padding: 0;
	width: 100%;
	font-family: "Montserrat", sans-serif;
	position: relative;
}

a, p, h1, h2, h3, h4, h5, h6 {
	margin: 0;
    text-decoration: none;
    line-height: 1.2;
}
button:focus,
textarea:focus,
select:focus{
	outline: none!important;
	box-shadow: none;
}
input:focus{
	outline: none!important;
}
a:active, a:focus {
  outline: 0;
  outline: none!important;
  -moz-outline-style: none;
}

span, button, img, a {
	transition: .3s all ease;
}

a, span, button {
	display: inline-block;
}

img {
	max-width: 100%;
	height: auto;
}

.wrapper {
	overflow: hidden;
	background-image: url('../images/bg.png');
	min-height: 100vh;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center -120px;
	position: relative;
}
.wrapper:after {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.4);
}

.container {
	position: relative;
	z-index: 2;
}
header .navbar {
	padding: 16px 20px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(4px);
	border-radius: 0 0 10px 10px;
}
header .navbar-brand {
	display: flex;
	align-items: center;
	gap: 0 6px;
	padding: 0;
	margin-right: 0;
}
header .navbar-brand img {
	height: 42px;
}
header .navbar-brand span {
	font-weight: 400;
	font-size: 24px;
	line-height: 100%;
	letter-spacing: -0.04em;
	color: #D7D3D2;
}
header .navbar-collapse {
	justify-content: center;
}
header .navbar .navbar-nav .nav-link {
	font-weight: 400;
	font-size: 18px;
	line-height: 100%;
	letter-spacing: -0.04em;
	color: #D7D3D2;
	padding: 0;
}
header .navbar .navbar-nav {
	gap: 50px;
	margin: 0 auto;
}
header .head-tel {
	display: flex;
	align-items: center;
	gap: 0 10px;
}
header .head-tel a {
	font-weight: 400;
	font-size: 24px;
	line-height: 100%;
	letter-spacing: -0.04em;
	color: #D7D3D2;
}
header .navbar .navbar-nav .nav-link:hover,
header .navbar .navbar-nav .nav-link.active,
header .head-tel a:hover {
	color: #fff;
}
header .navbar .navbar-nav .nav-link {
	position: relative;
}
header .navbar .navbar-nav .nav-link::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -8px;
	height: 1px;
	background: linear-gradient(90deg, rgba(255, 255, 255, 0), #FFC9BF, rgba(255, 255, 255, 0));
	opacity: 0;
	transform: scaleX(.4);
	transition: opacity .3s ease, transform .3s ease;
}
header .navbar .navbar-nav .nav-link.active::after,
header .navbar .navbar-nav .nav-link:hover::after {
	opacity: 1;
	transform: scaleX(1);
}

/* main section */
.main-sec {
	padding: 80px 0 64px;
}
.main-block {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 40px;
}
.main-block .main-left {
	max-width: 711px;
}
.main-block .main-left .h1 {
	font-weight: 500;
	font-size: 60px;
	line-height: 100%;
	letter-spacing: -0.04em;
	color: #FFE5D7;
	margin-bottom: 40px;
}
.main-block .main-left p {
	font-weight: 500;
	font-size: 20px;
	line-height: 100%;
	letter-spacing: -0.04em;
	color: rgba(255, 229, 215, 0.6);
	margin-bottom: 40px;
	max-width: 456px;
}
.brown-btn {
	background: linear-gradient(89.67deg, #3D1714 0.11%, #9D5F4F 50.12%, #532826 101.09%), linear-gradient(360deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 100%);
	border: 1px solid;
	border-image-source: linear-gradient(90deg, #4E332E 0%, #FFC9BF 50%, #4E332E 100%);
	box-shadow: 0px 10px 40px 0px #00000073;
	box-shadow: 0px -20px 20px 0px #00000040 inset;
	padding: 24px;
	border-radius: 40px;
	font-weight: 500;
	font-size: 18px;
	line-height: 100%;
	letter-spacing: -0.04em;
	color: #EBC1B9;
	overflow: hidden;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	isolation: isolate;
}
.brown-btn::after {
	content: "";
	position: absolute;
	inset: -45% auto -45% -70%;
	width: 42%;
	background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 229, 215, .45), rgba(255, 255, 255, 0));
	transform: skewX(-18deg);
	animation: btn-shine 4.8s ease-in-out infinite;
	pointer-events: none;
	z-index: 0;
}
.brown-btn:hover {
	background: linear-gradient(180deg, #3D1714 0.11%, #9D5F4F 50.12%, #532826 101.09%), linear-gradient(360deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 100%);
	color: #fff;
}
@keyframes btn-shine {
	0%, 55% {
		left: -70%;
		opacity: 0;
	}
	65% {
		opacity: 1;
	}
	100% {
		left: 130%;
		opacity: 0;
	}
}
.brown-btn-box {
	border-radius: 40px;
	overflow: hidden;
	max-width: 342px;
	width: 100%;
}

.main-right .main-img {
	max-height: 412px;
	position: relative;
	margin-top: 30px;
}
.main-right .main-img img {
	width: 410px;
	height: auto;
	will-change: transform;
}

/* about section */
.works-sec,
.about-sec {
	padding-top: 80px;
}
.title {
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0 20px;
	margin-bottom: 80px;
}
.title .h2 {
	position: relative;
	font-weight: 400;
	font-size: 40px;
	line-height: 100%;
	letter-spacing: -0.04em;
	text-transform: uppercase;
	color: #D7D3D2;
	margin-bottom: 0;
}
.title .right-line,
.title .left-line {
	width: 240px;
	height: 1px;
}
.title .left-line {
	background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.6) 100%);
	transform-origin: right center;
}
.title .right-line {
	background: linear-gradient(90deg, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0) 100%);
	transform-origin: left center;
}
.title.reveal-item .left-line,
.title.reveal-item .right-line {
	transform: scaleX(0);
	transition: transform .9s ease .2s;
}
.title.reveal-item.is-visible .left-line,
.title.reveal-item.is-visible .right-line {
	transform: scaleX(1);
}

.about-block {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	margin-bottom: 30px;
}
.about-text {
	max-width: 773px;
	margin-left: 20px;
}
.about-text p {
	font-weight: 500;
	font-size: 24px;
	line-height: 200%;
	letter-spacing: -0.04em;
	color: #D3D3E5;
	margin-bottom: 40px;
}
.about-text p span {
	font-weight: 500;
	font-size: 60px;
	line-height: 100%;
	letter-spacing: -0.04em;
	color: #D3D3E5;
	vertical-align: bottom;
	margin-right: 5px;
}

.about-left {
	padding: 40px 20px 30px 80px;
	display: flex;
	align-items: center;
	border: 2px solid #64697B;
	box-shadow: 0px 0px 40px 10px #00000040 inset;
	border-radius: 20px;
	box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 1);
	backdrop-filter: blur(4px);
	position: relative;
	overflow: hidden;
	--glow-x: 50%;
	--glow-y: 50%;
}
.about-left::before,
.about-right::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at var(--glow-x) var(--glow-y), rgba(255, 201, 191, .2), rgba(255, 201, 191, 0) 34%);
	opacity: 0;
	pointer-events: none;
	transition: opacity .3s ease;
}
.about-left:hover::before,
.about-right:hover::before {
	opacity: 1;
}
.about-left .num {
	font-weight: 500;
	font-size: 74px;
	line-height: 100%;
	letter-spacing: -0.04em;
	color: #8F8F8F;
	margin-right: 20px;
}
.about-left-text p {
	font-size: 26px;
	font-weight: 500;
	line-height: 100%;
	letter-spacing: -0.04em;
	color: #D3D3E5;
	margin-bottom: 6px;
}
.about-left-text span {
	font-weight: 500;
	font-size: 18px;
	line-height: 100%;
	letter-spacing: -0.04em;
	color: rgba(211, 211, 229, 0.8);
}

.about-right {
	display: flex;
	align-items: center;
	gap: 0 10px;
	border: 2px solid #64697B;
	border-radius: 20px;
	padding: 11px 16px 16px 64px;
	height: 100%;
	box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 1);
	backdrop-filter: blur(4px);
	position: relative;
	overflow: hidden;
	--glow-x: 50%;
	--glow-y: 50%;
}
.about-right p {
	font-weight: 500;
	font-size: 26px;
	line-height: 100%;
	letter-spacing: -0.04em;
	color: #D3D3E5;
}

.works-block {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}
.works-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 20px 0;
	position: relative;
	padding: 0 20px;
}
.works-item::after {
	content: "";
	display: block;
	height: 100%;
	width: 2px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 49.52%, rgba(255, 255, 255, 0) 100%);
	position: absolute;
	right: 0;
	top: 0;
}
.works-item:last-child::after {
	content: none;
}
.works-item p {
	font-weight: 500;
	font-size: 22px;
	line-height: 100%;
	letter-spacing: -0.04em;
	color: #DBDBDB;
}
.works-item img {
	transition: transform .35s ease, filter .35s ease;
}
.works-item:hover img {
	filter: drop-shadow(0 12px 18px rgba(255, 201, 191, .18));
	transform: translateY(-6px) scale(1.04);
}
.works-item:hover p {
	color: #FFE5D7;
}

/* our section */
.our-sec {
	padding-top: 80px;
}
.our-block ul {
	padding-left: 0;
	margin-bottom: 0;
	list-style: none;
}
.our-block li {
	display: flex;
	align-items: center;
	gap: 0 20px;
	margin-bottom: 10px;
}
.our-block li span {
	font-weight: 500;
	font-size: 32px;
	line-height: 100%;
	letter-spacing: -0.04em;
	color: #DBDBDB;
}

/* footer */
footer {
	padding: 80px 0 40px;
}
.ftr-block {
	position: relative;
	display: flex;
	align-items: center;
	box-shadow: 0px 0px 40px 0px #00000040;
	border: 2px solid #64697B;
	border-radius: 20px;
	padding: 20px 10px;
	margin: 50px 0;
	backdrop-filter: blur(4px);
}
.ftr-item {
	position: relative;
	height: 100%;
	padding: 0 30px;
}
.ftr-item a {
	font-weight: 500;
	font-size: 22px;
	line-height: 100%;
	letter-spacing: -0.04em;
	color: #D3D3E5;
}
.ftr-link::after {
	content: "";
	display: block;
	height: 60px;
	width: 2px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 49.52%, rgba(255, 255, 255, 0) 100%);
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
}
.ftr-text span {
	font-weight: 500;
	font-size: 18px;
	line-height: 100%;
	letter-spacing: -0.04em;
	color: #D3D3E599;
	margin-right: 30px;
}
.ftr-item p {
	font-weight: 500;
	font-size: 16px;
	line-height: 100%;
	letter-spacing: -0.04em;
	margin-top: 12px;
	color: #D3D3E599;
}
.ftr-business {
	display: grid;
	gap: 6px;
	max-width: 260px;
}
.ftr-business span {
	font-weight: 500;
	font-size: 14px;
	line-height: 120%;
	letter-spacing: -0.04em;
	color: rgba(211, 211, 229, .72);
}

.ftr-img {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	right: -2px;
	top: -40px;
	min-width: 160px;
	max-width: 160px;
	height: 160px;
	border-radius: 20px;
	border: 2px solid #64697B;
	background: linear-gradient(180deg, #080d1e 0.39%, #101012 99.61%);
	box-shadow: 0px -10px 39.5px rgba(0, 0, 0, 0.95);
	backdrop-filter: blur(4px);
}
.ftr-img img {
	width: 140px;
	height: auto;
}

.reveal-item {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity .8s ease, transform .8s ease;
}
.reveal-item.is-visible {
	opacity: 1;
	transform: translateY(0);
}
.works-item.reveal-item:nth-child(2) {
	transition-delay: .08s;
}
.works-item.reveal-item:nth-child(3) {
	transition-delay: .16s;
}
.works-item.reveal-item:nth-child(4) {
	transition-delay: .24s;
}
.works-item.reveal-item:nth-child(5) {
	transition-delay: .32s;
}
.our-block li.reveal-item:nth-child(2) {
	transition-delay: .08s;
}
.our-block li.reveal-item:nth-child(3) {
	transition-delay: .16s;
}
.our-block li.reveal-item:nth-child(4) {
	transition-delay: .24s;
}

.floating-actions {
	position: fixed;
	right: 24px;
	bottom: 24px;
	z-index: 60;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.floating-action {
	width: 48px;
	height: 48px;
	border: 1px solid rgba(255, 201, 191, .28);
	border-radius: 50%;
	background: rgba(8, 13, 30, .82);
	box-shadow: 0 10px 28px rgba(0, 0, 0, .45);
	backdrop-filter: blur(8px);
	color: #FFE5D7;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
	font-weight: 500;
	line-height: 1;
	padding: 0;
}
.floating-action img {
	width: 20px;
	height: 20px;
}
.floating-action:hover {
	border-color: rgba(255, 201, 191, .7);
	color: #fff;
	transform: translateY(-3px);
}
.back-to-top {
	opacity: 0;
	pointer-events: none;
	transform: translateY(10px);
}
.back-to-top.visible {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}
.back-to-top.visible:hover {
	transform: translateY(-3px);
}

body.modal-open {
	overflow: hidden;
}
.request-modal {
	position: fixed;
	inset: 0;
	z-index: 100;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	opacity: 0;
	pointer-events: none;
	transition: opacity .3s ease;
}
.request-modal.active {
	opacity: 1;
	pointer-events: auto;
}
.request-modal__overlay {
	position: absolute;
	inset: 0;
	background: rgba(3, 5, 12, .74);
	backdrop-filter: blur(8px);
}
.request-modal__dialog {
	position: relative;
	z-index: 1;
	width: min(520px, 100%);
	max-height: calc(100vh - 40px);
	overflow-y: auto;
	border: 1px solid rgba(255, 201, 191, .24);
	border-radius: 20px;
	background: linear-gradient(180deg, rgba(8, 13, 30, .96) 0%, rgba(16, 16, 18, .96) 100%);
	box-shadow: 0 24px 70px rgba(0, 0, 0, .65);
	padding: 34px;
	transform: translateY(18px) scale(.98);
	transition: transform .3s ease;
}
.request-modal.active .request-modal__dialog {
	transform: translateY(0) scale(1);
}
.request-modal__close {
	position: absolute;
	top: 14px;
	right: 14px;
	width: 36px;
	height: 36px;
	border: 1px solid rgba(255, 255, 255, .12);
	border-radius: 50%;
	background: rgba(255, 255, 255, .04);
	color: #D7D3D2;
	font-size: 28px;
	line-height: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 0 3px;
}
.request-modal__close:hover {
	color: #fff;
	border-color: rgba(255, 201, 191, .5);
}
.request-modal__title {
	font-weight: 500;
	font-size: 30px;
	line-height: 100%;
	letter-spacing: -0.04em;
	color: #FFE5D7;
	margin-bottom: 24px;
}
.request-form {
	display: grid;
	gap: 14px;
}
.request-form label {
	display: grid;
	gap: 8px;
}
.request-form label span {
	font-weight: 500;
	font-size: 14px;
	line-height: 100%;
	letter-spacing: -0.04em;
	color: rgba(211, 211, 229, .82);
}
.request-form input,
.request-form textarea {
	width: 100%;
	border: 1px solid rgba(255, 255, 255, .12);
	border-radius: 14px;
	background: rgba(255, 255, 255, .06);
	color: #fff;
	font: inherit;
	padding: 14px 16px;
	resize: vertical;
}
.request-form input:focus,
.request-form textarea:focus {
	border-color: rgba(255, 201, 191, .5);
	box-shadow: 0 0 0 3px rgba(255, 201, 191, .08);
}
.request-form .brown-btn {
	margin-top: 6px;
	border-color: #FFC9BF;
}
.request-form .brown-btn.is-loading {
	opacity: .72;
	pointer-events: none;
}
.request-form__status {
	min-height: 18px;
	font-weight: 500;
	font-size: 14px;
	line-height: 120%;
	letter-spacing: -0.04em;
	color: rgba(211, 211, 229, .82);
}
.request-form__status.success {
	color: #b6f2c1;
}
.request-form__status.error {
	color: #ffc9bf;
}

@media (prefers-reduced-motion: reduce) {
	html,
	html:focus-within {
		scroll-behavior: auto;
	}
	.reveal-item {
		opacity: 1;
		transform: none;
		transition: none;
	}
	.main-right .main-img img {
		transform: none !important;
	}
	.brown-btn::after {
		animation: none;
		display: none;
	}
}















.mob {
	display: none !important;
}




@media (max-width: 1200px){
	.ftr-item a {
		font-size: 18px;
	}
	.ftr-text span {
		font-size: 14px;
		margin-right: 20px;
	}
	.ftr-item p {
		font-size: 12px;
		margin-top: 6px;
	}
	.ftr-item {
		padding: 0 20px;
	}
	.ftr-link::after {
		width: 1px;
	}
	.our-block li span {
		font-size: 26px;
	}
	.about-text p span {
		font-size: 44px;
	}
	.about-text p {
		font-size: 18px;
	}
	.about-img img {
		height: 200px;
	}
	.main-block .main-left .h1 {
		font-size: 46px;
	}
	.main-right .main-img img {
		width: 310px;
		height: auto;
	}
	header .navbar-brand span {
		font-size: 18px;
	}
	header .navbar .navbar-nav .nav-link {
		font-size: 16px;
	}
	header .head-tel a {
		font-size: 18px;
	}
	header .navbar .navbar-nav {
		gap: 0 30px;
	}
}

@media (max-width: 992px) {
	.mob {
		display: block !important;
	}
	.main-block {
		flex-direction: column;
		align-items: flex-start;
		gap: 0;
	}
	.main-right {
		display: none;
	}
	.main-block .main-left {
		width: 100%;
		max-width: 100%;
	}
	.main-left .mob {
		text-align: center;
	}
	.brown-btn-box,
	.brown-btn {
		width: 100%;
		max-width: 100%;
	}
	.about-block {
		flex-direction: column;
	}
	.about-text {
		margin-left: 0;
		order: 1;
	}
	.about-img {
		order: 2;
		text-align: center;
		padding-top: 20px;
		width: 100%;
	}
	.about-sec .row {
		gap: 12px 0;
	}
	.ftr-block {
		flex-direction: column;
		align-items: flex-start;
		margin: 0;
		gap: 20px 0;
	}
	.ftr-link::after {
		display: none;
	}
	.ftr-item {
		padding: 0;
	}
	.menu-opener {
		display: flex;
		flex-direction: column;
		gap: 4px 0;
		position: relative;
		z-index: 100;
		padding: 0;
		border: none;
		background: transparent;
	}
	.menu-opener span {
		position: relative;
		width: 30px;
		height: 2px;
		background: #8F8F8F;
		border-radius: 10px;
	}
	header .navbar-collapse {
		position: fixed;
		left: 0;
		top: -400px;
		width: 100%;
		z-index: 90;
		padding: 40px 20px;
		background: linear-gradient(180deg, #080d1e 0.39%, #101012 99.61%);
		box-shadow: 0px 10px 39.5px rgba(0, 0, 0, 0.95);
		backdrop-filter: blur(4px);
		border-radius: 0 0 10px 10px;
		transition: .4s all ease;
	}
	header .navbar.active .navbar-collapse {
		top: 70px;
	}
	header .navbar-collapse,
	header .navbar .navbar-nav {
		flex-direction: column;
		align-items: flex-start;
	}
	header .navbar .navbar-nav {
		gap: 30px 0;
	}
	header .navbar {
		padding: 10px;
		transition: .3s;
	}
	header .navbar.active {
		border-radius: 0;
	}
	.menu-opener.active .two {
		opacity: 0;
	}
	.menu-opener.active .one {
		transform: rotate(45deg);
		top: 6px;
	}
	.menu-opener.active .three {
		transform: rotate(-45deg);
		top: -6px;
	}
	header .navbar .navbar-nav .nav-link {
		font-size: 20px;
	}
	header {
		position: relative;
		z-index: 3;
	}
	header .container {
		position: relative;
		z-index: 4;
	}
	header .head-tel {
		margin-top: 30px;
	}
}

@media (min-width: 577px) and (max-width: 992px) {
	.wrapper {
		background-position: center -70px;
	}
	.mob {
		display: block !important;
	}
	header .navbar {
		padding: 12px 16px;
	}
	header .navbar-brand span {
		display: inline-block;
		font-size: 22px;
	}
	header .navbar-brand img {
		height: 42px;
		width: auto;
	}
	header .navbar.active .navbar-collapse {
		top: 78px;
	}
	.main-sec {
		padding: 64px 0 10px;
	}
	.main-block .main-left .h1 {
		font-size: 42px;
		margin-bottom: 24px;
	}
	.main-block .main-left p {
		font-size: 18px;
		margin-bottom: 26px;
		max-width: 520px;
	}
	.main-block .main-left img {
		width: min(100%, 330px);
		height: auto;
	}
	.main-left .mob {
		margin-bottom: 10px;
		text-align: center;
	}
	.brown-btn-box {
		max-width: 420px;
		margin: 0 auto;
	}
	.title .h2 {
		font-size: 32px;
	}
	.title .right-line,
	.title .left-line {
		width: 150px;
	}
	.title {
		margin-bottom: 44px;
	}
	.about-text p {
		font-size: 18px;
		line-height: 150%;
	}
	.about-text p span {
		font-size: 42px;
	}
	.about-img img {
		max-height: 230px;
	}
	.about-left,
	.about-right {
		min-height: 126px;
	}
	.about-left {
		padding: 28px 32px;
	}
	.about-left .num {
		font-size: 68px;
	}
	.about-right {
		padding: 18px 32px;
	}
	.about-right img {
		width: 90px;
		height: auto;
	}
	.works-block {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 0 20px;
	}
	.works-item {
		padding: 26px 10px;
	}
	.works-item:last-child {
		grid-column: 1 / -1;
	}
	.works-item img {
		width: min(208px, 100%);
		height: auto;
	}
	.works-item::after {
		width: 100%;
		height: 1px;
		top: auto;
		bottom: 0;
		right: 0;
		left: 0;
		margin: auto;
		background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 49.52%, rgba(255, 255, 255, 0) 100%);
	}
	.our-block li span {
		font-size: 24px;
	}
	footer {
		padding-top: 64px;
	}
	.ftr-block {
		padding: 24px;
		padding-right: 150px;
	}
	.ftr-img {
		min-width: 120px;
		max-width: 120px;
		height: 120px;
		top: -2px;
	}
	.ftr-img img {
		width: 100px;
		height: auto;
	}
}


@media (max-width: 576px) {
	.wrapper {
		background-position: center top;
	}
	.floating-actions {
		right: 14px;
		bottom: 14px;
		gap: 8px;
	}
	.floating-action {
		width: 42px;
		height: 42px;
		font-size: 19px;
	}
	.floating-action img {
		width: 18px;
		height: 18px;
	}
	.request-modal {
		align-items: flex-end;
		padding: 10px;
	}
	.request-modal__dialog {
		border-radius: 18px;
		padding: 28px 18px 20px;
	}
	.request-modal__title {
		font-size: 24px;
		margin-bottom: 18px;
	}
	.request-form {
		gap: 12px;
	}
	.request-form input,
	.request-form textarea {
		border-radius: 12px;
		padding: 12px 14px;
	}
	.mob {
		display: block !important;
	}
	.main-block {
		flex-direction: column;
		align-items: flex-start;
		gap: 0;
	}
	.main-right {
		display: none;
	}
	.main-block .main-left {
		width: 100%;
	}
	.main-block .main-left p {
		font-size: 14px;
	}
	.main-block .main-left img {
		width: min(100%, 250px);
		height: auto;
	}
	.main-left .mob {
		text-align: center;
	}
	.main-block .main-left .h1 {
		font-size: 24px;
		margin-bottom: 20px;
	}
	.brown-btn-box,
	.brown-btn {
		width: 100%;
		max-width: 100%;
	}
	.brown-btn {
		padding: 16px;
		font-size: 16px;
	}
	.title .right-line, .title .left-line {
		width: 50px;
	}
	.title .h2 {
		font-size: 20px;
	}
	.title {
		margin-bottom: 30px;
	}
	.main-sec {
		padding: 40px 0 0;
	}
	.works-sec, .about-sec {
		padding-top: 60px;
	}
	.about-text p {
		font-size: 14px;
		line-height: 120%;
		margin-bottom: 20px;
	}
	.about-text p span {
		font-size: 24px;
	}
	.about-block {
		flex-direction: column;
	}
	.about-text {
		margin-left: 0;
		order: 1;
	}
	.about-img {
		order: 2;
		text-align: center;
		padding-top: 20px;
		width: 100%;
	}
	.about-img img {
		width: auto;
		max-height: 220px;
	}
	.about-left .num {
		font-size: 54px;
		margin-right: 16px;
	}
	.about-left-text span {
		font-size: 14px;
	}
	.about-right p,
	.about-left-text p {
		font-size: 20px;
	}
	.about-left {
		padding: 20px 20px 20px 30px;
	}
	.about-right {
		padding: 10px 30px 10px 16px;
	}
	.about-right img {
		width: 70px;
		height: auto;
	}
	.about-sec .row {
		gap: 10px 0;
	}
	.title {
		gap: 0 20px;
	}
	.works-block {
		flex-direction: column;
	}
	.works-item {
		padding: 30px 0;
	}
	.works-item::after {
		width: 100%;
		height: 1px;
		top: auto;
		bottom: 0;
		right: 0;
		left: 0;
		margin: auto;
		background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 49.52%, rgba(255, 255, 255, 0) 100%);
	}
	.works-item {
		gap: 10px 0;
	}
	.works-item p {
		font-size: 18px;
	}
	.our-block li {
		gap: 0 10px;
	}
	.our-block li img {
		height: 30px;
	}
	.our-block li span {
		font-size: 16px;
	}
	.our-sec {
		padding-top: 40px;
	}
	.ftr-block {
		flex-direction: column;
		align-items: flex-start;
		margin: 0;
		gap: 20px 0;
	}
	.ftr-img img {
		width: 80px;
		height: auto;
	}
	.ftr-img {
		height: 80px;
		right: -2px;
		top: -2px;
	}
	.ftr-img {
		min-width: 100px;
		max-width: 100px;
		height: 100px;
	}
	.ftr-item {
		padding: 0;
	}
	.ftr-link::after {
		display: none;
	}
	.ftr-text {
		margin-top: 20px;
	}
	.ftr-business {
		max-width: 100%;
		padding-right: 110px;
	}
	header .navbar-brand span {
		display: none;
	}
	.menu-opener {
		display: flex;
		flex-direction: column;
		gap: 4px 0;
		position: relative;
		z-index: 100;
		padding: 0;
		border: none;
		background: transparent;
	}
	.menu-opener span {
		position: relative;
		width: 30px;
		height: 2px;
		background: #8F8F8F;
		border-radius: 10px;
	}
	header .navbar-collapse {
		position: fixed;
		left: 0;
		top: -400px;
		width: 100%;
		z-index: 90;
		padding: 40px 20px;
		background: linear-gradient(180deg, #080d1e 0.39%, #101012 99.61%);
		box-shadow: 0px 10px 39.5px rgba(0, 0, 0, 0.95);
		backdrop-filter: blur(4px);
		border-radius: 0 0 10px 10px;
		transition: .4s all ease;
	}
	header .navbar.active .navbar-collapse {
		top: 70px;
	}
	header .navbar {
		padding: 10px;
		transition: .3s;
	}
	header .navbar.active {
		border-radius: 0;
	}
	.menu-opener.active .two {
		opacity: 0;
	}
	.menu-opener.active .one {
		transform: rotate(45deg);
		top: 6px;
	}
	.menu-opener.active .three {
		transform: rotate(-45deg);
		top: -6px;
	}
	header .navbar .navbar-nav .nav-link {
		font-size: 20px;
	}
	header .navbar .navbar-nav {
		gap: 30px 0;
	}
	header {
		position: relative;
		z-index: 3;
	}
	header .container {
		position: relative;
		z-index: 4;
	}
	header .head-tel {
		margin-top: 30px;
	}
}
