@import "includes/navigation.css";  
@import "includes/scrollbar.css";
@import "includes/animation.css";
/************************** Basics *****************/
*{
    padding: 0;
    margin: 0;
    color: #fff;
    font-family: 'Raleway', sans-serif;
    box-sizing: border-box;
}
body{
    background-color: #000;
    overflow: hidden;
}
/************************** page container box *****************/
body{ background-image: url('../src/images/pattern.png');
  background-repeat: repeat;}
.page{
    width:96%;
    left: 2%;
    color: #fff;
    height:85vh;
    position: fixed;
    overflow: auto;
}
.home{
    height: 100%;
}
.home .layer{
    position: relative;
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    /*background-color: rgba(0, 0, 0,.85);*/
    animation: fadein 2s;
    -moz-animation: fadein 2s; /* Firefox */
    -webkit-animation: fadein 2s; /* Safari and Chrome */
    -o-animation: fadein 2s; /* Opera */
}
.contaier{
    width: 95%;
    margin: auto;
}

.intro{
    float: left;
    width: 40%;
    display: inline-block;
   /* background-color: #000;*/
    padding: 20px;
    text-align: center;
}
.intro h2{
  font-size: 50px;
  margin-bottom: 25px;
  color: #8a6343;
  text-align: left;
  padding:0 10px;
}
.color{
  margin-right: 3%;
  border:1px solid #8a6343;
  padding: 2%;
  background-color: #8a6343;
}
.intro p{
  padding: 10px;
  line-height: 1.8;
  font-size: 24px;
  text-align: left;
  margin-bottom: 10%;
}
.intro img{
    width:65%;
} 
.badges{
    float: left;
    width: 60%;
    display: inline-block;
    padding: 10px 20px;
    overflow: auto;
    margin-top: 30px;
}
.clear-both{clear: both;}
.badges .badge-item{
    float: left;
    width: 44%;
    display: inline-block;
    padding: 10px 5%;
    margin: 1% 3%;
    border: 1px solid #8a6343;
    /*border-radius: 10px;*/
    position: relative;
}
.badges .badge-item .overlay{
  position: absolute;
  background-color:rgba(9, 9, 9, 0.5);
  top:0;left:0;right: 0; bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.badges .badge-item .overlay p{font-size: 60px; }
.badges .badge-item .overlay h2{color: #ddd;}
.badges .badge-item img{
  width: 90%;
  height: 200px;

}
.badges .badge-item .number{
  position: absolute;
  top:-5%;
  left: -8%;
  width:12%;
  height: 18%;
  text-align: center;
  font-weight: bold;
  font-size: 30px;
  border: 1px solid #8a6343; 
  background-color: #8a6343;
}
.hidden{
  display: none;
}
.visible{
  display: block;
}








