
/*------------------------------
    EBM Group - Coming Soon
    Version: 2.0
------------------------------*/

/* Google fonts
------------------------------ */
@import url('https://fonts.googleapis.com/css?family=Josefin+Sans:100,100i,300,300i,400,400i,600,600i,700');


/* Theme tokens
------------------------------ */
:root {
	--navy-900: #0d1822;   /* darkest background */
	--navy-800: #142330;   /* panels / modal body */
	--navy-700: #1c2f3e;   /* cards / nav solid */
	--navy-600: #26404f;   /* borders / hover */
	--blue-accent: #5b8bb5;      /* muted steel blue */
	--blue-accent-light: #7dabd1;
	--gray-400: #8a97a3;
	--gray-200: #c8cfd6;
	--paper: #ffffff;
	--ink: #0f151b;
	--text-light: #e7ecf1;
	--text-muted: #a9b4bf;
}


/* General
------------------------------ */
html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Josefin Sans', sans-serif;
	font-size: 16px;
	line-height: 28px;
	letter-spacing: 0.10px;
	font-weight: 300;
	color: var(--text-light);
	background: var(--navy-900);
	overflow-x: hidden;
	-webkit-text-size-adjust: 100%;
	-webkit-overflow-scrolling: touch;
	-webkit-font-smoothing: antialiased;
}

html, body {
	width: 100%;
}

::-moz-selection { background: var(--blue-accent); color: #fff; text-shadow: none; }
::selection { background: var(--blue-accent); color: #fff; text-shadow: none; }

img { max-width: 100%; }

ul, ul li {
	list-style: outside none none;
	margin: 0;
	padding: 0;
}

a { color: var(--blue-accent-light); }
a:hover { color: var(--paper); text-decoration: none; }


/* Preloader
------------------------------ */
#preloader {
	width: 100%;
	height: 100%;
	top: 0; right: 0; bottom: 0; left: 0;
	background: var(--navy-900);
	z-index: 11000;
	position: fixed;
	display: flex;
	align-items: center;
	justify-content: center;
}

#global {
	width: 70px;
	margin: 0 auto;
	position: absolute;
	left: 1%; right: 1%;
	top: 45%;
	cursor: pointer;
	height: 60px;
}

.mask {
	position: absolute;
	border-radius: 2px;
	overflow: hidden;
	perspective: 1000;
	backface-visibility: hidden;
}

.plane {
	background: var(--blue-accent);
	width: 400%;
	height: 100%;
	position: absolute;
	transform: translate3d(0px, 0, 0);
	z-index: 100;
	perspective: 1000;
	backface-visibility: hidden;
}

#top .plane { z-index: 2000; animation: trans1 1.3s ease-in infinite 0s backwards; }
#middle .plane { transform: translate3d(0px, 0, 0); background: var(--gray-400); animation: trans2 1.3s linear infinite 0.3s backwards; }
#bottom .plane { z-index: 2000; animation: trans3 1.3s ease-out infinite 0.7s backwards; }

#top { width: 53px; height: 20px; left: 20px; transform: skew(-15deg, 0); z-index: 100; }
#middle { width: 33px; height: 20px; left: 20px; top: 15px; transform: skew(-15deg, 40deg); }
#bottom { width: 53px; height: 20px; top: 30px; transform: skew(-15deg, 0); }

#global p {
	color: var(--text-light);
	position: absolute;
	left: -3px; top: 45px;
	font-family: Arial;
	text-align: center;
	font-size: 10px;
}

@keyframes trans1 { from { transform: translate3d(53px, 0, 0); } to { transform: translate3d(-250px, 0, 0); } }
@keyframes trans2 { from { transform: translate3d(-160px, 0, 0); } to { transform: translate3d(53px, 0, 0); } }
@keyframes trans3 { from { transform: translate3d(53px, 0, 0); } to { transform: translate3d(-220px, 0, 0); } }


/* Navbar
------------------------------ */
.site-nav {
	padding: 18px 0;
	background: rgba(13, 24, 34, 0.45);
	transition: background 0.3s ease, padding 0.3s ease;
}

.site-nav.scrolled {
	background: var(--navy-900);
	padding: 10px 0;
	box-shadow: 0 2px 14px rgba(0, 0, 0, 0.45);
}

.site-logo { display: inline-block; padding: 0; }
.logo-img { height: 46px; width: auto; display: block; }

.site-nav .navbar-nav .nav-link {
	color: var(--text-light);
	font-size: 17px;
	text-transform: uppercase;
	letter-spacing: 0.6px;
	padding: 6px 16px;
	cursor: pointer;
	transition: color 0.3s ease;
}

.site-nav .navbar-nav .nav-link:hover,
.site-nav .navbar-nav .nav-link:focus {
	color: var(--blue-accent-light);
}

.site-nav .navbar-toggler { border-color: rgba(255, 255, 255, 0.4); }
.site-nav .navbar-toggler-icon {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,0.9)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}


/* Hero / Coming Soon
------------------------------ */
.main-bg {
	position: relative;
	background-image: url("../images/01.jpg");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}

.main-bg::before {
	position: absolute;
	top: 0; left: 0;
	width: 100%; height: 100%;
	content: "";
	z-index: 1;
	background: linear-gradient(135deg, rgba(13,24,34,0.92) 0%, rgba(28,47,62,0.88) 55%, rgba(13,24,34,0.95) 100%);
}

.hero {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
}

.hero-inner {
	position: relative;
	z-index: 2;
	width: 100%;
	padding: 120px 0 60px;
}

.hero-eyebrow {
	color: var(--blue-accent-light);
	text-transform: uppercase;
	letter-spacing: 2px;
	font-size: 13px;
	margin-bottom: 18px;
}

.hero-title {
	color: var(--paper);
	font-size: 60px;
	font-weight: 300;
	margin-bottom: 20px;
}

.hero-text {
	color: var(--text-muted);
	font-size: 18px;
	max-width: 680px;
	margin: 0 auto 46px;
}


/* Countdown
------------------------------ */
.countdown #timer {
	display: inline-flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 24px;
}

.countdown #timer > div {
	background: var(--navy-700);
	border: 1px solid var(--navy-600);
	border-bottom: 3px solid var(--blue-accent);
	font-size: 42px;
	font-weight: 300;
	line-height: 1;
	text-align: center;
	width: 108px;
	padding: 22px 0 26px;
	color: var(--paper);
	border-radius: 6px;
}

.countdown #timer > div h6 {
	font-family: 'Josefin Sans', sans-serif;
	font-size: 14px;
	letter-spacing: 1.5px;
	margin: 12px 0 0;
	text-transform: uppercase;
	color: var(--gray-400);
}


/* Buttons
------------------------------ */
.hero-actions { margin-top: 46px; }

.btn.notify-btn,
.btn.ghost-btn {
	position: relative;
	transition: 0.3s;
	margin: 8px 8px 0;
	padding: 11px 28px;
	border-radius: 3px;
	font-size: 15px;
	letter-spacing: 0.5px;
	text-transform: uppercase;
}

.btn.notify-btn {
	color: var(--paper);
	background-color: var(--blue-accent);
	border: 1px solid var(--blue-accent);
	box-shadow: 0 1px 3px 0 rgba(0,0,0,.25);
}

.btn.notify-btn:hover {
	background: var(--paper);
	color: var(--navy-900);
	border-color: var(--paper);
	top: -3px;
	box-shadow: 0 6px 18px rgba(0,0,0,0.35);
}

.btn.ghost-btn {
	color: var(--text-light);
	background: transparent;
	border: 1px solid rgba(255,255,255,0.35);
}

.btn.ghost-btn:hover {
	border-color: var(--blue-accent-light);
	color: var(--blue-accent-light);
	top: -3px;
}


/* Modals
------------------------------ */
.brand-modal .modal-content {
	background: var(--navy-800);
	color: var(--text-light);
	border: 1px solid var(--navy-600);
	border-radius: 8px;
}

.brand-modal .modal-header {
	border-bottom: 1px solid var(--navy-600);
	padding: 20px 26px;
}

.brand-modal .modal-title {
	color: var(--paper);
	font-size: 24px;
	letter-spacing: 0.5px;
}

.brand-modal .modal-header .close {
	color: var(--text-light);
	opacity: 0.7;
	text-shadow: none;
	font-weight: 300;
	font-size: 30px;
}
.brand-modal .modal-header .close:hover { color: var(--paper); opacity: 1; }

.brand-modal .modal-body {
	padding: 24px 26px 30px;
	max-height: 68vh;
	overflow-y: auto;
}

/* scrollbar */
.brand-modal .modal-body::-webkit-scrollbar { width: 8px; }
.brand-modal .modal-body::-webkit-scrollbar-track { background: var(--navy-900); border-radius: 4px; }
.brand-modal .modal-body::-webkit-scrollbar-thumb { background: var(--navy-600); border-radius: 4px; }
.brand-modal .modal-body::-webkit-scrollbar-thumb:hover { background: var(--blue-accent); }

.modal-intro {
	color: var(--text-muted);
	margin-bottom: 24px;
}

.service-block,
.about-block {
	padding: 18px 0;
	border-top: 1px solid var(--navy-700);
}
.service-block:first-of-type,
.about-block:first-of-type { border-top: 0; }

.service-block h6,
.about-block h6 {
	color: var(--paper);
	font-size: 19px;
	letter-spacing: 0.5px;
	margin-bottom: 8px;
}

.service-block .svc-no {
	color: var(--blue-accent-light);
	font-weight: 600;
	margin-right: 8px;
}

.service-block p,
.about-block p {
	color: var(--text-muted);
	font-size: 15px;
	margin-bottom: 10px;
}

.service-block ul,
.about-block ul {
	padding-left: 0;
}

.service-block ul li,
.about-block ul li {
	position: relative;
	padding-left: 20px;
	margin-bottom: 6px;
	font-size: 15px;
	color: var(--text-light);
}

.service-block ul li::before,
.about-block ul li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 11px;
	width: 7px;
	height: 7px;
	background: var(--blue-accent);
	border-radius: 50%;
}

.brand-tagline {
	margin-top: 22px;
	padding-top: 18px;
	border-top: 1px solid var(--navy-600);
	color: var(--blue-accent-light);
	font-style: italic;
	font-size: 17px;
	text-align: center;
}

.contact-list li {
	font-size: 17px;
	margin-bottom: 14px;
	color: var(--text-light);
}

.contact-list li i {
	color: var(--blue-accent-light);
	width: 26px;
	text-align: center;
	margin-right: 6px;
}


/* Responsive
------------------------------ */
@media screen and (max-width: 991px) {
	.hero-title { font-size: 42px; }
	.site-nav { background: var(--navy-900); }
	.site-nav .navbar-collapse {
		background: var(--navy-900);
		margin-top: 12px;
		padding: 10px 0;
		border-radius: 4px;
	}
}

@media screen and (max-width: 767px) {
	.hero-title { font-size: 30px; }
	.hero-text { font-size: 16px; }
	.countdown #timer { gap: 14px; }
	.countdown #timer > div {
		width: 80px;
		font-size: 30px;
		padding: 16px 0 20px;
	}
	.brand-modal .modal-body { max-height: 74vh; }
	.brand-modal .modal-title { font-size: 20px; }
}
