:root {
	--primary: #EB1616;
	--secondary: #191C24;
	--light: #6C7293;
	--dark: #000000;
}

.icon-color {
	/* #EB1616 */
	filter: invert(17%) sepia(67%) saturate(5238%) hue-rotate(356deg) brightness(97%) contrast(91%);
}

.logo-text {
	-webkit-text-stroke: 0.5px gray;
}

/*** TERMINAL LOOK-AND-FEEL ***/
[data-termynal] {
    width: 100%;
    height: 1000px;
    max-height: 100%;
    background: #191C24;
    color: var(--primary);
    font-size: 12px;
    font-family: 'Fira Mono', Consolas, Menlo, Monaco, 'Courier New', Courier, monospace;
    border-radius: 4px;
    padding: 15px 15px 15px;
    position: relative;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}

[data-ty="input"]:before {
    content: 'metatron>';
}

[data-termynal]:before {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    display: inline-block;
    width: 0px;
    height: 0px;
    border-radius: 0%;
    /* A little hack to display the window buttons in one pseudo element. */
    -webkit-box-shadow: 0px 0 0 #f4c025, 0px 0 0 #3ec930;
            box-shadow: 0px 0 0 #f4c025, 0px 0 0 #3ec930;
}

[data-termynal]:after {
    content: '';
    position: absolute;
    color: var(--color-text-subtle);
    top: 0px;
    left: 0;
    width: 100%;
    text-align: center;
}

/*** ROTATING FEATURE BOXES ***/
.flip-box {
  background-color: transparent;
  perspective: 1000px; /* Remove this if you don't want the 3D effect */
    height: 250px;
}

/* This container is needed to position the front and back side */
.flip-box-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

/* Do an horizontal flip when you move the mouse over the flip box container */
.flip-box:hover .flip-box-inner {
  transform: rotateY(180deg);
}

/* Position the front and back side */
.flip-box-front, .flip-box-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden; /* Safari */
  backface-visibility: hidden;
}

/* Style the front side */
.flip-box-front {

}

/* Style the back side */
.flip-box-back {
  transform: rotateY(180deg);
}

/* TERMNYNAL TABS */

.tabrow {
	text-align: right;
	list-style: none;
	margin: 0px 0 1px;
	padding: 0px 140px;
	line-height: 24px;
	height: 26px;
	overflow: hidden;
	font-size: 12px;
	/*font-family: verdana;*/
	position: relative;
}

.tabrow li {
	border: 1px solid #AAA;
	background: #D1D1D1;
	background: -o-linear-gradient(top, #ECECEC 50%, #D1D1D1 100%);
	background: -ms-linear-gradient(top, #ECECEC 50%, #D1D1D1 100%);
	background: -moz-linear-gradient(top, #ECECEC 50%, #D1D1D1 100%);
	background: -webkit-linear-gradient(top, #ECECEC 50%, #D1D1D1 100%);
	background: linear-gradient(top, #ECECEC 50%, #D1D1D1 100%);
	display: inline-block;
	position: relative;
	z-index: 0;
	border-top-left-radius: 6px;
	border-top-right-radius: 6px;
	box-shadow: 0 3px 3px rgba(0, 0, 0, 0.4), inset 0 1px 0 #FFF;
	text-shadow: 0 1px #FFF;
	margin: 0 -5px;
	padding: 0 50px; /* adjust tab size */
}

.tabrow a {
	color: #555;
	text-decoration: none;
}

.tabrow li.selected {
	background: #FFF;
	color: #333;
	z-index: 2;
	border-bottom-color: #FFF;
}

.tabrow:before {
	position: absolute;
	content: " ";
	width: 100%;
	bottom: 0;
	left: 0;
	/*border-bottom: 1px solid #AAA;*/
	z-index: 1;
}

.tabrow li:before,
.tabrow li:after {
	border: 1px solid #AAA;
	position: absolute;
	bottom: -1px;
	width: 5px;
	height: 5px;
	content: " ";
}

.tabrow li:before {
	left: -6px;
	border-bottom-right-radius: 6px;
	border-width: 0 1px 1px 0;
	box-shadow: 2px 2px 0 #D1D1D1;
}

.tabrow li:after {
	right: -6px;
	border-bottom-left-radius: 6px;
	border-width: 0 0 1px 1px;
	box-shadow: -2px 2px 0 #D1D1D1;
}

.tabrow li.selected:before {
	box-shadow: 2px 2px 0 #FFF;
}

.tabrow li.selected:after {
	box-shadow: -2px 2px 0 #FFF;
}


/* CODE HIGHLIGHTING */
.hljs {
 background: #191C24
 }

/*** Spinner ***/

#spinner {
	opacity: 0;
	visibility: hidden;
	transition: opacity .5s ease-out, visibility 0s linear .5s;
	z-index: 99999;
}

#spinner.show {
	transition: opacity .5s ease-out, visibility 0s linear 0s;
	visibility: visible;
	opacity: 1;
}

/*** Image Growth Effect ***/

    .overlap-layers{
        position: relative;
        display: inline-block; /* Make the width of box same as image */
    }
    .overlap-layers .top-layer{
        position: absolute;
        margin: 0 auto;
        left: 0;
        right: 0;
        top: -3%; /* Adjust this value to move the positioned div up and down */
        text-align: center;
        width: 100%; /* Set the width of the positioned div */
    }

.c0  { opacity : 1; transition:opacity 4s;}
.c0:hover{opacity:0;}


.grow {
transition: all 4s ease-in-out;
z-index:999;
}

.grow:hover {
z-index:999;
transform: scale(2.0);
}


/*** Button ***/

.btn {
	font-weight: 500;
	transition: .5s;
}

.btn-square {
	width: 38px;
	height: 38px;
}

.btn-sm-square {
	width: 32px;
	height: 32px;
}

.btn-lg-square {
	width: 48px;
	height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: normal;
}

.neon-text {
	color: #fff;
	text-shadow: 0 0 21px #fff, 0 0 42px var(--primary), 0 0 82px var(--primary);
	/* #0fa neat green color */
}

.neon-box {
	box-shadow: 0 0 10px #fff, 0 0 20px var(--primary), 0 0 30px var(--primary);
	/* #0fa neat green color */
}


/*** Navbar ***/

.navbar .dropdown-toggle::after {
	border: none;
	content: "\f107";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	vertical-align: middle;
	margin-left: 8px;
}

.navbar .navbar-nav .nav-link {
	margin-right: 30px;
	padding: 40px 0;
	color: var(--light);
	font-family: 'Oswald', sans-serif;
	font-size: 18px;
	font-weight: 600;
	text-transform: uppercase;
	outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
	color: var(--primary);
}

.navbar.sticky-top {
	top: -100px;
	transition: .5s;
}

@media (max-width: 991.98px) {
	.navbar .navbar-nav .nav-link,
	.navbar.shadow-sm .navbar-nav .nav-link {
		margin-right: 0;
		padding: 10px 0;
	}
	.navbar .navbar-nav {
		margin-top: 8px;
		border-top: 1px solid var(--light);
	}
}

@media (min-width: 992px) {
	.navbar.shadow-sm .navbar-nav .nav-link {
		padding: 20px 0;
	}
	.navbar .nav-item .dropdown-menu {
		display: block;
		border: none;
		margin-top: 0;
		top: 150%;
		opacity: 0;
		visibility: hidden;
		transition: .5s;
	}
	.navbar .nav-item:hover .dropdown-menu {
		top: 100%;
		visibility: visible;
		transition: .5s;
		opacity: 1;
	}
}

.page-header {
	background: linear-gradient(rgba(0, 0, 0, .82), rgba(0, 0, 0, .82)), url(../images/angel-wings.png) center center no-repeat;
	background-size: cover;
}

.breadcrumb-item+.breadcrumb-item::before {
	color: var(--light);
}


/*** Footer ***/

.footer .btn.btn-link {
	display: block;
	margin-bottom: 5px;
	padding: 0;
	text-align: left;
	color: var(--light);
	font-size: 15px;
	font-weight: normal;
	text-transform: capitalize;
	transition: .3s;
}

.footer .btn.btn-link::before {
	position: relative;
	content: "\f105";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	margin-right: 10px;
}

.footer .btn.btn-link:hover {
	color: var(--primary);
	letter-spacing: 1px;
	box-shadow: none;
}

.footer .copyright {
	padding: 1.5rem;
	font-size: 15px;
	background: var(--dark);
}

.footer .copyright a {
	color: var(--light);
}

.footer .copyright a:hover {
	color: var(--primary);
}