/*
 ======================================================================================================
 
    @VERSION			: 1.2.1
    @CREATED			: 20 AUG 2019
    @MODIFIED			: 17 MAY 2024
    @DESIGNER			: Daniel C. K. Tan (danielcktan[at]gmail.com)
	@DESIGNER URI		: <https://www.danielcktan.design>
    
    @FILE				: ~/css/user.css
	@TYPE				: Style Sheet
	@DESCRIPTION		: Custom Stylesheet for CMS Template
	   
 ======================================================================================================
 
	CONTENT
	------------------------------------------------------------------------------------------------------
	#00 ROOT STYLES
	#01 BASE STYLES
	#02 LAYOUT STYLES
    #03 CUSTOM SITE/COMPONENT STYLES 
 
  ======================================================================================================
*/

/* ----------------------------------------------------------------------------------------------------
   #00 ROOT STYLES 
/* ---------------------------------------------------------------------------------------------------- */
:root {
	/* BRANDING COLOURS */
	--brand-col-primary				: var(--base-col-primary);
	--brand-col-primary-light		: var(--base-col-primary-light);
	--brand-col-primary-dark		: var(--base-col-primary-dark);
	--brand-col-primary-darker		: var(--base-col-primary-darker);
	--brand-col-secondary			: var(--base-col-secondary);
	--brand-doc-background-color	: var(--base-col-body-background);
	--brand-doc-link-color			: var(--base-col-link);
	--brand-doc-link-hover-color	: var(--base-col-link-hover);
	--brand-doc-select-background	: var(--base-col-primary-light);
	--brand-doc-select-text			: var(--base-col-body-text);
	--brand-doc-font-color			: var(--base-col-body-text);
	
	/* HEADER */
	--brand-header-bkg	: var(--base-col-secondary);
	--brand-header-text	: var(--base-col-white);
	
	/* BUTTONS */
	--brand-btn-primary				: var(--base-col-primary);
	--brand-btn-primary-hover		: var(--base-col-primary-dark);
	--brand-btn-primary-txt-col		: var(--base-col-white);
	--brand-btn-primary-txt-col-hvr	: var(--base-col-white);
}

[data-bs-theme=dark] { 
    --brand-doc-background-color	: var(--base-col-dark-400);
    --brand-doc-font-color			: var(--base-col-light-500);
    --brand-col-primary-light       : var(--base-col-light-900);
    --base-col-link	                : var(--base-col-light-500);
    --base-col-link-hover           : var(--base-col-light-500);
}


/* ----------------------------------------------------------------------------------------------------
   #01 BASE STYLES 
/* ---------------------------------------------------------------------------------------------------- */

/* Document Styles
/* ---------------------------------------------------------------------------------------------------- */
body {    
	background-color: var(--brand-doc-background-color);
	color: var(--brand-doc-font-color);
	font-family: var(--font-family-body);	
	font-size: var(--base-font-size-body);
	font-weight: var(--font-weight-regular);
}


/* Link Styles
/* ---------------------------------------------------------------------------------------------------- */
a { color: var(--brand-doc-link-color); transition: all .2s ease-in-out; }
a:hover, a:focus, a:active, a.active { color: var(--brand-doc-link-hover-color); outline: 0; text-decoration: none; }


/* Headings Styles
/* ---------------------------------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 { font-family: var(--font-family-heading); color: var(--brand-col-primary-light); letter-spacing: -0.3px; }

h1, h2, h3,
.h1, .h2, .h3 { text-transform: var(--base-text-transform-uppercase); }

h4, h5, h6,
.h4, .h5, .h6 { text-transform: var(--base-text-transform-capitalize); font-weight: var(--font-weight-light); }


/* Buttom Styles
/* ---------------------------------------------------------------------------------------------------- */
.btn { font-family: var(--font-family-heading); font-weight: var(--font-weight-medium); }


/* Paragraph Styles
/* ---------------------------------------------------------------------------------------------------- */
p { font-size: 1.1rem; }	



/* ----------------------------------------------------------------------------------------------------
   #02 LAYOUT STYLES 
/* ---------------------------------------------------------------------------------------------------- */

/* Main Navbar Styles
/* ---------------------------------------------------------------------------------------------------- */
#mainNav { background-color: rgba(255, 255, 255, 0) !important; padding-top: 1em; padding-bottom: 1em; }

#mainNav.navbar-scrolled { background-color: rgba(255, 255, 255, 1) !important; }

#mainNav .navbar-toggler { border-color: #999; color: #999; }

#mainNav .navbar-brand { color: #999; }
#mainNav .navbar-brand img { max-width: 220px; }
#mainNav.navbar-scrolled .navbar-brand img { max-width: 150px; }

#mainNav .nav-item .nav-link  { color: #777 !important; font-family: var(--font-family-heading); font-weight: var(--font-weight-medium); text-shadow: 0 1px 0 rgba(255, 255, 255, 0.25); position: relative; /* For Link Hover Bar */ }
#mainNav .dropdown-menu li .dropdown-item { font-family: var(--font-family-body); font-weight: var(--font-weight-regular); }

#mainNav .nav-link:hover, 
#mainNav .nav-link:focus,
#mainNav .nav-item .nav-link.active,
#mainNav.navbar-scrolled .nav-item .nav-link.active { color: #F60 !important; text-decoration: none; }

/* Link Hover Bar */
#mainNav .nav-item .nav-link::after {
	background: #F60;
	content: "";
	position: absolute;
	width: 0;
	bottom: 20px;
	right: 5px;
	left: -5px;
	height: 3px;
	z-index: 1;
	-webkit-transition: all .4s ease-out 0s;
	-moz-transition: all .4s ease-out 0s;
	-ms-transition: all .4s ease-out 0s;
	-o-transition: all .4s ease-out 0s;
	transition: all .4s ease-out 0s;
}

#mainNav.navbar-scrolled .nav-item .nav-link::after { bottom: 10px; }

#mainNav .nav-item:hover .nav-link::after {
	left: 0;
	right: auto;
	width: 100%;
	-webkit-transition: all .4s ease-out 0s;
	-moz-transition: all .4s ease-out 0s;
	-ms-transition: all .4s ease-out 0s;
	-o-transition: all .4s ease-out 0s;
	transition: all .4s ease-out 0s;
}

@media (max-width: 768px) {
	#mainNav { background-color: rgba(255, 255, 255, 1) !important; }
	#mainNav .navbar-brand img { max-width: 150px; width: 150px; }
	#mainNav .nav-link { color: #fff; font-size: 0.9rem; padding: 1.2rem 1rem; }  
	#mainNav .nav-item .nav-link::after { background: none; }
}

@media (max-width: 1199px) {
	/* On Mobile Devices */	
    #mainNav.navbar-scrolled { padding-top: 0.8em !important; padding-bottom: 0.8em !important;  }
	#mainNav .dropdown-menu li .dropdown-item,
	#mainNav .dropdown-menu li .dropdown-item:active,
	#mainNav .dropdown-menu li .dropdown-item:hover,
	#mainNav .dropdown-menu li .dropdown-item:focus { color: #fff; }
}

@media (min-width: 1200px) {
	/* On Desktop Devices */
	#mainNav .dropdown-menu li .dropdown-item:hover,
	#mainNav .dropdown-menu li .dropdown-item:focus { color: #ff6600; }

    [data-bs-theme=dark] #mainNav .dropdown-menu li .dropdown-item:hover,
	[data-bs-theme=dark] #mainNav .dropdown-menu li .dropdown-item:focus { color: var(--base-col-yellow-500); }
}


/* Section General Styles
/* ---------------------------------------------------------------------------------------------------- */
section { padding-top: calc(5rem + 20px); padding-bottom: calc(5rem + 20px); }
section .page-section-heading { color: #111; }

/* Section: Map Styles
/* ---------------------------------------------------------------------------------------------------- */
section.map { width: 100%; position: relative; padding-top: 0; padding-bottom: 0; }
section.map .maps { height: 25rem; position: relative; }
section.map .maps iframe { height: 100%; width: 100%; }


/* Breadcrumbs Styles
/* ---------------------------------------------------------------------------------------------------- */
.breadcrumbs { margin-top: 123px; }


/* Page Header Styles (Background Image: Article Image)
/* ---------------------------------------------------------------------------------------------------- */
.page-header {
	background-attachment: fixed;
    background-color: var(--brand-header-bkg);
	background-position: center;
	background-repeat: no-repeat;
    background-size: cover;
	color: var(--brand-header-text);
    min-height: 350px;
}

.page-header::after {
    background: rgba(0,0,0,0.5);
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
}

.page-header > * { z-index: 99; }


/* Page Header Styles (Background Image: Specified Image)
/* ---------------------------------------------------------------------------------------------------- 
.page-header {
	background-color: #333;
    background-image: url('../images/xxx.png'), url('../images/bkg-page-header.jpg');
	background-position: top right, center center;
	background-repeat: no-repeat, no-repeat;
    background-size: 500px, auto;
	color: var(--brand-header-text);
}

@media (max-width: 992px) {
	.page-header {
        background-color: #333;
        background-image:  url('../images/bkg-page-header.jpg');
        background-position: center center;
        background-repeat: no-repeat;
        background-size: auto;
    }
}
*/


/* Page Title Styles
/* ---------------------------------------------------------------------------------------------------- */
.page-header h1 { font-size: 2.5rem; }


/* Footer Styles
/* ---------------------------------------------------------------------------------------------------- */
footer { color: #fff; text-align: center; }
footer .footer-brand { text-decoration: none; }
footer .footer-brand img { max-width: 150px; width: 150px; transition: all .2s ease-in-out; }
footer p { color: #fff; }

footer .nav.footer .nav-item .nav-link,
footer .nav.footer .nav-item .nav-link:link,
footer .nav.footer .nav-item .nav-link:active,
footer .nav.footer .nav-item .nav-link:visited,
footer .nav.footer .nav-item .nav-link:hover { color: #fff !important; }


/* Preloader Styles (Customised)
/* ---------------------------------------------------------------------------------------------------- */
#preloader { background: none; }
#preloader:before { border: 6px solid transparent; border-top-color: transparent; border-bottom-color: transparent; }
#preloader .spinner-color { color: #f60; }
#preloader.preloader-bkg { background-color: #fff; }


/* Scroll Progress Bar Styles
/* ---------------------------------------------------------------------------------------------------- */
/* The progress bar (scroll indicator) */
.page-scroll-progress-bar { background: #ff6600; } 


/* Back to Top (Customised)
/* ---------------------------------------------------------------------------------------------------- */
#toTop { background: rgba(0, 0, 0, 0.2); }



/* ----------------------------------------------------------------------------------------------------
   #03 CUSTOM SITE/COMPONENT STYLES  
/* ---------------------------------------------------------------------------------------------------- */

/* General Section Styles
/* ---------------------------------------------------------------------------------------------------- */
.section-bkg { background-repeat: no-repeat; background-position: center center; 	
	-webkit-background-size: cover;
	   -moz-background-size: cover;
	     -o-background-size: cover;
	        background-size: cover;
}



/* Introduction Styles
/* ---------------------------------------------------------------------------------------------------- */
#home { background-color: #eee; background-image: url('../../../../../images/bkg_intro.jpg'); background-attachment: fixed; position: relative; height: 100%; }
#home .greetings { margin-bottom: 0; }
#home .greetings span { background-color: #F90; color: #fff; font-size: 0.95rem; font-weight: 700; line-height: 1.1; display: inline-block; margin-bottom: 15px; padding: 7px 12px; text-transform: uppercase; position: relative; }
#home .greetings span::before { border-style: solid; border-width: 0 0 8px 8px; border-color: transparent; border-left-color: #F90; content: ''; width: 0; height: 0; top: 100%; left: 5px; display: block; position: absolute; }

#home h1 { color: #333; font-family: 'Playfair Display', serif; font-size: 4rem; font-weight: 400; line-height: 2.8rem; text-transform: none; margin-bottom: 3rem; }
#home h1 span .wrap { border-right: 1px solid transparent; position: relative; }
#home h1 span .wrap:after { position: absolute; bottom: 10px; right: -22px; content: ''; width: 25px; height: 4px; background: #333; -webkit-animation: blink 1s linear infinite;
animation: blink 1s linear infinite; }

@keyframes blink {
	0% { opacity: 0; }
	50% { opacity: .5; }
	100% { opacity: 1; }
}

#home h3 { color: #666; font-family: var(--font-family-body); font-size: 2rem; font-weight: 300; text-transform: none; margin-bottom: 15px; }
#home h3 span.name { color: #F60; font-family: var(--font-family-heading); font-size: 3rem; font-weight: var(--font-weight-heading); }
#home h3 span.surname { font-family: var(--font-family-heading); font-size: 3rem; font-weight: var(--font-weight-subheading); letter-spacing: -1px !important; }

@media (max-width: 768px) {
	#home h1 { font-size: 2.6rem; line-height: 1.8rem; }
	#home h3 { font-size: 2rem; }
}



/* Down Arrow Styles
/* ---------------------------------------------------------------------------------------------------- */
#home .jumper { margin: 0 auto 0; }
#home .jumper a i { Background-color: #aaa; Border: 1px solid #aaa; border-radius: 50%; color: #ddd; font-size: 1.5rem; line-height: 1.5em; text-align: center; position: absolute;  bottom: 50px; width: 1.5em; height: 1.5em; margin: 0 -20px; }

/* Bouncing Animation */
.animated.infinite { -webkit-animation-iteration-count: infinite; animation-iteration-count: infinite; }
.bounce { -webkit-animation-name: bounce; animation-name: bounce; -webkit-transform-origin: center bottom; transform-origin: center bottom; }
.animated { -webkit-animation-duration: 1s; animation-duration: 1s; -webkit-animation-fill-mode: both; animation-fill-mode: both; }

@-webkit-keyframes bounce {
    0%, 20%, 53%, 80%, to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
    40%, 43% {
        -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        -webkit-transform: translate3d(0, -30px, 0);
        transform: translate3d(0, -30px, 0);
    }
    70% {
        -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        -webkit-transform: translate3d(0, -15px, 0);
        transform: translate3d(0, -15px, 0);
    }
    90% {
        -webkit-transform: translate3d(0, -4px, 0);
        transform: translate3d(0, -4px, 0);
    }
}
@keyframes bounce {
    0%, 20%, 53%, 80%, to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
    40%, 43% {
        -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        -webkit-transform: translate3d(0, -30px, 0);
        transform: translate3d(0, -30px, 0);
    }
    70% {
        -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        -webkit-transform: translate3d(0, -15px, 0);
        transform: translate3d(0, -15px, 0);
    }
    90% {
        -webkit-transform: translate3d(0, -4px, 0);
        transform: translate3d(0, -4px, 0);
    }
}


/* Animated Headline Styles
   https://github.com/ridown/animated-headline/
/* ---------------------------------------------------------------------------------------------------- */
.cd-headline { line-height:1.2; }
.cd-words-wrapper { display:inline-block; position:relative; text-align:left; }
.cd-words-wrapper b { display:inline-block; position:absolute; white-space:nowrap; left:0; top:0; }
.cd-words-wrapper b.is-visible { position:relative; }
.no-js .cd-words-wrapper b { opacity:0; }
.no-js .cd-words-wrapper b.is-visible { opacity:1; }

/* xslide */
.cd-headline.slide span { display:inline-block; padding:.2em 0; }
.cd-headline.slide .cd-words-wrapper { overflow:hidden; vertical-align:top; }
.cd-headline.slide b { opacity:0; top:.2em; }
.cd-headline.slide b.is-visible { top:0; opacity:1; -webkit-animation:slide-in .6s; -moz-animation:slide-in .6s; animation:slide-in .6s; }
.cd-headline.slide b.is-hidden { -webkit-animation:slide-out .6s; -moz-animation:slide-out .6s; animation:slide-out .6s; }

@-webkit-keyframes slide-in {
	0% { opacity: 0; -webkit-transform: translateY(-100%); }
	60% { opacity: 1; -webkit-transform: translateY(20%); }
	100% { opacity: 1; -webkit-transform: translateY(0); }
}
@-moz-keyframes slide-in {
	0% { opacity: 0; -moz-transform: translateY(-100%); }
	60% { opacity: 1; -moz-transform: translateY(20%); }
	100% { opacity: 1; -moz-transform: translateY(0); }
}
@keyframes slide-in {
	0% { opacity:0; -webkit-transform:translateY(-100%); -moz-transform:translateY(-100%); -ms-transform:translateY(-100%); -o-transform:translateY(-100%); transform:translateY(-100%); }
	60% { opacity:1; -webkit-transform:translateY(20%); -moz-transform:translateY(20%); -ms-transform:translateY(20%); -o-transform:translateY(20%); transform:translateY(20%); }
	100% { opacity:1; -webkit-transform:translateY(0); -moz-transform:translateY(0); -ms-transform:translateY(0); -o-transform:translateY(0); transform:translateY(0); }
}
@-webkit-keyframes slide-out {
	0% { opacity: 1; -webkit-transform: translateY(0); }
	60% { opacity: 0; -webkit-transform: translateY(120%); }
	100% { opacity: 0; -webkit-transform: translateY(100%); }
}
@-moz-keyframes slide-out {
	0% { opacity: 1; -moz-transform: translateY(0); }
	60% { opacity: 0; -moz-transform: translateY(120%); }
	100% { opacity: 0; -moz-transform: translateY(100%); }
}
@keyframes slide-out {
	0% { opacity:1; -webkit-transform:translateY(0); -moz-transform:translateY(0); -ms-transform:translateY(0); -o-transform:translateY(0); transform:translateY(0); }
	60% { opacity:0; -webkit-transform:translateY(120%); -moz-transform:translateY(120%); -ms-transform:translateY(120%); -o-transform:translateY(120%); transform:translateY(120%); }
	100% { opacity:0; -webkit-transform:translateY(100%); -moz-transform:translateY(100%); -ms-transform:translateY(100%); -o-transform:translateY(100%); transform:translateY(100%); }
}



/* About Styles
/* ---------------------------------------------------------------------------------------------------- */
#about {
	background-color: #bbb2a3;
	background-image: url('../../../../../images/bkg_about.jpg'); 
	background-attachment: fixed;
}

#about h2 {
    color: #e8e5de;
	font-family: var(--font-family-heading);
    font-size: 3rem;
	font-weight: var(--font-weight-heading);
	margin-bottom: 0 !important;
}


#about h4 {
    color: #666;
	font-family: var(--font-family-heading);
	font-size: 2rem;
    font-weight: 300;
	text-transform: none; 
	margin-bottom: -5px;
}

#about h5 {
    color: #444;
	font-family: var(--font-family-heading);
	font-size: 1.25rem;
    font-weight: 700;
	text-transform: none; 
	margin-bottom: 15px;
}

#about .box {
	padding: 30px;
	position: relative;
	overflow: hidden;
	border-radius: 8px;
	margin: 0 10px 30px 10px;
	background: #fff;
	-webkit-box-shadow: 0 1px 6px rgba(0, 0, 0, 0.175);
		  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.175);
	transition: all 0.3s ease-in-out;
	min-height: 145px;
}

#about .box:hover {
	-webkit-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.35);
	   -moz-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.35);
			box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.35);
			
	-webkit-transform: translateY(-5px);
	        transform: translateY(-5px);
}

#about .box .icon {
	position: absolute;
	left: -15px;
	top: calc(50% - 32px);
}

#about .box .icon i {
	color: #eee;
	font-size: 4rem;
	line-height: 1;
	transition: 0.5s;
}

#about .box .title {
	color: #111;
	font-family: var(--font-family-heading);
	font-weight: 600;
	font-size: 0.95rem;
	margin-left: 45px;
	margin-bottom: 15px;
}

#about .box .description {
    font-family: var(--font-family-body);
    font-size: 0.875rem;
    line-height: 24px;
    margin-left: 40px;
    margin-bottom: 0;
}

@media (max-width: 768px) {
	#about h2 { font-size: 1.65rem !important; }
	#about h4 { font-size: 1.4rem !important; }
	#about .box .title { font-size: 1.5rem; }
}



/* Projects Styles
/* ---------------------------------------------------------------------------------------------------- */
#projects:after { 
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #333;
	opacity: 0.2;
	z-index: 1;
}

@media (max-width: 768px) {
	#projects:after { opacity: 0.7; }
}

#projects {
	background-color: #aba9ae;
	background-image: url('../../../../../images/bkg_latest-project.jpg'); 
	background-attachment: fixed;
	background-position: center left !important;
	height: 50%;
	min-height: 60vh;
	position: relative;
}

#projects h2 {
    color: #fff;
	font-family: var(--font-family-heading);
    font-size: 3.5rem;
	font-weight: var(--font-weight-heading);
	margin-bottom: 10px !important;
	position: relative;
	z-index: 100;
}

#projects h4 {
    color: #fff;
	font-family: var(--font-family-heading);
	font-size: 1.5rem;
    font-weight: 300;
	text-transform: none; 
	margin-bottom: -5px;
	position: relative;
	z-index: 100;
}


/* Portfolio Styles
/* ---------------------------------------------------------------------------------------------------- */
#portfolio { 
	background: #e8e5de; 
	
	-webkit-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.35);
	   -moz-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.35);
			box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.35);
}

#portfolio h2 {
    color: #111;
	font-family: var(--font-family-heading);
	font-size: 2rem;	
	font-weight: var(--font-weight-heading);
	text-align: center;
	margin-bottom: 5px;
}

#portfolio #portfolio-wrapper { }

#portfolio #portfolio-flters {
  padding: 0;
  margin: 0 0 45px 0;
  list-style: none;
  text-align: center;
}

#portfolio #portfolio-flters li {
  cursor: pointer;
  margin: 0 10px;
  display: inline-block;
  padding: 10px 22px;
  font-size: 0.85rem;
  line-height: 1.5rem;
  color: #eee;
  border-radius: 4px;
  text-transform: uppercase;
  background: #bbb;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

#portfolio #portfolio-flters li:hover, #portfolio #portfolio-flters li.filter-active {
  background: #F60;
  color: #fff;
}

#portfolio .portfolio-item { }

#portfolio .portfolio-item-inner {
	margin-bottom: 2rem;
	-webkit-box-shadow: 0 1px 6px rgba(0, 0, 0, 0.175);
		    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.175);
	-webkit-backface-visibility: hidden;
		    backface-visibility: hidden;
}

#portfolio .portfolio-item-inner:hover {
	cursor: zoom-in;
	display: block;
	-webkit-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.35);
	   -moz-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.35);
			box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.35);
}

#portfolio .portfolio-item-inner:hover img {
	-webkit-transform: scale(1.3);
		    transform: scale(1.3);
}

#portfolio .portfolio-item .portfolio-img { display: block; overflow: hidden; width: 100%; }

#portfolio .portfolio-item .portfolio-img img { transition: all 1s; width: 100%; }

#portfolio .portfolio-item .details { background: #fff; padding: 1rem 4%; min-height: 130px; }
#portfolio .portfolio-item .details h4.portfolio-item-title { color: #111; font-family: var(--font-family-heading); font-size: 1.25rem; text-align: left; }
#portfolio .portfolio-item .details .portfolio-item-meta { color: #4e4e4e; font-family: var(--font-family-body); font-size: 1rem; }
#portfolio .portfolio-item .details .portfolio-item-meta .portfolio-item-category { }
#portfolio .portfolio-item .details .portfolio-item-meta .portfolio-item-date { }

@media (max-width: 768px) {
	#portfolio .portfolio-item .details h4.portfolio-item-title { font-size: 1.3rem; }
	#portfolio .portfolio-item .details .portfolio-item-meta { font-size: 1rem; }
}



/* Lightbox Styles
/* ---------------------------------------------------------------------------------------------------- */
.mfp-iframe-holder .mfp-content { max-width: 80%; }



/* Experiences Styles
/* ---------------------------------------------------------------------------------------------------- */
#experiences { 
	background-color: #e7e7e7; 
	
	-webkit-box-shadow: inset 0px 0px 20px 0px rgba(0,0,0,0.35);
	   -moz-box-shadow: inset 0px 0px 20px 0px rgba(0,0,0,0.35);
			box-shadow: inset 0px 0px 20px 0px rgba(0,0,0,0.35);
}

#experiences h2.section-title { 
	color: #111;
	font-family: var(--font-family-heading);
	font-size: 2rem;	
	font-weight: var(--font-weight-heading);
	text-align: center;
	margin-bottom: 5px;
}



/* Timeline Styles
/* ---------------------------------------------------------------------------------------------------- */
.timeline {
	list-style: none;
	padding: 10px 0;
	position: relative;
	font-size: 0.9rem;
	font-weight: 300;
}

.timeline:before {
	top: 0;
	bottom: 0;
	position: absolute;
	content: " ";
	width: 2px;
	background: #ffffff;
	left: 50%;
	margin-left: -1px;
}

.timeline > li {
	/* margin-bottom: 30px; */
	margin-left: 0;
	position: relative;
	width: 50%;
	float: left;
	clear: left;
}

.timeline > li,
.timeline > li.timeline-inverted { margin-bottom: 50px; padding-left: 0; }

.timeline > li.timeline-inverted { margin-top: 50px; }

.timeline > li:before,
.timeline > li:after { content: " "; display: table; }

.timeline > li:after { clear: both; }

.timeline > li > .timeline-panel {
	width: calc(100% - 35px);
	width: -moz-calc(100% - 35px);
	width: -webkit-calc(100% - 35px);
	min-height: 150px;
	float: left;
	border: 0px;
	border-radius: 10px;
	position: relative;
	-webkit-box-shadow: 0 1px 6px rgba(0, 0, 0, 0.175);
	box-shadow: 0 1px 6px rgba(0, 0, 0, 0.175);
	background: #ffffff;
}
.timeline > li > .timeline-panel:before {
	position: absolute;
	top: 26px;
	right: -15px;
	display: inline-block;
	border-top: 15px solid transparent;
	border-left: 15px solid #dcdcdc;
	border-right: 0 solid #dcdcdc;
	border-bottom: 15px solid transparent;
	content: " ";
}
.timeline > li > .timeline-panel:after {
	position: absolute;
	top: 27px;
	right: -13px;
	display: inline-block;
	border-top: 14px solid transparent;
	border-left: 14px solid #ffffff;
	border-right: 0 solid #ffffff;
	border-bottom: 14px solid transparent;
	content: " ";
}
.timeline > li > .timeline-badge {
	background-color: #aaa;
	color: #eee;
	font-size: 0.9rem;
	width: 35px;
	height: 35px;
	line-height: 35px;
	text-align: center;
	position: absolute;
	top: 35px;
	right: -17px;
	z-index: 100;
	border-top-right-radius: 50%;
	border-top-left-radius: 50%;
	border-bottom-right-radius: 50%;
	border-bottom-left-radius: 50%;
}

.timeline > li.timeline-inverted > .timeline-panel {
	float: right;
}
.timeline > li.timeline-inverted > .timeline-panel:before {
	border-left-width: 0;
	border-right-width: 15px;
	left: -15px;
	right: auto;
}
.timeline > li.timeline-inverted > .timeline-panel:after {
	border-left-width: 0;
	border-right-width: 14px;
	left: -14px;
	right: auto;
}

.timeline-title { margin-top: 0; color: inherit; }

.timeline-heading h4 {
	font-family: var(--font-family-heading);
	font-size: 1.1rem;
	font-weight: 600;
	letter-spacing: 0;
	padding: 15px;
	color: #414141;
	margin-bottom: -20px;
}
.timeline-heading h5 {
	font-family: var(--font-family-body);
	font-size: 0.85rem;
	font-weight: 300;
    letter-spacing: .1rem;
	padding: 15px 15px 0;
	color: #878787;
	margin-bottom: 0;
	text-transform: uppercase;
}
.timeline-body > p,
.timeline-body > ul {
	font-size: 1rem;
	font-weight: 300;
	padding: 10px 15px;
	margin-bottom: 0;
}
.timeline-footer {
	font-size: 0.85rem;
	font-weight: 600;
	padding: 5px 15px;
	background-color: #f4f4f4;
	color: #F60;
	border-radius: 0 0 10px 10px;
}
.timeline-footer p { font-size: 0.85rem; margin-top: 0.5rem; margin-bottom: 0.5rem; }
.timeline-footer > a {
	cursor: pointer;
	text-decoration: none;
}
.timeline > li.timeline-inverted { float: right; clear: right; }
.timeline > li:nth-child(2) { margin-top: 60px; }
.timeline > li.timeline-inverted > .timeline-badge { top: 25px; left: -18px; }
.no-float { float: none !important; }

@media (max-width: 768px) {
	ul.timeline:before { left: 40px; }
	ul.timeline > li {
		margin-bottom: 0px;
		position: relative;
		width: 100%;
		float: left;
		clear: left;
	}
	ul.timeline > li > .timeline-panel {
		width: calc(100% - 75px);
		width: -moz-calc(100% - 75px);
		width: -webkit-calc(100% - 75px);
	}
	ul.timeline > li > .timeline-badge {
		left: 22px;
		margin-left: 0;
		top: 20px;
	}
	ul.timeline > li > .timeline-panel { float: right; 	}
	ul.timeline > li > .timeline-panel:before {
		border-left-width: 0;
		border-right-width: 15px;
		left: -15px;
		right: auto;
	}
	ul.timeline > li > .timeline-panel:after {
		border-left-width: 0;
		border-right-width: 14px;
		left: -14px;
		right: auto;
	}
	.timeline > li.timeline-inverted {
		float: left;
		clear: left;
		margin-top: 30px;
		margin-bottom: 30px;
	}
	.timeline > li.timeline-inverted > .timeline-badge { left: 28px; }
}


/* Contact Styles
/* ---------------------------------------------------------------------------------------------------- */
#contact {
	background-color: #ddd;
	background-image: url('../../../../../images/bkg_contact.jpg'); 
	background-attachment: scroll;
	background-position: top;
	
	color: #666;
	
	padding-top: 600px;
	
	min-height: 600px;
	
	-webkit-box-shadow: 0px 8px 10px 0px rgba(0,0,0,0.3);
	   -moz-box-shadow: 0px 8px 10px 0px rgba(0,0,0,0.3);
		    box-shadow: 0px 8px 10px 0px rgba(0,0,0,0.3);
}

#contact h2.section-title { 
	color: #111;
    font-family: var(--font-family-heading);
	font-size: 2.5rem;	
	font-weight: var(--font-weight-heading);
	text-align: center;
	margin-bottom: 5px;
}


/* Portfolio Article Styles
/* ---------------------------------------------------------------------------------------------------- */
.page-header.portfolio {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    height: calc(40vh);
    min-height: 700px;
    position: relative;
    color: #fff;
}

.page-header.portfolio:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1;
}

.page-header.portfolio h1 {
    color: #fff;
    font-size: 3rem;
    font-weight: 700 !important;
    line-height: 1.2;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 30px;
    margin-left: 0.5em;
    position: relative;
    z-index: 2;
}

.portfolio-intro h3,
.portfolio-details h3 { color:#111; font-size: 1.45rem; font-weight: var(--font-weight-heading); }

.portfolio-intro p,
.portfolio-intro ol li,
.portfolio-intro ul li { font-size: 1.15rem ; }

.portfolio-details p,
.portfolio-details ol li,
.portfolio-details ul li { font-size: 1rem ; }

.portfolio-intro { padding: 0 30px 0 0; }

.portfolio-info {
    padding: 30px;
    box-shadow: 0px 0 10px rgba(21, 21, 21, 0.2);
}

.portfolio-info [class|="col"] { margin-bottom: 0 !important; }

.portfolio-info h5 { color:#111; font-size: 1.1rem; font-weight: var(--font-weight-heading); }

.portfolio-info ul { margin-left: 0; padding-left: 0; }
.portfolio-info ul li { font-size: 0.95rem; list-style: none; margin-left: 0; margin-bottom: .5rem; padding-left: 0;  }

.portfolio-info p,
.portfolio-info ul li { color: #818181;  }

.portfolio-info ul.attributes { --icon-size: 1em; --gutter: .5em; padding: 0 0 0 var(--icon-size);}
.portfolio-info ul.attributes li { padding-left: var(--gutter); }
.portfolio-info ul.attributes li::marker {
    content: "\f058";
    color: #669900;
    font-family: "Font Awesome 6 Free";
    font-size: var(--icon-size);
    font-weight: 900;
}