.section-title {
	margin-bottom: 40px;
	position: relative;
	border-bottom: 1px solid transparentize($black, 0.85);

	&:after {
		content: "";
		background: transparentize($black, 0.85);;
		width: 100%;
		height: 1px;
		position: absolute;
		left: 0;
		bottom: -3px;
	}
	
	@include media-query(767px) {
		margin-bottom: 40px;
	}

	> span {
		font-size: 14px;
		color: #616161;
		text-transform: uppercase;
		display: block;
		margin-top: -0.3em;
	}

	h2 {
		font-size: 48px;
		font-weight: 600;
		margin: 0;
		padding-bottom: 0.25em;
		position: relative;
		text-transform: uppercase;

		@include media-query(1199px) {
			font-size: 42px;
		}

		@include media-query(767px) {
			font-size: 32px;
			padding-bottom: 0.3em;
		}

		@include media-query(330px) {
			font-size: 30px;
		}
	}

	.theme-btn {
		position: absolute;
		right: 0;
		bottom: 25px;

		@include media-query(767px) {
			position: static;
			margin-bottom: 15px;
		}
	}
}