body, html {
    width: 100%;
    height: 100%}
body {
    font-family: "Lato", sans-serif;
    font-weight: 400;
    line-height: 1.7;
    overflow: hidden;
}
a {
  color: #666;
  font-size: 15px;
  font-weight: 300;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  text-decoration: none;
}
a:hover {
  text-decoration: none;
  letter-spacing: 1.5px;
  color: #ff6600;
}
a:focus, a:visited {
  color: #666;
  outline: none;
  text-decoration: none;
}
h1 {
    font-family: "Oswald", serif;
    font-size: 40px;
    font-weight: 300;
    padding: 0;
    margin: 0;
}
h3 {
    font-family: "Oswald", serif;
    font-size: 10px;
    font-weight: 300; 
}
h3 span {
    display: block;
    font-size: 10px;
}
@media (max-width: 767px) {
  h1 {
    font-size: 30px;
  }
  h3 {
    font-size: 8px;
  }
}
@media (max-width: 480px) {
  h1 {
    font-size: 20px;
  }
  h3 {
    font-size: 6px;
  }
}
.color-default {
    color: #ff6600;
}
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 9999999999;
}
.loader .spinner {
    position: absolute;
    width: 40px;
    height: 40px;
    top: 50%;
    left: 50%;
    margin-left: -40px;
    margin-top: -40px;
    -webkit-animation: rotatee 2s infinite linear;
    animation: rotatee 2s infinite linear;
}
.loader .spinner .dot1, .loader .spinner .dot2 {
    width: 60%;
    height: 60%;
    display: inline-block;
    position: absolute;
    top: 0;
    border-radius: 100%;
    -webkit-animation: bouncee 2s infinite ease-in-out;
    animation: bouncee 2s infinite ease-in-out;
    background: #ff6600;
}
.loader .spinner .dot2 {
    top: auto;
    bottom: 0;
    -webkit-animation-delay: -1s;
    animation-delay: -1s;
}
@-webkit-keyframes rotatee {
    100% {
    -webkit-transform: rotate(360deg);
}
}@keyframes rotatee {
    100% {
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
}
}@-webkit-keyframes bouncee {
    0%, 100% {
    -webkit-transform: scale(0);
}
50% {
    -webkit-transform: scale(1);
}
}@keyframes bouncee {
    0%, 100% {
    transform: scale(0);
    -webkit-transform: scale(0);
}
50% {
    transform: scale(1);
    -webkit-transform: scale(1);
}
}.page-wrapper {
    position: absolute;
    z-index: 1;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    -webkit-perspective: 1400px;
    -moz-perspective: 1400px;
    perspective: 1400px;
    -webkit-perspective-origin: 10% 10%;
    -moz-perspective-origin: 10% 10%;
    perspective-origin: 10% 10%;
    background: #fff;
    overflow: hidden;
}
.page-wrapper .content {
    display: table;
    table-layout: fixed;
}
.page-wrapper .content .table-middle {
    position: relative;
    width: 100%;
    height: 100%;
    margin: 0;
    display: table-cell;
    vertical-align: middle;
}
.page-wrapper .content {
    width: 100%;
    min-height: 100%;
    height: 100%;
    overflow: hidden;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
}
.page-wrapper .content.table {
    display: table;
    table-layout: fixed;
}
.page-wrapper .content.table .table-middle {
    position: relative;
    width: 100%;
    height: 100%;
    margin: 0;
    display: table-cell;
    vertical-align: middle;
}
.intro-text {
    letter-spacing: 4px;
    text-align: center;
}
.social-icons {
    display: block;
    list-style: none;
    margin: 5px 0;
    padding: 0;
    background: 0 0;
}
.social-icons li {
    display: inline-block;
    margin: 0;
    padding: 0;
}
.social-icons li a {
    margin: 0 5px;
    letter-spacing: 0;
    text-align: center;
    color: #ff6600;
    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    transition: all 200ms linear;
}
.social-icons li a:hover {
    color: #FF812D;
    letter-spacing: 0;
}
.copyright {
    font-family: "Oswald", serif;
    padding: 10px 20px;
    font-size: 10px;
}
.copyright a {
    color: #000;
    font-size: 10px;
    font-weight: 200;
}