/* ----------------------------------------------------------------
	Canvas: Resume
-----------------------------------------------------------------*/

#header {
	z-index: 299;
}

.menu-container > .menu-item > .menu-link i {
	display: none;
}

@media (min-width: 992px) {

	.menu-container > .menu-item:not(:first-child) { margin-left: 17px; }

	.menu-container > .menu-item > .menu-link {
		width: 50px;
		height: 50px;
		line-height: 50px;
		margin: 18px 0;
		padding: 0;
		color: #FFF;
		font-size: 20px;
		letter-spacing: 0;
		text-align: center;
		border-radius: 50%;
		background-color: #F9F9F9;
		color: #333;
		box-shadow: 0 7px 14px rgba(0,0,0,0.13), 0 5px 5px rgba(0,0,0,0.08);
		transition: all .3s ease;
	}

	.menu-container > .menu-item > .menu-link div {
		opacity: 0;
		position: absolute;
		text-align: center;
		font-size: 13px;
		font-weight: bold;
		letter-spacing: 1px;
		color: #FFF;
		font-family: 'Source Sans Pro', sans-serif;
		text-transform: uppercase;
		-webkit-transition-delay: 0.35s;
		transition-delay: 0.35s;
		margin-left: 50%;
		-webkit-transform: translate3d(-50%, -20px, 0);
		transform: translate3d(-50%, -20px, 0);
		-webkit-transition: all 400ms cubic-bezier(0.2, 1, 0.3, 1);
		-moz-transition: all 400ms cubic-bezier(0.2, 1, 0.3, 1);
		-ms-transition: all 400ms cubic-bezier(0.2, 1, 0.3, 1);
		-o-transition: all 400ms cubic-bezier(0.2, 1, 0.3, 1);
		transition: all 400ms cubic-bezier(0.2, 1, 0.3, 1);
		-webkit-backface-visibility: hidden;
		text-shadow: 0 0px 7px rgba(0,0,0,0.4), 0 0px 7px rgba(0,0,0,0.2);
	}

	.menu-container > .menu-item > .menu-link:hover div {
		opacity: 1 !important;
		-webkit-transition: -webkit-transform 1.2s, opacity 1.2s;
		transition: transform 1.2s, opacity 1.2s;
		-webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
		transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
		-webkit-transform: translate3d(-50%, -10px, 0);
		transform: translate3d(-50%, -10px, 0);
	}

	.menu-container > .menu-item > .menu-link i {
		display: block;
		position: relative;
		font-size: 16px;
		width: 52px;
		height: 52px;
		line-height: 50px;
		text-align: center;
		margin-right: 0;
		vertical-align: middle;
		border-radius: 50%;
	}

	.menu-container > .menu-item:hover > .menu-link,
	.menu-container > .menu-item.current > .menu-link {
		background-color: #7B6ED6;
		color: #FFF !important;
	}

	#header.sticky-header.transparent-header.sticky-transparent #header-wrap {
		background-color: transparent;
		box-shadow: none;
	}

	#header.sticky-header.transparent-header.sticky-transparent #header-wrap .primary-menu ul li > a div { opacity: 0; }

	#logo a {
		color: #FFF;
		font-size: 26px;
		font-weight: 600;
		letter-spacing: -0.5px;
		text-shadow: 0 4px 10px rgba(0,0,0,0.4), 0 4px 4px rgba(0,0,0,0.2);
	}

	.slider-element .slider-caption h2 {
		font-weight: 900;
		font-size: 80px;
	}

}

.slider-element .slider-caption p {
	font-size: 24px;
	color: #AAA;
}

.slider-element .more-link {
	font-size: 22px;
	font-style: normal;
}

.page-section { padding: 120px 0; }

.heading-block h2 {
	font-size: 38px;
	font-weight: 700;
	text-transform: none;
	letter-spacing: 0;
}

.demo-resume-works [class^=col-] {
	position: relative;
	margin: 0;
	padding: 0;
}

.demo-resume-works [class^=col-] > a {
	display: block;
	position: relative;
	height: 450px;
	background-color: #EEE;
}

.demo-resume-works .resume-works-overlay {
	position: absolute;
	opacity: 0;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding: 50px;
	background-color: rgba(0,0,0,0.7);
	-webkit-transition: opacity .3s ease;
	-o-transition: opacity .3s ease;
	transition: opacity .3s ease;
}

.demo-resume-works [class^=col-] > a:hover .resume-works-overlay { opacity: 1; }

.demo-resume-works .resume-works-overlay h3 {
	position: relative;
	top: -30px;
	opacity: 0;
	font-family: 'Playfair Display', serif;
	font-weight: 400;
	-webkit-transition: all .3s .15s ease;
	-o-transition: all .3s .15s ease;
	transition: all .3s .15s ease;
}

.demo-resume-works .resume-works-overlay span {
	position: relative;
	top: -20px;
	opacity: 0;
	text-transform: uppercase;
	margin-top: 5px;
	font-weight: 300;
	font-size: 15px;
	-webkit-transition: all .3s .25s ease;
	-o-transition: all .3s .25s ease;
	transition: all .3s .25s ease;
}

.demo-resume-works [class^=col-] > a:hover .resume-works-overlay h3,
.demo-resume-works [class^=col-] > a:hover .resume-works-overlay span {
	top: 0;
	opacity: 1;
}

.blurred-img {
    -webkit-transform: scale(1.01) translate3d(0,0,0);
    -ms-transform: scale(1.01) translate3d(0,0,0);
    -o-transform: scale(1.01) translate3d(0,0,0);
    transform: scale(1.01) translate3d(0,0,0);
    -webkit-filter: blur(8px);
    filter: blur(8px);
    -webkit-backface-visibility: hidden;
    opacity: 0;
    display: none;
}

.blurred-img.blurred-image-visible { display: block; }

.y-video .icon-play {
	position: absolute;
	top: 50%;
	left: 50%;
	font-size: 60px;
	color: #FFF;
	margin-top: -45px;
	margin-left: -23px;
	-webkit-transition: transform .3s ease;
	-o-transition: transform .3s ease;
	transition: transform .3s ease;
}

.y-video:hover .icon-play {
	-webkit-transform: scale(1.15);
	-ms-transform: scale(1.15);
	-o-transform: scale(1.15);
	transform: scale(1.15);
}

.mfp-iframe-holder .mfp-content { max-width: 80% !important; }

.table > thead > tr > th,
.table > tbody > tr > th,
.table > tfoot > tr > th,
.table > thead > tr > td,
.table > tbody > tr > td,
.table > tfoot > tr > td { padding: 12px 8px; }

.niche-demos-lists { list-style: none; }

.device-xl .niche-demos-lists.lists-2,
.device-lg .niche-demos-lists.lists-2 { margin-left: 30px }

.niche-demos-lists li a {
	font-size: 19px;
	color: #000;
	font-weight: 700;
	line-height: 1.5;
}

.niche-demos-lists li { margin-top: 8px; }

.niche-demos-lists li a img {
	display: inline-block;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	margin-right: 10px;
	border: 2px solid #FFF;
}

.skill-area h4 {
	font-size: 20px;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: rgba(255, 255, 255, 0.7);
}

.skill-area .skill-info {
	border-left: 1px solid rgba(255, 255, 255, 0.2);
	padding-left: 25px;
}

.skill-area .skill-info span {
	display: block;
	margin-top: 30px;
	font-size: 17px;
}

.skill-area span:first-child { margin-top: 0; }

.skills li:not(:first-child) { margin-top: 50px; }

.entry-box-shadow { box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.09); }

.entry .entry-title { margin-top: 8px; }

.entry .entry-title { margin-top: 13px; }

.entry::after { display: none; }

.post-grid .entry-image img {
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
}

.entry-meta-wrapper {
	background-color: #FFF;
	padding: 30px;
	border-bottom-left-radius: 4px;
	border-bottom-right-radius: 4px;
}

.dark .skills li > span {
	font-weight: 300;
	color: #FFF;
	letter-spacing: 3px;
	top: -24px;
}

.skills li .progress,
.dark .skills li .progress-percent {
	background-color: #FFF !important;
	color: #333;
	text-shadow: none;
	font-size: 12px;
}

.dark .progress-percent::after,
.dark .progress-percent::before { border-top-color: #FFF !important; }



/* ----------------------------------------------------------------
	Colors

	Replace the HEX Code with your Desired Color HEX
-----------------------------------------------------------------*/


::selection { background: #7B6ED6; }

::-moz-selection { background: #7B6ED6; }

::-webkit-selection { background: #7B6ED6; }


a,
h1 > span:not(.nocolor):not(.badge),
h2 > span:not(.nocolor):not(.badge),
h3 > span:not(.nocolor):not(.badge),
h4 > span:not(.nocolor):not(.badge),
h5 > span:not(.nocolor):not(.badge),
h6 > span:not(.nocolor):not(.badge),
.header-extras li .he-text span,
.menu-item:hover > .menu-link,
.menu-item.current > .menu-link,
.dark .menu-item:hover > .menu-link,
.dark .menu-item.current > .menu-link,
.top-cart-item-desc a:hover,
.top-cart-action .top-checkout-price,
.breadcrumb a:hover,
.grid-filter li a:hover,
.portfolio-desc h3 a:hover,
#portfolio-navigation a:hover,
.entry-title h2 a:hover,
.entry-title h3 a:hover,
.entry-title h4 a:hover,
.post-timeline .entry:hover .entry-timeline,
.post-timeline .entry:hover .timeline-divider,
.comment-content .comment-author a:hover,
.product-title h3 a:hover,
.single-product .product-title h2 a:hover,
.product-price ins,
.single-product .product-price,
.process-steps li.active h5,
.process-steps li.ui-tabs-active h5,
.tab-nav-lg li.ui-tabs-active a,
.team-title span,
.btn-link,
.page-link,
.page-link:hover,
.page-link:focus,
.fbox-plain .fbox-icon i,
.fbox-plain .fbox-icon img,
.fbox-border .fbox-icon i,
.fbox-border .fbox-icon img,
.dark .menu-item:hover > .menu-link,
.dark .menu-item.current > .menu-link,
.dark .top-cart-item-desc a:hover,
.dark .breadcrumb a:hover,
.dark .portfolio-desc h3 a:hover,
.dark #portfolio-navigation a:hover,
.dark .entry-title h2 a:hover,
.dark .entry-title h3 a:hover,
.dark .entry-title h4 a:hover,
.dark .product-title h3 a:hover,
.dark .single-product .product-title h2 a:hover,
.dark .product-price ins,
.dark .tab-nav-lg li.ui-tabs-active a { color: #7B6ED6; }

.color,
.h-text-color:hover,
a.h-text-color:hover,
.grid-filter.style-3 li.activeFilter a,
.faqlist li a:hover,
.tagcloud a:hover,
.nav-tree li:hover > a,
.nav-tree li.current > a,
.nav-tree li.active > a { color: #7B6ED6 !important; }

.top-cart-number::before,
#page-menu-wrap,
.page-menu-nav,
.control-solid .flex-control-nav li:hover a,
.control-solid .flex-control-nav li a.flex-active,
.grid-filter li.activeFilter a,
.grid-filter.style-4 li.activeFilter a::after,
.grid-shuffle:hover,
.entry-link:hover,
.button,
.button.button-dark:hover,
.button.button-3d:hover,
.fbox-icon i,
.fbox-icon img,
.fbox-effect.fbox-dark .fbox-icon i:hover,
.fbox-effect.fbox-dark:hover .fbox-icon i,
.fbox-border.fbox-effect.fbox-dark .fbox-icon i::after,
.i-rounded:hover,
.i-circled:hover,
.tab-nav.tab-nav2 li.ui-state-active a,
.testimonial .flex-control-nav li a,
.skills li .progress,
.owl-carousel .owl-dots .owl-dot,
#gotoTop:hover,
input.switch-toggle-round:checked + label::before,
input.switch-toggle-flat:checked + label,
input.switch-toggle-flat:checked + label::after,
.nav-pills > li.active > a,
.nav-pills > li.active > a:hover,
.nav-pills > li.active > a:focus,
input.switch-toggle-round:checked + label::before,
input.switch-toggle-flat:checked + label,
input.switch-toggle-flat:checked + label::after,
.dark .entry-link:hover,
.dark .fbox-effect.fbox-dark .fbox-icon i:hover,
.dark .fbox-effect.fbox-dark:hover .fbox-icon i,
.dark .fbox-border.fbox-effect.fbox-dark .fbox-icon i::after,
.dark .i-rounded:hover,
.dark .i-circled:hover,
.dark .tab-nav.tab-nav2 li.ui-state-active a,
.dark #gotoTop:hover,
.dark input.switch-toggle-round:checked + label::before,
.dark input.switch-toggle-flat:checked + label,
.dark input.switch-toggle-flat:checked + label::after { background-color: #7B6ED6; }

.bg-color,
.bg-color #header-wrap,
.h-bg-color:hover,
.process-steps li.active a,
.process-steps li.ui-tabs-active a,
.sidenav > .ui-tabs-active > a,
.sidenav > .ui-tabs-active > a:hover,
.owl-carousel .owl-nav [class*=owl-]:hover,
.widget-filter-links li.active-filter span,
.page-item.active .page-link,
.page-link:hover,
.page-link:focus { background-color: #7B6ED6 !important; }

.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-themecolor,
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-themecolor,
.checkbox-style:checked + .checkbox-style-1-label::before,
.checkbox-style:checked + .checkbox-style-2-label::before,
.checkbox-style:checked + .checkbox-style-3-label::before,
.radio-style:checked + .radio-style-3-label::before { background: #7B6ED6; }

.irs-bar,
.irs-from,
.irs-to,
.irs-single,
.irs-handle > i:first-child,
.irs-handle.state_hover > i:first-child,
.irs-handle:hover > i:first-child { background-color: #7B6ED6 !important; }

.top-cart-item-image:hover,
.grid-filter.style-3 li.activeFilter a,
.post-timeline .entry:hover .entry-timeline,
.post-timeline .entry:hover .timeline-divider,
.cart-product-thumbnail img:hover,
.fbox-outline .fbox-icon a,
.fbox-border .fbox-icon a,
.heading-block.border-color::after,
.page-item.active .page-link,
.page-link:focus,
.dark .cart-product-thumbnail img:hover { border-color: #7B6ED6; }

.border-color,
.process-steps li.active a,
.process-steps li.ui-tabs-active a,
.tagcloud a:hover,
.page-link:hover { border-color: #7B6ED6 !important; }

.top-links-sub-menu,
.top-links-section,
.tabs-tb .tab-nav li.ui-tabs-active a,
.dark .top-links-sub-menu,
.dark .top-links-section,
.dark .tabs-tb .tab-nav li.ui-tabs-active a { border-top-color: #7B6ED6; }

.title-border-color::before,
.title-border-color::after,
.irs-from::after,
.irs-single::after,
.irs-to::after,
.irs-from::before,
.irs-to::before,
.irs-single::before { border-top-color: #7B6ED6 !important; }

.title-block { border-left-color: #7B6ED6; }

.rtl .title-block {
	border-left-color: transparent;
	border-right-color: #7B6ED6;
}

.title-block-right { border-right-color: #7B6ED6; }

.rtl .title-block-right {
	border-right-color: transparent;
	border-left-color: #7B6ED6;
}

.more-link,
.tabs-bb .tab-nav li.ui-tabs-active a,
.title-bottom-border h1,
.title-bottom-border h2,
.title-bottom-border h3,
.title-bottom-border h4,
.title-bottom-border h5,
.title-bottom-border h6 { border-bottom-color: #7B6ED6; }

.fbox-effect.fbox-dark .fbox-icon i::after,
.dark .fbox-effect.fbox-dark .fbox-icon i::after { box-shadow: 0 0 0 2px #7B6ED6; }

.fbox-border.fbox-effect.fbox-dark .fbox-icon i:hover,
.fbox-border.fbox-effect.fbox-dark:hover .fbox-icon i,
.dark .fbox-border.fbox-effect.fbox-dark .fbox-icon i:hover,
.dark .fbox-border.fbox-effect.fbox-dark:hover .fbox-icon i { box-shadow: 0 0 0 1px #7B6ED6; }


@media (min-width: 992px) {

	.sub-menu-container .menu-item:hover > .menu-link,
	.mega-menu-style-2 .mega-menu-title > .menu-link:hover,
	.dark .mega-menu-style-2 .mega-menu-title:hover > .menu-link { color: #7B6ED6; }

	.style-3 .menu-container > .menu-item.current > .menu-link,
	.sub-title .menu-container > .menu-item:hover > .menu-link::after,
	.sub-title .menu-container > .menu-item.current > .menu-link::after,
	.page-menu-sub-menu,
	.dots-menu .page-menu-item.current > a,
	.dots-menu .page-menu-item div,
	.dark .style-3 .menu-container > .menu-item.current > .menu-link { background-color: #7B6ED6; }

	.style-4 .menu-container > .menu-item:hover > .menu-link,
	.style-4 .menu-container > .menu-item.current > .menu-link,
	.dots-menu.dots-menu-border .page-menu-item.current > a { border-color: #7B6ED6; }

	.sub-menu-container,
	.mega-menu-content,
	.style-6 .menu-container > .menu-item > .menu-link::after,
	.style-6 .menu-container > .menu-item.current > .menu-link::after,
	.top-cart-content,
	.dark .sub-menu-container,
	.dark .mega-menu-content,
	.dark .top-cart-content { border-top-color: #7B6ED6; }

	.dots-menu .page-menu-item div::after { border-left-color: #7B6ED6; }

	.rtl .dots-menu .page-menu-item div::after {
		border-left-color: transparent;
		border-right-color: #7B6ED6;
	}
}