/*
* Skeleton V2.0.2
* Copyright 2014, Dave Gamache
* www.getskeleton.com
* Free to use under the MIT license.
* http://www.opensource.org/licenses/mit-license.php
* 12/15/2014
*/


/* Table of contents
–––––––––––––––––––––––––––––––––––––––––––––––––– 
-Colors
- Grid
- Base Styles
- Typography
- Links
- Buttons
- Forms
- Lists
- Code
- Tables
- Spacing
- Utilities
- Clearing
- Media Queries
*/

/* Colors and fonts
–––––––––––––––––––––––––––––––––––––––––––––––––– */

/* Blue grey - 4a4d56 / 74, 77, 86, 1 */



.wf-loading * {
 
    /*
    first things first, we need to hide everything,
    but bear in mind that this will only take effect
    once the loading script has taken effect.
    here we're hiding all content within
    the <html> once it has the class "wf-loading"
    */
    opacity: 0;
}

.wf-loading {
     
    /*
    here's a background image (at a meer 723bytes)
    to indicate something's happening
    */
    background: url('../images/ajax-loader.gif') no-repeat center center;
     
    /*
    just to make sure the <html>
    element shares the same dimensions as
    the browser window when loading
    (and not the potentially elongated page)
    */ 
    height: 100%;
    overflow: hidden;
         
}

.wf-active *, 
.wf-inactive * {
    /*
    add some transitional effects
    to reintroduce the content
    gradually once fonts are loaded
    */
    -webkit-transition: opacity 1s ease-out;  
    -moz-transition: opacity 1s ease-out; 
    -o-transition: opacity 1s ease-out;  
    transition: opacity 1s ease-out;  
}

/* Grid
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.container {
  position: relative; 
  width: 100%; 
  max-width: 100%; 
  margin: 0 auto; 
  padding: 0px;
  box-sizing: border-box; 
  z-index: 1;}
.column,        
.columns { 
  width: 100%; 
  float: left; 
  box-sizing: border-box; }
  
  .hidden {
    display: none;
  }

/* For devices larger than 400px */
@media (min-width: 400px) {
  .container {
    width: 100%;
    padding: 0; }
}

/* For devices larger than 550px */
@media (min-width: 1024px) {
  .container {
    width: 100%; }
  .column,
  .columns {
    padding-left: 2%;
    padding-right: 2%;}
  .column:first-child,        
  .columns:first-child { 
    margin-left: 0; }
  
  .one.column,
  .one.columns                    { width: 4.66666666667%; }
  .two.columns                    { width: 13.3333333333%; }
  .three.columns                  { width: 22%;            }
    .two.columns.primary { width: 165px;          }
    .two.columns.secondary          { width: 170px;          }
  .four.columns                   { width: 30.6666666667%; }
  .five.columns                   { width: 39.3333333333%; }
  .six.columns                    { width: 48%;            }
  .seven.columns                  { width: 56.6666666667%; }
  .eight.columns                  { width: 65.3333333333%; }
  .nine.columns                   { width: 74.0%;          }
  .ten.columns                    { width: 82.6666666667%; }
  .eleven.columns                 { width: 91.3333333333%; }
  .twelve.columns                 { width: 100%; margin-left: 0; }

  .one-third.column               { width: 30.6666666667%; }
  .two-thirds.column              { width: 65.3333333333%; }

  .one-half.column                { width: 48%; }

  /* Offsets */
  .offset-by-one.column,
  .offset-by-one.columns          { margin-left: 8.66666666667%; }
  .offset-by-two.column,
  .offset-by-two.columns          { margin-left: 17.3333333333%; }
  .offset-by-three.column,
  .offset-by-three.columns        { margin-left: 26%;            }
  .offset-by-four.column,
  .offset-by-four.columns         { margin-left: 34.6666666667%; }
  .offset-by-five.column,
  .offset-by-five.columns         { margin-left: 43.3333333333%; }
  .offset-by-six.column,
  .offset-by-six.columns          { margin-left: 52%;            }
  .offset-by-seven.column,
  .offset-by-seven.columns        { margin-left: 60.6666666667%; }
  .offset-by-eight.column,
  .offset-by-eight.columns        { margin-left: 69.3333333333%; }
  .offset-by-nine.column,
  .offset-by-nine.columns         { margin-left: 78.0%;          }
  .offset-by-ten.column,
  .offset-by-ten.columns          { margin-left: 86.6666666667%; }
  .offset-by-eleven.column,
  .offset-by-eleven.columns       { margin-left: 95.3333333333%; }

  .offset-by-one-third.column,
  .offset-by-one-third.columns    { margin-left: 34.6666666667%; }
  .offset-by-two-thirds.column,
  .offset-by-two-thirds.columns   { margin-left: 69.3333333333%; }

  .offset-by-one-half.column,
  .offset-by-one-half.columns     { margin-left: 52%; }

}


/* Base Styles
–––––––––––––––––––––––––––––––––––––––––––––––––– */

html, body {
  height: 100%;
  width: 100%;
}
/* NOTE
html is set to 62.5% so that all the REM measurements throughout Skeleton 
are based on 10px sizing. So basically 1.5rem = 15px :) */
html { 
  font-size: 62.5%; } 
body {
  font-size: 1.2em; /* currently ems cause chrome bug misinterpreting rems on body element */
  line-height: 1.5;
  font-weight: 300;
  font-family: 'Novecento Sans W01 Wd UltLt', "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #222; 
  background-color: #4a4d56;
  /*background-image: url(../assets/719.GIF);
  background-position: center center; 
  background-repeat: no-repeat;
  background-size: 30px;*/
  }
  
:focus {
outline: -webkit-focus-ring-color auto 0px;
}


/* Typography
–––––––––––––––––––––––––––––––––––––––––––––––––– */
h1, h2, h3, h4, h5, h6 { 
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 300; }
h1 { font-size: 1.5rem; line-height: 1.2;  text-transform: uppercase;}
h2 { font-size: 3.5rem; line-height: 1.25; text-transform: uppercase;}
h3 { font-size: 2.9rem; line-height: 1.3;  letter-spacing: -.1rem; text-transform: uppercase;}
h4 { font-size: 2.3rem; line-height: 1.35; letter-spacing: -.08rem; text-transform: uppercase;}
h5 { font-size: 1.7rem; line-height: 1.5;  letter-spacing: -.05rem; text-transform: uppercase;}
h6 { font-size: 1.4rem; line-height: 1.6;  letter-spacing: 0; text-transform: uppercase;}

/* Larger than phablet */
@media (min-width: 550px) {
  h1 { font-size: 2rem; line-height: 1; }
  h2 { font-size: 4.1rem; }
  h3 { font-size: 3.5rem; }
  h4 { font-size: 2.9rem; }
  h5 { font-size: 2.3rem; }
  h6 { font-size: 1.4rem; }
}

p {
  margin-top: 0; 
  font-family: 'Calibri W01 Light', "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 12px; 
  font-size: 1.2rem; 
  font-weight: 100;
  line-height: 1.3;
}

p.altfont{
    font-family: 'Novecento Sans W01 Wd Book', "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
    text-transform:uppercase;
}


.smallprint {
  font-size: 0.8rem;
  margin: 0px;
}

.co-name {
 text-transform: uppercase;
}

.five.columns h1 {
    font-family: 'Novecento Sans W01 Wd Book', "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
}


/* Links
–––––––––––––––––––––––––––––––––––––––––––––––––– */
a { 
  color: #fff;
  font-weight: bold;
  text-decoration: underline;
}
a:hover { 
  color: #869cdd; }

.btn {
  color: #fff;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 300;
  font-family: "Novecento Sans W01 Wd UltLt", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.contact-details a {
  color: #fff;
  font-weight: normal;
  text-decoration: none;
}


/* Buttons 
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.button,
button,
input[type="submit"],
input[type="reset"],
input[type="button"] {
  display: inline-block;
  height: 30px;
  padding: 0 30px;
  border: none;
  color: #fff;
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  line-height: 30px;
  letter-spacing: .1rem;
  text-transform: uppercase; 
  text-decoration: none;
  white-space: nowrap;
  background-color: #4a4d56;
  border-radius: 0px;
  cursor: pointer;
  box-sizing: border-box; }
input[type="submit"]
{
  width: 60%; }
input[type="reset"]
{
  width: 39.3%; }
.button:hover,
button:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover,
.button:focus,
button:focus,
input[type="submit"]:focus,
input[type="reset"]:focus,
input[type="button"]:focus {
  color: #999;
  border-color: #888;
  outline: 0; }
.button.button-primary,
button.button-primary,
input[type="submit"].button-primary,
input[type="reset"].button-primary,
input[type="button"].button-primary {
  color: #FFF;
  background-color: #33C3F0;
  border-color: #33C3F0; }
.button.button-primary:hover,
button.button-primary:hover,
input[type="submit"].button-primary:hover,
input[type="reset"].button-primary:hover,
input[type="button"].button-primary:hover,
.button.button-primary:focus,
button.button-primary:focus,
input[type="submit"].button-primary:focus,
input[type="reset"].button-primary:focus,
input[type="button"].button-primary:focus {
  color: #FFF;
  background-color: #1EAEDB;
  border-color: #1EAEDB; }


/* Forms
–––––––––––––––––––––––––––––––––––––––––––––––––– */

form {
  font-family: "Lato";
  font-weight: 300;
}
input[type="email"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea,
select {
  width: 100%;
  height: 26px;
  padding: 5px 10px; /* The 6px vertically centers text on FF, ignored by Webkit */
  background-color: #fff;
  border: 1px solid #D1D1D1;
  border-radius: 0px;
  box-shadow: none;
  box-sizing: border-box; 
  color: #333;}
/* Removes awkard default styles on some inputs for iOS */
input[type="email"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
textarea {
  min-height: 55px;
  padding-top: 6px;
  padding-bottom: 6px;
  display: block;}
input[type="email"]:focus,
input[type="search"]:focus,
input[type="text"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
textarea:focus,
select:focus {
  border: 1px solid #33C3F0;
  outline: 0; }
label,
legend {
  display: block;
  margin-bottom: .5rem;
  font-weight: 300; }
fieldset {
  padding: 0;
  border-width: 0; }
input[type="checkbox"],
input[type="radio"] {
  display: inline; }
label > .label-body {
  display: inline-block;
  margin-left: .5rem;
  font-weight: normal; }

.checkbox {
  display: block; 
  width: 100%;
  float: left;
}

.checkbox input {
  margin-bottom: -1px;
}


input.error, textarea.error { background:#f5dee0;}

/* Lists
–––––––––––––––––––––––––––––––––––––––––––––––––– */
ul { 
  list-style: circle inside; }
ol { 
  list-style: decimal inside; }
ol, ul {
  padding-left: 0;
  margin-top: 0; }
ul ul, 
ul ol,
ol ol, 
ol ul { 
  margin: 1.5rem 0 1.5rem 3rem; 
  font-size: 90%; }
li {
  margin-bottom: 10px;
   }


/* Code
–––––––––––––––––––––––––––––––––––––––––––––––––– */
code {
  padding: .2rem .5rem;
  margin: 0 .2rem;
  font-size: 90%;
  white-space: nowrap;
  background: #F1F1F1;
  border: 1px solid #E1E1E1;
  border-radius: 4px; }
pre > code {
  display: block;
  padding: 1rem 1.5rem;
  white-space: pre; }


/* Tables
–––––––––––––––––––––––––––––––––––––––––––––––––– */
th,
td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid #E1E1E1; }
th:first-child,
td:first-child {
  padding-left: 0; }
th:last-child,
td:last-child {
  padding-right: 0; }


/* Spacing
–––––––––––––––––––––––––––––––––––––––––––––––––– */
button,
.button {
  margin-bottom: 1rem; }
input,
textarea,
select,
fieldset {
  margin-bottom: 0.3rem; }
pre,
blockquote,
form,
dl,
figure,
table,
p,
ul,
ol,
form {
  margin-bottom: 2.5rem; }
p {
  margin-top: 0; 
  margin-bottom: 10px;}


/* Utilities
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.u-full-width {
  width: 100%;
  box-sizing: border-box; }
.u-max-full-width {
  max-width: 100%;
  box-sizing: border-box; }
.u-pull-right {
  float: right; }
.u-pull-left {
  float: left; }


/* Misc
–––––––––––––––––––––––––––––––––––––––––––––––––– */
hr {
  margin-top: 3rem;
  margin-bottom: 3.5rem;
  border-width: 0;
  border-top: 1px solid #E1E1E1;
}

#logo {
  position: fixed;
  top: 50px;
  left: 50%;
  margin-left: -120px;
  z-index: 2;
  width: 240px; 
  height: 78px;
  background-image: url('../assets/LDI-logo-2x.png');
  background-size: 100%;
}

/* Clearing
–––––––––––––––––––––––––––––––––––––––––––––––––– */

/* Self Clearing Goodness */
.container:after,
.row:after,
.u-cf { 
  content: "";
  display: table;
  clear: both; }

.clearfix:after {
     visibility: hidden;
     display: block;
     font-size: 0;
     content: " ";
     clear: both;
     height: 0;
     }
.clearfix { display: inline-block; }
/* start commented backslash hack \*/
* html .clearfix { height: 1%; }
.clearfix { display: block; }
/* close commented backslash hack */

/* Cookies Policy
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.cookie-bar {
  display: none;
  position:fixed;
  z-index: 99999;
  top: 0;
  left: 0;
  right:0;
  min-height: 40px;
  background-color: #4a4d56;
}

.cookie-bar p {
  width: 100%;
  color: #969696;
  text-align: left;
  margin-bottom: 0px;
  letter-spacing: 1px;
  padding-right: 30px;
  padding-left: 10px;
  box-sizing: border-box;
  display: table-cell;
  vertical-align: middle;
}

.cookie-bar .close-cookies {
  position: absolute;
  top: 5px;
  right: 0;
  height: 30px;
  width: 30px;
  background-image: url('../assets/close.png');
  background-size: 80%;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 999999;
  transition: all 0.6s ease;
  cursor: pointer;
}

/* Navs
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.mobile-menu-bar {
  width: 100%;
  height: 40px;
  background-color: #4a4d56;
  background-color: rgba(74, 77, 86, 1);
  position: fixed;
  top: 0;
  z-index: 99998;
  display: none;
  text-align: right;
}

.box-shadow-menu {
  position: relative;
  padding-left: 20px;
  display: block;
  width: 20px;
  float: right;
  height: 100%;
}
.box-shadow-menu:before {
  content: "";
  position: absolute;
  right: 10px;
  top: 13px;
  width: 20px;
  height: 2px;
  background: rgb(255, 255, 255);
  box-shadow: 0 6px 0 0 #fff, 0 12px 0 0 #fff;
}

ul.nav {
  color: #fff;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 2rem;
  line-height: 2rem;
  letter-spacing:0.1rem;
}

ul.secondary-nav {
  color: #fff;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 11px;
  font-size: 1.1rem;
  line-height: 1.2rem;
  letter-spacing:0.1rem;
}

ul.sub-nav {
  display:block;
  color: #fff;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 11px;
  font-size: 1.1rem;
  line-height: 1.2rem;
  height:0;
  overflow: hidden;
/*-webkit-transition: all 800ms cubic-bezier(1.000, 0.000, 0.000, 1.000); 
   -moz-transition: all 800ms cubic-bezier(1.000, 0.000, 0.000, 1.000); 
     -o-transition: all 800ms cubic-bezier(1.000, 0.000, 0.000, 1.000); 
        transition: all 800ms cubic-bezier(1.000, 0.000, 0.000, 1.000); /* easeInOutExpo */

/*-webkit-transition-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000); 
   -moz-transition-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000); 
     -o-transition-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000); 
        transition-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000);*/ /* easeInOutExpo */
}

.nav ul.sub-nav {
  margin-left: -15px;
}

ul.sub-nav.open { height:auto; }
ul.sub-nav li:first-child { margin-top: 11px; }

/*ul.nav li:hover > ul.sub-nav {
  max-height: 2000px;
}*/

ul.sub-nav li, ul.secondary-nav li {
  margin-bottom: 5px; 
}

ul.nav li a.active, ul.sub-nav li a.active, ul.secondary-nav li a.active {
  font-family: "Novecento Sans W01 Wd Book", 'Helvetica Neue', Arial, sans-serif;
}

ul.nav > li, ul.secondary-nav > li{
  margin-left: 15px;
}

/*ul.sub-nav.active {
  margin-bottom: 0px;
  overflow: visible;
}*/

ul.secondary-nav.active {
  overflow: visible;
}

ul.sub-nav li.active {
  border-left: 3px solid #fff;
  padding-left: 12px;
  margin-left: 0px;
}

ul.sub-nav li {
  margin-left: 15px;
}

ul.secondary-nav.active li.active {
  border-left: 3px solid #fff;
  padding-left: 12px;
  margin-left: 0px;
}

ul.nav > li > ul.sub-nav > li:first-of-type a {
  display: block;
  /*margin-top: 10px;*/
}

ul.primarynav > li:last-of-type {
  margin-bottom: 0px;
}

ul.nav li a, ul.sub-nav li a, ul.secondary-nav li a {
  color: #fff; 
  text-decoration: none;
  font-weight: 300;
  text-transform: uppercase;
}

ul.secondary-nav .head {
  font-size: 2rem;
  line-height: 1.95rem;
  margin-bottom: 12px;
  font-family: "Novecento Sans W01 Wd Book", 'Helvetica Neue', 'Arial', 'sans-serif';
  letter-spacing:0;
  text-transform:uppercase;
}

#maincontentpane h1 {
  font-family: "Novecento Sans W01 Wd Book", 'Helvetica Neue', 'Arial', 'sans-serif';
  margin-bottom:9px;
}

#maincontentpane .border-box p img {
  padding-right: 15px;
  padding-bottom: 5px;
}

ul.sub-nav.active li.active ul.active .head {
  display: none;
}

.mobile-menu-bar.open {
  overflow-y: scroll;
  height: auto;
  max-height: 100%;
}

.mobile-menu-bar ul.nav {
  text-align: left;
  margin-top: 40px;
  display: none;
  background-color: #4a4d56;
  background-color: rgba(74, 77, 86, 1);
  top: 40px;
  z-index: 888;
  padding-bottom: 40px;
  padding-top: 20px;
  overflow-y: scroll;
  height: 100%;
}

.mobile-menu-bar ul.nav li ul.sub-nav {
  margin-left: 10px;
  line-height: 1.6rem;
}

.mobile-menu-bar ul.nav li ul.sub-nav li.active {
  border-left: 0px solid rgb(255, 255, 255);
  padding-left: 0px;
  margin-left: 15px;
}

.mobile-menu-bar ul.nav li ul.sub-nav li.active ul {
  list-style: none;
  margin: 8px 15px 0px;
}

.mobile-menu-bar ul.nav li ul.sub-nav li.active ul li a{
  font-size: 10px;
}

/* Content
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.content-container {
  position: fixed;
  top: 0px;
  bottom: 0px;
  left: 0;
  width: 100%;
  background-color: transparent;
  z-index: 5;
  color: #fff;
  border-left: 0px solid #4a4d56;
  border-left: 0px solid rgba(74, 77, 86, 0.75);
}

.news .content-container {
  height: 600px;
}

.content-container-inner .sector {
  padding: 20px 0px 20px 0px;
  background-color: #4a4d56;
  background-color: rgba(74, 77, 86, 0.75);
  -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
  -moz-box-sizing: border-box;    /* Firefox, other Gecko */
  box-sizing: border-box;         /* Opera/IE 8+ */
/*-webkit-transition: all 800ms cubic-bezier(1.000, 0.000, 0.000, 1.000); 
   -moz-transition: all 800ms cubic-bezier(1.000, 0.000, 0.000, 1.000); 
     -o-transition: all 800ms cubic-bezier(1.000, 0.000, 0.000, 1.000); 
        transition: all 800ms cubic-bezier(1.000, 0.000, 0.000, 1.000);

-webkit-transition-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000); 
   -moz-transition-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000); 
     -o-transition-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000); 
        transition-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000); easeInOutExpo */
}

.content-container-inner .sector.primary, .content-container-inner .sector.secondary {
  background-color: #4a4d56;
  background-color: rgba(74, 77, 86, 1);
  position: fixed;
  z-index: 888;
  display: none;
}

.content-container-inner .sector.tertiary, #contactpane {
  background-color: #4a4d56;
  background-color: rgba(74, 77, 86, 0.75);
  position: absolute;
  top: 40px;
  bottom: 0;
  padding-top: 110px;
  width: 100%;
  z-index: 777;
}

.news .content-container-inner .sector {
  height: 600px;
}

.scroll-pane
{
  width: 100%;
  height: 100%;
}

.jspVerticalBar {
  width: 3px; 
}

.jspTrack {
  background: #999;
  position: relative;
}

.jspDrag {
  background: #ddd;
  position: relative;
  top: 0;
  left: 0;
  cursor: pointer;
}

.border-box {
  width: 100%;
  /*overflow-y: scroll;
  overflow-x: hidden;*/
  height: 100%;
  padding: 0px 10px 10px 15px;
    -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
  -moz-box-sizing: border-box;    /* Firefox, other Gecko */
  box-sizing: border-box;         /* Opera/IE 8+ */
}

#contactpane .border-box, #maincontentpane .border-box {
  padding: 0px 10px 0px 15px;
}

.primary .border-box, .secondary .border-box {
  padding: 0px 10px 0px 0px;
}

.secondary {
  /*margin-left: -3000px;*/
  /*display: none;*/
/*-webkit-transition: all 800ms 1s cubic-bezier(1.000, 0.000, 0.000, 1.000); 
   -moz-transition: all 800ms 1s cubic-bezier(1.000, 0.000, 0.000, 1.000); 
     -o-transition: all 800ms 1s cubic-bezier(1.000, 0.000, 0.000, 1.000); 
        transition: all 800ms 1s cubic-bezier(1.000, 0.000, 0.000, 1.000); 
  -webkit-transition-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000); 
   -moz-transition-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000); 
     -o-transition-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000); 
        transition-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000); easeInOutExpo */
  
}

.tertiary {
  /*margin-left: -3000px;*/
  /*display: none;*/
/*-webkit-transition: margin 800ms cubic-bezier(1.000, 0.000, 0.000, 1.000); 
   -moz-transition: margin 800ms cubic-bezier(1.000, 0.000, 0.000, 1.000); 
     -o-transition: margin 800ms cubic-bezier(1.000, 0.000, 0.000, 1.000); 
        transition: margin 800ms cubic-bezier(1.000, 0.000, 0.000, 1.000); 
  -webkit-transition-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000); 
   -moz-transition-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000); 
     -o-transition-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000); 
        transition-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000); easeInOutExpo */
}

.open {
  margin-left: 0;
}

.sector p {
max-width: 500px; 
}

.cssanimations .sector p {
max-width: 100%; 
}

.content-container-inner .responsive-img {
  max-width: 80%;
  height: auto;
}

article {
 padding-top: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #fff;
}

article header {
  padding: 10px 0;
}

header p.article-info {
  margin-bottom: 0;
  text-transform: uppercase;
  font-size: 0.8rem;
}

article p {
 max-width: 100%!important; 
}

.contact form {
 margin-bottom: 5px; 
}

.address {
 margin-top: 5px; 
}

/* Map
–––––––––––––––––––––––––––––––––––––––––––––––––– */

#map-canvas {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 99999;
  margin-left: -100%;
  transition: all 0.6s ease-in-out;
}

#map-thumb {
  position: relative;
  width: 200px; 
  height: 160px;
  background-image: url('../assets/map.png');
  background-position: center center;
}

#map-thumb:hover {
  cursor: pointer;
}

.fullscreen-map {
  position: absolute;
  bottom: 0;
  right: 3px;
}

.map-close-icon {
   position: absolute;
  top: 0;
  right: 0;
  height: 30px;
  width: 30px;
  display: none;
  background-color: #4a4d56;
  background-image: url('../assets/close.png');
  background-size: 80%;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 999999;
  transition: all 0.6s ease;
}

/* Archive isotope
–––––––––––––––––––––––––––––––––––––––––––––––––– */

#archivescroll {
  overflow-y: scroll;
  top: 0;
  left: 0;
  right:0;
  bottom: 0;
  z-index: 10;
  position: fixed;
  z-index: -1;
}

#archive {
  display: none;
  width: 100%;
  overflow-y: hidden;
  top: 0;
  left: 0;
  z-index: 10;
  position: fixed;
  z-index: 99999;
}

.js #archive {
  /*display: block;*/
}

.archive-item { 
  width: 100%; 
  height: 0;
  padding-bottom: 100%; 
  background-color: #fff;
  background-size: cover;
  position: relative;
  cursor:pointer;
}

.close-item-icon {
   display: none; 
}

#archive #logo-for-archive {
  position: relative;
  padding: 10px 0;
  margin-left: 0px;
  z-index: 998;
  width: 100%; 
  height: 78px;
  background-image: url('../assets/LDI-logo-2x.png');
  background-color: rgba(74, 77, 86, 0.8);
  background-size: 240px;
  background-repeat: no-repeat;
  background-position: center center;
}

.archive-item.clicked .close-item-icon {
   display: block; 
}

.archive-item-content {
  position: absolute; 
  display: table; 
  text-align: center;
  width: 100%;
  height: 100%;
  color: #fff;
  top:0;
}

.archive-item-content-overlay {
  position: absolute; 
  display: table-cell; 
  text-align: center;
  width: 100%;
  height: 100%;
  color: #fff;
    background-color: rgba(74, 77, 86, 0.4);
    top:0;
    opacity: 0;
}

.archive-item:hover .archive-item-content-overlay {
    opacity: 1;
}

.archive-item.clicked:hover .archive-item-content-overlay {
  opacity: 0;
}

.archive-item-title h2 {
  font-family: 'Novecento Sans W01 Wd UltLt','Helvetica Neue','Arial',sans-serif;
  font-size: 2.5rem;
  line-height: 2.4rem;
  letter-spacing: 0.1rem;
}

.archive-item-title {
  position: relative;
  display: table-cell; 
  vertical-align: middle;
  text-align: center; 
  opacity: 1;
}

.clicked .archive-item-title {
  display: none; 
}

#archive .close-icon {
  position: fixed;
  top: 0;
  right: 0;
  height: 30px;
  width: 30px;
  background-color: #4a4d56;
  background-image: url('../assets/close.png');
  background-size: 80%;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 9999;
}

.close-item-icon {
  position: absolute;
  top: 0;
  right: 0;
  height: 30px;
  width: 30px;
  background-color: transparent;
  background-image: url('../assets/close.png');
  background-size: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 9999;
}

#archive .close-icon:hover {
  cursor: pointer;
}

/* Blog isotope
–––––––––––––––––––––––––––––––––––––––––––––––––– */
#blogouter {
  position:fixed;
  top:0;
  left:0;
  right:0;
  bottom:0;
}

#blogtext {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 10;
  margin-left:-50%;
  background-color: #4a4d56;
  background-color: rgba(74, 77, 86, 1);
  position: fixed;
  z-index: 99999;
  padding: 0px 20px 30px 50px;
  box-sizing: border-box;
  color: #fff;
  z-index:9999999;
}

#blogtext .blog-text-content {
  padding-right: 40px;
  box-sizing: border-box;
}

#blogtext .close-icon {
  position: absolute;
  top: 0;
  right: 10px;
  height: 30px;
  width: 30px;
  background-image: url('../assets/close.png');
  background-size: 80%;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 9999;
  cursor:pointer;
}

.blog-image {
  width: 100%;
  height: auto;
  position: relative;
}

.blog-image img {
  max-width: 100%;
  height: auto;
}

#blogtext h1 {
  font-size: 17px;
  font-size: 1.75rem;
  margin-top: 25px;
}

#blogtext h2 {
  font-size: 11px;
  font-size: 2rem;
  line-height: 1;
  margin: 5px 0 2px;
  font-weight: 600;
  letter-spacing: 0.1em;
}

#blogtext h2 span {
  font-family: "Novecento Sans W01 Wd Book", 'Helvetica Neue', Arial, sans-serif;
}

#blogscroll {
  position: fixed;
  overflow-y: scroll;
  top:0;
  left:0;
  right:0;
  bottom:0;
  z-index:-1;
}

#blogcontainer {
  display: none;
  width: 100%;
  min-height: 100%;
  top: 0;
  left: 0;
  z-index: 10;
  background-color: #4a4d56;
  background-color: rgba(74, 77, 86, 1);
  position: fixed;
  z-index: 99999;
}

#blogcontainer.textopen {
  width: 0px;
  top: 0;
  left: 0px;
  z-index: 1;
}

.js #blogcontainer {
  /*display: block;*/
}

.blog-item { 
  width: 100%; 
  height: 0;
  padding-bottom: 100%; 
  background-color: #fff;
  background-size: cover;
  position: relative;
  cursor:pointer;
}

.blogcontent img {
  max-width: 100% !important;
  height: auto !important;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.close-item-icon {
  display: none; 
}

#blogtext .blog-text-logo {
  position: relative;
  margin: 30px 0 50px;
  margin-left: -40px;
  z-index: 998;
  width: 100%; 
  height: 78px;
  background-image: url('../assets/LDI-logo-2x.png');
  background-color: rgba(74, 77, 86, 0.8);
  background-size: 240px;
  background-repeat: no-repeat;
  background-position: center;
}

.blog-item.clicked .close-item-icon {
   display: block; 
}

.blog-item-content {
  position: absolute; 
  display: table; 
  text-align: center;
  width: 100%;
  height: 100%;
  color: #fff;
  top:0;
}

.blog-item-content-overlay {
  position: absolute; 
  display: table-cell; 
  text-align: center;
  width: 100%;
  height: 100%;
  color: #fff;
  background-color: rgba(74, 77, 86, 0.4);
  top:0;
  opacity: 0;
}

.blog-item:hover .blog-item-content-overlay {
  opacity: 1;
}

.blog-item.clicked:hover .blog-item-content-overlay {
  opacity: 0;
}

.blog-item-title h2 {
  font-family: 'Novecento Sans W01 Wd UltLt','Helvetica Neue','Arial',sans-serif;
  font-size: 1.75rem;
  line-height: 1.8rem;
  letter-spacing: 0.1rem;
  margin-bottom: 15px;
}

.blog-item-title h6 {
  font-family: 'Novecento Sans W01 Wd UltLt','Helvetica Neue','Arial',sans-serif;
  font-size: 1.1rem;
  line-height: 1.1rem;
  margin-bottom: 5px;
}

.blog-item-title h6 span {
  font-family: "Novecento Sans W01 Wd Book", 'Helvetica Neue', Arial, sans-serif;
}

.blog-item-title {
  position: relative;
  display: table-cell; 
  text-align: center; 
  vertical-align: middle;
  opacity: 1;
}

.clicked .blog-item-title {
  display: none; 
}

#blogcontainer .close-icon {
  position: fixed;
  top: 0;
  right: 17px;
  height: 30px;
  width: 30px;
  background-color: #4a4d56;
  background-image: url('../assets/close.png');
  background-size: 80%;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 9999;
}

.close-item-icon {
  position: absolute;
  top: 0;
  right: 0;
  height: 30px;
  width: 30px;
  background-color: transparent;
  background-image: url('../assets/close.png');
  background-size: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 9999;
}

#blogcontainer .close-icon:hover {
  cursor: pointer;
}


/* Full Screen Slider
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.carousel.fullscreen {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 999;
  top: 0;
  left: 0;
  background-color: #fff;
}

.full-screen-carousel {
  width: 100%;
  position: relative;
  top: 0;
  height: 100%;
  z-index: 1;
}

.full-screen-carousel .container{
  height: 100%;
}

.bg-carousel {
  position: relative;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.carousel-control {
  opacity: .8;
  width: 40px;
  height: 88px;
  top: 50%;
  margin-top: -44px;
  z-index: 12;
  position: absolute;
  display: none;
}

.carousel-inner {
  height: 100%;
}

.slide-caption {
  position: absolute;
  bottom: 30px;
  left: 50px;
  font-size: 1.2rem;
  z-index: 2;
  color: #fff;
  transition: all 0.3s ease-in-out;
}

.left.carousel-control {
    background-color: #4a4d56;
  background-color: rgba(74, 77, 86, 0.75);
  background-image: url('../assets/slider-arrow-l.png');
  background-position: center center;
  width: 26px;
  height: 61px;
  left: 30px;
}

.right.carousel-control {
    background-color: #4a4d56;
  background-color: rgba(74, 77, 86, 0.75);
  background-image: url('../assets/slider-arrow-r.png');
  background-position: center center;
  width: 26px;
  height: 61px;
  right: 30px;
}

.carousel-control {
  display: none;
}

.carousel-control.active {
  display: inline-block;
}


.carousel-indicators {
  bottom: 50px;
  z-index: 14;
}

.carousel-indicators li {
  margin: 1px 15px;
  border-color: #ccc;
  width: 14px;
  height: 14px;
  background-color: #ccc;
}

.carousel-indicators li.active {
  margin: 1px 15px;
  border-color: #fff;
  width: 14px;
  height: 14px;
  background-color: #fff;
}

.fill {
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
}

.gallery-close-icon {
  position: absolute;
  top: 40px;
  right: 5px;
  height: 30px;
  width: 30px;
  background-color: transparent;
  background-image: url('../assets/close.png');
  background-size: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 9999;
  opacity: 0;
  cursor:pointer;
}

.full-height {
  height: 700px;
}

.carousel .item {
  width: 100%;
  height: 100%;
}

.shareTool {
  display: none;
  width: 50px;
  height: auto;
  position: absolute;
  top: 60px;
  right: 10px;
  text-align: center;
  z-index:999999;
}

.blog-shareTool {
  width: 50px;
  height: auto;
  position: absolute;
  top: 12px;
  right: 5px;
  text-align: center;
}

.blog-shareTool p, .shareTool p {
  text-transform: uppercase;
  font-family: 'Novecento Sans W01 Wd UltLt', "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #fff;
  cursor: pointer;
}

.blog-shareOptions, .shareOptions {
  display: none;
  width: 100%;
  text-align: center;
}

.blog-shareOptions img, .shareOptions img {
  width: 18px;
  height: 18px;
  margin: 0 auto 10px;
  transition: all 300ms ease;
  cursor: pointer;
}

.blog-shareOptions img:hover, .shareOptions img:hover {
  width: 30px;
  height: 30px;
  margin: 0 auto 10px;
}

.slide-up-thumbs {
  width: 100%;
  height: 78px;
  position: fixed;
  bottom: 0px;
  z-index: 999999;
}

.js .slide-up-thumbs {
  display: none;
}

.slide-up-arrow {
  width:100%;
  margin: 0 auto;
  text-align: center;
  position: absolute;
  bottom: 20px;
}


.slide-up-arrow img {
  width:35px;
/*	-webkit-animation: bounce 3s infinite;
	-moz-animation: bounce 3s infinite;
	-o-animation: bounce 3s infinite;
	animation: bounce 3s infinite;*/
}

/* Webkit, Chrome and Safari */

/*@-webkit-keyframes bounce {
  0% {
	-webkit-transform:translateY(-100%);
  }
  2.5% {
  	-webkit-transform:translateY(-100%);
  }
  7.5% {
  	-webkit-transform:translateY(0);
    padding-bottom: 5px;
  }
  15% {
  	-webkit-transform:translateY(-50%);
  }
  20% {
  	-webkit-transform:translateY(0%);
    padding-bottom: 6px;
  }
  25% {
  	-webkit-transform:translateY(-25%);
  }
  35% {
  	-webkit-transform:translateY(0);
  	padding-bottom: 9px;
  }
  100% {
  	-webkit-transform:translateY(0);
  	padding-bottom: 9px;
  }
}

@-moz-keyframes bounce {
  0% {
	-moz-transform:translateY(-100%);
  }
  2.5% {
  	-moz-transform:translateY(-100%);
  }
  7.5% {
  	-moz-transform:translateY(0);
    padding-bottom: 5px;
  }
  15% {
  	-moz-transform:translateY(-50%);
  }
  20% {
  	-moz-transform:translateY(0%);
    padding-bottom: 6px;
  }
  25% {
  	-moz-transform:translateY(-25%);
  }
  35% {
  	-moz-transform:translateY(0);
  	padding-bottom: 9px;
  }
  100% {
  	-moz-transform:translateY(0);
  	padding-bottom: 9px;
  }
}
*/

.slide-up-thumbs:hover #slider-thumbs {
  bottom: 0px;
}

#slider-thumbs {
  position: relative;
  bottom: 0px;
  z-index: 999999;
  height: 78px;
  width: 100%;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.thumbs-wrapper {
  position: relative;
  margin: 0 auto;
  left: 0;
  top: 0;
  -webkit-overflow-scrolling: touch;
}

#slider-thumbs a {
  width: 132px;
  height: 78px;
  float: left;
  position: relative;
  z-index: 20;
  transition: all .2s ease-in-out;
  -webkit-overflow-scrolling: touch;
  cursor: pointer;
}

ul.list-inline {
  margin: 0px;
  padding: 5px 0px;
  list-style: none;
  float:left;
}

#slider-thumbs li {
  width: 100%;
  height: 100%;
  background-size: cover;
}

#slider-thumbs a:hover {
  z-index: 99;
  -ms-transform: translate(0px,-10px); /* IE 9 */
  -webkit-transform: translate(0px,-10px); /* Chrome, Safari, Opera */
  transform: translate(0px,-10px);
  transform: scale(1.1);
}

#slider-thumbs .selected li {
  -webkit-filter: grayscale(0%);
  -moz-filter: grayscale(0%);
  filter: grayscale(0%);
}

#slider-thumbs .move-left, #slider-thumbs .move-right {
  width: 40px;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: 50;
  background-repeat: no-repeat;
  background-position: left center;
}

#slider-thumbs .move-left {
  left: 0;
  background-image: url(assets/buttons/slide-left.png);
  cursor: pointer;
}

#slider-thumbs .move-right {
  right: 0;
  background-image: url(assets/buttons/slide-right.png);
  cursor: pointer;
}

.slick-slider {
  margin-bottom: 0px!important;
}

.carousel.carousel-fade .item {
  -webkit-transition: opacity 3s ease-out;
  -moz-transition: opacity 3s ease-in-out;
  -ms-transition: opacity 3s ease-in-out;
  -o-transition: opacity 3s ease-in-out;
  transition: opacity 3s ease-in-out;
  opacity:0;
  position: absolute;
  top: 0;
  left: 0;
}

.carousel.carousel-fade .active.item {
  opacity:1;
}

.carousel.carousel-fade .active.left,
.carousel.carousel-fade .active.right {
  left: 0;
  z-index: 2;
  opacity: 0;
  filter: alpha(opacity=0);
}

.carousel.carousel-fade .next,
.carousel.carousel-fade .prev {
  left: 0;
  z-index: 1;
}

.carousel.carousel-fade .carousel-control {
	z-index: 3;
}

/* Footer
–––––––––––––––––––––––––––––––––––––––––––––––––– */

#footerTrigger {
  position: relative;
  width: 100%;
  bottom: 0px;
  z-index:99999;
}

.footer {
  background-color: #4a4d56;
  position: relative;
  margin-top: 0px;
  width: 100%;
  padding-left: 50px;
  padding-right: 50px;
  padding-top: 10px;
  padding-bottom: 10px;
  box-sizing: border-box;
  z-index: 9999;
  float: left;
  text-transform: uppercase;
  display: table;
}

.footer a { 
  text-decoration:none; 
}

.footer .pull-left {
  display: table-cell;
  width: 50%;
  text-align: left;
  vertical-align: middle;
}

.footer .pull-right {
  display: table-cell;
  vertical-align: middle;
    width: 50%;
    text-align: right;
}

.footer p {
  color: rgba(150,150,150,1);
  font-size: 1rem;
  margin-bottom: 0px;
  line-height: 1.8;
}

.footer p a { color: rgba(150,150,150,1); }

.footer img.social-link {
  max-height: 15px;
  margin-left: 10px;
}

.mobile-menu-footer .footer p {
  color: rgba(150,150,150,1);
  font-size: 1rem;
  margin-bottom: 0px;
  line-height: 1.8;
  text-transform: none;
  letter-spacing: 0px;
}

.mobile-menu-footer .footer a {
  color: rgba(150,150,150,1);
  font-size: 1.2rem;
  margin-bottom: 0px;
  line-height: 1.5;
  letter-spacing: 0px;
}

.mobile-menu-footer .footer {
  padding-left: 10px;
  padding-right: 10px;
}

.mobile-menu-footer .footer .pull-left, .mobile-menu-footer .footer .pull-right {
  width: 100%;
}

.mobile-menu-footer .footer .pull-left, .mobile-menu-footer .footer .pull-right {
  display: block;
  width: 100%;
  text-align: center;
  float: left;
}

.mobile-menu-footer .footer .pull-right a {
  display: inline-block;
}

.mobile-menu-footer .footer .pull-right a.newslettersignup {
  display: block;
  margin: 12px;
  color: #ffffff;

}

/* Media Queries
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/*
Note: The best way to structure the use of media queries is to create the queries 
near the relevant code. For example, if you wanted to change the styles for buttons
on small devices, paste the mobile query code up in the buttons section and style it 
there. 
*/
@media (max-width: 480px) {
  
  #footerTrigger {
    display: none !important;
  }

  #archive #logo-for-archive {
    display: none;
  }
  
  #blogtext {
    margin-left:-100%;
    padding: 0px 10px 10px;
  }
  
  #blogtext .blog-text-content {
    padding-right: 10px;
    max-width: 100%;
  }

  #blogtext .blog-text-content .blogheader {
    padding-right: 30px;
    box-sizing: border-box;
  }

  #blogtext .blog-text-content p {
    max-width: 100%;
  }
  
  #blogtext .blog-text-content p img {
    max-width: 100% !important;
    height: auto !important;
  }
  
  #blogtext .blog-text-logo {
    background-position: center center; 
    margin-bottom: 10px;
    margin-left: 0 !important;
  }

  .blogcontent p img {
    display: block;
    max-width: 100% !important;
    height: auto !important;
  }

  .blog-shareTool {
    width: 50px;
    height: auto;
    position: absolute;
    top: 0px;
    right: 0px;
    background-color: #4a4d56;
    background-color: rgba(74, 77, 86, 1);
  }
  
  .gallery-close-icon {
    top: 50px;
  }
  .shareTool {
    top: 60px;
    left: 3px;
  }
  
  .thumbs-outer {
     display: none; 
  }

  .blogpost {
      width: auto !important;
  }

  .BlogPostSubscribeForm form {
      width: 100% !important;
  }

  .BlogPostSubscribeForm form button.button{
      margin-left: 0 !important;
      padding: 0 !important;
  }
  
}

/* Larger than mobile */
@media (min-width: 480px) {
  
  #footerTrigger {
    display: none;
  }
  
  #archive #logo-for-archive {
    display: none;
  }
  
  #blogtext {
    margin-left:-100%;
  }
  
  .slide-caption {
    bottom: 50px; 
  }
  
  .gallery-close-icon {
    top: 50px;
  }
  
  .shareTool {
    top: 80px;
    right: 3px;
  }

  .thumbs-outer {
    display: none; 
  }

}

@media (min-width: 1400px) {

    .blogcontent p img {
    display: block;
    max-width: 100% !important;
    height: auto !important;
    }

    .blogpost {
        width: 600px;
    }

    .BlogPostSubscribeForm form{
        width: 600px;
        margin-right: auto;
        margin-left: auto;
    }

}

/* Larger than phablet (also point when grid becomes active) */
@media (min-width: 650px) {
  
  #footerTrigger {
    display: none;
  }

  .archive-item { 
    width: 33.33%; 
    height: 0;
    padding-bottom: 33.33%; 
    background-color: #fff;
    background-size: cover;
    position: relative;
    cursor:pointer;
  }

  .archive-item.clicked { 
    width: 66.66%; 
    padding-bottom: 66.66%; 
  }

  .blog-item { 
    width: 33.33%; 
    height: 0;
    padding-bottom: 33.33%; 
    background-color: #fff;
    background-size: cover;
    position: relative;
    cursor:pointer;
  }

  .textopen .blog-item { 
    width: 100%; 
    padding-bottom: 100%; 
  }

  .mobile-menu-footer .footer .pull-left {
    display: inline-block;
    width: 50%;
    text-align: left;
    float: left;
    padding-top: 6px;
  }

  .mobile-menu-footer .footer .pull-right {
    display: inline-block;
    width: 50%;
    text-align: right;
    float: right;
  }

  .mobile-menu-footer .footer .pull-right a {
    display: inline-block;
  }

  .mobile-menu-footer .footer .pull-right a.newslettersignup {
    display: inline-block;
    margin: 0;
  }
  
  .gallery-close-icon {
    top: 50px;
  }
  .shareTool {
    top: 90px;
    right: 3px;
  }
  
  .thumbs-outer {
    display: none; 
  }
  
}

@media (min-width: 769px) {

  .shareTool {
    top: 60px;
  right: 10px;
  }

  .cookie-bar p {
    text-align: center;
  }
  
  .cssanimations .sector p {
  max-width: 500px; 
  }
  
  #footerTrigger {
    display: block;
  }
  
  #footerTrigger {
    position: fixed;
    width: 100%;
    bottom: 0px;
    height: 39px;
    z-index:99999;
  }

  #footerTrigger:hover .footer {
    bottom: 0px;
  }

  .footer {
    background-color: #4a4d56;
    position: fixed;

    margin-top: 0px;
    width: 100%;
    padding-left: 50px;
    padding-right: 50px;
    padding-top: 10px;
    padding-bottom: 10px;
    box-sizing: border-box;
    z-index: 9999;
    float: left;
    text-transform: uppercase;
      -webkit-transition: all 0.3s ease;
      -moz-transition: all 0.3s ease;
      -o-transition: all 0.3s ease;
      transition: all 0.3s ease;
  }
  
  #blogcontainer.textopen {
    width: 50%;
    top: 0;
    left: 50%;
  }

  #blogtext {
    width: 50%;
  }
  
  .thumbs-outer {
     display: block; 
  }
    .mobile-menu-footer {
        display: none !important;
    }
  
}

/* Larger than tablet */
@media (min-width: 1024px) {
  .mobile-menu-footer {
      display:none!important;
  }
  .cookie-bar {
    min-height: 30px;
    background-color: rgba(74,77,86,0.75);
  }
  
  .cookie-bar p {
    padding-right: 0px;
    padding-left: 10px;
  }
  
  .cookie-bar .close-cookies {
    top: 0;
    right: 30px;
  }

  .scroll-pane { 
    overflow:hidden !important; 
  }
  
  #logo {
    position: fixed;
    top: 40px;
    left: 40px;
      margin-left: 0px;
    z-index: 2;
    width: 240px; 
    height: 78px;
    background-image: url('../assets/LDI-logo-2x.png');
    background-size: 100%;
  }
    
  #slider-thumbs {
    position: relative;
    bottom: -78px;
    z-index: 999999;
    height: 78px;
    width: 100%;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
    
  .content-container {
    position: fixed;
    top: 150px;
    left: 0;
    min-width: 750px;
    height: 410px;
    background-color: transparent;
    z-index: 5;
    color: #fff;
    border-left: 40px solid #4a4d56;
    border-left: 40px solid rgba(74, 77, 86, 0.75);
  }   

  .content-container-inner .sector {
    background-color: #4a4d56;
    background-color: rgba(74, 77, 86, 0.75);
    height: 410px;
    padding: 20px 0px 20px 0px;
    -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
    -moz-box-sizing: border-box;    /* Firefox, other Gecko */
    box-sizing: border-box;         /* Opera/IE 8+ */
    overflow:hidden;
    /*-webkit-transition: all 800ms cubic-bezier(1.000, 0.000, 0.000, 1.000); 
       -moz-transition: all 800ms cubic-bezier(1.000, 0.000, 0.000, 1.000); 
         -o-transition: all 800ms cubic-bezier(1.000, 0.000, 0.000, 1.000); 
            transition: all 800ms cubic-bezier(1.000, 0.000, 0.000, 1.000);

    -webkit-transition-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000); 
       -moz-transition-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000); 
         -o-transition-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000); 
            transition-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000); easeInOutExpo */
  }
    
  .border-box {
    width: 100%;
    /*border-left: 1px solid #fff;
      overflow-y: scroll;
    overflow-x: hidden;*/
    background-image: url(../images/line-bg3.png);
    background-repeat: repeat-y;
    height: 100%;
    padding: 0px 10px 10px 15px;
      -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
    -moz-box-sizing: border-box;    /* Firefox, other Gecko */
    box-sizing: border-box;         /* Opera/IE 8+ */
  }

  #contactpane .border-box {
    padding: 0px 10px 0px 15px;
  }

  .content-container-inner .sector.primary, .content-container-inner .sector.secondary {
    background-color: #4a4d56;
    background-color: rgba(74, 77, 86, 0.75);
    display: block;
    position: relative;
  }

  .content-container-inner .sector.primary.hidden, .content-container-inner .sector.secondary.hidden {
    display: none;
  }

  .content-container-inner .sector.tertiary {
    position: relative;
    top: 0;
    z-index: 777;
    width: 540px;
  padding-top: 20px;
  }

  #contactpane {
    position: relative;
    top: 0;
    z-index: 777;
    width: 700px;
  padding-top: 20px;
  }

  .mobile-menu-bar {
      display: none;
  }

  .gallery-close-icon {
    top: 20px;
    z-index: 99999;
      right: 20px;
      cursor: pointer;
  }

  .archive-item, .blog-item { 
    width: 16.666%; 
    height: 0;
    padding-bottom: 16.666%; 
    background-color: #fff;
    background-size: cover;
    position: relative;
    cursor:pointer;
  }

    .textopen .blog-item { 
    width: 33.333%; 
    padding-bottom: 33.333%; 
  }

  .archive-item-content-overlay, .blog-item-content-overlay {
    -webkit-transition: opacity 0.45s ease;
    -moz-transition: opacity 0.45s ease;
    -o-transition: opacity 0.45s ease;
    transition: opacity 0.45s ease;
  }

  .archive-item-title, .blog-item-title {
    opacity: 0;
    -webkit-transition: opacity 0.45s ease;
    -moz-transition: opacity 0.45s ease;
    -o-transition: opacity 0.45s ease;
    transition: opacity 0.45s ease;
  }

  .archive-item:hover .archive-item-title, .blog-item:hover .blog-item-title {
    opacity: 0.95; 
  }

  .archive-item.clicked, .blog-item.clicked { 
    width: 33.333%; 
    padding-bottom: 33.333%; 
  }
    
}

/* Larger than desktop */
@media (min-width: 1000px) {}

/* Larger than Desktop HD */
@media (min-width: 1200px) {}


/* Blog */

.blogpostheader { margin-top:20px; }

.blogpostheader p { font-size:1rem; margin-bottom:0; }

.blogheader{
    margin-bottom: 5px;
}

.blogheader h2 {
    font-size:2rem;
    text-decoration:none;
    font-weight: 600;
    margin-top:0;
    margin-bottom:20px;
}
.blogheader h2 a {
  text-decoration:none;
 font-weight:300;
}
.blogheader h2 a:hover{
    color:#fff;
}

.blogpostinfo h3 { 
    font-size:1.2rem; 
    font-weight: 100;
    margin-bottom: 10px;
    
}

.blogpostinfo span {
    font-weight: 600;
    letter-spacing: normal;
    font-family: 'Calibri W01 Light', "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.blogheader h3 { 
    font-size:1.2rem; 
    font-weight: 100;
    margin-bottom: 10px;
}

.blogheader span {
    font-weight: 600;
    letter-spacing: normal;
}

.blogpostouter {margin-right: 55px; }

.overlay {
  position:fixed;
  top:0;
  left:0;
  right:0;
  bottom:0;
  z-index:9999
}

@media (max-width: 1024px){
    .overlay {
        display: none;
    }
}


.overlay .overlaybackground {
  position:absolute;
  top:0;
  left:0;
  right:0;
  bottom:0;
  background:rgba(0,0,0,0.5);
}

.footer .pull-right a.newslettersignup { text-decoration:none; color: #fffff; font-weight:bold; }
.footer .pull-right a.newslettersignup:hover { color: #fff; }
.newssignup { position:relative; margin:40px auto; background:#4a4d56; padding:40px 40px 20px; width:280px; text-align:center; }
.newssignup div.close { position:absolute; top:10px; right:10px; }
.newssignup p, .newssignup label, .newssignup div { color:#fff;}
.newssignup img { margin:0 0 15px; }

@media (max-width: 480px) {
  
  .newssignup {
    padding: 40px 20px 20px;
  }
  
}



/* Slick Overrides */
.slick-list,.slick-track  { height:100% !important; }

.pageimages { position:absolute;top:0;left:0;right:0;bottom:0;}
.pageimages > div { position:absolute;top:0;left:0;right:0;
                    bottom:0;
}

.old-carousel { z-index: 0; }
.new-carousel {z-index:1; }

.blogpost {
    margin-left: auto;
    margin-right: auto;
}

.blog-item-subscribe .BlogPostSubscribeForm {
    margin-right: 0 !important;
}

.blog-item-subscribe .BlogPostSubscribeForm form {
    width: 100%;
}

.BlogPostSubscribeForm {
    margin-right: 55px;
}

.BlogPostSubscribeForm form {
    margin-left: auto;
    margin-right: auto;
}

.BlogPostSubscribeForm form p {
    margin: 50px 0 -20px 0;
}

.BlogPostSubscribeForm form fieldset {
    width: 69%;
    float: left;
    margin: 0;
}

.BlogPostSubscribeForm form button.button {
    width: 29%;
    position: relative;
    float: right;
    margin-left: 5px;
    border: solid 1px #000;
    padding: 0;
    background-color: #000;
    height: 26px;
    line-height: 0;
}

.BlogPostSubscribeForm .thankyou p{
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    margin-top: 40px;
}

.blog-item-subscribe .BlogPostSubscribeForm {
    width:auto;
    margin-left:0;
    position:absolute;
    top:0;
    left:0;
   bottom:0;
   right:0;
   border:solid 1px #fff;
  
}

.blog-item-subscribe p{
    color:#fff;
    font-size:20px;
    text-align:center;
}

.blog-item-subscribe .BlogPostSubscribeForm form fieldset {
    
    float:none;
    margin: 0 auto;
    position:relative;
}

.blog-item-subscribe .BlogPostSubscribeForm form button.button {
    width: 70%;
    position: relative;
    float: none;
    display:block;
    margin:10px auto 0;
    padding:0 30px !important;
}
