/* ----------------------------------------------------------------
   yasminGMI — style.css (RTL + works page)
-----------------------------------------------------------------*/

:root {
	--bg: #faf9f5;
	--fg: #333333;
	--muted: #878792;
	--line: #e4e2da;
	--indigo: #5257a6;
	--yellow: #f2ed37;
	--card: #ffffff;
}

/* ----------------------------------------------------------------
   Basics
-----------------------------------------------------------------*/
* {
	margin: 0;
	padding: 0;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	outline: none;
	list-style: none;
	word-wrap: break-word;
}

html {
	scroll-behavior: smooth;
}
body {
	font-family: 'Heebo', sans-serif;
	font-size: 15px;
	font-weight: 400;
	letter-spacing: 0.5px;
	color: var(--fg);
	line-height: 1.6;
	overflow-x: hidden;
	background: var(--bg);
	-webkit-font-smoothing: antialiased;
	padding-top: 72px;
}

body.home-page {
	padding-top: 0;
}

body,
body * {
	direction: rtl;
	text-align: right;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	color: var(--fg);
	font-weight: 600;
}

h3 {
	font-size: 22px;
}

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

ul {
	padding: 0;
	list-style: none;
}

p {
	font-weight: 400;
	font-family: 'Heebo', sans-serif;
	margin: 0;
	font-size: 15px;
	color: var(--fg);
	letter-spacing: 0;
}

a:hover {
	text-decoration: none;
	outline: none;
}

.text-center,
.text-center * {
	text-align: center;
}

.bold {
	font-weight: bold;
}

.flex-row {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}
.flex-row.align-center {
	align-items: center;
} 

.marker {
	background: #f2e836;
}

.fs110 {
	font-size: 110%;
}

/* Preloader */
.preloader {
	background: #000;
	bottom: 0;
	left: 0;
	position: fixed;
	right: 0;
	top: 0;
	z-index: 99999;
}

.spinner {
	width: 50px;
	height: 50px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -25px 0 0 -25px;
	font-size: 10px;
	text-indent: -12345px;
	z-index: 10000;
}

.double-bounce1,
.double-bounce2 {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background-color: var(--indigo);
	opacity: 0.6;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
	position: absolute;
	top: 0;
	left: 0;
	-webkit-animation: sk-bounce 2.0s infinite ease-in-out;
	animation: sk-bounce 2.0s infinite ease-in-out;
}

.double-bounce2 {
	-webkit-animation-delay: -1.0s;
	animation-delay: -1.0s;
}

@-webkit-keyframes sk-bounce {
	0%, 100% { -webkit-transform: scale(0.0); }
	50% { -webkit-transform: scale(1.0); }
}

@keyframes sk-bounce {
	0%, 100% {
		transform: scale(0.0);
		-webkit-transform: scale(0.0);
	}
	50% {
		transform: scale(1.0);
		-webkit-transform: scale(1.0);
	}
}

/* Section */
.section_padding {
	padding: 2dvh 0;
}

.section_heading {
	padding-bottom: 40px;
}

.section_heading h2 {
	font-size: 40px;
	font-weight: 600;
	color: var(--fg);
	margin-top: 5px;
	margin-bottom: 10px;
}

.section_heading h2 span {
	font-size: 40px;
	font-weight: 600;
	color: var(--indigo);
}

.section_heading .sm_border {
	display: block;
	height: 2px;
	width: 70px;
	margin-bottom: 15px;
	bottom: -15px;
	position: relative;
	left: 50%;
	background-color: var(--indigo);
	-webkit-transform: translate(-50%, 0);
	-ms-transform: translate(-50%, 0);
	transform: translate(-50%, 0);
}

.section_heading span {
	font-weight: 400;
	color: var(--indigo);
}

.section_heading p {
	margin-bottom: 20px;
	margin: 0 auto;
}

.testimonials_link {
	background: var(--indigo);
	color: #ffffff;
	padding: 0 7px;
	border-radius: 3px;
	text-decoration: none;
	transition: all .2s ease-in-out;
}

.testimonials_link i {
	line-height: 26px;
	animation-duration: 1.5s;
	animation-iteration-count: infinite;
	animation-name: bounce-3;
	animation-timing-function: ease;
}

.testimonials_link:hover {
	background: #ffffff;
	color: var(--indigo);
	box-shadow: 0 1px 10px 0 rgb(0, 0, 0, .2);
}

@keyframes bounce-3 {
	0% { transform: translateY(2px); }
	50% { transform: translateY(-2px); }
	100% { transform: translateY(2px); }
}

/* Buttons */
.main_btn {
	color: #ffffff;
	font-size: 13px;
	margin-top: 30px;
	text-transform: capitalize;
	padding: 20px 28px;
	letter-spacing: 0.6px;
	font-weight: 600;
	background: var(--indigo);
	line-height: 10px;
	border: none;
	border-radius: 30px;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out 0s;
}

.main_btn:hover {
	color: var(--indigo);
	background: #ffffff;
}

.btn[type=submit] {
	width: 100%;
}

/* Header */
.site-header {
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	z-index: 1030;
	border: none;
	border-radius: 0;
	margin-bottom: 0;
	width: 100%;
	padding: 20px 0;
	background: #ffffff;
	transition: all 0.4s ease-in-out;
	-webkit-transition: all 0.4s ease-in-out;
}

.menu-top {
	background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
}

.site-nav {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	margin: 0;
	padding: 0;
}

.site-nav li a {
	color: var(--fg);
	font-size: 15px;
	font-weight: 600;
	text-transform: uppercase;
	transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	text-decoration: none;
	display: block;
	padding: 10px 15px;
}

.site-nav li a:hover,
.site-nav li a:focus {
	color: var(--indigo);
}

.site-nav li a.active {
	color: var(--fg);
	background-color: transparent;
}

.mobile-nav {
	display: none;
}

.site-header.menu-shrink {
	background-color: #ffffff;
	box-shadow: 0 10px 15px rgba(25, 25, 25, 0.1);
	padding: 10px 0;
	width: 100%;
	animation: fadeInDown 1s both 0.2s;
}

body.home-page .site-header,
body.home-page .site-header.menu-shrink {
	box-shadow: none;
}

.site-header.menu-shrink .site-nav li a {
	color: var(--fg);
	transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
}

.site-header.menu-shrink .site-nav li a.active {
	color: var(--indigo);
}

.site-header.menu-shrink .site-nav li a:hover {
	color: var(--indigo) !important;
}

/* Site header layout */
.site-header__bar {
	display: flex;
	align-items: center;
	position: relative;
	width: 1200px;
	max-width: 90%;
	margin: 0 auto;
}

.site-header__start {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-width: 0;
}

.site-header__menu {
	width: 100%;
	padding: 0;
}

.site-header__logo {
	padding: 0;
	max-width: 200px;
	display: block;
}

.site-header__logo img {
	transition: all .3s ease-in-out;
	max-height: 52px;
	width: auto;
	display: block;
}

.menu-shrink .site-header__logo img {
	max-height: 44px;
}

.site-header__cta {
	flex-shrink: 0;
	z-index: 2;
}

.nav-cta {
	display: inline-flex;
	align-items: center;
	background: var(--indigo);
	color: #ffffff;
	padding: 9px 20px;
	border-radius: 999px;
	font-weight: 700;
	font-size: 15px;
	transition: background 0.2s;
	white-space: nowrap;
	text-decoration: none;
	border: 2px solid transparent;
}

.nav-cta:hover,
.nav-cta:focus {
	background: #ffffff;
    color: var(--indigo);
    text-decoration: none;
    border: 2px solid var(--indigo);
}

@media (min-width: 768px) {
	.site-header__menu .site-nav {
		float: none;
		display: flex;
		justify-content: right;
		width: 100%;
		margin: 0;
	}
}

.slicknav_nav ul {
	display: flex;
	flex-direction: column-reverse;
}

.slicknav_nav {
	width: 110%;
    left: 0px;
    right: -5%;
    height: calc(100vh - 100px);
    top: 60px;
    background: #f2e836;
}

/* Banner */
.main_banner {
	height: 100%;
	min-height: 100vh;
	background: #ffffff;
	background-size: cover;
	background-repeat: no-repeat;
}

.banner_content {
	margin-top: 170px;
	font-size: 30px;
	font-weight: bolder;
	color: var(--muted);
}

.banner_content strong {
	text-transform: uppercase;
	color: var(--indigo);
	font-size: inherit;
}

.banner_content h1 {
	font-size: 50px;
	margin: 0;
	line-height: 1;
}

.banner_content h1 span .fw_300 {
	font-weight: 700;
}

.banner_content p {
	color: var(--muted);
	padding-bottom: 0;
	font-size: 18px;
}

.banner_social_link {
	margin-top: 20px;
	margin-bottom: 35px;
}

.banner_social_link li {
	display: inline-block;
	margin-left: 12px;
	margin-right: 0;
}

.banner_social_link li a {
	color: var(--indigo);
	border: 1px solid var(--indigo);
	width: 40px;
	height: 40px;
	line-height: 40px;
	border-radius: 50%;
	text-align: center;
	display: inline-block;
	font-size: 14px;
	transition: .5s;
}

.banner_social_link li a.wa {
	color: #25d366;
	border: 1px solid #25d366;
	font-size: 18px;
}

.banner_social_link li a:hover {
	background: var(--indigo);
	border-color: var(--indigo);
	color: #ffffff;
}

.banner_social_link li a.wa:hover {
	color: #ffffff;
	border: 1px solid #25d366;
	background: #25d366;
}

.banner-images img {
	height: 100%;
	min-height: calc(100vh - 40px);
	width: auto;
	max-width: none;
	margin-top: 40px;
}

.cd-headline {
	margin: 0;
}
.cd-headline.clip .cd-words-wrapper {
	padding-right: 1px;
}

.cd-headline.clip .cd-words-wrapper::after {
	top: 15%;
	height: 70%;
}

/* About */
.about_image {
	position: relative;
	z-index: 9;
	width: 90%;
}

.about_image:before {
	content: "";
	width: 95%;
	height: 103%;
	top: -5px;
	right: 55px;
	position: absolute;
	border: 15px solid var(--indigo);
	z-index: -1;
	left: 1px;
}

.about_content_area {
	margin-top: 25px;
}

.single_about h4 {
	font-size: 30px;
	margin: 0 0 20px;
}

.about_details {
	margin-top: 20px;
}

.about_details li {
	color: #333;
	display: inline-block;
	margin-top: 15px;
	width: 49%;
}

.about_details span {
	font-weight: 600;
	text-transform: capitalize;
	display: inline-block;
	width: 25%;
}

.ct_about {
	margin: 10px 0;
}

.ct_about span i {
	margin-right: 5px;
}

#wa_btn {
	font-weight: normal;
	cursor: pointer;
	color: #337ab7;
	white-space: nowrap;
}

.about_details #wa_btn:hover {
	color: #23527c;
}

#wa_btn i {
	color: #09be3f;
}

/* Services */
.services_wrpr {
	display: flex;
	width: 100%;
	flex-wrap: wrap;
	justify-content: center;
}

.single-service {
	border: 1px solid #e3e3e3;
	border-radius: 10px;
	padding: 40px 30px;
	background: transparent;
	margin-bottom: 30px;
	transition: all 0.4s ease;
	height: calc(100% - 30px);
}

.single-service:hover {
	background: var(--indigo);
	border: 1px solid var(--indigo);
}

.single-service i {
	transition: all 0.4s ease;
	font-size: 40px;
	display: block;
	color: var(--indigo);
}

.single-service:hover i {
	color: #ffffff;
}

.single-service h4 {
	font-size: 20px;
	margin-top: 30px;
	text-transform: uppercase;
	font-weight: 600;
}

.single-service p {
	margin-top: 15px;
}

.single-service p,
.single-service h4,
.single-service h5 {
	transition: all 0.4s ease;
	color: var(--fg);
}

.single-service:hover p,
.single-service:hover h4,
.single-service:hover h5 {
	color: #ffffff;
}

.single-service:hover p .marker {
	color: var(--indigo);
}

/* Portfolio */
.work_filter ul {
	padding: 0;
	list-style: none;
	margin-bottom: 30px;
}

.work_filter ul li {
	font-weight: 600;
	text-transform: capitalize;
	display: inline-block;
	cursor: pointer;
	font-size: 16px;
	border-radius: 30px;
	padding: 7px 20px;
	letter-spacing: 1px;
	background: #fafafa;
	margin: 0 5px 20px;
	transition: all 0.5s ease-in-out;
}

.work_filter ul li:hover {
	border-color: var(--indigo);
	background: var(--indigo);
	color: #ffffff;
}

.work_filter .active {
	color: #ffffff;
	border-color: var(--indigo);
	background: var(--indigo);
}

.work_content_area .item-img {
	position: relative;
	margin-bottom: 30px;
	min-height: 230px;
	border: 2px solid rgb(242, 237, 55, .5);
	padding: 5px;
	border-radius: 6px;
	-webkit-transition: all .4s;
	transition: all .4s;
}

.work_content_area .item-img:hover {
	-webkit-box-shadow: -10px 10px 30px rgba(0, 0, 0, 0.1);
	box-shadow: -10px 10px 30px rgba(0, 0, 0, 0.1);
}

.work_content_area .item-img:hover .item-img-overlay {
	visibility: visible;
	opacity: 1;
}

.work_content_area .item-img .viewlink {
	display: block;
	position: relative;
	background: #ffffff;
	text-align: center;
	z-index: 999;
}

.work_content_area .item-img .viewlink:hover {
	text-decoration: underline;
}

.work_content_area .item-img-overlay {
	position: absolute;
	top: 5px;
	left: 5px;
	right: 5px;
	bottom: 5px;
	padding: 30px;
	background: rgba(0, 0, 0, 0.6);
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all .5s;
	transition: all .5s;
}

.work_content_area .item-img-overlay .icon {
	position: absolute;
	right: auto;
	left: 30px;
	bottom: 40px;
	width: 40px;
	height: 40px;
	line-height: 44px;
	border-radius: 50%;
	border: 1px solid currentColor;
	text-align: center;
	font-size: 20px;
	color:  var(--yellow);
	transform: rotate(180deg);
}

.work_content_area .item-img-overlay p {
	color:  var(--yellow);
	font-weight: 400;
	font-size: 13px;
}

.work_content_area .item-img-overlay h5 {
	font-weight: 400;
	color: #ffffff;
	font-size: 16px;
	margin-top: 5px;
}

/* Resume */
.education-container {
	position: relative;
	display: block;
	margin: 0;
}

.edu-list {
	position: relative;
	display: block;
	margin: 0 50px;
	list-style: none;
}

.edu-list > li {
	border: 2px solid rgb(242, 237, 55, .5);
	border-radius: 20px;
	box-shadow: 0px 1px 40px rgba(255, 255, 255, 0.15);
	position: relative;
	margin: 0 0 30px;
	padding: 25px;
}

.edu-list > li strong {
	color: var(--indigo);
	font-size: 14px;
}

.edu-list > li h5 {
	font-size: 16px;
	font-weight: 600;
}

.edu-list > li:not(:last-child)::before {
	content: '';
	position: absolute;
	top: 40px;
	left: auto;
	right: -32px;
	width: 3px;
	height: 100%;
	background: var(--indigo);
}

.edu-list > li::after {
	content: "\e032";
	position: absolute;
	top: 0;
	left: auto;
	right: -55px;
	width: 50px;
	height: 50px;
	line-height: 50px;
	border-radius: 100%;
	text-align: center;
	font-size: 20px;
	font-family: 'et-line';
	background: var(--indigo);
	color: #ffffff;
	box-shadow: 2px 4px 15px rgba(0, 0, 0, 0.07);
	cursor: pointer;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	transition: all .3s ease;
}

.experience > li::after {
	content: "\e015";
}

/* Blog */
.single_blog {
	margin-bottom: 30px;
}

.single_blog:hover img {
	-moz-transform: scale(1.03);
	-webkit-transform: scale(1.03);
	transform: scale(1.09);
}

.single_blog .blog-image {
	overflow: hidden;
}

.single_blog img {
	width: 100%;
	border-radius: 3px 3px 0 0;
	-moz-transition: all 0.3s;
	-webkit-transition: all 0.3s;
	transition: all 0.5s;
}

.blog-thumb {
	background: transparent;
	-webkit-box-shadow: 0 1px 30px rgba(0, 0, 0, 0.1);
	-moz-box-shadow: 0 1px 30px rgba(0, 0, 0, 0.1);
	box-shadow: 0 1px 30px rgba(0, 0, 0, 0.1);
	border-radius: 3px;
	text-align: left;
	margin-bottom: 30px;
}

.blog-thumb small {
	color: var(--indigo);
	font-weight: 500;
	display: block;
}

.blog-thumb small .fa {
	margin-right: 5px;
}

.blog-thumb small,
.blog-thumb small + span {
	display: inline-block;
	vertical-align: middle;
}

.blog-thumb small + span {
	color: #777;
	font-size: 10px;
	font-weight: bold;
	text-transform: capitalize;
	margin-left: 2px;
}

.blog-thumb h4 {
	color: var(--fg);
	padding: 0 0 12px;
	font-size: 24px;
	margin: 0;
	transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
}

.blog-thumb h4:hover {
	color: var(--indigo);
}

.blog-info {
	box-shadow: 0 1px 30px rgba(255, 255, 255, 0.2);
	padding: 25px 35px;
}

.blog-info .blog_btn {
	padding: 20px 30px;
}

/* Contact */
.form .form-group input,
.form-control {
	background: transparent;
	border: 1px solid #e3e3e3;
	height: 40px;
	border-radius: 0;
	box-shadow: none;
	width: 100%;
	padding: 6px 12px;
	font-family: inherit;
	font-size: 15px;
	color: var(--fg);
}

.form .form-group input:focus,
.form-control:focus {
	border-color: var(--indigo);
	outline: none;
}

.form .form-group textarea,
textarea.form-control {
	background: transparent;
	border: 1px solid #e3e3e3;
	margin-top: 10px;
	padding: 12px;
	border-radius: 0;
	box-shadow: none;
	width: 100%;
	min-height: 120px;
	resize: vertical;
	font-family: inherit;
	font-size: 15px;
	color: var(--fg);
}

.form .form-group textarea:focus,
textarea.form-control:focus {
	border-color: var(--indigo);
	outline: none;
}

.form-group {
	margin-bottom: 15px;
}

.btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 14px 30px;
	border-radius: 999px;
	font-weight: 700;
	font-size: 16px;
	transition: transform 0.2s, background 0.2s, border-color 0.2s,
	  color 0.2s;
	text-decoration:none;
}

/* Scroll to top */
.topcontrol {
	background: var(--indigo) none repeat scroll 0 0;
	border-radius: 5px;
	bottom: 5px;
	margin-bottom: 80px;
	box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.2);
	color: #ffffff;
	cursor: pointer;
	font-size: 26px;
	height: 40px;
	opacity: 1;
	filter: alpha(opacity=100);
	padding: 6px 12px;
	position: fixed;
	margin-right: 10px;
	-webkit-transition: all 0.2s ease 0s;
	transition: all 0.2s ease 0s;
	width: 40px;
	z-index: 99;
}

.topcontrol:hover {
	background: #ffffff;
	color: var(--indigo);
}

/* Layout grid */
.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 15px;
}

.flex-row {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -15px;
}

.flex-row > [class*="col-"],
.services_wrpr > [class*="col-"],
.work_content_area > [class*="col-"],
.blog_slide_area > [class*="col-"] {
	padding: 0 15px;
	box-sizing: border-box;
}

.col-xs-12,
.col-sm-12,
.col-md-12 {
	width: 100%;
}

@media (min-width: 768px) {
	.col-sm-6 { width: 50%; }
}

@media (min-width: 992px) {
	.col-md-4 { width: 33.333333%; }
	.col-md-6 { width: 50%; }
}

.work_content_area > [class*="col-"] {
	float: right;
}

/* Responsive */
@media only screen and (max-width: 991px) {
	.site-header .site-nav li a {
		font-size: 18px !important;
	}

	.banner-images img {
		max-width: 100%;
		height: auto;
		min-height: auto;
		margin-top: 80px;
	}

	.banner_content {
		margin-top: 40px;
	}
}

@media only screen and (max-width: 767px) {
	.site-header .site-nav li a {
		color: var(--indigo) !important;
	}

	.site-header .site-nav li a:hover,
	.site-header .site-nav li a:focus {
		color: #ffffff !important;
	}

	.banner_social_link {
		position: fixed;
		top: 90px;
		z-index: 9;
		left: 0;
	}

	.banner_social_link li a {
		background: #ffffff;
	}
}

/* ----------------------------------------------------------------
   Works page (works.html)
-----------------------------------------------------------------*/

.works-page .btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 14px 30px;
	border-radius: 999px;
	font-weight: 700;
	font-size: 16px;
	transition: transform 0.2s, background 0.2s, border-color 0.2s, color 0.2s;
}

.works-page .sec-head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 56px;
	flex-wrap: wrap;
}

.works-page .sec-title {
	font-size: clamp(28px, 4vw, 44px);
	font-weight: 900;
	letter-spacing: -0.03em;
}

.works-page .sec-index {
	font-family: monospace;
	font-size: 14px;
	color: var(--muted);
	letter-spacing: 0.1em;
}

.works-page .project {
	display: grid;
	grid-template-columns: 1.3fr 1fr;
	gap: 48px;
	align-items: center;
	padding: 56px 0;
	border-top: 1px solid var(--line);
}

.works-page .project:last-child {
	border-bottom: 1px solid var(--line);
}

.works-page .project:nth-child(even) .project-media {
	order: 2;
}

.works-page .project-media {
	border-radius: 14px;
	overflow: hidden;
	background: var(--card);
	border: 1px solid var(--line);
	aspect-ratio: 16 / 11;
}

.works-page .project-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.5s ease;
}

.works-page .project:hover .project-media img {
	transform: scale(1.03);
}

.works-page .project-role {
	font-family: monospace;
	font-size: 13px;
	color: var(--indigo);
	letter-spacing: 0.06em;
}

.works-page .project h3 {
	font-size: clamp(26px, 3.5vw, 40px);
	font-weight: 900;
	letter-spacing: -0.03em;
	margin: 10px 0 16px;
}

.works-page .project p {
	color: var(--muted);
	font-size: 16px;
	margin-bottom: 22px;
}

.works-page .tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 24px;
}

.works-page .tag {
	font-size: 13px;
	font-weight: 500;
	padding: 5px 12px;
	border-radius: 999px;
	background: var(--card);
	border: 1px solid var(--line);
	color: var(--fg);
}

.works-page .project-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-weight: 700;
	color: var(--indigo);
}

.works-page .project-link:hover {
	text-decoration: underline;
}

.works-page .process {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 32px;
}

.works-page .step {
	padding-top: 20px;
	border-top: 2px solid var(--fg);
}

.works-page .step .step-num {
	font-family: monospace;
	font-size: 14px;
	color: var(--indigo);
	margin-bottom: 14px;
}

.works-page .step h3 {
	font-size: 19px;
	font-weight: 800;
	margin-bottom: 8px;
}

.works-page .step p {
	font-size: 15px;
	color: var(--muted);
}


/* ---------- CONTACT ---------- */
.cta {
	background: var(--indigo);
	color: #ffffff;
	border-radius: 24px;
	padding: clamp(30px, 6vw, 50px);
	text-align: center;
}
.cta * {
	text-align: center;
}
.cta h2 {
	font-size: clamp(32px, 5vw, 48px);
	font-weight: 900;
	line-height: 1.05;
	color:#ffffff;
}
.cta h2 .y {
	color: var(--yellow);
}
.cta p {
	margin: 20px auto 36px;
	max-width: 48ch;
	color: rgba(255, 255, 255, 0.75);
	font-size: 18px;
}
.cta .btn-yellow {
	border:2px solid var(--yellow);
	background: #ffffff;
	color: var(--fg);
	font-weight: 600;
}
.cta .btn-yellow:hover {
	transform: translateY(-2px);
}
.cta .btn-yellow #wa_btn {
	font-weight: 600;
	font-size: 20px;
}
.cta .btn-yellow #wa_btn .fa {
	font-size: 150%;
    vertical-align: text-bottom;
}

.works-page .reveal {
	opacity: 0;
	transform: translateY(22px);
	transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
		transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.works-page .reveal.in {
	opacity: 1;
	transform: none;
}

@media (max-width: 800px) {
	.works-page .project {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.works-page .project:nth-child(even) .project-media {
		order: 0;
	}

	.works-page .process {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 480px) {
	.works-page .process {
		grid-template-columns: 1fr;
	}
}

@media (prefers-reduced-motion: reduce) {
	.works-page .reveal {
		opacity: 1;
		transform: none;
	}
}
