/*
Theme Name: ErfanMHDi
Theme URI: https://ErfanMHDi.com
Author: ErfanMHDi
Author URI: https://ErfanMHDi.com
Description: Exclusive Template for ErfanMHDi's Portfolio, Designed and Developed by ErfanMHDi.
Version: 1.0.0
*/

/*---------------------------------------------------------------------------------*/
/* Global Color Set ---------------------------------------------------------------*/
/*---------------------------------------------------------------------------------*/

:root {
	color-scheme: light dark;
	supported-color-schemes: light dark;
    --System-ColorBrand:  rgba(137.0, 243.0, 54.0, 1.0);
	--System-ColorBG:     rgba(255.0, 255.0, 255.0, 1.0);
	--System-ColorBG2:    rgba(242.0, 242.0, 247.0, 1.0);
	--System-ColorSep:    rgba(229.0, 229.0, 234.0, 1.0);
	--System-ColorLight:  rgba(255.0, 255.0, 255.0, 1.0);
	--System-ColorDark:   rgba(0.0, 0.0, 0.0, 1.0);
	--System-ColorText:   rgba(0.0, 0.0, 0.0, 1.0);
	--System-ColorText2:  rgba(60.0, 60.0, 67.0, 0.6);
	--System-ColorText3:  rgba(60.0, 60.0, 67.0, 0.3);
	--System-ColorText4:  rgba(60.0, 60.0, 67.0, 0.18);
	--System-ColorRed: 	  rgba(255.0, 59.0, 48.0, 1.0);
	--System-ColorOrange: rgba(255.0, 149.0, 0.0, 1.0);
	--System-ColorYellow: rgba(255.0, 204.0, 0.0, 1.0);
	--System-ColorGreen:  rgba(52.0, 199.0, 89.0, 1.0);
	--System-ColorMint:   rgba(0.0, 199.0, 190.0, 1.0);
	--System-ColorTeal:   rgba(90.0, 200.0, 250.0, 1.0);
	--System-ColorCyan:   rgba(50.0, 173.0, 230.0, 1.0);
	--System-ColorBlue:   rgba(0.0, 122.0, 255.0, 1.0);
	--System-ColorIndigo: rgba(88.0, 86.0, 214.0, 1.0);
	--System-ColorPurple: rgba(175.0, 82.0, 222.0, 1.0);
	--System-ColorPink:	  rgba(255.0, 45.0, 85.0, 1.0);
	--System-ColorBrown:  rgba(162.0, 132.0, 94.0, 1.0);
	--System-ColorGray:   rgba(142.0, 142.0, 147.0, 1.0);
	--System-ColorGray2:  rgba(174.0, 174.0, 178.0, 1.0);
	--System-ColorGray3:  rgba(199.0, 199.0, 204.0, 1.0);
	--System-ColorGray4:  rgba(209.0, 209.0, 214.0, 1.0);
	--System-ColorGray5:  rgba(229.0, 229.0, 234.0, 1.0);
	--System-ColorGray6:  rgba(242.0, 242.0, 247.0, 1.0);
}



/*---------------------------------------------------------------------------------*/
/* Global CSS Normalizer ----------------------------------------------------------*/
/*---------------------------------------------------------------------------------*/
html {
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	box-sizing: border-box;
	scroll-behavior: smooth;
	-ms-touch-action: manipulation;
	touch-action: manipulation;
	transition: color 0.5s ease, background 0.5s ease;
	--System-Gap: 32px;
}


* {
	margin: 0;
	padding: 0;
}
body {
	overflow: hidden;	
	font-family: "-apple-system", BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}
.coming-soon {
	width: 100vw;
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--System-ColorBG2);
	background: var(--System-ColorBrand);
	overflow: hidden;
}
.coming-soon-inner {
	position: relative;
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
}
.Logo {    
	max-width: 80px;
	top: -128px;
	position: relative;
	.Shape {

	}
	.Type {

	}
}
.heading {
	font-size: 100px;
	text-transform: uppercase;
	padding: 20px;
	background: var(--System-ColorDark);
	color: var(--System-ColorLight);
	transform: skewY(-10deg);
	font-weight: 500;
	line-height: 100px;
    border-radius: 16px;
}
.small-heading {
	font-size: 30px;
	text-transform: uppercase;
	display: inline-block;
	padding: 20px;
	background: var(--System-ColorLight);
	color: var(--System-ColorDark);
	transform: skewY(-10deg);
	font-weight: 500;
	line-height: 30px;
    box-shadow: 5px 5px 20px rgb(0 0 0 / .3);
	position: absolute;
	right: 0;
	bottom: -44px;
    border-radius: 16px;
}
ul {
	list-style: none;
	display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
	column-gap: 25px;
	color: var(--System-ColorText);
}
.counter-timer {
	transform: skewY(-10deg);
	position: absolute;
	left: 16px;
    padding: 20px;
    bottom: -122px;
}
.counter-timer > ul > li {
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
	color: var(--System-ColorDark);
}
.counter-timer > ul > li > span {
    font-weight: bold;
    font-size: 24px;
}
.coming-soon-inner:before {
	content: "";
	height: 2px;
	width: 80%;
	background: var(--System-ColorDark);
	position: absolute;
	top: 16px;
	right: 0;
	transform: skewY(-10deg);
}
.coming-soon-inner:after {
	content: "";
	height: 2px;
	width: 60%;
	background: var(--System-ColorDark);
	position: absolute;
	bottom: -120px;
	right: 0;
	transform: skewY(-10deg);
}
.heading:before {
	content: "";
	height: 2px;
	width: 70%;
	background: var(--System-ColorDark);
	position: absolute;
	top: -50px;
	left: 0;
}
.heading:after {
	content: "";
	height: 2px;
	width: 60%;
	background: var(--System-ColorDark);
	position: absolute;
	bottom: -116px;
	left: 0;
}

@media only screen and (max-width: 400px) and (min-width: 200px) {
	.heading {
		font-size: 30px;
		line-height: 40px;
		text-transform: uppercase;
		padding: 10px 20px;
	}
	.small-heading {
		font-size: 20px;
		padding: 10px;
		bottom: -49px;
	}
	.counter-timer li {
		font-size: 12px;
	}
	.coming-soon-inner:before {
		top: 55px;
	}
	.heading:before {
		top: -30px;
	}
	.coming-soon-inner:after {
		bottom: -130px;
	}
	.heading:after {
		bottom: -150px;
	}
} 
@media only screen and (max-width: 767px) and (min-width: 401px) {

	.coming-soon-inner {    
		top: -128px;
		position: relative;
	}
	.heading {
		font-size: 40px;
		line-height: 50px;
		text-transform: uppercase;
		padding: 10px 20px;
	}
	.small-heading {
		font-size: 25px;
		padding: 10px;
		bottom: -48px;
	}
	.counter-timer {
		bottom: -135px;
	}
	.counter-timer li {
		font-size: 15px;
	}
	.coming-soon-inner:before {
		top: 55px;
	}
	.heading:before {
		top: -30px;
	}
	.coming-soon-inner:after {
		bottom: -140px;
	}
	.heading:after {
		bottom: -160px;
	}
}
/*---------------------------------------------------------------------------------*/
/* Main Break Point  --------------------------------------------------------------*/
/*---------------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------------*/
/* Smart Phone LandScape  ---------------------------------------------------------*/
/*---------------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------------*/
/* Smart Phone Portrait  ----------------------------------------------------------*/
/*---------------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------------*/
/* Small Phones -------------------------------------------------------------------*/
/*---------------------------------------------------------------------------------*/




/*---------------------------------------------------------------------------------*/
/* Dark Mode Color Set ------------------------------------------------------------*/
/*---------------------------------------------------------------------------------*/
@media (prefers-color-scheme: dark) {
	:root {
        color-scheme: light dark;
        supported-color-schemes: light dark;
		--System-ColorBrand:  rgba(137.0, 243.0, 54.0, 1.0);
		--System-ColorBG:     rgba(0.0, 0.0, 0.0, 1.0);
		--System-ColorBG2:    rgba(28.0, 28.0, 30.0, 1.0);
        --System-ColorSep:    rgba(44.0, 44.0, 46.0, 1.0);
        --System-ColorLight:  rgba(255.0, 255.0, 255.0, 1.0);
        --System-ColorDark:   rgba(0.0, 0.0, 0.0, 1.0);
        --System-ColorText:   rgba(255.0, 255.0, 255.0, 1.0);
        --System-ColorText2:  rgba(235.0, 235.0, 245.0, 0.6);
        --System-ColorText3:  rgba(235.0, 235.0, 245.0, 0.3);
        --System-ColorText4:  rgba(235.0, 235.0, 245.0, 0.18);
        --System-ColorRed: 	  rgba(255.0, 69.0, 58.0, 1.0);
        --System-ColorOrange: rgba(255.0, 159.0, 10.0, 1.0);
        --System-ColorYellow: rgba(255.0, 214.0, 10.0, 1.0);
        --System-ColorGreen:  rgba(52.0, 215.0, 75.0, 1.0);
        --System-ColorMint:   rgba(102.0, 212.0, 207.0, 1.0);
        --System-ColorTeal:   rgba(106.0, 196.0, 220.0, 1.0);
        --System-ColorCyan:   rgba(90.0, 200.0, 245.0, 1.0);
        --System-ColorBlue:   rgba(10.0, 132.0, 255.0, 1.0);
        --System-ColorIndigo: rgba(94.0, 92.0, 230.0, 1.0);
        --System-ColorPurple: rgba(191.0, 90.0, 242.0, 1.0);
        --System-ColorPink:	  rgba(255.0, 55.0, 95.0, 1.0);
        --System-ColorBrown:  rgba(172.0, 142.0, 104.0, 1.0);
        --System-ColorGray:   rgba(152.0, 152.0, 157.0, 1.0);
        --System-ColorGray2:  rgba(99.0, 99.0, 102.0, 1.0);
        --System-ColorGray3:  rgba(72.0, 72.0, 74.0, 1.0);
        --System-ColorGray4:  rgba(58.0, 58.0, 60.0, 1.0);
        --System-ColorGray5:  rgba(44.0, 44.0, 46.0, 1.0);
        --System-ColorGray6:  rgba(28.0, 28.0, 30.0, 1.0);
	}
}