/* Global */

body, div {
  font-family: 'Raleway', Helvetica, Arial, sans-serif;
  font-weight: 400; 
  letter-spacing: 1px;
  font-size: 100%;
}

.container-fix {
  margin-top: 65px;
}

/* Type */

h1, h2 {
  font-size: 35px;
  line-height: 1.3;
  letter-spacing: 3px;
}

h1 {
  font-weight: 600;
}

@media (max-width: 767px) {
  h1, h2 {
    font-size: 28px;
  }
}

h2 {
  font-weight: 200;
}

h3 {
  font-size: 20px;
  font-weight: 200;
  margin-bottom: 15px;
  line-height: 1.4;
}

@media (min-width: 768px) and (max-width: 1199px) {
  h3 {
    font-size: 16px;
  }
}

h4 {
  font-size: 16px;
  line-height: 1.75;
  font-weight: 600;
  margin-bottom: 10px;
}

p.lead, .lead {
  font-size: 22px;
  font-weight: 200;
  line-height: 1.6;
}

@media (max-width: 767px) {
  p.lead, .lead {
    font-size: 18px;
    line-height: 1.8;
  }
}

p, .p {
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 20px;
}

p.small, .small {
  font-size: 12px;
  line-height: 1.8;
}

p.tiny, .tiny {
  font-size: 10px;
  line-height: 2;
}

.text-muted {
  color: #777;
}

.strong {
  font-weight: 600;
}

.letter-space-large {
  letter-spacing: 3px;
}


/* Links */

a, a:hover {
  color: #000;
  text-decoration: none;
}

a:hover {
  color: #777;
}

a.underline {
  text-decoration: underline;
}

a.no-effect, a.no-effect:hover {
  text-decoration: none;
  color: #000;
}

a.muted {
  color: #777;
}

a.muted:hover {
  color: #000;
}


/* Section blocks */

.row-centered {
  text-align: center;
}

.col-centered {
  display: -moz-inline-stack;
  display: inline-block;
  vertical-align: middle;
  *vertical-align: auto;
  zoom: 1;
  *display: inline;
  vertical-align: top;
  float: none;
}



/* Navigation */

.navbar-custom {
  font-size: 14px;
  font-weight: 200;
  color: #000;
  background-color: #fff;
  border-color: #e7e7e7;
  padding-top: 15px;
}

.list-inline {
  padding-left: 0;
  margin-left: -5px;
  list-style: none;
}
.list-inline > li {
  display: inline-block;
  padding-right: 10px;
  padding-left: 10px;
}

@media (max-width: 767px) {
  .navbar-mobile  {
    text-align: center !important;
    display: block;
  }

}

.about-fix {
  margin-top: 40px;
}


/* Lines */

.line-full {
  height: 1px;
  background-color: #ddd;
  margin: 20px 15px;
  display: block;
}

.line-thru {
  overflow: hidden;
  line-height: 1.5;
  text-align: center;
}

.line-thru span {
  display: inline-block;
  position: relative;
}

.line-thru span:before,
.line-thru span:after {
  position: absolute;
  content: '';
  width: 100%;
  border-top: 1px solid #ddd;
  top: 50%;
}

.line-thru span:before {
  right: 100%;
  margin-right: 25px;
}

.line-thru span:after {
  left: 100%;
  margin-left: 25px;
}


/* Spacing */

.mg-all-large {
  margin: 40px;
}

.mg-top-large {
  margin-top: 50px;
}

.mg-top-med {
  margin-top: 35px;
}

.mg-top-small {
  margin-top: 20px;
}

.mg-top-tiny {
  margin-top: 10px;
}

.mg-bottom-large {
  margin-bottom: 50px;
}

.mg-bottom-med {
  margin-bottom: 35px;
}

.mg-bottom-small {
  margin-bottom: 20px;
}

.mg-bottom-tiny {
  margin-bottom: 10px;
}

.mg-horizontal-tiny {
  margin-right: 5px;
  margin-left: 5px;
}


/* Images */

.img-thumb-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.img-thumb {
  display: inline-block;
  width: 100% \9;
  max-width: 100%;
  height: auto;
  padding-top: 15px;
  padding-bottom: 15px;
  line-height: 1.42857143;
  background-color: #fff;
  margin: 0 auto;
  position: relative;
}

.img-thumb-overlay {  
  width: 91%;
  height: 82%;
  margin: 0 auto;
  position: absolute;
  background-color: #fff;
  z-index: 1;
  text-align: center;
  left: 5%;
  top: 9%;
  padding: 20% 15px 10px;
  transition: all 0.2s linear; 
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear; 
  -o-transition: all 0.2s linear;
  opacity: 0; 
}


.img-thumb-wrapper:hover .img-thumb-overlay {  
  opacity: 1;

}

@media only screen and (max-device-width: 480px) {
  .img-thumb-wrapper:hover .img-thumb-overlay {
    display: none;
  }
}

/* Bottom navigation */

.bottom-navigation {
  font-size: 30px;
  color: #777;
  font-weight: 100;
  margin: 0 20px;
}

/* Page fade in */

body.loading {
    -webkit-animation: fadein 1s; /* Safari, Chrome and Opera > 12.1 */
       -moz-animation: fadein 1s; /* Firefox < 16 */
        -ms-animation: fadein 1s; /* Internet Explorer */
         -o-animation: fadein 1s; /* Opera < 12.1 */
            animation: fadein 1s;
}

@keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Firefox < 16 */
@-moz-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Internet Explorer */
@-ms-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Opera < 12.1 */
@-o-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.circular
{
	padding: 0;
	-webkit-border-radius: 200px;
	-moz-border-radius: 200px;
	-khtml-border-radius: 200px;
	border-radius: 200px;
	overflow: hidden;
	margin-top:-50px;
}

.avatar{z-index: 1040 !important;}