@import url(http://fonts.googleapis.com/css?family=Raleway:300,400,600,700,800,900);

body {
	margin: 0;
}

:root {
	--am-container-padding:0;
	--am-block-margin-top:0.5em;
	--am-flex-gap:0;
	--am-flex-min-block-width:;
	scroll-behavior: smooth;
}

a,
ul,
h1,
h2,
h3,
h4,
h5,
h6,
p {
	font-family: 'Raleway', sans-serif;
}

h2
 {
    text-transform: uppercase;
	font-size: 3em;
	font-weight: 400;
	line-height: 54px;
	float: left;
	padding-right: 35px;
	padding-bottom: 5rem;
	position: relative;
	color: red;
	-webkit-text-stroke: 0.3px;
}

h2:after {
	position: absolute;
	width: 20px;
	height: 40px;
	background-color: #456280;
	content: "";
	top: 6px;
	margin-left: 10px;
}

h3 {
	height: 70px;
	color: #0d0d0d;
	font-size: 1.375em;
	font-weight: 800;
	line-height: 1em;
	text-transform: uppercase;
	margin-top: 0;
	padding-right: 10%;
}

a {
	color: #0d0d0d;
	text-decoration: none;
}

a:hover {
	color: #be8b2b;
}

p {
	line-height: 30px;
	font-size:1em;
	margin-bottom: 20px;
	color: #737373;
}

.a-animated-button {
	display: block;
	border: 2px solid #be8b2b;
	text-align: center;
	text-transform: uppercase;
	width: 200px;
	margin: 15px 10px;
	padding: 5px 0 5px 0;
	font-weight: 700;
	background: linear-gradient(to right, #be8b2b 50%, #ecf0f1 50%);
	background-size: 200% 100%;
	background-position: right bottom;
	transition: all .2s ease-out;	
}

.a-animated-button:hover{
	background-position: left bottom;
	color: #ffffff;
}

.description {
	line-height: 40px;
	font-size:1.5em;
	color: #737373;
}

.block-bg-white {
	padding-left: 20%;
	padding-right: 20%;
}

.block-bg-grey {
	background-color: #ecf0f1;
	padding-left: 20%;
	padding-right: 20%;
}

.header {
	padding-left: 20%;
	padding-right: 20%;
	padding-bottom: 30px;
	position: sticky;
	top: 0;
}

.footer {
	background-color: #dae2e4;
	padding-left: 20%;
	padding-right: 20%;
	border-bottom: 10px solid #456280;
}

am-stretched img{
	min-width: 0;
	
}

ul {
	color: #737373;
	line-height: 1.8;
}


.banner {
	background-image: url("/shared/banner.jpg");
	background-repeat: no-repeat;
	height: 250px;
}

.navbar {
  list-style-type: none;
  margin: 20px;
  padding: 0;
  overflow: hidden;
}

.navbar li {
  float: left;
}

.navbar li a {
  display: block;
font-size: 1em;
font-weight: 600;
line-height: 55px;
padding: 0 20px 0 20px;
}

@media screen and (max-width: 600px) {
.description {
	width: 20rem;
}
}

@media screen and (max-width: 1000px) {
  .navbar {
    visibility: hidden;
    display: none;
  }
}


/* JS animation */
.delay-1 {
  /* Hide element */
  opacity: 0;
  transform: translateY(70px);
}

/* Show element */
.delay-1.element-show {
  opacity: 1;
  transition: all 1.2s;
  transform: translateY(0%);
}

.delay-2 {
  /* Hide element */
  opacity: 0;
  transform: translateY(70px);
}

/* Show element */
.delay-2.element-show {
  opacity: 1;
  transition: all 1.2s .3s;
  transform: translateY(0%);
}

.delay-3 {
  /* Hide element */
  opacity: 0;
  transform: translateY(70px);
}

/* Show element */
.delay-3.element-show {
  opacity: 1;
  transition: all 1.2s .6s;
  transform: translateY(0%);
}
