/*  TABLE OF CONTENTS
    ---------------------------
    *. @Import & Reset
    1. Generic styles
    2. Loading
    3. Navigation
    4. Home
    5. Countdown
    6. Newsletter
    7. About
    8. Services
    9. Contact
   10. Media Queries
*/
/* ------------------------------------- */
/* *. @Import & Reset .................. */
/* ------------------------------------- */
/* custom CSS files */
@import url(font-awesome.min.css);
@import url(ionicons.min.css);
@import url(bootstrap.min.css);
@import url(animate.css);
/* Google Fonts */
/*
* http://meyerweb.com/eric/tools/css/reset/ 
* v2.0 | 20110126
* License: none (public domain)
*/
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;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, main {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* ------------------------------------- */
/* 1. Generic styles ................... */
/* ------------------------------------- */
body {
  background: #100b0a;
  font-family: "Open Sans", Arial, Verdana, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-overflow-scrolling: touch;
}

body, html {
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
  width: 100%;
}

body, input, select, textarea {
  -webkit-transition: all 0.2s cubic-bezier(0.42, 0, 0.58, 1);
  -moz-transition: all 0.2s cubic-bezier(0.42, 0, 0.58, 1);
  -ms-transition: all 0.2s cubic-bezier(0.42, 0, 0.58, 1);
  -o-transition: all 0.2s cubic-bezier(0.42, 0, 0.58, 1);
  transition: all 0.2s cubic-bezier(0.42, 0, 0.58, 1);
}

.ms-section {
  position: relative;
}


.ms-section.secondary{
background: #c2beba;
}

.ms-section.ms-table {
  display: table;
  width: 100%;
}

.ms-tableCell {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
  height: 100%;
}

.ms-easing {
  -webkit-transition: all 0.2s cubic-bezier(0.42, 0, 0.58, 1);
  -moz-transition: all 0.2s cubic-bezier(0.42, 0, 0.58, 1);
  -ms-transition: all 0.2s cubic-bezier(0.42, 0, 0.58, 1);
  -o-transition: all 0.2s cubic-bezier(0.42, 0, 0.58, 1);
  transition: all 0.2s cubic-bezier(0.42, 0, 0.58, 1);
}

a {
  -webkit-transition: all 0.2s cubic-bezier(0.42, 0, 0.58, 1);
  -moz-transition: all 0.2s cubic-bezier(0.42, 0, 0.58, 1);
  -ms-transition: all 0.2s cubic-bezier(0.42, 0, 0.58, 1);
  -o-transition: all 0.2s cubic-bezier(0.42, 0, 0.58, 1);
  transition: all 0.2s cubic-bezier(0.42, 0, 0.58, 1);
  cursor: pointer;
  text-decoration: none;
  color: #FFFFFF;
}
a:hover {
  color: #FF1D4D;
  text-decoration: none !important;
  outline: none !important;
}
a:active, a:focus {
  outline: none !important;
  text-decoration: none !important;
  color: #FFFFFF;
}

button {
  -webkit-transition: all 0.2s cubic-bezier(0.42, 0, 0.58, 1);
  -moz-transition: all 0.2s cubic-bezier(0.42, 0, 0.58, 1);
  -ms-transition: all 0.2s cubic-bezier(0.42, 0, 0.58, 1);
  -o-transition: all 0.2s cubic-bezier(0.42, 0, 0.58, 1);
  transition: all 0.2s cubic-bezier(0.42, 0, 0.58, 1);
  cursor: pointer;
}
button:hover, button:active, button:focus {
  outline: none !important;
  text-decoration: none !important;
  color: #2B2D35;
}

strong, b {
  font-weight: 700;
}

em, i {
  font-style: italic;
}

p {
  margin: 0;
  font-size: 1em;
  line-height: 1.6em;
  color: #FFFFFF;
  font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
  color: #FFFFFF;
  font-weight: 400;
  line-height: 1em;
}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
  color: inherit;
  text-decoration: none;
}
h1 small, h2 small, h3 small, h4 small, h5 small, h6 small {
  color: inherit;
}

h1 {
  font-size: 4em;
  line-height: 1;
  color: #FFFFFF;
}

h2 {
  font-size: 1.2em;
  line-height: 1.2em;
  margin-bottom: 0;
}

h3 {
  font-size: 1em;
  line-height: 1.5em;
  margin-bottom: 0.5em;
  font-weight: 400;
}

h4 {
  font-size: 0.8em;
  line-height: 1.1em;
  font-weight: 600;
  text-transform: uppercase;
}

h5 {
  font-size: 0.8em;
  line-height: 1em;
  margin-bottom: 0.2em;
  font-weight: 400;
  text-transform: uppercase;
}

h6 {
  font-size: 0.7em;
  line-height: 1.5em;
}

sub {
  font-size: 0.8em;
  position: relative;
  top: 0.5em;
}

sup {
  font-size: 0.8em;
  position: relative;
  top: -0.5em;
}

.clear {
  clear: both;
}

.display-none {
  display: none !important;
}

.align-left {
  text-align: left;
}

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

.align-right {
  text-align: right;
}

.no-margin-bottom {
  margin-bottom: 0;
}

.opacity-0 {
  opacity: 0 !important;
}

.index-999 {
 /* z-index: -999 !important; */
}




#brand{
	width: 280px;
	margin: 80px auto;
}

#brand img{
	width: 100%;
	height: auto;
}

h2{
	max-width: 700px;
	line-height: 1.5;
	font-size: 24px;
	margin: 0 auto 60px auto;
	text-align: center;
}


footer{
	text-align: center;
	opacity: 0.7;
	width: 100%;
	
  -webkit-transition: all 0.3s cubic-bezier(0, 0, 0.58, 1);
  -moz-transition: all 0.3s cubic-bezier(0, 0, 0.58, 1);
  -ms-transition: all 0.3s cubic-bezier(0, 0, 0.58, 1);
  -o-transition: all 0.3s cubic-bezier(0, 0, 0.58, 1);
  transition: all 0.3s cubic-bezier(0, 0, 0.58, 1);
  
	padding: 20px 0;
}

footer:hover{
	opacity: 1;
}
/* ------------------------------------- */
/* 6. Newsletter ....................... */
/* ------------------------------------- */
#subscribe p {
  font-weight: 400;
}

#subscribe .info{
	margin: 20px 0;
	text-align: center;
}

#subscribe #notifyMe {
  max-width: 450px;
  margin: auto;
  margin-top: 2em;
}
#subscribe #notifyMe .form-group {
  margin-bottom: 1em;
}
#subscribe #notifyMe .form-group .fa {
  color: #000000;
  font-size: 1.5em;
  margin: 0.5em 0 0 -2em;
  position: absolute;
  width: 2em;
  text-align: center;
}

#subscribe{
	margin-top: 80px;
}

#subscribe .controls{
	background: rgba(255,255,255,0.25);
	padding: 10px;
	border-radius: 2px;
}
#subscribe #notifyMe .form-group .form-control {
  background: #fff;
  border: 1px solid #fff;
  border-right: none;
  float: left;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
  box-shadow: none;
  height: 50px;
  font-weight: normal;
  outline: medium none;
  font-size: 16px;
  padding: 0 1em;
  width: 70%;
  color: #222;
  -webkit-transition: all 0.3s cubic-bezier(0, 0, 0.58, 1);
  -moz-transition: all 0.3s cubic-bezier(0, 0, 0.58, 1);
  -ms-transition: all 0.3s cubic-bezier(0, 0, 0.58, 1);
  -o-transition: all 0.3s cubic-bezier(0, 0, 0.58, 1);
  transition: all 0.3s cubic-bezier(0, 0, 0.58, 1);
}
#subscribe #notifyMe .form-group .form-control:hover, #subscribe #notifyMe .form-group .form-control:focus {
  box-shadow: none;
}
#subscribe #notifyMe .form-group .form-control::-webkit-input-placeholder {
  color: #666 !important;
}
#subscribe #notifyMe .form-group .form-control::-moz-placeholder {
  color: #666 !important;
}
#subscribe #notifyMe .form-group .form-control:-moz-placeholder {
  color: #666 !important;
}
#subscribe #notifyMe .form-group .form-control:-ms-input-placeholder {
  color: #666 !important;
}
#subscribe #notifyMe .form-group button.submit {
  border: 1px solid #ab1763;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
  background: #ab1763;
  color: #fff;
  height: 50px;
  padding: 1em 0;
  font-size: 1em;
  font-weight: 600;
  line-height: 1;
  width: 30%;
}
#subscribe #notifyMe .form-group button.submit:hover {
  color: #969696;
}
#subscribe .block-message {
  min-height: 30px;
}
#subscribe p.notify-valid {
  color: #FFFFFF;
}
#subscribe p.notify-valid .ion-close-round {
  color: #FF1D4D;
}
#subscribe p.notify-valid .ion-checkmark-round {
  color: #27AE60;
}

.block-message{
	text-align: center;
}


@media(max-width: 800px){
	
	h2{
		font-size: 18px;
	}
	
	h2 br{
		display: none;
	}
		footer{
		position: static;
		padding: 20px 40px;
	}
}


@media(max-width: 600px){
	
	#brand{
		width: 220px;
	}
}


@media(max-width: 420px){

	
	#brand{
		width: 180px;
		margin: 50px auto;
	}
}

#content{
	max-width: 700px;
	margin: 0 auto;
}

#content h1{
	font-size: 32px;
	margin-bottom: 30px;
}


#content h2,
#content h3{
	text-align: left;
}

.page{
	overflow: auto;
}


.page footer{
	position: static;
	margin-top: 60px;
}
