* {padding:0; margin:0;font-family: 'Roboto', sans-serif; box-sizing: border-box;}

/* --------- Bannière Site Professionnel ----------- */
.professional-banner {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
	color: white;
	z-index: 10001;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
	animation: slideDown 0.5s ease-out;
}

.banner-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 12px 5%;
	max-width: 1200px;
	margin: 0 auto;
}

.banner-text {
	display: flex;
	align-items: center;
	font-size: 14px;
	font-weight: 400;
}

.banner-text i {
	margin-right: 8px;
	font-size: 16px;
}

.banner-btn {
	display: flex;
	align-items: center;
	background: rgba(255,255,255,0.15);
	color: white;
	text-decoration: none;
	padding: 8px 16px;
	border-radius: 25px;
	font-size: 13px;
	font-weight: 500;
	transition: all 0.3s ease;
	border: 1px solid rgba(255,255,255,0.2);
}

.banner-btn:hover {
	background: rgba(255,255,255,0.25);
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.banner-btn i {
	margin-left: 6px;
	font-size: 12px;
}

.banner-close {
	background: none;
	border: none;
	color: white;
	cursor: pointer;
	padding: 5px;
	border-radius: 50%;
	transition: background 0.3s ease;
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.banner-close:hover {
	background: rgba(255,255,255,0.15);
}

.banner-close i {
	font-size: 14px;
}

@keyframes slideDown {
	from {
		transform: translateY(-100%);
	}
	to {
		transform: translateY(0);
	}
}

@keyframes slideUp {
	from {
		transform: translateY(0);
	}
	to {
		transform: translateY(-100%);
	}
}

/* Ajustement du header pour la bannière */
body.banner-visible #header {
	top: 50px;
}

body.banner-visible #top_bg_home {
	padding-top: 50px;
}

/* Responsive */
@media (max-width: 768px) {
	.banner-content {
		flex-direction: column;
		gap: 10px;
		padding: 10px 5%;
	}
	
	.banner-text {
		font-size: 13px;
		text-align: center;
	}
	
	.banner-btn {
		font-size: 12px;
		padding: 6px 12px;
	}
	
	body.banner-visible #header {
		top: 80px;
	}
	
	body.banner-visible #top_bg_home {
		padding-top: 80px;
	}
}

@font-face {
      font-family: 'fontello';
      src: url('./fontello/font/fontello.eot');
      src: url('./fontello/font/fontello.eot') format('embedded-opentype'),
           url('./fontello/font/fontello.woff') format('woff'),
           url('./fontello/font/fontello.ttf') format('truetype'),
           url('./fontello/font/fontello.svg') format('svg');
      font-weight: normal;
      font-style: normal;
    }

.col2 { width: 50%; }
.col3 { width: 33.3332%; }
.col4 { width: 25%; }
.col5 { width: 20%; }

.col_35p { width: 35%; }
.col_65p { width: 65%; }
.col_66p { width: 66.6665%; }
.col_60p { width: 60%; }
.col_55p { width: 55%; }
.col_45p { width: 45%; }
.col_40p { width: 40%; }

.footer {
	font-size: 14px;
	text-align: center;
	padding: 10px;
}

/* --------- Menu Header ----------- */

#header {
	position:fixed;
	top:0;
	left:0;
	width:100%;
	height:70px;
	padding:10px 10%;
	background-color:#fff;
	z-index:10000;
	border-bottom:1px solid #e5e5e5;
	transition: top 0.5s ease;
}

#header.ghost_menu {
	position: absolute;
	top:0;
	left:0;
	right:0;
	background-color: transparent;
	border-bottom:1px solid rgba(255, 255, 255, 0.2);
	transition:all .2s;
}

#header.ghost_menu:hover {
	background-color: rgba(0, 0, 0, 0.6);
}



#header .logo {
	float:left;
	
}

header.ghost_menu .logo {
	display: none;
	
}
#header .logo img {
	width:45px;	
}

#header nav.top_menu {
	/* float:left; */
	/* margin-left:10px; */
	width:100%;
}


#header #navigation {
	float: left;
}

#header #navigation .left_nav{
	position:relative;
	float: left;
}
#header #navigation .right_nav{
	position:relative;
	float: right;
}

#header #navigation li .ico-collapse {
	display: none;
}

#header #navigation a {
	display: block;
	padding: 5px 10px;
	margin:3px 10px;
	line-height: 30px;
	font-size:16px;
	font-weight:400;
	border: 1px solid transparent;
	color:#24292e;
}

#header.ghost_menu #navigation a {
	color:rgba(255, 255, 255, 0.8);
}

#header #navigation a:hover,
#header #navigation a:active,
#header #navigation a:focus {
	text-decoration: none;
	color: #24292e;
	border-bottom: 1px solid rgba(0, 0, 0, 0.6);
}

#header.ghost_menu #navigation a:hover,
#header.ghost_menu #navigation a:active,
#header.ghost_menu #navigation a:focus {
	text-decoration: none;
	color: rgba(255, 255, 255, 0.9);
	border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}


#header #navigation li {
	float: left;
	position: relative;
}


#header #navigation li ul {
	position: absolute;
	left: -9999px;
	border: 1px solid #e5e5e5;
}
#header.ghost_menu #navigation li ul {
	border: 1px solid rgba(255, 255, 255, 0.05);
}


#header #navigation li li a {
	width: 160px;
	font-weight: normal;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;

}

#header #navigation li li:first-child a {
	border-left: none;
	border-top-width: 0;
}

#header #navigation li:hover > ul {
	left: 0px;
	background-color: #fff;
}

#header.ghost_menu #navigation li:hover > ul {
	background-color: rgba(0, 0, 0, 0.7);
}

#header #navigation li li:hover > ul {
	left: 180px;
	top: 1px;
}

#header.ghost_menu.active-menu-mobile {
	background-color: #111 !important;
}



ul {
	list-style: none;
	margin-bottom:0;
	padding-left:0;
}



#sidebar {
	position:fixed;
	width: 300px;
	height: 100%;
	background: #222629;
	box-shadow: inset -0.25em 0 0.25em 0 rgba(0, 0, 0, 0.1);
	color: #fff;
	overflow-y: auto;
}
.sidebar {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}

/* ----------- Home Screen BG ----------- */

.top {
	position:relative;
	/* padding: 10% 0; */	
	z-index:10000;
	transition: padding-top 0.5s ease;
}
.top .bg {
	position:absolute;
	top:0;
	left:0;
	right:0;
	background-image:linear-gradient( rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url("images/bgai.jpg");
	background-attachment: fixed;
	background-size:cover;
	background-position:center;
	height:100%;
}
/* Turn off parallax scrolling for all tablets and phones. Increase/decrease the pixels if needed */
@media only screen and (max-device-width: 900px) {
  .top .bg {
    background-attachment: scroll;
  }
}
.top .container {
	position: relative;
	display: flex;
	flex-direction: row;
	align-items: center;
	width: 100%;
	height: 100%;
}


.top .main_header {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
}


.top .title {
	font-weight:500;
	font-size: 60px;
	color:rgba(255, 255, 255, 0.9);
	text-align: center;
	line-height: 1.7em;
	text-shadow: #000 1px 1px 10px; 
    padding: 15px;
	border-radius: 10px ;
}

.top .description {
	padding: 15vh 0;
	font-weight:300;
	font-size: 40px;
	color:rgba(255, 255, 255, 0.8);
	text-align: center;
	line-height: 1.7em;

}

.top .light {
	border-bottom: dotted 1px rgba(26, 188, 156, 1);
}


.top .gbtn {
	text-align: center;
}

.ghost-button {
  display: inline-block;
  width: 180px;
  margin:0 20px;
  padding: 15px;
  color: #fff;
  border: 1px solid #fff;
  text-align: center;
  outline: none;
  text-decoration: none;
  font-weight:300;
  transition: background-color 0.2s ease-out,
              color 0.2s ease-out;
}

.ghost-button:hover,
.ghost-button:active {
  background-color: #fff;
  color: #000;
  transition: background-color 0.3s ease-in,
              color 0.3s ease-in;
}


/* --------- Main ----------- */

#main {
	width:100%;
	position:relative;
}

#main.top_header {
	margin-top: 70px;
}

#main div.content {
	position:relative;
}
#main div.panel_width {
	margin-left: 300px;
}

#main div.full_width {
	margin-left:0;
}

#main div.book_page{
}

#main section.review_info a,
#main section.book_description a,
#main section.book_info2 a {
	text-decoration: none;
	color: rgba(26, 188, 156, 1);
}
#main section.review_info a:hover,
#main section.book_description a:hover,
#main section.book_info2 a:hover {
	text-decoration: underline;
	color: rgba(26, 188, 156, 1);
}


section {
	width:100%;
	
}
.scroll-animation {
    animation: scrollDown 60s linear infinite;
}
@keyframes scrollDown {
    0% { transform: translateY(0); }
    100% { transform: translateY(calc(100vh - 100%)); }
 }

/* --------- Section Books - HomePage----------- */

section.books {
	padding:30px 0 50px;
	background-color:#ffffff;
	text-align:center;
}



section.books .icon {
	color: rgba(26, 188, 156, .6);
}

section h2  {
	text-align:center;
	font-size:32px;
	font-weight:300;
	padding-bottom:50px;
	padding-top:20px;

}

section h2 span:hover  {
	background-color:rgba(26, 188, 156, 1);
	color:#fff;
}

section h2 span {
	padding:10px 30px;
	border: solid 1px rgba(26, 188, 156, 1);
	transition: all .4s;
}

section .wrap {
	width:80%;
	margin:0 auto;
	display:inline-block;
}

section.books .wrap {
	margin-top:30px;
}

section.books .book_main_list .book {
	position:relative;
	display:inline-block;
	width:18%;
	height:300px;
	margin:1%;
	box-sizing: border-box;
	transition: transform .4s;
}
section.books .book_main_list .book:hover  {
	transform:scale(1.15);
	transition: transform .8s;
	z-index:10;
}
section.books .book_main_list .book:hover .cover{
	transition: transform 1.1s;
	 
}

section.books .book_main_list .book .cover{
	position:absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width:100%;
	height:100%;
}


section.books .book_main_list .book .info{
	position:absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	border-radius:2px;
	background-color:rgba(0,0,0,0.6);
	visibility:hidden;
	opacity:0;
	transition: all 1s;
}
section.books .book_main_list .book:hover .info{
	visibility:visible;
	opacity:1;
	cursor:pointer;

}

section.books .book_main_list .book:hover .info h5{
	transform: translateY(0px);
	opacity:1;

}
section.books .book_main_list .book .info h5{
	font-size:16px;
	font-weight:300;
	color:#fff;
	position:absolute;
	top: 0;
	padding-top:20px;
	transform: translateY(-50px);
	opacity:0;
	transition: all .9s;
	text-align: center;
	width: 100%;

}

section.books .book_main_list .book .cover .back{
	
	border-radius:2px;
}
 /* Add your custom styles here */
 .contact-social-links {
     display: flex;
     justify-content: center;
     align-items: center;
     padding: 20px;
 }

 .contact-social-links a {
     display: inline-block;
     margin: 10px;
     font-size: 20px;
     color: #333;
     text-decoration: none;
 }

 .contact-social-links a:hover {
     color: #007bff; /* Change to your preferred hover color */
 }
/* --------- Section Signup - HomePage----------- */

section.signup {
	background-color:#f5f5f5;
	padding:30px 0;
}

section.signup .signup_form {
	width:40%;
	margin: 0 auto;
	padding-bottom:30px;
	
}

section.signup label {
	font-weight:300;
	font-size:16px;

}
section.signup input[type=text], section.signup input[type=password], section.signup select {
    width: 100%;
    padding: 12px 20px;
    margin: 10px 0 15px;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;

}

input[type=submit] {
    width: 100%;
    background-color: rgba(26, 188, 156, 1);
    color: white;
    padding: 14px 20px;
    margin: 8px 0;
    border: 1px solid rgba(26, 188, 156, 1);
    border-radius: 4px;
    cursor: pointer;
	font-weight:400;
	font-size:16px;

}

input[type=submit]:hover {
    background-color: rgba(26, 188, 156, 1);
}



section.signup #msg {
	padding: 10px;
	text-align: center;
	font-size: 16px;
}

section.signup #msg .error{
	color:#ff0000;
}

section.signup #msg .ok{
	color:#007F00;
}



.more_review {
	margin:50px auto 0;
	display: block;
    background-color: rgba(26, 188, 156, 1);
    color: white;
    padding: 14px 20px;
    border: 1px solid rgba(26, 188, 156, 1);
    border-radius: 4px;
    cursor: pointer;
	font-weight:400;
	font-size:16px;

}

/* --------- Single Page Header ----------- */


.single_page_header {
	display:inline-flex;
	width:100%;
	padding:50px 15%;
	background-color:#fdfdfd;
	border-bottom:1px solid #e5e5e5;
}

.single_page_header h2 {
	width:60%;
	font-size:24px;
	font-weight: 300;
}

.single_page_header .controls {
	width:40%;

}
.single_page_header .controls2 {
	float:right;

}



/* --------- Single Page ----------- */

/* .single_page {
	width:70%;
} */

/* --------- Single Book Page TOP ----------- */
.book_top {
	position:relative;
	/* padding: 10% 0; */	
	z-index:10000;
}

.book_top .bg {
	position:absolute;
	top:0;
	left:0;
	right:0;
	background-image:none;
	background-attachment: fixed;
	background-size:cover;
	background-position:center;
	min-height:100%;
}
/* Turn off parallax scrolling for all tablets and phones. Increase/decrease the pixels if needed */
@media only screen and (max-device-width: 900px) {
  .book_top .bg {
     background-attachment: scroll; 
  }
}
.book_top .container {
	width:100%;
	height: 100%;
	display: flex;
	align-items: center;
	position: relative;
}

.book_top .book_info {
	padding: 0 30px;
}

.book_top .book_info h2.book_title {
	font-weight:500;
	font-size: 40px;
	color:rgba(255, 255, 255, 0.9);
	margin-bottom: 20px;
	text-align: center;
	text-shadow: 0px 0px 10px rgba(0, 0, 0, 1);
}

.book_top .book_info .book_description {
	/* margin:80px 0; */
	font-weight:300;
	font-size: 25px;
	color:rgba(255, 255, 255, 0.8);
	text-align: center;
	text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
}

.book_top .light {
	border-bottom: dotted 1px rgba(26, 188, 156, 1);
}


.book_top .book_cover {

}
.book_top .book_buy_btn {
	width: 100%;
	padding-left:5px;
	text-align:center;
	padding-top:20px;
}

.book_top .book_cover .cover {
	width: 100%;
	
}
.book_top .book_cover .cover_and_button {
	width: 60%;
	
}


/* --------- Single Book Page section.book_description ----------- */

section.book_description {
	padding:30px 0 50px;
	background-color:#f5f5f5;
	text-align:center;
	width: 100%;
}

section.book_description .description {
	width:60%;
	margin: 0 auto;

}
section.book_description .description p {
	font-size: 20px;
	/* font-weight: 300; */
	color: #222;
	text-align: justify;
	padding: 10px 0;
	line-height: 1.5;
}

/*section.book_info .book_description p:first-child {
	padding: 0 0;
}*/

/* --------- Single Book Page section.book_vote ----------- */


section.book_vote {
	width:100%;
	background-color:rgb(238, 255, 238);
	padding: 50px 0 80px;
	position: relative;
}

section.book_vote .container {
	opacity: 0;
}


section.book_vote .vote_block {
	width:80%;
	height:250px;
	display: flex;
	align-items: center;
	margin: 0 auto;
}


section.book_vote .book_vote {
	width: 100%;
}
section.book_vote .book_vote .vote_count {
	width: 100%;
	display: flex;
}
section.book_vote .book_vote .vote_count div {
	text-align: center;
	padding: 15px 0;
	font-size: 30px;
	width: 100%;
	font-weight: 300;
}
section.book_vote .book_vote .vote_buttons {
	width: 100%;
	display: flex;
}
div.vote_buttons:hover ~ div {
	transform: translateY(-20px);
}
section.book_vote .book_vote .vote_buttons button {
	width: 100%;
	text-align: center;
	background-color: transparent;
    border: none;
    color: #222;
    padding: 10px 0;
    text-decoration: none;
    display: inline-block;
    font-size: 18px;
	border-bottom: 2px solid rgba(26, 188, 156, 0.5);
	border-top: 2px solid rgba(26, 188, 156, 1);
	cursor: pointer;
	transition: all 0.15s;
	font-weight: 300;
	/*margin: 0 6px 0;*/
}
section.book_vote .book_vote .vote_buttons button:hover {
	background-color: rgba(26, 188, 156, 1);
	border-bottom: 2px solid rgba(26, 188, 156, 1);
	color: #fff;
	transition: all 0.4s;
}

section.book_vote .book_vote .vote_buttons .active {
	background-color: rgba(26, 188, 156, 1);
	border-bottom: 2px solid rgba(26, 188, 156, 1);
	color: #fff;
}

section.book_vote .icon {
	position: absolute;
	top:0; left:0; bottom:0; right:0;
	margin: auto;
	font-family: "fontello";
    font-style: normal;
    font-weight: normal;
	display: inline-block;
    text-decoration: inherit;
	height: 215px;
	width: 200px;
	font-size: 200px;
	color: rgba(26, 188, 156, 1);
	line-height: 200px;
	text-shadow: 0px 0px 5px #fff;
}


section.anim .container {
	opacity: 0;
	visibility: hidden;
	animation: appear1 .5s linear forwards 2.5s;
}

section.anim .icon {
	animation: star 3s ease-in forwards;
}

section.anim .anim_book_vote1 {
	opacity: 0;
	animation: appear2 .6s ease-in-out forwards 3s;
}

section.anim .anim_book_vote2 {
	opacity: 0;
	animation: appear2 .6s ease-in-out forwards 3.2s;
}

section.anim .anim_book_vote3 {
	opacity: 0;
	animation: appear2 .6s ease-in-out forwards 3.4s;
}

section.anim .anim_count1 {
	animation: up_down 1.2s ease-in-out forwards 3s;
}
section.anim .anim_count2 {
	animation: up_down 1.2s ease-in-out forwards 3.2s;
}
section.anim .anim_count3 {
	animation: up_down 1.2s ease-in-out forwards 3.4s;
}

/*section.anim .anim_button1 {
	animation: anim_button 1.5s ease-in-out forwards 4s;
}
section.anim .anim_button2 {
	animation: anim_button 1.5s ease-in-out forwards 4s;
}
section.anim .anim_button3 {
	animation: anim_button 1.5s ease-in-out forwards 4s;
}*/

@keyframes anim_button {
  0% {
	 background-color: transparent;
	 color: #222;
  }
  50% {
	  background-color: rgba(26, 188, 156, 1);
	  color: #fff;
  }
  100% {
	  background-color: transparent;
	  color: #222;
  }
}

@keyframes up_down {
  0% {
	transform: translateX(-50px);
  }
  100% {
	  transform: translateX(0px);
  }
}

@keyframes appear2 {
  0% {
    opacity: 0;
	transform: translateX(-100px);
  }

  100% {
	  opacity: 1;
	  transform: translateX(0);
  }
}

@keyframes appear1 {
  0% {
    opacity: 0;
	visibility: visible;
  }

  100% {
	  opacity: 1;
	  visibility: visible;
  }
}


@keyframes star {
  0% {
    transform: rotate(0deg);
  }

  50% {
	  opacity: 1;
  }
  100% {
    transform: rotate(600deg);
	opacity: 0;
	visibility: hidden;
  }
}

/* --------- Book Page - section.book_info2 ----------- */

section.book_info2 {
	width:100%;
	background-color:#fff;
	padding: 50px 0 50px;

}

section.book_info2 .book_tableinfo {
	width:100%;
	margin:0 auto;
	font-size: 18px;
	margin-bottom: 20px;
}
section.book_info2 .book_tableinfo table {
	width: 100%;
	border-collapse: collapse;
}
section.book_info2 .book_tableinfo tr:nth-of-type(even) {
	background-color: #f9f9f9;
}


section.book_info2 .book_tableinfo tr td {
/*	border-bottom: 1px solid #dedede;*/
	padding:11px 5px;
	width: 50%;
	font-weight: 300;
}
section.book_info2 .book_tableinfo tr:last-of-type td {
	border-bottom-width: 0px;
}
section.book_info2 .book_tableinfo tr td:nth-of-type(1) {
	padding-right:3px;
	text-align: right;
}

section.book_info2 .book_tableinfo tr td:nth-of-type(2) {
	padding-left:3px;
	text-align: left;
}

/* --------- Book Page - section.book_info_author ----------- */


section.book_info_author {
	width:100%;
	background-color:#f5f5f5;
	padding: 50px 0 50px;

}

section.book_info_author .author_wrap {
	width:80%;
	margin:0 auto;
}

section.book_info_author .author_wrap .author {
	display: flex;
	flex-direction: row;
	align-items: center;
	padding: 40px 30px;
	transition: all 0.3s;
	margin-bottom: 40px;
	border:1px solid rgba(0, 0, 0, 0.05);
}

section.book_info_author .author_wrap .author:nth-of-type(even){
	flex-direction: row-reverse;
}

section.book_info_author .author_wrap .author:hover {

	box-shadow: 0 0 7px 1px rgba(0,0,0,.1);
	transition: all 0.2s;
}


section.book_info_author .author_wrap .author .author_info {
	display: flex;
	flex-direction: column;

}

section.book_info_author .author_wrap .author .author_info h4 {
	width: 100%;
	font-size: 22px;
	text-align: center;
	font-weight: 300;
	padding: 10px 0;
	color: #333;
	
}
section.book_info_author .author_wrap .author .description {
	width: 100%;
	padding: 10px 0;
}
section.book_info_author .author_wrap .author .description p {
	font-size: 16px;
	text-align: justify;
	font-weight: 300;
	color: #333;
	line-height: 1.3;
}

section.book_info_author .author_wrap .author .author_img {
	display: flex;
	flex-direction: column;
	align-items: center;
}
section.book_info_author .author_wrap .author .author_img .avatar {
	width:190px;
	height: 190px;
	border-radius: 50%;
	overflow: hidden;
}
section.book_info_author .author_wrap .author .author_img .avatar img {
	width: 100%;
}


/* --------- Review Page - section.review_info ----------- */


section.review_info {
	width:70%;
	margin:0 auto;
	/*border:1px solid #e5e5e5;
	border-width:0 1px 0 1px;*/
	display: flex;
	padding-bottom: 100px;
}


section.review_info .review_left {
	padding:10px 0px;
}
section.review_info .review_right {
	padding:20px 30px;
}

/*
section.book_info h3.book_header {
	font-size: 16px;
	padding: 15px 0;
	font-weight: 400;
}*/



section.review_info .review_text {
	padding:10px 0;
}

section.review_info .review_text p {
	font-size: 17px;
	font-weight: 300;
	color: #222;
	text-align: justify;
	padding: 10px 0;
	line-height: 1.5;
}
section.review_info .review_text p:first-child {
	/*padding-top: 0;*/
}


section.review_info .review_author .book_cover .cover {
	height: 100%;
}

section.review_info .review_author h4 {
	font-size: 22px;
	font-weight: 300;
	padding: 20px 0;
	color: #333;
	text-align: center;
}


section.review_info h1 {
	font-size: 18px;
	font-weight: 300;
}

section.review_info h6 {
	font-size: 16px;
	font-weight: 300;
}

/* --------- Review Page - section.review_book----------- */


section.review_book {
	width:100%;
	height: 300px;
	background-image:linear-gradient( rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url("images/covers/bg.jpg");
/*	background-repeat: no-repeat;*/
	background-size:cover;
	background-position:center 0;
	display: flex;
	align-items: center;
	background-attachment: fixed;
/*	margin-bottom: 20px;*/
}

section.review_book .container {
	width: 100%;
}

section.review_book .book_title {
	font-weight:300;
	font-size: 40px;
	color:rgba(255, 255, 255, 1);
	margin: 20px 0;
	text-align: center;
	text-shadow: 0px 0px 10px rgba(0, 0, 0, 1);
}

section.review_book .book_author {
	font-weight:300;
	font-size: 26px;
	color:rgba(255, 255, 255, 0.8);
	text-align: center;
	text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.8);
}




/* --------- Book Page / Review Page - section.book_review ----------- */



section.book_review {
	width:100%;
	background-color:#fff;
	padding: 50px 0 50px;

}
section.book_review .review_wrap {
	width:80%;
	margin:0 auto;
}
section.book_review .review_wrap .review {
	display: flex;
	flex-direction: row;
	align-items: center;
/*	border: 1px solid #e5e5e5;
	border-width:0px 0px 1px 0px;*/
	padding: 40px 30px;
	transition: all 0.3s;
	margin-bottom: 40px;
	border:1px solid rgba(0, 0, 0, 0.05);
	cursor: pointer;
}

section.book_review .review_wrap .review:nth-of-type(even){
	flex-direction: row-reverse;
}


section.book_review .review_wrap .review:hover {

	box-shadow: 0 0 7px 1px rgba(0,0,0,.1);
	transition: all 0.2s;
}


section.book_review .review_wrap .review .review_info {
	display: flex;
	flex-direction: column;

}

section.book_review .review_wrap .review .review_info h4 {
	width: 100%;
	font-size: 24px;
	text-align: center;
	font-weight: 300;
	padding: 10px 0;
	color: #333;
}
section.book_review .review_wrap .review .description {
	width: 100%;
	padding: 10px 0;
}
section.book_review .review_wrap .review .description p {
	font-size: 18px;
	text-align: justify;
	font-weight: 300;
	color: #777;
	line-height: 1.3;
}

section.book_review .review_wrap .review .review_meta {
	width: 100%;
	font-size: 14px;
	text-align: justify;
	font-weight: 300;
	padding: 5px 0;
}

section.book_review .review_wrap .review .review_author {
	display: flex;
	flex-direction: column;
	align-items: center;
}
section.book_review .review_wrap .review .review_author .avatar {
	width:190px;
	height: 190px;
	border-radius: 50%;
	overflow: hidden;
}
section.book_review .review_wrap .review .review_author .avatar img {
	height: 100%;
}

section.book_review .review_wrap .review .review_author h4 {
	font-size: 22px;
	font-weight: 300;
	padding: 20px 0;
	color: #333;
	text-align: center;
}




/* --------- Main page - section.aboutme----------- */
@keyframes wipe-enter {
	0% {
		transform: scaleY(1);
	}
	50% {
		transform: scaleY(0);
	}
	100% {
		transform: scaleY(1);
	}
}
.about-animation{
	animation: wipe-enter 1s 1;

}

section.aboutme {
	width:100%;
	background-color:#f5f5f5;
	padding: 30px 0 50px;
}


section.aboutme .aboutme_wrap {
	width:85%;
	margin:0 auto;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content:space-evenly;
}

section.aboutme .aboutme_wrap  .about_text {
	padding: 0;
	width:60%;
}

section.aboutme .aboutme_wrap  .about_text h3 {
	font-size: 24px;
	color: #333;
	text-align: center;
	margin-bottom: 10px;
	font-weight: 300;
}

section.aboutme .aboutme_wrap  .about_text p {
	padding:2px 20px 20px; 
	font-size: 18px;
	font-style: italic;
	color: #777;
	text-align: justify;
	font-weight: 300;
	line-height: 1.3;
}

section.aboutme .aboutme_wrap .about_picture {
	text-align: center;
	width:40%;

}

section.aboutme .aboutme_wrap .about_picture img {
	position:relative;
	margin: auto;
	border-radius:100%;
	background-color:#ddd;
	opacity:1 !important;
	width:50%;
	
}

@media only screen and (max-width: 900px)  {

	/* --------- Section About - main Page----------- */

	section.aboutme .aboutme_wrap {
		flex-direction: column-reverse;
		width:100%;

	}
	section.aboutme .aboutme_wrap  .about_text {
		width:90%;
	}
	section.aboutme .aboutme_wrap .about_picture {
		width:80%;
	}
	.about-animation{
		animation: none;
	}
	section.aboutme .aboutme_wrap  .about_text p {
	text-align: left;
	}
}
/* --------- Review Page List - section.review_list----------- */



section.review_list {
	width:100%;
	background-color:#fff;
	padding: 30px 0 50px;
}


section.review_list .review_wrap {
	width:85%;
	margin:0 auto;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
}

section.review_list .review_wrap .review {
	width: 100%;
	display: flex;
	flex-direction: row;
	padding:0 20px;
	align-items: center;
}

section.review_list .review_wrap .review:nth-of-type(even) {
	flex-direction: row-reverse;
}

section.review_list .review_wrap .review_body {


}



section.review_list .review_wrap .author {
	width: 100%;
	display: flex;
	flex-direction: row;
	padding:50px 20px;
	align-items: center;
	justify-content:center;
}


section.review_list .review_wrap .review .cover {
	text-align: center;
}

section.review_list .review_wrap .review .cover img {
	opacity: 0;
	width: 40%;
	transition: all .3s;
}

section.review_list .review_wrap .review:hover .cover img {
	opacity: 1;
	transition: all .5s;
}

section.review_list .review_wrap .review .review_info {
	position: relative;
	width: 100%;
	margin-top:0px;
	transition: all 0.3s;
	border:1px solid rgba(0, 0, 0, 0.05);
}

section.review_list .review_wrap .review .review_info:hover {
	box-shadow: 0 0 7px 1px rgba(0,0,0,.1);
	transition: all 0.2s;
}


section.review_list .review_wrap .review .review_info .avatar {
	width:120px;
	height: 120px;
	border-radius: 50%;
	overflow: hidden;
	position: absolute;
	top:-60px;
	left:0;
	right:0;
	margin:0 auto;
}
section.review_list .review_wrap .review .review_info .avatar img {
	height: 100%;
}

section.review_list .review_wrap .review .review_info .review_text {
	padding: 0px 0px 0px;
}

section.review_list .review_wrap .review .review_info .review_text h3 {
	font-size: 24px;
	color: #333;
	text-align: center;
	margin-bottom: 10px;
	font-weight: 300;
}

section.review_list .review_wrap .review .review_info .review_text p {
	padding:2px 20px 20px; 
	font-size: 20px;
	font-style: italic;
	color: #777;
	text-align: justify;
	/* font-weight: 300; */
	line-height: 1.3;
}

/* --------- Section Contact - Contact Page----------- */

section.contact {
	padding:50px 0;

}


section.contact .contact_form {
	width:40%;
	margin: 0 auto;
	padding-bottom:30px;	
}

section.contact label {
	font-weight:400;
	font-size:16px;
	color: #333;

}
section.contact input[type=text],  section.contact textarea {
    width: 100%;
    padding: 12px 20px;
    margin: 10px 0 15px;
    display: inline-block;
    border: 1px solid #aaa;
    border-radius: 4px;
    box-sizing: border-box;

}

section.contact input[type=submit] {
    width: 100%;
    background-color: rgba(26, 188, 156, 1);
    color: white;
    padding: 14px 20px;
    margin: 8px 0;
    border: 1px solid rgba(26, 188, 156, 1);
    border-radius: 4px;
    cursor: pointer;
	font-weight:400;
	font-size:16px;

}

section.contact #msg {
	padding: 10px;
	text-align: center;
	font-size: 16px;
}

section.contact #msg .error{
	color:#ff0000;
}

section.contact #msg .ok{
	color:#007F00;
}





/* --------- RDM  MENU ----------- */




#header .navigation_control {
	display: none;
}

@media only screen and (max-width: 900px) {


#header,
#header.ghost_menu {
	height: auto;
	padding: 10px 0px;
	background-color: #fff;
}

#header.ghost_menu {
	background-color: transparent;
}

#header .navigation_control {
		display: block;
		float: right;
		color:#24292e;
		line-height: 26px;
		font-size: 26px;
		padding:9px;
	}

#header.ghost_menu .navigation_control {
	color:rgba(255, 255, 255, 0.8);
}

#header #navigation {
		width: 100%;
		display: none;
		overflow-y: auto;
		overflow-x: hidden;
		max-height: 85vh;
		margin-left: 0;
	}

	#header #navigation li {
		float: left;
		width: 100%;
		
	}


	#header #navigation li {
		border-top: 1px solid #e5e5e5;
	}

	#header.ghost_menu #navigation li {
		border-top: 1px solid #1b1b1b;
	}

	#header #navigation li .ico-collapse {
		display: block;
		position: absolute;
		top: 0;
		right: 0;
		width: 40px;
		height: 40px;
		padding: 0;
		font-size: 20px;
		text-align: center;
	}

	#header #navigation ul {
		border: none;
		
	}
	#header #navigation li ul {
		position: static;
		left: 0;
		display: none;
		border: none;
		margin-left:25px;
	}
#header #navigation li ul ul {
		display: block;
	}

#header #navigation a,
#header.ghost_menu #navigation {
	border:none
}


#header #navigation a:hover,
#header #navigation a:active,
#header #navigation a:focus,
#header.ghost_menu #navigation a:hover,
#header.ghost_menu #navigation a:active,
#header.ghost_menu #navigation a:focus {

	border:none;
	
}

#header.ghost_menu #navigation li ul {
	border:none;
}

#header #navigation li li a {
	width: 100%;
}

#header #navigation li:first-child {
	border:none;
}

#header #navigation li:hover > ul {
	left: 0px;
	background-color: transparent;
}

#header.ghost_menu #navigation li:hover > ul {
	background-color: transparent;
}

#header .logo {
	padding: 0 10px;
}

}






/* --------- RDM  HOME PAGE BG ----------- */


@media only screen and (min-width: 1600px)  {

.top .title {
	font-size: 50px;

}
.top .description {
	font-size: 30px;
}

.ghost-button {
	width:200px;
	margin:0 20px 20px 20px;
	font-size: 18px;
}
}

@media only screen and (max-width: 900px)  {

.top .title {
	font-size: 50px;

}
.top .description {
	padding: 10vh 0;
	font-size: 30px;

}

}


@media only screen and (max-width: 900px) and (orientation: portrait) {


.top .title {
	font-size: 50px;

}

.top .description {
	padding: 15vh 0;
	font-size: 30px;

}

}


@media only screen and (max-width: 640px)  {

.top .title {
	font-size: 50px;

}
.top .description {
	padding: 10vh 0;
	font-size: 30px;

}

}


@media only screen and (max-width: 640px) and (orientation: portrait) {

.top .description {
	font-size: 30px;

}

}

@media only screen and (max-width: 580px) and (orientation: landscape) {

.top .title {
	font-size: 50px;

}
.top .description {
	padding: 10vh 0;
	font-size: 30px;

}

.ghost-button {
	width:150px;
	margin:0 10px 20px 10px;
	font-size: 14px;
}
}

@media only screen and (max-width: 460px) and (orientation: portrait) {

.top .title {
	font-size: 50px;

}
.top .description {
	padding: 15vh 0;
	font-size: 30px;

}

.ghost-button {
	width:150px;
	margin:0 10px 20px 10px;
	font-size: 14px;
}

}



/* --------- RDM  HOME PAGE Book List----------- */

@media only screen and (min-width: 1600px)  {

section .wrap {
	width:70%;
}

section.books .book_main_list .book {
	height:340px;

}

}


@media only screen and (max-width: 1200px)  {

section .wrap {
	width:95%;
}




}

@media only screen and (max-width: 900px)  {

section .wrap {
	width:95%;
}

section.books .book_main_list .book {
	width:22%;
	height:270px;
	margin:1.5%;
}


}

@media only screen and (max-width: 740px)  {


section.books {
	padding:20px 0 30px;
}

section h2  {
	text-align:center;
	font-size:28px;
	font-weight:300;
	padding-bottom:40px;
	padding-top:20px;

}

section .wrap {
	width:100%;
}

section.books .wrap {
	margin-top:30px;
}

section.books .book_main_list .book {
	width:23%;
	height:255px;
	margin:1%;
}


}

@media only screen and (max-width: 580px)  {


section.books .book_main_list .book {
	width:31.32%;
	height:270px;
	margin:1%;
}


}

@media only screen and (max-width: 460px)  {


section.books .book_main_list .book {
	width:44%;
	height:270px;
	margin:3%;
}

section h2  {
	font-size:26px;
}


section.books .wrap {
	margin-top:0px;
}

}

@media only screen and (max-width: 340px)  {


section.books .book_main_list .book {
	width:44%;
	height:220px;
	margin:3%;
}

section h2  {
	font-size:26px;

}


section.books .wrap {
	margin-top:0px;
}

}




/* --------- RDM  HOME PAGE Review List----------- */



@media only screen and (min-width: 1600px)  {


section.review_list .review_wrap {
	width:70%;

}

}


@media only screen and (max-width: 960px) {


section.review_list .review_wrap {
	width:100%;
}


section.review_list .review_wrap .review .cover img {
	opacity: 1;
	width: 50%;
}

}

@media only screen and (max-width: 800px) {

section.review_list .review_wrap .review .cover img {
	opacity: 1;
	width: 50%;
}

section.review_list .review_wrap .review .review_info {
	margin-top:50px;
}


section.review_list .review_wrap .review .review_info .avatar {
	width:100px;
	height: 100px;
	top:-50px;

}

section.review_list .review_wrap .review .review_info .review_text {
	padding: 58px 0px 0px;
}

section.review_list .review_wrap .review .review_info .review_text h3 {
	font-size: 22px;
}

section.review_list .review_wrap .review .review_info .review_text p {
	font-size: 14px;
}


}

@media only screen and (max-width: 640px)  {


section.review_list .review_wrap {
	width:70%;
}

section.review_list .review_wrap .review {
	width: 100%;
	/* flex-direction: column-reverse; */
	padding:0px 0px;
}

section.review_list .review_wrap .review:nth-of-type(even) {
	/* flex-direction: column-reverse; */
}

section.review_list .review_wrap .review_body {
	width: 100%;
}

section.review_list .review_wrap .review .cover {
	height: 200px;
	overflow: hidden;
}

section.review_list .review_wrap .review .cover img {
	opacity: 1;
	width: 100%;
}

section.review_list .review_wrap .review .review_info {
	margin-top: 0px;
}

section.review_list .review_wrap .review .review_info .avatar {
	width:120px;
	height: 120px;
	top:-60px;

}
section.review_list .review_wrap .review .review_info .review_text {
	padding: 68px 0px 0px;
}

section.review_list .review_wrap .review .review_info .review_text h3 {
	font-size: 22px;
}

section.review_list .review_wrap .review .review_info .review_text p {
	font-size: 14px;
}

}

@media only screen and (max-width: 540px)  {


section.review_list .review_wrap {
	width:90%;
}

section.review_list .review_wrap .review .cover {
	height: 170px;
}


}






/* --------- RDM  BOOK PAGE TOP----------- */



@media only screen and (min-width: 1600px)  {

.book_top .book_info h2.book_title {
	font-size: 46px;
}

.book_top .book_info .book_description {
	font-size: 25px;
}


}


@media only screen and (max-width: 900px) {

.book_top .book_info {
	width:100%;
}

.book_top .book_info h2.book_title {
font-size: 40px;
}

.book_top .book_info .book_description {
	font-size: 25px;
}

.book_top .book_cover {
	display: none;
}

}


@media only screen and (max-width: 540px)  {

.book_top .book_info h2.book_title {
	font-size: 40px;
}

.book_top .book_info .book_description {
	font-size: 25px;
}


}


@media only screen and (max-width: 400px)  {

.book_top .book_info {
	padding: 0 10px;
}
.book_top .book_info h2.book_title {
	font-size: 40px;
}

.book_top .book_info .book_description {
	font-size: 25px;
}


}





/* --------- RDM  BOOK PAGE DESC----------- */



@media only screen and (min-width: 1600px)  {


section.book_description {
	padding:30px 0 150px;
}

section.book_description .description {
	width:50%;

}
section.book_description .description p {
	font-size: 22px;
	padding: 20px 0;
}

}

@media only screen and (max-width: 900px)  {


section.book_description .description {
	width:80%;

}


}

@media only screen and (max-width: 640px)  {


section.book_description .description p {
	font-size: 18px;
}

}

@media only screen and (max-width: 480px)  {

section.book_description .description {
	width:90%;

}
section.book_description .description p {
	font-size: 16px;
}

}




/* --------- RDM  BOOK PAGE  VOTE----------- */



@media only screen and (min-width: 1600px)  {



section.book_vote {
	padding: 150px 0 180px;
}

section.book_vote .vote_block {
	width:70%;
	height:300px;
}


}


@media only screen and (max-width: 640px)  {



section.book_vote .vote_block {
	width:90%;
}


section.book_vote .book_vote .vote_count div {
	font-size: 26px;
}

section.book_vote .book_vote .vote_buttons button {
    font-size: 16px;

}
}

@media only screen and (max-width: 480px)  {



section.book_vote .vote_block {
	width:95%;
	height:150px;
}


section.book_vote .book_vote .vote_count div {
	font-size: 24px;
}

section.book_vote .book_vote .vote_buttons button {
    font-size: 14px;

}
}

@media only screen and (max-width: 380px)  {


section.book_vote .book_vote .vote_count div {
	font-size: 20px;
}

section.book_vote .book_vote .vote_buttons button {
    font-size: 12px;

}
}





/* --------- RDM  BOOK PAGE  BOOK INFO----------- */



@media only screen and (min-width: 1600px)  {


section.book_info2 .book_tableinfo {
	font-size: 22px;
}
section.book_info2 .book_tableinfo tr td {
	padding:20px 10px;
	width: 50%;
}
section.book_info2 .book_tableinfo tr td:nth-of-type(1) {
	padding-right:10px;
}

section.book_info2 .book_tableinfo tr td:nth-of-type(2) {
	padding-left:10px;
}

}

@media only screen and (max-width: 640px)  {


section.book_info2 .book_tableinfo {
	font-size: 16px;
}
section.book_info2 .book_tableinfo tr td:nth-of-type(1) {

	width:40%;
}

section.book_info2 .book_tableinfo tr td:nth-of-type(2) {

	width:60%;
}

}

@media only screen and (max-width: 480px)  {

section.book_info2 .book_tableinfo tr td:nth-of-type(1) {

	width:30%;
}

section.book_info2 .book_tableinfo tr td:nth-of-type(2) {

	width:70%;
}

}

@media only screen and (max-width: 380px)  {


section.book_info2 .book_tableinfo {
	font-size: 14px;
}
section.book_info2 .book_tableinfo tr td:nth-of-type(1) {

	width:35%;
}

section.book_info2 .book_tableinfo tr td:nth-of-type(2) {

	width:65%;
}

}



/* --------- RDM  BOOK PAGE  AUTHOR----------- */



@media only screen and (min-width: 1600px)  {



section.book_info_author .author_wrap {
	width:70%;
	margin:0 auto;
}

section.book_info_author .author_wrap .author .author_info h4 {
	font-size: 28px;	
}
section.book_info_author .author_wrap .author .description p {
	font-size: 18px;

}


}


@media only screen and (max-width: 900px) {


section.book_info_author .author_wrap {
	width:95%;
	margin:0 auto;
}
section.book_info_author .author_wrap .author .author_img .avatar {
	width:150px;
	height: 150px;
	border-radius: 50%;
	overflow: hidden;
}


}


@media only screen and (max-width: 800px)  {


section.book_info_author .author_wrap {
	width:80%;
}

section.book_info_author .author_wrap .author {
	flex-direction: column;
}

section.book_info_author .author_wrap .author .author_info {
	width:100%;

}

}


@media only screen and (max-width: 640px)  {
section.book_info_author .author_wrap {
	width:95%;
}
}




/* --------- RDM  BOOK PAGE  REVIEW----------- */



@media only screen and (min-width: 1600px)  {


section.book_review .review_wrap {
	width:70%;
}

}


@media only screen and (max-width: 1200px)  {


section.book_review .review_wrap .review .review_info h4 {
	font-size: 22px;

}
section.book_review .review_wrap .review .description p {
	font-size: 16px;

}

section.book_review .review_wrap .review .review_author .avatar {
	width:170px;
	height: 170px;

}


section.book_review .review_wrap .review .review_author h4 {
	font-size: 20px;

}

}



@media only screen and (max-width: 900px)  {

section.book_review .review_wrap {
	width:95%;
}

}

@media only screen and (max-width: 640px)  {


section.book_review .review_wrap .review {
	flex-direction: column-reverse;
	padding: 20px 20px;
}

section.book_review .review_wrap .review:nth-of-type(even){
	flex-direction: column-reverse;
}


section.book_review .review_wrap .review .review_info {
	width: 100%;
}

section.book_review .review_wrap .review .review_author {
	width: 100%;
}

}

@media only screen and (max-width: 480px)  {

section.book_review .review_wrap .review {
	padding: 20px 15px;
}

section.book_review .review_wrap .review .review_info h4 {
	font-size: 20px;

}
section.book_review .review_wrap .review .description p {
	font-size: 15px;
}

section.book_review .review_wrap .review .review_author .avatar {
	width:150px;
	height: 150px;
}

section.book_review .review_wrap .review .review_author h4 {
	font-size: 18px;
}

}




/* --------- RDM  REVIEW PAGE  ----------- */



@media only screen and (min-width: 1600px)  {


.single_page_header {
	padding:80px 20%;
}

.single_page_header h2 {
	font-size:28px;
}


section.review_info {
	width:60%;
}


section.review_info .review_text p {
	font-size: 18px;
	padding: 15px 0;
}


section.review_info .review_author h4 {
	font-size: 24px;

}


section.review_book {
	width:100%;
	height: 500px;
}

section.review_book .book_title {
	font-size: 48px;
	margin: 40px 0;
}

section.review_book .book_author {

	font-size: 30px;

}



}


@media only screen and (max-width: 1200px)  {

.single_page_header {
	padding:50px 10%;
}


section.review_info {
	width:80%;
}


}

@media only screen and (max-width: 960px)  {


.single_page_header {
	padding:50px 5%;
}


section.review_info {
	width:90%;
}


section.review_book {
	width:100%;
	height: 100vh;
}

section.review_book .book_title {
	font-size: 48px;
	margin: 40px 0;
}

section.review_book .book_author {

	font-size: 30px;

}



}


@media only screen and (max-width: 800px)  {

.single_page_header .controls {
	width:20%;
	
}
.single_page_header h2 {
	font-size:24px;
	width:80%;
}


section.review_info .review_text p {
	font-size: 15px;
}


section.review_info .review_author h4 {
	font-size: 20px;

}

section.review_info .review_author .book_cover {
	width: 150px;
	height: 150px;
}


}



@media only screen and (max-width: 640px)  {


.single_page_header .controls {
	display: none;
	
}

.single_page_header h2 {
	font-size:24px;
	width:100%;
	text-align: center;
}


section.review_info {
	width:95%;
	flex-direction: column-reverse;
}


section.review_info .review_left {
	width: 100%;
	padding: 0 25px;
}
section.review_info .review_right {
	padding:10px 0px;
	width: 100%;
}

section.review_info .review_text {
	padding:0;
}
section.review_info .review_text p {
	font-size: 17px;
}
section.review_info .review_author {
	position: static;
}

section.review_info .review_author .book_cover {
	width: 180px;
	height: 180px;
}

section.review_info .review_author h4 {
	font-size: 22px;
}
section.review_book .book_title {
	font-size: 40px;
	margin: 40px 0;
}
section.review_book .book_author {
	font-size: 26px;
}

}



@media only screen and (max-width: 480px)  {


.single_page_header h2 {
	font-size:22px;
}

section.review_info .review_text p {
	font-size: 16px;
}
section.review_info .review_author .book_cover {
	width: 170px;
	height: 170px;
}

section.review_info .review_author h4 {
	font-size: 22px;
}
section.review_book .book_title {
	font-size: 36px;
	margin: 40px 0;
}
section.review_book .book_author {
	font-size: 24px;
}

}


@media only screen and (max-width: 380px)  {

section.review_info {
	width:100%;
}


.single_page_header h2 {
	font-size:20px;
}

section.review_info .review_text p {
	font-size: 16px;
}
section.review_info .review_author .book_cover {
	width: 150px;
	height: 150px;
}

section.review_info .review_author h4 {
	font-size: 20px;
}
section.review_book .book_title {
	font-size: 30px;
	margin: 30px 0;
}
section.review_book .book_author {
	font-size: 20px;
}

}




/* --------- RDM  HOME PAGE  SIGNUP----------- */



@media only screen and (min-width: 1600px)  {

section.signup .signup_form {
	width:30%;	
}
section.contact .contact_form {	
	width:30%;	
}
}

@media only screen and (max-width: 900px)  {

section.signup .signup_form {
	width:60%;	
}
section.contact .contact_form {	
	width:60%;	
}
}


@media only screen and (max-width: 480px)  {
section.signup .signup_form {
	width:85%;	
}
section.contact .contact_form {	
	width:85%;	
}
}

