@import url('css2-36.css;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100&display=swap');
:root 
{
	--black: #151415;
	--white: #faf1e1;
}
* 
{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Poppins', sans-serif;
	scroll-behavior: smooth;
}
h3
{
	color: var(--white);
}
body
{
	background-color: var(--black);
}
/*---------------------------Верхнее меню----------------------------------*/
header
{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	padding: 20px 100px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	z-index: 1000;
	transition: 0.5s;

}
header.sticky 
{
	background: var(--black);

}
.logo
{
	position: relative;
	display: inline-block;
	color: var(--white);
	text-decoration: none;
	font-size: 1.5em;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 2px;
	z-index: 1000;
	transition: 0.5s;

}
.menuToggle
{
	position: relative;
	width: 30px;
	height: 30px;
	background: url(menu-40.webp);
	background-size: 30px;
	background-repeat: no-repeat;
	background-position: center;
	cursor: pointer;
}
.menuToggle.active 
{
	background: url(close-38.webp);
	background-size: 25px;
	background-repeat: no-repeat;
	background-position: center;
}
.navigation 
{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	z-index: 999;
	transition: 0.5s;
	opacity: 0;
	visibility: hidden;
	transition-delay: 0s;	
}
.navigation.active 
{
	opacity: 1;
	visibility: visible;
	transition-delay: 0.8s;
}
.navigation li
{
	list-style: none;
	margin: 10px 0;
}
.navigation li a
{
	color: var(--white);
	font-size: 2em;
	letter-spacing: 4px;
	display: inline-block;
	font-weight: 400;
	text-decoration: none;
	text-transform: uppercase;
}
.navigation li:first-child a{
	color:#aeff0f;
	font-weight: 600;
}
/*---------------------------Псевдокубы----------------------------------*/

.header:before {
    content: '';
    position: fixed;
    top: 0%;
    left: 27%;
    width: 36%;
    height: 320px;
    z-index: 5;
    transition: 0.6s;
    pointer-events: none;
}
.header.active:before {
	top: 0;
	left: 0;
	width: 50%;
	height: 100%;
	background: #151415;
	z-index: 600;

}
.header:after {
    content: '';
    position: fixed;
    bottom: 0;
    right: 10%;
    width: 37%;
    height: 200px;
    z-index: 5;
    transition: 0.6s;
    pointer-events: none;
}
.header.active:after{
	bottom: 0;
	right: 0;
	width: 50%;
	height: 100%;
	background: #151415;
	z-index: 600;
}
/*---------------------------Баннер----------------------------------*/
.section
{
	position: relative;
	padding: 50px 70px;
	width: 100%;
	background: var(--black);
	z-index: 1;
	background-color: var(--black);
}
.banner {
	position: relative;
	width: 100%;
	min-height: 100vh;
	padding: 0 100px;
	display: flex;
	align-items: center;
	background: linear-gradient(#404040, #151415);
}
.banner:before {
	content: '';
	position: absolute;
	top: 0;
	left: 300px;
	width: 400px;
	height: 320px;
	background: #fa215e;
	z-index: 500;
	transition: 1s;
}
.banner.active:before {
	top: 0;
	left: 0;
	width: 50%;
	height: 100%;
	background: #151415;
}
.banner:after {
	content: '';
	position: absolute;
	bottom: 0;
	right: 100px;
	width: 400px;
	height: 200px;
	background: #aeff0f;
	z-index: 500;
	transition: 1s;
}
.banner.active:after{
	bottom: 0;
	right: 0;
	width: 50%;
	height: 100%;
	background: #151415;
}
.logo.active {
	transform: scale(0);
	transform-origin: left;
}
.content_one {
	position: relative;
	z-index: 600;
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: 0.5s;
	transform-origin: right;
}
.banner.active .content_one {
	transform: scale(0);
	transform-origin: left;
}
.banner.active .phone {
	transform: scale(0);
	transform-origin: left;
}
.content_one .contentBx_one {
	max-width: 600px;
	z-index: 1;
}
.content_one .contentBx_one h1 {
	font-size: 3em;
	line-height: 1em;
	color: var(--white);
	text-transform: uppercase;
}
.content_one .contentBx_one p {
	font-size: 1em;
	color: var(--white);
	margin: 20px 0;
}
.content_one .contentBx_one a {
	display: inline-block;
	border: 1px solid var(--white);
	color: var(--white);	
	padding: 10px 30px;
	text-transform: uppercase;
	text-decoration: none;	
	transition: 0.5s;
}
.content_one .contentBx_one a:hover {
	letter-spacing: 4px;
	background: var(--white);
	color: #111;
}
.content_one .imgBx_one img {
	max-width: 100%;
	min-width: 400px;
}
.phone {
    position: absolute;
    top: 71px;
    color: var(--white);
    right: 145px;
    font-size: 35px;
    font-weight: 600;
    z-index: 550;
    transform-origin: right;
    transition: 0.5s;
}
.text
{
	padding: 30px 0;
}

/*---------------------------О нас----------------------------------*/

.title 
{
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	text-align: center;
}
.title h2
{
	position: relative;
	font-weight: 700;
	letter-spacing: 2px;
	font-size: 24px;
	text-transform: uppercase;
	color: var(--white);
}
.title p
{
	margin-top: 40px;
	max-width: 700px;
	text-align: center;
}
.title h2:before
{
	content: '';
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 40px;
	height: 6px;
	background: var(--white);
}
p
{
	color: var(--white);
	font-weight: 300;
	text-align: justify;
}
.sub-title
{
	color: var(--white);
	margin-top: 30px;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}
.sub-title h2
{
	text-align: center;
}
.about
{
	min-height: auto;
}
.about .contentBx 
{
	position: relative;
	margin-top: 40px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 40px;

}
.about .contentBx .content
{
	position: relative;
}
.about .contentBx .content h3
{
	text-align: center;
	padding-bottom: 20px;
}
.about .contentBx .content p
{
	top: 50%;
	text-align: center;
	font-size: 18px;
}
.about .contentBx .content .imgBx
{
	min-height: 400px;
}
/*---------------------------Галерея----------------------------------*/
.cover
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.post
{
	position: relative;
}

.post .contentBx
{
	position: relative;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-gap: 40px;
	margin-top: 20px;
}
.post .contentBx .postColumn
{
	position: relative;
}
.post .contentBx .postColumn .postBox 
{
	position: relative;
	width: 100%;
	height: 400px;
	margin-top: 40px;
}
.post .contentBx .postColumn .postBox.extraHeight
{
	height: 600px;
}
.post .contentBx .postColumn .postBox .textBx
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--black);
	padding: 20px;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	flex-direction: column;
	transition: 0.25s;
	opacity: 0;
	visibility: hidden;
}
.post .contentBx .postColumn .postBox:hover .textBx
{
	opacity: 0.7;
	visibility: visible;
}
.post .contentBx .postColumn .postBox .textBx h3
{
	font-weight: 400;
	font-size: 1.5em;
	letter-spacing: 1px;
	color: var(--white);
}
/*---------------------------Как мы работаем----------------------------------*/
.howwork
{
	max-width: 1400px;
	margin: 0 auto;
	background-color: var(--black);
}
.sub-title {
	text-align: center;
}
.howwork__body
{

}
.howwork__row
{
	display: flex;
	margin-top: 60px; 
	margin-bottom: 70px;
	padding: 0 15px;
	flex: 0 1 25%;
	justify-content: space-between;
}
.howwork__colum
{
	position: relative;
	height: 247px;
	width: 238px;
	padding: 20px;
	background: var(--black);
	
}
.howwork__colum:not(:first-child)
{
	margin: 0px 0px 0px 22px;
}
.howwork__colum::before
{
	content: '';
	position: absolute;
  	top: -2px;
 	left: -2px;
  	right: -2px;
  	bottom: -2px;
	transform: skewX(1deg);
	background: linear-gradient(315deg, #aeff0f, #151415, #fa215e);
}
.howwork__colum::after
{
	content: '';
	position: absolute;
  	top: -2px;
 	left: -2px;
  	right: -2px;
  	bottom: -2px;
  	transform: skewX(1deg);
	background: linear-gradient(315deg, #aeff0f, #151415, #fa215e);
	filter: blur(50px);
}
.test
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--black);
	z-index: 10;
}
.howwork_number
{
	font-size: 30px;
	color: var(--white);
	font-weight: 700;
	text-align: center;
	padding: 5px 0;
}
.howwork_title
{
	color: var(--white);
	font-size: 20px;
	font-weight: 700;
	height: 70px;
	text-align: center;
	padding: 5px;
}
.howwork_text
{
	color: var(--white);
	text-align: center;
	padding: 5px 9px;
}
/*--------------------------Наши работы----------------------------------*/
.works {
}
.works__wrapper {
   max-width: 1200px;
   margin: 0 auto;
}
.image-slider {
}
.swiper {
}
.image-slider__wrapper {
   padding: 30px 0px 30px 0px;
}
.swiper-wrapper {
}
.image-slider__slide {
}
.swiper-slide {
}
.image-slider__image {
}
.image-slider__image img{
   max-width: 100%;
}
.image-slider__description {
   color: var(--black);
   padding: 10px;
   background-color: var(--white);
   font-size: 14px;
}
[data-animate] {
   opacity: 0;
   transition: all 0.3s ease-out;
}
[data-animate="bottom"] {
   transform: translate3d(0, 30px, 0);
}
.image-slider__slide.swiper-slide-active [data-animate] {
   opacity: 1;
   transform: none;
}
/*Стрелки*/
.image-slider .swiper-button-prev::after,
.image-slider .swiper-button-next::after {
	color: #aeff0f;
}
.swiper-button-prev, .swiper-rtl .swiper-button-next,
.swiper-button-next, .swiper-rtl .swiper-button-prev {
   top: 47%;
}
/*Пагинация*/
.image-slider .swiper-pagination {
	bottom: 0;
}
/*---------------------------Контакты----------------------------------*/
.contact
{
	background: linear-gradient( to top, var(--black), transparent,  var(--black)), url("elit2-39.webp");
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}
.contact::after
{
	content: "";
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background:  rgba(21, 20, 21, 0.9) url("sending-37.webp") center / 50px no-repeat;
	opacity: 0;
	visibility: hidden;
	transition: all 0.5s ease 0s;
}
.contact._sending::after
{
	opacity: 1;
	visibility: visible;
}
.contact_wrap
{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	margin-top: 100px;
}
.info
{
	display: flex;
	justify-content: space-around;
	align-items: center;/* вертикаль */
	flex-direction: column;
	height: 100%;
	color: var(--white);
	font-size: 20px;
	text-transform: uppercase;
}
.form_body *
{
	outline: none;
}
.form_item
{
	margin: 0 0 20px 0;
}
.form_input
{
	height: 50px;
	width: 500px;
	padding: 0px 20px;
	font-size: 18px;
	transition: all 0.2s ease 0s;
}
.form_input::placeholder
{
	text-transform: uppercase;
	font-size: 0.9em;	
}
textarea.form_input
{
	min-height: 120px;
	resize: vertical;
	padding: 20px;
}
.form_input:focus
{
	box-shadow: 0 0 25px var(--white);
	border: none;
}
.form_input._error
{
	box-shadow: 0 0 20px red;
}
.form_button
{
	border: 1px solid var(--white);
	color: var(--black);
    padding: 10px 30px;
    text-transform: uppercase;
    transition: 0.5s;
    background-color: var(--white);
    letter-spacing: 0px;
    font-size: 1em;
    font-weight: 500;
	width: 500px;
}
.form_button:hover
{
    letter-spacing: 4px;
}
.file_item
{
	padding: 20px 0;
}
#custom-button {
	padding: 10px;
	color: var(--black);
	background-color: var(--white);
	border: none;
	cursor: pointer;
	font-size: 1.2em;
	transition: 0.5s;
}

#custom-button:hover {
	box-shadow: 0 0 25px var(--white);
}

#custom-text {
    margin-left: 15px;
    color: var(--white);
    font-size: 1.2em;
    font-weight: 400;
}
/*---------------------------Карта----------------------------------------*/
.map
{
	max-width: 100%;
}
/*---------------------------Футер----------------------------------------*/
footer
{
	color: var(--white);
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	background: var(--black);

}
footer .logo
{
	color: var(--white);
}
footer .footerMenu
{
	display: flex;
}
footer .footerMenu li
{
	list-style: none;
}
footer .footerMenu li a
{
	display: inline-block;
	text-decoration: none;
	margin: 20px;
	color: var(--white);
	text-transform: uppercase;
	letter-spacing: 2px;
}
.copyrightText
{
	color: var(--white);
	text-align: center;
	letter-spacing: 1px;

}
/*------------------------------------------------------------------------*/
@media (max-width: 1138px)
{
	.contact_wrap 
	{
		margin-top: 65px;
	}
	.contact_item
	{
		padding: 20px;
	}
	.form_input
	{
		height: 50px;
		width: 400px;
		padding: 0px 20px;
		font-size: 18px;
		transition: all 0.2s ease 0s;
	}
	.form_button 
	{
		width: 400px;
	}
	
}
@media (max-width: 1042px)
{
	.content_one .contentBx_one {
		max-width: 300px;
	}
	.howwork__colum {
		height: 260px;
	}
}
@media (max-width: 991px)
{
	header {
		padding: 20px 40px;
	}
	.banner {
		padding: 40px;
		overflow: hidden;
	}
	.banner:before {
		top: 100px;
		left: 0;
		width: 170px;
		height: 310px;
	}
	.banner:after {
		bottom: 0;
		right: 0;
		width: 80px;
		height: 60px; 
	}
	.header:before 
	{

	    content: '';
	    position: fixed;
	    top: 0%;
	    left: 0%;
	    width: 17%;
	    height: 47%;
	    z-index: 5;
	    transition: 1s;
	}
	.header:after {

	    content: '';
	    position: fixed;
	    bottom: 0%;
	    right: 2%;
	    width: 7%;
	    height: 7%;
	    z-index: 5;
	    transition: 1s;
	}
	.content_one {
		flex-direction: column-reverse;
		margin: 50px 0;
	}
	.content_one .contentBx_one {
		max-width: 100%;
	}
	.content_one .contentBx_one h2 {
		font-size: 2.5em;
	}
	.content_one .imgBx_one  {
		max-width: 100%;
		min-width: 300px;

	}
	header.sticky {
    	padding: 10px 30px;
    }
    .section {
		padding: 20px;
	}
	 .about .contentBx {
	 	grid-template-columns: repeat(1,1fr);
	}
	.post .contentBx {
		grid-template-columns: repeat(1,1fr);
	}
	.post .contentBx .postColumn .postBox,
	.post .contentBx .postColumn .postBox.extraHeight  
	{
		height: 600px;
	}
	.contact_wrap 
	{
		margin-top: 40px;
	}
	.contact_item
	{
		padding: 15px;
	}
   .swiper-button-prev, .swiper-rtl .swiper-button-next,
   .swiper-button-next, .swiper-rtl .swiper-button-prev {
      top: 43%;
   }
	.info
	{
		display: flex;
		justify-content: space-around;
		align-items: center;/* вертикаль */
		flex-direction: column;
		height: 300px;
		color: var(--white);
		font-size: 20px;
		text-transform: uppercase;
	}
	.map
	{
		max-height: 70%;
	}
	footer 
	{
		padding: 40px 20px;
	}
	footer .footerMenu 
	{
		display: flex;
		justify-content: center;
		align-items: center;
		flex-direction: column;
	}
	footer .footerMenu li a
	{
		margin: 5px 0;
	}
	.title
	{
		padding-top: 50px;
	}
	.howwork__row {
		flex-wrap: wrap;
		justify-content: space-around;
	}
	.howwork__colum {
		width: 400px;
		margin: 0px;
		margin-bottom: 20px;
	}
	.howwork__colum:not(:first-child)
	{
		margin: 0px;
		margin-bottom: 20px;
	}
	.howwork_title
	{
		font-size: 25px;
		height: 70px;
		margin-bottom: 23px;
	}
	.howwork_text
	{
		font-size: 20px;
	}
	
}

@media (max-width: 576px){
	.content_one .contentBx_one h1 
	{
		font-size: 2em;
		line-height: 1em;
		color: var(--white);
		text-transform: uppercase;
	}
	.form_input
	{
		height: 45px;
		width: 350px;
	}
	.form_button{
		width: 350px;
	}
	.info
	{
		font-size: 17px;
	}
	#custom-button:hover 
	{
    	margin: 0 0 20px;
	}
	#custom-text
	{
    	font-size: 1em;
	}
	.phone
	{
		top: 100px;
		left: 10px;
	}
	.phone h5
	{
		font-size: 25px;
	}
	.map
	{
		max-height: 50%;
	}

}
@media (max-width: 383px){
	.content_one .contentBx_one h2 {
	    font-size: 2.1em;
	}
	.navigation li a {
		font-size: 1.5em;
	}
	.contact_wrap 
	{
		margin-top: 13px;
	}
	.contact_item{
		padding: 2px;
	}
	.form_input
	{
		height: 45px;
		width: 300px;
	}
	.form_button
	{
		width: 300px;
	}
	.title h2{
		font-size: 24px;
	}
	.form_form
	{
		margin-top: 20px;
	}
	.post .contentBx .postColumn .postBox,
	.post .contentBx .postColumn .postBox.extraHeight  
	{
		height: 300px;
	}
	.phone h5
	{
		font-size: 20px;
	}
	.map
	{
		min-height: 10%;
	}
}


/*
     FILE ARCHIVED ON 09:25:11 Jun 01, 2022 AND RETRIEVED FROM THE
     INTERNET ARCHIVE ON 15:16:49 Nov 12, 2025.
     JAVASCRIPT APPENDED BY WAYBACK MACHINE, COPYRIGHT INTERNET ARCHIVE.

     ALL OTHER CONTENT MAY ALSO BE PROTECTED BY COPYRIGHT (17 U.S.C.
     SECTION 108(a)(3)).
*/
/*
playback timings (ms):
  captures_list: 9.964
  exclusion.robots: 0.031
  exclusion.robots.policy: 0.013
  esindex: 0.017
  cdx.remote: 51.521
  LoadShardBlock: 87.181 (3)
  PetaboxLoader3.datanode: 155.639 (5)
  PetaboxLoader3.resolve: 235.802 (3)
  load_resource: 346.424 (2)
*/
