.table-wrap .table {
	display: flex;
	flex-direction: column;
	border: 1px solid #ccc;
	font-family: 'Jost';
	font-size: 19px;
  }
  
  .table-wrap .row {
	display: flex;
  }

  .table-wrap .row .cell:first-child, .table-wrap .header .cell:first-child{
	padding-left:40px;
  }

  .table-wrap .row .cell:first-child{
	font-weight: 500;
	flex: 3;
  }
  
  .table-wrap .cell {
	flex: 4;
	padding: 40px 20px;
	border-bottom: 1px solid #ccc;
  }
  
  .table-wrap .cell:last-child {
	border-right: none;
  }
  
  .table-wrap .header {
	background: #f5f7f3;
  }

  .table-wrap .header .cell{
	font-weight: 500;
	font-size: 20px;
  }

  .table-wrap h6{
	font-size: 40px;
	font-family: 'Fraunces', serif;
	letter-spacing: -1px;
	color: #;
  }

  .table-wrap .row:first-child .cell{
	padding: 20px 0;
	padding-left: 40px;
  }

  .tutorial-img{
	position: absolute;
	top: 15px;
	right: 30px;
	width: 50px;
	object-fit: cover;
	display: none;
	opacity: 0;
  }

  .tutorial-img.active{
	animation: tutorial-img-animation 3s ease-in-out;
	-webkit-animation: tutorial-img-animation 3s ease-in-out;
}

  @keyframes tutorial-img-animation{
	0%{
		opacity: 0;
}
	90%{
		opacity: 1;
	}

	100%{
		opacity: 0;
	}
  }

  @media (max-width: 768px) {
	.table-wrap {
		overflow-x: auto;
	}

	.table-wrap .table {
		min-width: 1000px;
	}

	.table-wrap h6{
		font-size: 18px;
	  }

	  .table-wrap  .row .cell{
		font-size: 16px;
	padding: 20px 0;
	  }

	  .tutorial-img{
		display: block;
	  }
	
  }