/*************************** RESPONSIVE ***************************/



.row{
  position: relative;
  margin: 0 auto;
  width: 1300px;
  width: 1140px;
  width: 900px;
  
  height: auto;
}

 .content{
  position: relative;
  float: left;
  width: 100%;
 }


[class*="col-"] {
    float: left;
    border: 0px solid red;
    box-sizing: border-box;
}
.col-1 {width: 8.33%;}
.col-2 {width: 16.66%;}
.col-3 {width: 25%;}
.col-4 {width: 33.33%;}
.col-5 {width: 41.66%;}
.col-6 {width: 50%;}
.col-7 {width: 58.33%;}
.col-8 {width: 66.66%;}
.col-9 {width: 75%;}
.col-10 {width: 83.33%;}
.col-11 {width: 91.66%;}
.col-12 {width: 100%;}




/* Tablet styles */
@media screen and (min-width:501px) and (max-width:1099px) {

  #navigation{
    height: 50px;
    overflow: hidden;
  }

  .open_navigation{
    position: absolute;
    bottom: 0;
  }

  #navigation ul li{
    width: 50%;
    float: left;
    border-right: 1px solid #E4E4E4;
    border-bottom: 1px solid #E4E4E4;
  }
  #navigation a:last-child{
    border-bottom: 0px solid #E4E4E4;
  }

  .navigation_logo_wrapper{
    display: none;
  }

  .navi{
    display: none;
  }

}



/************************* iPhone ***********************/



/* iPhone styles */
@media only screen and (max-device-width: 480px) {



  .navigation_logo_wrapper{
    display: none;
  }
  
  .navi{
    display: none;
  }


  #navigation{
    height: 50px;
    overflow: hidden;
  }

  .open_navigation{
    position: absolute;
    bottom: 0;
  }

  #navigation ul li{
    width: 100%;
    float: none;
    border-bottom: 1px solid #E4E4E4;
  }
  #navigation a:last-child{
    border-bottom: 0px solid #E4E4E4;
  }

  #navigation ul{
    float: left;
    width: 100%;
    background: #fff;
  }

  .row{
    width: 95%;
  }

}