/* ########## CORE STYLES ########## */

html {min-height: 100%;height: 100%;}

body {
	margin: 0;
	padding: 0;
	font-size: 10px;
	line-height: 1.2em;	
	font-family: "Urbanist", sans-serif;
	background: url('../images/bg-main.jpg') no-repeat;
	background-position: center;
	background-size: cover;
    background-attachment: fixed;
	color: rgba(54,54,54,1);
	position: relative;
	min-height: 100%;
	height: 100%;
    -webkit-text-size-adjust: 100%;
} 

hr {
	background: rgba(54,54,54,0.1);
	height: 5px;
	border: none;
	margin: 3rem 0 2rem 0;
	padding: 0;
	clear: both;
}

.d-table, 
.inner {
	max-width: 650px;
	margin: 0 auto;
}

.inner {
	margin: 0 auto;
    padding: 5rem;
	width: 100%;
	height: 100%;
	vertical-align: middle;
	position: relative;
	display: table-cell;
}
   
.disclaimer {
    font-size: 0.8rem;
    line-height: 1.5rem;
    padding: 2em 0;

}

.link-more {
    font-weight: 600;
    color: rgb(54,54,54);
    position: relative;
    margin: 1em 1em 1em 0;
    padding: 0 1.5em 0 0;
    font-size: 1rem;
}

.link-more:hover {
    color: rgb(145,56,49);
    text-decoration: underline;
}


.link-more:after {
    display: inline-block;
    right: 0;
    font-weight: 400;
    font-family: "Font Awesome";
    line-height: 1em;
    content:"\f324";
    font-size: 1em;	
    position: absolute;
    top: 15%;
    margin-right: 0;
    transition: all .25s;
}

.link-more:hover:after {
    right: -1em;
}


.clear {clear: both;}
a img {border: none;}
a:link, a:visited {color: rgb(54,54,54); text-decoration: none;}
a:hover, a:active {color: rgb(34,150,206); text-decoration: none;}

/* ########## CONTENT STYLES ########## */

.logo {
	opacity: 1;
	width: 100%;
    position: relative;
    z-index: 2;
    max-width: 300px;
    margin: 0 auto;
	display: block;
}

.adjust-image-mnt {
    overflow: hidden;
    position: relative;
}

.adjust-image-mnt img {
    position: absolute;
    left: 0;
    top: 25%;
    width: 110%;
}

/* ########## TYPOGRAPHY STYLES ########## */

h1, h2, h3, h4, h5, h6 {
	padding: 0;
	margin: 0.5em 0;
	line-height: 1em;
    font-family: "Urbanist", serif;
    font-weight: 900;
    font-style: normal;
    color: rgb(54,54,54);
	letter-spacing: -2px;
}

h1 {
	font-size: 5em;
}

h2 {
	font-size: 5em;
}

h3 {
	font-size: 2em;
}

h4, h5, h6 {
	font-size: 1.4em;
}

p {
	margin:  0.5em 0;
	padding: 0;
    font-size: 1rem;
    line-height: 1.5em;
}

.subheading {
	padding: 0;
	margin: 0.5em 0;
	line-height: 1em;
    font-family: "Urbanist", serif;
    font-weight: 500;
    font-style: normal;
    color: rgb(54,54,54);
	font-size: 4em;
	display: block;
}

.text-primary,a.text-primary {
	color: rgb(34,150,206) !important;
}

.text-secondary,a.text-secondary {
	color: rgb(0,46,69) !important;
}

.text-lead {
	font-size: 2.5em;
	line-height: 1.2em;
	font-weight: 300;
	margin: 2rem 0;
}

.text-lg {
	font-size: 1.75em;
}

.text-lead strong {
    font-weight: 700;
}

.inverse,
.inverse :is(h1, h2, h3, h4, h5, h6) {
	color: rgb(255,255,255);
}


.inverse a:link, .inverse a:visited {color: rgb(255,255,255); text-decoration: none;}
.inverse a:hover, .inverse a:active {color: rgb(34,150,206); text-decoration: none;}


/* ########## ACCENT STYLES ########## */

.accent-brand-1 {
	background: rgba(34,150,206,1);
}

.accent-brand-2 {
	background: rgba(0,46,69,1);
}

.accent-brand-3 {
	background: rgba(54,54,54,1);
}

.accent-image-1 {
	background: rgba(34,150,206,1) url('../images/accent-image-1.jpg') no-repeat center;
	background-size: cover;
}

.hero-image-1 {
	background: url('../images/hero-1.jpg') no-repeat center;
	background-size: cover;
	min-height: 300px;
}

.accent-border {
	position: relative;
}

.accent-border:after {
	height: 25px;
	display: block;
	width: 75%;
	content: '';
	position: absolute;
}

.accent-border.bottom:after {
	background: rgb(54,54,54);
	left: 0;
	bottom: 0;
}

.accent-border.top:after {
	background: rgb(34,150,206);
	right: 0;
	top: 0;
}


/* ########## RESPONSIVE STYLES ########## */


@media (min-width: 1200px) {
	.accent-border.top:after {
		width: 50%;
	}
}

@media (min-height: 1200px) {
	section > .row {
		min-height: 50vh;
	}
}

/* ##### ANIMATIONS ##### */

.defer-display {
    opacity: 0;
}

.stage-1 {
    animation: deferDisplay 500ms both;
    animation-delay: 0.5s;
    opacity: 1;
}

.stage-2 {
    animation: deferDisplay 500ms both;
    animation-delay: 1.5s;
    opacity: 1;
}

.stage-3 {
    animation: deferDisplay 500ms both;
    animation-delay: 2.5s;
    opacity: 1;
}

.stage-4 {
    animation: deferDisplay 1000ms both;
    animation-delay: 4s;
    opacity: 1;
}

@keyframes deferDisplay{
  0% {opacity: 0;}
  100% {opacity: 1;}
}

@keyframes bounce{
  25%{transform: scale(1.15);}
  50%{transform: scale(0.85);}
  75%{transform: scale(1.1);}
  100%{transform: scale(1.0);}
}