/*! normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */
button,hr,input{overflow:visible}progress,sub,sup{vertical-align:baseline}[type=checkbox],[type=radio],legend{box-sizing:border-box;padding:0}html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}h1{font-size:2em;margin:.67em 0}hr{box-sizing:content-box;height:0}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bolder}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:ButtonText dotted 1px}fieldset{padding:.35em .75em .625em}legend{color:inherit;display:table;max-width:100%;white-space:normal}textarea{overflow:auto}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}[hidden],template{display:none}
/*-- end normalize styles --*/

html,
body,
*{
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	-ms-box-sizing:border-box;
	box-sizing:border-box;
}

body{
	font-family:'Source Sans Pro', sans-serif;
	font-size:1.125em;
	line-height:1.5;
	color:black;
	background:white;
    position:relative;
    overflow-x:hidden;
   /* background-color: #212729;*/
        background-color: #171b1d;
    background-image: url('/assets/images/topographic-bg2.png');
}
.page-wrap {
    padding: 0 1.5625vw 0;
    overflow:hidden;
    box-sizing:border-box;
    position:relative;
    width:100%;
}

.page-wrap > section {

    overflow:hidden;
    background-size:cover;
    background-position:50% 50%;
}
.bg-white{
     background-color: white;
}
p.larger, .bg-light-grey.larger p{
    font-family:'Playfair Display', serif;
    font-size:1.222em;
    line-height:1.85;
    margin:0 0 3vw;
}
p > a {
    cursor: pointer;
    /* color: #00a1b6; */
		color:#0b747d;
}
.bg-light-grey.larger p{
    margin:0;
}
.bg-light-grey.larger p + p{
    margin:30px 0 0;
}
h1{
    font-family:'Playfair Display',serif;
    font-size:2.500rem;
    margin:0;
}

h2{
    font-family:'Playfair Display',serif;
    margin:0;
    font-size:1.944rem;
		font-weight: 200;
}
h3{
    font-weight:600;
    font-size:1.222rem;
    line-height:1.35;
    margin:0;
}
h4 > a{
    color:inherit;
    text-decoration:none;
}

h4.title {
    color:white;
    font-size: 1.25rem;
}
.crumbs h4{
    margin: 0 0 0.75rem;
}
.crumbs h3{
    text-transform: uppercase;
    font-size: 2.5rem;
    color: white;
    font-weight: 300;
    letter-spacing: 6px;
    margin: 0 0 1.5rem;
    padding: 0 0 1.5rem;
}
.crumbs{
    position:relative;
}
.crumbs::after {
    content: "";
    display: block;
    width: 50px;
    height: 2px;
    background: #17a1b4;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: 0px;
}
p + h3 {
    margin: 2.5vw 0 0;
}
h4, h5{
    /* color:#17a1b5; */
		/* color:#14b5c3; */
		color:#0b747d;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    margin: 0 0 2vw;

}
.hero h4.header {
    color: #17a1b5;
}
.hero h4.headerOnBlack {
	  color:#0b8c9e;
}
.hero h4{
    font-size:1.5rem;
}
h5{
    /* font-weight:400; */
    /* color:#8e8e8e; */
		font-weight:600;
    color:#6d6d6d;
}

h6{
    font-weight:300;
    color:#333;
		font-size: 1rem;
}
img{
    display:block;
    width:100%;
}
.btn{
    text-transform: uppercase;
    font-size: 0.833rem;
    display: inline-block;
    color: black;
    letter-spacing: 2px;
    /*border-bottom: 2px solid #6cba57;*/
    text-decoration: none;
    font-weight: 700;
    padding: 0 3px 2px;
}
.btn.white,
.bg-dark .btn{
	color:white;
}


.btn {
    z-index:0;
    position: relative;
    display: inline-block;
    vertical-align: bottom;
    white-space: nowrap;
    overflow: hidden;
		padding: 6px 12px;
}
.btn::before,
.btn::after {
    position: absolute;
    top: -2px;
    left: 0;
    width: 100%;
    height: 100%;
    content: '';
    -webkit-transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
}
.btn::before {
    border-top: 2px solid #6cba57;
    background: transparent;
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
    -webkit-transform: translateY( calc(100% - 2px) );
    transform: translateY( calc(100% - 2px) );
    z-index: 1;
}
.btn::after {
    z-index: -1;
    background: rgb(108, 186, 87);
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
}



.btn:hover::before,
.btn:focus::before,
.btn:hover::after,
.btn:focus::after{
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

.btn:hover::after,
.btn:focus::after {
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
}

.btn:hover::before,
.btn:focus::before {
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
}

.btn:hover {
    color: white;
    transition: color 0.3s 0.3s ease;
}


a.text-link {
    border-bottom: 2px solid #6cba57;
    color: black;
    text-decoration: none;
}
.color-green{
	color:#6cba57;
}
.color-blue{
	color:#17a1b5;
}
.color-darker-blue{
	color:#308694;
}
.bg-grey{
	background:#f2f2f2;
}
.bg-dark{
	background:#212729;
}
.alt {
    overflow: hidden;
    width: 1px;
    height: 1px;
    display: block;
    text-indent: -9999999px;
    line-height: 0;
}

.flex-wrap{
    display:flex;
    flex-direction:row;
    flex-wrap:wrap;
}
.flex-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items:center;
}
.flex-wrap.gutter{
    margin:0 -2.5vw;
    justify-content:flex-start;
}
.flex-wrap.reverse{
	flex-direction: row-reverse;
}
.reverse-rows .flex-wrap:nth-of-type(even) {
    flex-direction: row-reverse;
}
.reverse-rows .flex-wrap.no-reverse {
    flex-direction: row;
}
.half{
    width:50%;
}
.gutter .half{
    width:calc(50% - 5vw);
    margin:0 2.5vw 5vw;
}
.third, .one-third{
    width:33.333%;
}
.two-thirds{
    width:66.666%;
}
.gutter .two-thirds{
    width:calc(66.666% - 5vw);
    margin:0 2.5vw 5vw;
}
.gutter .third,
.gutter .one-third{
    width:calc(33.333% - 5vw);
    margin:0 2.5vw 5vw;
}
.pad-box{
    padding: 8.375vw 7.8125vw;
}
.pad-box.pt-0{
    padding: 0vw 7.8125vw 8.375vw;
}

.pad {
    padding: 2.8125vw;
}

.pad-extra {
    padding: 4.375vw;
}
.pad-tb {
    padding-top: 5vw;
    padding-bottom: 5vw;
}

.pad-b {
    padding-bottom: 5vw;
}

.pad-t {
    padding-top: 5vw;
}
.bg-img{
    background-size:cover;
    background-position:50% 50%;
}
.bg-img.offset {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
    top: 10vw;
}
.page-wrap > section.offset-parent{
    background-color:transparent;
}
.lined-list,
.equipment .flex-wrap .pad-extra ul{
    margin:0;
    padding:0;
    list-style:none;
}
.lined-list li,
.equipment .flex-wrap .pad-extra ul li{
    display:block;
    border-bottom:1px solid #c1c1c1;
    padding:8px 10px;
    font-weight:600;
    font-size:1.222rem;
    line-height:1.35;
}
.lined-list li:last-of-type,
.equipment .flex-wrap .pad-extra ul li:last-of-type{
    border:none;
}
[class^="icon-"]:before, [class*=" icon-"]:before {
    margin: 0;
    padding: 0;
    line-height: 1.0;
    height: auto;
    min-height: 0;
    min-width: 0;
    width: auto;
}
.text-center{
    text-align:center;
}
.bg-light-grey,
.page-wrap > section.bg-light-grey{
    background-color: #f1f1f1;
}
.color-white{
    color:white;
}
.relative{
    z-index:1;
    position:relative;
    background-size:cover;
    background-position:50% 50%;
}

.dark::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35);
    position: absolute;
    z-index: 0;
}

.dark {
    position: relative;
}

.shadow .flex-wrap + .flex-wrap {
    margin: 5vw 0 0;
}

.shadow .flex-wrap {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}


.shadow .flex-wrap .demo-icon {
    font-size: 60px;
    color: #00a1b6;
}







/*-- header --*/
header{
    position:relative;
    z-index:1;
    width: 100%;

    padding: 3.125vw;
    display:flex;
    flex-direction:row;
    justify-content: space-between;
    align-items:center;
}
.relative header{
    background-color:transparent;
}
header .logo {
    width: 12.5vw;
    width: 18.85vw;
    display: block;
    position:static;
}
nav {
    text-align: right;
}
nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: flex-end;
    justify-content: flex-end;
}
nav .social{
    display:none;
}
#sub a {
    display: block;
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.833rem;
    letter-spacing: 3px;
    font-weight: 500;
		-webkit-transition:0.25s ease;
    -moz-transition:0.25s ease;
    -ms-transition:0.25s ease;
    transition:0.25s ease;
}
#main a {
    text-decoration: none;
    color: white;
    font-size: 1.556rem;
    font-weight: 300;
    text-align: right;
		-webkit-transition:0.25s ease;
    -moz-transition:0.25s ease;
    -ms-transition:0.25s ease;
    transition:0.25s ease;
}

#main {
    text-align: right;
}

#main li {
    margin: 0 0 0 55px;
}

#sub {
    margin: 0 0 15px;
}
#sub li {
    margin: 0 0 0 25px;
}

#main li.selected a,
#sub li.selected a {
    color: #14b5c3;
    font-weight: 400;
}

#main li a:hover,
#sub li a:hover {
    color: #14b5c3;
}


.burger{
    outline:none;
    overflow: visible;
    margin: 0;
    padding: 15px;
    cursor: pointer;
    transition-timing-function: linear;
    transition-duration: .15s;
    transition-property: opacity,filter;
    text-transform: none;
    color: inherit;
    border: 0;
    background-color: transparent;
    display:none;
}
.burger-box{

    position: relative;
    display: inline-block;
    width: 40px;
    height: 24px;
}
.burger-inner {
    transition-timing-function: cubic-bezier(.55,.055,.675,.19);
    transition-duration: .22s;
}
.burger-inner,
.burger-inner:after,
.burger-inner:before {
    position: absolute;
    width: 40px;
    height: 2px;
    transition-timing-function: ease;
    transition-duration: .15s;
    transition-property: transform;
    background-color: #fff;
}
.burger-inner:after,
.burger-inner:before {
    display: block;
    content: "";
}
.burger-inner {
    top: 50%;
    display: block;
    margin-top: -2px;
}
.burger-inner:before {
    top: -10px;
}
.burger-inner:after {
    bottom: -10px;
}
.burger-inner:before {
    transition: top .1s ease-in .25s,opacity .1s ease-in;
}
.burger-inner:after {
    transition: bottom .1s ease-in .25s,transform .22s cubic-bezier(.55,.055,.675,.19);
}
.nav-active .burger .burger-inner {
    transition-delay: .12s;
    transition-timing-function: cubic-bezier(.215,.61,.355,1);
    transform: rotate(225deg);
}
.nav-active .burger .burger-inner,
.nav-active .burger .burger-inner:after,
.nav-active .burger .burger-inner:before {
    background-color: #fff;
}
.nav-active .burger .burger-inner:before {
    top: 0;
    transition: top .1s ease-out,opacity .1s ease-out .12s;
    opacity: 0;
}
.nav-active .burger  .burger-inner:after {
    bottom: 0;
    transition: bottom .1s ease-out,transform .22s cubic-bezier(.215,.61,.355,1) .12s;
    transform: rotate(-90deg);
}


/*-- footer --*/
.social {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
}

.social a {
    display: block;
    font-size: 2.25vw;
}

footer .social a {
    color: #606873;
}

footer {
    /*background-color: #212729;*/
    color: #606873;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
    padding: 2vw;
}

.copyright {
    font-size: 12px;
    text-align: center;
    margin: 0;
    width:100%;
}

footer img {
    display: block;
    width: 200px;
}

footer .social li {
    margin: 0 0 0 1.25vw;
}


/*-- home --*/
.intro {
    /*background-color: #212729;*/
    color:white;
    padding:0 0;
    position:relative;

}
.type-wrapper h1{
        display: inline-block;
    float: left;
}
#cursor{
   border-right: 2px solid rgba(255,255,255,.75);
    height: 120px;
    animation: blink 800ms steps(35) infinite normal;
    display: inline-block;
        margin: 28px 0 0 0;
}
    @keyframes blink{
      from{border-right-color: rgba(255,255,255,.75);}
      to{border-right-color: transparent;}
    }
.intro h1{
    font-size:6.389rem;
}

.slide .bg-img {
    position: absolute;
 	top:0;
 	left:0;
    width:100%;
    height:100%;
    overflow:hidden;
}
.home header {
    position: absolute;
    z-index: 999;
}
.intro .slider .img-wrap {
    width: 68vw;
    height: 40vw;
    position: relative;
    margin: 0 0 0 auto;
    margin: 11.0625vw 10vw 6.25vw auto;


}
.intro .slider .img-wrap::after{
     content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.7);
}

.slick-list{
	z-index:1;
}
.intro .img-wrap .bg-img::before {
    content: "";
    display: block;
    top:0;
    right:0;
    bottom:0;
    left:0;
    z-index: 0;
    position: absolute;
    background: -moz-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0.45) 100%);
    background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,0.45) 100%);
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,0.45) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#73000000',GradientType=0 );
}


.intro .img-wrap img {
    display: block;
    width: 100%;
}


.intro .slider .slick-list {
    width:100%;
    overflow: hidden;
}
.intro .text {
    padding: 0;
    bottom: 12vw;
    z-index: 2;
    left: 12vw;
    position: absolute;
}


ul.slick-dots {
    margin: 0;
    list-style: none;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index:2;
    flex-direction: column;
}
.slick-dots button{
    outline:none;
    cursor:pointer;
    background: #434447;
    border: none;
    text-indent: -99999px;
    line-height: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: block;
    overflow: hidden;
    padding: 0;
    margin: 0;
    transition:background 0.35s ease;
}

.slick-dots li {
    margin: 0 0 18px;
}

.slick-dots li:last-of-type {
    margin: 0;
}

.slick-dots .slick-active button,
.bx-wrapper .bx-pager.bx-default-pager a.active {
    background: #0094a1;
}
a.slide {
    color: white;
}
.intro .btn {
    color: white;
}

.service-cards{
    text-align:center;
}
.service-cards .third{
    background-color:white;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}
.service-cards h1 {
    text-transform: uppercase;
}
.service-cards .lined-list{
    margin:10px 0 30px 0;
}
.service-cards h4 {
    margin: 0 0 30px;
}

.service-cards .demo-icon {
    color: #308694;
    font-size: 3.056rem;
}
.service-cards h4 {
    font-size: 1.111rem;
    font-weight: 400;
    margin: 0;
    line-height: 1.05;
    color:black;
}
.service-cards h4::before,
.service-cards h4::after {
    content: "[";
    font-weight: 200;
    font-size: 1.65rem;
    color: #6cba57;
    margin: 0 10px 0 0;
}
.service-cards h4::after {
    content: "]";
    margin: 0 0px 0 10px;
}
.list-view{
    padding:5vw;
}
.list-view.pr-0{
    padding:5vw 0 5vw 5vw;
}
.list-view .text-wrap {
    padding: 25px 15px;
}
.flex-wrap.gutter.list-view {
    margin: 0 -1.5vw;
    justify-content: flex-start;
}

.flex-wrap.gutter.list-view .third,
.flex-wrap.gutter.list-view .one-third{
    width: calc(33.333% - 3vw);
    margin: 0 1.5vw 3vw;
}


.list-view .text-wrap h4,
.list-view .text-wrap h2{
    margin: 0 0 0px;
}



/*

.intro .text h1{
	white-space: nowrap;
	overflow:hidden;
	border-right: 2px solid rgba(255,255,255,.75);
	position:relative;

}

.intro .slick-active .text h1{
	   animation: typewriter 500ms steps(44) 500ms 1 normal both,
             blinkTextCursor 500ms steps(44) infinite normal;
}
@keyframes typewriter{
  from{width: 0;}
  to{width: 100%;}
}
@keyframes blinkTextCursor{
  from{border-right-color: rgba(255,255,255,.75);}
  to{border-right-color: transparent;}
}
@keyframes fadeIn{
  from{opacity:0;}
  to{opacity:1;}
}
*/



/*
.intro .text h1{
  opacity: 0;
}
.cursor{
  display: block;
  position: absolute;
  height: 100%;
  top: 0;
  right: -5px;
  width: 2px;
  background-color: white;
  z-index: 1;
  animation: flash 0.5s none infinite alternate;
}
@keyframes flash{
  0%{
    opacity: 1;
  }
  100%{
    opacity: 0;
  }
}
*/










.intro .text p,
.intro .text a.btn{
	opacity:0;
	transition:opacity 0.15s 0s ease;
}
.intro .slick-active .text p,
.intro .slick-active .text a.btn{
	opacity:1;
	transition:opacity 0.35s 0.5s ease;
}

/*-- subpages --*/
.callout .pad-box {
    z-index: 1;
    position: relative;
}

.callout .btn {
    color: white;
}
.hero-wrap {
    position: relative;
    text-align: center;
    background-size: cover;
    background-position: 50% 50%;

}

.hero-wrap header {
    background: transparent;
}

.hero-wrap + .page-wrap {
    margin: -5vw 0 0;
}
/*
.hero-wrap + .page-wrap::before {
    content: "";
    display: block;
    width: 100%;
    height: 5vw;
    top: 0;
    left: 0;
    position: absolute;
    background: -moz-linear-gradient(top, rgba(33,39,41,0) 0%, rgba(33,39,41,1) 100%);
    background: -webkit-linear-gradient(top, rgba(33,39,41,0) 0%,rgba(33,39,41,1) 100%);
    background: linear-gradient(to bottom, rgba(33,39,41,0) 0%,rgba(33,39,41,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00212729', endColorstr='#212729',GradientType=0 );
    z-index:0;
}
*/




.hero-wrap::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    /*background: -moz-linear-gradient(-45deg, rgba(33,39,41,0) 0%, rgba(33,39,41,0.7) 100%);
    background: -webkit-linear-gradient(-45deg, rgba(33,39,41,0) 0%,rgba(33,39,41,0.7) 100%);
    background: linear-gradient(15deg, rgba(33,39,41,0) 30%,rgba(33,39,41,0.7) 90%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00212729', endColorstr='#b3212729',GradientType=1 );*/
   background: -moz-linear-gradient(top, rgba(33,39,41,1) 0%, rgba(33,39,41,0.5) 36%, rgba(33,39,41,0) 56%, rgba(33,39,41,0) 100%);
background: -webkit-linear-gradient(top, rgba(33,39,41,1) 0%,rgba(33,39,41,0.5) 36%,rgba(33,39,41,0) 56%,rgba(33,39,41,0) 100%);
background: linear-gradient(to bottom, rgba(33,39,41,1) 0%,rgba(33,39,41,0.5) 36%,rgba(33,39,41,0) 56%,rgba(33,39,41,0) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#212729', endColorstr='#00212729',GradientType=0 );
    opacity: 0.65;

}

.hero-wrap::after {

    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: -moz-linear-gradient(top, rgba(33,39,41,0) 0%, rgba(33,39,41,1) 100%);
    background: -webkit-linear-gradient(top, rgba(33,39,41,0) 0%,rgba(33,39,41,1) 100%);
    background: linear-gradient(to bottom, rgba(33, 39, 41, 0.51) 0%,rgba(33,39,41,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00212729', endColorstr='#212729',GradientType=0 );
    z-index: 0;
    opacity: 0.45;
}


.topographic {
    background-image: url(/assets/images/topographic-bg2.png);
}



.hero{
    text-align:center;
    background-size:cover;
    background-position:50% 50%;
    margin:0 auto;
    position:relative;
    z-index:1;
}
.hero h2,
.hero .crumbs{
    max-width:1200px;
    margin:0 auto;
    position:relative;
    z-index:1;
}
.hero::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    display: block;
    background: -moz-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0.65) 100%);
    background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,0.65) 100%);
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,0.65) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#a6000000',GradientType=0 );
    opacity: 0.65;
}
.hero.no-shadow::before{
    display:none;
}
.hero h2{
    color:white;
}
.icon-list {
    margin: 0;
    padding: 0;
}
.icon-list li {
    margin: 0 0 3vw;
}
.lined-title h4 {
    color: #6cba57;
    font-size: 2vw;
    display: inline-block;
    font-weight: 400;
    font-family: "Playfair Display";
    text-transform: capitalize;
    color: white;
    font-style: italic;
    letter-spacing: 0;
    font-size: 15px;
    padding: 0 25px;
    background: #202528;
    position: relative;
    margin:0;
}

.lined-title {
    position: relative;
    margin:0 0 50px;
}

.lined-title::before {
    content: "";
    display: block;
    left: 10%;
    right: 10%;
    position: absolute;
    height: 2px;
    background: #6cba57;
    top: 50%;
    -webkit-transform:translateY(-50%);
    -moz-transform:translateY(-50%);
    -ms-transform:translateY(-50%);
    transform:translateY(-50%);
    z-index: -1;
}

.lined-title h4::before, .lined-title h4::after {
    content: "[";
    left: -3px;
    position: absolute;
    color: #68bb51;
    font-family: 'Source Sans Pro', sans-serif;
    font-style: normal;
    font-size: 30px;
    top: 50%;
    -webkit-transform:translateY(-50%);
    -moz-transform:translateY(-50%);
    -ms-transform:translateY(-50%);
    transform:translateY(-50%);
}

.lined-title h4::after {
    left: initial;
    right: -3px;
    content: "]";
}



/*-- blog --*/

.pagination {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    list-style: none;
    margin: 0 auto;
    padding: 0;
    justify-content: center;
}

.pagination li {
    text-transform: uppercase;
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    margin: 0px 4px;
    padding: 6px 12px;
     color: #17a1b5;
}

.pagination li a {
    text-decoration: inherit;
    /* color: inherit; */
		color: #0b747d;
}

.pagination li.pag-next,
.pagination li.pag-prev {
    border: 1px solid black;
    padding: 6px 12px;
    transition:0.35s ease;
}
.pagination li.pag-next:hover,
.pagination li.pag-prev:hover{
    background-color:#17a1b5;
    color:white;
    border-color:#17a1b5;
}

.pagination li.pag-current {
    color: #696969;
    border: 1px solid#eaeaea;
    background: #fbfbfb;
}

.sub-hero {
    position: relative;
    height: 40vh;
    min-height:200px;
}

.sub-hero .bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
#blog-nav {
    background: #f2f2f2;
    position: relative;
    border-bottom: 1px solid #d8d8d8;

}

#blog-nav p {
    text-align: left;
    padding: 0 0 0 20px;
    font-family: "Playfair Display";
    font-size: 12px;
    line-height: 19px;
    position: absolute;
    left: 0;
}

#blog-nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

#blog-nav ul a {
    display: block;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.833rem;
    letter-spacing: 2px;
    color: black;
    font-weight: 700;
}

#blog-nav li {
    padding: 12px 26px;
    border-left: 1px solid #d8d8d8;
    background: white;
}

#blog-nav li:last-of-type {
    border-right: 1px solid #d8d8d8;
}

.blog-detail h1 {
    font-size: 5.25vw;
    line-height: 1.3;
}
.blog-detail h4 {
    margin: 0;
}
.max-width {
    max-width: 1280px;
    margin: 0 auto;
}
.float-wrap {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    margin: 2vw 0;
}

.blog-detail .float-wrap img {
    width: 33.333%;
    margin: 0 30px 20px -10%;
}
.callout h2 {
    font-size: 3vw;
    text-transform: capitalize;
}

.callout p {
    font-family: "Playfair Display", serif;
    font-size: 1.375vw;
}
.blog-detail img {
    margin: 2vw auto;
}
ul.bullets {
    margin: 0;
    padding: 0;
    list-style: none;
}

ul.bullets li {
    position: relative;
    padding: 0 0 0 20px;
    margin: 0 0 5px;
}

ul.bullets li::before {
    content: "";
    width: 4px;
    height: 4px;
    border: 1px solid #8e8e8e;
    display: block;
    border-radius: 50%;
    left: 0;
    position: absolute;
    top: 11px;
}


.certifications {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.certifications li {
  /*  border: 1px solid #8e8e95; */
    padding: 10px;
    width: calc(25% - 1vw);
    text-align: center;
}

.certifications li img {
    display: block;
    width: 85px;
    margin: 0 auto 20px;
}

.two-thirds > .certifications li {
    width: calc(33.333% - 1vw);
}

.certifications li .demo-icon {
    font-size: 75px;
    margin: 0 auto;
    display: block;
    text-align: center;
}

.certifications li h5 {
    margin: 0;
    font-size: 13px;
    letter-spacing: 2px;
}
.half .certifications li {
    width: calc(50% - 1vw);
    margin: 0 0 2vw;
}

.half .certifications {
    flex-wrap: wrap;
}

.bg-white{
	background-color:white;
}
.isn-logo, .argus-logo {
    display: block;
    margin: 0 0 20px;
    max-width: 300px;
}

.argus-logo {
    width: 229px;
}





/* -- Slick Slider Styles --  /
 * Version: 1.9.0 | Author: Ken Wheeler | Website: http://kenwheeler.github.io  -- */

.slick-slider{
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
   -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list{
    position: relative;
    display: block;
    margin: 0;
    padding: 0;
}
.slick-list:focus{
    outline: none;
}
.slick-list.dragging{
    cursor: pointer;
    cursor: hand;
}
.slick-slider .slick-track,
.slick-slider .slick-list{
    -webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	-o-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}
.slick-track{
    position: relative;
    top: 0;
    left: 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after{
    display: table;
    content: '';
}
.slick-track:after{
    clear: both;
}
.slick-loading .slick-track{
    visibility: hidden;
}
.slick-slide{
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide{
    float: right;
}
.slick-slide img{
    display: block;
}
.slick-slide.slick-loading img{
    display: none;
}
.slick-slide.dragging img{
    pointer-events: none;
}
.slick-initialized .slick-slide{
    display: block;
}
.slick-loading .slick-slide{
    visibility: hidden;
}
.slick-vertical .slick-slide{
    display: block;
    height: auto;
    border: none;
    position:relative;
}
.slick-arrow.slick-hidden {
    display: none;
}



/*-- services --*/
.aspect-ratio {
    position: relative;
    height: 0;
    width: 100%;
    padding: 56.25% 0 0;
}

.aspect-ratio > * {
    position: absolute;
    display: block;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
}
.equipment .flex-wrap .bg-img {
    min-height: 550px;
}
.equipment .flex-wrap .pad-extra {
    display: flex;
    flex-direction: column;
    justify-content: center;
}




/*-- contact page --*/
#contact .gutter .full{
    width:calc(100% - 5vw);
    margin:0 2.5vw 3vw;
}
#contact .gutter .half{
    width: calc(50% - 5vw);
    margin: 0 2.5vw 3vw;
}
/* Yoshiko */
.input,
.select {
    position: relative;
    z-index: 1;
    margin: 0em 0 1em;
    vertical-align: top;

}

.input__field {
    position: relative;
    display: block;
    float: right;
    padding: 0.8em;
    width: 60%;
    border: none;
    border-radius: 0;
    background: #f3f3f3;
    color: #aaa;
    font-weight: 400;
    font-family: "Avenir Next", "Helvetica Neue", Helvetica, Arial, sans-serif;
    -webkit-appearance: none; /* for box shadows to show on iOS */
}

.input__field:focus {
    outline: none;
}

.input__label {
    display: inline-block;
    float: right;
    padding: 0 1em;
    width: 40%;
    color: #696969;
    font-weight: bold;
    font-size: 70.25%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.input__label-content {
    position: relative;
    display: block;
    padding: 1.6em 0;
    width: 100%;
}

.graphic {
    position: absolute;
    top: 0;
    left: 0;
    fill: none;
}

.icon {
    color: #ddd;
    font-size: 150%;
}
.input__field{
    width: 100%;
    background-color: #d0d1d0;
    border: 2px solid transparent;
    -webkit-transition: background-color 0.25s, border-color 0.25s;
    transition: background-color 0.25s, border-color 0.25s;
}

.input__label {
    width: 100%;
    text-align: left;
    position: absolute;
    bottom: 100%;
    pointer-events: none;
    overflow: hidden;
    padding: 0 1.25em;
    -webkit-transform: translate3d(0, 3em, 0);
    transform: translate3d(0, 3em, 0);
    -webkit-transition: -webkit-transform 0.25s;
    transition: transform 0.25s ;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
}

.input__label-content{
    color: #8B8C8B;
    padding: 0.25em 0;
    -webkit-transition: -webkit-transform 0.25s;
    transition: transform 0.25s;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
}

.input__label-content::after {
    content: attr(data-content);
    position: absolute;
    font-weight: 800;
    bottom: 100%;
    left: 0;
    height: 100%;
    width: 100%;
    color: #a3d39c;
    padding: 0.25em 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85em;
}

.input__field:focus + .input__label,
.input--filled .input__label {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.input__field:focus + .input__label .input__label-content,
.input--filled .input__label-content {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
}

.input__field:focus + .input__field,
.input--filled .input__field {
    background-color: transparent;
    border-color: #a3d39c;
}

#thanks{
    display:none;
    position: absolute;
    z-index: 2;
    background: white;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
}
 .btn input[type="submit"]{
   z-index:2;
   position:relative;
   cursor:pointer;
    border:0;
    margin:0;
    padding:0;
    background:transparent;
    color:inherit;
    font-family:inherit;
    font-size:inherit;
    text-transform:uppercase;
    font-weight:700;
    letter-spacing:inherit;
		color: black;
}

.blog-detail a {
    color: #0b747d;
}

.blog-detail a[target="_blank"] {
    color: #00a1b5;
}

blockquote {
    margin: 3vw 7.5% 3vw 12.5%;
    font-family: 'Playfair Display', serif;
    font-size: 175%;
    font-weight: 700;
    position:relative;
}
blockquote::before {
    font-family: Fontello;
    position: absolute;
    content: '\e811';
    font-size: 200%;
    left: -10%;
    top: -1vw;
    color: #cccccc;
}
button.slick-arrow {
    position: absolute;
    z-index: 2;
    background: #21272800;
    border: none;
    color: white;
    top: 50%;
    transform: translateY(-50%);
    left: 30px;
    font-size: 20px;
    display: block !important;
    cursor: pointer;
    transition: transform 0.15s ease;
}

button.slick-arrow.slick-next {
    left: initial;
    right: 30px;
}

button.slick-arrow:hover {
    transform: translateY(-50%) scale(1.35);
    transform-origin: center;
}
button.slick-arrow:focus {
    outline-color: #00a1b5;
}


h1 a, h2 a, h4 a {
    color: inherit;
    text-decoration: none;
}

.service-feature {
    text-decoration: none;
}

#blog-nav li.selected {
    background: #d8d8d8;
}

#blog-nav li.selected a {
    color: #7d7d7d;
}

#blog-nav li:hover {
    background: #00a1b5;
}

#blog-nav li:hover a {
    color: white;
}

#blog-nav li {
    transition: 0.35s ease;
}






#cursor::after {
    content: "";
    display: block;
    float: none;
    clear: both;
}
h2+ .btn {
    margin: 20px 0 0;
}
.pad-box > .pad{
    padding:0;
}

/*-- responsive --*/
@media only screen and (max-width:1200px){

    .two-thirds .certifications{
        flex-wrap:wrap;
    }
    blockquote::before {
        font-size: 180%;
        left: -12%;
    }
}
@media only screen and (max-width:1100px){
    .experienced-team.gutter .two-thirds{
        width:calc(60% - 2.5vw);
    }
     .experienced-team.gutter .third{
        width:calc(40% - 2.5vw);
     }
     .intro .slider .img-wrap {
        margin: 14.0625vw 10vw 7.25vw auto;
    }

}
@media only screen and (max-width:1024px){
    .intro h1 {
        font-size: 4.65rem;
    }
    #main a {
        font-size: 1.056rem;
    }
    .service-cards h1{
        font-size:2rem;
    }
    .service-cards h4{
        font-size: 0.75rem;
        letter-spacing: 2px;
    }
    .service-cards h4::before,
    .service-cards h4::after{
        font-size:1rem;
        margin: 0 5px 0 0;
    }
    .service-cards h4::after{
        margin:0 0 0 5px;
    }
    .lined-list li{
        font-size:1.025rem;
    }
    .service-cards p{
        font-size: 1rem;
    }
    header .logo {
        width: 22.85vw;
    }
    #sub a {
        font-size: 1rem;
    }

    #main a {
        font-size: 1.65rem;
        letter-spacing: 1px;
    }
    #main li {
        margin: 0 0 0 35px;
    }
    .bg-img.offset {
         top: 15vw;
    }
    #cursor {
        height: 95px;
        margin: 8px 0 0 0;
    }
    .intro .slider .img-wrap {
        width: 75vw;
        margin: 15.25vw 8vw 7.25vw auto;
    }
}
@media only screen and (max-width:980px){
    #blog-nav ul {
        justify-content: flex-end;
    }

    .experienced-team.gutter .two-thirds,
    .experienced-team.gutter .third,
    #contact .flex-wrap .half,
    #contact .flex-wrap .full{
        width:100%;
        margin:0 0 4vw;
    }
   #contact .flex-wrap.gutter{
        margin:0;
   }
   blockquote::before {
        font-size: 160%;
        left: -13%;
    }

    .flex-wrap.gutter.list-view .third,
    .flex-wrap.gutter.list-view .one-third{
        width: calc(50% - 3vw);
    }
}
@media only screen and (max-width:850px){
	body.nav-active{
	    overflow: hidden;
        height:100vh;
	}
    .service-cards .third {
        width: 100%;
	    margin: 0 auto 5vw;
	    max-width: 650px;
    }
    .service-cards a.btn {
	    margin: 0 0 20px;
	}
	.service-cards .lined-list {
	    margin: 10px auto 30px;
	    max-width: 350px;
	}
    .list-view.pr-0{
        padding:5vw 5vw;
    }
    .gutter.list-view .third,
    .gutter.list-view .one-third{
        width: calc(50% - 1.5vw);
        margin:0 0 3vw;
    }
    .gutter.list-view .third.bg-img,
    .gutter.list-view .one-third.bg-img{
        margin:0;
        width:100%;
        min-height:350px;
    }
    .callout .pad-box {
        margin: 5vw 0;
    }
   .burger{
        display:block;
    }
    nav[role="menu"] {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        z-index: 999;

        pointer-events: none;
        overflow-y: scroll;
    }
    #nav-wrap{
    	display: flex;
        flex-direction: row-reverse;
        justify-content: center;
        width:100%;
        min-height: 100vh;
       /* height:100vh;
        overflow-y:scroll;*/
    }
    .nav-active nav[role="menu"]{
        pointer-events: auto;
    }
    nav[role="menu"]  ul {
        padding: 20vw 10vw;
        text-align: left;
        width: 50%;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        -webkit-transform: scaleY(0);
        -moz-transform: scaleY(0);
        -ms-transform: scaleY(0);
        transform: scaleY(0);
        transition: 0.35s cubic-bezier(1, 0, 0, 1);
    }
    #main a {
        font-size: 2.75rem;
    }

    #main li {
        margin: 0 0 10px;
    }

    #sub a {
        font-size: 1.65rem;
        letter-spacing: 6px;
    }
    #sub {
        background: #212729;
        margin: 0;
        transform-origin: top;
        flex-grow: 1;
    }

    #main {
        background: #1c2123;
        text-align: left;
        transform-origin: bottom;
        min-height: 500px;
    }

    .nav-active nav[role="menu"] ul {
        -webkit-transform: scaleY(1);
        -moz-transform: scaleY(1);
        -ms-transform: scaleY(1);
        transform: scaleY(1);
    }

    nav[role="menu"] ul li {
        opacity: 0;
        transition: 0.15s 0s ease;
    }

    .nav-active nav ul li {
        opacity: 1;
        transition: 0.35s 0.35s ease;
    }
    header {
        position: static;
    }

    header .logo, .burger {
        z-index: 9999;
        display: block;
    }
    nav[role="menu"] .text-wrap{
        display: flex;
        flex-direction: column;
        width: 50%;
        min-height: 500px;
    }

    nav[role="menu"] .text-wrap ul {
        width: 100%;
        padding: 20vw 10vw;
    }

    nav[role="menu"] .text-wrap .social {
        display: flex;
        background: #171b1d;
        padding: 10vw;
        flex-grow: 1;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        flex-direction: row;
    }

    nav[role="menu"] .text-wrap .social li a {
        font-size: 30px;
        color: #01d6e8;
    }
    nav[role="menu"] ul#sub {
        -webkit-transform: scaleX(0);
        -moz-transform: scaleX(0);
        -ms-transform: scaleX(0);
        transform: scaleX(0);
        transform-origin: left;
    }

    .nav-active nav[role="menu"] ul#sub {
        -webkit-transform: scaleX(1);
        -moz-transform: scaleX(1);
        -ms-transform: scaleX(1);
        transform: scaleX(1);
    }

    nav[role="menu"] .text-wrap .social {
        transform-origin: top;
    }

    #sub li, #main li {
        margin: 0 0 25px;
    }

    #main {
        text-align: center;
    }
    .experienced-team.gutter .two-thirds,
    .experienced-team.gutter .third{
        width:100%;
        margin:0 0 4vw;
    }
    footer{
        flex-wrap:wrap;
        justify-content:center;
        flex-direction:column;
        align-items:center;
        padding:4vw 2vw;
    }
    .copyright{
        margin: 30px 0 0;
        order:3;
    }
    footer .social{
        margin:30px 0 0;
    }
    footer .social a{
        font-size: 28px;
    }
    footer .social li {
        margin: 0 26px;
    }
    footer > a {
        margin: 0 0 30px;
    }
    footer > a:last-of-type{
            margin: 20px 0 20px;
    }
}
@media only screen and (max-width:768px){

    .intro h1 {
        font-size: 3.25rem;
    }
    #blog-nav li {
        padding: 10px 18px;
    }
    #blog-nav p {
        line-height: 15px;
    }
    header .logo {
        width: 25.85vw;
    }
    .blog-detail .float-wrap img {
        width: 55%;
    }
    #cursor {
        height: 62px;
        margin: 8px 0 0 0;
    }
    ul.slick-dots {
        padding: 0 0 0 30px;
    }
    .slick-dots li {
        margin: 0 0 16px;
    }
    .slick-dots button {
        width: 8px;
        height: 8px;
    }
    h2 {
        font-size: 1.35rem;
        line-height: 1.65;
    }
    .intro .slider .img-wrap {
        height: 68vw;
        width: 80vw;
        margin: 15.25vw 8vw 7.25vw auto;
    }

    .intro .text {
        left: 6vw;
        bottom: 17vw;
        right: 30vw;
    }

    ul.slick-dots {
        top: 45%;
        padding: 0 0 0 6vw;
    }
    footer .autodesk {
        margin: 20px 0 0 0;
    }
 }

@media only screen and (max-width:700px){
    #main li a {
        font-size: 2.25rem;
        line-height: 1.0;
    }

    #sub a {
        font-size: 1.25rem;
        letter-spacing: 6px;
    }

    nav[role="menu"] ul, nav[role="menu"] .text-wrap ul {
        padding: 30vw 10vw;
    }
}
@media only screen and (max-width:650px){
    #blog-nav p {
        position: static;
        padding: 10px 10px 5px;
        text-align: center;
        margin: 0;
    }

    #blog-nav ul {
        justify-content: center;
    }

    #blog-nav li {
        border: 1px solid #d8d8d8;
        margin: 5px 2.5px;
    }
    .half,
    .gutter .half{
        width:100%;
    }
    .half + .half,
    .gutter .half + .half{
        margin:40px 0 0;
    }
    .card .half + .half,
    .card.gutter .half + .half{
        margin:0px 0 0;
    }
    .flex-wrap.card{
        margin:0 0 40px;
    }
    .bg-img.half {
        min-height: 350px;
    }
     .gutter.list-view .third {
        border: 1px solid #d8d8d8;
    }

    .list-view .text-wrap p {
        display: none;
    }

    .list-view .text-wrap h2 {
        margin: 0 0 5px;
        font-size: 1.34rem;
    }

    .list-view .text-wrap h4 {
        font-size: 0.85rem;
        letter-spacing: 2px;
    }
    #blog-nav + section .flex-wrap.pad-t {
        padding: 0;
    }
    #blog-nav li {
        margin: 5px 2.5px 8px;
    }
    .bg-img.offset {
        top: 30vw;
    }
    header .logo {
        width: 32vw;
    }

    .gutter .third,
    .gutter .one-third,
    .gutter .two-thirds{
            width: 100%;
    }

    .icon-list li{
        margin:0 0 5vw;
    }
    .icon-list .gutter .third img{
        max-width:200px;
        margin:0 0 20px;
    }
    p.larger,
    .bg-light-grey.larger p {
        font-size: 1.025em;
        margin: 0 0 40px;
    }
    .certifications{
        flex-wrap:wrap;
    }
    .certifications li{
        width:calc(50% - 1vw);
        margin:0 0 2vw;
    }

    .two-thirds > .certifications li{
        width:100%;
        margin: 0 0 2vw;
    }
    .blog-detail .float-wrap {
        flex-wrap: wrap;
    }
    .blog-detail .float-wrap img {
        width: 110%;
    }
     .flex-wrap.gutter.list-view .third,
    .flex-wrap.gutter.list-view .one-third{
            width: calc(100% - 3vw);
             margin: 0 1.5vw 3vw;
    }



    .intro .slider .img-wrap {
        height: 95vw;
           width: 80vw;
    margin: 20vw 7vw 12vw auto;
    }

    .intro .text {
        left: 6vw;
        bottom: 30vw;
        right: 8vw;
    }

    ul.slick-dots {
        top: initial;
        padding: 0;
        flex-direction:row;
        display: flex !important;
        bottom: 4vw;
        left: 0;
        right: 0;
        margin: 0 auto;
        text-align: center;
        justify-content: center;
    }

    .slick-dots li, .slick-dots li:last-of-type {
        margin: 0 14px;
    }
    .intro h1 {
        font-size: 2.65rem;
    }

}


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

nav[role="menu"] .text-wrap{
    width:100%;
}
    #blog-nav ul {
       display:block;
        text-align: center;
    }

    #blog-nav li {
        border: 1px solid #d8d8d8;
        margin: 2.5px;
        display:block;
    }
    .gutter.list-view .third {
        margin: 0 0 5vw;
    }

    .flex-wrap.gutter.list-view {
        display: block;
    }

    .gutter.list-view .third,
    .gutter.list-view .one-third {
        width: 100%;
    }

    .list-view {
        padding: 5vw;
    }

    .pad-extra {
        padding: 5vw;
    }
    .page-wrap {
        padding: 0 2.5vw 0;
    }

    .pad-t {
        padding-top: 0;
    }
    h2 {
        font-size: 1.25rem;
    }

    h4, h5 {
        font-size: 0.85rem;
    }

    .service-cards h1 {
        font-size: 1.75rem;
    }
    .callout .pad-box{
        margin:10vw 0;
    }
    header .logo {
        width: 40vw;
    }
    nav .text-wrap{
        width:100%;
    }
    #nav-wrap{
        flex-direction: column-reverse;
        justify-content: flex-end;
        align-items: flex-start;
    }

    nav[role="menu"] ul, nav[role="menu"] .text-wrap ul {
        padding: 8vw;
    }

    #sub, nav[role="menu"] .text-wrap{
        flex-grow: 1;
    }

    #main {
        padding: 24vw 8vw 8vw;
        width: 100%;
        text-align: center;
        min-height: 360px;
    }
    nav[role="menu"] ul {
        -webkit-transform: scaleX(0);
        -moz-transform: scaleX(0);
        -ms-transform: scaleX(0);
        transform: scaleX(0);
    }
    .nav-active nav[role="menu"] ul{
        -webkit-transform: scaleX(1);
        -moz-transform: scaleX(1);
        -ms-transform: scaleX(1);
        transform: scaleX(1);
    }
    nav[role="menu"] ul#main{
        transform-origin:right;
    }

    nav[role="menu"] .text-wrap .social {
        background: #272d2f;
        transform-origin: bottom;
        -webkit-transform: scaleY(0);
        -moz-transform: scaleY(0);
        -ms-transform: scaleY(0);
        transform: scaleY(0);
    }

    .nav-active nav[role="menu"] .text-wrap .social {
        -webkit-transform: scaleY(1);
        -moz-transform: scaleY(1);
        -ms-transform: scaleY(1);
        transform: scaleY(1);
    }
     .flex-wrap.gutter.list-view a.third.bg-img,
    .flex-wrap.gutter.list-view a.one-third.bg-img {
        display: block;
        margin: 0 1.5vw 3vw;
    }
}
@media only screen and (max-width:400px){
    .certifications,
    .two-thirds .certifications{
        flex-direction:column;
    }
    .certifications li,
    .two-thirds .certifications li{
        width:100%;
        margin:0 0 2vw;
    }
}
