/*

Domain: 
Author: 
Description: 
Version: 1.0

*/

/* ===================================================================
 *  webfonts and iconfonts
 *
 * ------------------------------------------------------------------- */

@import url("fonts.css");
@import url("font-awesome.css");


/* ---------------------------------------------------------------------- */
/*	Reset & Clearfix (http://meyerweb.com/eric/tools/css/reset/ v2.0)
/* ---------------------------------------------------------------------- */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* Clearfix */
.clear{clear:both;display:block;height:0;overflow:hidden;visibility:hidden;width:0}.clearfix:after{clear:both;content:' ';display:block;font-size:0;height:0;line-height:0;visibility:hidden;width:0}* html .clearfix,:first-child+html .clearfix{zoom:1}


/* ---------------------------------------------------------------------- */
/* Basic Elements & Classes
/* ---------------------------------------------------------------------- */

*, *:after, *:before { 	
	-webkit-box-sizing: border-box; 
	-moz-box-sizing: border-box; 
	box-sizing: border-box; 
}

* { 
	margin:0; 
	padding:0;
}

body, html { 
	font-size: 62.5%; 
	height: 100%;
  
	padding: 0; 
	margin: 0; 
}

body {
 	background-color: #324149;
 	font-family: "HelveticaLTWXX-Light", sans-serif,
                -apple-system, BlinkMacSystemFont, 
                "Segoe UI", "Roboto", "Oxygen", 
                "Ubuntu", "Cantarell", "Fira Sans", 
                "Droid Sans", "Helvetica Neue";
	font-size: 2rem;
	color: #231F20;
	line-height: 1.8;
  
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  -o-font-smoothing: antialiased;
}

body.is-menu-open {
  height: 100%;
  overflow: hidden;
}

/* ===================================================================
 * links
 *
 * ------------------------------------------------------------------- */

a {
	outline: none;
	text-decoration: none;
	color: #3D505A;
	transition: 500ms ease;
	-moz-transition: 500ms ease;
	-webkit-transition: 500ms ease;
	-ms-transition: 500ms ease;
	-o-transition: 500ms ease;
  
  cursor: pointer;
}

a:hover {
	color: #00A18E;
}

a:visited {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

a:hover,
a:focus {
  color: #B59E59;
}


/* ===================================================================
 *  03. typography & general theme styles
 *
 * ------------------------------------------------------------------- */

h1, h2, h3, h4, h5, h6 {
  color: #151515;
  font-style: normal;
  margin-bottom: 5rem;
}

h3 {
  margin-bottom: 2.8rem;
}

h4 {
	margin-bottom: 0;
}

h5,
h6 {
  margin-bottom: 1.2rem;
}

h1 {
  font-family: "adagio_serifthin", sans-serif;
  color: #B59E59;
  font-size: 3.8rem;
  font-weight: normal;
  line-height: 1.35;
  letter-spacing: -.1rem;
}

h2 {
  font-family: "adagio_seriflight", sans-serif;
  font-size: 3.6rem;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -.1rem;
}

h3 {
  font-family: "adagio_serifthin", sans-serif;
  color: #B59E59;
  font-size: 5rem;
  font-weight: normal;
  line-height: 1;
  letter-spacing: -.1rem;
}

h4 {
  font-family: "HelveticaLTWXX-Bold", sans-serif;
  color: #FFFFFF;
  font-size: 2.2rem;
  line-height: 1.35;
}

p {
	margin-bottom: 3rem;
}

strong {
  font-family: "HelveticaLTWXX-Bold", sans-serif;
}

.section-header {
	font-family: "adagio_serifthin", sans-serif;
  color: #B1B3B6;
  font-size: 3.6rem;
  font-weight: normal;
  line-height: 1.35;
  letter-spacing: -.1rem;
}

.section-intro h3 {
	font-family: "adagio_serifthin", sans-serif;
  color: #B59E59;
  font-size: 5rem;
  font-weight: normal;
  line-height: 1.2;
  letter-spacing: -0.1rem;
}

.section-intro p {
	font-family: "adagio_serifthin", sans-serif;
  font-size: 2.8rem;
  font-weight: normal;
  line-height: 1.5;
  letter-spacing: -0.1rem;
	margin-bottom: 10rem;
}

.section-content h2 {
	margin-bottom: 3.6rem;
}


@media screen and (max-width: 480px) {

	.section-intro h3 {
		font-size: 3.6rem;
	}
}

/* ===================================================================
 * Floated Image & Media
 *
 * ------------------------------------------------------------------- */

img,
video {
  max-width: 100%;
  height: auto;
}

img {
  display: block;
  margin-bottom: 3rem;
	z-index: 0;
}

img.white-border {
  border: 12px #FFF solid;
}

img.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}


/* ===================================================================
 *  forms
 *
 * ------------------------------------------------------------------- */


/* ---------------------------------------------------------------------- */
/*	Forms
/* ---------------------------------------------------------------------- */

::-webkit-input-placeholder {
	/* Chrome/Opera/Safari */
	font-family: "HelveticaLTWXX-Light";
}

::-moz-placeholder {
	/* Firefox 19+ */
	font-family: "HelveticaLTWXX-Light";
}

:-ms-input-placeholder {
	/* IE 10+ */
	font-family: "HelveticaLTWXX-Light";
}

:-moz-placeholder {
	/* Firefox 18- */
	font-family: "HelveticaLTWXX-Light";
}

label {
	cursor: pointer;
	display: block;
	margin: 0 0 5px;
}

input, textarea, select {
	font-family: "HelveticaLTWXX-Light";
	
	-webkit-appearance: none; /* Fix for Mobile Safari */
	background-color: #FFFFFF;
	border: 1px solid #e8e8e8;
	-webkit-border-radius: 0;
	   -moz-border-radius: 0;
	        border-radius: 0;
	-webkit-box-shadow: none;
	   -moz-box-shadow: none;
			box-shadow: none;
	border-radius: 0;
}

input, select {
	width: 100%;
	padding: 20px;

	font-size: 1.6rem;
	letter-spacing: 0.6px;
	padding: 20px;
	
	border: 1px solid #6D6E71;
}

textarea {
	width: 100%;
	height: 150px;
	
	font-size: 1.6rem;
	letter-spacing: 0.6px;
	padding: 20px;

	border: 1px solid #6D6E71;
	border-radius: 0;

	transition: 500ms ease;
	-moz-transition: 500ms ease;
	-webkit-transition: 500ms ease;
	-ms-transition: 500ms ease;
	-o-transition: 500ms ease;
	-webkit-appearance: none;
	-webkit-border-radius: 0;
}

input:focus,
textarea:focus,
select:focus {
	border-color: #CCCCCC;
	outline: none;
}

input[type="submit"],
input[type="reset"],
button {
	float: right;
	width: 160px;
	height: 40px;
	padding: 0;
  
	font-family: "HelveticaLTWXX-Light";  
	font-size: 2rem;
	color: #FFFFFF;
	
  border: 0;
	cursor: pointer;
}

select,
option {
	cursor: pointer;
	padding: 5px 7px;
}

input[type="checkbox"],
input[type="radio"] {
	width: 20px;
}

/* Fix for Mobile Safari */
input[type="checkbox"] {
	-webkit-appearance: checkbox;
}

input[type="radio"] {
	-webkit-appearance: radio;
}

.form-group {
	float: left;
	width: 100%;
	margin: 0 20px 20px 0;
}

.error-msg {
  font-family: 'HelveticaLTWXX-Bold';  
	font-size: 1.8rem;
  color: #B59E59;
}

.has-error {
  font-size: 1.4rem;
  color: #cc3333;
}



/* ===================================================================
 * Layout
 *
 * ------------------------------------------------------------------- */

.main {
  margin-top: 200px;
}

.container {
	margin-right: auto;
	margin-left: auto;

	width: 1180px;
	
	background-color: transparent;
}

.container:after {
  content: "";
  display: table;
  clear: both;
}

section {
  padding: 0;
}

.main .container {
	background-color: #FFFFFF;
	padding: 50px;
}

.row {
	margin-left: 0px;
	margin-right: 0px;
}

.row:before,
.row:after {
	content: " ";
	display: table;
}

.row:after {
	clear: both;
}

.section-img h1 {
  width: 100%;
  text-align: center;
  font-size: 5.4rem;
  color: #816a02;
}

.section-img h1 span {
  font-family: "adagio_serifthin_italic", sans-serif;
}

.full-hide {
  display: none;
}

@media screen and (max-width: 1024px) {

  .main {
    margin-top: 100px;
  }

}

@media screen and (max-width: 1024px) {

  .mobile-hide {
    display: none;
  }

  .full-hide {
    display: block;
  }

  .section-img h1 {
    font-size: 3.4rem;
    line-height: 1;
  }
}

@media screen and (max-width: 480px) {

  .section-img h1 {
    font-size: 2.2rem;
  }
  
  .main .container {
    padding: 10px;
  }

}

	/* -------------------------------------------------- */
	/*	Columns
	/* -------------------------------------------------- */

	.one {
	  float: left;
	  width: 100%;
	}

	.one-half,
	.one-third,
	.two-third,
	.one-fourth,
	.three-fourth {
	  float: left;
	  margin-right: 5%;
	}

	.one-half.last,
	.one-third.last,
	.two-third.last,
	.one-fourth.last,
	.three-fourth.last {
	  margin-right: 0;
	}

	.one-half {
	  width: 47.5%;
	}

	.one-third {
	  width: 31.666%;
	}

	.two-third {
	  width: 63.333%;
	}

	.one-fourth {
	  width: 23.75%;
	}

	.three-fourth {
	  width: 71.25%;
	}

@media screen and (max-width: 1360px) {

	.container {
		width: 95%;
	}
	
}

@media screen and (max-width: 768px) {

	.one {
	  float: left;
	  width: 100%;
	}

	.one-half,
	.one-third,
	.two-third,
	.one-fourth,
	.three-fourth {
	  float: left;
	  margin-right: 0;
	}

	.one-half.last,
	.one-third.last,
	.two-third.last,
	.one-fourth.last,
	.three-fourth.last {
	  margin-right: 0;
	}

	.one-half {
	  width: 100%;
	}

	.one-third {
	  width: 100%;
	}

	.two-third {
	  width: 100%;
	}

	.one-fourth {
	  width: 100%;
	}

	.three-fourth {
	  width: 100%;
	}
	
}

/* ===================================================================
 *  header styles
 *
 * ------------------------------------------------------------------- */

/*
#header,
#home-hero,
img-hero,
.menu-logo {
	-webkit-transition: .5s ease;
	-moz-transition: .5s ease;
	transition: .5s ease;
}
*/

#header {
  width: 100%;
  z-index: 100;
}

.nav-wrapper {
  background: #324149 url("../images/background.jpg") no-repeat;
  background-size: cover;  
  
  width: 100%;
  height: 200px;
  z-index: 97;
  
  position: fixed;
}

.nav-wrapper-small {
  height: 120px;  
}

#page-background {
  background: #324149 url("../images/background.jpg") no-repeat;
  background-size: 100%;
  
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: fixed;
	
	z-index: -1;
}

.smaller #page-background {
  height: 180px;
  z-index: 10;
}

#sub-header {
  position: fixed;
  top: 0;
  width: 100%;
  margin: 0 auto;
  height: 100px;
  background: #324149 url("../images/background.jpg") no-repeat;
  background-size: 100%;
  background-attachment: fixed;
}

@media screen and (min-width: 1024px) {
  
  #sub-header {
    height: 200px;
  }
  
}

@media screen and (max-width: 1023px) {
  
  .nav-wrapper {
    position: fixed;
    top: 0;
    
    height: 65px;
  }
}

@media screen and (max-width: 800px) {

  #header {
    padding: 0;
  }
  
}

@media screen and (max-width: 420px) {
	
	.smaller #page-background {
		height: 160px;
		z-index: 10;
	}

}

@media screen and (max-width: 360px) {
	
	.smaller #page-background {
		height: 180px;
		z-index: 10;
	}

}


/* ===================================================================
 *  header logo
 *
 * ------------------------------------------------------------------- */

.menu-logo img {
  display: block;
  position: fixed;
  top: 60px;
  left: 50%;
  
  transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
  width: 230px;
  z-index: 301;
}

.smaller .menu-logo img {
  top: 20px;
  width: 200px;
  
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;  
}


/* ============
 * responsive
 * 
 * ------------ */

@media only screen and (max-width: 1023px) {

  .menu-logo img {
    top: 20px;
    width: 160px;
  }

  .smaller .menu-logo img {
    width: 160px;
  }
    
}

@media only screen and (max-width: 768px) {

  .menu-logo img {
    top: 20px;
    width: 130px;
  }

  .smaller .menu-logo img {
    width: 130px;
  }
    
}

/* ===================================================================
 *  navigation - main
 *
 * ------------------------------------------------------------------- */

#global-nav ul {
  list-style: none;
  margin: 0;
	top: 0;
}

#global-nav ul li {
	padding: 0;
	margin-right: 30px;
}

#global-nav ul li:last-child {
  margin-right: 0;
}

#global-nav a {
  font-family: 'HelveticaLTWXX-Light';
	font-size: 4rem;
  line-height: 1.6;
  color: #FFFFFF;
}

.is-menu-open .mobile-wrapper {
  display: flex;
}

@media screen and (max-width: 1023px) {

  .mobile-wrapper {
    position: fixed;
    width: 100%;
    align-items: center;
    background-color: #324149;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding-top: 30px;
    padding-bottom: 50px;
		padding: 30px;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    display: none;
    z-index: 100;
  }
  
  #global-nav a {
    font-family: 'HelveticaLTWXX-Light';
    font-size: 3.6rem;
    line-height: 1.6;
    color: #FFFFFF;
  }

}

@media screen and (max-width: 360px) {
  
  #global-nav a {
    font-size: 1.6rem;
    letter-spacing: 0.1rem;
    line-height: 1.5;
    color: #FFFFFF;
  }
}

@media screen and (min-width: 1024px) {
	
  .navigation-bar {
    position: fixed;
    width: 95%;
    
    padding: 100px 0 0 0;
    margin: 0 auto;
    z-index: 300;
  }
  
  .navigation-bar.fixed {
    padding: 30px 0 0 0;    
    position: fixed;
  }

  
  #global-nav {
    overflow: hidden;
  }
  
  #global-nav ul {
    display: flex;
  }
	
  #global-nav a {
		font-family: 'HelveticaLTWXX-Bold';
    font-size: 1.6rem;
    letter-spacing: 0.1rem;
    line-height: 1.5;
    color: #FFFFFF;
  }

  #global-nav .left-nav {
    float: left;
  }
  
  #global-nav .right-nav {
    float: right;
  }
	
}

@media screen and (min-width: 1360px) {

  .navigation-bar {
    width: 1180px;
  }
 
}


/* ===================================================================
 *  Fn - main mobile
 *
 * ------------------------------------------------------------------- */

.header-menu-toggle {
  display: block;
  position: fixed;
  right: 10px;
  top: 15px;
  height: 42px;
  width: 42px;
  color: rgba(255, 255, 255, 0.5);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  z-index: 110;
  
  cursor: pointer;
}

.header-menu-toggle:hover,
.header-menu-toggle:focus {
  color: #FFFFFF;
}

.header-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin-top: -1px;
  position: absolute;
  left: 9px;
  top: 50%;
  right: auto;
  bottom: auto;
  background-color: white;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  font: 0/0 a;
  text-shadow: none;
  color: transparent;
}

.header-menu-toggle span::before,
.header-menu-toggle span::after {
  content: '';
  width: 100%;
  height: 100%;
  background-color: inherit;
  position: absolute;
  left: 0;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.header-menu-toggle span::before {
  top: -9px;
}

.header-menu-toggle span::after {
  bottom: -9px;
}

.header-menu-toggle.is-clicked span {
  background-color: rgba(255, 255, 255, 0);
  -webkit-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}

.header-menu-toggle.is-clicked span::before,
.header-menu-toggle.is-clicked span::after {
  background-color: white;
}

.header-menu-toggle.is-clicked span::before {
  top: 0;
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
}

.header-menu-toggle.is-clicked span::after {
  bottom: 0;
  -webkit-transform: rotate(225deg);
  -ms-transform: rotate(225deg);
  transform: rotate(225deg);
}


/* ============
 * responsive
 * 
 * ------------ */

@media only screen and (min-width: 1024px) {

  .header-menu-toggle {
    display: none;
  }
}


/* ===================================================================
 *  navigation - financial planning
 *
 * ------------------------------------------------------------------- */

.fp {
	position: relative;
  width: 100%;
  text-align: center;
  z-index: 96;
  margin-bottom: 50px;
}

.fp .menu ul {
	font-size: 0;
	padding: 0;
	margin: 0;
}

.fp .menu li {
  display: inline-block;
	
	font-size: 0;
	
  list-style-type: none;
  padding: 0;
  margin: 0 0 0 20px;
}

.fp .menu > li > a {
  display: inline-block;

  font-family: "adagio_serifthin", sans-serif;
  font-size: 2.4rem;
  color: #B59E59;
  font-weight: 300;
  letter-spacing: 0.1rem;

  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.fp.fixed {
  position: fixed;
  top: 100px;
  
  z-index: 99;
}

@media only screen and (max-width: 1100px) {

  .fp .menu li {
    padding: 0;
    margin-left: 20px;
  }
  
  .fp .menu > li > a {
    font-size: 1.8rem;
  }

}

@media only screen and (max-width: 768px) {
	
	.fp.fixed {
    top: 65px;
  }
}

@media only screen and (max-width: 480px) {
	
  .fp .menu {
    width: 100%;
  }
  
  .fp .menu li {
    padding: 0;
    margin-left: 3px;
  }

  .fp .menu > li > a {
    font-size: 1.6rem;
  }

}

/* ===================================================================
 *  homepage section - hero
 *
 * ------------------------------------------------------------------- */

#home-hero {
  position: relative;
	opacity: 1;
  width: 100%;
  padding-top: 200px;

  text-align: center;
}

#home-hero h1 {
  font-family: "adagio_serifthin", sans-serif;
  color: #B59E59;
  font-size: 5rem;
  font-weight: normal;
  line-height: 1.35;
  letter-spacing: -.1rem;
	
	margin-top: 20px;
	margin-bottom: 50px;
}

#home-hero h1 span {
  font-family: "adagio_serifthin_italic", sans-serif;
  margin: 0 5px 0 5px;
}

#home-hero h1::after {
  content: ' ';
  display: block;
  margin: 20px auto 0;
  width: 100px;
  height: 10px;
  background-color: #B59E59;
  transform: rotate(-8deg);
}

#img-hero {
	opacity: 1;
}

@media only screen and (max-width: 999px) {

  #home-hero {
    margin-top: 80px;
		padding: 0;
  }

 #home-hero h1 {
   font-size: 3rem;
  }
}


/* ===================================================================
 *  homepage section - safeguard
 *
 * ------------------------------------------------------------------- */

#homepage-safeguard {
  padding-top: 50px;
  background-color: #FFFFFF;
}

#homepage-safeguard img {
  margin: 0;
}

/* ===================================================================
 *  homepage section - protect
 *
 * ------------------------------------------------------------------- */

#homepage-protect {
  padding-top: 50px;
	background-color: #FFFFFF;
}

.braces {
	background: url("../images/braces.svg") no-repeat;
  background-size: contain;
}

.item-list {
  position: relative;
}

.item-list ul {
  margin-left: 65px;
  list-style: none;
}

.item-list ul li {
  font-family: "adagio_serifthin", sans-serif;
  color: #B59E59;
  font-size: 3.4rem;
  line-height: 1.4;
	padding: 0 0 20px 0;
}

.item-list ul li:first-child {
	padding-top: 20px;
}

@media only screen and (max-width: 1280px) {

  .item-list ul {
    margin-left: 50px;
    list-style: none;
  }

  .item-list ul li {
    font-size: 3rem;
    line-height: 1.1;
  }

}
/* ===================================================================
 *  homepage section - diversify
 *
 * ------------------------------------------------------------------- */

#homepage-diversify {
  padding-top: 50px;
	background-color: #324149;
	
  background:linear-gradient( #FFFFFF 12%, #324149 12%);
}

#homepage-diversify img {
	position: relative;
}

#homepage-diversify p {
  color: #FFFFFF;
}

#homepage-diversify .section-content h2 {
  color: #B59E59;
  margin: 0;
}

#homepage-diversify .section-content p:last-of-type {
  margin-bottom: 0;
}

/* ===================================================================
 *  homepage section - optimise
 *
 * ------------------------------------------------------------------- */

#homepage-optimise {
  padding-top: 50px;
  background-color: #324149;
}

#homepage-optimise p {
  color: #FFFFFF;
}

#homepage-optimise .section-content h2 {
  color: #B59E59;
  margin: 0;
}


/* ===================================================================
 *  homepage section - legacy
 *
 * ------------------------------------------------------------------- */

#homepage-legacy {
  padding-top: 20px;
  background-color: #FFFFFF;
}

#homepage-legacy .section-img {
	position: relative;
}

#homepage-legacy .section-img h1 {
  color: #816a02;
}

#homepage-legacy .section-tagline {
  position: absolute;
  top: 20%;
  left: 35%;"
}

#homepage-legacy p {
  color: #231F20;
}

#homepage-legacy .section-content h2 {
  color: #B59E59;
}

#homepage-legacy .section-content h4 {
  color: #231F20;
}


/* ===================================================================
 *  homepage section - continuity
 *
 * ------------------------------------------------------------------- */

#homepage-continuity {
  padding-top: 50px;
  background-color: #324149;
}

#homepage-continuity h2 {
  margin: 0;
}

#homepage-continuity .section-intro h3 {
  padding: 30px 0 30px 0;
}

#homepage-continuity p {
  color: #FFFFFF;
}

#homepage-continuity .section-content h2 {
  color: #B59E59;
}



/* ===================================================================
 *  homepage section - universal life 
 *
 * ------------------------------------------------------------------- */

#homepage-universal-life {
  padding-top: 20px;
  background-color: #FFFFFF;
}

#homepage-universal-life .section-img {
	position: relative;
}

#homepage-universal-life .section-tagline {
  position: absolute;
  top: 25%;
  left: 60%;
}

#homepage-universal-life .section-img h1 span {
  font-family: "adagio_serifthin_italic", sans-serif;
}

#homepage-universal-life h2 {
  color: #B59E59;
	margin: 0;
}

#homepage-universal-life p {
  color: #231F20;
}

#homepage-universal-life .section-content h4 {
  color: #231F20;
  margin-top: 20px;
}


/* ===================================================================
 *  page - about us
 *
 * ------------------------------------------------------------------- */

#about-us h2 {
  font-size: 3.6rem;
  color: #B59E59;
}

/* ===================================================================
 *  page - financial planning
 *
 * ------------------------------------------------------------------- */

#section-financial-planning {
  background-color: #324149;
}

#section-financial-planning .container {
  background-color: #324149;
}

#section-financial-planning .text-content h2 {
  color: #B59E59;
  margin: 0;
}

#section-financial-planning h4 {
  color: #FFFFFF;
}

#section-financial-planning p {
  color: #FFFFFF;
}


/* ===================================================================
 *  page - universal life
 *
 * ------------------------------------------------------------------- */

#section-universal-life {
  background-color: #FFFFFF;
}

#section-universal-life .container {
  background-color: #FFFFFF;
}

ul.features {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
  
  margin-top: 80px;
}

ul.features li {
	width: 30%;
	margin-bottom: 60px;
  line-height: 1.4;
}

ul.features li h3 {
	font-size: 3.6rem;
	margin-bottom: 10px;
}

@media only screen and (max-width: 768px) {

  ul.features li {
    width: 100%;
    margin-bottom: 30px;
  }

}

/* ===================================================================
 *  page - contact
 *
 * ------------------------------------------------------------------- */

#contact {
  background-color: transparent;
}

#contact h2 {
  font-size: 3.6rem;
  color: #B59E59;
}

ul.address {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

ul.address li {
	width: 30%;
	margin-bottom: 60px;
}
}

ul.address li {
	width: 50%;
	margin-bottom: 60px;
}

ul.address li h3 {
  display: block;
  font-family: "HelveticaLTWXX-Bold", sans-serif;  
	font-size: 2rem;
  color: #231F20;
  margin-bottom: 20px;
}

.contact-form {
	font-family: "HelveticaLTWXX-Light";
}

.contact-form textarea:focus {
	height: 200px;
	transition: 500ms ease;
	-moz-transition: 500ms ease;
	-webkit-transition: 500ms ease;
	-ms-transition: 500ms ease;
	-o-transition: 500ms ease;
}

.contact-form button {
 background-color: #324149;
}

@media only screen and (max-width: 768px) {

  ul.address li {
    width: 100%;
  }
}

/* ===================================================================
 *  page - contact
 *
 * ------------------------------------------------------------------- */

#privacy-policy {
  background-color: transparent;
}

#privacy-policy h2 {
  font-size: 3.6rem;
  color: #B59E59;
}

#privacy-policy h3 {
  font-family: "HelveticaLTWXX-Light", sans-serif;  
  font-size: 2.4rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

#privacy-policy ul {
  margin-bottom: 3rem;
}

#privacy-policy ul li {
  list-style: disc;
  margin-left: 40px;
}
/* ===================================================================
 *  footer styles
 *
 * ------------------------------------------------------------------- */

footer {
  padding-top: 50px;
  padding-bottom: 50px;
  
  font-size: 1.6rem;
  color: #FFFFFF;
  background-color: transparent;
	
  z-index: 11;
}

.frontpage {
  background-color: #324149;
}

.footer-nav {  
  border-top: 1px solid #FFFFFF;
}

.footer-nav ul {
  list-style: none;
  margin: 20px 0;
}

.footer-nav ul li {
  display: inline-block;
  padding: 0;
}

.footer-nav ul li a {
  padding-right: 15px;
}

.footer-nav ul a,
.footer-nav ul a:visited {
  color: #FFFFFF;
}

.footer-bottom {
  color: #B1B3B6;
  margin-top: 2rem;
}

.footer-bottom .copyright {
  float: left;
}

.footer-bottom .copyright span {
  display: inline-block;
}

.footer-bottom .copyright span::after {
  content: "|";
  display: inline-block;
  padding: 0 1rem 0 1.2rem;
  color: #B1B3B6;
}

.footer-bottom .copyright span:last-child::after {
  display: none;
}

.footer-legal {
  float: right;
}

.footer-legal ul {
  list-style: none;
  margin: 0;
}

.footer-legal ul li {
  display: inline-block;
  padding-left: 0;
}

.footer-legal ul li a {
  font-size: 1.4rem;
  padding-left: 10px;
}

.footer-legal ul a,
.footer-legal ul a:visited {
  color: #B1B3B6;
}

/* ============
 * responsive
 * 
 * ------------ */

  @media only screen and (max-width: 1024px) {
    
    .footer-nav ul li a {
      padding-right: 5px;
    }

    .footer-bottom {
      font-size: 1.3rem;
      padding-bottom: .6rem;
    }

    .footer-bottom .copyright {
      float: left;
      width: 100%;
    }

    .footer-bottom .copyright span {
      display: block;
    }
    
    .footer-bottom .copyright span::after {
      display: none;
    }
    
    .footer-legal {
      width: 100%;
      float: left;
      margin-top: 10px;
    }
    
    .footer-legal ul li a {
      padding-left: 0;
    }    
  }


/* ===================================================================
 * go to top
 *
 * ------------------------------------------------------------------- */

#go-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 600;
  display: none;
}

#go-top a,
#go-top a:visited {
  text-decoration: none;
  border: 0 none;
  display: block;
  height: 30px;
  width: 30px;
  line-height: 30px;
  text-align: center;
  background-color: #232d37;
	font-family: 'FontAwesome';	
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  text-transform: uppercase;
  border-radius: 5px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

#go-top a i,
#go-top a:visited i {
	font-family: 'FontAwesome';	
  font-size: 16px;
  line-height: inherit;
}

#go-top a:hover,
#go-top a:focus {
  color: #FFFFFF;
}

/* ============
 * responsive
 * 
 * ------------ */

	@media only screen and (max-width: 768px) {

		#go-top {
			bottom: 0;
			right: 0;
		}

		#go-top a,
		#go-top a:visited {
			border-radius: 5px 0 0 0;
		}
	}