/* -----------------------------------*/
/* Basic setup */
/* -----------------------------------*/

 /* ff173d; = red */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  box-sizing: border-box;
  font-size: 62.5%;
  /* at 1100 px wide, change global font size */
  /* make 1rem = 8px.  8px/16px = 50% */ }
  @media only screen and (max-width: 68.75em) {
    html {
      font-size: 50%; } }

body {
  background-color: #fff;
  color: #555;  
  font-family: 'Roboto', sans-serif;
  /*font-family: 'Open Sans', sans-serif;  */
  font-weight: 400;
  font-size: 2rem;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;  

}

.clearfix { zoom: 1; }

.clearfix:after {
  content: ".";
  clear: both;  
  display: block;
  height: 0;
  visibility: hidden;

}

.testbox {
  width: 20px;
  height: 20px;
  background-color: red;
}

.top-nav-bar {
  background-color: #333333;
  /*
  -webkit-box-shadow: 0px 5px 4px 0px #333; 
  box-shadow: 0px 5px 4px 0px #333;
  */
}

.green {
    background-color: #00b050;
    color: white;
}

.cssmenu
{
  padding: 1rem 0;
}

.main-nav {
  list-style: none;
  font-family: Montserrat, sans-serif;
  background: #333333;  
  margin: 0;
  padding: 0;
  list-style: none;  
}

.main-nav li {
  display: inline-block;
  margin-left: 4rem;
}

.main-nav li a:link,
.main-nav li a:visited {
  color: #dddddd;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 12px;
  padding: 8px 0;  
  transition: color .2s;
  font-weight: 700;  
}

.main-nav li a:hover,
.main-nav li a:active {
  /*border-bottom: 2px solid #e67e22;*/
  color: #ffffff;
}

/* mobile navi */
.mobile-nav-icon {
  float: right;
  cursor: pointer;
  display: none;
}

.mobile-nav-icon i {
  font-size: 160%;
  color: white;
}

/*
.xxx

#cssmenu > ul > li > a {
    padding: 17px;
    font-size: 12px;
    letter-spacing: 1px;
    text-decoration: none;
    color: #dddddd;
    font-weight: 700;
    text-transform: uppercase;
*/    

/* -----------------------------------*/
/* Reusable */
/* -----------------------------------*/

.row {
  max-width: 1140px;
  margin: 0 auto;
}

section {
  margin-bottom: 4rem;
  padding: 0;
}

.divider {
  height: 50px;
  background-color: #0081c8;
}

/* -----------------------------------*/
/* Header */
/* -----------------------------------*/

header{
 /* background-image: linear-gradient(rgba(0,0,0,.7), rgba(0,0,0,.7));*/
 font-family: 'Alfa Slab One', cursive;      
}

.logo-title-container {
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center; 
  margin: .5rem 0;  
}

.logo {
  height: 7rem;
  margin-right: 1rem;
}

.site-title {
  color: #000;
  justify-self: start;
  width: 100%;
  font-size: 4rem;
  text-transform: uppercase;
}

h1, h2, h3{
  font-weight: 300;
  /*text-transform: uppercase;*/
}

h1 {
  margin-top: 0;
  margin-bottom: 20px;  
  color: #fff;
  font-size: 200%;
  word-spacing: 3px;
  letter-spacing: 1px;    
}

h2 {
  font-size: 150%;
  word-spacing: 2px;  
  /*text-align: center;*/
  margin-bottom: 20px;  
  letter-spacing: 1px;  
  font-weight: 400;  
}

h2:after {
/*
  content: "";
  display: block;
  height: 2px;
  background-color: #ff0000;
  width: 200px;
  margin: 0 auto;
  margin-top: 10px;
  */
}

h3 {
  margin: 0;
  font-size: 140%;  
  color: white;
  text-shadow: 2px 2px 4px #000000    
}

h4 {
  margin-bottom: .5rem;
  font-size: 120%;  
  font-weight: 400;
}

.section-hero {

}


.hero-text-box {
  max-width: 1140px;
  padding: 5rem;
  margin: 0 auto;
}


/* -----------------------------------*/
/* Section - Hero */
/* -----------------------------------*/
.section-hero {
  /*background-image: linear-gradient(rgba(255,255,255,.8), rgba(255,255,255,.8)),  url(img/martialArtsBg.jpg);*/
  /*background-image: linear-gradient(rgba(0,0,0,.6), rgba(0,0,0,.6)),  url(img/martialArtsBg.jpg);  */
  background-image: linear-gradient(rgba(0,0,0,.6), rgba(0,0,0,.6)),  url(img/world3.png);    
  background-size: cover;
  background-position: center;
/*
  -webkit-filter: blur(5px);
  -moz-filter: blur(5px);
  -o-filter: blur(5px);
  -ms-filter: blur(5px);
  filter: blur(5px);  
*/  
  /*background-attachment: fixed;  */
}

.hero-top-text {
  font-family: 'Montserrat', sans-serif;  
  text-align: center;
  letter-spacing: 3px;
  text-shadow: 4px 4px 6px #000000  

}

.announcements {
  border: 1px solid #333;
  background-color: #eeeeee;
  padding: 1rem;
  border-radius: 3px;
  /*box-shadow: 0 2px 6px red;  */
}

.announcements-list {
  list-style-position: inside;  
  margin-left: 1rem;
  margin-bottom: 1rem;  
}

/* -----------------------------------*/
/* section-main */
/* -----------------------------------*/
.section-main {

}

/* -----------------------------------*/
/* section-features */
/* -----------------------------------*/
.section-features {
  background-color: #f4f4f4;
  padding: 3rem 0;
  margin-bottom: 0;
}

.feature-box {
  border: 1px solid #333;
  padding: 1rem;
  background-color: #fff;
  border-radius: 5px;
}

.feature_icon_container {
  text-align: center;
  margin-bottom: 1rem;
}

.feature_icon {
  width: 6rem;
}

.more-button-container {
  margin-top: .5rem;
  padding: 1rem;
  text-align: right;
}

.more-btn {
  background-color: #333333;
  color: white;
  padding: .6rem 1rem;
  text-decoration: none;
  border-radius: 4px;
  box-shadow: 3px 3px 5px #999;  
  transition: background-color .2s;  
  font-size: 90%;
}

.more-btn:hover {
  background-color: #ff173d;
}


/* -----------------------------------*/
/* section-soke-note */
/* -----------------------------------*/
.section-soke-note {
  padding: 3rem 0;
}

.section-soke-img-container {
  text-align: center;
}

.section-soke-img {
  width: 30rem;
  box-shadow: 5px 5px 5px #999;
}

.section-soke-text-container p {
  margin-bottom: 2rem;
}


/* -----------------------------------*/
/* section-gallery */
/* -----------------------------------*/
.section-gallery {
  background-image: linear-gradient(rgba(0,0,0,.6), rgba(0,0,0,.6)),  url(img/martialArtsBg.jpg);    
  background-position: center;  
  padding: 3rem;
  margin-bottom: 0;  
}

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

.gallery-container img {
  width: 200px;
  border-radius: 3px;
  transition: transform .5s;  
}

.gallery-container img:hover {
  transform: scale(1.03);    
  /* transform: scale(1.15);  */
}

/* -----------------------------------*/
/* Footer */
/* -----------------------------------*/

footer {
  background-color: #333;
  padding: 20px;
  font-size: 80%;
}

.footer-nav {
  list-style: none;
  float: left;
}

.social-links {
  list-style: none;
  float: right;  
}

.footer-nav li,
.social-links li {
  display: inline-block;
  margin-right: 20px;
}

.footer-nav li:last-child,
.social-links li:last-child {
  margin-right: 0px;
}

.footer-nav li a:link,
.footer-nav li a:visited,
.social-links li a:link,
.social-links li a:visited {
  text-decoration: none;
  border: 0;
  color: #888;
  transition: color .2s;
}

.social-links li a:link,
.social-links li a:visited {
  font-size: 160%;
}

.ion-social-facebook,
.ion-social-twitter,
.ion-social-googleplus,
.ion-social-instagram {
  transition: color .2s;
}

.ion-social-facebook:hover {
   color: #3b5998; 
}

.ion-social-twitter:hover {
  color: #55acee;
}

.ion-social-googleplus:hover {
   color: #dd4b39;
}

.ion-social-instagram:hover {
  color: #458eff;
}


.footer-nav li a:hover,
.footer-nav li a:active {
  color: #ddd;
}

footer p {
  color: #888;
  text-align: center;
  font-size: 90%;
}


/* -----------------------------------*/
/* section-page-main */
/* -----------------------------------*/
.page-title-container {
  background-color: #dcdcdc;
  font-family: Montserrat, sans-serif;  
  font-weight: 500;
  text-transform: uppercase;
}

.page-title-row {
  padding: 10px 0; 
}

.page-title-inner {
  padding: 5px 0;
}

.section-page-main {
  min-height: 50vh;
  margin: 3rem 0;
}

.section-page {
  margin: 3rem 0;
}

.history-person {
  margin-bottom: 2rem;
}