/*Обнуление*/
*{
	padding: 0;
	margin: 0;
	border: 0;
}
*,*:before,*:after{
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
:focus,:active{outline: none;}
a:focus,a:active{outline: none;}
nav,footer,header,aside{display: block;}
html,body{
	height: 100%;
	width: 100%;
	font-size: 100%;
	line-height: 1;
	font-size: 16px;
	-ms-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
}
input,button,textarea{font-family:inherit;}
a, a:visited{text-decoration: none;}
a:hover{text-decoration: none;}
ul li{list-style: none;}
img{vertical-align: top;}
h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight: 400;}

/*--------------------*/
/*---add font-face---*/
@font-face {
	font-family: 'starjedi';
	src: url("font/AnyConv.com__starjedi_cyrillic.woff2"),
	url("font/AnyConv.com__starjedi_cyrillic.woff");
	font-weight: 300;
	font-display: swap;
	font-style: normal;
}
/*---end- add font-face---*/
body {
	font-family: starjedi, Helvetica, sans-serif;
	font-size: 18px;
	margin: 0px auto;
	letter-spacing: 1.5px;
}
/*----------menu----------*/
body._lock {
	overflow: hidden;
}
.header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 10;
	background-color: black;
}
.header__container {
	max-width: 1024px;
	margin: 0px auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0px 30px;
	min-height: 90px;
}
.header__logo{
	border-radius: 50%;
	background-image: url(image/logo.png);
	background-size: 80px 80px;
	position: relative;
	z-index: 5;
	width: 80px;
	height: 80px;
}
.menu__icon {
	display: none;
}
.menu__list li{
	position: relative;
	margin: 0px 0px 0px 20px;
}
.menu__link {
	color: white; /* Цвет обычной ссылки */
    position: relative;
    cursor: pointer;
    text-decoration: none; /* Убираем подчеркивание */
}
.menu__link:after {
	content: "";
    display: block;
    position: absolute;
    right: 0;
    bottom: -3px;
    width: 0;
    height: 2px; /* Высота линии */
    background-color: white; /* Цвет подчеркивания при исчезании линии*/
    transition: width 0.5s; /* Время эффекта */
}
.menu__link:hover:after {
	content: "";
    width: 100%;
    display: block;
    position: absolute;
    left: 0;
    bottom: -3px;
    height: 2px; /* Высота линии */
    background-color: #5adf88; /* Цвет подчеркивания при появлении линии*/
    transition: width 0.5s;  /* Время эффекта */
}
/*----------menu-end----------*/
.headering {
 	max-width: 1024px;
	margin: 0 auto;	
	overflow: hidden;
}
.headering__display {
	display: flex;
	justify-content: space-around;
	align-items: center;
	margin: 90px 0px
}
.headering__text {
	display: flex;
	flex-wrap: wrap;
	color: black;
	margin: 170px 0px 10px 0px;
}
.text__titel {
	font-size: 26px;
	margin: 5px 0px 20px 5px;
	text-shadow: 3px 3px 12px #5adf88;
	line-height: 26px;
	text-align:center;
	/* ниже параметры для анимации*/
	transform: translate(-120%, 0px);
	opacity: 0;
	transition: all 0.8s ease 0s;
}
.text__titel._active {
	transform: translate(0, 0px);
	opacity: 1;
	transition: all 0.8s ease 0.3s;
}
.text__text {
	font-size: 18px;
	padding: 20px 0px 5px 0px;
	margin-bottom: 10px;
	text-shadow: 3px 3px 12px #5adf88;
	line-height: 23px;
	text-align:center;
	color: #757575;
	/* ниже параметры для анимации*/
	transform: translate(-120%, 0px);
	opacity: 0;
	transition: all 0.8s ease 0s;
}
.text__text._active {
	transform: translate(0, 0px);
	opacity: 1;
	transition: all 0.8s ease 0.4s;
}
.text__form:hover {
	text-shadow: 1px 1px 1px black;
	color: #5adf88;
}
.text__form:active {
	box-shadow: 2px 2px 4px #5adf88;
	margin-top: 24px;
	margin-bottom: 16px;
}
.headering__img img {
	max-width:650px;
}/* ниже параметры для анимации*/
.headering__img {
	transition: all 0.8s ease 0s;
	opacity: 0;
	transform: translate(120%, 0px); 
}
.headering__img._active {
	transform: translate(0px, 0px);
	opacity: 1;
	transition: all 0.8s ease 0.3s;
}
/*параметры для анимации */
/*----------header-end----------*/
.content {
	background-color: #fafafa;
	border-bottom: #dddddd solid 1px;
	border-top: #dddddd solid 1px;
}
.content__about {
	max-width: 1024px;
	display: flex;
	justify-content:space-between;
    margin: 0 auto;
	padding: 50px 0px;
	font-size: 18px;
	overflow: hidden;
}
.about__titel-1 {
	padding: 30px 0px;
	font-size: 38px;
}
.about__text {
	display: flex;
	flex-direction:column;	
	padding: 20px 40px;
	flex: 1 0 33%;
	text-align: center;
	/* ниже параметры для анимации*/
	transform: translate(-120%, 0px);
	opacity: 0;
	transition: all 0.8s ease 0s;
}
/* ниже параметры для анимации*/
.about__text._active, .about__text-2._active {
	transform: translate(0px, 0px);
	opacity: 1;
	transition: all 0.8s ease 0.4s;
}
.content__about h3 {
	padding: 30px 0px;
	font-size: 22px;
}
.content__about p, ul {
	color: #757575;
	line-height: 28px;
}
.about__img {
	display: block;
	margin-left: auto;
    margin-right: auto;
	flex: 1 0 33%;
	overflow: hidden;
}/* ниже параметры для анимации*/
._anim-show {
	transform: translate(0px, 100%);
	opacity: 0;
	transition: all 0.8s ease 0.3s;
}
._anim-show._active,
._active ._anim-show {
	transform: translate(0px, 0px);
	opacity: 1;
}
.about__text-2 {
	display: flex;
	flex-direction:column;
	padding: 120px 10px 0px 100px;
	flex: 1 0 33%;
	/* ниже параметры для анимации*/
	transform: translate(120%, 0px);
	opacity: 0;
	transition: all 0.8s ease 0s;
}
.about__text-2 ul{
	line-height: 38px;
}
.summary_aboute {
	width: 120px;
	height: 30px;
	border-radius: 10px;
	text-align: center;
	margin: 30px 0px 0px 70px;
	border: solid #5adf88 3px;
	padding-top: 2px;
	letter-spacing: 2px;
	transition: 1s linear; /* Время изменения */
}
.summary_about  {
	color: #757575;
}
.summary_aboute:hover {
    background: black;
	box-shadow: inset 0 0 0 3px #111;
}
.summary_aboute:active {
	margin-top: 33px;
	box-shadow: none;
	transition: none;
}
/*-----------------content_end------------------*/
.wrap__wraper { 
	max-width: 1024px;
	display: flex;
	justify-content:space-between;
    margin: 0 auto;
	padding: 70px 0px;
	font-size: 18px;
	overflow: hidden;
}
.wraper__content {
	overflow: hidden;
}
.wrap__img {
	padding: 10px;
	/* ниже параметры для анимации*/
	transform: translate(-120%, 0px);
	opacity: 0;
	transition: all 0.8s ease 0.3s;
}/* ниже параметры для анимации*/
.wrap__img._active {
	transform: translate(0px, 0px);
	opacity: 1;
}
.wraper__titel {
	font-size: 26px;
	padding: 40px 0px;
	margin: 0px 10px;
	/* ниже параметры для анимации*/
	transform: translate(120%, 0px);
	opacity: 0;
	transition: all 0.8s ease 0.3s;
}/* ниже параметры для анимации*/
.wraper__titel._active {
	transform: translate(0px, 0px);
	opacity: 1;
}
.wraper__text li {
	line-height: 35px;	
}
.wraper__text {
	margin: 0px 10px;
	/* ниже параметры для анимации*/
	transform: translate(120%, 0px);
	opacity: 0;
	transition: all 0.8s ease 0.4s;
}
.wraper__text._active {
	transform: translate(0px, 0px);
	opacity: 1;
}
/*-------------------content_end--------------------*/
.portfolio {
	background-color: #fafafa;
	border-bottom: #dddddd solid 1px;
	border-top: #dddddd solid 1px;
}
.portfolio__contente {
	max-width: 1024px;
	display: flex;
	justify-content:space-between;
	align-items: center;
    margin: 0 auto;
	padding: 30px 0px;
	font-size: 18px;
	overflow: hidden;
}
.contente__titel {
	font-size: 26px;
	padding: 40px 0px;
	margin: 0px 30px; 
	text-align: center;
	/* ниже параметры для анимации*/
	transform: translate(-120%, 0px);
	opacity: 0;
	transition: all 0.8s ease 0.3s;
}/* ниже параметры для анимации*/
.contente__titel._active {
	transform: translate(0px, 0px);
	opacity: 1;
}
.contente__text-text{
	color: #757575;
	line-height: 28px;
	padding: 30px;
	text-align: center;
	/* ниже параметры для анимации*/
	transform: translate(-120%, 0px);
	opacity: 0;
	transition: all 0.8s ease 0.4s;
}
.contente__text-text._active {
	transform: translate(0px, 0px);
	opacity: 1;
}
.contente__img {
	/* ниже параметры для анимации*/
	transform: translate(120%, 0px);
	opacity: 0;
	transition: all 0.8s ease 0.3s;
}/* ниже параметры для анимации*/
.contente__img._active {
	transform: translate(0px, 0px);
	opacity: 1;
}
/* ---galery-block-- */
.gallerier {
	font-family:Arial, Helvetica, sans-serif;
	letter-spacing: normal;
	position: relative;
	background-color: #fafafa;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 50vh;
	max-width: 1024px;
    margin: 0 auto;
}
.gallery_item {
	position: relative;
	max-width: 350px;
	background-color: #fff;
	border: solid #757575;
	text-align: center;
}		
.gallery_item img {
	width: 345px;
	height: 400px;
}
.gallery_text {
	padding: 15px 5px;
	text-align: center;
}
.gallery_titel {
	font-size: 20px;
}
.gallery_text p {
	margin: 5px 0;
	color: #757575;
	line-height: 28px;
	font-size: 18px;
}
.gallery_a {
	color: #111;
	text-decoration: none;
	display: inline-block;
	border: 1px solid #111;
	padding: 10px 20px;
	-webkit-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
}
.gallery_a:hover {
	background-color: #5adf88;
	border-color: #5adf88;
	color: #fff;
}
@media (max-width: 1024px) {
	.gallerier {
		max-width: 800px;
	}
	.gallery_item {
		max-width: 250px;
	}
	.gallery_item img {
		width: 240px;
		height: 200px;
	}
}
@media (max-width: 800px) {
	.gallerier {
		max-width: 600px;
	}
	.gallery_item {
		max-width: 200px;
	}
	.gallery_item img {
		width: 190px;
		height: 200px;
	}
}
@media (max-width: 600px) {
	.gallerier {
		max-width: 500px;
	}
	.gallery_item {
		max-width: 200px;
	}
	.gallery_item img {
		width: 190px;
		height: 150px;
	}
}
/*--------portfolio_end--------*/
footer {
	background-color: rgb(0, 0, 0);
}
.basement {	
	display:flex;
	justify-content: center;
	padding: 30px;
}
.basement__container {
	margin: 10px 20px;
	color: white;
	text-transform: uppercase;
	letter-spacing: 2px;
}
.basement__container a {
	color: white;
}
.basement__contact {
	font-family: Arial, Helvetica, sans-serif;
}
.basement__phone {
	margin: 0px 5px 10px 5px;
	padding: 3px 3px 3px 20px;
	position: relative;
}
.basement__phone span {
	content: "";
    position: absolute;
	left: 0;
	top: 1px;
	width: 18px;
	height: 18px;
	background: url(/image/phone.jpg) center center/cover no-repeat;
}
.basement__mail {
	margin: 10px 5px;
	padding: 3px 3px 3px 23px;
	position: relative;
}
.basement__mail span {
	content: "";
    position: absolute;
	left: 0;
	top: 1px;
	width: 18px;
	height: 18px;
	background: url(/image/mail.svg) center center/cover no-repeat;
}
.basement__telegram {
	margin: 10px 5px 0px 5px;
	padding: 3px 3px 3px 23px;
	position: relative;
}
.basement__telegram span {
	content: "";
    position: absolute;
	left: 0;
	top: 1px;
	width: 18px;
	height: 18px;
	background: url(/image/telegram.svg) center center/cover no-repeat;
}
.basement__name {
	margin-bottom: 50px ;
	padding-left: 11px;
	font-size: 20px;
}
/*--------_end--------*/
/*--------Адаптив меню бургер--------*/
@media (min-width: 767px) {
	.menu__list {
		display: flex;
		align-items: center;
	}
	.menu__list > li {
		padding: 10px 0px;
	}
}
@media (max-width: 767px) {
	.menu__icon {
		z-index: 5;
		display: block;
		position: relative;
		width: 30px;
		height: 18px;
		cursor: pointer;
		background-color: transparent;
	}
	.menu__icon span,
	.menu__icon::before,
	.menu__icon::after {
		left: 0;
		position:absolute;
		height: 10%;
		width: 100%;
		transition: all 0.3s ease 0s;
		background-color: red;
	}
	.menu__icon::before,
	.menu__icon::after {
		content: "";
	}
	.menu__icon::before {
		top: 0;
	}
	.menu__icon::after {
		bottom: 0;
	}
	.menu__icon span {
		top: 50%;
		transform: scale(1) translate(0px, -50%);
	}
	.menu__icon._active span {
		transform: scale(0) translate(0px, -50%);
	}
	.menu__icon._active::before {
		top: 50%;
		transform: rotate(-45deg) translate(0px, -50%);
	}
	.menu__icon._active::after {
		bottom: 50%;
		transform: rotate(45deg) translate(0px, 50%);
	}
	.menu__body {
		position: fixed;
		top: 0;
		left: -100%;
		width: 100%;
		height: 100%;
		background-color: rgb(0, 0, 0, 0.85) ;
		padding: 100px 30px 30px 30px;
		transition: left 0.3s ease 0s;
		overflow: auto;
	}
	.menu__body._active {
		left: 0;
	}
	.menu__body::before {
		content: "";
		position: fixed;
		width: 100%;
		top: 0;
		left: 0;
		height: 90px;
		z-index: 2;
	}
	.menu__list > li {
		flex-wrap: wrap;
		margin: 0px 0px 30px 0px;
	}
	.menu__list > li:last-child {
		margin-bottom: 0;
	}
	.menu__list > li.active {
		display: block;
	}
	.menu__link {
		font-size: 24px;
	}
	.header {
		background-color: transparent;
	}
}
/*--------Адаптив меню бургер-end-------*/
/*--------Адаптив сайта-------*/
/*--------Первый блок-------*/
@media (max-width: 1024px) and (min-width: 880px){
	.headering__display {
		margin-bottom: 10px ;
		justify-content: flex-start;
	}
	.headering__img img {
		width: 400px;
	}
	.headering__text{
		margin: 10px 5px;
	}
}
@media (max-width: 880px) and (min-width: 660px) {
	.headering__display {
		margin-bottom: 10px ;
		justify-content: flex-start;
	}
	.headering__img img {
		width: 400px;
	}
	.headering__text{
		margin: 10px 5px;
	}
	.text__titel {
		font-size: 20px;
	}
	.text__text{
		font-size:16px;
	}
}
@media (max-width: 660px){
	.headering__display {
		margin-bottom: 10px ;
		display: block;
	}
	.headering__img {
		width: auto;
		padding-top: 5px;
	}
	.headering__img img {
		margin: 0 auto;
		width: 350px;
		display: block;
		margin-left: auto;
		margin-right: auto;
	}
	.headering__text{
		margin: 10px 5px;
	}
	.text__titel {
		margin: 25px 5px 10px 5px;
		font-size: 22px;
	}
	.text__text{
		font-size:16px;
	}
}
/*--------Первый блок-end-------*/
/*-------Второй блок-------*/
@media (max-width: 1024px) and (min-width: 880px){
	.content__about {
		font-size: 16px;
	}
	.about__text {
		padding: 10px 30px;
	}
	.about__text-2 {
		padding: 10px 10px 10px 30px;
	}
	.about__img {
		flex: none;
	}
}
@media (max-width: 880px) and (min-width: 480px) {
	.content__about {
		display: grid;
		padding: 10px 0 ;
	}
	.about__text-2 {
		padding: 0;
		text-align: center;
	}
	.about__titel-1 {
		font-size: 30px;
		padding: 5px 0;
	}
	.content__about h3 {
		padding: 20px 0;
	}
	.content__about p {
		font-size: 16px;
	}
} 
@media (max-width: 480px){
	.content__about {
		display: grid;
		padding: 10px 0;
	}
	.about__text-2 {
		padding: 0;
		text-align: center;
	}
	.about__text-2 ul {
		line-height: 28px;
	}
	.about__titel-1 {
		font-size: 26px;
		padding: 5px 0;
	}
	.content__about h3 {
		padding: 18px 0;
	}
	.content__about p {
		font-size: 16px;
	}
}
/*-------Второй блок-end-------*/
/*-------Третий блок-------*/
@media (max-width: 1024px) and (min-width: 880px){
	.wrap__img img {
		width: 400px;
	}
	.wrap__wraper {
		display: flex;
		justify-content: center;
		font-size: 16px;
	}
}
@media (max-width: 880px) and (min-width: 480px) {
	.wrap__img img {
		width: 400px;
		display: block;
		margin-left: auto;
		margin-right: auto;
	}
	.wrap__wraper {
		display: inline;
		font-size: 16px;
	}
	.wraper__titel{
		padding-bottom: 10px;
	}
	.wraper__content {
		text-align: center;
		margin-bottom: 10px;
	}
} 
@media (max-width: 480px){
	.wrap__img img {
		width: 350px;
		display: block;
		margin-left: auto;
		margin-right: auto;
	}
	.wrap__wraper {
		display: inline;
		font-size: 16px;
	}
	.wraper__titel{
		font-size: 22px;
		padding-bottom: 10px;
	}
	.wraper__content {
		text-align: center;
		margin-bottom: 10px;
	}
}
/*-------Третий блок-end-------*/
/*-------Четвертый блок-------*/
@media (max-width: 1024px) and (min-width: 880px){
	.contente__img img {
		width: 400px;
	}
}
@media (max-width: 880px) and (min-width: 420px){
	.portfolio__contente {
		display: block;
	}
	.contente__img img {
		width: 380px;
		display: block;
		margin-left: auto;
		margin-right: auto;
	}
	.contente__text {
		font-size: 16px;
	}
	.contente__titel {
		padding: 10px 0px;
	}
	.contente__text-text {
		padding: 5px 30px;
	}
} 
@media (max-width: 480px) {
	.contente__img img {
		width: 300px;
		display: block;
		margin-left: auto;
		margin-right: auto;
	}
	.portfolio__contente {
		display: block;
	}
	.contente__text {
		font-size: 16px;
	}
	.contente__titel {
		font-size: 22px;
		padding: 10px 0px;
	}
	.contente__text-text {
		padding: 5px 30px;
	}
}
/*-------Четвертый блок-end-------*/
/*-------Подвал-------*/
@media (max-width: 760px){
	.basement {
		display: block;
	}
	.basement__container {
		display :grid;
		justify-content :center;
		font-size: 14px;
	}
	.basement__contact {
	padding: 10px 0px;
	margin: 0 auto;
	}
} 
/*-------Подвал-end------*/
/*-----------------GALLERY---------------------*/
.myPhoto {
	max-width: 1024px;
	margin: 0px auto;
	display: flex;
	padding-top: 100px ;
}
.myPhotoOne {
	margin: 0px auto;
	padding: 0px 30px;
}
.myPhotoOne img {
	width: 100%;
    height: 100%;
}

/*------Форма-------*/
form input.error {
    box-shadow: 0 0 10px #c9362c;
}
label.error {
    display: none!important;
}
.conteiner {
	display: flex;
	justify-content: center;
	align-items: center;
	/* min-height: 100vh; */
}
form {
	/* border: 1px solid #c3c3c3; */
	padding: 10px;
	width: 320px;
	margin: 0 20px;
}
form input {
	width: 100%;
	height: 40px;
	border: 1px solid #c3c3c3;
	border-radius: 5px;
	margin-bottom: 10px;
	padding: 0 15px;
	display: flex;
	align-items: center;
}
form input.error{
	border-color:red;
}
form textarea {
	width: 100%;
	border: 1px solid #c3c3c3;
	border-radius: 5px;
	margin-bottom: 10px;
	padding: 15px;
	display: flex;
	align-items: center;
	line-height: 18px;
}
form button {
	height: 50px;
	width: 100%;
	cursor: pointer;
	border-radius: 5px;
}
@media (max-width: 820px) {
	.basement {
		font-size: 16px;
	}
} 


section.gallery{
    position: relative;
    padding: 45px 0;
  }
  h2.title{
    font-size: 44px;
    font-weight: bold;
    text-align: center;
    padding-bottom: 45px;
    position: relative;
  }
  h2.title:after{
    content: "";
    position: absolute;
    width: 100px;
    height: 3px;
    background-color: #111111;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
  }
  .gallery-list{
    position: relative;
    display: flex;
    flex-wrap: wrap;
    overflow: hidden;
    font-size: 0;
    margin-top: 30px;
  }
  .gallery-item{
    display: block;
    flex: 25%;
    overflow: hidden;
    position: relative;
  }
  .gallery-item-hover{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.7);
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    opacity: 0;
    transition: opacity .5s ease;
    z-index: 2;
  }
  .gallery-item:hover .gallery-item-hover{
    opacity: 1;
  }
  .gallery-item:hover img{
    transform: scale(1.3) rotate(5deg);
  }
  .gallery-item img{
    max-width: 100%;
    height: auto;
    transition: all .5s ease;
  }
  @media (max-width: 991px){
    .gallery-item{
      flex: 33.3%;
    }
    section.gallery{
      position: relative;
      padding: 10px 0;
    }
  }
  @media (max-width: 768px){
    .gallery-item{
      flex: 50%;
    }
  }
  @media (max-width: 530px){
    .gallery-item{
      flex: 100%;
    }
  }