@charset "UTF-8";
/* CSS Document */


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, center, dl, dt, dd, ol, ul, 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;
  	outline: none;
  	-webkit-font-smoothing: antialiased;
  	-webkit-text-size-adjust: 100%;
  	-ms-text-size-adjust: 100%;
  	-webkit-box-sizing: border-box;
  	-moz-box-sizing: border-box;
  	box-sizing: border-box;
}
body {
    font-family: 'Mukta', sans-serif;
    background-color: #000;
    font-size: 1em;
    line-height: normal;
    overflow-x: hidden;
    color: #fff;
}
.form_a { display: none; }

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { display: block; }
ol, ul { list-style: none; }
input, textarea { 
  	-webkit-font-smoothing: antialiased;
  	-webkit-text-size-adjust: 100%;
  	-ms-text-size-adjust: 100%;
  	-webkit-box-sizing: border-box;
  	-moz-box-sizing: border-box;
  	box-sizing: border-box;
  	outline: none; 
	-webkit-appearance: none;
    color: #000;
}
input::placeholder{
  color: #000;
  color: rgb(0,0,0) !important;
  -moz-appearance: none !important;
}
textarea::placeholder{
  color: #000;
  color: rgb(0,0,0) !important;
  -moz-appearance: none !important;
}
blockquote, q { quotes: none; }
blockquote:before, blockquote:after, q:before, q:after { content: ''; content: none; }
strong, b { font-weight: bold; }
em, i { font-style: italic; }
table { border-collapse: collapse; border-spacing: 0; }
img { border: 0; }

p.desc {
  	text-align: center;
}
.clear {
  	clear: both;
}
iframe { 
    border: none; 
    scrolling: none; 
}
select { /* FIXES SAFARI DROPDOWNS CRASH ISSUE!! */
  text-rendering: auto !important;
  color: #000;
  color: rgb(0,0,0) !important;
  
  
}



a { text-decoration: none; }
a:link {
	color: #6B6B6B;
}
a:visited {
	color: #6B6B6B;
}
a:hover { color: #6B6B6B; }
a:active { color: #6B6B6B; }


.logo {
    position: absolute;
	top: 45%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
    padding: 50px;
    text-align: center;
	width: 500px;
}

h1 {
    font-size: 1.3em;
    text-align: center;
    clear: both;
    display: block;
    color: #000;
    width: 100%;
    letter-spacing: 4px;
    padding: 25px;
    margin: 0 auto;
    position: absolute;
	top: 75%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
}

.copyright {
    position: absolute;
    bottom: 0;
    font-size: .8em;
    text-align: center;
    clear: both;
    display: block;
    color: #fff;
    width: 100%;
    padding: 25px;
    margin: 0 auto;
}
.copyright a.footerlinks { 
    padding: 0 25px;
    color: #fff;
}






/* MOBILE ----------------------------------------------------------------- */
@media only screen and (max-width: 480px), only screen and (max-device-width: 480px) {



.logo {
    width: 90%;
    position: absolute;
	top: 40%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

h1 {
    font-size: 1em;
    position: absolute;
	top: 60%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
}
.copyright { 
	font-size: 0.8em; 
	line-height: 1.4em; 
	text-align: center; 
	padding: 25px;
}
.copyright a.footerlinks { 
	display: block;
    margin: 0 auto;
    padding: 10px 0;
    color: #fff;
}

}