/* 
// Table of content
// -----------------------------------------------------------------------------
// - 1. Base
// - 2. Typography
// - 3. Helpers
*/
/* -----------------------------------------------------------------------------
// 1. Base 
// ----------------------------------------------------------------------------- */
img {
  max-width: 100%; }

#preloader {
  position: fixed;
  background-color: #fff;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999; }

.spinner {
  position: relative;
  top: 30%;
  width: 40px;
  height: 40px;
  margin: 100px auto;
  background-color: #009de0;
  border-radius: 100%;
  -webkit-animation: sk-scaleout 1.0s infinite ease-in-out;
  animation: sk-scaleout 1.0s infinite ease-in-out; }

@-webkit-keyframes sk-scaleout {
  0% {
    -webkit-transform: scale(0); }
  100% {
    -webkit-transform: scale(1);
    opacity: 0; } }
@keyframes sk-scaleout {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0); }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0; } }
/* -----------------------------------------------------------------------------
// 2. Typography
// ----------------------------------------------------------------------------- */
body {
  color: #9c9c9c;
  font-family: "Open Sans", Helvetica, Arial, sans-serif; }

p {
  font-size: 14px;
  line-height: 24px;
  letter-spacing: .5px; }
  p a {
    color: #fff;
    letter-spacing: .5px; }
    p a:hover, p a:focus {
      color: #fff;
text-decoration:none}

privacy {
  font-size: 12px;
  line-height: 20px;
   }

i,
.italic {
  font-style: italic; }

strong,
b {
  color: #181818;
  font-weight: 600; }

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: "Roboto", Helvetica, Arial, sans-serif;
  color: #273583;
  font-weight: 300; }

h1, .h1 {
  font-size: 36px; }

h2, .h2 {
  font-size: 30px;
  letter-spacing: 2px; }

h3, .h3 {
  font-size: 24px;
  letter-spacing: 1px; }

h4, .h4 {
  font-size: 18px;
  letter-spacing: 1px; }

h5, .h5 {
  font-size: 14px;
}

h6, .h6 {
  font-size: 14px;
text-align: center;
	margin-top: -20px;
	padding-bottom: 25px;
	color: #999999;}

::selection {
  background-color: #009de0;
  color: #fff; }

::-moz-selection {
  background-color: #009de0;
  color: #fff; }

.selected {
  background-color: #009de0;
  color: #fff; }

mark,
.mark {
  padding: 3px;
  color: #fff;
  background-color: #4b4b4b; }

.dropcap::first-letter {
  float: left;
  margin-right: 20px;
  padding: 20px 23px;
  font-size: 24px;
  background-color: #009de0;
  color: #fff; }

.dropcap-square::first-letter {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px; }

.dropcap-fancy::first-letter {
  background-color: transparent;
  color: #181818;
  font-weight: 700;
  font-size: 28px; }

blockquote {
  position: relative;
  margin: 40px 0;
  padding: 10px 40px 10px 30px;
  border-left: 3px solid #009de0;
  font-size: 20px;
  font-style: italic;
  line-height: 36px;
  color: #4b4b4b; }

.blockquote-bordered {
  border: 1px solid #f1f1f1;
  border-top: 3px solid #009de0;
  background: transparent;
  color: #4b4b4b; }
  .blockquote-bordered:before {
    color: #fff;
    background-color: #009de0; }
  .blockquote-bordered cite {
    color: #009de0; }

.list {
  padding: 0;
  list-style: none; }
  .list li {
    margin-bottom: 8px; }
    .list li:before {
      font-family: 'FontAwesome';
      color: #009de0;
      margin-right: 10px; }

.list-chevron-circle li:before {
  content: '\f138'; }

.list-caret li:before {
  content: '\f105'; }

.list-star li:before {
  content: '\f005';
  font-size: 12px; }

.list-dotted li:before {
  content: '\f111';
  font-size: 10px; }

.list-check li:before {
  content: '\f00c'; }

.list-arrow li:before {
  content: '\f178';
  font-size: 10px; }

ol.list {
  counter-reset: li; }
  ol.list li {
    position: relative;
    margin-left: 22px;
    padding-left: 8px;
    list-style: none; }
    ol.list li:before {
      content: counter(li);
      counter-increment: li;
      position: absolute;
      left: -25px;
      width: 22px;
      margin-right: 8px;
      padding: 4px;
      font-size: 10px;
      color: #9c9c9c;
      background-color: #fff;
      border-radius: 100%;
      text-align: center; }
  ol.list.list-ordered li {
    list-style-type: upper-alpha; }
    ol.list.list-ordered li:before {
      content: none; }

.pagination > li:first-child > a, .pagination > li:last-child > a {
  border-radius: 0; }
.pagination > li.active a,
.pagination > li.active a:hover {
  background-color: #181818;
  border-color: #181818;
  color: #fff; }
.pagination > li a {
  border-radius: 0;
  color: #9c9c9c;
  background-color: #f1f1f1;
  border: 1px solid #f1f1f1;
  margin: 0 5px;
  -webkit-transition: background-color 0.3s;
  -moz-transition: background-color 0.3s;
  -ms-transition: background-color 0.3s;
  -o-transition: background-color 0.3s;
  transition: background-color 0.3s; }
  .pagination > li a i {
    font-size: 14px; }
  .pagination > li a:hover {
    background-color: #181818;
    border-color: #181818;
    color: #fff; }

/* -----------------------------------------------------------------------------
// 3. Helpers 
// ----------------------------------------------------------------------------- */
.space {
  padding: 100px 0; }
  .space-margin {
    margin: 100px 0; }
  .space-dark {
    background-color: #fff; }
  .space-top {
    margin-top: 50px; }
    .space-top-sm {
      margin-top: 20px; }
    .space-top-md {
      margin-top: 35px; }
  .space-bottom {
    margin-bottom: 50px; }
    .space-bottom-sm {
      margin-bottom: 20px; }
    .space-bottom-md {
      margin-bottom: 35px; }

.no-space {
  padding: 0;
  margin: 0; }
  .no-space-bottom {
    margin-bottom: 0;
    padding-bottom: 0; }
  .no-space-top {
    margin-top: 0;
    padding-top: 0; }
  .no-space-right {
    margin-right: 0;
    padding-right: 0; }
  .no-space-left {
    margin-left: 0;
    padding-left: 0; }

@media (max-width: 992px) {
  .space-mb {
    margin-bottom: 40px; } }
.text-left {
  text-align: left; }

.text-right {
  text-align: right; }

.text-center {
  text-align: center; }

.text-justify {
  text-align: justify; }

.text-nowrap {
  white-space: nowrap; }

.text-lowercase {
  text-transform: lowercase; }

.text-uppercase {
  text-transform: uppercase; }

.text-capitalize {
  text-transform: capitalize; }

/*# sourceMappingURL=base.css.map */
