* {
    box-sizing: border-box;
}
p,
h1,
h2,
h3,
h4,
h5,
h6 {
    padding: 0;
    margin: 0;
}
p{
	line-height: 1.8;
}
a{
	text-decoration: none !important;
	transition: 0.3s;
}
input, textarea, button, .slick-slide{
	outline: none !important;
	border: none;
}

body{
	color: #3A464F !important;
	font-size: 18px;

}

.loader{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	position: fixed;
	left: 0;
	top: 0;
	z-index: 2000;
	background: rgb( 251, 250, 243);
}
.loader-block{
	display: flex;
	align-items: center;
}
.loader-block-item{
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: #E5AC0D;
}
.loader-block-item+.loader-block-item{
	margin-left: 10px;
}
.loader-block-item:nth-child(1n){
	animation: loaderBottom 1s infinite;
}
@keyframes loaderTop{
	0%{
		transform: translateY(0);
	}
	50%{
		transform: translateY(-5px);
	}
	0%{
		transform: translateY(0);
	}
}
.loader-block-item:nth-child(2n){
	animation: loaderTop 1s infinite;
}
@keyframes loaderBottom{
	0%{
		transform: translateY(0);
	}
	50%{
		transform: translateY(5px);
	}
	0%{
		transform: translateY(0);
	}
}

@keyframes show{
	from{
		opacity: 0;
	}
	to{
		opacity: 1;
	}
}

.container{
	max-width: 1430px;
}


@keyframes drop{
	0%{
		transform: translateY(0px);
	}
	25%{
		transform: translateY(-5px);
	}
	50%{
		transform: translateY(5px);
	}
	75%{
		transform: translateY(-5px);
	}
	100%{
		transform: translateY(0px);
	}

}
.h-btn{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: 0.3s;
	position: relative;
	padding: 20px 30px;
	border: 2px solid #E5AC0D;
	border-radius: 50px;
	font-weight: 700;
	font-size: 20px;
	color: #E5AC0D;
	overflow: hidden;
}
.h-btn-item{
	position: relative;
	z-index: 1;
}
.h-btn:after{
	content: "";
	display: block;
	width: 120%;
	height: 100%;
	background: #E5AC0D;
	position: absolute;
	left: 0;
	top: 0;
	transform: translateX(-110%);
	transition: 0.3s;
}
.h-btn:hover{
	color: #fff;
}
.h-btn:hover:after{
	transform: translateX(0%);
}

.solid-btn{
	box-shadow: 0px 4px 30px 0px #F0B153CC;
	background: linear-gradient(157.06deg, #FFDB5B 0%, #E6AC0D 100%);
	color: #fff;
	font-size: 20px;
	font-weight: 700;
	letter-spacing: 0.05em;
	padding: 20px 30px;
	border-radius: 50px;
	transition: 0.3s;
	display: inline-flex;
}
.solid-btn:hover{
	transform: scale(1.1);
}

.header{
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	transition: 0.3s;
	border-bottom: 1px solid #E5AC0D;
	padding: 20px 0;
	z-index: 10;
}
.header.active{
	background: rgba( 251, 250, 243, 0.99 );
	padding: 5px 0;
}
.header.active .logo img{
	width: 50px;
	height: 50px;
}
.header.active .h-btn{
	font-size: 14px;
	padding: 10px 20px;
}
.header.active .header-bars{
	width: 50px;
	height: 50px;
}



.header-row{
	display: flex;
	align-items: center;

}
.header-btn{
	margin-left: auto;
}

.header-bars{
	width: 70px;
	height: 70px;
	margin-left: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #E5AC0D;
	cursor: pointer;
	border-radius: 50%;
	transition: 0.3s;
}
.header-bars img{
	animation: show 0.3s;
}
.header-bars.active img:last-child{
	display: block;
}
.header-bars.active img:first-child{
	display: none;
}
.header-bars:hover{
	transform: scale(1.1);
}

.header-bars-close{
	display: none;
}
.logo{
	display: block;
}
.logo img{
	width: 100px;
	height: 100px;
	transition: 0.3s;
}
.logo:hover{
	animation: drop 0.5s;
}
.header-menu{
	padding: 40px 0;
	position: absolute;
	left: 0;
	top: 100%;
	width: 100%;
	height: 200vh;
	background: rgba( 251, 250, 243, 0.9 );
	display: none;
}

.menu{
	padding: 0;
	margin: 0;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	max-width: 560px;
	margin: 0 auto	;
}
.menu-item{
	display: block;
}
.menu-item+.menu-item{
	
}
.menu-link{
	padding: 20px;
	display: block;
	letter-spacing: 0.03em;
	font-size: 40px;
	color: #3A464F;
	position: relative;
	line-height: 1;
	overflow: hidden;

}
.menu-link:after{
	content: "";
	display: block;
	width: 100%;
	height: 2px;
	background: #E5AC0D;
	position: absolute;
	left: 0;
	bottom: 0;
	transform: translateX(-110%);
	transition: 0.3s;
}
.menu-link:hover{
	color: #E5AC0D;
}
.menu-link:hover:after{
	transform: translateX(0);
}

.header-menu-soc{
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 80px;
	position: fixed;
	left: 0;
	bottom: 40px;
	width: 100%;

}
.header-menu-soc-item{
	color: #86929B;
}
.header-menu-soc-item:hover{
	color: #E5AC0D;
}
.header-menu-soc-item+.header-menu-soc-item{
	margin-left: 100px;
}


.default-row{
	display: flex;
	align-items: center;
}
.title{
	font-size: 38px;
	text-transform: uppercase;
}

h1.title{
	font-weight: 700;
	font-size: 80px;
}

.y-color{
	color: #E5AC0D;
}

.head{
	padding: 140px 0 40px 0
}

.head-row{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.head-row-title{
	max-width: 600px;
}
.head-row-item{
	width: 49%;
	text-align: right;
}

.head-row-img img{
	width: 100%;
}
.head-row-btn{
	margin-top: 60px;

}

.head .slick-dots{
	bottom: 0;
	display: inline-flex;
	transform: translateX(-100%);
	width: auto;
	left: 50%;
}
.head .slick-dots li{
	width: 30px;
	height: 30px;
	border-radius: 50%;
	opacity: 1;
	border: 1px solid transparent;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
}
.head .slick-dots li.slick-active{
	border-color: #FFDB5B;
}

.head .slick-dots li button{
	width: 10px !important;
	height: 10px !important;
	overflow: hidden;
	background: #3A464F;
	transform: rotate(45deg);
}

.r-menu{
	padding: 40px 0;
}

.default-text-block-hint{
	color: #86929B;
	letter-spacing: 0.15em;
	font-size: 14px;
	text-transform: uppercase;
}
.default-text-block .title{
	margin: 30px 0 50px 0;
	max-width: 600px;
	letter-spacing: 0.05em;

}

.default-text-block-slogan{
	color: #86929B;
	max-width: 600px;
	position: relative;
}
.default-text-block-row{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.default-text-block-row-line{
	width: 174px;
	height: 4px;
	border-radius: 20px;
	background: #E5AC0D;
}

.r-menu-block{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-top: 80px;
}

.r-menu-block-item{
	width: 45%;
}
.r-menu-block-item-img{
	overflow: hidden;
	border-radius: 20px;
}
.r-menu-block-item-img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: 0.3s;
}
.r-menu-block-item-img:hover img{
	filter: grayscale(90%);
}


.r-menu-block-item-title{
	font-weight: 300;
	font-size: 16px;
	letter-spacing: 0.05em;
}

.r-menu-block-item:nth-child(2) .r-menu-block-item-img{
	width: 485px;
	height: 644px;
	margin-top: 100px;
}
.r-menu-block-item:nth-child(3){
	text-align: right;
}
.r-menu-block-item:nth-child(3) .r-menu-block-item-img{
	width: 485px;
	height: 644px;
	margin-top: 100px;
	margin-left: auto;
}

.special-block{
	border-radius: 30px;
	overflow: hidden;
	position: relative;
}
.special-block-bg img{
	width: 100%;
}

.special-block-inner{
	z-index: 1;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translateX(-50%) translateY(-50%);
	backdrop-filter: blur(5px);
	box-shadow: 0px 4px 20px 0px #00000040;
	width: 800px;
	max-width: 80%;
	padding: 40px;
	text-align: center;
	border-radius: 10px;
	border: 1px solid #E5AC0D;
	text-transform: uppercase;
	color: #fff;
}
.special-block-inner-text{
	font-size: 16px;
	letter-spacing: 0.015em;
}
.special-block-inner-title{
	margin: 60px 0;
	font-size: 60px;
}


.team{
	padding: 40px 0;
}
.team-block{
	display: flex;
	justify-content: center;
}
.team-block-item{
	max-width: 50%;
	width: 400px;
	position: relative;
}
.team-block-item:hover{
	.team-block-item-inner{
		transform: translateY(-10px);
	}
}

.team-block-item:first-child .team-block-item-img img{
	border-radius: 20px 0 0 20px;
}
.team-block-item:last-child .team-block-item-img img{
	border-radius: 0 20px 20px 0;
}

.team-block-item-img{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
}
.team-block-item-img img{
	width: 100%;
}
.team-block-item-inner{
	text-align: center;
	color: #fff;
	position: relative;
	z-index: 1;
	padding: 50px 50px 0 50px;
	transition: 0.3s;
}

.team-block-item-inner-img{
	width: 80%;
	margin: 0 auto;
	
	border-radius: 20px;

}
.team-block-item-inner-img img{
	width: 100%;
	box-shadow: 0px 2.5px 31.25px 0px #36625A7A;
	border-radius: 20px;
}

.team-block-item-inner-title{
	font-weight: 300;
	font-size: 12px;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}
.team-block-item-inner-slogan{
	font-weight: 300;
	font-size: 22px;
	letter-spacing: 0.03em;
	margin: 30px 0 40px 0;
	text-transform: uppercase;
}

.contacts{
	background: #F3FBFA;
	padding: 40px 0;
	color: #86929B;
}
.contacts-row{
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	align-items: center;
	position: relative;
}
.contacts-map{
	width: 100%;
	max-width: 100%;
}
.contacts-map iframe{
	width: 100%;
	height: 400px;
	border-radius: 30px;
}
.contacts-block{
	padding: 40px 20px;
	width: 240px;
	border-radius: 20px;
	background: #fff;
	position: absolute;
	right: 20px;
	top: 20px;
	text-align: center;
}
.contacts-block-slogan{
	font-size: 10px;
	letter-spacing: 0.015em;
	text-transform: uppercase;
}
.contacts-block-title{
	line-height: 1;
	font-size: 30px;
	margin: 10px 0 40px 0;
	color: #3A464F;
}
.contacts-block-link{
	color: #86929B !important;
	display: block;
	font-size: 20px;
}
.contacts-block-link+.contacts-block-link{
	margin-top: 14px;
}


.s-menu{
	padding: 80px 0;
}
.s-menu-block{

}
.tab-btn{
	display: flex;
	align-items: center;
	
}

.tab-btn-item{
	border: 1px solid #E5AC0D;
	width: 20%;
	padding: 20px 0;
	border-radius: 20px 20px 0 0;
	text-align: center;
	border-bottom: none;
	text-transform: uppercase;
	color: #3A464F;
	font-weight: 500;
	line-height: 1;
	cursor: pointer;
	transform: translateY(15px);
	transition: 0.3s;
}
.tab-btn-item+.tab-btn-item{
	margin-left: 30px;
}
.tab-btn-item.active{
	transform: translateY(0);
	background: #E5AC0D;
	color: #fff;
}
.tab-btn-item:hover{
	transform: translateY(0);
}
.tab-content{
	border: 1px solid #E5AC0D;
	padding-bottom: 30px;
	border-radius: 0 20px 20px 20px;
	position: relative;
	overflow: hidden;
	z-index: 1;

}
.tab-content-bg{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;

}
.tab-content-bg img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: brightness(50%);
}
.tab-content-item+.tab-content-item{
	display: none;
}
.tab-content-item{
	position: relative;
	z-index: 1;
}

.s-menu-block-row{
	justify-content: space-between;
	padding: 0 10px;
	display: flex;
	flex-wrap: wrap;
}
.s-menu-block-row-item{
	width: 29%;
	box-shadow: 0px 4px 10px 0px #E5AC0D;
	background: rgba( 251, 250, 243, 0.99 );
	border-radius: 20px;
	margin-top: 30px;
}
.s-menu-block-row-item-img img{
	width: 100%;
	height: 300px;
	object-fit: cover;
	border-radius: 20px;
}
.s-menu-block-row-item-content{
	padding: 20px;
}

.s-menu-block-row-item-title{
	font-size: 20px;
	font-weight: 500;
}
.s-menu-block-row-item-slogan{
	font-size: 14px;
	font-weight: 300;
	margin: 5px 0 30px 0;
}
.s-menu-block-row-item-inner{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.s-menu-block-row-item-inner-btn .solid-btn{
	padding: 4px 20px;
}
.s-menu-block-row-item-inner-price{
	font-weight: 500;
}


.order{
	padding: 60px 0;
	position: relative;
}
.order .container{
	position: relative;
	z-index: 1;
}
.order-bg{
	position: absolute;
	left: 0;
	top: 0;
	width: 50%;
	height: 100%;
	filter: brightness(30%);
}
.order-bg.first{

}
.order-bg.last{
	left: auto;
	right: 0;
}
.order-bg img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.order-block{
	max-width: 810px;
	margin: 0 auto;
	box-shadow: 0px 4px 50px 0px #928C7E40;
	background: #fff;
	border-radius: 20px;
	padding: 60px 40px;
}

.order-block-inner{
	padding: 0;
	margin: 0;
	display: block;

}

.order-block-row{
	display: flex;
	justify-content: space-between;
}
.order-block-row-item{
	width: 48%;
}
.order-block-inner-title{
	color: #86929B;
	font-size: 14px;
	font-weight: 300;
	margin-bottom: 5px;
}
.order-block-inner-input input, .order-block-inner-input textarea{
	border-bottom: 2px solid #3A464F;
	padding: 0 12px 15px 12px;
	color: #3A464F;
	font-size: 20px;
	width: 100%;
	transition: 0.3s;
}
.order-block-inner-input input:focus, .order-block-inner-input textarea:focus{
	border-color: #E5AC0D;
}
.order-block-inner-input textarea{
	resize: none;


}


.order-block-inner-text{
	margin: 60px 0;
}

.order-title{
	text-align: center;
	margin-bottom: 60px;
}

.h-modal{
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba( 0,0,0,0.5 );
    z-index: 10;
    padding-top: 5vh;
}
.h-modal-content{
    width: 300px;
    padding: 20px 10px;
    box-shadow: 0px 2px 2px 0px #00000040;
    background: #fff;
    border-radius: 5px;
    margin: auto;

}
.h-modal-content-title{
    text-align: center;
    font-size: 18px;
    font-weight: 500;
}
.h-modal-content-icon{
    text-align: center;
    margin-top: 20px;
    font-size: 70px;
    color: #E5AC0D;
}


.news{
	padding: 100px 0;
}
.news-title{
	margin-bottom: 40px;
}
.news-row{
	display: flex;
	justify-content: space-between;
}
.news-row-item{
	width: 32%;
}
.news-inner{
	transition: 0.3s;
	display: block;
	position: relative;
}
.news-inner-date{
	position: absolute;
	left: 0;
	top: 0;
	padding: 24px;
	background: #fff;
	color: #3A464F;
	font-optical-sizing: 14px;
	font-weight: 500;
}
.news-inner+.news-inner{
	margin-top: 20px;
}
.news-inner-img img{
	width: 100%;
	height: 400px;
	object-fit: cover;
	box-shadow: 0px 4px 20px 0px #928C7E40;

}

.news-inner:hover .news-inner-content{
	transform: translateY(-20%);
}

.news-inner-content{
	box-shadow: 0px 4px 50px 0px #928C7E40;
	padding: 40px 30px;
	text-align: center;
	background: #fff;
	border-radius: 20px;
	margin-top: -40px;
	position: relative;
	left: -1px;
	z-index: 1;
	width: calc(100% + 2px);
	transition: 0.3s;
}
.news-inner-content-title{
	font-size: 24px;
	font-weight: 500;
	color: #3A464F;
}
.news-inner-line{
	width: 50%;
	height: 2px;
	margin: 20px auto;
	background: #E5AC0D;

}
.news-inner-content-slogan{
	line-height: 2;
	color: #86929B;
	font-weight: 300;
	letter-spacing: 0.05em;
}

.demonstration{
	background: #FBFAF3;
	padding: 100px 0;
}

.demonstration .slick-track{
	display: flex;
	align-items: center;
}
.demonstration-slider-container{
	position: relative;
	max-width: 800px;
	margin: 0 auto;
}

.demonstration-slider-arrow{
	box-shadow: 0px 4px 15px 0px #BDB4AA40;
	background: #fff;
	width: 70px;
	height: 70px;
	border-radius: 10px;
	transform: rotate(45deg);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	position: absolute;
	left: 0;
	top: calc( 50% - 35px );
	z-index: 1;

}
.demonstration-slider-arrow img{
	max-width: 90%;
	transform: rotate(-45deg);
}
.demonstration-slider{
	max-width: 600px;
	margin: 0 auto;
}
.demonstration-slider-item{

}
.demonstration-slider-item img{
	width: 80%;
	object-fit: cover;
}

.demonstration-inner{
	padding: 80px 60px;
	width: 420px;
	max-width: 100%;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 0;
	background: #fff;
	box-shadow: 0px 4px 30px 0px #AFA68D40;
	border-radius: 20px;
	z-index: 1;
	text-align: center;
}
.demonstration-inner-btn{
	margin-top: 20px;
}

.footer{
	background: #FBFAF3;
	padding: 40px 0;
}
.f-row{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.f-logo{
	position: relative;
}
.f-logo:after{
	content: "";
	position: absolute;
	right: -40px;
	top: 0;
	width: 2px;
	height: 100%;
	background: linear-gradient(157.06deg, #FFDB5B 0%, #E6AC0D 100%);

}
.f-text{
	color: #86929B;
	font-weight: 700;
	font-size: 14px;
	line-height: 1.5;
	margin-bottom: 14px;
	text-align: center;
	width: 450px;
	max-width: 100%;
}
.f-form{
	position: relative;
	width: 450px;
	max-width: 100%;

}
.f-form-input input{
	box-shadow: 0px 4px 30px 0px #B0AFAE40;
	height: 64px;
	padding: 0 37% 0 20px;
	border-radius: 50px;
	color: #86929B;
	font-weight: 700;
	font-size: 14px;
	width: 100%;
}
.f-row-btn{
	position: absolute;
	right: 0;
	top: 0;
	width: 37%;
	height: 100%;
}
.f-row-btn input{
	width: 100%;
	height: 100%;
	border-radius: 64px;
	display: block;
	background: #E5AC0D;
	padding: 0;
	color: #222;
}

.f-link{
	margin-top: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}
.f-link-item{
	max-width: 370px;
	color: #3A464F;
	font-size: 24px;
	line-height: 1.5;
	text-align: center;
	font-weight: 500;
	padding: 20px;

}


@media screen and (max-width: 1200px){
	.r-menu-block-item{
		width: 49% !important;
		text-align: center !important;
	}
	.r-menu-block-item .r-menu-block-item-img{
		width: 100% !important;
		height: 100% !important;
		margin: 0 !important;
	}
	.r-menu-block-item:nth-child(n+3){
		margin-top: 40px;
	}
	.head .slick-dots{
		bottom: -40px;
		transform: translateX(-50%);
	}
	h1.title{
		font-size: 60px;
	}
	.default-text-block-row-line{
		width: 70px;
	}
	.news-inner-content{
		padding: 20px 10px;
	}
	.news-inner-content-title{
		font-size: 18px;
	}
	.news-inner-content-slogan{
		line-height: 1.8;
	}
	.news-inner-line{
		margin: 10px auto;
	}
	.news-inner-img img{
		height: 300px;
	}
}


@media screen and (max-width: 992px){
	.head-row{
		flex-wrap: wrap;
		width: 100%;
		position: relative;
	}
	.head-row-item{
		width: 100%;
		text-align: center;
	}
	.head-row-title{
		max-width: 100%;

	}
	.head-row-btn{
		margin: 20px 0 40px 0;
	}
	.head-row-img{
		width: 50%;
		margin: 0 auto;
		
	}
	.default-text-block-row{
		flex-wrap: wrap;
	}
	.default-text-block-row-btn{
		margin: 20px auto;
	}
	.default-text-block-row-line{
		display: none;
	}
	.special-block-inner-title{
		font-size: 40px;
		margin: 30px 0;
	}
	.tab-btn-item{
		width: auto;
		padding: 20px;
	}
	.s-menu-block-row-item{
		width: 48%;
	}
	.contacts-map{
		width: 100%;
	}

	.team-block-item-inner-img{
		width: 100%;
	}
	.logo img{
		width: 80px;
		height: 80px;
	}
	.news-row{
		flex-wrap: wrap;
	}
	.news-row-item{
		width: 48%;
	}
	.news-row-item:nth-child(n+3){
		display: none;
	}


}


@media screen and (max-width: 768px){
	h1.title{
		font-size: 46px;
	}
	.title{
		font-size: 30px;
	}
	.special{
		display: none;
	}
	.team-block-item-inner{
		padding: 20px 10px 0 10px;
	}
	.tab-btn-item{
		font-size: 12px;
		padding: 20px 10px;
	}
	.tab-btn-item+.tab-btn-item{
		margin-left: 5px;
	}
	.r-menu-block-item{
		position: relative;
		overflow: hidden;
		border-radius: 20px;
	}
	.r-menu-block-item-title{
		border: 1px solid #E5AC0D;
		border-radius: 0 0 20px 20px;
		position: absolute;
		left: 0;
		bottom: 0px;
		width: 100%;
		background: rgba( 251, 250, 243, 0.99 );
		padding: 5px;
	}
	.header-menu-soc{
		display: block;
		padding: 20px;
	}
	.header-menu-soc-item{
		display: block;
	}
	.header-menu-soc-item+.header-menu-soc-item{
		margin-left: 0;
		margin-top: 20px;
	}
	.header-menu-soc{
		display: none;
	}
	.contacts-block{
		position: static;
		width: 100%;
	}
	.news-row-item{
		width: 100%;
	}
	.news-row-item:nth-child(n+2){
		display: none;
	}
	.demonstration{
		display: none;
	}
	.f-row{
		flex-wrap: wrap;
		justify-content: center;
	}
	.f-row-item{
		width: 100%;
		text-align: center;
	}
	.f-form, .f-text{
		width: 100%;
	}
	.f-logo:after{
		display: none;
	}
	.f-logo{
		margin-bottom: 40px;
	}
}

@media screen and (max-width: 574px){
	.s-menu-block-row-item{
		width: 100%;
	}
	.order-block-row{
		flex-wrap: wrap;
	}
	.order-block-row-item{
		width: 100%;
	}
	.order-block-inner-text{
		margin-top: 0;
	}
	.order-block-row-item{
		margin-bottom: 30px;
	}
	.header-btn{
		margin: auto;
	}
	.header-bars{
		margin-left: 0;
	}
	.s-menu-block-row-item-img img{
		height: 160px;
	}
	.menu-link{
		font-size: 20px;
	}
	h1.title{
		font-size: 40px;
	}
	.solid-btn{
		font-size: 16px;
		padding: 10px 20px;
		border-radius: 8px;
	}
	.r-menu-block{
		margin-top: 30px;
	}

}


@media screen and (max-width: 400px){
	.tab-btn-item{
		font-size: 11px;
		padding: 20px 3px;
	}
	.team-block-item-inner-slogan{
		font-size: 14px;
	}
}
