/***************
    Above Fold
***************/

.above-fold {
	width: 100%;
	min-height: 100vh;
	position: relative;
	display: inline-block;
	overflow: hidden;
}

@media (max-width: 768px) {
	.grid-container {
		padding: 60px;
	}
}


/***************
    Generic CSS Stylings
***************/

@font-face {
    font-family: 'gotham';
    src: url('../fonts/gotham/Gotham-Book.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
    letter-spacing: 1.5px;
}
@font-face {
    font-family: 'gotham';
    src: url('../fonts/gotham/Gotham-BookItalic.otf') format('opentype');
    font-weight: 300;
    font-style: italic;
    letter-spacing: 1.5px;
}

@font-face {
    font-family: 'gotham';
    src: url('../fonts/gotham/Gotham-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
    letter-spacing: 1.5px;
}
@font-face {
    font-family: 'gotham';
    src: url('../fonts/gotham/Gotham-MediumItalic.otf') format('opentype');
    font-weight: 500;
    font-style: italic;
    letter-spacing: 1.5px;
}

html, body {
	font-family: 'gotham', sans-serif;
	font-weight: 300;
	min-height: 105vh;
}

.loading-complete .page-loader {
	transition: z-index 0s 0.5s, opacity 0.4s 0.1s;
	transform-origin: center;
	opacity: 0;
	z-index: -99999 !important;
}

.loading-complete .above-fold {
	opacity: 1 !important;
	transition: opacity 0.6s 0.4s
}

.fullscreen-height, .above-fold {
    min-height: 700px;
    max-height: 1300px;
}

@media (max-width: 768px) {
	.fullscreen-height, .above-fold {
		min-height: 500px;
		max-height: 1300px;
	}
}

.page-loader img {
	animation: expand 5s infinite;
}

@keyframes expand {
	0% {
		opacity: 0;
	 	transform: scale(1);
	}
	20% {
		opacity: 1;
	}
	100% {
		transform: scale(1.2);
	}
}
  
.padding_div {
    width: 100%;
}

.padding_div.aa {
    height: 150px;
}

.padding_div.bb {
    height: 100px;
}

.padding_div.cc {
    height: 75px;
}

.padding_div.dd {
    height: 50px;
}

.padding_div.ee {
    height: 25px;
}

@media (max-width: 768px) {
	.padding_div.aa {
		height: 99px;
	}

	.padding_div.bb {
		height: 66px;
	}

	.padding_div.cc {
		height: 45px;
	}

	.padding_div.dd {
		height: 33px;
	}

	.padding_div.ee {
		height: 16.5px;
	}
}

.full-width {
	width: 100%;
}

.opacity-0 {
	opacity: 0;
	transition: opacity 0.6s;
}

.opacity-1 {
	opacity: 1 !important;
	transition: opacity 0.6s;
}

.c-white {
	color: rgba(255,255,255,0.85);
}

.c-black {
	color: rgba(0,0,0,0.9);
}

a:hover {
    text-decoration: none !important;
}

.fw-300 {
	font-weight: 300 !important;
}

.fw-400 {
	font-weight: 400 !important;
}

.fw-500 {
	font-weight: 500 !important;
}

.fw-600 {
	font-weight: 600 !important;
}


p {
 font-size: 16px;
}

@media (max-width: 992px) {

}

@media (max-width: 768px) {

}

@media (max-width: 576px) {
	h1 { font-size: 2rem; }
	h2 { font-size: 1.6rem; }
	h3 { font-size: 1.4rem; }
	h4 { font-size: 1.2rem; }
	h5 { font-size: 1rem; }
	h6 { font-size: 0.8rem; }
	p { font-size: 14px; }
}

button:not(.hamburger), html input[type=button], input[type=reset], input[type=submit] {
    padding: 10px 40px;
    color: white;
    background: #a61413;
	font-size: 14px;
	font-weight: 300;
	border: none;
	cursor: pointer;
	text-transform: uppercase;
}

@media (max-width: 430px) {
	button:not(.hamburger), html input[type=button], input[type=reset], input[type=submit]	{
		min-width: 200px;
	}

	.inside-article, .comments-area, aside {
		padding-left: 15px !important;
		padding-right: 15px !important;
	}
}

button:focus, html input[type=button], input[type=reset], input[type=submit] {
	outline: none;
}

.show-later div.show-later-inner-div {
    position: relative;
	transform: matrix(0.93969, 0.34202, 0, 3, 0, 500);
	opacity: 0;
	transition: transform 1.5s, opacity 1.5s;
}

.show-later.now div.show-later-inner-div {
	transform: matrix(1, 0, 0, 1, 0, 0);
	opacity: 1;
}

.dash-text .thick-line {
	width: 60px;
	height: 5px;
	margin-right: 20px;
}

.dash-text .thick-line > div {
	width: 0%;
	height: 5px;
	transition: all 0.8s;
}

.thick-line.gray > div {
	background: #bc141a;
}

.dash-text {
	display: flex;
	align-items: center;
}

.dash-text span {
	opacity: 0;
	transition: all 0.8s;
}

.dash-text.animated .thick-line > div {
	width: 100%;
}

.dash-text.animated span {
	opacity: 1;
}

/* End Generic */

/***************
    Navbar CSS Stylings
***************/

.navbar {
    padding: 18px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10;
    background: transparent;
    min-height: 65px;
    transition: all 0.8s;
    background-size: cover;
    display: flex !important;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
	box-sizing: border-box;
	will-change: transform;
}

.brand-title img {
	max-width: 90px;
}

.navbar > div {
	display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0 40px;
}

.menu-holder > div {
	padding: 0 70px;
}

.navbar .desktop-links a {
	font-size: 12px;
    line-height: 12px;
    margin-right: 35px;
    margin-left: auto;
    color: inherit;
	font-weight: 500;
	text-transform: uppercase;
	color: white;
	letter-spacing: 0.5;
}

.navbar .desktop-links a:last-child {
	margin-right: 0 !important;
}

.menu-holder {
	position: fixed;
	padding: 135px 0 80px;
    transition: transform 0.5s;
    width: 100%;
	z-index: 10;
	background: #bc141a;
	overflow: hidden;
	background-size: cover;
	top: 0px;
    transform: translateY(-105%);
}

.menu-holder h1 {
	font-weight: 300;
	margin: 0;
	padding: 10px 0;
	color: #ffffff;
}

.menu-is-open .menu-holder {
    transform: translateY(0) !important;
}

.mobile-links {
	padding-bottom: 85px;
}

.desktop-links, .hamburger-holder {
	display: inline-block;
}

@media (min-width: 992px) {
	.mobile-links {
		display: none;
	}

	.menu-holder {
		padding: 65px 0 5px 0;;
	}	
}

@media (max-width: 992px) {

	.menu-holder {
		padding: 105px 0 45px;
	}

	.navbar > div, .menu-holder > div {
		padding: 0 30px;
	}
}

@media (max-width: 768px) {
	.navbar > div, .menu-holder > div {
		padding: 0 15px;
	}

	.menu-holder {
		padding: 95px 0 45px;
	}

	.mobile-links {
		padding-bottom: 55px;
	}
}

/* End Navbar */


/***************
    Sleek Scroll Bar CSS Stylings
***************/

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    background: white;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #B8BFC0;
}

::-webkit-scrollbar-thumb:hover {
    background: #838996;
}

::-webkit-scrollbar-thumb:window-inactive {
	background: #B8BFC0;
}

.vs-scrollbar .vs-scrolldrag {
	background: #bc141a;
}

/* End Sleek Scroll Bar */


/***************
    Page Loader
***************

.loading::before {
    content: '';
    position: fixed;
    z-index: 10000000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
}

.loading::after {
    content: '';
    position: fixed;
    z-index: 10000001;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 5px solid #0000C3;
    border-left-color: rgba(9, 47, 76, 0.4);
    animation: loaderAnim 0.8s linear infinite forwards;
}

@keyframes loaderAnim {
    to {
        transform: rotate(360deg);
    }
}

/* End Page Loader */


/***************
    Hamburger
***************/

.hamburger.is-active:hover, .hamburger:hover {
    opacity: 1;
}

.hamburger-holder {
	position: relative;
    top: 4px;
}

.hamburger {
	padding: 0;
}

.hamburger-box {
	height: 18.5px;
}

.hamburger-inner, .hamburger-inner:after, .hamburger-inner:before {
	border-radius: 0px;
	height: 1.5px;
}

.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner:after,
.hamburger.is-active .hamburger-inner:before,
.hamburger-inner, 
.hamburger-inner:after, 
.hamburger-inner:before {
	background-color: #fff;
}

.hamburger:not(.is-active) .hamburger-inner:after {
	top: 7px;
}

.hamburger:not(.is-active) .hamburger-inner:before {
    top: -7px;
}

@media (max-width: 992px) {
	.hamburger-inner, 
	.hamburger-inner:after, 
	.hamburger-inner:before {
		width: 30px;
	}

	.hamburger-box {
		width: 30px;
	}
}

/* End Hamburger */

/*** footer ***/

footer.main {
	padding: 80px 0 80px 0;
	background: #a61413;
	box-shadow: 0 150px 0px 0 #a61413;
}

footer.main p {
	margin: 0;
	opacity: 0.85;
	color: white;
}

footer.main a {
	color: inherit;
}

.footer-holder {
	display: flex;
	flex-direction: row;
  	align-items: stretch;
}

.footer-holder > div {
	flex: 1;
	text-align: left;
}


.footer-holder div p.footer-title {
	font-weight: 500;
	font-style: normal;
	font-size: 14px;
	opacity: 0.5;
	text-transform: uppercase;
}

@media (max-width: 992px) {
	.footer-holder div p.footer-title {
		font-size: 12px !important;
	}
}

img.social-icon {
    width: 15px;
	margin-right: 10px;
	margin-top: -4px;
}

/*** end footer ***/

a:hover,
a:focus,
a:active {
    color: #FFFFFF;
}

#commentform #url {
	display: none;
}

input[type="text"], input[type="email"], input[type="url"], input[type="password"], input[type="search"], input[type="tel"], input[type="number"], textarea, select {
	padding: 10px 20px;
    font-size: 14px;
	font-weight: 300;
	background: white;
}

@media (max-width: 430px) {
	input[type="text"], input[type="email"], input[type="url"], input[type="password"], input[type="search"], input[type="tel"], input[type="number"], textarea, select	{
		min-width: 200px;
	}
}

a h1, a p, a h4 {
	color: #212529;
}

.carousel-indicators li {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 10px;
    margin-left: 10px;
    border: 1px solid white;
    background-color: transparent;
}

.carousel-indicators .active {
    background-color: #fff;
}

.carousel-control-prev, .carousel-control-next {
	width: 5%;
	min-width: 50px;
}

main {
	background: #091a25;
}

body {
	color: rgba(255,255,255,0.8);
}

.btn {
    font-size: 12px;
    letter-spacing: 0.5px;
    padding: 12px 30px;
	border: none;
	color: white;
	text-transform: uppercase;
}

.btn-forum-red {
	background: #a61413;
}

.delay-025s {
	-webkit-animation-delay: 0.25s;
    animation-delay: 0.25s;
}

.delay-05s {
	-webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
}

.webdev-credits, .webdev-credits a {
	font-size: 7.5px;
    opacity: 0.8 !important;
    text-transform: uppercase;
    letter-spacing: 1.25px;
    line-height: 14px;
    max-width: 152px;
}

.main-cta-div .btn {
    padding: 20px 50px;
    font-size: 18px;
}

.animated {
    opacity: 0;
    will-change: transform, opacity;
}

.mobile-links a {
    display: block;
    color: white;
    padding: 10px 0;
    font-size: 1.15em;
    position: relative;
}