/* reset */
html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,dl,dt,dd,ol,nav ul,nav li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;font-size:100%;font:inherit;vertical-align:baseline;}
article, aside, details, figcaption, figure,footer, header, hgroup, menu, nav, section {display: block;}
ol,ul{list-style:none;margin:0px;padding:0px;}
table{border-collapse:collapse;border-spacing:0;}
/* start editing from here */
a{text-decoration:none;}
.txt-rt{text-align:right;}/* text align right */
.txt-lt{text-align:left;}/* text align left */
.txt-center{text-align:center;}/* text align center */
.float-rt{float:right;}/* float right */
.float-lt{float:left;}/* float left */
.clear{clear:both;}/* clear float */
img{max-width:100%;}
/*end reset*/
html,body{
	padding:0;
	margin:0;
	background:#fff;
    font-family: 'Roboto', sans-serif;
}
body a{
    transition:0.5s all;
	-webkit-transition:0.5s all;
	-moz-transition:0.5s all;
	-o-transition:0.5s all;
	-ms-transition:0.5s all;
	text-decoration:none;
}
body a:hover {
	text-decoration: none;
}

body a:focus, a:hover {
	text-decoration: none;
}
input[type="email"],input[type="text"],input[type=password],input[type=file],
input[type="button"],input[type="submit"],textarea{
    font-family: 'Roboto', sans-serif;
	transition:0.5s all;
	-webkit-transition:0.5s all;
	-moz-transition:0.5s all;
	-o-transition:0.5s all;
	-ms-transition:0.5s all;
}
h1,h2,h3,h4,h5,h6{
	margin:0;	
	padding:0;
font-family: 'Roboto', sans-serif;
	letter-spacing:1px;
}	
p{
	margin: 0;
	padding: 0;
	letter-spacing: 1px;
	font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, sans-serif;
}
ul{
	margin:0;
	padding:0;
}
/*-- //Reset-Code --*/
body {
    min-height: 100vh;
    background: #D3D3D3;
    height: 100%;
}
.booklet-frm {
    width: 42%;
    margin: 30px auto 30px;
    background-color:#fff;
    padding: 40px 40px;
    box-shadow: 2px 3px rgba(0, 0, 0, 0.42);
}
h1{padding-top: 31px;}
h1.header {
    text-align: center;
    font-weight: 600;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 11px;
    text-shadow: 2px 3px rgba(0, 0, 0, 0.42);
}
.personal h2,
.information h3,
.book-block h3{
    color:#000;
    text-align:center;
    margin:.5em 0em;
    letter-spacing:3px;
}
.main{
    display: -webkit-flex;
    display: flex;	/* Safari */
    -webkit-justify-content: space-between; /* Safari 6.1+ */
    justify-content: space-between;
}
.form-right,.form-left{
    flex-basis: 45%;
	-webkit-flex-basis: 45%;
}
.book-block .form-left{
    flex-basis: 100%;
	-webkit-flex-basis: 100%;
}	
select.form-control {
	outline: none;
    width: 100%;
	height:43px;
	border-radius:0;
	box-sizing: border-box;
 }
 			
.form-left input[type="text"],
.form-right input[type="text"],
.form-right input[type="email"],.form-left input[type=file],
.form-control textarea[type="text"]{
    -webkit-appearance: none;
    display: inline-block;
}
 select.form-control ,
 .form-left input[type="text"],
 .form-right input[type="text"],
 .form-right input[type="email"],.form-left input[type=file],
.form-control textarea
{
    outline: none;
    width: 100%;
    box-sizing: border-box;
    background:rgba(212, 212, 212, 0.2);
    color: #000;
    letter-spacing:2px;
    border:none;
    border-bottom:1px solid rgba(0, 0, 0, 0.2) ;
    font-size: 15px;
    padding: .8em;
    margin: 0px 0px 19px;
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
}
textarea{
    height: 134px;
    padding: 1em;
	overflow: hidden;
	resize:none;
}

::-webkit-input-placeholder { /* Chrome/Opera/Safari */
     color: #000;
}
::-moz-placeholder { /* Firefox 19+ */
    color: #000;
}
:-ms-input-placeholder { /* IE 10+ */
     color: #000;
}
:-moz-placeholder { /* Firefox 18- */
    color: #000;
}	
input[type="submit"] {
	border-radius:0px;
    text-transform: uppercase;
    background: #FFC107;
    color: #000000;
    padding:11px 15px;
    border: none;
    font-size: 17px;
    outline: none;
    width: 100%;
    letter-spacing: 1px;
    margin:20px 0px;
    cursor: pointer;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -o-transition: 0.5s all;
    -ms-transition: 0.5s all;
}
input[type="submit"]:hover {
    color: #fff;
    background: #000;
}

.frmStatus{
	font-size: 16px;
	border: 1px dashed;
	padding: 10px;
}
.frmStatus.error{color: #E44439;}
.frmStatus.success{color: #3BA956;}

/*--responsive--*/
@media(max-width:1920px){
h1.header { font-size: 64px; }
.personal h2, .information h3, .book-block h3 {
    font-size: 36px;
}
}
@media(max-width:1680px){
	h1.header {
    font-size: 58px;
}
.personal h2, .information h3, .book-block h3 {
    font-size: 32px;
}
}
@media(max-width:1600px){
h1.header {
    font-size: 50px;
}
.personal h2, .information h3, .book-block h3 {
    font-size: 30px;
}
}
@media(max-width:1440px){
.booklet-frm {
    width: 47%;
}
}
@media(max-width:1366px){
.booklet-frm {
    width: 52%;
}
}
@media(max-width:1280px){
.booklet-frm {
    width: 55%;
}
}
@media(max-width:1080px){
.booklet-frm {
    width: 60%;
}
}
@media(max-width:1050px){
.booklet-frm {
    width: 63%;
}
}
@media(max-width:1024px){
select.form-control, .form-left input[type="text"], .form-right input[type="text"], .form-left input[type=file], .form-right input[type="email"], .form-control textarea {
    font-size: 14px;
}
.booklet-frm {
    padding: 24px 35px;
}
.personal h2, .information h3, .book-block h3 {
    margin: .4em 0;
}
}
@media(max-width:991px){
	.booklet-frm {
    width: 68%;
}
}
@media(max-width:900px){
h1.header {
    letter-spacing: 8px;
	font-size: 48px;
}
select.form-control, .form-left input[type="text"], .form-right input[type="text"], .form-right input[type="email"], .form-left input[type=file], .form-control textarea {
    padding: .6em;
}
select.form-control {
    height: 36px;
}
}
@media(max-width:800px){
.booklet-frm {
    width: 72%;
}
h1.header {
    letter-spacing: 6px;
}
}
@media(max-width:768px){
.booklet-frm {
    width: 77%;
}
input[type="submit"] {
    font-size: 16px;
}
}
@media(max-width:767px){
textarea {
    height: 127px;
}
.booklet-frm {
    padding: 21px 35px;
}
}
@media(max-width:736px){
.booklet-frm {
    margin: 22px auto 30px;
}
h1.header {
    font-size: 46px;
}
}
@media(max-width:667px){
h1.header {
    letter-spacing: 4px;
}
.booklet-frm {
    padding: 21px 28px;
	width: 79%;
}
}
@media(max-width:640px){
h1.header {
    font-size: 44px;
}
select.form-control, .form-left input[type="text"], .form-right input[type="text"], .form-right input[type="email"], .form-left input[type=file], .form-control textarea {
    letter-spacing: 1px;
}
}
@media(max-width:600px){
h1.header {
    letter-spacing: 2px;
}
select.form-control, .form-left input[type="text"], .form-right input[type="text"], .form-right input[type="email"], .form-left  input[type=file], .form-control textarea {
    font-size: 13px;
}
}
@media(max-width:568px){
.personal h2, .information h3, .book-block h3 {
    font-size: 28px;
}
h1.header {
    font-size: 42px;
}
textarea {
    height: 114px;
}
}
@media(max-width:480px){
.main {
	flex-direction: column;
   -webkit-flex-direction:  column;
}
h1.header {
    font-size: 41px;
	line-height: 51px;
}
.booklet-frm {
    margin: 13px auto 30px;
}
}
@media(max-width:440px){
.personal h2, .information h3, .book-block h3 {
    font-size: 26px;
}
input[type="submit"] {
    margin: 14px 0px;
}
}
@media(max-width:414px){
.booklet-frm {
    width: 74%;
}
}
@media(max-width:384px){
h1.header {
    font-size: 37px;
}
}
@media(max-width:375px){
textarea {
    height: 111px;
}
h1.header {
    font-size: 35px;
	 line-height: 42px;
}
}
@media(max-width:320px){
.personal h2, .information h3, .book-block h3 {
    letter-spacing: 1px;
	font-size: 24px;
}
h1.header {
	letter-spacing: 1px;
    font-size: 31px;
}
}
/*--//responsive--*/
