@charset "UTF-8";
/**
 * Stylesheet for curriculum on page.blade.php template
 * 
 */

h2 {
	position: relative;
	color: var(--dark-color);
	margin-left: 25px;
}
h2:before {
	display: inline-block;
	position: absolute;
	content: '';
	background-image: url(img/harb2.svg);
	background-repeat: no-repeat;
	background-size: contain;
	width: 40px;
	height: 40px;
	left: -26px;
}
@media screen and (min-width: 768px) {
	h2 {
		margin-left: 10px;
	}
}

h3 {
	color: var(--dark-color);
	margin-top: 2em;
}
ul, ol {
	margin-left: 2em;
	margin-bottom: 1.5em;
}
ul li {
	list-style-type: disc;
}
ol li {
	list-style-type: decimal;
}

#method h3 {
	margin-top: 0;
}
#method .item {
	padding: 1em 1em 2em 1em;
}
#method .item .item_img {
	width: 60%;
	margin-bottom: 1em;
}

#method .item ul {
	margin-left: 1em;
	margin-bottom: 1.5em;
}
#method .item ul li {
	list-style-type: none;
	padding-left: 1.5em;
	text-indent: -1.5em;
}

#method .item ul li:before {
	content: "✓" !important;
	font-weight: normal !important;
	margin-right: 0.5em;
}
@media screen and (max-width: 767px) {
	#method .item {
		width: 100%;
	}
	#method .item:nth-child(2),
	#method .item:nth-child(4) {
		background-color: var(--background-color);
	}
}
@media screen and (min-width: 768px) {
	#method .item {
		width: 50%;
		margin-bottom: 0;
	}
	#method .item:nth-child(2),
	#method .item:nth-child(3) {
		background-color: var(--background-color);
	}

	#method .item .item_img {
		width: 60%;
		margin-bottom: 2em;
	}

}

#school table {
	width: 100%;
	margin-top: 2em;
}
#school tr {
	border-bottom: 2px dotted #ddd;
}
#school td {
	padding: 7px;
}
#school td p {
	margin-bottom: 0;
}
#school td:first-of-type {
	width: 28%;
	font-weight: bold;
	color: var(--main-color);
}
#school td:first-of-type p {
	text-align: right;
	padding-right: 1em;
}
@media screen and (min-width: 768px) {
	#school table {
		margin-top: 3em;
	}
	#school td:first-of-type {
		width: 20%;
	}

}
