html, body, .container-fluid {
    margin: 0;
    height:100%;
    width:100%;
    padding:0;
    font-size: 120%;
}

section {
    width: 100%;
    height: 100%;
    background-position: center;
    display: table;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover;
}

h1, h2 {
    font-weight: 400;
    margin-top: 20px;
    color: #fff;
}

h1 {
    font-family: 'Homemade Apple', cursive;
    font-size: 8.0vmin;
}

h2 {
    font-family: 'Catamaran', sans-serif;
    font-size: 7.0vmin;
}

p {
  font-family: 'Catamaran', sans-serif;
  text-align: justify;
  font-size: 0.75em;
  color: #fff;
}

.centre-display {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    height: auto;
}

.home {
    background: url(../images/texture.png) 50% 0 repeat fixed;
    background-color: #241c1c;
}

.about {
    background: #000;
    background: url(../images/about.jpg) 50% 0 no-repeat fixed;
    background-size: cover;
    background-position: 33% 23%;
}

.contact {
    background: #000;
    background: url(../images/contact.jpg) 50% 0 no-repeat fixed;
    background-size: cover;
    background-position: 42% 35%;
}

.ctr-content {
    max-width: 600px;
    position: relative;
    margin-left: auto;
    margin-right: auto;
}

.btn {
  background: none;
  border-radius:0;
  color: #fff
  padding: 12px 22px;
  margin-bottom: 15px;
  border: 2px solid #fff;
  transition: background-color 0.2s ease-out,
              color 0.2s ease-out;
  width: 7em;
}

.btn-inv {
  color: #1d70b7;
  border: 2px solid #1d70b7;
}

.btn-default {
  color: #fff
}

.btn:hover, .btn:focus, .btn:active {
  background-color: #fff;
  color: #000;
  border-color: #fff;
  transition: background-color 0.3s ease-in,
              color 0.3s ease-in;
}

.btn-inv:hover, .btn-inv:focus, .btn-inv:active {
  background-color: #1d70b7;
  color: #fff;
  border-color: #1d70b7;
  transition: background-color 0.3s ease-in,
              color 0.3s ease-in;
}

.g-recaptcha > div > div {
  text-align: center;
  width: 100% !important;
  margin-bottom: 15px;
}

.glyphicon {
	font-size: .4em;	
}

.logo-main {
  padding: 22px;
  max-height: 85vh;
}

.ps {
  font-style: italic;
  font-size: 0.6em;
  text-align: right;
}

@media (max-width: 480px) {
  .btn {
    width: 90%;
  }
  .btn-submit {
    width: 100%;
  }
  p {
    font-size: 0.5em;
  }

}

@media (max-width: 640px) {
  .ctr-content {
    width: 90%;
  }
}

