@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&family=Space+Grotesk:wght@500;700&display=swap');

:root {
	--bg: #f3efe7;
	--bg-soft: #fbf8f2;
	--surface: rgba(255, 250, 243, 0.82);
	--surface-strong: rgba(255, 250, 243, 0.94);
	--surface-dark: #10151b;
	--text: #18212b;
	--muted: #5f6b77;
	--line: rgba(24, 33, 43, 0.1);
	--line-strong: rgba(24, 33, 43, 0.18);
	--accent: #d86a31;
	--accent-strong: #b94e1e;
	--accent-soft: rgba(216, 106, 49, 0.14);
	--shadow-lg: 0 28px 80px rgba(20, 24, 30, 0.16);
	--shadow-md: 0 18px 44px rgba(20, 24, 30, 0.1);
	--shadow-sm: 0 10px 24px rgba(20, 24, 30, 0.08);
	--radius-xl: 36px;
	--radius-lg: 24px;
	--radius-md: 18px;
	--radius-sm: 12px;
	--container-pad: 24px;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font: 400 16px/1.75 'DM Sans', sans-serif;
	color: var(--text);
	background:
		radial-gradient(circle at top left, rgba(216, 106, 49, 0.12), transparent 28%),
		radial-gradient(circle at top right, rgba(32, 102, 120, 0.16), transparent 26%),
		linear-gradient(180deg, #f6f1e9 0%, #f3efe7 42%, #f9f7f2 100%);
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

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

a {
	color: var(--accent);
	transition: color 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

a:hover,
a:focus {
	color: var(--accent-strong);
	text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Space Grotesk', sans-serif;
	font-weight: 700;
	letter-spacing: -0.03em;
	margin: 0 0 14px;
	color: var(--text);
}

h1 {
	font-size: clamp(3.6rem, 7vw, 7.2rem);
	line-height: 0.96;
}

h2 {
	font-size: clamp(2.3rem, 4vw, 4rem);
	line-height: 1.02;
}

h3 {
	font-size: 1.55rem;
	line-height: 1.2;
}

h4 {
	font-size: 1.2rem;
	line-height: 1.35;
}

h5,
h6 {
	font-size: 0.95rem;
	line-height: 1.35;
}

p {
	margin: 0 0 18px;
	color: var(--muted);
}

.btn,
.form-control,
.navbar,
.portfolio-item-description,
.mouse-icon,
.widget-social li a,
.profile-item,
.service,
.stat,
.resume-item,
.resume-place,
.icon-list > li {
	transition: all 0.28s ease;
}

.btn,
.panel,
.progress,
.form-control,
.modal-content,
.form-control:hover,
.form-control:focus {
	box-shadow: none;
}

.btn,
.label,
.alert,
.avatar,
.progress,
.form-control,
.modal-content,
.panel-group .panel,
.widget-social li a {
	border-radius: var(--radius-sm);
}

.wrapper {
	overflow: hidden;
}

.container {
	position: relative;
	z-index: 2;
}

.section,
.callout {
	position: relative;
	padding: 112px 0;
}

.section::before,
.callout::before {
	content: '';
	position: absolute;
	inset: 28px;
	border-radius: var(--radius-xl);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.18));
	pointer-events: none;
	opacity: 0.65;
}

.callout {
	background: transparent;
}

.headline {
	margin: 0 0 56px;
	text-align: center;
}

.headline p {
	max-width: 760px;
	margin: 0 auto;
	font-size: 1.05rem;
	font-weight: 500;
	color: var(--muted);
}

.headline h2 {
	margin-bottom: 14px;
}

.nomargin {
	margin: 0 !important;
}

.long-down {
	margin-bottom: 40px;
}

.rotate {
	text-shadow: none !important;
}

.icon-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 16px;
}

.icon-list > li {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 18px 20px;
	border: 1px solid var(--line);
	border-radius: var(--radius-md);
	background: var(--surface);
	box-shadow: var(--shadow-sm);
	backdrop-filter: blur(16px);
}

.icon-list > li > i {
	width: 22px;
	font-size: 1.1rem;
	color: var(--accent);
	text-align: center;
}

.icon-before {
	margin-right: 8px;
}

.icon-after {
	margin-left: 8px;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-family: 'Space Grotesk', sans-serif;
	font-size: 0.95rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	padding: 15px 24px;
	border: 0;
	border-radius: 999px;
	text-transform: none;
}

.btn:hover,
.btn:focus,
.btn:active,
.btn.active {
	outline: none !important;
	transform: translateY(-1px);
}

.btn-default {
	background: rgba(255, 255, 255, 0.75);
	color: var(--text);
}

.btn-custom-1,
.btn-custom-2 {
	border: 1px solid transparent;
}

.btn-custom-1 {
	background: linear-gradient(135deg, var(--accent) 0%, #ea9256 100%);
	color: #fff;
	box-shadow: 0 18px 36px rgba(216, 106, 49, 0.24);
}

.btn-custom-1:hover,
.btn-custom-1:focus,
.btn-custom-1:active,
.btn-custom-1.active {
	background: linear-gradient(135deg, var(--accent-strong) 0%, var(--accent) 100%);
	color: #fff;
}

.btn-custom-2 {
	background: rgba(255, 255, 255, 0.72);
	color: var(--text);
	border-color: rgba(24, 33, 43, 0.12);
	box-shadow: var(--shadow-sm);
}

.btn-custom-2:hover,
.btn-custom-2:focus,
.btn-custom-2:active,
.btn-custom-2.active {
	background: var(--text);
	border-color: var(--text);
	color: #fff;
}

.callout-btn {
	margin-top: 18px;
}

.form-control {
	height: 58px;
	padding: 16px 18px;
	font-size: 1rem;
	color: var(--text);
	background: rgba(255, 255, 255, 0.84);
	border: 1px solid rgba(255, 255, 255, 0.34);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.form-control:focus {
	border-color: rgba(216, 106, 49, 0.36);
	box-shadow: 0 0 0 4px rgba(216, 106, 49, 0.12);
	background: rgba(255, 255, 255, 0.96);
}

textarea.form-control {
	height: auto;
	min-height: 180px;
	resize: vertical;
}

.skill-bar {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 6px;
	width: 100%;
	margin: 12px 0 20px;
}

.skill-rate-on,
.skill-rate-off {
	display: block;
	height: 8px;
	border: 0;
	border-radius: 999px;
}

.skill-rate-on {
	background: linear-gradient(90deg, var(--accent) 0%, #f0a66b 100%);
}

.skill-rate-off {
	background: rgba(24, 33, 43, 0.1);
}

.progress {
	background: #e5e5e5;
	margin-top: 10px;
	margin-bottom: 20px;
}

.progress-bar {
	background: #353535;
}

.navbar {
	background: transparent;
	border-radius: 0;
	border: 0;
	padding: 20px 0;
	text-transform: uppercase;
}

.navbar .container {
	background: rgba(15, 21, 27, 0.16);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 999px;
	padding: 12px var(--container-pad);
	backdrop-filter: blur(16px);
	box-shadow: 0 14px 30px rgba(0, 0, 0, 0.16);
}

.navbar-custom .navbar-brand {
	font: 700 1rem/1.2 'Space Grotesk', sans-serif;
	letter-spacing: 0.16em;
	color: #fff;
}

.navbar-custom .navbar-nav > li > a,
.navbar-custom .navbar-nav .dropdown-menu > li > a {
	position: relative;
	padding: 10px 14px;
	color: rgba(255, 255, 255, 0.84);
	font-size: 0.74rem;
	font-weight: 700;
	letter-spacing: 0.14em;
}

.navbar-custom .navbar-nav > li > a::after {
	content: '';
	position: absolute;
	left: 14px;
	right: 14px;
	bottom: 5px;
	height: 2px;
	border-radius: 999px;
	background: var(--accent);
	transform: scaleX(0);
	transform-origin: center;
	transition: transform 0.25s ease;
}

.navbar-custom .navbar-nav > li > a:hover::after,
.navbar-custom .navbar-nav > li.active > a::after {
	transform: scaleX(1);
}

.navbar-custom .nav li a:hover,
.navbar-custom .nav li a:focus,
.navbar-custom .nav li.active > a {
	background: none;
	outline: 0;
	color: var(--accent);
}

.navbar-custom .navbar-nav > li.active {
	border-bottom: 0;
}

.navbar-custom .navbar-nav > li img {
	width: 18px;
	height: 18px;
	border-radius: 50%;
	box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.24);
}

.navbar-custom .navbar-toggle {
	margin-right: 0;
	border: 0;
}

.navbar-custom .navbar-toggle .icon-bar {
	background: #fff;
	height: 2px;
	width: 22px;
}

.navbar-color,
.custom-collapse {
	padding: 12px 0;
}

.navbar-color .container,
.custom-collapse .container {
	background: rgba(251, 248, 242, 0.88);
	border-color: rgba(24, 33, 43, 0.08);
	box-shadow: 0 18px 40px rgba(20, 24, 30, 0.08);
}

.navbar-color .navbar-brand,
.custom-collapse .navbar-brand,
.navbar-color .navbar-nav > li > a,
.navbar-color .navbar-nav .dropdown-menu > li > a,
.custom-collapse .navbar-nav > li > a,
.custom-collapse .navbar-nav .dropdown-menu > li > a {
	color: var(--text);
}

.navbar-color .nav li a:hover,
.navbar-color .nav li a:focus,
.navbar-color .nav li.active > a,
.custom-collapse .nav li a:hover,
.custom-collapse .nav li a:focus,
.custom-collapse .nav li.active > a {
	color: var(--accent);
}

.navbar-color .navbar-toggle .icon-bar,
.custom-collapse .navbar-toggle .icon-bar {
	background: var(--text);
}

#intro {
	min-height: 100vh;
	padding: 190px 0 120px;
	display: flex;
	align-items: center;
	text-align: center;
	color: #fff;
}

#intro::before {
	content: '';
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(8, 12, 20, 0.28) 0%, rgba(8, 12, 20, 0.4) 55%, rgba(8, 12, 20, 0.72) 100%),
		radial-gradient(circle at top center, rgba(216, 106, 49, 0.24), transparent 28%);
	z-index: 1;
}

#intro::after {
	content: '';
	position: absolute;
	left: 50%;
	bottom: 46px;
	width: min(88vw, 980px);
	height: 180px;
	transform: translateX(-50%);
	background: radial-gradient(circle, rgba(216, 106, 49, 0.28) 0%, rgba(216, 106, 49, 0.04) 48%, transparent 72%);
	filter: blur(20px);
	z-index: 1;
}

#intro .container {
	z-index: 2;
}

#intro h1,
#intro h2,
#intro h3,
#intro h4,
#intro h5,
#intro h6 {
	color: #fff;
}

.hello {
	max-width: 900px;
	margin: 0 auto 90px;
	padding: 48px 42px;
	border-radius: calc(var(--radius-xl) + 8px);
	background: linear-gradient(180deg, rgba(11, 17, 24, 0.4), rgba(11, 17, 24, 0.2));
	border: 1px solid rgba(255, 255, 255, 0.14);
	box-shadow: 0 28px 80px rgba(0, 0, 0, 0.26);
	backdrop-filter: blur(10px);
}

.hello h1 {
	margin-bottom: 16px;
}

.hello h3 {
	margin: 0;
	font-family: 'DM Sans', sans-serif;
	font-size: clamp(1.2rem, 2vw, 1.5rem);
	font-weight: 500;
	letter-spacing: 0.04em;
	text-transform: none;
	color: rgba(255, 255, 255, 0.8);
}

.mouse-icon-link {
	display: inline-flex;
}

.mouse-icon {
	position: relative;
	width: 34px;
	height: 56px;
	display: block;
	margin: 0 auto;
	border: 1px solid rgba(255, 255, 255, 0.5);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(6px);
	z-index: 10;
}

.mouse-icon .wheel {
	position: absolute;
	top: 10px;
	left: 50%;
	width: 4px;
	height: 10px;
	margin-left: -2px;
	border-radius: 999px;
	background: #fff;
	animation: drop 1.4s linear infinite;
}

@keyframes drop {
	0% {
		top: 10px;
		opacity: 0;
	}
	30% {
		top: 16px;
		opacity: 1;
	}
	100% {
		top: 31px;
		opacity: 0;
	}
}

#profile .row {
	align-items: start;
}

.avatar {
	width: 100%;
	border-radius: 30px;
	box-shadow: var(--shadow-lg);
	border: 8px solid rgba(255, 255, 255, 0.7);
}

.profile-widget,
.resume-item,
.resume-place,
.service,
.stat,
#contact .form-group,
.icon-list > li,
.headline,
.hello {
	animation: sectionReveal 0.7s ease both;
}

@keyframes sectionReveal {
	from {
		transform: translateY(14px);
		opacity: 0;
	}
	to {
		transform: translateY(0);
		opacity: 1;
	}
}

.profile-widget {
	padding: 28px 24px;
	margin-bottom: 24px;
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	background: var(--surface);
	box-shadow: var(--shadow-sm);
	backdrop-filter: blur(16px);
}

.profile-widget h3,
#profile-bio-title {
	font-size: 1.15rem;
	margin-bottom: 18px;
	text-transform: none;
}

#profile-bio {
	font-size: 1.04rem;
}

.widget-social {
	padding: 0;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.widget-social li {
	display: inline-block;
}

.widget-social li a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	border-radius: 16px;
	background: #17202a;
	color: #fff;
	box-shadow: 0 14px 24px rgba(23, 32, 42, 0.2);
}

.widget-social li a:hover {
	background: var(--accent);
	transform: translateY(-2px);
}

#stats {
	color: var(--text);
}

#stats .stat {
	height: 100%;
	padding: 28px 22px;
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	background: var(--surface-strong);
	box-shadow: var(--shadow-sm);
	text-align: left;
}

.stat .stat-icon {
	margin-bottom: 12px;
	font-size: 1.3rem;
	color: var(--accent);
}

.stat .stat-icon h2 {
	display: flex;
	align-items: center;
	gap: 12px;
	margin: 0;
	font-size: clamp(2rem, 5vw, 3rem);
}

.stat .stat-icon i {
	margin-right: 0;
	font-size: 1.2rem;
}

.stat h3 {
	margin: 0;
	font-size: 0.95rem;
	font-family: 'DM Sans', sans-serif;
	font-weight: 700;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	color: var(--muted);
}

#services-items {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
	align-items: start;
}

.service {
	height: 100%;
	padding: 28px 24px;
	margin: 0;
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 248, 238, 0.92));
	box-shadow: var(--shadow-sm);
}

.service:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-md);
}

.service .icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 58px;
	height: 58px;
	margin: 0 0 18px;
	border-radius: 20px;
	background: var(--accent-soft);
	font-size: 1.4rem;
	color: var(--accent);
}

.service .text p {
	margin-bottom: 0;
}

.callout .col-md-9.headline {
	text-align: left;
	max-width: none;
	padding: 30px 34px;
	border: 1px solid var(--line);
	border-radius: var(--radius-xl);
	background:
		linear-gradient(135deg, rgba(216, 106, 49, 0.1), rgba(28, 46, 68, 0.04)),
		var(--surface-strong);
	box-shadow: var(--shadow-md);
}

.callout .col-md-9.headline p {
	margin: 0;
	max-width: none;
}

#resume .resume-items {
	margin-bottom: 48px;
}

.resume-group {
	width: 100%;
	max-width: 1040px;
}

.resume-entry {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	margin: 0 0 18px;
	position: relative;
}

.resume-entry::before {
	content: '';
	position: absolute;
	left: 180px;
	top: 26px;
	bottom: 26px;
	width: 1px;
	background: rgba(24, 33, 43, 0.08);
}

#resume .resume-items > .resume-section-heading > h3,
#stats-title,
#status-section-title {
	margin: 0 0 22px;
	font-size: 1.05rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--muted);
}

.resume-entry .resume-item,
.resume-entry .resume-place {
	height: 100%;
	margin-bottom: 0;
	padding: 24px 24px;
	border: 1px solid var(--line);
	border-radius: 22px;
	background: var(--surface-strong);
	box-shadow: var(--shadow-sm);
}

.resume-item h4,
.resume-place h4 {
	margin-bottom: 10px;
}

.resume-entry .resume-place {
	width: 180px;
	margin-right: 18px;
	padding: 18px 20px;
	border: 0;
	border-radius: 18px;
	background: linear-gradient(180deg, #e57e43 0%, #cf622a 100%);
	box-shadow: 0 16px 32px rgba(216, 106, 49, 0.18);
}

.resume-entry .resume-item {
	flex: 1;
	min-width: 0;
}

.resume-place h4,
.resume-place i,
.resume-place p,
.resume-place {
	color: #fff;
}

.resume-place h4 {
	font-size: 1rem;
	line-height: 1.35;
}

.resume-item ul {
	padding-left: 18px;
	margin: 12px 0 0;
	color: var(--muted);
}

.resume-item li + li {
	margin-top: 6px;
}

.resume-place > i,
.resume-place > h4 > i {
	margin-right: 6px;
	font-size: 0.95rem;
	color: rgba(255, 255, 255, 0.82);
}

.resume-item p:last-child,
.resume-item ul:last-child {
	margin-bottom: 0;
}

#contact {
	color: #fff;
	background:
		radial-gradient(circle at top left, rgba(216, 106, 49, 0.18), transparent 26%),
		linear-gradient(180deg, #11161d 0%, #0d1218 100%);
}

#contact::before {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
}

#contact h1,
#contact h2,
#contact h3,
#contact h4,
#contact h5,
#contact h6,
#contact a {
	color: #fff;
}

#contact .headline p {
	color: rgba(255, 255, 255, 0.68);
}

#contact .icon-list > li {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.08);
	box-shadow: none;
}

#contact .form-group {
	margin-bottom: 16px;
}

#contact .contact-form-card {
	padding: 28px 24px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: var(--radius-xl);
	background: rgba(255, 255, 255, 0.06);
	box-shadow: 0 24px 50px rgba(0, 0, 0, 0.16);
	backdrop-filter: blur(12px);
}

#contact .form-control {
	color: #fff;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.12);
}

#contact .form-control::placeholder {
	color: rgba(255, 255, 255, 0.56);
}

#contact .form-control:focus {
	background: rgba(255, 255, 255, 0.12);
	border-color: rgba(216, 106, 49, 0.46);
	box-shadow: 0 0 0 4px rgba(216, 106, 49, 0.18);
}

.ajax-response {
	margin-top: 15px;
	padding: 14px 16px;
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.08);
}

#footer {
	padding: 28px 0 34px;
	background: #0a0f14;
	color: rgba(255, 255, 255, 0.78);
}

#footer .copy {
	font-size: 0.9rem;
	margin: 0;
	text-align: center;
}

#preloader {
	position: fixed;
	inset: 0;
	background: linear-gradient(180deg, #fffaf4 0%, #f2ede5 100%);
	z-index: 9999;
}

#status,
.status-mes {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 200px;
	height: 200px;
	margin: -100px 0 0 -100px;
	background-image: url(../images/488.gif);
	background-repeat: no-repeat;
	background-position: center;
}

.status-mes {
	left: 0;
	top: 65%;
	margin: 0;
	background: none;
	text-align: center;
}

.status-mes h4 {
	margin-top: 30px;
	font-size: 0.95rem;
	color: var(--text);
}

.portfolio-item {
	margin-bottom: 20px;
	overflow: hidden;
}

.portfolio-item-preview {
	position: relative;
}

.portfolio-item:hover .portfolio-item-preview {
	transform: scale(1.06) rotate(1deg);
}

.portfolio-item:hover .portfolio-item-description {
	opacity: 1;
	bottom: 0;
}

.portfolio-item-description {
	position: absolute;
	right: 0;
	bottom: -70px;
	left: 0;
	padding: 25px;
	text-align: center;
	opacity: 0;
	color: var(--text);
	background: rgba(255, 255, 255, 0.86);
}

.owl-theme .owl-item {
	text-align: center;
}

.owl-theme .owl-controls .owl-page span {
	width: 40px;
	height: 4px;
	margin: 0 4px;
	border-radius: 999px;
}

.owl-theme .owl-controls .owl-pagination {
	margin-top: 20px;
}

@media (max-width: 991px) {
	#services-items {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.section,
	.callout {
		padding: 92px 0;
	}

	.section::before,
	.callout::before {
		inset: 18px;
	}

	.navbar .container,
	.navbar-color .container,
	.custom-collapse .container {
		border-radius: 28px;
	}

	#intro {
		padding-top: 150px;
	}

	.hello {
		padding: 38px 28px;
	}

	.callout .col-md-9.headline {
		margin-top: 24px !important;
	}

	.resume-entry::before {
		display: none;
	}

	.resume-entry .resume-place,
	.resume-entry .resume-item {
		width: 100%;
		margin-right: 0;
	}

	.resume-entry .resume-place {
		margin-bottom: 12px;
	}
}

@media (max-width: 767px) {
	#services-items {
		grid-template-columns: 1fr;
		gap: 14px;
	}

	body {
		font-size: 15px;
	}

	.wrapper {
		text-align: center;
	}

	.section,
	.callout {
		padding: 78px 0;
	}

	.section::before,
	.callout::before {
		inset: 12px;
		border-radius: 26px;
	}

	.navbar {
		padding: 14px 0;
	}

	.navbar .container,
	.navbar-color .container,
	.custom-collapse .container {
		border-radius: 24px;
		padding: 10px 16px;
	}

	.custom-collapse .navbar-nav {
		text-align: left;
		padding: 8px 0 6px;
	}

	.custom-collapse .navbar-collapse {
		border-top: 0;
		box-shadow: none;
	}

	.custom-collapse .navbar-nav > li.active {
		border: 0;
	}

	#intro {
		min-height: auto;
		padding: 136px 0 88px;
	}

	.hello {
		margin-bottom: 58px;
		padding: 30px 20px;
	}

	.hello h3 {
		line-height: 1.5;
	}

	#stats .stat,
	.service,
	.resume-item,
	.resume-place,
	.icon-list > li,
	.callout .col-md-9.headline,
	.profile-widget {
		text-align: left;
	}

	#profile,
	#profile .headline,
	#profile .profile-widget,
	#profile #profile-bio-title,
	#profile #profile-bio {
		text-align: center;
	}

	#stats .stat,
	.service,
	.resume-entry,
	.resume-item,
	.resume-place {
		margin-bottom: 18px;
	}

	.resume-group {
		max-width: none;
	}

	.avatar {
		max-width: 320px;
		margin: 0 auto 24px;
	}

	.widget-social {
		justify-content: center;
	}

	.callout .col-md-9.headline {
		padding: 24px 20px;
	}

	#contact .col-md-6 + .col-md-6 {
		margin-top: 30px;
	}

	#contact .contact-form-card {
		padding: 22px 18px;
	}
}
