* {
	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: 14px;
	-ms-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
}
input,
button,
textarea {
	font-family: inherit;
}
input::-ms-clear {
	display: none;
}
button {
	cursor: pointer;
}
button::-moz-focus-inner {
	padding: 0;
	border: 0;
}
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;
}
/*--------------------*/

@import url('https://fonts.googleapis.com/css2?family=Oswald&display=swap');

body {
	scroll-behavior: smooth;
}

html,
body {
	/* height: 100%; */	
	font-family: 'Oswald', sans-serif;
	background-color: #f5eded;
	color: rgb(56, 56, 56);
}

.wrapper {
	min-height: 100%;
	display: flex;
	flex-direction: column;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 15px;
}

/* PC */
@media (max-width: 1200px) {
	.container {
		max-width: 970px;
	}
}
/* TABLET */
@media (max-width: 991.98px) {
	.container {
		max-width: 750px;
	}
}
/* MOBILE */
@media (max-width: 767.98px) {
	.container {
		max-width: none;
	}
}
/* MOBILE SMALL */
@media (max-width: 479.98px) {
}

.header__body {
	background-color: #464545;
}
.logo {
	width: 50px;
	height: 50px;
}
.header__social {
	border-radius: 50%;
	width: 20px;
	height: 20px;
}

/*  */

.header {
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 50;
}

.main {
	flex: 1 1 auto;
}

.header::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #444;
	z-index: 2;
}

.header__body {
	position: relative;
	display: flex;
	justify-content: space-between;
	height: 65px;
	align-items: center;
}
.header__logo {
	flex: 0 0 46px;
	border-radius: 50%;
	overflow: hidden;
	position: relative;
	z-index: 3;
}
.header__logo img {
	max-width: 100%;
	display: block;
}
.header__list {
	display: flex;
	position: relative;
	z-index: 2;
}
.header__list li {
	margin: 0 0 0 20px;
	list-style: none;
}
.header__link {
	color: #fff;
	text-transform: uppercase;
	font-size: 18px;
	text-decoration: none;
}
.header__link:hover {
	color: #151418;
	font-size: 18, 5px;
	transition: all 1s;
}

@media (max-width: 767px) {
	.header__body {
		height: 100px;
		padding: 0 20px;
	}
	.header__link {
		color: #fff;
		text-transform: uppercase;
		font-size: 12px;
		text-decoration: none;
	}
}

@media (max-width: 421px) {
	.header__body {
		height: 140px;
		padding: 0 20px;
	}
	.header__logo {
		flex: 0 0 70px;
	}
	.logo {
		width: 70px;
		height: 70px;
	}
	.header__list {
		flex-direction: column;
		margin: 0 0 0 10px;
	}
	.header__list li {
		padding: 10px 0;
	}
	/* .header__link {
		padding: 15px 0;
	} */
}

/* --------------------------------------------------------my__name-is---------------------------------------------------------- */
.my__name-is {
	padding-top: 110px;
	margin-bottom: -50px;
}
.my__name-body {
	display: flex;
	justify-content: space-between;
}
.my__name-is h2 {	
	font-size: 18px;
	max-width: 600px;
	line-height: 30px;
	letter-spacing: 2px;
	padding: 70px 0 0 0;
}
.photo img {
	width: 450px;
	height: 550px;
	border-radius: 85px;
	border-left: 0px solid black;
	box-shadow: 0 0 25px 22px rgba(0, 0, 0, 0.5);
}
.permanent__it {
	padding: 100px 0;
}
@media (max-width: 1200px) {
	.my__name-is h2 {
		max-width: 400px;
		line-height: 30px;
	}
}

@media (max-width: 991.98px) {
	.my__name-is h2 {
		padding: 10px 0 0 0;
		max-width: 300px;
		line-height: 30px;
	}
	.photo img {
		width: 380px;
		height: 500px;
		border-radius: 85px;
	}
}
@media (max-width: 767.98px) {
	.my__name-body {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
	}
	.my__name-is h2 {
		display: flex;
		max-width: 600px;
		line-height: 30px;
		align-items: center;
		justify-content: center;
		text-align: center;
		padding-top: 10px;
		padding-bottom: 30px;
	}
	.photo {
		display: block;
		margin: 0 auto;
	}
	.photo img {
		width: 420px;
		height: 420px;
	}
}
@media (max-width: 421px) {
	.my__name-body h2 {
		padding-top: 50px;
	}
	.photo img {
		width: 300px;
		height: 300px;
	}
}
/* --------------------------------------------------------my__name-is---------------------------------------------------------- */
/* -------------permanent__it------------------- */

.permanent__it {
	display: flex;
}

h1 {
	text-transform: uppercase;
	font-size: 35px;
	line-height: 40px;
	text-align: center;
	padding-bottom: 30px;
	color: #151418;
}

.permanent__it-body h2 {	
	font-size: 25px;
	line-height: 40px;
	text-align: center;
	padding: 40px 0 10px 0;
	color: #151418;
}

.permanent__it-body p {	
	line-height: 30px;
}

.permanent__it-body li{	
	line-height: 30px;
}
.p__end{
	padding-bottom: 50px;
}

.permanent__it-body img {
	display: block;
	margin: 0 auto;
	width: 800px;
	height: 700px;
	border-radius: 10%;	
	border-left: 0px solid #f5eded;
	box-shadow: 0 0 35px 22px#a39e9e;
}

@media (max-width: 991.98px) {
	.permanent__it-body img {
		width: 600px;
		height: 620px;
	}
}

@media (max-width: 767.98px) {
	.permanent__it-body img {
		width: 500px;
		height: 420px;
	}
}

@media (max-width: 590.98px) {
	.permanent__it-body img {
		width: 435px;
		height: 420px;
	}
}

@media (max-width: 530.98px) {
	.permanent__it-body img {
		width: 400px;
		height: 420px;
	}
}

@media (max-width: 420.98px) {
	.permanent__it-body img {
		width: 350px;
		height: 360px;
	}
}
@media (max-width: 377.98px) {
	.permanent__it-body img {
		width: 280px;
		height: 360px;
	}
}

/* ---------------------permanent__makeup----------------------- */
.permanent__makeup {
	margin-top: -10px;
}

.universal__h2 {
	font-size: 25px;
	line-height: 40px;
	text-align: center;
	padding: 0px 0 30px 0;
	margin: 10px 0;
	color: #151418;
}

.universal__h3 {	
	font-size: 24px;
	line-height: 30px;
	letter-spacing: 2px;
	padding-bottom: 30px;
	font-weight: 700;
	color: #0c0b0b;
	margin-bottom: -20px;
}

.universal {	
	font-size: 14px;
	line-height: 30px;
	letter-spacing: 2px;
	padding-bottom: 30px;
}

.universal__photo {
	display: block;
	margin: 0 auto;
	width: 624px;
	height: 468px;
	border-radius: 50px;	
}

@media (max-width: 991.98px) {
	.permanent__makeup {
		margin-top: -60px;
	}
	.universal__photo {
		width: 400px;
		height: 250px;
	}
}

@media (max-width: 767.98px) {
	.universal__photo {
		width: 300px;
		height: 210px;
	}	
}
@media (max-width: 420.98px) {
	.universal__photo {
		width: 250px;
		height: 200px;
	}	
}
/* --------------------permanent__makeup---------------------- */
/* ---------------------eyebrow__tattoo--------------- */
.eyebrow__tattoo {
	padding: 30px 0;
	border-radius: 70%;
}
.photo__universal1{
	margin-right: 50px;		
		
}
.photo__universal2{	
	margin: 20px 0;	
		
}
.photo__universal3{
	margin-right: 50px;
	height: 668px;			
}

.photo__universal4{
	margin: 20px 0;
}

@media (max-width: 767.98px) {	
	.photo__universal1{
	margin: 0 auto;				
}
	.photo__universal2{		
	margin: 0 auto;			
}
	.photo__universal3{
	height: 468px;	
	margin: 0 auto;	
}
.photo__universal4{
	margin: 0 auto;	
}
}
@media (max-width: 420.98px) {	
	.photo__universal3{
	height: 368px;	
}
}
/* ---------------------eyebrow__tattoo--------------- */
/* -------------------------spraying------------------ */

.spraying {
	padding: 30px 0;
}


.photo__universal1{
	margin-right: 50px;		
		
}
.photo__universal2{	
	margin: 20px 0;	
		
}
.universal5{
	height: 468px;
	margin-right: 50px;				
}

.photo__universal4{
	margin: 20px 0;
}

@media (max-width: 991.98px) {		
	.universal5{
	height: 250px;	
	margin-right: 50px;	
}
}

@media (max-width: 767.98px) {	
	.photo__universal1{
	margin: 0 auto;				
}
	.photo__universal2{		
	margin: 0 auto;			
}
	.universal5{
	height: 210px;	
	margin: 0 auto;	
}
.photo__universal4{
	margin: 0 auto;	
}
}
@media (max-width: 420.98px) {	
	.universal5{
	height: 200px;	
	margin: 0 auto;	
}
}
/* -------------------------spraying------------------ */
/* -------------------------------------home__care------------------------------ */

.home__care {
	padding: 30px 0 10px 0;
}

.home__care-body  {
	
}

.universal__h3 {
}
.home {
	font-family: none;
	text-transform: uppercase;
	font-size: 35px;
	line-height: 40px;
	text-align: center;
	color: #151418;
	padding: 80px 0;
	margin: -40px 0;
}
.universal {
	
}
.universal__photo {
}

@media (max-width: 991.98px) {
	.home {
		padding: 80px 0;
		margin-top: -80px;
	}
}

@media (max-width: 767.98px) {
	.home {
		padding: 60px 0;
		margin-top: -60px;
	}
}
@media (max-width: 420.98px) {
	.home {
		padding: 40px 0;
		margin-top: -60px;
	}
}
/* -------------------------------------home__care------------------------------ */
/* ------------------what----------------------- */
.what {
	padding: 0px 0;
}
.what-body {
}
.what__h2{
	display: flex;	
	font-size: 18px;	
	line-height: 30px;
	letter-spacing: 2px;
	text-align: center;
	align-items: center;
	justify-content: center;
	padding: 40px 0;
	color: #000;
}

.what-body p{	
	line-height: 30px;	
}
/* ------------------what----------------------- */
/* ------------------ptaiz----------------------- */

.ptaiz {
	padding: 20px 0;
}

.praiz__body img{
	display: block;
	margin: 0 auto;
	width: 600px;
	height: 800px;
}
@media (max-width: 991.98px) {
	.praiz__body img{
	width: 500px;
	height: 700px;
	}
}
@media (max-width: 767.98px) {
	.praiz__body img{
	width: 400px;
	height: 600px;
	}
}
@media (max-width: 420.98px) {
	.praiz__body img{
	width: 280px;
	height: 500px;
	}
}
/* ------------------ptaiz----------------------- */

/*-------------------contacts__info--------------------*/
.contacts__info {
	padding: 25px 0;
}


@media (max-width: 340.98px) {
	.info-contacts__map{
	margin: 0 auto;
	width: 280px;
}
}
.info-contacts__map {
	
}
/*-------------------contacts__info-------------------*/
/* ----------------------footer--------------------------- */

.footer {		
	padding: 5px 20px;			
	background-color: #444;	
	align-items: center;
	justify-content: space-between;
}
.footer__body {
	display: flex;		
	align-items: center;	
	justify-content: space-between;	
}
.footer__logo {	
	/* margin-right: 20px;
	margin-left: -20px; */
	border-radius: 50%;
}


.footer__body a{	
	color: #fff;	
	font-size: 28px;
	transition: all 1s;	
}

.footer__body a:hover{
	color: rgb(35, 34, 34);	
}

.footer__body img{
	/* margin-right: 55px; */
	border-radius: 15px;
}

@media (max-width: 991.98px) {
	.footer__logo img {
		width: 450px;
		height: 450px;
		border-radius: 50%;
	}
}
@media (max-width: 767.98px) {
	.footer__logo {		
	margin-left: 0px;	
}
	.footer__logo img {
		width: 150px;
		height: 150px;
		border-radius: 50%;
	}
	.footer__body a{	
	color: #fff;	
	font-size: 18px;
	transition: all 1s;	
}
}
@media (max-width: 420.98px) {
	.footer{
		padding: 25px 5px;			
	}
	.footer__logo img {
		width: 35px;
		height: 35px;
		border-radius: 50%;
}
	.footer__body a{
		font-size: 20px;
	}
}
/* ----------------------footer--------------------------- */

