/*
* Oussama.design
* Copyright 2022, @
*/

/*******************************************************
********************* 1.RESET
*******************************************************/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	vertical-align: baseline;
    outline: none;
	box-sizing: border-box;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, video, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
.box-shadow-top {
    box-shadow: 0px 10px 64px -32px rgba(0, 0, 0, 0.5) inset;
}
.box-shadow-bottom {
    box-shadow: 0px -32px 67px -50px rgba(0, 0, 0, 0.5) inset;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
button{
	outline: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/*******************************************************
********************* 2.GENERAL SETTINGS 
*******************************************************/
html{
	height: 100%;
	width: 100%;
}
body{
	background: #000;
	color: #fff;
	font-size: 16px;
	font-family: 'Poppins', sans-serif;
	font-weight: 300;
	width: 100%;
	height: 100%;
	letter-spacing: .5px;
	overflow-x: hidden;
	overflow-y: scroll;
   -webkit-overflow-scrolling: touch;

}
a{
	color: #fff;
	text-decoration: none;
	-webkit-transition: color 0.4s, background 0.4s;
    -moz-transition:    color 0.4s, background 0.4s;
    -o-transition:      color 0.4s, background 0.4s;
    transition:         color 0.4s, background 0.4s;
}
a:hover{
	color: #eee;
	text-decoration: none;
}
h1, h2, h3, h4, h5, h6{
	line-height: 140%;
	font-weight: bold;
	letter-spacing: .8px;
	font-family: "Bricolage Grotesque", sans-serif;

}
h1{
	font-size:2.2em;
	margin-bottom:20px;
}
h2{
	font-size:1.9em;
	margin-bottom:20px;
}
h3{
	font-size:1.375em;
	margin-bottom:20px;
}
h4{
	font-size:1.2em;
	margin-bottom:10px;
}
h5{
	font-size:1em;
	margin-bottom:10px;
}
h6{
	font-size:.9em;
	margin-bottom:4px;
}
p,span,li{
	font-size: 1;
	line-height: 180%;
	margin: 0px 0px 20px;
}
img{
	display: block;
}
section{
	width: 100%;
	padding: 120px 0;
	position: relative;
}
/* inputs*/
textarea, input[type="text"],
input[type="password"],
input[type="search"],
input[type="email"]{
	background-color: #ffffff;
	border: 1px solid #eee;
	color: #888;
	font-size: 1.2em;
	text-indent: 10px;
	outline: none;
	width: 100%;
}
input[type="text"],
input[type="password"],
input[type="search"],
input[type="email"]{
	height: 40px;
}
textarea{
	resize: none;
	overflow: auto;
	margin-bottom: 10px;
	padding: 10px 0;
}
select{
	background: #fff;
	border: 1px solid #eee;
	box-shadow:  1px 1px 2px rgba(0,0,0,.1);
	border-radius: 3px;
	color: #888;
	font-size: 1.2em;
	height: 40px;
	width: 100%;
	padding: 8px 10px;
	outline: none;
}
label{
	margin-bottom: 10px;
}
/*******************************************************
********************* 4.MODULES
*******************************************************/
.no-pd{
	padding: 0;
}
.no-m{
	margin: 0;
}
.spacer{
	width: 100%;
	height: 0;
	padding: 30px 0;
}
.spacer-double{
	width: 100%;
	height: 0;
	padding: 50px 0;
}
.folio-container{
	width: 1080px;
	margin: 0 auto;
}
.larger-container{
	width: 1200px;
	margin: 0 auto;
}
img.scale{
	width: 100%;
	height: auto;
}
ul.med-list{
	list-style: circle;
}
.f{
	display: flex;
}
.f-row{
	flex-direction: row;
}
.f-column{
	flex-direction: column;
}
.f-wrap{
	flex-wrap: wrap;
}
.f-between{
	justify-content: space-between;
}
.gap-10{
	gap: 10px;
}
.folio-card {
	background: rgba(17, 17, 17, 1);
	border-radius: 20px;
	border: 1px solid #333;
	padding: 25px;
	transition: all .3s ease-out;
	position: relative;
	overflow: hidden;
	transform: translateY(20px);
}
.folio-card.fade-in {
	opacity: 1;
	transform: translateY(0);
}
.folio-card img{
	transition: all .3s ease-out;
	border: 1px solid #444;
	margin-bottom: 20px;
	border-radius: 20px;
}
.folio-card:after{
	content: "";
	transition: all .3s ease-out;
	position: absolute;
	opacity: 0;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -9999;
	background: linear-gradient(-120deg,  #FFE6B9 0%,#6CABA1 50%,#D59777 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */

}
.folio-card:hover{
	background: rgba(17, 17, 17, 0);
	border-color: rgba(255, 255, 255, .6);
}
.folio-card:hover:after{
	opacity: .3;
}
.folio-card:hover img{
	border-color: rgba(255, 255, 255, .6);
}
a.folio-btn{
	background: #000;
	border: 1px solid #444;
	border-radius: 12px;
	color: #fff;
	display: inline-block;
	width: auto;
	height: 44px;
	line-height: 44px;
	padding: 0 16px;
}
a.folio-btn.color{
	font-size: 1.3em;
	background: #000;
	border-color: rgba(255, 255, 255, .5);
	font-family: "Bricolage Grotesque", sans-serif;
	font-weight: 700;
	position: relative;
	overflow: hidden;
	height: 52px;
	line-height: 52px;
	padding: 0 26px;
}
a.folio-btn.color span,
.gradient-text{
	/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#fff045+0,4ebac2+50,f59e0b+100 */
	background: linear-gradient(120deg,  #FFE6B9 0%,#6CABA1 50%,#D59777 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	background-clip: text;
	-webkit-background-clip: text;
  	-webkit-text-fill-color: transparent;
}
/*******************************************************
********************* 5.THE HEADER & NAV
*******************************************************/
header {
	background: rgba(0, 0, 0, 0.4);
	backdrop-filter: blur(10px);
	width: 1080px;
	height: 80px;
	border-radius: 20px;
	border: 1px solid #444;
	position: fixed;
	padding: 0 30px;
	top: 20px;
	left: 50%;
	display: flex;
	transform: translateX(-50%);
	justify-content: space-between;
	align-items: center;
	z-index: 9999;
}

h1.logo{
	background: transparent url(../images/logo.png);
	width: 164px;
	height: 48px;
	background-size: cover;
	display: block;
	text-indent: -9999em;
	margin: 0;
}
.navigation {
	height: 80px;
	display: flex;
	align-items: center;
}
.navigation ul{
	display: flex;
	flex-direction: row;

}
.navigation ul li{
	margin: 0 0 0 30px;
	font-size: 1.1em;
	font-weight: 600;
	font-family: "Bricolage Grotesque", sans-serif;
}
/*******************************************************
********************* INTRO & PAGE TITLE
*******************************************************/
.intro{
	background: url(../images/bg/intro-clouds.jpg) top no-repeat;
	background-size: cover;
	border-bottom: 1px solid #444;
	display: flex;
	align-items: flex-end;
	height: 100vh;
	padding-bottom: 0;
	position: relative;
}
.intro-card{
	background: #000;
	border: 1px solid #444;
	border-bottom: none;
	border-radius: 20px 20px 0 0;
	padding: 30px;
	margin-bottom: -2px;
	position: relative;
	z-index: 1000;
}
.intro-card-header{
	border-bottom: 1px solid #444;
	margin-bottom: 20px;
	align-items: center;
	padding-bottom: 20px;
}
.intro-card-header img{
	border-radius: 100%;
	width: 60px;
	height: 60px;
	margin-right: 10px;
	margin-bottom: 0;
}
.intro-card-header h3{
	margin: 0;
}
.intro-card-body p{
	font-size: 1.3em;
}
/*******************************************************
********************* Good reads
*******************************************************/
.good-read{
	align-items: center;
	padding: 20px 30px;
}
.good-read h3{
	margin-bottom: 5px;
}
.good-read p{
	margin-bottom: 0;
}
/*******************************************************
********************* FOOTER CONTACT ME
*******************************************************/
.contact-me{
	background: url('../images/bg/footer.png') no-repeat bottom;
	background-size: cover;
	display: flex;
	align-items: flex-end;
	min-height: 100vh;
	padding-bottom: 0;
	justify-content: center;
	text-align: center;
	position: relative;
	overflow: hidden;
}
.contact-title{
	font-size: 3.6em;
	line-height: 100%;
}
.contact-info-box {
	background: #000;
	border: 30px solid #000;
	border-bottom: 0;
	border-radius: 200px 200px 0 0;
	position: relative;
	width: 100%;
	height: 440px;
	perspective: 1000px;
	cursor: pointer;
	margin-top: 20px;
}

.box-before, .box-after {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

.box-before {
  background: url('../images/contact.png') top;
  background-size: cover;
  border-radius: 200px 200px 0 0;
  border: 1px solid #333;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotateY(0deg);
}
.contact-info-box h4{
	background: #000;
	border-radius: 8px;
	border: 1px solid #444;
	padding: 3px 6px;
}
.box-after {
	background: url('../images/contact-2.png') top;
	background-size: cover;
	border-radius: 200px 200px 0 0;
	border: 1px solid #333;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	transform: rotateY(180deg);
}

.contact-info-box.flipped .box-before {
  transform: rotateY(180deg);
}

.contact-info-box.flipped .box-after {
  transform: rotateY(0deg);
}

.section-title {
  position: relative;
  margin-bottom: 2rem;
}
/*******************************************************
********************* Onclusive
*******************************************************/
.onclusive-aside{
	width: 300px;
	height: auto;
	position: relative;
}