/*=======================================================
	
	Projects Name: 	Zack Zhang's Portfolio
		
--------------------------------------------------------------------------------------
	List Of Contents
--------------------------------------------------------------------------------------
	
	01. General Styles
	
	02. Menu
	
	03. Section Styles
	
	04. Main Section
	
	05. About Section
	
	06. Portfolio Section
	
	07. Contact Section
	
	08. Responsive CSS

=========================================================*/

/*=======================================================
	General Styles
=======================================================*/

@import url(https://fonts.googleapis.com/css?family=Roboto+Mono:400,500,700,300,100|Lora:400,400italic,700,700italic);
body, html{
	height:100%;
	width:100%;
	scroll-behavior: smooth;
}
body{
	position:relative;
	overflow:hidden;
	font-family: Lora, serif;
	background:#F0F0F0 !important;
}
*{
	font-family: inherit;
}
.view-project,
.portfolio-filters > li > a,
.p-table > .header,
.info-list > li > strong,
.btn-custom,
.menu-items > li > a,
h1, h2, h3, h4, h5, h6{
	font-family: 'Roboto Mono', sans-serif;
}
.color{
	color:#303F9F;
}
::-webkit-scrollbar{
	background:#F0F0F0;
	height:10px;
	width:10px;
}
::-webkit-scrollbar-thumb{
	background:#D0D0D0;
	border:solid 2px #F0F0F0;
}
::-webkit-scrollbar-thumb:hover{
	background:#A0A0A0;
}
img{
	max-width:100%;
}


/*=======================================================
	Menu
=======================================================*/
body.border-dark .menu-btn > .lines > span{
	background:#303F9F;
}
.menu-btn > .lines > .l2{
	margin:6px 0;
}

.menu{
	position:absolute;
	z-index:399;
	background:rgba(0,0,0,.9);
	top:0;
	right:0;
	height:100%;
	width:0;
	-webkit-transition:width .6s cubic-bezier(.785,.135,.15,.86);
	-moz-transition:width .6s cubic-bezier(.785,.135,.15,.86);
	transition:width .6s cubic-bezier(.785,.135,.15,.86);
	overflow:hidden;
}

.menu > .inner{
	height:100%;
	width:300px;
	position:absolute;
	right:0;
	top:0;
}
.menu-items{
	margin:0;
	padding:0;
	list-style:none;
	position:absolute;
	width:100%;
	top:50%;
	left:0;
	-webkit-transform:translateY(-50%);
	-moz-transform:translateY(-50%);
	-ms-transform:translateY(-50%);
	-o-transform:translateY(-50%);
	transform:translateY(-50%);
	text-align:center;
}
.menu-items > li > a{
	color:#FFF;
	color:rgba(255,255,255,.6);
	font-size:18px;
	font-weight:700;
	text-decoration:none;
	text-transform:uppercase;
	letter-spacing:4px;
	padding:10px 0;
	margin:2px 0;
	display:block;
	-webkit-transition:color .3s cubic-bezier(.785,.135,.15,.86);
	-moz-transition:color .3s cubic-bezier(.785,.135,.15,.86);
	transition:color .3s cubic-bezier(.785,.135,.15,.86);
}
.menu-items > li > a:hover{
	color:#FFF;
}
.main-content > .page-border{
	position:absolute;
	border:solid 1px #FFF;
	border-color:rgba(255,255,255,.4);
	z-index:999;
	-webkit-transition:border-color 2.5s cubic-bezier(.785,.135,.15,.86);
	-moz-transition:border-color 2.5s cubic-bezier(.785,.135,.15,.86);
	transition:border-color 2.5s cubic-bezier(.785,.135,.15,.86);
}
body.border-dark .main-content > .page-border{
	border-color:#303F9F;
}
.main-content > .border-top,
.main-content > .border-bottom{
	height:7px;
	left:20px;
	right:20px;
}
.main-content > .border-top{
	top:14px;
}
.main-content > .border-bottom{
	bottom:14px;
}
.main-content > .border-left,
.main-content > .border-right{
	width:7px;
	top:20px;
	bottom:20px;
}
.main-content > .border-right{
	right:14px;
}
.main-content > .border-left{
	left:14px;
}


/*=======================================================
	Section Styles
=======================================================*/
.main-content{
	position:fixed;
	top:40px;
	left:40px;
	right:40px;
	bottom:40px;
	z-index:99;
	overflow:hidden;
	box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}
.section{
	position:absolute;
	top:0;
	left:0;
	right:0;
	bottom:0;
	overflow:auto;
	z-index:-1;
	visibility:hidden;
	padding-top:110px;
	background:#F0F0F0;
}
.section.active{
	visibility:visible;
	z-index:99;
}
.section-header{
	position:relative;
}
.section-header > h2{
	font-size:28px;
	font-weight:200;
	margin:0;
	text-transform:uppercase;
	letter-spacing:4px;
}
.section-block{
	padding:110px;
	padding-top:0;
}
body.section-switching .main-content:before,
body.section-switching .main-content:after{
	z-index:299;
}
body.border-dark .main-content:before,
body.border-dark .main-content:after{
	border-color:#303F9F;
}
.sections{
	height:100%;
	width:100%;
}


/*=======================================================
	Main Section
=======================================================*/
.section-main{
	background-size:cover;
	background-image:url(../img/bg.jpg);
}
.section-main:before{
	content: ' ';
	position:absolute;
	top:0;
	left:0;
	height:100%;
	width:100%;
	background:#303F9F;
	opacity:.8;
	z-index:-1;
}
.intro-text{
	padding:20px;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.intro-text_div {
	display: flex;
	flex-direction: column;
	text-align: start;
	width: fit-content;
}
.intro-text_div> h1 {
	margin:0;
	color:#FFF;
	text-transform:uppercase;
	font-weight:900;
	letter-spacing:8px;
	font-size:78px;
  	padding: 10px 15px;
}
.intro-text_div > h2{
	margin:0;
	color:#FFF;
	color:rgba(255,255,255,.8);
	text-transform:uppercase;
	font-weight:400;
	letter-spacing:8px;
	padding: 10px 15px 15px 15px;
	font-style: italic;
}
.intro-text_div > h6{
	font-size:18px;
	color:#FFF;
	color:rgba(255,255,255,.8);
	text-transform:uppercase;
	margin-top:15px;
	margin-bottom:0;
	font-weight:400;
	padding: 10px 15px;
  letter-spacing:4px;
  font-style: italic
}
.intro-btns{
	margin-top:30px;
}
.intro-btns > .btn-custom{
	margin: 15px;
}
.intro-media a {
	text-decoration: none;
}
.intro-media a > svg{
	width: 2em;
	margin: 1em;
	transition: all .2s ease-in-out;
	cursor: pointer;
}

.intro-media a > svg:hover {
	transform: scale(1.7);
}
a.btn-custom{
	color:#FFF;
	text-decoration: none;
}
.btn-custom{
	color:#FFF;
	letter-spacing:4px;
	text-transform:uppercase;
	text-decoration:none;
	text-align:center;
	font-size:11px;
	font-weight:400;
	display:inline-block;
	*display:inline;
	*zoom:1;
	line-height:1em;
	padding:17px 32px;
	position:relative;
	z-index:5;
	background:transparent;
	border:none;
}
.btn-custom:after{
	content: ' ';
	position:absolute;
	top:0;
	left:-10px;
	right:-10px;
	bottom:0;
	-webkit-transform:rotate(-4deg);
	-moz-transform:rotate(-4deg);
	-ms-transform:rotate(-4deg);
	-o-transform:rotate(-4deg);
	transform:rotate(-4deg);
	z-index:-1;
	opacity:0;
	visibility:hidden;
	background:rgba(0,0,0,.3);
	-webkit-transition:all .3s cubic-bezier(.785,.135,.15,.86);
	-moz-transition:all .3s cubic-bezier(.785,.135,.15,.86);
	transition:all .3s cubic-bezier(.785,.135,.15,.86);
}
.btn-custom:before{
	content: ' ';
	position:absolute;
	top:0;
	left:0;
	right:0;
	bottom:0;
	z-index:2;
	border:solid 1px #FFF;
	border-color:rgba(255,255,255,.8);
}
.btn-custom:hover:after{
	opacity:1;
	visibility:visible;
}
.btn-custom.btn-color:after{
	background:#303F9F;
}
.btn-custom.btn-color:hover:after{
	opacity:.4;
}
.btn-custom.btn-color{
	color:#202020;
}
.btn-custom.btn-color > span:before,
.btn-custom.btn-color > span:after{
	background:rgba(0,0,0,.2);
}
.btn-custom.btn-color:before{
	border-color:rgba(0,0,0,.2);
}
body.section-switching .animation-block{
	position:absolute;
	left:0;
	height:0%;
	width:100%;
	background:#E0E0E0;
	z-index:199;
}
body.section-switching.down .animation-block{
	-webkit-animation: anim-down 2.5s cubic-bezier(.785,.135,.15,.86);
	-moz-animation: anim-down 2.5s cubic-bezier(.785,.135,.15,.86);
	animation: anim-down 2.5s cubic-bezier(.785,.135,.15,.86);
}
body.section-switching.up .animation-block{
	-webkit-animation: anim-up 2.5s cubic-bezier(.785,.135,.15,.86);
	-moz-animation: anim-up 2.5s cubic-bezier(.785,.135,.15,.86);
	animation: anim-up 2.5s cubic-bezier(.785,.135,.15,.86);
}
@-webkit-keyframes anim-down{
	0%{
		bottom:0;
		height:0;
	}
	45%{
		bottom:0;
		height:100%;
	}
	55%{
		bottom:0;
		height:100%;
	}
	100%{
		height:0%;
		top:0;
	}
}
@-moz-keyframes anim-down{
	0%{
		bottom:0;
		height:0;
	}
	45%{
		bottom:0;
		height:100%;
	}
	55%{
		bottom:0;
		height:100%;
	}
	100%{
		height:0%;
		top:0;
	}
}
@keyframes anim-down{
	0%{
		bottom:0;
		height:0;
	}
	45%{
		bottom:0;
		height:100%;
	}
	55%{
		bottom:0;
		height:100%;
	}
	100%{
		height:0%;
		top:0;
	}
}
@-webkit-keyframes anim-up{
	0%{
		top:0;
		height:0;
	}
	45%{
		top:0;
		height:100%;
	}
	55%{
		top:0;
		height:100%;
	}
	55.1%{
		bottom:0;
		top:auto;
		height:100%;
	}
	100%{
		height:0%;
		bottom:0;
		top:auto;
	}
}
@-moz-keyframes anim-up{
	0%{
		top:0;
		height:0;
	}
	45%{
		top:0;
		height:100%;
	}
	55%{
		top:0;
		height:100%;
	}
	55.1%{
		bottom:0;
		top:auto;
		height:100%;
	}
	100%{
		height:0%;
		bottom:0;
		top:auto;
	}
}
@keyframes anim-up{
	0%{
		top:0;
		height:0;
	}
	45%{
		top:0;
		height:100%;
	}
	55%{
		top:0;
		height:100%;
	}
	55.1%{
		bottom:0;
		top:auto;
		height:100%;
	}
	100%{
		height:0%;
		bottom:0;
		top:auto;
	}
}
.section-main{
	padding:0;
}
.section-main, .section-main > .container-fluid{
	height:100%;
	width:100%;
}
.v-align{
	display:table;
	height:100%;
	width:100%;
}
.v-align > .inner{
	height:100%;
	width:100%;
	display:table-cell;
	vertical-align:middle;
}


/*=======================================================
	About Section
=======================================================*/
.about-section{
	background:#F0F0F0;
}
.about-block .section-header{
	margin-bottom:80px;
}
.about-text > p{
	font-size:14px;
	color:rgba(0,0,0,.4);
	line-height:1.8em;
}
.about-text{
	margin-bottom:25px;
}
.about-btns {
	margin-top: 3em;
	margin-bottom: 5em;
}
.about-btns > .btn-custom{
	margin-right:25px;
	margin-bottom: 1em;
}
.skillsArrow {
	width: 100%;
	text-align: center;
	font-size: 2em;
}
.info-list{
	padding:0;
	margin:0;
	list-style:none;
}
.info-list > li{
	padding:14px 0;
	border-bottom:solid 1px rgba(0,0,0,.1);
}
.info-list > li:last-of-type{
	border:none;
}
.info-list > li > strong{
	letter-spacing:4px;
	color:#202020;
	text-transform:uppercase;
}
.info-list > li > span{
	font-size: 14px;
	color:rgba(0,0,0,.4);
}
.skill_row {
	display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    width: 100%;
}
.skills-block .section-header{
	margin:80px 0;
}

.skill_row > .row > .col-3 {
	padding: 0 !important;
	transition: all .2s ease-in-out;
} 

.skill_row > .row > .col-3 > p {
	font-size: 12px;
	color: #202020;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-family: sans-serif;
} 
.skill_row > .row > .col-3:hover {
	transform: translateY(-20px);
} 

.col-3 > svg {
	margin: .5em auto;
	width: 100%;
	max-width: 6.5em;
	padding: 1em;
	margin-bottom: 1em;
	cursor: pointer;
	border: solid 1px  rgba(0,0,0,.4);
	transition: all .2s ease-in-out;
	border-radius: 10px;
	box-shadow: 0px 10px 10px 5px hsl(255deg 50% 90%);
	transform: translateY(0px);
}

.col-3 > svg:hover {
	padding: .5em;
	/* transform: scale(1.2); */
}
.skill > h5{
	font-weight:500;
	letter-spacing:2px;
	text-transform:uppercase;
	font-size:14px;
	margin-bottom: 5px;
}
.skill > .bar{
	background:#E0E0E0;
}
.skill > .bar > .percent{
	background:#303F9F;
	width:10%;
	height:6px;
}
.menu-btn{
	font-size:0;
	display:block;
	position:absolute;
	top:20px;
	right:20px;
	padding:25px;
	z-index:499;
}
.menu-btn > .lines{
	display:block;
	width:36px;
}
.menu-btn > .lines > span{
	display:block;
	width:100%;
	height:3px;
	background:#FFF;
	-webkit-transition:background 2.5s cubic-bezier(.785,.135,.15,.86);
	-moz-transition:background 2.5s cubic-bezier(.785,.135,.15,.86);
	transition:background 2.5s cubic-bezier(.785,.135,.15,.86);
}

/*=======================================================
	Portfolio Section
=======================================================*/
.portfolio-block .section-header{
	margin-bottom:80px;
}
.portfolio-filters,
.portfolio-items{
	position:relative;
	list-style:none;
	font-size:0;
	margin:0;
	padding:0;
}
.portfolio-filters{
	margin-bottom:25px;
}
.portfolio-filters > li{
	display:inline-block;
	*display:inline;
	*zoom:1;
	margin-right:25px;
}
.portfolio-filters > li > a{
	display:block;
	font-size:16px;
	font-weight:500;
	color:rgba(0,0,0,.4);
	text-decoration:none;
	text-transform:uppercase;
	letter-spacing:4px;
	padding:15px 0;
	margin:-15px 0;
}
.portfolio-filters > li > a.active,
.portfolio-filters > li > a:hover{
	color:#202020;
}
.portfolio-items{
	margin:-5px;
	overflow:visible !important;
}
.portfolio-items > li{
	width:33.3333%;
}
.portfolio-items > li > .inner{
	margin:5px;
	position:relative;
}
.portfolio-items > li{
	z-index:2;
}
.portfolio-items > li:hover{
	z-index:9;
}
.portfolio-items > li > .inner > .overlay:before{
	content: ' ';
	position:absolute;
	top:0;
	bottom:0;
	right:-10px;
	left:-10px;
	background:#303F9F;
	opacity:.9;
	-webkit-transform:rotate(0deg) scale(0);
	-moz-transform:rotate(0deg) scale(0);
	-ms-transform:rotate(0deg) scale(0);
	-o-transform:rotate(0deg) scale(0);
	transform:rotate(0deg) scale(0);
	-webkit-transition:all .3s cubic-bezier(.785,.135,.15,.86);
	-moz-transition:all .3s cubic-bezier(.785,.135,.15,.86);
	transition:all .3s cubic-bezier(.785,.135,.15,.86);
}
.portfolio-items > li > .inner:hover > .overlay:before{
	-webkit-transform:rotate(-10deg) scale(1);
	-moz-transform:rotate(-10deg) scale(1);
	-ms-transform:rotate(-10deg) scale(1);
	-o-transform:rotate(-10deg) scale(1);
	transform:rotate(-10deg) scale(1);
}
.portfolio-items > li > .inner:hover > .overlay{
	opacity:1;
}
.portfolio-items > li > .inner > .overlay{
	position:absolute;
	top:0;
	left:0;
	right:0;
	bottom:0;
	z-index:10;
	text-align:center;
	opacity:0;
	-webkit-transition:all .3s cubic-bezier(.785,.135,.15,.86);
	-moz-transition:all .3s cubic-bezier(.785,.135,.15,.86);
	transition:all .3s cubic-bezier(.785,.135,.15,.86);
}
.portfolio-items > li > .inner > .overlay > .view-project{
	font-size:18px;
	line-height:18px;
	vertical-align:middle;
	position:absolute;
	top:50%;
	margin-top:-29px;
	color:#FFF;
	color:rgba(255,255,255,.6);
	text-decoration:none;
	left:0;
	right:0;
	padding:20px 0;
	text-transform:uppercase;
	letter-spacing:2px;
	-webkit-transition:all .3s cubic-bezier(.785,.135,.15,.86);
	-moz-transition:all .3s cubic-bezier(.785,.135,.15,.86);
	transition:all .3s cubic-bezier(.785,.135,.15,.86);
}
.portfolio-items > li > .inner > .overlay > .view-project:hover{
	color:#FFF;
}
/*== Project Popup ==*/
.mfp-bg{
	background:#303F9F;
}
.my-mfp-zoom-in .zoom-anim-dialog {
	opacity: 0;
	-webkit-transition: all 0.2s ease-in-out; 
	-moz-transition: all 0.2s ease-in-out; 
	-o-transition: all 0.2s ease-in-out; 
	transition: all 0.2s ease-in-out; 
	-webkit-transform: scale(0.8); 
	-moz-transform: scale(0.8); 
	-ms-transform: scale(0.8); 
	-o-transform: scale(0.8); 
	transform: scale(0.8); 
}
.my-mfp-zoom-in.mfp-ready .zoom-anim-dialog {
	opacity: 1;
	-webkit-transform: scale(1); 
	-moz-transform: scale(1); 
	-ms-transform: scale(1); 
	-o-transform: scale(1); 
	transform: scale(1); 
}
.my-mfp-zoom-in.mfp-removing .zoom-anim-dialog {
	-webkit-transform: scale(0.8); 
	-moz-transform: scale(0.8); 
	-ms-transform: scale(0.8); 
	-o-transform: scale(0.8); 
	transform: scale(0.8); 
	opacity: 0;
}
.my-mfp-zoom-in.mfp-bg {
	opacity: 0;
	-webkit-transition: opacity 0.3s ease-out; 
	-moz-transition: opacity 0.3s ease-out; 
	-o-transition: opacity 0.3s ease-out; 
	transition: opacity 0.3s ease-out;
}
.my-mfp-zoom-in.mfp-ready.mfp-bg {
	opacity: .96;
}
.my-mfp-zoom-in.mfp-removing.mfp-bg {
	opacity: 0;
}
.my-mfp-slide-bottom .zoom-anim-dialog {
	opacity: 0;
	-webkit-transition: all 0.2s ease-out;
	-moz-transition: all 0.2s ease-out;
	-o-transition: all 0.2s ease-out;
	transition: all 0.2s ease-out;
	-webkit-transform: translateY(-20px) perspective( 600px ) rotateX( 10deg );
	-moz-transform: translateY(-20px) perspective( 600px ) rotateX( 10deg );
	-ms-transform: translateY(-20px) perspective( 600px ) rotateX( 10deg );
	-o-transform: translateY(-20px) perspective( 600px ) rotateX( 10deg );
	transform: translateY(-20px) perspective( 600px ) rotateX( 10deg );
}
.my-mfp-slide-bottom.mfp-ready .zoom-anim-dialog {
	opacity: 1;
	-webkit-transform: translateY(0) perspective( 600px ) rotateX( 0 ); 
	-moz-transform: translateY(0) perspective( 600px ) rotateX( 0 ); 
	-ms-transform: translateY(0) perspective( 600px ) rotateX( 0 ); 
	-o-transform: translateY(0) perspective( 600px ) rotateX( 0 ); 
	transform: translateY(0) perspective( 600px ) rotateX( 0 ); 
}
.my-mfp-slide-bottom.mfp-removing .zoom-anim-dialog {
	opacity: 0;
	-webkit-transform: translateY(-10px) perspective( 600px ) rotateX( 10deg ); 
	-moz-transform: translateY(-10px) perspective( 600px ) rotateX( 10deg ); 
	-ms-transform: translateY(-10px) perspective( 600px ) rotateX( 10deg ); 
	-o-transform: translateY(-10px) perspective( 600px ) rotateX( 10deg ); 
	transform: translateY(-10px) perspective( 600px ) rotateX( 10deg ); 
}
.my-mfp-slide-bottom.mfp-bg {
	opacity: 0;
	-webkit-transition: opacity 0.3s ease-out; 
	-moz-transition: opacity 0.3s ease-out; 
	-o-transition: opacity 0.3s ease-out; 
	transition: opacity 0.3s ease-out;
}
.my-mfp-slide-bottom.mfp-ready.mfp-bg {
	opacity: 0.8;
}
.my-mfp-slide-bottom.mfp-removing.mfp-bg {
	opacity: 0;
}
.mfp-container{
	padding:28px !important;
	overflow:auto;
}
.popup-box{
	background:#FFF;
	max-width:450px;
	margin:0 auto;
	position:relative;
	-webkit-box-shadow: 0 0 0 4px #FFF;
	-moz-box-shadow: 0 0 0 4px #FFF;
	box-shadow: 0 0 0 4px #FFF;
}
.popup-box > .mfp-close{
	top:2px;
	right:2px;
	background:#FFF;
	height:48px;
	width:48px;
	opacity:1;
	font-size:26px;
}
.popup-box > .mfp-close:hover{
	background:#FAFAFA;
}
.popup-box > .content{
	padding:20px;
}
.popup-box > .content > h4{
	text-transform:uppercase;
	letter-spacing:2px;
	font-weight:bold;
	font-size:20px;
}
.popup-box > .content > p{
	font-size:14px;
	color:rgba(0,0,0,.45);
	font-weight:500;
}
.popup-box > .content .icons {
	display: flex;
	justify-content: flex-end;
	margin-top: 2em;
}
.popup-box > .content .icons a > i{
	cursor: pointer;
	border: .07em solid #9e9e9e;
	font-size: 1.2em;
	color:rgba(0,0,0,1);
}
.popup-box > .content .icons a > i:first-of-type{
	margin-right: 13px;
}
.popup-box > .content .icons a > i:hover{
	background:#FAFAFA;
}



/*=======================================================
	Contact Section
=======================================================*/
.contact-block .section-header{
	margin-bottom:80px;
}
.contact-form > .form-group:last-of-type{
	margin:0;
}

.form-group{
	margin-bottom:40px;
}
.form-control{
	padding:14px;
	height:auto;
	border-radius:0;
	-webkit-box-shadow:none !important;
	-moz-box-shadow:none !important;
	box-shadow:none !important;
	border:solid 1px rgba(0,0,0,.1);
	background:transparent;
	-webkit-transition:none;
	-moz-transition:none;
	transition:none;
}
.form-control:focus{
	border-color:#303F9F;
}
.contact-form .btn-custom{
	padding:19px 35px;
}
.contact-info{
	margin-bottom:25px;
}
.contact-info:before,
.contact-info:after{
	content: ' ';
	display:table;
}
.contact-info:after{
	clear:both;
}
.contact-info > i{
	width:60px;
	display:block;
	float:left;
	font-size:52px;
	color:#303F9F;
}
.contact-info > p{
	float:left;
	font-size:16px;
	line-height:1.6em;
	font-style:italic;
	color:rgba(0,0,0,.4);
	margin:0;
	margin-top:5px;
}
@media(min-width:992px){
	.contact-info-icons{
		padding-left:30px;
	}
}


/*=======================================================
	Preloader
=======================================================*/
#preloader{
	position:fixed;
	top:0;
	left:0;
	height:100%;
	width:100%;
	z-index:999;
	-webkit-transition: all .3s 1s ease;
	-moz-transition: all .3s 1s ease;
	transition: all .3s 1s ease;
}
#preloader > .left,
#preloader > .right{
	position:absolute;
	top:0;
	width:50%;
	height:100%;
	background:#FFF;
	overflow:hidden;
	z-index:99;
	-webkit-transition:all .7s .3s ease;
	-moz-transition:all .7s .3s ease;
	transition:all .7s .3s ease;
}
#preloader > .left{
	left:0;
}
#preloader > .right{
	right:0;
}
body.loaded #preloader{
	visibility:hidden;
}
body.loaded #preloader > .left{
	left:-50%;
}
body.loaded #preloader > .right{
	right:-50%;
}
body.loaded #preloader > .left,
body.loaded #preloader > .right,
body.loaded #preloader .loader{
	opacity:0;
	visibility:hidden;
}
.loader{
	height:140px;
	width:140px;
	border:solid 4px #FFF;
	border-top-color:#303F9F;
	border-right-color:#303F9F;
	border-radius:50%;
	position:absolute;
	top:50%;
	right:0;
	left:0;
	margin:auto;
	margin-top:-70px;
	transition:all .3s ease;
	z-index:199;
	-webkit-animation:loader 2s infinite linear;
	-moz-animation:loader 2s infinite linear;
	animation:loader 2s infinite linear;
}
.loader:before,
.loader:after{
	content: ' ';
	position:absolute;
	border:inherit;
	border-radius:50%;
}
.loader:before{
	left:15px;
	top:15px;
	bottom:15px;
	right:15px;
	opacity:.5;
	-webkit-animation: loader 3s infinite linear;
	-moz-animation: loader 3s infinite linear;
	animation: loader 3s infinite linear;
}
.loader:after{
	left:30px;
	right:30px;
	top:30px;
	bottom:30px;
	opacity:.25;
	-webkit-animation: loader 1.5s infinite linear;
	-moz-animation: loader 1.5s infinite linear;
	animation: loader 1.5s infinite linear;
}
@-webkit-keyframes loader{
	0%{
		transform:rotate(0deg);
	}
	100%{
		transform:rotate(360deg);
	}
}
@-moz-keyframes loader{
	0%{
		transform:rotate(0deg);
	}
	100%{
		transform:rotate(360deg);
	}
}
@keyframes loader{
	0%{
		transform:rotate(0deg);
	}
	100%{
		transform:rotate(360deg);
	}
}


/*=======================================================
	Responsive CSS
=======================================================*/
@media(max-width:992px){
	.info-list{
		margin-bottom:25px;
	}
	.p-table,
	.service{
		margin-bottom:25px;
	}
	.skills-block .skill{
		margin-bottom:20px;
	}
	div:last-of-type > .p-table,
	div:last-of-type > .skill:last-of-type,
	div:last-of-type > .servic{
		margin-bottom:0;
	}
	.portfolio-items > li{
		width:50%;
	}
	.section{
		padding-top:90px;
	}
	.section-block{
		padding:90px;
		padding-top:0;
	}
	.contact-info-icons{
		margin-top:60px;
	}
}
@media(max-width:700px){
	.col-3 > svg {
		max-width: 5.5em;
	}
}

@media(max-width:768px){
	.portfolio-items > li{
		width:100%;
	}
	.main-content{
		top:0;
		left:0;
		right:0;
		bottom:0;
	}
	.about-btns > .btn-custom{
		margin-bottom:10px;
	}
	.intro-text > .intro-btns > .btn-custom{
		margin-bottom:10px;
	}
	.intro-text > h1{
		font-size:62px;
	}
	.skill_row > .row > .col-3 > p {
		display: none;
	}
}
@media(max-width:585px){
	.col-3 > svg {
		max-width: 5em;
	}
	.intro-text_div> h6 {
		font-size: 10px;
	}
	.intro-text_div> h2 {
		font-size: 20px;
		letter-spacing: 2px;
	}
	.intro-text_div> h1 {
		font-size: 30px;
		letter-spacing: 2px;
  }
  .intro-btns {
    margin-top: 15px;
  }
}
@media(max-width:550px){
	.section{
		padding-top:70px;
	}
	.section-block{
		padding:70px;
		padding-top:0;
	}
}
@media(max-width:500px){
	.col-3 > svg {
		max-width: 4em;
		padding: .5em;
	}
	.col-3 > svg:hover {
		padding: .25em;
		/* transform: scale(1.2); */
	}
}

@media(max-width:443px){
	.col-3 > svg {
		max-width: 3.5em;
	}
	.info-list > li > span {
		font-size: 11px !important;
	}
	.intro-btns{
		justify-content: center;
		display: flex;
		flex-direction: column;
	}
}
@media(max-width:400px){
	.col-3 > svg {
		max-width: 3em;
	}

	.section{
		padding-top:40px;
	}
	.section-block{
		padding:40px;
		padding-top:0;
	}
} 
@media(max-height: 414px) {
	
	.main-content {
		position: fixed;
		z-index: 99;
		overflow: hidden;
		width: 100%;
		height: 100%;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
	}
	.intro-text {
		margin-top: -5em;
	}
	.intro-text_div> h6 {
		font-size: 13px;
		letter-spacing: 4px;
		margin: 0;
	}
	.intro-text_div> h2 {
		font-size: 20px;
		letter-spacing: 4px;
	}
	.intro-text_div> h1 {
		font-size: 40px;
		letter-spacing: 4px;
	}	
	.intro-btns {
		margin: 0px;
	}
}
