@charset "utf-8";
/* CSS Document */

/***************************

1. Plugin styles

*************************************************/



/* Slick Slider */
.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;
    overflow: hidden;

    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;
    overflow:hidden;
    position:relative;
}
.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: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}
.slick-prev,
.slick-next{
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 50%;
    display: block;
    width: 20px;
    height: 20px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    cursor: pointer;
    color: transparent;
    border: none;
    outline: none;
    background: transparent;
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus{
    color: transparent;
    outline: none;
    background: transparent;
}
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before{
    opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before{
    opacity: .25;
}

.slick-prev:before,
.slick-next:before{
    font-family: 'slick';
    font-size: 20px;
    line-height: 1;
    opacity: .75;
    color: white;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-prev{
    left: -25px;
}

.slick-prev:before{
    content: '←';
}

.slick-next{
    right: -25px;
}
.slick-next:before{
    content: '→';
}

/* Dots */
.slick-dotted.slick-slider{
    margin-bottom: 30px;
}

.slick-dots{
    position: absolute;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
    z-index: 999;
    bottom: 50px;
}
.slick-dots li{
    position: relative;
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 0 10px;
    padding: 0;
    cursor: pointer;
}
.slick-dots li button{
    font-size: 0;
    line-height: 0;
    display: block;
    width: 10px;
    height: 10px;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
    text-align: center;
    padding: 0;
}
.slick-dots li button:hover,
.slick-dots li button:focus{
    outline: none;
}

.slick-dots li button:before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 10px;
    height: 10px;
    text-align: center;
    background: #909090;
    border-radius: 50%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0 auto;
    display: block;
}
.slick-dots li.slick-active button:before{
    background: #1076bc;
}

.slick-slider h1 {
    opacity: 0;
    -webkit-transition: 0.75s 0.85s ease-in-out;
    -moz-transition: 0.75s 0.85s ease-in-out;
    -ms-transition: 0.75s 0.85s ease-in-out;
    transition: 0.75s 0.85s ease-in-out;
}

.slick-slider .slick-active h1 {
    opacity: 1;
}

.dots-box {
    position: absolute;
    z-index: 3;
    left: 0;
    right: 0;
    bottom: 20px;
}







/***************************

2. Global

*************************************************/
html,
body{
    overflow-x:hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
html {
    line-height:1.62;
    font-family:"PT Sans", sans-serif;
    background-color:white;
    color:black;
    -webkit-box-sizing:border-box;
    -moz-box-sizing:border-box;
    -ms-box-sizing:border-box;
    box-sizing:border-box;
    font-size: calc(15px + (18 - 15) * ((100vw - 320px) / (1600 - 320)));
}
img{
    display:block;
    width:100%; 
    max-width:none;
}
*{
    background-size:cover;
    background-position:50% 50%;
    -webkit-box-sizing:border-box;
    -moz-box-sizing:border-box;
    -ms-box-sizing:border-box;
    box-sizing:border-box;
}

h1{
    font-weight:normal;
    font-family:'Cardo', serif;
    line-height: 1.26;
    font-size: calc(33px + (72 - 33) * ((100vw - 320px) / (1600 - 320)));
}
.hero h1,
.cta h1{
    text-align:center;
    color:white;
    margin:0;
}
.cta h1{
    font-size: calc(28px + (42 - 28) * ((100vw - 320px) / (1600 - 320)));
}
h2{
    font-weight:normal;
    font-family:'Cardo', serif;
    font-size: calc(21px + (27 - 21) * ((100vw - 320px) / (1600 - 320)));
}
p.serif,
address,
.attorney-detail .card .email,
address a,
.contact-item .email,
.email{
    font-weight:normal;
    font-family:'Cardo', serif;
    font-style:normal;
    text-decoration:none;
    color:#1582cd;
    font-size: calc(18px + (24 - 18) * ((100vw - 320px) / (1600 - 320)));
}

h3{
    font-weight:700;
    text-transform:uppercase;
    font-family:'Montserrat', sans-serif;
    letter-spacing:1px;
    font-size: calc(16px + (18 - 16) * ((100vw - 320px) / (1600 - 320)));
}

.blog h3,
.publications h3 {
 	margin-top: 25px;

}
h4{
    font-weight:700;
    text-transform:uppercase;
    font-family:'Montserrat', sans-serif;
    letter-spacing:1px;
    font-size: calc(14px + (15 - 14) * ((100vw - 320px) / (1600 - 320)));
}
h5{
    font-weight:500;
    text-transform:uppercase;
    font-family:'Montserrat', sans-serif;
    font-size: calc(12px + (13 - 12) * ((100vw - 320px) / (1600 - 320)));
}
h7 {
    text-transform: capitalize;
    font-style: italic;
    font-family: "Montserrat";
    font-weight: 500;
    letter-spacing: 0.5px;
    color: #8e8e8e;
    margin: 0 0 0;
    display: block;
    font-size: calc(12px + (14 - 12) * ((100vw - 320px) / (1600 - 320)));
}
h4, h3, h5 {
    margin-top: 0;
}

.contact-item a,
h3 a{
    text-decoration:none;
    color:black;
}
a{
    text-decoration:none;
    color:#1b75bc;
}
a.color-black{
    color:black;
}
.btn {
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 24px 32px;
    text-align: center;
    color: black;
    text-decoration: none;
    font-size: 14px;
    font-family: "Montserrat", sans-serif;
    border: 3px solid #dadada;
    margin:20px 0 0 0;
    display: inline-block;
    background-color:transparent;
    -webkit-transition:0.33s ease;
    -moz-transition:0.33s ease;
    -ms-transition:0.33s ease;
    transition:0.33s ease;
}
.btn:hover{
    background-color:#dadada;
}
.btn.black{
    outline:none;
    color:white;
    background-color:#31373d;
    border-color:#31373d;
}
.btn.black:hover {
    background-color: #0e1113;
    border-color: #0e1113;
}
.btn.color-white{
    color:white;
    border-color:#3b4248;
}
.btn.color-white:hover{
    background-color:#3b4248;
}
.btn.grey {
    background: #e1e1e1;
    border-color: #e1e1e1;
}
.btn.grey:hover {
    background: #dadada;
    border-color: #dadada;
}
.btn.i-right {padding: 24px 62px 24px 32px;position: relative;}

.btn.i-right .demo-icon {
    right: 32px;
}

.btn .demo-icon {
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 24px;
    color: #2495e3;
    position: absolute;
}

.btn.i-left .demo-icon {
    left: 32px;
}
.btn.interests {
    margin: 0px 0 40px;
}
.btn.i-left {
    padding: 24px 32px 24px 62px;
    position: relative;
}
.pad-box{
    padding: 5vw 6vw;
    position: relative;
    z-index: 2;
}
.pad-box-sm {
    padding: 2.4vw 3vw 3.6vw;
    position: relative;
    z-index: 2;
}
.pad {
    padding: 2.5vw 3vw;
}
.demo-icon, .demo-icon:before {
    margin: 0;
    line-height: 100%;
}
.cta{
    position:relative;
    overflow:hidden;
    text-align:center;
}
.cta::before,
.hero::before,
.hero.slides .slick-slide::before{
    content:'';
    width:100%;
    height:100%;
    top:0;
    left:0;
    z-index:0;
    display:block;
    position:absolute;
    background: rgba(0, 0, 0, 0.45);
}
.hero::after,
.hero.slides .slick-slide::after{
    content:'';
    width:100%;
    height:100%;
    top:0;
    left:0;
    z-index:0;
    display:block;
    position:absolute;
    background: rgba(0,0,0,0.66);
    background: -moz-linear-gradient(top, rgba(0,0,0,0.66) 0%, rgba(0,0,0,0) 33%, rgba(0,0,0,0) 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(0,0,0,0.66)), color-stop(33%, rgba(0,0,0,0)), color-stop(100%, rgba(0,0,0,0)));
    background: -webkit-linear-gradient(top, rgba(0,0,0,0.66) 0%, rgba(0,0,0,0) 33%, rgba(0,0,0,0) 100%);
    background: -o-linear-gradient(top, rgba(0,0,0,0.66) 0%, rgba(0,0,0,0) 33%, rgba(0,0,0,0) 100%);
    background: -ms-linear-gradient(top, rgba(0,0,0,0.66) 0%, rgba(0,0,0,0) 33%, rgba(0,0,0,0) 100%);
    background: linear-gradient(to bottom, rgba(0,0,0,0.66) 0%, rgba(0,0,0,0) 33%, rgba(0,0,0,0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#000000', GradientType=0 );
}

.hero.slides .slick-slide::before,
.hero.slides .slick-slide::after{
    z-index: 1;
}
.hero.slides::before,
.hero.slides::after{
    display:none;
}
.cat_textbox,
.cat_listbox,
textarea.cat_listbox,
input.cat_textbox,
input[type="email"],
input[type="text"],
select,
textarea{
    display:block;
    border: 3px solid #dadada;
    padding: 15px 24px;
    font-family: "Cardo", serif;
    text-align: left;
    outline:none;
    border-radius:0;
    width: 100%;
    margin:0 0 10px;
    font-size: calc(18px + (24 - 18) * ((100vw - 320px) / (1600 - 320)));
}
.cat_listbox,
textarea.cat_listbox,
textarea{
    margin:0 0 20px;
}
input[type="submit"], button[type="submit"] {
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    color: black;
    text-decoration: none;
    font-size: 14px;
    font-family: "Montserrat", sans-serif;
    border: 3px solid #dadada;
    margin: 0;
    padding: 24px 32px 24px 32px;
    color: white;
    background-color: #31373d;
    border: none;
    cursor:pointer;
    -webkit-transition:0.33s ease;
    -moz-transition:0.33s ease;
    -ms-transition:0.33s ease;
    transition:0.33s ease;
}
input[type="submit"]:hover,
button[type="submit"]:hover {
    background-color:#1c2023;
    border-color:#1c2023;
}
input[type="submit"].grey {
    background-color: #e1e1e1;
    color: black;
}
input[type="submit"].grey:hover{
    background-color: #dadada;
}
label.hide {
    line-height: 0;
    text-indent: -999999999px;
    display: block;
    margin: 0;
    padding: 0;
    width: 1px;
    position: relative;
    z-index: -1;
}
input[type="checkbox"],
select{
    -webkit-appearance:none;
}
.checkbox {
    position: relative;
    padding: 0 0 0 40px;
}

.checkbox label {
    font-family: "Cardo";
    font-size: calc(16px + (20 - 16) * ((100vw - 320px) / (1600 - 320)));
}
.dropdown {
    position: relative;
}

.dropdown select {
    padding: 15px 52px 15px 32px;
}

.dropdown i.demo-icon {
    position: absolute;
    z-index: 1;
    width: 20px;
    height: 20px;
    right: 32px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    -ms-pointer-events: none;
    pointer-events: none;
}
.checkbox input[type="checkbox"]{
    overflow:hidden;
    margin:0;
    padding:0;
    border:0;
    outline:0;
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    opacity:0;
    width: 30px;
    height: 30px;
    position: absolute;
    left: 0;
}

.checkbox input[type="checkbox"] + label::before{
    content:"";
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    width: 30px;
    height: 30px;
    background: #dadada;
    cursor: pointer;
    text-align: center;
    vertical-align: top;
    border-radius: 2px;
}
.checkbox input[type="checkbox"] + label::after{
    content:"\e803";
    font-family:"Fontello";
    font-size:30px;
    position: absolute;
    left: 4.5px;
    top: 0;
    display: block;
    color: #2494e3;
    font-size: 20px;
    line-height: 30px;
    opacity:0;
    -webkit-transition:0.333s ease;
    -moz-transition:0.333s ease;
    -ms-transition:0.333s ease;
    transition:0.333s ease;
    cursor: pointer;
}
.checkbox input[type="checkbox"]:checked + label::after{
    opacity:1;
}
.btn-wrap{
    position:relative;
}
.btn-wrap.i-left input[type="submit"]{
    padding: 24px 32px 24px 62px;
}
.btn-wrap.i-right input[type="submit"]{
    padding: 24px 62px 24px 32px;
}
.btn-wrap .demo-icon{
    font-size: 28px;
    color: #2495e3;
    display:block;
    top:50%;
    position:absolute;
    -webkit-transform:translateY(-50%);
    -moz-transform:translateY(-50%);
    -ms-transform:translateY(-50%);
    transform:translateY(-50%);
}
.btn-wrap.i-right .demo-icon{
    right:32px;
}
.btn-wrap.i-left .demo-icon{
    left:32px;
}
.max-900 {
    max-width: 900px;
    margin: 0 auto;
}
.max-1100{
    max-width:1100px;
    margin:0 auto;
}
blockquote {
    max-width: 1100px;
    margin: 40px auto;
    display: block;
    text-align: left;
    font-family: "Cardo", serif;
    font-size: calc(26px + (35 - 26) * ((100vw - 320px) / (1600 - 320)));
}
.clearfix{
    display:block;
    float:none;
    clear:both;
    line-height:0;
    height:0;
}
.cta > .pad-box {
    margin: 3.33% 0;
}


.bulleted-list {
    margin: 0 0 0 0;
    padding: 0;
    list-style: none;
}

.bulleted-list li::before {
    content: "";
    display: block;
    width: 6px;
    height: 6px;
    position: absolute;
    left: 0px;
    border: 2px solid #1b75bc;
    border-radius: 50%;
    top: 10px;
}

.bulleted-list li {
    padding: 0 0 0 15px;
    position: relative;
    color: #6f6f6f;
    font-size: calc(12px + (15 - 12) * ((100vw - 320px) / (1600 - 320)));
}



/* --- PAGINATION --- */
    #webapp25806pagination {
        display: none;
    }


/*-- header --*/
header,
.static-nav{
    width: 100%;
    position: absolute;
    padding: 10px 20px;
    top: 0;
    left: 0;
    z-index: 3;
}

header .logo,
.static-nav .logo{
    z-index: 1;
    display: block;
    width: 70px;
    position: absolute;
}

nav ul {
    display: flex;
    list-style: none;
    margin: 20px 0 0;
    padding: 0;
    text-align: center;
    justify-content: center;
    align-items: center;
    width: auto;
}

header nav {
    width: 100%;
}

header nav li {
    margin: 0 25px;
}

header nav li a {
    text-decoration: none;
    text-transform: uppercase;
    color: white;
    font-family: "Montserrat";
    font-weight: 600;
    display: block;
    font-size: calc(12px + (15 - 12) * ((100vw - 320px) / (1600 - 320)));
letter-spacing: 1.5px;
}




/*-- footer --*/
footer .pad-box {
    background-color: #1a1e22;
    color: white;
}
footer a {
    color: white;
    text-decoration: none;
    display: block;
}
footer .locations {
    background: #f2f2f2;
    display: flex;
    flex-direction: revert;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 30px;
    margin:0;
    list-style:none;
}

footer .locations a {
    color: black;
    margin: 0 2vw;
    display: inline-block;
    position: relative;
    font-family: "Lato";
    font-size: 120%;
    border-bottom: 2px solid #1b75bc;
    line-height: 1.25;
}
@media only screen and (max-width:500px){
    footer .locations {
        display:block;
        text-align:center;

    }
    footer .locations a {
        margin:0 0 20px;
    }
}
footer .pad-box.text-center {
    background-color: #0f1113;
    color: white;
    padding-top: 20px;
    padding-bottom: 20px;
}

footer .logo {
    width: 100px;
    margin: 0 50px 0 0;
}

footer .flex.three.gutter {
    align-items: center;
}
footer .contact{
    display: table;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: flex-start;
    justify-content:flex-start;
}
footer .contact a.tel {
    font-family: "Montserrat", sans-serif;
    font-weight: 300;
    font-size: calc(18px + (24 - 18) * ((100vw - 320px) / (1600 - 320)));
}
footer .contact a {
    font-family: "Cardo", serif;
    font-size: calc(16px + (20 - 16) * ((100vw - 320px) / (1600 - 320)));
}
footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
footer .social ul {
    text-align: center;
    display: table;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: center;
}
footer .social ul li {margin: 0 10px;}

footer .social ul li a {
    color: #1b75bc;
}
footer .social span {
    display: block;
    width: 1px;
    height: 1px;
    text-indent: -9999999px;
}
footer .social .demo-icon {
    font-size: 35px;
}
footer .links a {
    text-transform: uppercase;
    font-family: "Lato";
    letter-spacing: 2px;
    text-align: right;
    margin: 0 0 10px;
    font-size: 14px;
    font-weight: 600;
}
p.copyright{
    font-size:12px;
    line-height:18px;
    font-family:'Montserrat';
}
footer .flex.gutter .two-thirds {
    display: table;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

footer .flex.gutter .two-thirds > * {
    width: calc(50% - 3vw);
}
.social svg {
    width: 35px;
    margin: 0 5px;
    height: auto;
    fill: #1b75bc;
}



/***************************

3. Grid

*************************************************/
.flex{
    width:100%;
    display: table;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
}
.flex > *{
    position:relative;
    overflow:hidden;
}

.flex.gutter {
    justify-content: space-between;
}
.grow {
    flex-grow: 2;
}
.gutter-right{
    margin: 0 10px 0 0;
}
.gutter-left{
    margin: 0 0px 0 20px;
}
.flex.two > * {
    width: 50%;
}
.flex.two.gutter > * {
    width: calc(50% - 16px);
}
.flex.three > * {
    width: 33.333%;
}
.flex.three.gutter > * {
    width: calc(33.333% - 16px);
}

.flex.four > * {
    width: 25%;
}
.flex.four.gutter > * {
    width: calc(25% - 16px);
}
.flex.six > * {
    width: 16.666%;
}
.flex.six.gutter > * {
    width: calc(16.666% - 16px);
}

.third{
    width:33.333%;
}
.two-thirds{
    width:66.666%;
}


.gutter .third{
    width: calc(33.333% - 3vw);
}
.gutter .two-thirds{
    width: calc(66.666% - 3vw);
}




/***************************

4. Custom

*************************************************/





/*-- hero --*/
.hero{
    height:100vh;
    overflow: hidden;
    position: relative;
}
.hero .slick-slider {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: 0;
    padding: 0;
}
.hero .slick-slider {
    position: absolute;
    top: 0;
    left: 0;
    margin: 0;
    padding: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
}
.slick-list,
.slick-track {
    height: 100%;
    width: 100%;
}
.full-logo {
    max-width: 30vw;
    margin: 12% auto 0;
}
.hero .pad-box {
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
.hero.sub{
    height:auto;
}
.hero.sub .pad-box{
    margin:10%;
}
.hero.sub .pad-box{
    top: 0%;
    -webkit-transform: translateY(0%);
    -moz-transform: translateY(0%);
    -ms-transform: translateY(0%);
    transform: translateY(0%);
}
.hero.sub .pad-box {
    margin: 6% 0 3%;
}
.hero.sub .pad-box.pub {
    margin: 6% 0 0%;
}
.hero.slides > .pad-box:first-of-type {
    top: initial;
    bottom: 22%;
    -webkit-transform: translateY(-0%);
    -moz-transform: translateY(-0%);
    -ms-transform: translateY(-0%);
    transform: translateY(-0%);
    position: absolute;
    left: 0;
    right: 0;
}
span.logo-ghost,
span.logo-ghost img.full-logo {
    display: block;
    opacity:0;
    visibility: hidden;
    speak: none;
}


form.newsletter input[type="email"] {
    width: calc(100% - 160px);
    margin: 0;
}
form.newsletter .btn-wrap.i-right {
    margin: 0 0 0 21px;
}

/*-- areas of practice --*/
.border-left {
    border-left: 1px solid #a6b9cc;
}

.border-right {
    border-right: 1px solid #a6b9cc;
}

.areas-list a {
    display: block;
    padding: 12px 1.5em;
    font-weight: normal;
    font-family: 'Cardo', serif;
    -webkit-transition:0.33s ease;
    -moz-transition:0.33s ease;
    -ms-transition:0.33s ease;
    transition:0.33s ease;
    font-size: calc(21px + (27 - 21) * ((100vw - 320px) / (1600 - 320)));
}
.areas-list a:hover{
    background:#f2f2f2;
    padding: 12px 1.5em 12px 2.65em;
}
.areas-list a::before{
    content: "\e800";
    font-family: "Fontello";
    font-size: 28px;
    -webkit-transform: scaleX(0);
    -moz-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    opacity: 0;
    -webkit-transition:0.33s ease;
    -moz-transition:0.33s ease;
    -ms-transition:0.33s ease;
    transition:0.33s ease;
    width: 28px;
    height: 42px;
    color: #2495e3;
    display: block;
    position: absolute;
    left: 1em;
}
.areas-list a:hover:before{
    opacity: 1;
    -webkit-transform: scaleX(1);
    -moz-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
    left: 1.5em;
}
.alphabet-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
}

.alphabet-list li a {
    display: block;
    font-family: "Montserrat";
    font-weight: 600;
    text-decoration: none;
    color: #2495e3;
    font-size: calc(12px + (15 - 12) * ((100vw - 320px) / (1600 - 320)));
}

.alphabet-list li a.disabled{
    color:#acacac;
    cursor:default;
}

.resources-list {
    margin: 0;
    padding: 0;
    list-style: none;
}




/*-- attorneys list --*/

.attorney-list a {
    display: block;
    position: relative;
    color: white;
}

.attorney-list .pad {
    position: absolute;
    bottom: 0;
    z-index: 1;
    padding: 1em;
}

.attorney-list h5 {
    margin: 0;
    padding: 0;
    font-weight: 700;
}

.attorney-list h2 {
    margin: 0;
    padding: 0;
    line-height: 120%;
    margin-bottom: 3px;
}

.attorney-list a::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0);
    background: -moz-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 57%, rgba(0,0,0,0.6) 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(0,0,0,0)), color-stop(57%, rgba(0,0,0,0)), color-stop(100%, rgba(0,0,0,0.6)));
    background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 57%, rgba(0,0,0,0.6) 100%);
    background: -o-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 57%, rgba(0,0,0,0.6) 100%);
    background: -ms-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 57%, rgba(0,0,0,0.6) 100%);
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 57%, rgba(0,0,0,0.6) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#000000', GradientType=0 );
    z-index: 0;
    position: absolute;
    top: 0;
    left: 0;
}
.attorney-list {
    margin: 0 auto;
    padding: 0;
    list-style: none;
}

.attorney-list.flex.gutter > * {
    width: calc(25% - 6px);
    margin: 0 0 6px;
}
.attorney-search .dropdown {
    width: calc(33.333% - 8px);
    margin: 0 0 20px;
}

.attorney-search.flex {
    align-items: center;
    margin: 0 0 40px;
}

.attorney-search input[type="text"]{
    width: 50%;
    background: #dadada;
    color: black;
}





/*-- attorney bio --*/
figure{
    display:block;
    margin:0;
    padding:0;
}




/*-- pagination --*/
ul.pagination li {
    text-transform: uppercase;
    padding: 13px 26px;
    text-align: center;
    color: black;
    text-decoration: none;
    font-size: 18px;
    font-family: "Montserrat", sans-serif;
    border: 1px solid #dadada;
    margin: 20px 0 0 0;
    background-color: transparent;
    -webkit-transition: 0.33s ease;
    -moz-transition: 0.33s ease;
    -ms-transition: 0.33s ease;
    transition: 0.33s ease;
    border-right: none;
    cursor:pointer;
}
ul.pagination li.pag-current{
    color:black;
    cursor:initial;
}
ul.pagination {
    margin: 0;
    padding: 0;
    list-style: none;
    width: 100%;
    display: table;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;

}

ul.pagination li.pag-next {
    border-right: 1px solid #dadada;
}

ul.pagination li.pag-next, ul.pagination li.pag-prev {
    font-size: 14px;
    line-height: 29px;
}

ul.pagination li.pag-current,
ul.pagination li.pag-current:hover{
    color:black;
    background: #f2f2f2;
}
ul.pagination li a{
    color:#1b75bc;
    cursor:pointer;
    -webkit-transition: 0.33s ease;
    -moz-transition: 0.33s ease;
    -ms-transition: 0.33s ease;
    transition: 0.33s ease;
}
ul.pagination li:hover a{
    color:white;
}
ul.pagination li:hover{
    color:white;
    background-color:#1b75bc;
}




/*-- detail nav --*/

.secondary-nav.detail a {
        padding: 25px 35px;
    display: inline-block;
    color: black;
    position: relative;
    text-transform: uppercase;
    font-size: 14px;
    font-family: "Montserrat", sans-serif;
    float: left;
}
.secondary-nav.detail a:first-of-type::after {
    content: "";
    display: block;
    width: 3px;
    height: 45px;
    background: #dcdcdc;
    position: absolute;
    top: 14px;
    right: -2px;
}

.secondary-nav.detail i.demo-icon.icon-left {
    margin: 0 14px 0 0;
    font-size: 18px;
    padding: 0;
    line-height: 00;
    height: auto;
    width: auto;
}
.secondary-nav.detail i.demo-icon.icon-grid1,
.secondary-nav.detail i.demo-icon.icon-grid2,
.secondary-nav.detail i.demo-icon.icon-grid3{
    margin: 0 0 0 13px;
    font-size: 16px;
    line-height: 0px;
}

.secondary-nav.detail .text-center {
      display: block;
    margin: 0 auto;
    text-align: center;
    width: 314px;
}

nav.secondary-nav.detail {
    text-align: center;
}

.detail-nav{
	position: relative;
    z-index: 3;
    clear: both;
    width: 100%;
    background-color: #f2f2f2;

}
.detail-nav .text-center {
    display: block;
    margin: 0 auto;
    text-align: center;
    width: 314px;
}
.detail-nav a {
    padding: 25px 35px;
    display: inline-block;
    color: black;
    position: relative;
    text-transform: uppercase;
    font-size: 14px;
    font-family: "Montserrat", sans-serif;
    float: left;
}
.detail-nav i.demo-icon.icon-left {
    margin: 0 14px 0 0;
    font-size: 18px;
    padding: 0;
    line-height: 00;
    height: auto;
    width: auto;
}
.detail-nav a:first-of-type::after {
    content: "";
    display: block;
    width: 3px;
    height: 45px;
    background: #dcdcdc;
    position: absolute;
    top: 14px;
    right: -2px;
}
.detail-nav i.demo-icon.icon-grid1,
.detail-nav i.demo-icon.icon-grid2,
.detail-nav i.demo-icon.icon-grid3 {
    margin: 0 0 0 13px;
    font-size: 16px;
    line-height: 0px;
}



/*!
Accessible Accordion Demo by Chris Yaxley
Copyright (c) 2018 by Chris Yaxley
(https://codepen.io/chrisyaxley/pen/JsKhb)
*/
.attorney-detail .card {
    margin: -10vw 0 60px 0;
}
.bio-body .main.pad {
    padding-top: 0;
}
.attorney-detail .hero {
    height: 30vw;
    background-position: 50% 0%;
}
.bg-img{
    background-position:50% 50%;
    background-size:cover;
}
.bio-body aside,
.attorney-detail .card .bg-img{
    width: 33.333%;
}
.bio-body .main,
.attorney-detail .card .pad{
    width: 66.666%;
    min-height: 490px;
}
.panel-title{
    display: block;
    margin: 0;
    outline:none;
    padding:0;
    position:relative;
    cursor:pointer;
}
.accordion article{
    border-top: 1px solid #e1e1e1;
    padding: 15px 12px 15px 12px;
}
.accordion article:last-of-type {
    border-bottom: 1px solid #e1e1e1;
}
.panel-title h4{
    color: #0c89df;
    margin: 0;
    outline:none;
}
.panel-body{
    margin:0px 0 0;
}
.accordion #panel1 ul:first-child{
    margin-bottom:0px;
}
.accordion #panel1 ul:last-child{
    margin-top:0px;
}

.js .panel-body{
    display: none;
}
.attorney-detail .card h1 {
    margin: 0 0 0;
}
.attorney-detail .card h4 {
    margin: 0 0 20px;
}
.attorney-detail .card a,
.attorney-detail .bio-body a{
    text-decoration: none;
    color: black;
}
.attorney-detail h3 em,
h3 em{
    font-family:"Cardo";
    text-transform:lowercase;
    font-weight:300;
    letter-spacing:0;
}
.card h1 {
    font-size: calc(28px + (42 - 28) * ((100vw - 320px) / (1600 - 320)));
}
.card .btn-box {
    margin: 20px -10px 30px;
}
.btn-box .btn {
    margin: 0 10px 10px;
}
.card .print-btn, .card .tels {
    text-align: right;
}
.card h3 {
    margin: 0;
}
.card h3 a + em,
.card h3 em + a,
h3 a + em,
h3 em + a{
    margin:0 0 0 5px;
}
.attorney-detail address,
address,
address a,
.email{
    line-height: 1.42;
    font-size: calc(16px + (20 - 16) * ((100vw - 320px) / (1600 - 320)));
}
.attorney-detail .card .email{
    margin:20px 0;
    display:block;
}
.accordion .panel-title::before {
    content:'';
    position: absolute;
    background: #0c89df;
    display: block;
    width: 2px;
    height: 12px;
    right: 5px;
    top: 50%;
    opacity:1;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: 0.33s ease;
    -moz-transition: 0.33s ease;
    -ms-transition: 0.33s ease;
    transition: 0.33s ease;
}
.accordion .open.panel-title::before {
    -webkit-transform: translateY(-50%) rotate(90deg);
    -moz-transform: translateY(-50%) rotate(90deg);
    -ms-transform: translateY(-50%) rotate(90deg);
    transform: translateY(-50%) rotate(90deg);
}
.accordion .panel-title::after {
    content:'';
    position: absolute;
    background: #0c89df;
    display: block;
    width: 12px;
    height: 2px;
    right: 0;
    top: 50%;
    opacity:1;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: 0.33s ease;
    -moz-transition: 0.33s ease;
    -ms-transition: 0.33s ease;
    transition: 0.33s ease;
}
.accordion .open.panel-title::after {
    opacity:0;
}




/*--- modal styles --*/

.vh {
    position: absolute;
    overflow: hidden;
    clip: rect(0 0 0 0);
    margin: -1px;
    padding: 0;
    width: 1px;
    height: 1px;
    border: 0;
}

/* Page wrapper */
.demo {
    width: 94%;
    max-width: 640px;
    margin: 64px auto;
    text-align: center;
}

/* Icons */
.icon {
    display: inline-block;
    width: 16px;
    height: 16px;
    vertical-align: middle;
    fill: currentcolor;
}

/**
* Modal
* 1. Ensure this sits above everything when visible
*/

.modal {
    position: absolute;
    z-index: 10000; /* 1 */
    top: 0;
    left: 0;
    visibility: hidden;
    width: 100%;
    height: 100%;
}

.modal.is-visible {
    visibility: visible;
}

/* Prevent scrolling on <html> when `.modal` is visible */
.no-scroll {
    overflow: hidden;
}

/* Modal Overlay & Container */
.modal-overlay,
.modal-container {
    position: absolute;
    z-index: 9000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s ease 0.3s, opacity 0.3s ease;
}



.modal.is-visible .modal-overlay,
.modal.is-visible .modal-container {
    opacity: 1;
    visibility: visible;
    transition-delay: 0s;
}

/* 1. Allow scrolling on `.modal-container` in case `.modal-wrapper` is taller than the viewport */
.modal.is-visible .modal-container {
    overflow: auto; /* 1 */
    -webkit-overflow-scrolling: touch; /* 1 */
}

/* Modal Wrapper */
.modal-wrapper {
    position: absolute;
    z-index: 10000;
    width: 100%;
    height: 100%;
    background-color: #f2f2f2;
}


.modal-transition {
    transition: visibility 0.3s 0.12s, opacity 0.3s 0.12s, transform 0.3s 0.12s;
    transform: translateY(-10%);
    opacity: 0;
}

.modal.is-visible .modal-transition {
    transform: translateY(0);
    opacity: 1;
}



.modal-header {
    position: relative;
    background-color: #f2f2f2;
}


.modal-close {
    position: absolute;
    top: 0;
    right: 0;
    padding:0;
    color: #aaa;
    background: none;
    border: 0;
}

.modal-close:hover {
    color: #777;
}


.modal-content > *:first-child {
    margin-top: 0;
}

.modal-content > *:last-child {
    margin-bottom: 0;
}
.modal .checkbox {
    margin: 0 0 15px;
}










/*-- client resources --*/
.resources-list.flex.two.gutter > * {
    width: calc(50% - 3vw);
    margin: 0 0 60px;
}

.resources-list h2 {
    line-height: 1.25;
    margin: 0 0 5px;
    font-size: calc(22px + (36 - 22) * ((100vw - 320px) / (1600 - 320)));
padding: 10px 0 0 0;
}


.resources-list h4 {
    margin: 0 0 10px;
}


/*
.resources-list p {
line-height: 1.40;
margin: 0 0 5px;
font-size: calc(12px + (16 - 11) * ((100vw - 320px) / (1600 - 320)));
}
*/

.resources-list.events li {
    border-bottom: 1px solid #e0e0e0;
    margin: 0 0 20px;
    padding: 0 0 30px;
    -webkit-transition: 0.33s ease;
    -moz-transition: 0.33s ease;
    -ms-transition: 0.33s ease;
    transition: 0.33s ease;
}

.resources-list.events li:hover {
    background-color: #f2f2f2;
}


.resources-list.events .title-hold {
    position: relative;
    padding: 30px 35px 0 112px;
}

.event-date span.year {
    display: none;
}
.event-date span.month {
    display: block;
}

.event-date span.day {
    font-size: 23px;
}
.event-date {
    position: absolute;
    width: 54px;
    height: 55px;
    left: 0;
    top: 0;
    text-align: center;
    text-transform: uppercase;
    font-family: "Montserrat";
    line-height: 1.0;
    font-size: 12px;
    font-weight: 400;
    padding: 11px 0 0 0;
    border: none;
    background: #1b75bc;
    color: white;
    border-radius: 0px 5px 5px 5px;
    margin: 32px 0 0 32px;
}




/*--

*/
#search-trigger {
    display: block;
    position: relative;
}

#search-trigger h4.color-grey {
    margin: 0;
    padding: 0px 0;
    color: #1b75bc;
}

#search-trigger h4 i.demo-icon.icon-search,
#search-trigger h4 i.demo-icon.icon-exit{
    position: absolute;
    right: 0px;
    top: 4px;
}


#search-trigger h4 i.demo-icon.icon-exit{
    display:none;
}

.pad-box.super-special {
    padding: 1vw 6vw 2vw;
}

.pad-box.super-small {
    padding: 25px 6vw;
}


/*-- hover for search box */
.no-touch #attorney-search{
 -webkit-transition:background-color 0.333s ease, color 0.333s ease;
    -moz-transition:background-color 0.333s ease, color 0.333s ease;
    -ms-transition:background-color 0.333s ease, color 0.333s ease;
    transition:background-color 0.333s ease, color 0.333s ease;
}
.no-touch #attorney-search:hover {
    background-color: #1b75bc;
    color: #ffffff;
    -webkit-transition:background-color 0.333s ease, color 0.333s ease;
    -moz-transition:background-color 0.333s ease, color 0.333s ease;
    -ms-transition:background-color 0.333s ease, color 0.333s ease;
    transition:background-color 0.333s ease, color 0.333s ease;
}
.no-touch #attorney-search:hover #search-trigger h4.color-grey{
    color: #ffffff;
    -webkit-transition:background-color 0.333s ease, color 0.333s ease;
    -moz-transition:background-color 0.333s ease, color 0.333s ease;
    -ms-transition:background-color 0.333s ease, color 0.333s ease;
    transition:background-color 0.333s ease, color 0.333s ease;
}
.no-touch .search-open #attorney-search:hover{
    color: #1b75bc;
    background-color:#f2f2f2;

}
.no-touch .search-open #attorney-search:hover #search-trigger h4.color-grey{
    color: #1b75bc;

}



.resources-list.flex.two.gutter ul#webapp25803pagination,
.resources-list.flex.two.gutter ul#webapp25806pagination {
    width: 100%;
    display: table;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    border: none;
}










/***************************

5. Utilities

*************************************************/
.text-center{
    text-align:center;
}
.bg-dgrey{
    background-color:#181b1f;
    color:white;
}
.bg-lgrey{
    background-color:#f2f2f2;
}
.bg-white{
    background-color:white;
}
.color-blue{
    color:#1582cd;
}
.color-lblue {
    /*color:#2495e3;*/
    color:#30aaff;
}
.color-grey{
    color:#a29b91;
}
.color-white{
    color:white;
}
.align-middle{
    position:relative;
    top:50%;
    -webkit-transform:translateY(-50%);
    -moz-transform:translateY(-50%);
    -ms-transform:translateY(-50%);
    transform:translateY(-50%);
}
.mt-0{
    margin-top:0;
}
.mb-0{
    margin-bottom:0;
}
.mb-10{
    margin-bottom:10px;
}
.mb-20{
    margin-bottom:20px;
}
.mb-30{
    margin-bottom:30px;
}
.mb-40{
    margin-bottom:40px;
}
.mb-50{
    margin-bottom:50px;
}
.mb-60{
    margin-bottom:60px;
}


/*-- global fallbacks --*/
.no-flexbox img.png,
.flexbox img.svg{
    display:block;
}
.no-flexbox img.svg,
.flexbox img.png{
    display:none;
}

/*-- loader --*/
.loader {
    background: #1b75bc;
    z-index: 99999;
    position: fixed;
    width: 100%;
    height: 100%;
    text-align: center;
}

.loader img {
    display: block;
    position: absolute;
    width: 120px;
    margin: 0 auto;
    top: 50%;
    right: 0;
    left: 0;
    transform: translateY(-50%);
}

.loader img[alt="lwdn firm"] {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;



       -webkit-animation-duration:2.4s;
    animation-duration:2.4s;


    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}


@-webkit-keyframes fadeIn {
    0%, 100%{
        opacity: 0;
    }

   	50%, 95%{
        opacity: 1;
    }
}

@keyframes fadeIn {
   0%, 100%{
        opacity: 0;
    }

    50%, 95%{
        opacity: 1;
    }
}



/***************************

6. Media Queries

*************************************************/
@media only screen and (max-width:1200px){
    nav ul {
        text-align: right;
        align-items: right;
        justify-content: flex-end;
    }

    header nav li {
        margin: 0 18px;
    }
    footer .flex.gutter .two-thirds,
    footer .flex.gutter .third.contact{
        width:calc(50% - 3vw);
    }
    footer .social ul{
        justify-content:flex-start;
        align-items:flex-start;
    }
    .secondary-nav ul {
        align-items: center;
        justify-content: center;
    }
}
@media only screen and (max-width:1024px){
    header nav li {
        margin: 0 15px;
    }
    header nav li:last-of-type {
        margin-right: 5px;
    }
    .flex.four > * {
        width: 50%;
    }
    .flex.four.gutter > * {
        width: calc(50% - 16px);
        margin:0 0 16px;
    }
    .two-thirds, .third{
        width:100%;
    }
    .two-thirds.pad,
    .third.pad{
        padding: 5vw 6vw;
    }
    .flex.three > * {
        width: 50%;
    }
    .flex.three.gutter > * {
        width: calc(50% - 16px);
        margin:0 0 16px;
    }
    blockquote {
        max-width: none;
        margin: 5vw 6vw;
    }
    .hero.slides > .pad-box:first-of-type {
        bottom: 32%;
    }
}
@media only screen and (max-width:960px){
    .attorney-detail .card .bg-img,
    .attorney-detail .card .pad{
        width:100%;
    }
    .attorney-detail .card .bg-img {
        padding: 0 0 120%;
        background-position: 50% 8%;
    }
    .attorney-detail .card.flex{
        display:block;
    }
    .attorney-detail .hero {
        height: auto;
        padding:0 0 90%
    }
    .attorney-detail .card {
        margin: -80% 0 40px 0;
    }
    .bio-body .main,
    .bio-body aside {
        width: 100%;
    }

    .bio-body aside{
        order:2;
    }
    #vcard{
     display:none;
    }
}
@media only screen and (max-width:768px){
    .card .print-btn{
        display:none;
    }
    .card .flex.two.gutter .contact {
        width: 100%;
    }
    footer .flex.gutter .third,
    footer .flex.gutter .two-thirds {
        display: block;
    }
    footer .flex.gutter .two-thirds{
        text-align:right;
    }
    footer .flex.gutter .third.contact .logo {
        margin: 0 0 20px;
    }
    footer .flex.gutter .two-thirds > * {
        width: 100%;
    }

    footer .social ul {
        justify-content: flex-end;
        align-items: flex-end;
        margin: 20px 0 20px;
    }
    .hero.sub .pad-box {
        margin: 22% 0 10%;
    }
    .full-logo {
        max-width: 40vw;
    }
    .loader img {
        width:80px;
    }

}
@media only screen and (max-width:650px){
    .flex{
        display:block;
    }
    .flex > *,
    .flex.four > *,
    .flex.four.gutter > *,
    .flex.three > *,
    .flex.three.gutter > *,
    .flex.two > *,
    .flex.two.gutter > *,
    .flex.six > *,
    .flex.six.gutter > *,
    .attorney-search input[type="text"]{
        width:100%;
        display:block;
    }

    .flex.gutter > * {
        width: 100%;
        margin:0 0 20px;
    }
    .card .tels {
        text-align: left;
    }
    .border-right {
        border-right: none;
    }
    .flex .pad-box.cta {
        min-height: 0px;
    }
    .flex .pad-box.cta .align-middle {
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
        top: initial;
        margin: 3vh 0;
    }
    form.flex.gutter.newsletter .btn-wrap.i-right {
        width: auto;
    }
    form.flex.gutter.newsletter label.hide,
    .flex label.hide,
    .flex.gutter label.hide{
        margin: 0;
        width: 1px;
    }
    .resources-list.flex.two.gutter > * {
        width: 100%;
        margin: 0 0 30px;
        padding: 0 0px 40px;
        border-bottom: 1px solid #e4e4e4;
    }
    form.attorney-search.flex.gutter input[type="text"],
    form.attorney-search.flex.gutter .checkbox{
        margin:0 0 15px;
    }
    form.attorney-search.flex.gutter > * {
        margin: 0 0 5px;
    }
    form.attorney-search.flex.gutter .checkbox{
        width:auto;
    }
    .flex .btn-wrap {
        width: auto;
    }
    .full-logo {
        max-width: 50vw;
    }
    .flex.gutter.newsletter input[type="email"] {
        width: calc(100% - 160px);
    }

    .flex.newsletter .btn-wrap {
        width: auto;
    }

    .flex.gutter.newsletter {
        display: table;
        display: -webkit-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
    }
    .btn.interests{
    	margin:0 auto 40px;
    }
    ul.pagination li,
    ul.pagination li.pag-next,
    ul.pagination li.pag-prev {
        padding: 10px 16px;
        font-size: 15px;
        line-height: 15px;
    }
    .flex.two.gutter > .print-btn{
    	display:none;
    }



    footer .flex.gutter,
    footer .flex.gutter > *,
    footer .flex.gutter .two-thirds,
    footer .flex.gutter .third.contact{
        display:block;
        width:100%;
        text-align:center;
    }
    footer .flex.gutter .third.contact .logo {
        margin: 0 auto 20px;
    }
    footer .social ul {
        justify-content: center;
        align-items: center;
        margin: 20px 0 35px;
    }
    footer .links a {
        text-align: center;
    }
    footer .flex.gutter .two-thirds {
        margin: 0;
    }


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

    .pad-box {
        padding: 35px 30px;
    }
    blockquote {
        max-width: none;
        margin: 35px 30px;
    }


    .flex.gutter.newsletter input[type="email"] {
        width: 100%;
        margin:0 0 20px;
    }
    .flex.newsletter .btn-wrap {
        width:auto;
        margin:0 auto;
        text-align:center;
    }

    .flex.gutter.newsletter {
        display: block;
    }
    form.newsletter .btn-wrap.i-right{
    	margin:0;
        display:inline-block;

    }




    ul.pagination li,
    ul.pagination li.pag-next,
    ul.pagination li.pag-prev {
        padding: 6px 8px;
        font-size: 15px;
        line-height: 15px;
    }

    ul.pagination li.pag-next a,
    ul.pagination li.pag-prev a{
        text-indent: -9999999px;
        display: block;
    }

    ul.pagination li.pag-next a::after {
        content: "\e800";
        font-family: "Fontello";
        display: block;
        padding: 6px 10px;
        font-size: 15px;
        text-indent: 0;
        top: 0;
        left: 0;
        position: absolute;
    }
    ul.pagination li.pag-prev a::after {
        content: "\e801";
        font-family: "Fontello";
        display: block;
        padding: 6px 10px;
        font-size: 15px;
        text-indent: 0;
        top: 0;
        left: 0;
        position: absolute;
    }

    ul.pagination li.pag-next,
    ul.pagination li.pag-prev {
        padding: 0;
    }

    ul.pagination li.pag-next a,
    ul.pagination li.pag-prev a {
        position: relative;
        width: 36px;
        height: 27px;
    }


    .loader img {
        width: 75px;
    }
    .attorney-detail .card {
        margin: -80% 0 40px 0;
    }
}



/*-- printing --*/
.print-img,
.bio-print{
	display:none;
}

.share-block {
    text-align: center;
    margin: 50px auto 0;
}


@media print{

* {transition: none !important}

    .print-img{
        display:initial;
    }
    .bg-img.no-print{
    	background:none;
    }
    header {
        display: none;
    }

    .attorney-detail .hero {
        display: none;
    }

    .attorney-detail .card {
        margin: 0 0 30px;
    }

    .bio-body aside {
        width: 100%;
        display: block;
        margin: 0 0 20px;
    }

    .accordion .js .panel-body, .accordion .panel-body {
        display: block;
    }

    .accordion .panel-title::before, .accordion .panel-title::after {
        display: none;
    }

    .attorney-detail .main.pad {
        padding: 0;
        width: 100%;
    }

    footer {
        display: none;
    }

    .attorney-detail .card .btn-box {
        display: none;
    }

    .attorney-detail .print-btn {
        display: none;
    }

    .attorney-detail .flex.two.gutter > .contact {
        width: 100%;
    }

    .accordion article,
    .accordion article:last-of-type {
       /* border: none;*/
        margin: 0px 0 15px;
        padding: 10px 0 0;
    }

    .accordion .panel-body ul,
    .accordion .panel-body p {
        margin: 0 0 0;
    }

    address, a,
    .attorney-detail .card .email,
    .color-blue,
    .panel-title h4 {
        color: black;
    }
    .accordion{
    	order:2;
    }
    .bio-print{
    	order:1;
    }
    .main.pad{
    	float:none;
    }

    .main.pad p + h3 {
        margin: 30px 0 10px 0;
    }


    .pad-box.nav-marker {
        padding: 0;
    }

    .flex.two.gutter address,
    .flex.two.gutter .tels {
        width: 100%;
        display: block;
        text-align: left;
    }

    .flex.two.gutter address {
        margin: 0 0 20px;
    }

    .attorney-detail .card {
        margin: 0 0 30px;
    }
    h1, h2, h3, h4, h5, h6, h7, p{
    	font-size:initial;
    }
    h1,
    .attorney-detail .card h1,
    .card h1{
    	font-size:24pt;
    }
    h2, .attorney-detail .card h2{
    	font-size:20pt;
    }
    h3, .attorney-detail .card h3,
    .card h3{
    	font-size:12pt;
    }
    h4, h5, .attorney-detail .card h4,
    .attorney-detail .card h5,
    .attorney-detail .accordion h5,
    .attorney-detail .accordion h4,
    .panel-title h4,
    .attorney-detail .card a,
    .attorney-detail .bio-body a{
    	font-size:11pt;
    }
    h7, .attorney-detail .card h7{
    	font-size:10pt;
    }
    p, .attorney-detail p{
    	font-size:12pt;
    }
    .pad.bg-lgrey.flex.two.gutter {
        min-height: auto;
        padding: 0 3vw;
    }
    .attorney-detail .card .email{
    	margin:10px 0 10px;
    }
    .share-block,
    .btn, .hide-print,
    .cta.hide-print,
    .secondary-nav.detail{
    	display:none;
    }
    .hero h1{
    	color:black;
        text-align:left;
        font-size:22pt;
    }
    h7.author,
    h4.color-white.text-center{
    	color:black !important;
        text-align:left !important;
    }
    h4.color-white.text-center{
        font-size:11pt !important;
        margin: 10px 0 10px 0 !important;
    }
    main.cd-main-content {
        margin: 0.2in 0.5in;
    }
    .hero.sub .pad-box{
    	padding:0 0 30px;
        margin:0;
        background:none;
    }
    .hero.sub .pad-box{
    	padding:0;
    }
    .detail-nav {
     	display:none;
    }

}
