:root {
	--primary-headline-color: #352001;
	--primary-bg-color: #91E0F3;
	--gold-accent: #9F6714;
}

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

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

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

body.loading-complete {
	background-color: var(--primary-bg-color);
	transition: 0s background-color 1.2s;
}

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

.full-width {
	width: 100%;
}

button:not(.hamburger), html input[type=button], input[type=reset], input[type=submit] {
    padding: 10px 40px;
    color: white;
    background: #bc141a;
	font-size: 14px;
	font-weight: 300;
	border: none;
	min-width: 350px;
	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;
}

.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 */

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

:root {
	--loading_effect_time: 3s;
}

.loader {
    position: fixed;
    top: 0;
    width: 100%;
    min-height: 100vh;
    z-index: 9999999999;
    display: flex;
}

.loader img {
    width: 120px;
    margin: auto;
    opacity: 0;
	animation: loaderAnima infinite  var(--loading_effect_time) ;
}


@media (max-width: 768px) {
    .loader img {
        width: 100px;
    }
}

@media (max-width: 576px) {
    .loader img {
        width: 80px;
    }
}

@keyframes loaderAnima {
    25%  { opacity: 1 }
    80%  { opacity: 1 }
    100% { opacity: 0 }
}

.loading-complete .loader {
    opacity: 0;
    transform: scale(0);
    transform-origin: top;
    transition: 0.4s opacity 0s, 0s transform 0.4s;
}

/* End Page Loader */


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: 350px;
	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;
	}
}

.btn {
    padding: 20px 50px;
    font-size: 13px;
    letter-spacing: 1px;
    font-weight: 400;
	border: none;
}

.btn-primary {
	background: #9F6714;
}

.btn-outline {
	border: 1px solid;
}

.c-gold {
	color:var(--gold-accent);
}

@media (max-width: 768px) {
	.btn {
		padding: 15px 30px;
	}
}


.image-holder {
    width: 100%;
    background: gray;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.image-holder.ratio-3by4 {
    padding-bottom: 133%;
}

.image-holder.ratio-4by3 {
    padding-bottom: 75%;
}

.image-holder.ratio-16by9 {
    padding-bottom: 56%;
}

.image-holder.ratio-9by16 {
    padding-bottom: 177%;
}

.image-holder.ratio-1by1 {
    padding-bottom: 100%;
}

.image-holder.ratio-height-200 {
    padding-bottom: 200px;
}

.image-holder.ratio-height-300 {
    padding-bottom: 300px;
}

.image-holder.ratio-height-500 {
    padding-bottom: 500px;
}