/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v7.0.29,
* Autoprefixer: v9.7.6
* Browsers: last 4 version
*/

@import "reset.css";
@import "responsive.css";
@import "modal-window.css";
@import "thanks.css";
/*----------------------Global Setings-----------------------------*/

*, html {
	padding: 0;
	margin: 0;
	box-sizing: border-box;	
	scroll-behavior: smooth;
}
body{
	font-family: 'Uni Neue';
	color: #000;
	font-size: 24px;
	overflow-x: hidden;
}
.link-btn{
	background: #ED3414;
	font-weight: 700;
	font-size: 28px;
	color: #fff;
	border-radius: 40px;
	box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
	text-decoration: none;
	-webkit-text-decoration-line: underline;
	        text-decoration-line: underline;
	outline: none;
	position: relative;
}
/*----------------------Шапка-----------------------------*/

.header{
	padding-top: 15px;
	background: url(../img/line-head.png) no-repeat;
    background-position: right top;
    background-size: cover;
}
.container{
	max-width: 1520px;
	margin: 0 auto;
	padding: 0 50px;
}

.lang  a{
	display: flex;
	margin: 3px;
	padding: 2px;
}
.menu{
	display: flex;
	align-items: center;
}
.menu li + li{
	margin-left: 35px;
}
.menu li a{
	text-decoration: none;
	color: #000;
	font-size: 22px;
	font-weight: 700;
	outline: none;
	transition: 0.3s;
}
.menu li a:hover{
	color: #F73818;
}
.menu-mob {
	display: none;
}
.telephone{
	text-decoration: none;
	color: #000;
	line-height: 48px;
	border: 2.5px;
	padding: 0 31px;
	border-radius: 25px;
	font-size: 18px;
	position: relative;
	background: #fff;
	font-weight: 500;
	outline: none;
	transition: 0.3s;
}
.telephone:hover{
	background: none;
}
.telephone::before{
	content: "";
 	position: absolute;
	top: -3px;
	bottom: -3px;
  	left: -3px;
  	right: -4px;
  	background: linear-gradient(0deg, #00A86B, #ED3414);
  	border-radius: 24px;
  	z-index: -1;
}

.link_responsive-menu{
	display: none;
}
.responsive-menu{
	padding: 10px;
	height: 40px;
	border: 1px solid #000;
	display: block;
}
.responsive-menu_part{
	width: 30px;
	height: 3px;
	background: #000;
	display: block;
	margin-bottom: 5px;
}
.responsive-menu_part:last-child{
	margin-bottom: 0;
}
.hat{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1520px;
	margin: 0 auto;
	z-index: 99;
	padding: 8px 50px;
	transition: all 0.5;
}
.hat-fixet {
	background: linear-gradient(#fad5c6,#fff );
	box-shadow: 0 0 8px #fafafa;
	transition: all 0.5;
  }

  .logo-top img {
	  width: 60%;
	  vertical-align: inherit;
  }

/*----------------------Первый экран в хедере-----------------------------*/
.logo-top {
	width: 80px;
    height: auto;
    overflow: hidden;
}
.logo-top img {
	width: 100%;
}

.header_text{
	margin-top: 80px;
}
h1{
	font-size: 46px;
	line-height: 80px;
	text-transform: uppercase;
	color: #F73818;
	display: block;
	max-width: 696px;
}
h1 span{
	font-weight: 900;
}
.header_first-screen{
	display: flex;
	justify-content: space-between;
	padding-top: 100px;
	position: relative;
}
.header_first-screen::before{
	content: '';
	background: url(../img/ieroglif.png);
	width: 500px;
	height: 562px;
	position: absolute;
	top: -20px;
	left: 0;
	right: 0;
	margin: auto;
	z-index: 0;
}
.header_text p{
	display: block;
	max-width: 632px;
	line-height: 35px;
	letter-spacing: 0.05em;
	margin-top: 17px;
	margin-bottom: 77px;
}
.header_left-button{
	padding: 23px 83px 23px 83px;
	background: #ED3414;
	text-decoration: none;
	font-weight: 800;
	font-size: 20px;
	line-height: 73px;
	color: #fff;
	border-radius: 40px;
	position: relative;
	outline: none;
}
.header_right-button{
	position: relative;
	padding: 22px 83px 21px 83px;
	border: 2.5px solid #ED3414;
	border-radius: 40px;
	left: -63px;
	font-weight: 700;
	font-size: 18px;
	-webkit-text-decoration-line: underline;
	        text-decoration-line: underline;
	color: #000;
	outline: none;
}
.header_photo{
	position: relative;
	display: flex;
	justify-content: center;
	width: 100%;
	max-width: 545px;
}
.header_photo img{
	width: 100%;
}


/*----------------------Преимущества-----------------------------*/

.benefits{
	width: 100%;
	display: flex;
	align-items: center;
	margin-bottom: 30px;
}

.benefits-list{
	min-height: 146px;
	width: inherit;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-gap: 15px;
	padding: 15px 30px;
	justify-content: center;
	border: 1px solid rgba(237, 52, 20, 0.5);
	background: rgba(250, 253, 252, 0.5);
	border-radius: 100px;
}
.benefits-list li{
	display: flex;
	align-items: center;
}
.benefits-list li span{
	font-size: 20px;
	line-height: 27px;
	font-weight: 700;
	color: #ED3414;
	min-width: 140px;
	margin-left: 20px;
}



/*----------------------Обо мне-----------------------------*/
.about-me{
	margin-bottom: 90px;
	padding-top: 60px;
}
.about-wrapper {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}
.about-me_left {
	max-width: 400px;
	width: 100%;
}
.about-me_left img {
	width: 100%;
}
.about-me_right{
	margin-left: 20px;
	max-width: 1060px;
}
h2{
	font-weight: 700;
	font-size: 38px;
	line-height: 45px;
	color: #ED3414;
}
.about-me_right p{
	margin-top: 37px;
	font-size: 28px;
	line-height: 38px;
	text-align: justify;
}
.about-me_right p strong{
	font-weight: 700;
}
.about-me_right p:nth-child(2){
	margin-top: 56px;
	margin-bottom: 0px;
}
.about-me_button{
	padding: 19px 100px;
	line-height: 74px;
	margin-bottom: 90px;
}
.button-position-div{
	text-align: center;
	margin-top: 85px;
}
.treatment-list {
	margin-bottom: 50px;
}
.certificate {
	margin-top: 100px;
}
.certificate-wrapper {
	width: 300px;
	height: auto;
	overflow: hidden;
	margin-right: 20px;
	outline: none;
	border: 2px solid #e9ece9;
}

.certificate-wrapper img {
	width: 100%;
}

/*----------------------Методы-----------------------------*/
.lotus-girl{
	background: url(../img/bg3.jpg) no-repeat center top / cover;
	padding-bottom: 121px;
	text-align: center;
}
h3{
	font-size: 42px;
	line-height: 50px;
	font-weight: 700;
	text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.lotus-girl h3{
	padding-bottom: 55px;
	padding-top: 64px;
	max-width: 1170px;
	text-align: center;
	margin: 0 auto;
}
h3 strong{
	color: #ED3414;
}
.lotus-girl_responsive-img{
	width: 100%;
	max-width: 1000px;
    height: auto;
    margin: 50px auto 0;
}
.lotus-girl_responsive-img img{
	width: 100%;
	height: 100%;
}
/*----------------------Диагностика-----------------------------*/
.diagnostics-wrapper {
	display: flex;
	flex-wrap: wrap;
}
.diagnostics{
	padding-top: 70px;
	margin-bottom: 136px;
	background: url(../img/line.png)no-repeat;
	background-size: cover;
	background-position: left top;
}
.diagnostics-title  h2{
	display: block;
	text-align: center;
	margin-bottom: 100px;
	font-weight: bold;
	font-size: 46px;
	line-height: 50px;
	font-style: normal;
	text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.diagnostics-title h2 strong {
	color: black;
}
.diagnostics-items {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 100px;
}
.diagnostics-items:nth-child(2) {
	margin-bottom: 0;
}
.diagnostics_button{
	padding: 19px 85px;
	line-height: 74px;
	margin-bottom: 50px;
}
.diagnostics_right {
	margin-left: 100px;
	width: 100%;
}
.diagnostics_right  h3{
	margin-bottom: 25px;
}
.diagnostics_right p {
	font-weight: normal;
	font-size: 28px;
	line-height: 42px;
}




/*----------------------Лечение-----------------------------*/
.treatment{
	background: url(../img/bg5.png) no-repeat center top / cover;
	padding-bottom: 117px;
	margin-bottom: 70px;

}
.treatment h3{
	text-align: center;
	margin: 0 auto;
	max-width: 1180px;
	padding-top: 100px;
	padding-bottom: 77px;
}

.row{
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	justify-content: space-around;
	text-align: center;
	margin-bottom: 126px;
}
.col-4{
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
}
.col-4 a img{
	margin-bottom: 29px;
}
.col-4 a{
	outline: none;
}
.col-4 a span{
	color: #000;
	font-size: 32px;
	font-weight: 700;
	line-height: 43px;
	text-align: center;
	text-decoration: underline;
	transition: 0.3s;
}
.col-4 a span:hover{
	color: #ED3414;
}
.treatment_button{
	padding: 19px 83px;
	margin-top: 45px;
	line-height: 74px;
}
.treatment_responsive-img{
	width: 100%;
	max-width: 300px;
	height: auto;
	margin: 0 auto;
}
.treatment_responsive-img img{
	width: 100%;
	/*height: 100%;*/
}
/*----------------------Отзывы-----------------------------*/
.reviews {
	padding: 80px;
    background: url(../img/dragon.png)no-repeat;
    background-position: center;
	background-size: cover;
}
.reviews-wrapper {
	
	
}
.reviews-title {
	max-width: 512px;
	text-align: center;
	margin: 0 auto;
}
.reviews-title h3 {
	font-weight: bold;
	font-size: 46px;
	line-height: 50px;
	font-style: normal;
}

.reviews-items {
    max-width: 500px;
  
    width: 100%;
    margin: 50px auto 120px;
	min-height: 350px;
	max-height: 350px;
	overflow-y: scroll;
    display: flex;
	flex-direction: row;
    justify-content: flex-end;
	align-items: flex-start;
	-webkit-box-align: flex-strat;
	-webkit-box-pack: center;
	flex-wrap: wrap;
}
.reviews-items p {
	font-style: normal;
	padding: 15px 30px;
	font-weight: normal;
	font-size: 20px;
	line-height: 30px;
	
	margin-bottom: 20px;
}
.reviews-items span {
	display: block;
	text-align: right;
	padding-top: 20px;
	color: #ED3414;
	font-size: 20px;
	font-weight: bold;
	padding-bottom: 30px;
	padding-right: 30px;
}
/* slider */
.dots-reviews {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0;
	height: 0;
	padding-top: 0px;
}
.dots-reviews button {
    border-style: none;
    border-radius: 50%;
    font-size: 0;
    height: 25px;
    width: 25px;
    border: 1px solid #83675A;
	background: transparent;
	padding: 0;
	margin-left: 5px;
	margin-right: 5px;
	position: relative;
    bottom: 55px;
}
.slick-active button{
	background: #83675A;

}
.slider-arrows {
		position: absolute;
		bottom: 0;
		left: 0;
		right: 0;
		background: #f0d7ad8c;
		padding: 20px;
		border-radius: 50%;
		margin: 0 auto;
		cursor: pointer;
}
.slider-arrows:hover {
	background: #F0D7AD;
}
.arrow-left {
	right: 80px;
	bottom: 15px;
	z-index: 2;
}
.arrow-right {
	left: 80px;
	bottom: 15px;
}
/*----------------------Контакты-----------------------------*/
.contacts{
	background: url(../img/bg7.png) no-repeat center top / cover;
}
.contacts h3{
	max-width: 807px;
	text-align: center;
	margin: 0 auto;
	padding-top: 70px;
	padding-bottom: 60px;
}
.contacts_wrapper{
	max-width: 1134px;
	margin: 0 auto;
}
.contacts_left-block,
.contacts_right-block{
	width: 508px;
	height: 512px;
}

.contacts_center-block{
	width: 1px;
	height: 480px;
	background: #F73818;
	-webkit-filter: blur(4px);
	        filter: blur(4px);
}

.contacts_blocks{
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-bottom: 73px;
}
.contacts_left-block{
	/*background: url(../img/Group11.png) no-repeat center top;*/
	display: flex;
	justify-content: center;
}
.contacts_left-block ul li{
	display: flex;
	align-items: center;
	font-weight: bold;
	line-height: 32px;
}
.contacts_left-block ul li a{
	text-decoration: none;
	color: #000;

}
.contacts_left-block ul li span{
	color: rgba(0, 0, 0, 0.49);
}
.contacts_left-block ul li img{
	padding-right: 40px;
}
.contacts_left-block ul{
	display: flex;
	flex-direction:column;
	justify-content: space-evenly;
	align-items: center;
}
.contacts_left-block ul li a{
	text-align: left;
}
.contacts_right-block form,
.contacts_inputs{
	display: flex;
	flex-direction:column;
	justify-content: center;
}
.contacts_right-block{
	/*background: url(../img/Group22.png) no-repeat center top;*/
	display: flex;
	justify-content: center;
}

.contacts_lable{
	margin-bottom: 22px;
	font-weight: 700;
	line-height: 32px;
	text-transform: uppercase;
}
input{
	border-style: none;
	padding-bottom: 14px;
	background-color: rgba(0, 0, 0, 0);
	font-size: 28px;
	line-height: 38px;
	border-bottom: 3px solid #8D8383;
}
input:active,
input:hover{
	border-color: #ED3414;
}
.contacts_name{
	margin-bottom: 60px;
}
.contacts_tel{
	margin-bottom: 46px;
}
button{
	border-style: none;
	padding: 19px 107px 19px 107px;
}


/*----------------------Footer-----------------------------*/
.footer_logo img {
	width: 60%;
}
.footer_wrapper{
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 33px 0;
}
.footer_info{
	text-align: center;
}
.footer_info p{
	line-height: 32px;
	font-weight: 700;
}
.footer_info span{
	font-weight: 500;
	line-height: 32px;
}
.footer_info span a{
	color: #F63818;
}
.footer_social-networks a{
	text-decoration: none;
}
.footer_social-networks{
	display: flex;
	justify-content: space-evenly;
}
.footer_responsive{
	display: none;
	text-align: center;
	font-size: 16px;
}
.footer_responsive a{
	color: #000;
	text-decoration: none;
}