.table {
	display: flex;
	flex-direction: column;
	row-gap: 60px;
}

	.table_item {
		display: flex;
		flex-direction: column;
		row-gap: 30px;
	}
	
	@media screen and (min-width : 992px) {
		.table_item { flex-direction: row; column-gap: 60px; align-items: flex-start; }
	}
	
		.table_img {
			width: 100%;
		}
	
		@media screen and (min-width : 992px) {
			.table_img { width: 300px; }
		}
		
		.table_title {
			font-weight: 600;
			letter-spacing: 2px;
			font-size: 18px;
			text-transform: uppercase;
			margin-bottom: 30px;
		}
		
#btts_card {
	display: flex;
	flex-direction: column;
	row-gap: 30px;
	margin-top: 30px;
}
	
@media screen and (min-width : 992px) {
	#btts_card { flex-direction: row; column-gap: 30px; }
}

	#btts_card div {
		border-radius: 8px;
		width: 230px;
		height: 50px;
		line-height: 50px;
		text-align: center;
		font-size: 15px;
		letter-spacing: 2px;
		font-weight: 600;
		text-transform: uppercase;
		background: linear-gradient(black, black) padding-box, linear-gradient(to right, #FFE616, #EE7707) border-box;
      border: 1px solid transparent;
      transition: box-shadow 0.3s linear;
		-webkit-transition: box-shadow 0.3s linear;
		-moz-transition: box-shadow 0.3s linear;
	}
	
		#card_btts div:hover {
			-webkit-box-shadow: 0px 0px 20px 0px rgba(255,255,255,0.3);
			-moz-box-shadow: 0px 0px 20px 0px rgba(255,255,255,0.3);
			-o-box-shadow: 0px 0px 20px 0px rgba(255,255,255,0.3);
			box-shadow: 0px 0px 20px 0px rgba(255,255,255,0.3);
		}