body{
	background-color: #00a49b;
	font-family: 'Roboto';
	font-size: 16px;
}
.top_header{
	width: 100%;
	background-color: #000;
	background-image: -webkit-linear-gradient(#2E2E2E, #1D1D1D);
	background-image: -o-linear-gradient(#2E2E2E, #1D1D1D);
	background-image: linear-gradient(#2E2E2E, #1D1D1D);
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 20px;
}
.main{
	max-width: 1200px;
	margin: 0 auto;
}
img{
	display: block;
	max-width: 100%;
}

/*================================*/

.first_screen{
	padding: 0 80px;
	padding-top: 60px;
	padding-bottom: 45px;
	background-color: #fff;
}
.screen_logo .title{
	font-size: 26px;
	margin-bottom: 15px;
}
h1{
	font-size: 52px;
  text-transform: uppercase;
  color: #00a49b;
  margin: 0.6em 0;
}
.descr{
	font-size: 18px;
	line-height: 1.33;
	margin-bottom: 45px;
}
.books_nav{
  margin-top: 80px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.books_nav__item{
	color: #333333;
	font-size: 16px;
	margin-right: 22px;
}
.books_nav__item:last-child{
	margin-right: 0;
}
.books_nav__item.active{
	color: #00a49b;
}

/*================================*/
.books_screen{
	background-color: #e9e9e9;
	padding: 0 4.375em;
	padding-top: 45px;
	padding-bottom: 60px;
}
h2{
	color: #00a49b;
	font-size: 36px;
	margin: 0;
	margin-bottom: 45px;
}
.book_item{
  display: block;
  max-width: 229px;
  text-decoration: none;
  margin-bottom: 50px;
  margin-left: auto;
  margin-right: auto;
}
.book_body{
	overflow: hidden;
	position: relative;
}
.book_title{
	position: absolute;
	background-color: #00a49b;
  background-color: rgba(0, 164, 155, 0.9);
	color: #fff;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 22px;
	padding: 1.35em;
	font-size: 14px;
  transform: translate(0, 100%);
	transition-property: transform;
	transition-duration: .2s;
}
.book_item:hover .book_title{
  transform: translate(0, 0);
}
.books_btn{
  border: 3px solid #fff;
  background-color: #ea1259;
  box-shadow: 0px 5px 5px 0px rgba(5, 5, 6, 0.14);
  max-width: 206px;
  display: block;
  width: 100%;
  font-size: 30px;
  font-family: "Myriad Pro";
  color: #fff;
  text-shadow: 0px 5px 5px rgba(5, 5, 6, 0.14);
  margin: 0 auto;
  height: 62px;
  border-radius: 32px;
  margin-top: 32px;
  cursor: pointer;
}
.more_box{
	text-align: center;
}
.more_books{
	font-size: 30px;
	color: #00a49b;
}
.more_books:before{
	content: "";
	width: 30px;
	height: 30px;
	display: inline-block;
	background-image: url(../images/plus.png);
	margin-right: 20px;
  vertical-align: middle;
}

/*================================*/

.books_footer{
	color: #fff;
	background-color: #2a383f;
	padding: 0 70px;
	padding-top: 55px;
	padding-bottom: 55px;
	font-size: 18px;
}
.books_footer .tit{
	margin-top: 40px;
}
.books_footer a{
	color: #fff;
}
.books_footer .phone{
	margin-top: 35px;
}
.books_footer .phone a{
	font-size: 30px;
	text-decoration: none;
	display: inline-block;
	margin-top: 10px;
	margin-bottom: 40px;
}


/*============= MEDIA ===============*/
@media(max-width: 575px){
	.top_header{
		flex-wrap: wrap;
	}
	.top_header__logo{
		margin: auto;
    max-width: 200px;
    margin-top: 5px;
	}
	.first_screen{
		padding: 0 15px;
    padding-top: 30px;
    padding-bottom: 30px;
	}
	h1{
		font-size: 30px;
	}
	.screen_logo .title{
		font-size: 22px;
	}

	h2{
		font-size: 26px;
		text-align: center;
	}
	.books_screen{
    padding: 0 15px;
    padding-top: 30px;
    padding-bottom: 50px
	}
	.book_item{
		margin-bottom: 50px;
	}
	.books_footer{
		font-size: 16px;
		padding: 0 15px;
    padding-top: 30px;
    padding-bottom: 30px;
	}
}

