/*-----------------------------------------------------------------------------------

 Statistic (section)

 # statistic container
 # background image
 # left side background image (50 % width)
 # right side background image (50 % width)
 # h2 heading
 # paragraph
 # section align center (class)
 # mission (class)
 # number (class) [container h3, p, font icon, image]
 # number inline block (class)

-----------------------------------------------------------------------------------*/
/* Statistic container */
.site-statistic {
    float:left;
    width: 100%;
    text-align: center;
    position:relative;
  }
  
  .site-statistic-main {
      float:left;
      width:100%;
      padding:50px 0;
  }
  
  
  .site-statistic h2 {
    /* H2 heading */
    color: white;
    font-family: inherit;
    font-size: 40px;
    line-height: 66px;
    text-transform: uppercase;
    font-weight: 400;
    margin-bottom: 10px;
    margin-top: 0.625rem;
  }
  
  .site-statistic h2 strong {
    font-weight: 700;
  }
  
  
  
  .site-statistic .section-align-center {
    /* Align center class */
    max-width: 600px;
  }
  
  /* Mission box wrapper */
  .site-mission {
    margin: 0 auto;
    padding: 20px;
    width: 100%;
    max-width: 550px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    height: 332px;
    display: table-cell;
    vertical-align: middle;
  }
  
  @media screen and (max-width: 1199px) {
    .site-mission {
      height: auto;
      display: block;
      margin-bottom: 30px;
      max-width: 575px;
    }
  }
  
  @media screen and (max-width: 767px) {
    .site-mission {
      max-width: 100%;
    }
    
    .site-statistic-main {
        padding:0;
    }
  }
  
  /* Numbers section */
  .site-number {
    width:100%;
    margin-right: 2%;
    margin-left: 2%;
    position: relative;
    padding: 0 10px;
    margin-bottom: 30px;
    display: block;
    text-align: center;
    white-space: nowrap;
    float: left;
  }
  
  @media screen and (max-width: 767px) {
    .site-number {
      width: 100%;
      margin-right: 0;
      margin-left: 0;
      white-space: normal;
    }
  }
  
  .site-number h3 {
    /* h3 heading */
    float:left;
    width:100%;
    text-align:center;
    color: #deb150;
    font-family: inherit;
    font-size:70px;
    font-weight: normal;
    line-height:1;;
    padding: 0;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
  
  }
  
  .site-number p {
    /* paragraph */
    float:left;
    width:100%;
    text-align:center;
    color: white;
    font-size: 21px;
    font-weight: 700;
    line-height:1.5;
    text-transform: uppercase;
    margin: 0;
    padding:35px 0 0 0;
    font-family: 'Montserrat', sans-serif;
  
  }
  
  .site-number i.fa {
    /* font awesome icon */
    color: #FFFFFF;
    font-size:40px;
    font-weight: normal;
    line-height: 1.5;
    text-transform: uppercase;
  }
  
  .site-number figure {
    /* image */
    float:left;
    width: 100%;
    text-align:center;
    line-height:1.5;
    margin: auto 0;
    font-family: 'Montserrat', sans-serif;
    color:#FFFFFF;
    padding-bottom:25px;
  }
  
  /* Number section inline block */
  .site-number-inline {
      float:left;
    width: 100%;
  
  }
  
  /* Stats section element ****/
  .stats-element-1 {
      position:absolute;
      z-index:-1;
      left:70px;
      top:70px;
  }
  
  .stats-element-2 {
      position:absolute;
      z-index:-1;
      right:100px;
      top:20px;
  }
  
  .stats-element-3 {
      position:absolute;
      z-index:-1;
      right:0px;
      bottom:20px;
  }
  
  @media screen and (max-width: 991px) {
      .site-number-inline{
          margin-bottom:30px;
      }
      
      .site-number figure {
          padding-bottom:10px;
      }
      
      .site-number p {
          padding:10px 0 0 0;
      }
  }
  
  /* Stats section element RESPONSIVE Alignment ****/
  @media screen and (max-width:1800px) {
  
  }
  
  @media screen and (max-width:1500px) {
  
  
  }
  
  @media screen and (max-width:1199px) {
      .stats-element-1 {
      left:00px;
  }
  
      .stats-element-2 {
      right:0px;
  }
      
  }
  
  
  @media screen and (max-width: 991px) {
      .stats-element-1, .stats-element-2, .stats-element-3{
          display:none;
      }
  }