/* = Grid Starts here */
/*calculate the width of Columns */
.col-1 {
  width: calc(8.3333333333%*1);
}

.col-2 {
  width: calc(8.3333333333%*2);
}

.col-3 {
  width: calc(8.3333333333%*3);
}

.col-4 {
  width: calc(8.3333333333%*4);
}

.col-5 {
  width: calc(8.3333333333%*5);
}

.col-6 {
  width: calc(8.3333333333%*6);
}

.col-7 {
  width: calc(8.3333333333%*7);
}

.col-8 {
  width: calc(8.3333333333%*8);
}

.col-9 {
  width: calc(8.3333333333%*9);
}

.col-10 {
  width: calc(8.3333333333%*10);
}

.col-11 {
  width: calc(8.3333333333%*11);
}

.col-12 {
  width: calc(8.3333333333%*12);
}

body {

  display: block;

  margin: 0 auto;
  line-height: 1.45;
}
.container {
	width:80vw;
	margin: 0 auto;
	height:100vh;
}

.space {	
padding-top: 50vh;	
}

.smalltxt {
	font-size:12px;
}

img {
  width: 100%;
  height: auto;
}

#block1 {
    float: left;
    margin-right: 20px;
}

#block2 {
    float: left;
    margin-right: 20px;
}


.row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
}
.row [class*=col-] {
  box-sizing: border-box;
  margin: 0 0;
  padding: 20px;
}

/* Grid Ends */
/* = below code is only for the demo purpose */



h1, h2, h3, h4 {
  margin-top: 0;
}

h1 {
  color: black;
  font-size: 1.5em;
}

h2 {
  font-size: 1em;

}

h4 {
  font-size: 1.25rem;
}

h3 {
  font-size: 1.563rem;

}





/* = Grid ends here */
/* = UI Components */
/*Forms */



@media only screen and (max-width : 900px) {
  main [class*=col-] {
    border: solid 1px #edebe6;
  }

  

  .row {
    flex-direction: column;
  }
  .row [class*=col] {
    flex: 1;
    width: 100%;
  }
  .row[class*=border] {
  
  }
}
@media only screen and (min-width : 901px) and (max-width: 1024px) {
  body {
    width: 900px;
  }
}
@media only screen and (min-width : 1025px) and (max-width: 1280px) {
  body {
    width: 100%;
  }
}


.grid-preview {
  padding: 1em 0;

}
.grid-preview [class*=col] {

  font-size: 80%;

}