bxbody {
	font-family:  sans-serif;
	margin: 0;
	background: white;
	-webkit-fony-smoothing: antialiased;
} 

*,
*:before,
*:after {
	box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
	margin: 0;
}

p {
	margin: 0 0 10px;
}

/*----container---*/

.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 15px;
}

/*----header----*/

.header {
	width: 100%;
	height: 120px;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1000;
}

.header.fixed {
	height: auto;
	position: fixed;
	background: white;
	opacity: .9;
}

.header.fixed .header_inner {
	padding: 0;
	border: 0;
}

.header_inner {
	display: flex;
	justify-content: space-between; 
	align-items: center;
	border-bottom: 1px solid #2BB586;
	padding: 25px 0;
}

/*----nav----*/

.nav {
 display: flex;
}

.nav_link {
	color: navy;
	font-size: 14px;
	font-weight: bold;
	text-transform: uppercase;
	text-decoration: none;
	margin-left: 50px;
	opacity: .9;
	transition: opacity .3s linear;
}

.nav_link:first-child {
	margin-left: 0;
}

.nav_link:hover {
	opacity: 1;
	color:  #CF0B62;
}

/*----intro----*/

.intro {
	display: flex;
	flex-direction: column;
	justify-content: center;
	height: 750px;
	padding-top: 120px;
	background-image: url('images/hero-small.jpg');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.intro_inner {
	width: 100%;
	max-width: 970px;
	margin: 0 auto;
	text-align: center;
}

.intro_title {
	font-family: tahoma;
	font-size: 62px;
	line-height: 1.1;
	color: #CF0B62;
	text-transform: uppercase;
	margin: 0 0 30px;	
}

.intro_subtitle {
	font-size: 21px;
	line-height: 1.5;
	color: #C778CE;
	font-weight: 400;
	margin-bottom: 60px;
}

/*-----button-----*/

.btn {
	display: inline-block;
	vertical-align: top;
	padding: 14px 40px;
	border-radius: 2px;
	font-size: 14px;
	color: white;
	font-weight: 600;
	text-transform: uppercase;
	text-decoration: none;
	text-align: center;
}

.btn--red {
	background: #e84545;
}

.btn-long {
	min-width: 280px;
}

.btn--red:hover {
	background: #BE089A;
	transition: background .1s linear;
}

/*----info---*/

.info {
	display: flex;
	flex-wrap: wrap;
	margin: 100px auto;
}

.info_item {
	width: 33%;
	text-align: center;
	padding: 0 40px;
	margin-bottom: 50px;
}

.info_icon {
	margin-bottom: 20px;
}

.info_title {
	margin-bottom: 20px;
	font-size: 16px;
	color: #CF0B62;
	text-transform: uppercase;
}

.info_text {
	font-size: 15px;
	color: #2d3033;
	line-height: 1.5;
}

       /*----album----*/

.album {
	display: flex;
	flex-wrap: wrap;

}

.album_item {
	width: 25%;
	height: 350px;
	border-bottom: 1px solid white;
	border-right: 1px solid white;
	position: relative;
	overflow: hidden;
}

.album_item:hover .album_content {
	opacity: 1;
} 

.album_img {
	min-width: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 1;
	transform: translate3d(-60%, -50%, 0);
}

.album_content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: center;
	width: 100%;
  height: 100%;
	background-color: rgba(232, 69, 69, 0.7);
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;	
	color: white; 
	text-transform: uppercase;
	opacity: 0;
	transition: opacity .3s linear;
}

.album_title {
	margin-bottom: 10px;
	font-size: 15px;
	font-weight: bold;
}

/*----person----*/

.person {
	margin: 100px 0 60px;
}

.person_inner {
	display: flex;
	flex-wrap: wrap; 
	margin: 0 -20px;
}

.person_item {
	width: 25%;
	padding: 0 20px;
	margin-bottom: 40px;
}

.person_img {
	display: block;
	width: 100%;
	max-width: 100%;
	height: auto;
	margin-bottom: 10px;
}

.person_name {
	margin-bottom: 10px;
	font-size: 22px;
	color: black;
	font-family: verdana;
}

.person_prof {
	margin-bottom: 10px;
	font-size: 14px;
	color: #CF0B62;
	text-transform: uppercase;
}

.person_text {
	font-size: 15px;
	line-height: 1.5;
	color: #6c7279;
	margin-bottom: 20px;
}

/*----social----*/

.social {
	display: flex;
}

.social--footer {
	justify-content: center;
}

.social_item {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 40px;
	height: 40px;
	margin-right: 5px;
	border: none;
	background: white;
	border-radius: 3px;
}

.social_facebook {
	display: block;
	height: 20px;
	fill: navy;
}

.fb:hover {
	background: #010192; 
}  

.fb:hover .social_facebook {
	fill: white;
	background: #010192;
}

.social_twitter {
	display: block;
	height: 21px;
	fill: #0672A1;
}

.tw:hover {
	background: #0672A1;
}

.tw:hover .social_twitter {
	background: #0672A1;
	fill: white;
}

.social_skype {
	display: block;
	height: 23px;
	fill: #0672A1;
}

.sky:hover {
	background: #0672A1;
}

.sky:hover .social_skype {
	background:  #0672A1;
	fill: white;
}

 /*----info-slide----*/

 .info_slide {
 	background: #493140;
 	overflow: hidden;
 }

 .slide_item {
 	display: flex;
 	flex-wrap: wrap;
 	overflow: hidden;
 }

.reviews_slider {
	height: 500px;
	overflow: hidden;
}

.reviews_slider .slick-initialized {
	height: auto;
}	

 .slide_img {
 	width: 50%;
 	height: 500px;
 	position: relative;
 }

.slide_photo {
	position: absolute;
	top: 50%;
	right: 0;
	z-index: 1;
	transform: translateY(-50%);
}

 .slide_content {
 	width: 50%;
 	display: flex;
 	flex-direction: column;
 	justify-content: center;
 	padding-left: 80px;
 	color: white;
 }

 .slide_text {
 	font-size: 33px;
 	font-style: italic;
 	line-height: 1.2;
 	margin-bottom: 25px;
 } 

 .slide_author {
 	font-size: 13px;
 	font-weight: bold;
 	font-family: verdana;
 	text-transform: uppercase;
 }

 .slick-dots  {
 	display: flex;
 	justify-content: center;
 	margin: 0;
 	padding: 0 0 13px;
 	list-style: none;
  width: 50%;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
 }

 .slick-dots li {
 	padding: 0 5px;
 }

 .slick-dots button {
 	width: 20px;
 	height: 20px;
 	background: white;
 	opacity: 0.5;
 	border-radius: 50%;
 	border: 0;
 	padding: 0;
 	font-size: 0;
 	color: transparent;
 	cursor: pointer;
 }

 .slick-dots button:focus {
 	outline: 0;
 }

  .slick-dots .slick-active button {
  	opacity: 1;	
  }

 /*----download----*/

 .download {
 	margin: 90px 0;
 	text-align: center;
 	font-weight: bold;
 	text-transform: uppercase;
 	color: #CF0B62;
 }

 .download_title {
 	margin-bottom: 10px;
 	font-size: 26px;
 }

 .download_text {
 	margin-bottom: 20px;
 }

 .footer {
 		background: #3a3e64;
 }

 .footer_inner {
 	display: flex;
 	flex-wrap: wrap;
 	padding: 70px 0;
 }

 .footer_block {
 	width: 33%;
 	text-align: center;
 	color: white;
 	padding: 0 15px;
 }

 .footer_title {
 	font-size: 14px;
 	text-transform: uppercase;
 	font-weight: bold;
 }

 .footer_address {
 	font-style: normal;
 	color: rgba(255, 255, 255,.5);
 	line-height: 1.5;
 }

 .footer_end {
 	background: #262C4A;
 	padding: 20px 0;
 	text-align: center;
 	font-size: 13px;
 	line-height: 1.5;
 	color: #CF4B30;
 }

/*-----burger----*/

.burger {

	display: none;
}

 /*----media----*/

@media (max-width: 1300px ) {

 /*----album----*/
	
	.album {

		width: 100%;
	}

	/*---info_slide---*/

	.slide_content  {
		padding-left: 25px;

	}

}

@media (max-width: 991px) {
   
		/*------nav-----*/

		.nav {

			display: none;
			flex-direction: column;
			width: 100%;
			text-align: right;
			position: absolute;
			right: 0;
			top: 100%; 
			background: white;
			opacity: .9;
		}

		.nav_link {
			padding: 10px 15px;
		}

		.nav.show {

			display: flex;
		}

    /*-----burger----*/

    .burger {

    	display: block;
    	background: none;
    	border: 0;
    	padding:  10px 2px;
    	cursor: pointer;

    }
		
		.burger_item {

			display: block;
			width: 30px;
			height: 3px;
			background: red;
			font-size: 0;
			color: transparent;
			position: relative;
		}
		
		.burger_item:before,
		.burger_item:after {

			content:"";
			width: 100%;
			height: 100%;
			background: red;
			position: absolute;
			left: 0;
			z-index: 1;  
			
		}

		.burger_item:before {

			top: -8px;
		}

		.burger_item:after {

			bottom: -8px;
		}

   	/*------intro-----*/

 		.intro_title {

			font-size: 40px;
 		}
		
				/*----info----*/

		.info {

			margin: 40px 0;
		}	

		.info_item {

			width: 50%;
			margin-bottom: 40px;
		}

		/*----album----*/
	
 			.album_item {
			width: 50%;
		}

		   	/*---person---*/

		.person_item {

			width: 50%;
			text-align: center;
		}

		.person_text {
			font-size: 17px;
		}

				/*---social---*/

		.social {

			justify-content: center;
		}

				/*---info-slide---*/
		
		.slide_img {

			width: 100%;
		}

		.slide_photo {

      height: 95%;
			width: 100%;
		  
		}

		.slide_content {
			 
			padding: 15px;
			width: 100%;
			margin-bottom: 30px;
		}

		.slide_text {
			font-size: 25px;
		}

		.reviews_slider {
			height: auto;
		}
 }

@media (max-width: 767px) {

			/*---header----*/

			.header {
				height: auto;
			}

		.intro {

			height: auto;
			padding-bottom: 40px;
		}

		.intro_title {

			font-size: 30px;
		}

		.intro_subtitle {

			font-size: 15px;
			margin-bottom: 35px;
		}

				/*----info----*/

		.info_item {

			width: 100%;
			margin-bottom: 35px;
			padding-left: 0;
			padding-right: 0;
		}

				/*----album----*/
	
 			.album_item {
			width: 100%;
			height: 280px;
		}

				/*---person---*/

		.person {
			margin: 60px 0 30px;
		}		

			/*---social---*/

		.social {

			justify-content: center;
		}

			/*---info-slide---*/

			.slide_content {
				margin-bottom: 20px;
				padding-left: 10px;
			}

			.slide_img {
				height: 300px;
			}

			.slide_photo {

      	height: 90%;
		}
			
		.slide_text {

			margin-left: 0;
			font-size: 23px;
		}
				/*---btn---*/

		.btn-long {

			min-width: 250px;
		}

			/*--download--*/

		 .download {
		 	margin: 50px 0;
		 }

		 .download_title {
		 	font-size: 24px;
		 }

		 /*--footer--*/

		 .footer_inner {

		 	padding: 30px 0;
		 }

		 .footer_block {

		 	width: 100%;
		 	margin-bottom: 30px;
		 	padding-left: 0;
		 	padding-right: 0;
		 }

		 .footer_block:last-child {
		 	margin-bottom: 0;
		 }
}

@media (max-width: 576px) {

			/*------intro-----*/

 		.intro_title {

			font-size: 30px;
 		}
 		
			/*---person---*/

 			.person_item {

			  width: 100%;
			}

			.person_text {
				font-size: 18px;
				margin-bottom: 10px;
			}
			
			/*---info-slide---*/
			
			.slide_content {

				padding-left: 0;
		}

		.slide_text {
			font-size: 15px;
		}

}