* {
    font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif; 
    font-weight: 300;
    font-size: 15px;
    line-height: 1.25em;
    box-sizing: border-box;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.004);
    text-rendering: optimizeLegibility !important;
    -webkit-font-smoothing: antialiased !important;
}

html, 
body {
    height: 100%;
}

strong {
    font-weight:bold;
}

body {
    margin:0;
    min-width:320px;
    max-width:100%;
}

.overlay {
    z-index: 11;
    position: fixed;
    opacity: 0;
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: none;
    background-color: rgba(0,0,0,0.5);
    transition: opacity 500ms ease-in-out 200ms;
}

body > main {
    width:100%;
    overflow:hidden;
    max-width:2500px;
    margin:0 auto;
    display:block;
}

body.scrolled {
    padding:100px 0 0 0;
}

a { 
    color: #0073a2; 
    text-decoration: underline;
} 

a:hover {
    color: #2993c5;
    transition: background-color 0.25s ease-in;
}

a.download-pdf:before {
    content: "";
    display: block;
    background: url("../img/Icon-Download.svg") no-repeat;
    width: 19px;
    height: 19px;
    float: left;
    margin: 0 10px 0 0;
}

    h1, h2 {
        font-size: 35px;
        padding: 10px 0px 20px 0px;
        color: #000;
        font-weight: normal;
    }

h3 {
    font-size:20px; 
    color: #000; 
    font-weight: 600;
    margin: 10px 0;
}

h3 > a {
    font-size:20px; 
    font-weight: 600;
    margin: 10px 0;
    text-decoration: none;
}

hr {
    width: 100%;
    background-color: #007681;
    height: 10px;
    border: 0;
    padding: 0;
    margin: 0;
}

button, .btn {
    text-transform: uppercase; 
    font-weight: bold; 
    font-size: 17px; 
    padding: 25px 100px;
    background-color: #000;
    border:1px solid #000;
    white-space: nowrap;
    text-decoration: none;
    display:block;
    text-align:center;
    cursor:pointer;
}

button:hover, .btn:hover {
    border: 1px solid #000;
    background-color: #009aa8;
    color:#fff;
    transition: background-color 0.15s ease-in, border 0.15s ease-in, color 0.15s ease-in;
}

button.inverse, .btn.inverse {
    color: #000;
    background-color: #fff;
}

button.inverse:hover, .btn.inverse:hover {
    background-color: #009aa8;
    color:#fff;
    transition: background-color 0.15s ease-in, border 0.15s ease-in, color 0.15s ease-in;
}

ol {
    padding-left: 20px;
}

ol>li {
    margin-bottom:10px;
    padding-left: 5px;
}

/** triangles **/
body img.triangle1 {
    position:absolute;
    height:812px;
    z-index:2;
    top:127px;
    left:0px;
    height:100%;
}
body.scrolled img.triangle1 {
    position:absolute;
    height:812px;
    z-index:2;
    top:100px;
    left:0px;
}

/* Top Nav */
header {
    width:100%;
    display:block;
    position: fixed;
    top:0px;
    left:0px;
    right:0px;
    background-color:rgba(255, 255, 255, .9);
    z-index:500;
}

header a {
  color: black;
  text-transform:uppercase;
  font-weight:600;
  text-decoration:none;
}
header > div {
    position:relative;
}
header > div > a {
    width: 113px;
    margin: 0 20px;
    padding: 20px 0;
    display:block;
    transition: all 0.2s ease-in-out;
    position:relative;
    z-index:500;
}

body.scrolled header > div > a {
    width: 68px;
    padding: 10px 0;
}

body.scrolled header > div > nav > a {
    width: 23px;
    height: 16px;
}

header > div > a > img {
    width:100%;
}

header > div > nav {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
}

header > div > nav > a {
    position:absolute;
    width:30px;
    height:20px;
    right:20px;
    top:50%;
    margin-top:-10px;
}

header > div > nav > a > img.active {
    display:none;
}

header > div > nav > a > img {
    width:100%;
    height:100%;
}

header > div > nav.open > a > img.default {
    display:none;
}

header > div > nav.open > a > img.active {
    display:block;
}

header > div > nav > ul {
    list-style-type: none;
    display:block;
    margin: 0 auto;
    padding: 0;
    width:auto;
    text-align:center;
    min-width:320px;
    position:absolute;
    left:0px;
    right:0px;
    top:100%;
    max-height:0px;
    overflow:hidden;
    transition: max-height 0.5s ease-in-out;
    background-color:rgba(255, 255, 255, 1);
}

header > div > nav.open > ul {
    max-height:1000px;
}

header > div > nav > ul > li {
    display:block;
    padding:20px 5px;
}

header > div > nav > ul > li > a {
    font-size: 14px;
}

header > div > nav > ul > li:first-child > a {
    padding-left:0px;
}
header > div > nav > ul > li:last-child > a {
    padding-right:0px;
}

header > div > nav > ul > li > a.current,
header > div > nav > ul > li > a.current:hover {
    color: #007681;
}

/* Hero */
section#Hero {
    display:block;
    position:relative;
    overflow:hidden;
    min-height: 500px;
}

section#Hero > div {
    position:relative;
    height:100%;
    width:100%;
    padding:60px 0;
    z-index:10;
}

body.career section#Hero > div {
    padding:0px;
}

section#Hero > div > img {
    width:2500px;
    position:absolute;
    top:0;
    left:0;
    z-index:6;
}
section#Hero > img:nth-child(1) {
    position:absolute;
    left:-469px;
    bottom:0;
    z-index:5;
    width:1500px;
}
section#Hero > img:nth-child(2) {
    position:absolute;
    right:-150px;
    bottom:0;
    z-index:5;
}

section#Hero > div > div {
    margin:0px 10% 0px 0;
    background-color: #fff;
    position:relative;
    z-index:10;
}

section#Hero > div > div > div:nth-child(2) > div {
    padding: 30px 40px 30px 0px;
}

section#Hero > div > div > div:nth-child(2) > div > h1 {
    margin:0px;
    padding:10px 0px 20px 20px;
}

section#Hero > div > div > div:nth-child(2) > div > h2 {
    margin:0px;
    padding:10px 0px 20px 20px;
}

section#Hero > div > div > div:nth-child(2) > div > h3 {
    margin: 0px;
    padding: 10px 0px 0px 20px;
    color: #007681;
    font-size:16px;
}

section#Hero > div > div > div:nth-child(2) > div > ul {
    list-style-type: none;
}

section#Hero > div > div > div:nth-child(2) > div > ul > li {
    margin-bottom:10px;
}

section#Hero > div > div > div:nth-child(2) > div > ul > li::before {
    content: "\25AA";
    color: #007681;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

section#Hero > div > div > div:nth-child(2) > div > p {
    padding: 0 0 0 20px;
}
    
section#Hero > div > div > div:nth-child(2) > div > a > img {
    height:14px;
    transform: rotate(180deg);
    margin-right: 10px;
}

section#Hero > div > div > div:nth-child(2) > div > div > p,
section#Hero > div > div > div:nth-child(2) > div > div > h3{
    padding-left:20px;
    padding-right:20px;
}
    
section#Hero > div > div > div:nth-child(2) > div > div > hr {
    height:1px;
    color: #F3F3F5;
    background-color: #F3F3F5;
}

/* ImageHero */
section#ImageHero {
    height:320px;
    width:100%;
    overflow:hidden;
    position:relative;
    background-color:#007681;
    background-size: cover;
}

section#ImageHero > img {
    margin:0 auto;
}

section#ImageHero > h1, section#ImageHero > div{
    position:absolute;
    top:45%;
    left:50%;
    padding:0;
    transform: translate(-50%, -50%);
    color: #fff;
    width:400px;
    max-width:100%;
    text-align:center;
}

section#ImageHero h1 {
    margin:0px;
    padding:0px;
}

section#ImageHero h1 + h1 {
    font-style: italic;
    font-weight:200;
}

section#ImageHero > div > * {
    color: #fff;    
} 

/* AboutUs */
section#AboutUs {
    background-color:#007681;
    position:relative;
}

section#AboutUs > div {
    overflow-y:visible;
    overflow-x:hidden;
}

section#AboutUs * {
    color: #FFF;
}

section#AboutUs > div > img:nth-child(1) {
    position:absolute;
    left:-450px;
    top:0px;
    z-index:5;
    width:1500px;
    
}

section#AboutUs > div > div:nth-child(2) {
    position:absolute;
    top:670px;
    left:750px;
    z-index:5;
    width:1500px;
    max-height:500px;
    overflow:hidden;
}

section#AboutUs > div > div:nth-child(2) > img {
    width:100%;
}

section#AboutUs > div > div:nth-child(3) {
    padding:20px 20px;
}

section#AboutUs > div > div:nth-child(3) > figure {
    width:100%;
    position:relative;
    display:block;
    padding:0;
    margin:0 0 20px 0;
    min-height:80px;
    z-index:10;
}

section#AboutUs > div > div:nth-child(3) > figure:first-child {
    min-height:auto !important;
}

section#AboutUs > div > div:nth-child(3) > figure > div {
    width: 70px;
    height: 70px;
    position: absolute;
    top:0px;
    padding:5px;
    border:1px solid #fff;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    text-align:center;
}

section#AboutUs > div > div:nth-child(3) > figure > div > img {
    height:50px;
    width: 50px;
}

section#AboutUs > div > div:nth-child(3) > figure:nth-child(3) > div > img,
section#AboutUs > div > div:nth-child(3) > figure:nth-child(4) > div > img {
    margin-top:5px;
}

section#AboutUs > div > div:nth-child(3) > figure > div + figcaption {
    width:100%;
    padding-left:100px;
    display:block;
}



section#governance{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom:40px;
}
section#resources{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom:40px;
}
section#customers{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom:40px;
}
section#densitek{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 10px 40px 10px;
}

section#densitek > img {
    max-width: 100%;
}

/* YourBenefits */
section#YourBenefits, section.solid-background {
    background-color: #000;
    color: #fff;
}

section#YourBenefits > h2, section.solid-background > h1, section.solid-background > h2 {
    display: block;
    text-align: center;
    color: #fff;
    padding: 40px 0 30px 0;
    margin: 0 auto;
}

section#YourBenefits > p, section.solid-background > p {
    display: block;
    text-align: center;
    max-width: 1100px;
    padding: 0 20px;
    margin: 0px auto;
}

section.solid-background > p {
    max-width: 1200px;
}

section#YourBenefits > ul {
    margin: 20px auto 0 auto;
    width:320px;
    padding:20px 20px 50px 40px;
    max-width:100%;
    list-style-type: square;
}

section#YourBenefits > ul > li {
    padding: 0 20px 0 5px;
    margin: 0 0 10px 10px;
}

/* Our Brands */
section#OurBrands > div {
    display: flex;
    flex-wrap: wrap
}

section#OurBrands {
    overflow:hidden;
}

section#OurBrands > h2 {
    margin:20px 0 0 20px;
    display:block;
    width:100%;
}

section#OurBrands > hr {
    width: 70%;
    margin-bottom: 20px;
    text-align:left;
}


section#OurBrands > div {
    display: flex;
    flex-wrap: wrap
}

section#OurBrands > div > div {
    width:100%;
    padding: 0 0 4px 0;
}

section#OurBrands > div > div > a {
    display: block;
    width:100%;
    padding: 100% 0 0 0;
    position: relative;
    background-size:100% 100%;
    z-index:100;
}


section#OurBrands > div > div > a > img {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    max-width:100%;
    max-height:100%;
    z-index:9;
    transition: opacity 0.2s ease-in-out;
    opacity:1;
}

section#OurBrands > div > div > a.over > img {
    opacity:1;
}

section#OurBrands > div > div > a > div {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    color: #fff;
    padding:50px 20px;
    transition: top 0.2s ease-in, height 0.2s ease-in;
    z-index:10;
}

section#OurBrands > div > div > a > div > img {
    width:40%;
    margin: 0px auto;
    display:block;
    padding-bottom: 15px;
}

section#OurBrands > div > div:nth-child(1) > a > div > img {
    width: 38%;
}

section#OurBrands > div > div:nth-child(2) > a > div > img {
    width: 45%;
}

section#OurBrands > div > div:nth-child(3) > a > div > img {
    width: 27%;
    margin-top: -24px;
}

section#OurBrands > div > div:nth-child(4) > a > div > img {
    width: 65%;
}

section#OurBrands > div > div:nth-child(5) > a > div > img {
    width: 49%;
}

section#OurBrands > div > div:nth-child(6) > a > div > img {
    width: 42%;
}

section#OurBrands > div > div:nth-child(7) > a > div > img {
    width: 53%;
}

section#OurBrands > div > div:nth-child(8) > a > div > img {
    width: 57%;
}

section#OurBrands > div > div:nth-child(9) > a > div > img {
    width: 35%;
    margin-top: -25px;
}

section#OurBrands > div > div > a > div > p {
    margin:10px 0;
}

section#OurBrands > div > div > a > div > button {
    background-color: transparent;
    color: #fff;
    position:absolute;
    bottom:40px;
    left: 50%;
    transform: translateX(-50%);
    padding:16px 0;
    width: 240px;
    border-color:#fff;
}

section#OurBrands > div > div > a > div > button:hover {
    background-color: transparent;
}


/* Our Locations */

section#OurLocations > h2 {
    margin:20px;
    display:block;
    width:100%;
}

section#OurLocations > hr {
    width: 70%;
    margin-bottom: 20px;
    text-align:left;
}

section#OurLocations > div {
    max-width:1100px;
    margin: 25px auto 50px auto;
	padding: 0 20px;
}

section#OurLocations > div > div:nth-child(2) {
    display:none;
}

section#OurLocations > div > div:nth-child(2) > img {
    width:100%;
}

section#OurLocations > div > div > h3 {
    color: #007681;
    padding-left:20px;
    position:relative;
}

section#OurLocations > div > div > h3 > img {
    position:absolute;
    height:15px;
    width:15px;
    top:50%;
    margin: -9px 0 0 -5px;
    left:0;
}


section#OurLocations > div > div > div > div > address {
	display: block;
	padding-left: 20px;
	margin: 0 0 30px 0;
}

section#OurLocations > div > div > ul {
	list-style: none;
	padding:0 0 0 20px;
	margin-top: 10px;
}

section#OurLocations > div > div > ul > li {
    break-inside: avoid-column;
    margin-right:28px;
    margin-right: 60px;
}

section#OurLocations > div > div > ul > li > strong {
    font-weight:600;
    display: block;
    margin: 10px 0;
}


section#OurLocations > div > div > ul > li > strong.icon {
    color: #007681;
    padding-left:20px;
    position:relative;
    margin: 10px 0; 
    display: block;
}

section#OurLocations > div > div > ul > li > strong.icon > img {
    position:absolute;
    height:15px;
    width:15px;
    top:50%;
    margin: -9px 0 0 -5px;
    left:0;
}

section#OurLocations > div > div > ul > li:first-child > strong {
    margin-top:0;
}

section#OurLocations > div > div > ul > li > address {
    display:block;
    margin: 0 0 20px 0;
}

section#OurLocations address {
    font-style:normal;
}


/* connect */
section#Connect {
    background: #007681 url(../img/bg-Connect-400x1000.jpg) no-repeat bottom left;
    padding:20px 20px 200px 20px;
}

body.career section#Connect {
    background-image:none;
    padding-bottom: 60px;
}

body.news section#Connect, body.press-releases section#Connect, body.press-release section#Connect {
    background-image:none;
    padding-bottom: 60px;
}

section#Connect > img {
    display:none;
}

section#Connect > h2 {
    margin:20px auto;
    text-align:center;
    color:#fff;
}


section#Connect > a.btn {
    width:236px;
    margin:0 auto;
    padding: 16px 0;
    background-color:transparent;
    border:1px solid #fff;
    color:#fff;
    margin-bottom:60px;
}

section#Connect > strong {
    display:block;
    max-width:768px;
    margin: 20px auto;
    text-align:center;
    color:#fff;
    font-weight: bold;
}

section#Connect > p {
    display:block;
    max-width:768px;
    margin: 20px auto;
    text-align:center;
    color:#fff;
}

section#Connect > p > a {
    color:#fff;
    font-weight: bold;
}

section#Connect > div {
    display: flex;
    justify-content: center; /* align horizontal */
    flex-direction: row;
    flex-wrap: wrap;
}

section#Connect > div > div {
    width:160px;
    text-align:center;
    display:inline-block;
    margin:10px 20px 20px 10px;
    min-width:160px;
}

section#Connect > div > div > div {
    height:102px;
    position: relative;
    text-align:center;
}

section#Connect > div > div > div > img {
    width: 58px;
    position:absolute;
    top:50%;
    left:50%;
    transform: translate(-50%, -50%);
    z-index:1;
}


section#Connect > div > div > div#LinkedIn > img {
        width: 48px;
    }


section#Connect > div > div:nth-child(3) > div > img {
    width:48px;
}

section#Connect > div > div > a.btn,
section#Connect > div > div > a.btn:hover {
    display:block;
    width:100%;
    padding:16px 0;
    margin-top:10px;
    z-index:100;
    position:relative;
    color:#FFF;
}

section#Connect > div > div:nth-child(3) > a.btn {
    border: 1px solid white;
    color:#FFF;
    background-color:transparent;
}

section#Connect > div > div:nth-child(3) > a.btn:hover, section#Connect > a.btn:hover {
    background-color: #009aa8;
}

/* Footer */
footer {
    background-color: #000;
    padding:60px 20px 40px 20px;
    color: #fff;
    width:100%;
    max-width:2500px;
    margin:0 auto;
}

footer a {
    color: #fff;
}

footer a>img {
    width:20px;
    height:18px;
    opacity: .6;
}

footer a:hover>img {
    opacity: 1;
}

footer > ul {
    list-style-type: none;
    display:block;
    margin: 0 auto;
    padding:0;
}

footer > ul > li {
    display:block;
    text-align:center;
    padding-bottom:20px;
}

#aboutUsMobile, #governanceMobile {
    display: none;
}

div.mobile { display:block; height:0px;}

@media (max-width: 750px) {
    .dropbtn {
        display: block;
        padding: 20px 5px !important;
    }

    .dropdown-content, .show {
        display: none !important;
    }

    .dropdown-content a {
        padding-left: 0 !important;
    }

    .showMobileOverlay {
        display: block;
        opacity: 1;
    }

    .showMobile {
        display: block !important;
    }

    #aboutUsMobile, #governanceMobile {
        padding: 5px 0;
    }

    #aboutUsMobile a, #governanceMobile a {
        text-transform: none;
        font-size: 12px;
        font-weight: normal;
        margin-left: -5px;
    }
}

/*Tablet Override */
@media (min-width: 400px) {

    section#Hero > div > div {
        margin-right:15%;
    }
    
    section#Hero > img:nth-child(1) {
        left:-319px;
    }
    
    section#AboutUs > div > img:nth-child(1) {
        left:-300px;
    }
    
    section#AboutUs > div > div:nth-child(3) > figure {
        min-height: 120px;
    }
    
    section#AboutUs > div > div:nth-child(3) > figure > div {
        width: 110px;
        height: 110px;
    }

    section#AboutUs > div > div:nth-child(3) > figure > div > img {
        height:80px;
        width: 80px;
    }
    
    section#AboutUs > div > div:nth-child(3) > figure:nth-child(3) > div > img {
        margin-top:5px;
    }
    section#AboutUs > div > div:nth-child(3) > figure:nth-child(4) > div > img {
        margin-top:10px;
    }
    
    section#AboutUs > div > div:nth-child(3) > figure > div + figcaption {
        padding-left:140px;
    }

    section#OurBrands > div > div > a.over > img {
        opacity:0;
    }
    
    section#OurBrands > div > div > a > div {
        top: 60%;
        height:auto;
    }
    
    section#OurBrands > div > div > a > div > p,
    section#OurBrands > div > div > a > div > button {
        height:0;
        opacity:0;
    }
    
    section#OurBrands > div > div > a.over > div {
        top: 0;
        height:100%;
    }
    
    section#OurBrands > div > div > a.over > div > p,
    section#OurBrands > div > div > a.over > div > button {
        height: auto;
        opacity:1;
    }
    
    section#OurBrands > div > div > a.over > div > p,
    section#OurBrands > div > div > a.over > div > button {
        height: auto;
        opacity:1;
        transition: opacity 0.2s ease-in-out  0.2s;
    }
    
    section#Connect {
        background-image: url(../img/bg-Connect-768x1000.jpg);
    }
    div.mobile { display:none;}

}

@media (min-width: 500px) {
    section#OurLocations > div > div > ul {
        column-count: 2;
        -moz-column-count: 2;
        -webkit-column-count: 2;
    }
}

@media (min-width: 600px) {
    section#YourBenefits > ul {
        -webkit-column-count: 3;
        -moz-column-count: 3;
        column-count: 3;
        width:600px;
    }
}

/*special due to copy*/
@media (min-width: 650px) {
    section#OurBrands > div > div {
        width:50%;
    }
    
    section#OurBrands > div > div:nth-child(1),
    section#OurBrands > div > div:nth-child(3),
    section#OurBrands > div > div:nth-child(5),
    section#OurBrands > div > div:nth-child(7) {
        padding-right:2px;
    }
    
    section#OurBrands > div > div:nth-child(2),
    section#OurBrands > div > div:nth-child(4),
    section#OurBrands > div > div:nth-child(6),
    section#OurBrands > div > div:nth-child(8) {
        padding-left:2px;
    }
}

/* Desktop Override */
@media (min-width: 768px) {
    .group {
        overflow: visible !important;
    }

    body {
        padding:0 0 0 0;
    }
    hr {
        margin: 0 0 20px 0;
    }
 
    button, .btn {
        font-size: 15px;
    }
    
    header > div {
        max-width:1200px;
        margin:0px auto;
    }
    
    header > div > a {
        width:155px;
        display:inline-block;
    }

    body.scrolled header > div > a {
        width:112px;
        padding: 10px 0;
    }

    
    header > div > nav, header > div > nav.open {
        position: static;
        background-color: transparent;
        float:right;
        margin: 36px 20px;
    }
    
    header > div > nav > a {
        display:none;
    }
    
    header > div > nav > ul, header > div > nav.open > ul {
        position: static;
        display:block;
        max-height: none;
        background-color: transparent;
    }
    
    header > div > nav > ul > li {
        display:inline-block;
        padding:10px 5px;
    }
    
    body.scrolled header > div > nav {
        margin: 17px 20px;
        transition: margin 0.2s ease-in-out;
    }
    
    section#Hero > div > div {
        margin:0px;
        background-color:transparent;
    }
    
    section#Hero > div > div > div:nth-child(1) {
        position:absolute;
        top:0px;
        left:0px;
        right:50%;
        bottom:0px;
        background-color:#fff;
        z-index:9;
    }
    
    section#Hero.secondary > div > div > div:nth-child(1) {
        background-color: #F3F3F5;
    }

    body.career section#Hero > div > div > div:nth-child(1) {
        z-index: -1;
    }
    
    section#Hero > div > div > div:nth-child(2) {
        position:relative;
        margin:0px auto;
        max-width:1200px;
        height:100%;
        z-index:10;
        padding-right:188px;
    }
    
    section#Hero > div > div > div:nth-child(2) > div {
        background-color:#fff;
        width:100%;
        height:100%;
    }
    
    section#Hero.secondary > div > div > div:nth-child(2) > div {
        background-color: #F3F3F5;
    }

    section#Hero > div > div > div:nth-child(2) > div > h1,
    section#Hero > div > div > div:nth-child(2) > div > p,
    section#Hero > div > div > div:nth-child(2) > div > h2,
    section#Hero > div > div > div:nth-child(2) > div > a,
    section#Hero > div > div > div:nth-child(2) > div > h3,
    section#Hero > div > div > div:nth-child(2) > div > div {
        padding-left: 188px;
    }
    
    section#Hero > div > div > div:nth-child(2) > div > a {
        display:block;
        vertical-align: middle;
        font-weight:bold;
        font-size:1.125em;
        margin-bottom:20px;
    }

    section#governance > p {
        padding-left: 188px;
        padding-right: 188px;
    }

    section#Hero > div > div > div:nth-child(2) > div > ul {
        padding-left: 203px;
    }
    
    section#Hero > div > div > div:nth-child(2) > div > hr{
        margin-left:-100%;
        width:200%;
    }
    
    section#Hero > div > div > div:nth-child(2) > div > div > img {
        width:100%;
        max-width:100%;
    }
    
    section#Hero > div > div > div:nth-child(2) > div > div > h3 {
        color: #007681;
        margin: 10px 0px 20px 0px;
    }

    section#Hero > div > div > div:nth-child(2) > div > div > p,
    section#Hero > div > div > div:nth-child(2) > div > div > h3{
        padding-left:0px;
        padding-right:0px;
    }
    
    section#Hero > img:nth-child(1) {
        left:-19px;
    }
    
    section#AboutUs > div > img:nth-child(1) {
        left:0;
    }
        
    section#AboutUs > div > div:nth-child(3) {
        padding:20px 188px;
        max-width:1200px;
        margin:0px auto;
    }
    
    section#AboutUs > div > div:nth-child(3) > figure {
        min-height: 140px;
    }
    
    section#AboutUs > div > div:nth-child(3) > figure:first-child {
        margin-bottom: 40px;
    }
    
    section#AboutUs > div > div:nth-child(3) > figure > div {
        width: 120px;
        height: 120px;
    }
    
    section#AboutUs > div > div:nth-child(3) > figure:nth-child(2) > div > img,
    section#AboutUs > div > div:nth-child(3) > figure:nth-child(3) > div > img {
        margin-top:10px;
    }
    section#AboutUs > div > div:nth-child(3) > figure:nth-child(4) > div > img {
        margin-top:15px;
    }
    
    section#AboutUs > div > div:nth-child(3) > figure > div + figcaption,
    section#AboutUs > div > div:nth-child(3) > figure > figcaption:only-child {
        padding-left:160px;
    }
    
    section#OurLocations > h2,
    section#OurBrands > h2 {
        margin: 30px auto 0 auto;
        text-align:center;
    }
    
    section#OurLocations > div > div > ul {
        -webkit-column-count: 3;
        -moz-column-count: 3;
        column-count: 3;
    }

    section#OurLocations > div > div > ul > li {
        margin-right: 20px;
    }
    
    section#OurLocations > div > div, section#OurLocations > div > div > ul {
        display: inline-block;
        vertical-align: middle;
    }
    
    section#OurLocations > div > div > ul > li:nth-child(5), section#OurLocations > div > div > ul > li:nth-child(6) {
        margin-right: 0;
    }

    section#Connect > div > div > div > img {
        width: 58px;
    }
    
    section#Connect {
        background-image: url(../img/bg-Connect-2500x1000.jpg);
        position:relative;
        overflow:hidden;
    }
    
    section#Connect > img {
        position:absolute;
        display:block;
        top:-500px;
        right:0;
    }
    
    section#Connect > div {
        justify-content: flex-start;
        max-width:1000px;
        margin:0px auto;
    }
    
    body.career section#Connect > div { 
        justify-content: center;
    }
    
    section#Connect > div > div:nth-child(3) > div > img {
        width: 48px;
    }
    
    
    section#Connect > div > div:last-child {
        margin-left: auto;
    }
    
    body.career section#Connect  > div > div:last-child {
        margin-left: 0;
    }

    footer{
        bottom: 0;
        padding:40px 20px 20px 20px;
    }
    
    footer a {
        padding: 0 5px;
    }
    
    footer > ul {
        width:100%;
    }

    
    footer > ul > li:nth-child(2) {
        max-width:100%;
        margin-left:260px;
        margin-right: 60px;
        display:block;
        text-align:right;
    }
    
    footer > ul > li:nth-child(3) {
        width:40px;
        position:absolute;
        right:0;
        top:0;
    }
   
    section#densitek{
        padding: 0 0 40px 0;     
    }
}

@media (min-width: 900px) {
    
    section#YourBenefits > ul {
       width:900px;
    }

    section#OurLocations > div > div:nth-child(2) {
        display:inline-block;
        width:100%;
    }

    section#OurLocations > div > div > ul {
        column-count: 3;
        -webkit-column-count: 3;
        -moz-column-count: 3;
    }

    section#OurLocations > div > div:nth-child(1) {
        width:100%;
        margin-right: 25px;
    }

}

@media (min-width: 1000px) {
    section#OurBrands > div > div {
        width:33.333%;
    }
    
    section#OurBrands > div > div > a > div > img {
        padding-bottom:20px;
    }
    
    section#OurBrands > div > div:nth-child(1),
    section#OurBrands > div > div:nth-child(4),
    section#OurBrands > div > div:nth-child(7) {
        padding-right:2px;
        padding-left:0px;
    }
    
    section#OurBrands > div > div:nth-child(2),
    section#OurBrands > div > div:nth-child(5),
    section#OurBrands > div > div:nth-child(8){
        padding-left:2px;
        padding-right:2px;
    }
    
    section#OurBrands > div > div:nth-child(3),
    section#OurBrands > div > div:nth-child(6),
    section#OurBrands > div > div:nth-child(9){
        padding-left:2px;
        padding-right:0px;
    }
}
/* Misc crap **/
.group:before,
.group:after {
  content: "";
  display: table;
} 
.group:after {
  clear: both;
}
.group {
  zoom: 1; /* For IE 6/7 (trigger hasLayout) */
}

/**
* Used for header dropdown updates
* Lines 1274 - 1370
*/

.group > li > a {
    cursor: pointer;
}

.dropbtn {
    padding: 16px 16px 16px 30px;
    font-size: 14px;
    border: none;
    cursor: pointer;
}

.dropdown {
    position: relative;
    display: inline-block;
}

/* dropdown content (hidden by default) */
.dropdown-content {
    z-index: 1;
    display: block;
    opacity: 0;
    position: absolute;
    background-color: white;
    border: none;
    min-width: 130px;
    text-align: left;
    overflow: hidden;    
    max-height:0;
    padding:0;
    transition: opacity 200ms ease-in-out, max-height 1s linear 500ms, border 1s linear 500ms, padding 1s linear 500ms;
}

/* links inside the dropdown */
.dropdown-content a {
    cursor: pointer;
    color: black;
    padding: 8px 12px;
    font-size: 12px;
    text-decoration: none;
    text-transform: none !important;
    display: block;
    font-weight: normal;
}

.activeLink, .current {
    cursor: auto !important;
    font-weight: bold !important;
    color: #007681 !important;
}

.activeTab {
    color: #0abecf !important;
}

.dropdown-content a:hover {
    color: #007681;
}

#dropdownArrow {
    margin-left: 5px;
}

/* show the menu - class added using javascript */

.dropdown-content.show {
    padding: 10px 0;
    max-height: none;
    opacity: 1;
    transition: opacity 200ms ease-in-out, max-height 0s linear 0ms, border 0s linear 0ms, padding 0s linear 0ms;
    border: 1px solid #0abecf;
}

.showOverlay {
    display: block;
    opacity: 1;
}


@media (min-width: 768px) {
    .showOverflow {
        overflow: visible !important;
    }
}

p strong{
    font-weight:bold;
}

/* Densitek start */

ul.conversion-schedule {
    padding-left: 20px !important;
    list-style-type: none;
    list-style: none;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
}

@media (min-width:768px) {
    ul.conversion-schedule {
        padding-left: 188px !important;
    }
}

ul.conversion-schedule li {
    margin: 0 0 1rem 0;
    list-style-type: none;
    position: relative;
    padding: 0;
}

ul.conversion-schedule li:before {
    display:none !important;
}

ul.conversion-schedule li h3{
    color: #007681;
}

.collapsable span.see-collections-included {
    display: inline-block;
    font-weight:bold;
}

.collapsable span.collections-included {
    display: none;
    font-weight: bold;
}

.collapsable.open span.collections-included {
    display: inline-block;
}

.collapsable.open span.see-collections-included {
    display: none;
}

ul.conversion-schedule ul.collections {
    padding-left: 38px;
}

ul.conversion-schedule ul.collections li:before {
    content: "\25AA";
    color: #007681;
    font-weight: bold;
    display: inline-block !important;
    width: 1em;
    margin-left: -1em;
}

.section-questions {
    text-align:center;
}


.email-us-container {
    width: 160px;
    text-align: center;
    display: inline-block;
    margin: 10px 20px 20px 10px;
    min-width: 160px;
}

.email-us-container div {
    height: 102px;
    position: relative;
    text-align: center;
}

.email-us-container div img {
    width: 58px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.email-us-container a.btn {
    display: block;
    width: 100%;
    padding: 16px 0;
    margin-top: 10px;
    z-index: 100;
    position: relative;
    color: #FFF;
}
/* Densitek end */
/* Collapsable start */
.collapsable {
    cursor: pointer;
}

.collapsable span {
    color: inherit;
}

.collapsable span.icon-right-arrow {
    display: inline-block;
    color: inherit;
    font-size: inherit;
    margin-right: .2rem;
    margin-top: -1px;
}

.collapsable span.icon-right-arrow:before {
    content: "";
    display: block;
    background: url("../img/icon-Arrow-Right.svg") no-repeat;
    width: 13px;
    height: 13px;
    float: left;
    margin: 0 2px 0 0;
}

.collapsable span.icon-down-arrow {
    display: none;
    color: inherit;
    font-size: inherit;
}

.collapsable span.icon-down-arrow:before {
    content: "";
    display: block;
    background: url("../img/icon-Arrow-Down.svg") no-repeat;
    width: 13px;
    height: 13px;
    float: left;
    margin: 0 2px -1px 0;
}

.collapsable.open {
    border-bottom: none;
}

.collapsable.open span.icon-right-arrow {
    display: none;
}

.collapsable.open span.icon-down-arrow {
    display: inline-block;
}

/* Collapsable end */

section.secondary {
    background-color:#F3F3F5;
}

/* pageable */
[data-articles] > div {
    margin:auto;
    max-width: 1220px;
    width:100%;
}


[data-articles] > div > strong {
    padding:20px 10px;
    display:block;
    font-weight:bold;
}

[data-articles] > div > strong > span {
    font-weight:bold;
}

[data-articles] > div > .results > [data-page] {
    display:none;
    padding:5px;
}

[data-articles] > div > .results > [data-page].active {
    display:flex;
    flex-wrap:wrap;
}

[data-articles] > div > .results > [data-page] > .card {
    padding:5px;
    width:100%;
}

@media (min-width: 420px) {
    [data-articles] > div > .results > [data-page] > .card {
        width:50%;
    }

    .flooring-logo{
        width:100%;
        margin-bottom:20px;
        left:20px;
    }
}

@media (min-width: 768px) {
    [data-articles] > div > .results > [data-page] > .card {
        width:33.3333%;
    }

    .flooring-logo{
        width:31.3333%;
        margin-right:15px;
        margin-bottom:15px;
        left:0;
    }
}

[data-articles] > div > .results > [data-page] > .card > div {
    background-color:white;
    padding:20px 15px 15px 15px;
    border:1px solid #A7A7A8;
    width:100%;
    height:100%;
}

[data-articles] > div > .results > [data-page] > .card > div > * {
    display:block;
    max-width:100%;
    margin-bottom:10px;
}

[data-articles] > div > .results > [data-page] > .card > div > div {
    display:block;
    height:75px;
}

[data-articles] > div > .results > [data-page] > .card > div > div > img {
    max-height:55px;
    max-width:100%;
}

[data-articles] > div > .results > [data-page] > .card > div > *.title {
    font-size:1.25em;
    font-weight: bold;
}

.pages {
    padding: 15px 10px 40px 10px;
    display:flex;
}

.pages > button {
    background-color:transparent;
    color:black;
    font-weight:bold;
    padding:5px 10px;
    border:none;
    margin-right:10px;
    outline: none;
}

.pages > button:hover {
    text-decoration: underline;
}

.pages > button.active {
    border: 2px solid #007681;
}

/** Press Releases **/
ul[data-press-releases], ul[data-boxed] {
    width:100%;
    margin:0;
    padding: 20px 0 0 15px;
    list-style: none;
    list-style-type: none;
}

@media (min-width: 768px)  {
    ul[data-press-releases], ul[data-boxed]  {
        padding-left:186px !important;
    }
}

[data-press-releases] li, ul[data-boxed] li {
    padding: 0 5px 5px 5px;
    list-style: none;
    width:100%;
    margin-bottom: 10px;
}

[data-press-releases] li:before, ul[data-boxed] li:before {
    display:none !important;
}

[data-press-releases] li > div, ul[data-boxed] li > div {
    background-color:white;
    padding:10px 10px 0 10px;
    border:1px solid grey;
    width:100%;
}

ul[data-boxed] li > div > p {
    display:block;
}

[data-press-releases] li > a.btn {
    width:auto;
    display:inline-block;
    color:white;
    padding: 10px 15px;
    margin-top:20px;
}

[data-press-releases] li > div > * {
    display:block;
    margin-bottom:10px;
}

[data-press-releases] li > div > *.title {
    font-weight:bold;
    font-size:1.25em;
} 
[data-press-releases="full"] > div {
    margin:auto;
    max-width: 1220px;
    width:100%;
}


[data-press-releases="full"] > div > strong {
    padding:20px 10px;
    display:block;
    font-weight:bold;
}

[data-press-releases="full"] > div > strong > span {
    font-weight:bold;
}

[data-press-releases="full"] > div > .results > [data-page] {
    display:none;
    padding:5px;
}

[data-press-releases="full"] > div > .results > [data-page].active {
    display:flex;
    flex-wrap:wrap;
}

section.text {
    padding: 60px 0;
}

section.text p,  section.text a{
    max-width:100%;
    display:block;
    margin:20px auto 0 auto;
    text-align:center;
}


@media (min-width: 1000px) {
    section.text p,  section.text a{
        max-width:1200px;
        width:100%;
    }
}

ul[data-boxed] li > div > p > img{
    display: block;
    max-width: 100%;
}
ul[data-boxed] li > div > p > span{
    display: block;
}

@media (min-width: 768px){
    ul[data-boxed] li > div > p {
        display: flex;
        flex-direction: row-reverse;
        align-items: flex-start;
    }
    
    ul[data-boxed] li > div > p > span{
        margin: 0 20px 0 0;
    }
}

.flooring-logo{
    height:100px;
    float:left;
    display: inline-block;
    position: relative;
}

.flooring-logo > img {
    max-height:50%;
    position: absolute;
    top:50%;
    left:50%;
    transform: translate(-50%, -50%);
}

.no-padding{
    padding:0px !important;
}

.gray-background{
    background-color:gray !important;
}

.padding-bottom{
    padding-bottom:60px !important;
}

.brands > div > div > a > div:hover{
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.button-linked {
    display:flex;
    flex-direction: column;
    padding-top: 40px;
    padding-bottom: 40px;
}

.button-linked > * {
    margin: 0 auto;
    color: #007681;
}

.button-linked > a.btn {
    margin-top: 20px;
    padding: 20px;
    color: white;
    margin: 20px auto 20px auto;
}

[data-boxed-list] {
    display:flex;
    flex-direction: column;
    max-width: 1220px;
    width: 100%;
    margin: 0 auto;
    padding: 20px 0;
}

[data-boxed-list] > div {
    padding:20px;
    margin:10px;
    width:100%;
    border: 1px solid #000;
}

[data-boxed-list] > div > h2 {
    margin-top:0;
    padding:0;
    color: #007681;
    font-size: 2rem;
}

[data-boxed-list] > div > a.btn {
    padding: 20px;
}


@media (min-width: 768px) {
    [data-boxed-list] {
        flex-direction: row;
    }

    [data-boxed-list] > div {
        width:33.333%;
    }
}