/*
Theme Name: Stage Digital
Author: Bogdan Bujor
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
*/

@font-face {
  font-family: Conthrax;
  src: url(conthrax-sb.ttf);
}

:root {
	--color-primary: #69825e;
	--color-black: #000;
	--color-gray-dark: #333;
	--color-gray: #666;
	--color-gray-light: #ebebeb;
	--color-gray-pale: #f6f6f6;
	--font-primary: "Roboto", sans-serif;
	--font-custom: "Conthrax", sans-serif;
	--font-secondary: "Roboto Condensed", sans-serif;
}

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	color: var(--color-gray);
	font-family: var(--font-primary);
	font-size: 20px;
	line-height: 1.5;
	text-align: justify;
}

:focus-visible {
    outline: none;
}

h1, h2, h3, h4, h5, h6 {
	color: var(--color-black);
	font-family: var(--font-custom);
	line-height: normal;
}

h1, .h2 {
	font-size: 40px;
}
h2, .h2 {
	font-size: 32px;
}
h3, .h3 {
	font-size: 28px;
}
h4, .h4 {
	font-size: 24px;
}
h5, .h5 {
	font-size: 20px;
}
h6, .h6 {
	font-size: 18px;
}
@media (max-width: 767px) {
	body {
		font-size: 14px;
	}
	h1, .h1 {
		font-size: 30px;
	}
	h2, .h2 {
		font-size: 24px;
	}
	h3, .h3 {
		font-size: 20px;
	}
	h4, .h4 {
		font-size: 16px;
	}
	h5, .h5 {
		font-size: 16px;
	}
	h6, .h6 {
		font-size: 16px;
	}
}

p,
ul {
	margin-top: 0;
	margin-bottom: 15px;
}
p:last-child,
ul:last-child {
	margin-bottom: 0;
}

a {
	color: inherit;
	text-decoration: none;
	transition: .2s;
}

img {
	max-width: 100%;
	height: auto;
	vertical-align: middle;
}

iframe {
	max-width: 100%;
}

.text-green {
	color: var(--color-primary);
}
.text-black {
	color: var(--color-black);
}
.text-gray-dark {
	color: var(--color-gray-dark);
}
.text-gray {
	color: var(--color-gray);
}
.text-white {
	color: #fff !important;
}

.bg-primary {
	background-color: var(--color-primary);
}
.bg-gray-dark {
	background-color: var(--color-gray-dark);
}
.bg-gray-light {
	background-color: var(--color-gray-light);
}
.bg-gray-pale {
	background-color: var(--color-gray-pale);
}
.bg-black {
	background-color: var(--color-black);
}

.text-left {
	text-align: left;
}
.text-right {
	text-align: right;
}
.text-center {
	text-align: center;
}

.uppercase {
	text-transform: uppercase;
}

.relative {
	position: relative;
}
.absolute {
	position: absolute;
}
.inset-0 {
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

.my-0 {
	margin-top: 0 !important;
	margin-bottom: 0 !important;
}
.mt-0 {
	margin-top: 0 !important;
}
.mb-0 {
	margin-bottom: 0 !important;
}
.my-30 {
	margin-top: 30px !important;
	margin-bottom: 30px !important;
}
.mt-30 {
	margin-top: 30px !important;
}
.mb-30 {
	margin-bottom: 30px !important;
}

.my-60 {
	margin-top: 60px !important;
	margin-bottom: 60px !important;
}
.mt-60 {
	margin-top: 60px !important;
}
.mb-60 {
	margin-bottom: 60px !important;
}

.p-30 {
	padding: 30px !important;
}
.py-30 {
	padding-top: 30px !important;
	padding-bottom: 30px !important;
}
.pt-30 {
	padding-top: 30px !important;
}
.pb-30 {
	padding-bottom: 30px !important;
}

.py-60 {
	padding-top: 60px !important;
	padding-bottom: 60px !important;
}
.pt-60 {
	padding-top: 60px !important;
}
.pb-60 {
	padding-bottom: 60px !important;
}

.font-primary {
	font-family: var(--font-primary);
}
.font-custom {
	font-family: var(--font-custom);
}
.font-secondary {
	font-family: var(--font-secondary);
}

.font-bold {
	font-weight: 700;
}
.font-semibold {
	font-weight: 600;
}
.font-medium {
	font-weight: 500;
}
.font-regular {
	font-weight: 400 !important;
}
.font-light {
	font-weight: 300;
}

.text-lg {
	font-size: 18px;
}
.text-xl {
	font-size: 20px;
}

@media (min-width: 768px) {
	.columns-2 {
		columns: 2;
	}
	.columns-3 {
		columns: 3;
	}
}

.container {
	max-width: 1200px;
	padding: 0 15px;
	margin: 0 auto;
}
.container-sm {
	max-width: 600px;
	padding: 0 15px;
	margin: 0 auto;
}
.mx-auto {
	margin-left: auto;
	margin-right: auto;
}

@media (max-width: 767px) {
	.hidden-phone {
		display: none !important;
	}
}
@media (min-width: 768px) {
	.hidden-desktop {
		display: none !important;
	}
}

.full-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.sd-button {
	display: inline-block;
	padding: 5px 15px;
	font-family: var(--font-secondary);
	font-size: 20px;
	font-weight: 700;
	line-height: 35px;
	background-color: var(--color-primary);
	color: #fff;
	border: 2px solid var(--color-primary);
	border-radius: 5px;
}
.sd-button.sd-white {
	background-color: #fff;
	color: var(--color-primary);
}
.sd-button.sd-transparent {
	background-color: transparent;
	color: #fff;
	border: 2px solid #fff;
}
.sd-button:hover {
	background-color: var(--color-gray-dark);
}
.sd-button.sd-white:hover {
	color: #fff;
}

.main-title {
	color: var(--color-black);
	font-family: var(--font-custom);
	font-size: 30px;
	font-weight: 700;
	line-height: normal;
	text-transform: uppercase;
}
@media (max-width: 767px) {
	.main-title {
		font-size: 18px;
	}
}

.title-underline:after {
	content: '';
	width: 50px;
	display: block;
	height: 2px;
	background-color: var(--color-primary);
	margin-top: 10px;
}
.title-underline.text-white:after {
	background-color: #fff;
}
.title-underline.text-center:after {
	margin-left: auto;
	margin-right: auto;
}

.separator {
	height: 1px;
	background-color: var(--color-gray-light);
}

.topbar {
	position: absolute;
	z-index: 1;
	top: 0;
	width: 100%;
	padding: 10px 0;
	background-color: var(--color-black);
	color: #fff;
	font-size: 16px;
}
.topbar-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.topbar-content,
.topbar-social {
	display: flex;
	grid-gap: 25px;
}
.topbar-content {
	font-size: 20px;
	font-weight: 700;
}

.header {
	z-index: 1;
	width: 100%;
	padding: 20px 0;
	background-color: #fff;
	margin-top: 50px;
}
.header-inner {
	display: flex;
	align-items: center;
}
.header-nav {
	margin-left: auto;
}
.header-button {
	margin-left: 15px;
}
.menu {
	position: relative;
	padding-left: 0;
	list-style: none;
	display: flex;
}
.menu > li {
	position: relative;
}
.menu a {
	display: block;
	padding: 5px 10px;
	font-family: var(--font-secondary);
	font-size: 20px;
	font-weight: 700;
	line-height: 35px;
	text-transform: uppercase;
	color: #ccc;
}
.menu > li > a {
	color: var(--color-black);
}
.menu > li.current-menu-item > a,
.menu > li.current-menu-parent > a,
.menu > li > a:hover {
	color: var(--color-primary);
}
.sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	visibility: hidden;
	opacity: 0;
	z-index: 999;
	list-style: none;
	padding: 0;
	background-color: #fff;
	box-shadow: 0 0 30px 0 rgba(0, 0, 0, .1);
	width: 330px;
	transition: .2s;
}
@media (min-width: 1025px) {
	.menu > li:hover .sub-menu {
		visibility: visible;
		opacity: 1;
	}
}
.sub-menu li {
	border-bottom: 1px solid var(--color-gray-dark);
}
.sub-menu li a {
	background-color: var(--color-black);
}
.sub-menu li a:hover {
	background-color: var(--color-primary);
	color: #fff;
}

.sticky .header {
	position: fixed;
	z-index: 9;
	top: 0;
	margin-top: 0;
	padding: 12px 0;
}
@media (max-width: 767px) {
	.header-logo img {
		width: 150px;
	}
}
.sticky .header-logo img {
	width: 150px;
}

@media (min-width: 768px) {
	.sticky {
		padding-top: 194px;
	}
}

.mobile-button {
	display: none;
	margin-left: auto;
	font-size: 30px;
	color: var(--color-primary);
}
.mobile-overlay {
	opacity: 0;
	visibility: hidden;
	position: fixed;
	background: rgba(0, 0, 0, 0.8);
	z-index: 9999;
	transition: all ease 0.3s;
}
.mobile-open .mobile-overlay {
	opacity: 1;
	visibility: visible;
}
.mobile-overlay .close {
	position: absolute;
	top: 30px;
	right: 18px;
	color: #fff;
	font-size: 30px;
	line-height: 1;
}
.mobile-menu {
	position: fixed;
	z-index: 9999;
	top: 0;
	left: -300px;
	width: 300px;
	max-width: 100%;
	height: 100%;
	padding-bottom: 50px;
	overflow-x: hidden;
	overflow-y: auto;
	background-color: #fff;
	color: #fff;
	transition: .2s;
}
.mobile-open .mobile-menu {
	left: 0;
}
.mobile-logo {
	position: relative;
	padding: 25px;
}
@media (max-width: 1024px) {
	.topbar {
		display: none;
	}

	.header {
		margin-top: 0;
	}
	.header-nav,
	.header-button {
		display: none;
	}

	.mobile-button {
		display: block;
	}

	.menu {
		display: block;
	}
	.menu > li {
		margin: 0;
		border-top: 1px solid rgba(0, 0, 0, 0.2);
	}
	.menu > li > a {
		position: relative;
		padding: 10px 25px;
	}
	.menu > li.menu-item-has-children > a:after {
		content: "\f105";
		font-family: "Font Awesome 5 Free";
		font-weight: 900;
		position: absolute;
		top: 10px;
		right: 20px;
	}
	.menu > li.menu-item-has-children.open > a:after {
		content: "\f107";
	}
	.sub-menu {
		position: static;
		visibility: visible;
		opacity: 1;
		width: 100%;
		padding: 0;
		background-color: transparent;
		box-shadow: none;
		max-height: 0;
		overflow: hidden;
		transition: .5s;
	}
	.sub-menu li {
		border-color: rgba(0, 0, 0, 0.2);
	}
	.sub-menu li:last-child {
		border-bottom: none;
	}
	.open .sub-menu {
		border-top: 1px solid rgba(0, 0, 0, 0.2);
		padding-left: 25px;
		max-height: 1000px;
	}
	.sub-menu li a {
		padding-top: 10px;
		padding-bottom: 10px;
		background-color: #fff;
		color: var(--color-black);
		font-size: 14px;
	}
	.sub-menu li a:hover {
		background-color: #fff;
		color: var(--color-black);
	}
}

.footer {
	padding: 60px 0;
	background-color: var(--color-black);
}
.footer-logo {
	text-align: center;
}

.bottombar {
	padding: 20px 0;
	background-color: #242424;
	color: #ccc;
}
.bottombar-inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
}
.bottombar p {
	margin-bottom: 0;
	font-size: 14px;
}
.bottombar ul {
	list-style: none;
	padding-left: 0;
	margin-bottom: 0;
	display: flex;
	grid-gap: 25px;
}
.bottombar a {
	color: #fff;
}
@media (max-width: 767px) {
	.bottombar {
		padding-bottom: 80px;
	}
	.bottombar-inner {
		display: block;
	}
	.bottombar p {
		font-size: 12px;
		margin-bottom: 20px;
		text-align: center;
	}
	.bottombar ul {
		justify-content: center;
	}
}

.page-header {
	position: relative;
	padding: 40px 0 20px;
	background-image: url(images/header.webp);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}
/*.page-header:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, .65);
}*/
.page-header h1 {
	color: #000;
	font-family: var(--font-custom);
	font-size: 32px;
	text-transform: uppercase;
	text-align: center;
	border-bottom: 1px solid rgba(255, 255, 255, .1);
	position: relative;
	padding-bottom: 20px;
}
.page-header h1:after {
	content: "";
	position: absolute;
	left: calc(50% - 50px);
	bottom: 0;
	width: 100px;
	height: 2px;
	background-color: var(--color-primary);
}
@media (max-width: 767px) {
	.page-header h1 {
		font-size: 24px;
	}
}

.ug-gallery-wrapper {
	margin-bottom: 40px !important;
}
@media (max-width: 1200px) {
	.ug-gallery-wrapper {
		height: 700px !important;
	}
}
@media (max-width: 767px) {
	.ug-gallery-wrapper {
		height: 400px !important;
	}
}
@media (max-width: 479px) {
	.ug-gallery-wrapper {
		height: 220px !important;
	}
}

.callnow {
	display: none;
}
.callnow a {
	position: fixed;
	z-index: 1;
	display: block;
	left: 0;
	bottom: 0;
	width: 100%;
	padding: 10px 0;
	background-color: var(--color-primary);
	color: #fff;
	font-size: 24px;
	text-align: center;
}
@media (max-width: 767px) {
	.callnow {
		display: block;
	}
}

.home-banner {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	position: relative;
	min-height: calc(100vh - 150px);
}
.banner-small-text {
	font-family: var(--font-custom);
	font-size: 16px;
	font-weight: 700;
	line-height: 22px;
	letter-spacing: 5px;
}
.banner-large-text {
	font-size: 50px;
	line-height: 1.25;
}
@media (max-width: 767px) {
	.home-banner {
		min-height: unset;
		padding-top: 100px;
		padding-bottom: 80px;
	}
	.banner-large-text {
		font-size: 21px;
	}
}

#home-cta h1 {
	margin-bottom: 10px;
}
@media (max-width: 767px) {
	#home-cta h1 {
		font-size: 16px;
	}
	#home-cta p {
		font-size: 16px;
	}
}

.home-service-wrap {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
}
.home-service-image {
	width: 50%;
}
.home-service-content {
	width: 50%;
	max-width: 600px;
	padding: 60px 15px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	grid-gap: 20px;
	padding-left: 60px;
}
@media (min-width: 768px) {
	.reverse .home-service-image {
		order: 1;
	}
}
.reverse .home-service-content {
	padding-left: 15px;
	padding-right: 60px;
	margin-left: auto;
}
@media (max-width: 1024px) {
	.home-service-content {
		padding: 40px 15px;
	}
	.reverse .home-service-content {
		padding-right: 15px;
	}
}
@media (max-width: 767px) {
	.home-service-image {
		width: 100%;
	}
	.home-service-content {
		width: 100%;
	}
}

.home-gallery-wrap {
	padding: 60px 0;
}
.home-gallery {
	margin-top: 40px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-gap: 30px;
}
.home-gallery-item {
	position: relative;
}
.home-gallery-image:after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: var(--color-black);
	opacity: 0;
	transition: .2s;
}
.home-gallery-item:hover .home-gallery-image:after {
	opacity: 0.6;
}
.home-gallery-title {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	opacity: 0;
}
.home-gallery-item:hover .home-gallery-title {
	opacity: 1;
}
.home-gallery-title a {
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 18px;
	font-weight: 700;
	text-transform: uppercase;
	width: 100%;
	height: 100%;
}
@media (max-width: 767px) {
	.home-gallery {
		grid-template-columns: repeat(1, 1fr);
	}
}

.home-profile-wrap {
	padding: 60px 0;
}
.home-profile {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	justify-content: center;
	margin: 30px 0 60px;
}
.home-profile-item {
	width: 16%;
	text-align: center;
}
@media (min-width: 768px) {
	.home-profile-item:not(:first-child) {
		border-left: 1px dashed var(--color-gray-dark);
	}
}
@media (max-width: 1024px) {
	.home-profile-item {
		width: 33.33%;
	}
}
@media (max-width: 767px) {
	.home-profile-item {
		width: 50%;
	}
}

.feature-wrap {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-column-gap: 60px;
	grid-row-gap: 60px;
}
.feature-item {
	line-height: normal;
	text-align: center;
}
.feature-heading {
	font-family: var(--font-secondary);
	font-size: 20px;
	font-weight: 700;
	text-transform: uppercase;
	margin-top: 15px;
	background-color: var(--color-primary);
	padding: 10px;
}
@media (max-width: 767px) {
	.feature-wrap {
		grid-template-columns: repeat(1, 1fr);
	}
}

.faq-wrap {
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	grid-gap: 30px;
}
.faq-item {
	position: relative;
}
.faq-question {
	background-color: #F6F8FC;
	padding: 20px 60px 20px 20px;
	margin-bottom: 0;
	font-weight: 700;
	text-align: left;
	cursor: pointer;
	position: relative;
}
.faq-question:after {
	content: "\f067";
	font-family: 'Font Awesome 5 Free';
	font-size: 24px;
	font-weight: 900;
	position: absolute;
	top: 50%;
	right: 20px;
	transform: translateY(-50%);
	color: var(--color-primary);
}
.active .faq-question:after {
	content: "\f068";
}
.faq-answer {
	position: absolute;
	z-index: 2;
	overflow: hidden;
	width: 100%;
	max-height: 0;
	padding-left: 20px;
	padding-right: 20px;
	background-color: #fff;
	transition: .2s;
}
.active .faq-answer {
	max-height: 500px;
	padding-top: 20px;
	padding-bottom: 20px;
	border: 1px solid #bdc3c7;
}
@media (max-width: 767px) {
	.faq-answer {
		position: static;
	}
}

.home-about-wrap {
	padding: 60px 0;
}

.owl-carousel .owl-item img {
	display: inline;
	width: auto;
}

.testimonial-wrap {
	padding: 60px 0;
}
.testimonial {
	padding: 0 20px;
}
.testimonial-inner {
	max-width: 840px;
	margin: 0 auto;
	background-color: #f6f6f6;
	padding: 30px;
	border-radius: 10px;
}
.testimonial .image {
	display: inline-block;
	width: 150px;
	height: 150px;
	border-radius: 150px;
	overflow: hidden;
	text-align: center;
	margin-bottom: 30px;
}
.testimonial .name {
	margin-top: 10px;
	color: #222;
	font-size: 20px;
	font-weight: 700;
}
.testimonials .owl-nav {
	font-size: 48px;
}
.testimonials.owl-carousel .owl-nav button.owl-next,
.testimonials.owl-carousel .owl-nav button.owl-prev {
	line-height: 1;
}

.main-content {
	padding: 40px 0;
}
.main-content h2 {
	text-align: left;
}
.main-content img {
	width: 100%;
}

.cta-bar {
	margin: 40px 0;
	text-align: center;
}
.cta-inner {
	border-top: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
	padding: 15px 0;
	font-size: 35px;
	font-weight: 700;
}
.cta-inner > * {
	vertical-align: middle;
}
.cta-inner img {
    width: 600px;
}
@media (max-width: 767px) {
	.cta-inner {
		font-size: 18px;
	}
	.cta-inner > span {
		display: block;
	}
	.cta-inner > a {
		margin-top: 10px;
	}
}

.black-overlay:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, .35);
}

.wpcf7 {
	font-size: 16px;
}
.wpcf7-form-control-wrap {
	display: block;
	width: 100%;
}
.wpcf7 input[type=text],
.wpcf7 input[type=email],
.wpcf7 input[type=tel],
.wpcf7 select,
.wpcf7 textarea {
	border-radius: 0;
	border: solid 1px #ddd;
    background: #fff;
    color: #333 !important;
	font-family: var(--font-primary);
	font-size: 18px;
	padding: 12px;
	width: 100%;
    margin-bottom: 15px;
}
.wpcf7 input[type=submit] {
	border: none;
	cursor: pointer;
	transition: .2s;
	text-transform: uppercase;
}
.wpcf7-spinner {
	position: absolute;
}

.contact-content {
	margin-top: 30px;
}
@media (min-width: 768px) {
	.contact-page-inner {
		display: flex;
	}
	.contact-form {
		width: 50%;
		padding-right: 40px;
	}
	.contact-content {
		margin-top: 0;
		width: 50%;
	}
}

.job-list {
	display: flex;
	justify-content: space-between;
	max-width: 480px;
	padding-bottom: 10px;
	margin-bottom: 10px;
	border-bottom: 1px solid #555;
}
.job-attach i {
	float: none;
}

.footer-quote-wrap {
	padding: 60px 0;
	background-color: var(--color-primary);
}
.footer-quote-inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
.footer-form-wrap {
	width: 50%;
	padding-right: 30px;
}
.footer-contact-wrap {
	width: 50%;
	padding-left: 30px;
}
.footer-form-inner {
	background-color: #fff;
	padding: 30px;
	border-radius: 10px;
}
@media (max-width: 767px) {
	.footer-form-wrap {
		width: 100%;
		padding-right: 0;
	}
	.footer-contact-wrap {
		margin-top: 30px;
		width: 100%;
		padding-left: 0;
	}
}

.info-box {
	display: flex;
	align-items: center;
	border-bottom: 1px solid #e7e7e7;
	padding-bottom: 20px;
	margin-bottom: 20px;
}
.info-box-icon-inner {
	width: 70px;
	height: 70px;
	background-color: #fff;
	color: var(--color-primary);
	border-radius: 40px;
	font-size: 32px;
	text-align: center;
	line-height: 70px;
}
.info-box-content {
	margin-left: 30px;
}
.info-box-heading {
	margin-bottom: 0;
	font-weight: 600;
}

.page-template-project-map .topbar {
	position: static;
	background-color: #666;
}
.page-template-project-map .header {
	position: static;
	background-color: #333;
}

.project-wrap {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-gap: 30px;
}
.project-image {
	position: relative;
	padding-top: 100%;
}
.project-image a {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}
.project-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.project-title {
	margin-top: 15px;
	padding: 0 15px;
	font-size: 18px;
	font-weight: 700;
	line-height: normal;
	text-align: center;
}

.grid-2 {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 30px;
}

@media (max-width: 767px) {
	.project-wrap,
	.grid-2 {
		grid-template-columns: repeat(1, 1fr);
	}
	.project-item {
		width: 100%;
		max-width: 400px;
		margin-left: auto;
		margin-right: auto;
	}
}

.review-wrap {
	padding: 20px;
	background-color: var(--color-gray-pale);
	margin-bottom: 20px;
}
.review-wrap img {
	width: auto;
}

.post-info {
	margin: 10px 0 10px 80px;
	padding-bottom: 10px;
	border-bottom: solid 1px #ddd;
	text-align: left;
}
.post-info a {
	color: var(--color-primary);
}
@media (max-width: 767px) {
	.post-info {
		margin-left: 0;
	}
}

.project-tab a {
	display: inline-block;
	padding: 5px 10px;
	border-radius: 5px;
}
.project-tab a.active {
	background-color: var(--color-primary);
	color: #fff;
	font-weight: 700;
}