* {
    box-sizing: border-box;
}

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}

address {
    font-style: normal;
}

body {
    line-height: 1;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

    nav ul {
        list-style-type: none;
        list-style-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVR42mNkYAAAAAYAAjCB0C8AAAAASUVORK5CYII=);
    }

ul {
    list-style-position: inside;
}

blockquote,
q {
    quotes: none;
}

    blockquote:before,
    blockquote:after,
    q:before,
    q:after {
        content: '';
        content: none;
    }

a {
    margin: 0;
    padding: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
    text-decoration: none;
}

/* change colours to suit your needs */
ins {
    background-color: #ff9;
    color: #000;
    text-decoration: none;
}

/* change colours to suit your needs */
mark {
    background-color: #ff9;
    color: #000;
    font-style: italic;
    font-weight: bold;
}

del {
    text-decoration: line-through;
}

abbr[title],
dfn[title] {
    border-bottom: 1px dotted;
    cursor: help;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #b0b8bd;
    margin: 1.3em 0;
    padding: 0;
}

img {
    max-width: 100%;
}

input,
select {
    vertical-align: middle;
}

body {
    overflow-x: hidden;
    width: 100%;
}

/**
* List of mixins we are using.
*
1: @include transform($transforms)
1.1: @include transform-origin($transforms)

*****Transition set******
2: @include transition($transition...)
3: @include transition-property($property...)
4: @include transition-duration($duration...)
5: @include transition-timing-function($timing...)
6: @include transition-delay($delay...) 
7: @include prespective($property...)

*****Animation set******
7: @include animation($animation)
8: @include flexwrap()
9: @include flex()
*
**/
/* transition Mixin */
/* Animation Mixin */
/* Display flexWrap */
/* Display flex */
/* Tinted colors */
.pullRight {
    float: right !important;
}

.pullLeft {
    float: left !important;
}

.pullMiddle {
    position: absolute;
    top: 50%;
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.textCenter {
    text-align: center;
}

@media (min-width: 768px) {
    .flexWrap {
        display: -webkit-flex;
        -webkit-flex-wrap: wrap;
        display: flex;
        flex-wrap: wrap;
    }
}

.isFixed {
    position: fixed !important;
    left: 0px;
    width: 100%;
    z-index: 9999;
}

.btn {
    background: #ee832e;
    border: none;
    outline: none;
    color: #fff;
    text-transform: uppercase;
    box-shadow: none;
    padding: 10px 50px;
    cursor: pointer;
    font-size: 14px;
    font-family: "Proxima-Nova-Alt-SemiBold", sans-serif;
    line-height: 1;
    text-align: center;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

@media (min-width: 768px) {
    .btn {
        font-size: 12px;
    }
}

@media (min-width: 1025px) {
    .btn {
        font-size: 14px;
    }
}

@media (min-width: 1025px) {
    .btn:hover {
        opacity: 0.7;
    }
}

.viewportHeight {
    min-height: 100vh;
}

.fullWidth {
    width: 100%;
}

.isSmooth {
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    font-family: 'Proxima-Nova-Alt-Rg', Arial, Helvetica, sans-serif;
    color: #333;
    font-size: 0.933em;
}

::-moz-placeholder {
    /* Firefox 19+ */
    font-family: 'Proxima-Nova-Alt-Rg', Arial, Helvetica, sans-serif;
    color: #333;
    font-size: 0.933em;
}

:-ms-input-placeholder {
    /* IE 10+ */
    font-family: 'Proxima-Nova-Alt-Rg', Arial, Helvetica, sans-serif;
    color: #333;
    font-size: 0.933em;
}

:-moz-placeholder {
    /* Firefox 18- */
    font-family: 'Proxima-Nova-Alt-Rg', Arial, Helvetica, sans-serif;
    color: #333;
    font-size: 0.933em;
}

input,
textarea,
select {
    border: none;
    box-shadow: none;
    outline: 0;
    background-color: #f1f1f1;
    padding: 0.40em 0.66em;
    height: 2.25em;
    font-size: 0.99em;
    width: 100%;
    display: inline-block;
    margin-bottom: 1.04em;
    font-family: "Proxima-Nova-Alt-Rg", sans-serif;
}

    input[type='submit'] {
        height: auto;
        padding: 8px 15px;
        font-size: 12px;
        line-height: 1;
    }

.formGroup {
    margin-bottom: 1.04em;
}

    .formGroup input,
    .formGroup textarea,
    .formGroup select {
        width: 100%;
        margin-bottom: 0;
        min-width: 100px;
    }

.captchaText input {
    max-width: 170px;
    vertical-align: top;
    margin-right: 6px;
    height: 1.90em;
}

@media (min-width: 768px) {
    .captchaText input {
        max-width: 140px;
    }
}

@media (min-width: 1024px) {
    .captchaText input {
        max-width: 170px;
    }
}

@media (min-width: 768px) {

    .blogdd .sbHolder {
        width: 40% !important;
        margin-top: 8px;
    }

        .blogdd .sbHolder .sbOptions li {
            display: contents;
        }

    .blogdd1 .trigger {
        text-align: right !important;
    }
}

@media (min-width: 767px) {
    .blogdd1 .trigger li {
        top: 5px;
    }

    .edyTabs .trigger {
        padding: 10px 0px 5px 0px;
    }

    .blogdd1 .sbHolder .sbSelector {
        height: 3.2em;
    }
}

@media (max-width: 767px) {
    .blogdd1 {
        margin-bottom: 0px
    }

    .blogs-bar .trigger {
        pointer-events: all !important;
    }

    .blogdd1 .trigger li {
        cursor: pointer;
        position: relative;
        font-size: 1.067em;
        padding: 1em;
        border-bottom: 1px solid #666;
        font-family: "Proxima-Nova-Alt-SemiBold", sans-serif;
        background-color: #242738;
        line-height: 1;
        color: #fff;
        text-align: left;
    }

    .blogdd .sbHolder .sbSelector {
        cursor: pointer;
        position: relative;
        font-size: 1.067em;
        padding: 1em;
        border-bottom: 1px solid #666;
        font-family: "Proxima-Nova-Alt-SemiBold", sans-serif;
        background-color: #242738;
        line-height: 1;
        color: #fff;
        text-align: left;
        height: 3.0em;
    }

    .blogdd1 .trigger li:before {
        content: "";
        position: absolute;
        top: 30%;
        width: 18px;
        height: 18px;
        background: url(../images/icons/arrow_down.png);
        -moz-transition: all 0.5s ease;
        -o-transition: all 0.5s ease;
        -webkit-transition: all 0.5s ease;
        transition: all 0.5s ease;
        background-position: center center;
        background-size: cover;
        right: 18px;
    }


    .blogdd .sbToggle {
        background: url(../images/icons/arrow_down.png);
        background-position: -40px 0;
        width: 20px;
        height: 20px;
        position: absolute;
        right: 1.2em;
        top: 48%;
        -moz-transform: translatey(-50%);
        -o-transform: translatey(-50%);
        -ms-transform: translatey(-50%);
        -webkit-transform: translatey(-50%);
        transform: translatey(-50%);
        -moz-transition: all 0.2s linear;
        -o-transition: all 0.2s linear;
        -webkit-transition: all 0.2s linear;
        transition: all 0.2s linear;
        z-index: 99999;
    }

        .blogdd .sbToggle.sbToggleOpen {
            -moz-transform: translatey(-50%) rotate(-180deg);
            -o-transform: translatey(-50%) rotate(-180deg);
            -ms-transform: translatey(-50%) rotate(-180deg);
            -webkit-transform: translatey(-50%) rotate(-180deg);
            transform: translatey(-50%) rotate(-180deg);
        }
}

.captchaText img {
    max-height: 1.90em;
}

.sbHolder {
    background: #f1f1f1;
    position: relative;
    display: inline-block;
    margin-bottom: 1.04em;
}

.formGroup .sbHolder {
    display: block;
    margin-bottom: 0;
}



.sbSelector {
    height: 2.6em;
    font-size: 0.9em;
    display: block;
    color: #333;
    padding: 0 2.3em 0 0.66em;
    line-height: 2.6em;
    font-family: "Proxima-Nova-Alt-Rg", sans-serif;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sbToggle {
    background: url("../images/icons/sprite.png");
    background-position: -40px 0;
    width: 20px;
    height: 20px;
    position: absolute;
    right: .4em;
    top: 55%;
    -moz-transform: translatey(-50%);
    -o-transform: translatey(-50%);
    -ms-transform: translatey(-50%);
    -webkit-transform: translatey(-50%);
    transform: translatey(-50%);
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

    .sbToggle.sbToggleOpen {
        -moz-transform: translatey(-50%) rotate(-180deg);
        -o-transform: translatey(-50%) rotate(-180deg);
        -ms-transform: translatey(-50%) rotate(-180deg);
        -webkit-transform: translatey(-50%) rotate(-180deg);
        transform: translatey(-50%) rotate(-180deg);
    }

.sbOptions {
    position: absolute;
    background-color: #fff;
    border: 1px solid #f1f1f1;
    width: 100%;
    padding-bottom: 0.20em;
    z-index: 100;
    /*overflow: auto;
    max-height: 118px !important;*/
}

    /*.sticky .sbOptions {
    max-height: 103px !important;
}*/

    .sbOptions li {
        list-style: none;
    }

        .sbOptions li span {
            opacity: 0.4;
        }

        .sbOptions li a,
        .sbOptions li span {
            display: block;
            padding: 0.5em 0.66em;
            font-size: 0.9em;
        }

        .sbOptions li a {
            color: #000;
        }

            .sbOptions li a:hover, .sbOptions li a:active, .sbOptions li a:focus {
                opacity: 0.8;
            }

.primaryContent ul.sbOptions {
    padding-left: 0;
    margin-top: 0;
}

    .primaryContent ul.sbOptions li {
        padding-bottom: 0;
    }

.readMoreBtn {
    font-size: 0.933em;
    font-family: "Proxima-Nova-Alt-SemiBold", sans-serif;
    text-transform: uppercase;
    margin-top: 10px;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

@media (min-width: 1025px) {
    .readMoreBtn:hover {
        color: #f7a833;
    }
}

.loadMoreBtn {
    margin: 2.5em 0 4em;
    display: block;
    text-align: center;
    color: #b0b8bd;
    font-family: "Proxima-Nova-Alt-SemiBold", sans-serif;
    position: relative;
}

    .loadMoreBtn:before, .loadMoreBtn:after {
        content: "";
        position: absolute;
        display: block;
        left: 0;
    }

    .loadMoreBtn:before {
        height: 1px;
        background-color: #b0b8bd;
        width: 100%;
        bottom: -20px;
    }

    .loadMoreBtn:after {
        content: "+";
        font-family: "Proxima-Nova-Alt-Rg", sans-serif;
        background-color: #fff;
        width: 30px;
        height: 30px;
        bottom: -35px;
        border-radius: 50%;
        font-size: 28px;
        line-height: 30px;
        right: 0;
        margin: 0 auto;
    }

body {
    font-size: 15px;
    font-family: "Proxima-Nova-Alt-Rg", sans-serif;
    line-height: 1.28;
    color: rgba(0, 0, 0, 0.7);
    text-rendering: optimizeSpeed;
}

p {
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: 0.50em;
}

    p strong {
        color: #a93228;
        font-size: 1.067em;
    }

time {
    font-size: 1em;
    color: #b1b9be;
}

@media (min-width: 768px) {
    time {
        font-size: 0.9em;
    }
}

a {
    color: #4fc6de;
}

ul {
    color: rgba(0, 0, 0, 0.7);
}

.primaryContent p, .primaryContent ul {
    margin: 15px 0px;
}

.generic-tab-content li {
    margin-left: 15px;
}

    .generic-tab-content li ul {
        margin-top: 10px;
    }

        .generic-tab-content li ul li:last-child {
            margin-bottom: -25px;
        }

@media (min-width: 768px) {
    .primaryContent p, .primaryContent ul {
        margin-bottom: 1em;
    }
}

.primaryContent ul {
    list-style-position: inside;
}

    .primaryContent ul li {
        padding-bottom: 10px;
        line-height: 1.28;
        list-style-position: outside;
    }

    .primaryContent ul.innerWrap {
        padding-left: 0;
        margin-bottom: 0;
    }

    .primaryContent ul.edylist-group {
        padding-left: 0;
    }

h1 {
    color: #ee832e;
    text-transform: uppercase;
    font-family: "Proxima-Nova-Alt-SemiBold", sans-serif;
    font-size: 2.467em;
    line-height: 1;
    margin-bottom: 20px;
}

    h1 span, h2 span {
        display: block;
        font-size: 20px;
        color: #fff;
        text-transform: capitalize;
        margin-bottom: 5px;
    }

h2 {
    font-size: 1.2em;
    font-family: "Proxima-Nova-Alt-Bold", sans-serif;
    margin-bottom: 22px;
    color: #000;
}

h3 {
    font-size: 1.067em;
    font-family: "Proxima-Nova-Alt-SemiBold", sans-serif;
    margin-bottom: 0.50em;
    color: #000;
}

h4 {
    text-transform: uppercase;
    font-size: 1em;
    line-height: 1.1;
    font-weight: normal;
    font-family: "Proxima-Nova-Alt-SemiBold", sans-serif;
}

h5 {
    color: #ee832e;
    margin-bottom: 0.70em;
}

/*.block.listView.clearfix.newsection {
  float: left; }*/

.secondaryContent .innerWrap li.no-border {
    border-bottom: none;
}

ul.social-icon li {
    list-style-position: outside;
    padding-left: 0em;
}

nav.inlineMenu ul li {
    padding-left: 0em;
}

.container {
    margin-right: auto;
    margin-left: auto;
    padding-left: 15px;
    padding-right: 15px;
}

.halfContainer {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
}

@media (min-width: 768px) {
    .container {
        width: 750px;
    }
}

@media (min-width: 992px) {
    .container {
        width: 970px;
    }
}

@media (min-width: 1200px) {
    .container {
        width: 1200px;
    }

    .halfContainer {
        max-width: 600px;
    }
}

@media (min-width: 768px) and (max-width: 1250px) {
    .isRight .halfContainer {
        padding-right: 50px !important;
    }

    .isLeft .halfContainer {
        padding-left: 50px !important;
    }
}

.container-fluid {
    margin-right: auto;
    margin-left: auto;
    padding-left: 15px;
    padding-right: 15px;
}

.row {
    margin-left: -15px;
    margin-right: -15px;
}

.col-xs-1,
.col-sm-1,
.col-md-1,
.col-lg-1,
.col-xs-2,
.col-sm-2,
.col-md-2,
.col-lg-2,
.col-xs-3,
.col-sm-3,
.col-md-3,
.col-lg-3,
.col-xs-4,
.col-sm-4,
.col-md-4,
.col-lg-4,
.col-xs-5,
.col-sm-5,
.col-md-5,
.col-lg-5,
.col-xs-6,
.col-sm-6,
.col-md-6,
.col-lg-6,
.col-xs-7,
.col-sm-7,
.col-md-7,
.col-lg-7,
.col-xs-8,
.col-sm-8,
.col-md-8,
.col-lg-8,
.col-xs-9,
.col-sm-9,
.col-md-9,
.col-lg-9,
.col-xs-10,
.col-sm-10,
.col-md-10,
.col-lg-10,
.col-xs-11,
.col-sm-11,
.col-md-11,
.col-lg-11,
.col-xs-12,
.col-sm-12,
.col-md-12,
.col-lg-12 {
    position: relative;
    min-height: 1px;
    padding-left: 15px;
    padding-right: 15px;
}

.col-xs-1,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9,
.col-xs-10,
.col-xs-11,
.col-xs-12 {
    float: left;
}

.col-xs-12 {
    width: 100%;
}

.col-xs-11 {
    width: 91.66666667%;
}

.col-xs-10 {
    width: 83.33333333%;
}

.col-xs-9 {
    width: 75%;
}

.col-xs-8 {
    width: 66.66666667%;
}

.col-xs-7 {
    width: 58.33333333%;
}

.col-xs-6 {
    width: 50%;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    .col-xs-6 {
        width: 29%;
    }
}

.col-xs-5 {
    width: 41.66666667%;
}

.col-xs-4 {
    width: 33.33333333%;
}

.col-xs-3 {
    width: 25%;
}

.col-xs-2 {
    width: 16.66666667%;
}

.col-xs-1 {
    width: 8.33333333%;
}

.col-xs-pull-12 {
    right: 100%;
}

.col-xs-pull-11 {
    right: 91.66666667%;
}

.col-xs-pull-10 {
    right: 83.33333333%;
}

.col-xs-pull-9 {
    right: 75%;
}

.col-xs-pull-8 {
    right: 66.66666667%;
}

.col-xs-pull-7 {
    right: 58.33333333%;
}

.col-xs-pull-6 {
    right: 50%;
}

.col-xs-pull-5 {
    right: 41.66666667%;
}

.col-xs-pull-4 {
    right: 33.33333333%;
}

.col-xs-pull-3 {
    right: 25%;
}

.col-xs-pull-2 {
    right: 16.66666667%;
}

.col-xs-pull-1 {
    right: 8.33333333%;
}

.col-xs-pull-0 {
    right: auto;
}

.col-xs-push-12 {
    left: 100%;
}

.col-xs-push-11 {
    left: 91.66666667%;
}

.col-xs-push-10 {
    left: 83.33333333%;
}

.col-xs-push-9 {
    left: 75%;
}

.col-xs-push-8 {
    left: 66.66666667%;
}

.col-xs-push-7 {
    left: 58.33333333%;
}

.col-xs-push-6 {
    left: 50%;
}

.col-xs-push-5 {
    left: 41.66666667%;
}

.col-xs-push-4 {
    left: 33.33333333%;
}

.col-xs-push-3 {
    left: 25%;
}

.col-xs-push-2 {
    left: 16.66666667%;
}

.col-xs-push-1 {
    left: 8.33333333%;
}

.col-xs-push-0 {
    left: auto;
}

.col-xs-offset-12 {
    margin-left: 100%;
}

.col-xs-offset-11 {
    margin-left: 91.66666667%;
}

.col-xs-offset-10 {
    margin-left: 83.33333333%;
}

.col-xs-offset-9 {
    margin-left: 75%;
}

.col-xs-offset-8 {
    margin-left: 66.66666667%;
}

.col-xs-offset-7 {
    margin-left: 58.33333333%;
}

.col-xs-offset-6 {
    margin-left: 50%;
}

.col-xs-offset-5 {
    margin-left: 41.66666667%;
}

.col-xs-offset-4 {
    margin-left: 33.33333333%;
}

.col-xs-offset-3 {
    margin-left: 25%;
}

.col-xs-offset-2 {
    margin-left: 16.66666667%;
}

.col-xs-offset-1 {
    margin-left: 8.33333333%;
}

.col-xs-offset-0 {
    margin-left: 0%;
}

@media (min-width: 768px) {
    .col-sm-1,
    .col-sm-2,
    .col-sm-3,
    .col-sm-4,
    .col-sm-5,
    .col-sm-6,
    .col-sm-7,
    .col-sm-8,
    .col-sm-9,
    .col-sm-10,
    .col-sm-11,
    .col-sm-12 {
        float: left;
    }

    .col-sm-12 {
        width: 100%;
    }

    .col-sm-11 {
        width: 91.66666667%;
    }

    .col-sm-10 {
        width: 83.33333333%;
    }

    .col-sm-9 {
        width: 75%;
    }

    .col-sm-8 {
        width: 66.66666667%;
    }

    .col-sm-7 {
        width: 58.33333333%;
    }

    .col-sm-6 {
        width: 50%;
    }

    .col-sm-5 {
        width: 41.66666667%;
    }

    .col-sm-4 {
        width: 33.33333333%;
    }

    .col-sm-3 {
        width: 25%;
    }

    .col-sm-2 {
        width: 16.66666667%;
    }

    .col-sm-1 {
        width: 8.33333333%;
    }

    .col-sm-pull-12 {
        right: 100%;
    }

    .col-sm-pull-11 {
        right: 91.66666667%;
    }

    .col-sm-pull-10 {
        right: 83.33333333%;
    }

    .col-sm-pull-9 {
        right: 75%;
    }

    .col-sm-pull-8 {
        right: 66.66666667%;
    }

    .col-sm-pull-7 {
        right: 58.33333333%;
    }

    .col-sm-pull-6 {
        right: 50%;
    }

    .col-sm-pull-5 {
        right: 41.66666667%;
    }

    .col-sm-pull-4 {
        right: 33.33333333%;
    }

    .col-sm-pull-3 {
        right: 25%;
    }

    .col-sm-pull-2 {
        right: 16.66666667%;
    }

    .col-sm-pull-1 {
        right: 8.33333333%;
    }

    .col-sm-pull-0 {
        right: auto;
    }

    .col-sm-push-12 {
        left: 100%;
    }

    .col-sm-push-11 {
        left: 91.66666667%;
    }

    .col-sm-push-10 {
        left: 83.33333333%;
    }

    .col-sm-push-9 {
        left: 75%;
    }

    .col-sm-push-8 {
        left: 66.66666667%;
    }

    .col-sm-push-7 {
        left: 58.33333333%;
    }

    .col-sm-push-6 {
        left: 50%;
    }

    .col-sm-push-5 {
        left: 41.66666667%;
    }

    .col-sm-push-4 {
        left: 33.33333333%;
    }

    .col-sm-push-3 {
        left: 25%;
    }

    .col-sm-push-2 {
        left: 16.66666667%;
    }

    .col-sm-push-1 {
        left: 8.33333333%;
    }

    .col-sm-push-0 {
        left: auto;
    }

    .col-sm-offset-12 {
        margin-left: 100%;
    }

    .col-sm-offset-11 {
        margin-left: 91.66666667%;
    }

    .col-sm-offset-10 {
        margin-left: 83.33333333%;
    }

    .col-sm-offset-9 {
        margin-left: 75%;
    }

    .col-sm-offset-8 {
        margin-left: 66.66666667%;
    }

    .col-sm-offset-7 {
        margin-left: 58.33333333%;
    }

    .col-sm-offset-6 {
        margin-left: 50%;
    }

    .col-sm-offset-5 {
        margin-left: 41.66666667%;
    }

    .col-sm-offset-4 {
        margin-left: 33.33333333%;
    }

    .col-sm-offset-3 {
        margin-left: 25%;
    }

    .col-sm-offset-2 {
        margin-left: 16.66666667%;
    }

    .col-sm-offset-1 {
        margin-left: 8.33333333%;
    }

    .col-sm-offset-0 {
        margin-left: 0%;
    }
}

@media (min-width: 992px) {
    .col-md-1,
    .col-md-2,
    .col-md-3,
    .col-md-4,
    .col-md-5,
    .col-md-6,
    .col-md-7,
    .col-md-8,
    .col-md-9,
    .col-md-10,
    .col-md-11,
    .col-md-12 {
        float: left;
    }

    .col-md-12 {
        width: 100%;
    }

    .col-md-11 {
        width: 91.66666667%;
    }

    .col-md-10 {
        width: 83.33333333%;
    }

    .col-md-9 {
        width: 75%;
    }

    .col-md-8 {
        width: 66.66666667%;
    }

    .col-md-7 {
        width: 58.33333333%;
    }

    .col-md-6 {
        width: 50%;
    }

    .col-md-5 {
        width: 41.66666667%;
    }

    .col-md-4 {
        width: 33.33333333%;
    }

    .col-md-3 {
        width: 25%;
    }

    .col-md-2 {
        width: 16.66666667%;
    }

    .col-md-1 {
        width: 8.33333333%;
    }

    .col-md-pull-12 {
        right: 100%;
    }

    .col-md-pull-11 {
        right: 91.66666667%;
    }

    .col-md-pull-10 {
        right: 83.33333333%;
    }

    .col-md-pull-9 {
        right: 75%;
    }

    .col-md-pull-8 {
        right: 66.66666667%;
    }

    .col-md-pull-7 {
        right: 58.33333333%;
    }

    .col-md-pull-6 {
        right: 50%;
    }

    .col-md-pull-5 {
        right: 41.66666667%;
    }

    .col-md-pull-4 {
        right: 33.33333333%;
    }

    .col-md-pull-3 {
        right: 25%;
    }

    .col-md-pull-2 {
        right: 16.66666667%;
    }

    .col-md-pull-1 {
        right: 8.33333333%;
    }

    .col-md-pull-0 {
        right: auto;
    }

    .col-md-push-12 {
        left: 100%;
    }

    .col-md-push-11 {
        left: 91.66666667%;
    }

    .col-md-push-10 {
        left: 83.33333333%;
    }

    .col-md-push-9 {
        left: 75%;
    }

    .col-md-push-8 {
        left: 66.66666667%;
    }

    .col-md-push-7 {
        left: 58.33333333%;
    }

    .col-md-push-6 {
        left: 50%;
    }

    .col-md-push-5 {
        left: 41.66666667%;
    }

    .col-md-push-4 {
        left: 33.33333333%;
    }

    .col-md-push-3 {
        left: 25%;
    }

    .col-md-push-2 {
        left: 16.66666667%;
    }

    .col-md-push-1 {
        left: 8.33333333%;
    }

    .col-md-push-0 {
        left: auto;
    }

    .col-md-offset-12 {
        margin-left: 100%;
    }

    .col-md-offset-11 {
        margin-left: 91.66666667%;
    }

    .col-md-offset-10 {
        margin-left: 83.33333333%;
    }

    .col-md-offset-9 {
        margin-left: 75%;
    }

    .col-md-offset-8 {
        margin-left: 66.66666667%;
    }

    .col-md-offset-7 {
        margin-left: 58.33333333%;
    }

    .col-md-offset-6 {
        margin-left: 50%;
    }

    .col-md-offset-5 {
        margin-left: 41.66666667%;
    }

    .col-md-offset-4 {
        margin-left: 33.33333333%;
    }

    .col-md-offset-3 {
        margin-left: 25%;
    }

    .col-md-offset-2 {
        margin-left: 16.66666667%;
    }

    .col-md-offset-1 {
        margin-left: 8.33333333%;
    }

    .col-md-offset-0 {
        margin-left: 0%;
    }
}

@media (min-width: 1200px) {
    .col-lg-1,
    .col-lg-2,
    .col-lg-3,
    .col-lg-4,
    .col-lg-5,
    .col-lg-6,
    .col-lg-7,
    .col-lg-8,
    .col-lg-9,
    .col-lg-10,
    .col-lg-11,
    .col-lg-12 {
        float: left;
    }

    .col-lg-12 {
        width: 100%;
    }

    .col-lg-11 {
        width: 91.66666667%;
    }

    .col-lg-10 {
        width: 83.33333333%;
    }

    .col-lg-9 {
        width: 75%;
    }

    .col-lg-8 {
        width: 66.66666667%;
    }

    .col-lg-7 {
        width: 58.33333333%;
    }

    .col-lg-6 {
        width: 50%;
    }

    .col-lg-5 {
        width: 41.66666667%;
    }

    .col-lg-4 {
        width: 33.33333333%;
    }

    .col-lg-3 {
        width: 25%;
    }

    .col-lg-2 {
        width: 16.66666667%;
    }

    .col-lg-1 {
        width: 8.33333333%;
    }

    .col-lg-pull-12 {
        right: 100%;
    }

    .col-lg-pull-11 {
        right: 91.66666667%;
    }

    .col-lg-pull-10 {
        right: 83.33333333%;
    }

    .col-lg-pull-9 {
        right: 75%;
    }

    .col-lg-pull-8 {
        right: 66.66666667%;
    }

    .col-lg-pull-7 {
        right: 58.33333333%;
    }

    .col-lg-pull-6 {
        right: 50%;
    }

    .col-lg-pull-5 {
        right: 41.66666667%;
    }

    .col-lg-pull-4 {
        right: 33.33333333%;
    }

    .col-lg-pull-3 {
        right: 25%;
    }

    .col-lg-pull-2 {
        right: 16.66666667%;
    }

    .col-lg-pull-1 {
        right: 8.33333333%;
    }

    .col-lg-pull-0 {
        right: auto;
    }

    .col-lg-push-12 {
        left: 100%;
    }

    .col-lg-push-11 {
        left: 91.66666667%;
    }

    .col-lg-push-10 {
        left: 83.33333333%;
    }

    .col-lg-push-9 {
        left: 75%;
    }

    .col-lg-push-8 {
        left: 66.66666667%;
    }

    .col-lg-push-7 {
        left: 58.33333333%;
    }

    .col-lg-push-6 {
        left: 50%;
    }

    .col-lg-push-5 {
        left: 41.66666667%;
    }

    .col-lg-push-4 {
        left: 33.33333333%;
    }

    .col-lg-push-3 {
        left: 25%;
    }

    .col-lg-push-2 {
        left: 16.66666667%;
    }

    .col-lg-push-1 {
        left: 8.33333333%;
    }

    .col-lg-push-0 {
        left: auto;
    }

    .col-lg-offset-12 {
        margin-left: 100%;
    }

    .col-lg-offset-11 {
        margin-left: 91.66666667%;
    }

    .col-lg-offset-10 {
        margin-left: 83.33333333%;
    }

    .col-lg-offset-9 {
        margin-left: 75%;
    }

    .col-lg-offset-8 {
        margin-left: 66.66666667%;
    }

    .col-lg-offset-7 {
        margin-left: 58.33333333%;
    }

    .col-lg-offset-6 {
        margin-left: 50%;
    }

    .col-lg-offset-5 {
        margin-left: 41.66666667%;
    }

    .col-lg-offset-4 {
        margin-left: 33.33333333%;
    }

    .col-lg-offset-3 {
        margin-left: 25%;
    }

    .col-lg-offset-2 {
        margin-left: 16.66666667%;
    }

    .col-lg-offset-1 {
        margin-left: 8.33333333%;
    }

    .col-lg-offset-0 {
        margin-left: 0%;
    }
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    .col-lg-6 {
        width: 32%;
    }
}

.clearfix:before,
.clearfix:after,
.container:before,
.container:after,
.container-fluid:before,
.container-fluid:after,
.row:before,
.row:after {
    content: " ";
    display: table;
}

.clearfix:after,
.container:after,
.container-fluid:after,
.row:after {
    clear: both;
}

.text-xs-left {
    text-align: left;
}

.text-xs-right {
    text-align: right;
}

.text-xs-center {
    text-align: center;
}

.text-xs-justify {
    text-align: justify;
}

@media (min-width: 768px) {
    .text-sm-left {
        text-align: left;
    }

    .text-sm-right {
        text-align: right;
    }

    .text-sm-center {
        text-align: center;
    }

    .text-sm-justify {
        text-align: justify;
    }
}

@media (min-width: 992px) {
    .text-md-left {
        text-align: left;
    }

    .text-md-right {
        text-align: right;
    }

    .text-md-center {
        text-align: center;
    }

    .text-md-justify {
        text-align: justify;
    }
}

@media (min-width: 1200px) {
    .text-lg-left {
        text-align: left;
    }

    .text-lg-right {
        text-align: right;
    }

    .text-lg-center {
        text-align: center;
    }

    .text-lg-justify {
        text-align: justify;
    }
}

@font-face {
    font-family: 'IcoMoon-Free';
    src: url("../fonts/IcoMoon-Free.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

.icon {
    /* use !important to prevent issues with browser extensions that change fonts */
    font-family: 'IcoMoon-Free' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    /* Enable Ligatures ================ */
    letter-spacing: 0;
    -webkit-font-feature-settings: "liga";
    -moz-font-feature-settings: "liga=1";
    -moz-font-feature-settings: "liga";
    -ms-font-feature-settings: "liga" 1;
    -o-font-feature-settings: "liga";
    font-feature-settings: "liga";
    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.japanies-font .icon {
    font-family: "IcoMoon-Free" !important;
}

.icon-home:before {
    content: "\e900";
}

.icon-home2:before {
    content: "\e901";
}

.icon-home3:before {
    content: "\e902";
}

.icon-office:before {
    content: "\e903";
}

.icon-newspaper:before {
    content: "\e904";
}

.icon-pencil:before {
    content: "\e905";
}

.icon-pencil2:before {
    content: "\e906";
}

.icon-quill:before {
    content: "\e907";
}

.icon-pen:before {
    content: "\e908";
}

.icon-blog:before {
    content: "\e909";
}

.icon-eyedropper:before {
    content: "\e90a";
}

.icon-droplet:before {
    content: "\e90b";
}

.icon-paint-format:before {
    content: "\e90c";
}

.icon-image:before {
    content: "\e90d";
}

.icon-images:before {
    content: "\e90e";
}

.icon-camera:before {
    content: "\e90f";
}

.icon-headphones:before {
    content: "\e910";
}

.icon-music:before {
    content: "\e911";
}

.icon-play:before {
    content: "\e912";
}

.icon-film:before {
    content: "\e913";
}

.icon-video-camera:before {
    content: "\e914";
}

.icon-dice:before {
    content: "\e915";
}

.icon-pacman:before {
    content: "\e916";
}

.icon-spades:before {
    content: "\e917";
}

.icon-clubs:before {
    content: "\e918";
}

.icon-diamonds:before {
    content: "\e919";
}

.icon-bullhorn:before {
    content: "\e91a";
}

.icon-connection:before {
    content: "\e91b";
}

.icon-podcast:before {
    content: "\e91c";
}

.icon-feed:before {
    content: "\e91d";
}

.icon-mic:before {
    content: "\e91e";
}

.icon-book:before {
    content: "\e91f";
}

.icon-books:before {
    content: "\e920";
}

.icon-library:before {
    content: "\e921";
}

.icon-file-text:before {
    content: "\e922";
}

.icon-profile:before {
    content: "\e923";
}

.icon-file-empty:before {
    content: "\e924";
}

.icon-files-empty:before {
    content: "\e925";
}

.icon-file-text2:before {
    content: "\e926";
}

.icon-file-picture:before {
    content: "\e927";
}

.icon-file-music:before {
    content: "\e928";
}

.icon-file-play:before {
    content: "\e929";
}

.icon-file-video:before {
    content: "\e92a";
}

.icon-file-zip:before {
    content: "\e92b";
}

.icon-copy:before {
    content: "\e92c";
}

.icon-paste:before {
    content: "\e92d";
}

.icon-stack:before {
    content: "\e92e";
}

.icon-folder:before {
    content: "\e92f";
}

.icon-folder-open:before {
    content: "\e930";
}

.icon-folder-plus:before {
    content: "\e931";
}

.icon-folder-minus:before {
    content: "\e932";
}

.icon-folder-download:before {
    content: "\e933";
}

.icon-folder-upload:before {
    content: "\e934";
}

.icon-price-tag:before {
    content: "\e935";
}

.icon-price-tags:before {
    content: "\e936";
}

.icon-barcode:before {
    content: "\e937";
}

.icon-qrcode:before {
    content: "\e938";
}

.icon-ticket:before {
    content: "\e939";
}

.icon-cart:before {
    content: "\e93a";
}

.icon-coin-dollar:before {
    content: "\e93b";
}

.icon-coin-euro:before {
    content: "\e93c";
}

.icon-coin-pound:before {
    content: "\e93d";
}

.icon-coin-yen:before {
    content: "\e93e";
}

.icon-credit-card:before {
    content: "\e93f";
}

.icon-calculator:before {
    content: "\e940";
}

.icon-lifebuoy:before {
    content: "\e941";
}

.icon-phone:before {
    content: "\e942";
}

.icon-phone-hang-up:before {
    content: "\e943";
}

.icon-address-book:before {
    content: "\e944";
}

.icon-envelop:before {
    content: "\e945";
}

.icon-pushpin:before {
    content: "\e946";
}

.icon-location:before {
    content: "\e947";
}

.icon-location2:before {
    content: "\e948";
}

.icon-compass:before {
    content: "\e949";
}

.icon-compass2:before {
    content: "\e94a";
}

.icon-map:before {
    content: "\e94b";
}

.icon-map2:before {
    content: "\e94c";
}

.icon-history:before {
    content: "\e94d";
}

.icon-clock:before {
    content: "\e94e";
}

.icon-clock2:before {
    content: "\e94f";
}

.icon-alarm:before {
    content: "\e950";
}

.icon-bell:before {
    content: "\e951";
}

.icon-stopwatch:before {
    content: "\e952";
}

.icon-calendar:before {
    content: "\e953";
}

.icon-printer:before {
    content: "\e954";
}

.icon-keyboard:before {
    content: "\e955";
}

.icon-display:before {
    content: "\e956";
}

.icon-laptop:before {
    content: "\e957";
}

.icon-mobile:before {
    content: "\e958";
}

.icon-mobile2:before {
    content: "\e959";
}

.icon-tablet:before {
    content: "\e95a";
}

.icon-tv:before {
    content: "\e95b";
}

.icon-drawer:before {
    content: "\e95c";
}

.icon-drawer2:before {
    content: "\e95d";
}

.icon-box-add:before {
    content: "\e95e";
}

.icon-box-remove:before {
    content: "\e95f";
}

.icon-download:before {
    content: "\e960";
}

.icon-upload:before {
    content: "\e961";
}

.icon-floppy-disk:before {
    content: "\e962";
}

.icon-drive:before {
    content: "\e963";
}

.icon-database:before {
    content: "\e964";
}

.icon-undo:before {
    content: "\e965";
}

.icon-redo:before {
    content: "\e966";
}

.icon-undo2:before {
    content: "\e967";
}

.icon-redo2:before {
    content: "\e968";
}

.icon-forward:before {
    content: "\e969";
}

.icon-reply:before {
    content: "\e96a";
}

.icon-bubble:before {
    content: "\e96b";
}

.icon-bubbles:before {
    content: "\e96c";
}

.icon-bubbles2:before {
    content: "\e96d";
}

.icon-bubble2:before {
    content: "\e96e";
}

.icon-bubbles3:before {
    content: "\e96f";
}

.icon-bubbles4:before {
    content: "\e970";
}

.icon-user:before {
    content: "\e971";
}

.icon-users:before {
    content: "\e972";
}

.icon-user-plus:before {
    content: "\e973";
}

.icon-user-minus:before {
    content: "\e974";
}

.icon-user-check:before {
    content: "\e975";
}

.icon-user-tie:before {
    content: "\e976";
}

.icon-quotes-left:before {
    content: "\e977";
}

.icon-quotes-right:before {
    content: "\e978";
}

.icon-hour-glass:before {
    content: "\e979";
}

.icon-spinner:before {
    content: "\e97a";
}

.icon-spinner2:before {
    content: "\e97b";
}

.icon-spinner3:before {
    content: "\e97c";
}

.icon-spinner4:before {
    content: "\e97d";
}

.icon-spinner5:before {
    content: "\e97e";
}

.icon-spinner6:before {
    content: "\e97f";
}

.icon-spinner7:before {
    content: "\e980";
}

.icon-spinner8:before {
    content: "\e981";
}

.icon-spinner9:before {
    content: "\e982";
}

.icon-spinner10:before {
    content: "\e983";
}

.icon-spinner11:before {
    content: "\e984";
}

.icon-binoculars:before {
    content: "\e985";
}

.icon-search:before {
    content: "\e986";
}

.icon-search-location-events:before {
    content: "\e986";
}

.icon-search-location-news:before {
    content: "\e986";
}

.icon-search-location-events, .icon-search-location-news {
    margin-left: -15px;
}

.icon-zoom-in:before {
    content: "\e987";
}

.icon-zoom-out:before {
    content: "\e988";
}

.icon-enlarge:before {
    content: "\e989";
}

.icon-shrink:before {
    content: "\e98a";
}

.icon-enlarge2:before {
    content: "\e98b";
}

.icon-shrink2:before {
    content: "\e98c";
}

.icon-key:before {
    content: "\e98d";
}

.icon-key2:before {
    content: "\e98e";
}

.icon-lock:before {
    content: "\e98f";
}

.icon-unlocked:before {
    content: "\e990";
}

.icon-wrench:before {
    content: "\e991";
}

.icon-equalizer:before {
    content: "\e992";
}

.icon-equalizer2:before {
    content: "\e993";
}

.icon-cog:before {
    content: "\e994";
}

.icon-cogs:before {
    content: "\e995";
}

.icon-hammer:before {
    content: "\e996";
}

.icon-magic-wand:before {
    content: "\e997";
}

.icon-aid-kit:before {
    content: "\e998";
}

.icon-bug:before {
    content: "\e999";
}

.icon-pie-chart:before {
    content: "\e99a";
}

.icon-stats-dots:before {
    content: "\e99b";
}

.icon-stats-bars:before {
    content: "\e99c";
}

.icon-stats-bars2:before {
    content: "\e99d";
}

.icon-trophy:before {
    content: "\e99e";
}

.icon-gift:before {
    content: "\e99f";
}

.icon-glass:before {
    content: "\e9a0";
}

.icon-glass2:before {
    content: "\e9a1";
}

.icon-mug:before {
    content: "\e9a2";
}

.icon-spoon-knife:before {
    content: "\e9a3";
}

.icon-leaf:before {
    content: "\e9a4";
}

.icon-rocket:before {
    content: "\e9a5";
}

.icon-meter:before {
    content: "\e9a6";
}

.icon-meter2:before {
    content: "\e9a7";
}

.icon-hammer2:before {
    content: "\e9a8";
}

.icon-fire:before {
    content: "\e9a9";
}

.icon-lab:before {
    content: "\e9aa";
}

.icon-magnet:before {
    content: "\e9ab";
}

.icon-bin:before {
    content: "\e9ac";
}

.icon-bin2:before {
    content: "\e9ad";
}

.icon-briefcase:before {
    content: "\e9ae";
}

.icon-airplane:before {
    content: "\e9af";
}

.icon-truck:before {
    content: "\e9b0";
}

.icon-road:before {
    content: "\e9b1";
}

.icon-accessibility:before {
    content: "\e9b2";
}

.icon-target:before {
    content: "\e9b3";
}

.icon-shield:before {
    content: "\e9b4";
}

.icon-power:before {
    content: "\e9b5";
}

.icon-switch:before {
    content: "\e9b6";
}

.icon-power-cord:before {
    content: "\e9b7";
}

.icon-clipboard:before {
    content: "\e9b8";
}

.icon-list-numbered:before {
    content: "\e9b9";
}

.icon-list:before {
    content: "\e9ba";
}

.icon-list2:before {
    content: "\e9bb";
}

.icon-tree:before {
    content: "\e9bc";
}

.icon-menu:before {
    content: "\e9bd";
}

.icon-menu2:before {
    content: "\e9be";
}

.icon-menu3:before {
    content: "\e9bf";
}

.icon-menu4:before {
    content: "\e9c0";
}

.icon-cloud:before {
    content: "\e9c1";
}

.icon-cloud-download:before {
    content: "\e9c2";
}

.icon-cloud-upload:before {
    content: "\e9c3";
}

.icon-cloud-check:before {
    content: "\e9c4";
}

.icon-download2:before {
    content: "\e9c5";
}

.icon-upload2:before {
    content: "\e9c6";
}

.icon-download3:before {
    content: "\e9c7";
}

.icon-upload3:before {
    content: "\e9c8";
}

.icon-sphere:before {
    content: "\e9c9";
}

.icon-earth:before {
    content: "\e9ca";
}

.icon-link:before {
    content: "\e9cb";
}

.icon-flag:before {
    content: "\e9cc";
}

.icon-attachment:before {
    content: "\e9cd";
}

.icon-eye:before {
    content: "\e9ce";
}

.icon-eye-plus:before {
    content: "\e9cf";
}

.icon-eye-minus:before {
    content: "\e9d0";
}

.icon-eye-blocked:before {
    content: "\e9d1";
}

.icon-bookmark:before {
    content: "\e9d2";
}

.icon-bookmarks:before {
    content: "\e9d3";
}

.icon-sun:before {
    content: "\e9d4";
}

.icon-contrast:before {
    content: "\e9d5";
}

.icon-brightness-contrast:before {
    content: "\e9d6";
}

.icon-star-empty:before {
    content: "\e9d7";
}

.icon-star-half:before {
    content: "\e9d8";
}

.icon-star-full:before {
    content: "\e9d9";
}

.icon-heart:before {
    content: "\e9da";
}

.icon-heart-broken:before {
    content: "\e9db";
}

.icon-man:before {
    content: "\e9dc";
}

.icon-woman:before {
    content: "\e9dd";
}

.icon-man-woman:before {
    content: "\e9de";
}

.icon-happy:before {
    content: "\e9df";
}

.icon-happy2:before {
    content: "\e9e0";
}

.icon-smile:before {
    content: "\e9e1";
}

.icon-smile2:before {
    content: "\e9e2";
}

.icon-tongue:before {
    content: "\e9e3";
}

.icon-tongue2:before {
    content: "\e9e4";
}

.icon-sad:before {
    content: "\e9e5";
}

.icon-sad2:before {
    content: "\e9e6";
}

.icon-wink:before {
    content: "\e9e7";
}

.icon-wink2:before {
    content: "\e9e8";
}

.icon-grin:before {
    content: "\e9e9";
}

.icon-grin2:before {
    content: "\e9ea";
}

.icon-cool:before {
    content: "\e9eb";
}

.icon-cool2:before {
    content: "\e9ec";
}

.icon-angry:before {
    content: "\e9ed";
}

.icon-angry2:before {
    content: "\e9ee";
}

.icon-evil:before {
    content: "\e9ef";
}

.icon-evil2:before {
    content: "\e9f0";
}

.icon-shocked:before {
    content: "\e9f1";
}

.icon-shocked2:before {
    content: "\e9f2";
}

.icon-baffled:before {
    content: "\e9f3";
}

.icon-baffled2:before {
    content: "\e9f4";
}

.icon-confused:before {
    content: "\e9f5";
}

.icon-confused2:before {
    content: "\e9f6";
}

.icon-neutral:before {
    content: "\e9f7";
}

.icon-neutral2:before {
    content: "\e9f8";
}

.icon-hipster:before {
    content: "\e9f9";
}

.icon-hipster2:before {
    content: "\e9fa";
}

.icon-wondering:before {
    content: "\e9fb";
}

.icon-wondering2:before {
    content: "\e9fc";
}

.icon-sleepy:before {
    content: "\e9fd";
}

.icon-sleepy2:before {
    content: "\e9fe";
}

.icon-frustrated:before {
    content: "\e9ff";
}

.icon-frustrated2:before {
    content: "\ea00";
}

.icon-crying:before {
    content: "\ea01";
}

.icon-crying2:before {
    content: "\ea02";
}

.icon-point-up:before {
    content: "\ea03";
}

.icon-point-right:before {
    content: "\ea04";
}

.icon-point-down:before {
    content: "\ea05";
}

.icon-point-left:before {
    content: "\ea06";
}

.icon-warning:before {
    content: "\ea07";
}

.icon-notification:before {
    content: "\ea08";
}

.icon-question:before {
    content: "\ea09";
}

.icon-plus:before {
    content: "\ea0a";
}

.icon-minus:before {
    content: "\ea0b";
}

.icon-info:before {
    content: "\ea0c";
}

.icon-cancel-circle:before {
    content: "\ea0d";
}

.icon-blocked:before {
    content: "\ea0e";
}

.icon-cross:before {
    content: "\ea0f";
}

.icon-checkmark:before {
    content: "\ea10";
}

.icon-checkmark2:before {
    content: "\ea11";
}

.icon-spell-check:before {
    content: "\ea12";
}

.icon-enter:before {
    content: "\ea13";
}

.icon-exit:before {
    content: "\ea14";
}

.icon-play2:before {
    content: "\ea15";
}

.icon-pause:before {
    content: "\ea16";
}

.icon-stop:before {
    content: "\ea17";
}

.icon-previous:before {
    content: "\ea18";
}

.icon-next:before {
    content: "\ea19";
}

.icon-backward:before {
    content: "\ea1a";
}

.icon-forward2:before {
    content: "\ea1b";
}

.icon-play3:before {
    content: "\ea1c";
}

.icon-pause2:before {
    content: "\ea1d";
}

.icon-stop2:before {
    content: "\ea1e";
}

.icon-backward2:before {
    content: "\ea1f";
}

.icon-forward3:before {
    content: "\ea20";
}

.icon-first:before {
    content: "\ea21";
}

.icon-last:before {
    content: "\ea22";
}

.icon-previous2:before {
    content: "\ea23";
}

.icon-next2:before {
    content: "\ea24";
}

.icon-eject:before {
    content: "\ea25";
}

.icon-volume-high:before {
    content: "\ea26";
}

.icon-volume-medium:before {
    content: "\ea27";
}

.icon-volume-low:before {
    content: "\ea28";
}

.icon-volume-mute:before {
    content: "\ea29";
}

.icon-volume-mute2:before {
    content: "\ea2a";
}

.icon-volume-increase:before {
    content: "\ea2b";
}

.icon-volume-decrease:before {
    content: "\ea2c";
}

.icon-loop:before {
    content: "\ea2d";
}

.icon-loop2:before {
    content: "\ea2e";
}

.icon-infinite:before {
    content: "\ea2f";
}

.icon-shuffle:before {
    content: "\ea30";
}

.icon-arrow-up-left:before {
    content: "\ea31";
}

.icon-arrow-up:before {
    content: "\ea32";
}

.icon-arrow-up-right:before {
    content: "\ea33";
}

.icon-arrow-right:before {
    content: "\ea34";
}

.icon-arrow-down-right:before {
    content: "\ea35";
}

.icon-arrow-down:before {
    content: "\ea36";
}

.icon-arrow-down-left:before {
    content: "\ea37";
}

.icon-arrow-left:before {
    content: "\ea38";
}

.icon-arrow-up-left2:before {
    content: "\ea39";
}

.icon-arrow-up2:before {
    content: "\ea3a";
}

.icon-arrow-up-right2:before {
    content: "\ea3b";
}

.icon-arrow-right2:before {
    content: "\ea3c";
}

.icon-arrow-down-right2:before {
    content: "\ea3d";
}

.icon-arrow-down2:before {
    content: "\ea3e";
}

.icon-arrow-down-left2:before {
    content: "\ea3f";
}

.icon-arrow-left2:before {
    content: "\ea40";
}

.icon-circle-up:before {
    content: "\ea41";
}

.icon-circle-right:before {
    content: "\ea42";
}

.icon-circle-down:before {
    content: "\ea43";
}

.icon-circle-left:before {
    content: "\ea44";
}

.icon-tab:before {
    content: "\ea45";
}

.icon-move-up:before {
    content: "\ea46";
}

.icon-move-down:before {
    content: "\ea47";
}

.icon-sort-alpha-asc:before {
    content: "\ea48";
}

.icon-sort-alpha-desc:before {
    content: "\ea49";
}

.icon-sort-numeric-asc:before {
    content: "\ea4a";
}

.icon-sort-numberic-desc:before {
    content: "\ea4b";
}

.icon-sort-amount-asc:before {
    content: "\ea4c";
}

.icon-sort-amount-desc:before {
    content: "\ea4d";
}

.icon-command:before {
    content: "\ea4e";
}

.icon-shift:before {
    content: "\ea4f";
}

.icon-ctrl:before {
    content: "\ea50";
}

.icon-opt:before {
    content: "\ea51";
}

.icon-checkbox-checked:before {
    content: "\ea52";
}

.icon-checkbox-unchecked:before {
    content: "\ea53";
}

.icon-radio-checked:before {
    content: "\ea54";
}

.icon-radio-checked2:before {
    content: "\ea55";
}

.icon-radio-unchecked:before {
    content: "\ea56";
}

.icon-crop:before {
    content: "\ea57";
}

.icon-make-group:before {
    content: "\ea58";
}

.icon-ungroup:before {
    content: "\ea59";
}

.icon-scissors:before {
    content: "\ea5a";
}

.icon-filter:before {
    content: "\ea5b";
}

.icon-font:before {
    content: "\ea5c";
}

.icon-ligature:before {
    content: "\ea5d";
}

.icon-ligature2:before {
    content: "\ea5e";
}

.icon-text-height:before {
    content: "\ea5f";
}

.icon-text-width:before {
    content: "\ea60";
}

.icon-font-size:before {
    content: "\ea61";
}

.icon-bold:before {
    content: "\ea62";
}

.icon-underline:before {
    content: "\ea63";
}

.icon-italic:before {
    content: "\ea64";
}

.icon-strikethrough:before {
    content: "\ea65";
}

.icon-omega:before {
    content: "\ea66";
}

.icon-sigma:before {
    content: "\ea67";
}

.icon-page-break:before {
    content: "\ea68";
}

.icon-superscript:before {
    content: "\ea69";
}

.icon-subscript:before {
    content: "\ea6a";
}

.icon-superscript2:before {
    content: "\ea6b";
}

.icon-subscript2:before {
    content: "\ea6c";
}

.icon-text-color:before {
    content: "\ea6d";
}

.icon-pagebreak:before {
    content: "\ea6e";
}

.icon-clear-formatting:before {
    content: "\ea6f";
}

.icon-table:before {
    content: "\ea70";
}

.icon-table2:before {
    content: "\ea71";
}

.icon-insert-template:before {
    content: "\ea72";
}

.icon-pilcrow:before {
    content: "\ea73";
}

.icon-ltr:before {
    content: "\ea74";
}

.icon-rtl:before {
    content: "\ea75";
}

.icon-section:before {
    content: "\ea76";
}

.icon-paragraph-left:before {
    content: "\ea77";
}

.icon-paragraph-center:before {
    content: "\ea78";
}

.icon-paragraph-right:before {
    content: "\ea79";
}

.icon-paragraph-justify:before {
    content: "\ea7a";
}

.icon-indent-increase:before {
    content: "\ea7b";
}

.icon-indent-decrease:before {
    content: "\ea7c";
}

.icon-share:before {
    content: "\ea7d";
}

.icon-new-tab:before {
    content: "\ea7e";
}

.icon-embed:before {
    content: "\ea7f";
}

.icon-embed2:before {
    content: "\ea80";
}

.icon-terminal:before {
    content: "\ea81";
}

.icon-share2:before {
    content: "\ea82";
}

.icon-mail:before {
    content: "\ea83";
}

.icon-mail2:before {
    content: "\ea84";
}

.icon-mail3:before {
    content: "\ea85";
}

.icon-mail4:before {
    content: "\ea86";
}

.icon-amazon:before {
    content: "\ea87";
}

.icon-google:before {
    content: "\ea88";
}

.icon-google2:before {
    content: "\ea89";
}

.icon-google3:before {
    content: "\ea8a";
}

.icon-google-plus:before {
    content: "\ea8b";
}

.icon-google-plus2:before {
    content: "\ea8c";
}

.icon-google-plus3:before {
    content: "\ea8d";
}

.icon-hangouts:before {
    content: "\ea8e";
}

.icon-google-drive:before {
    content: "\ea8f";
}

.icon-facebook:before {
    content: "\ea90";
}

.icon-facebook2:before {
    content: "\ea91";
}

.icon-instagram:before {
    content: "\ea92";
}

.icon-whatsapp:before {
    content: "\ea93";
}

.icon-spotify:before {
    content: "\ea94";
}

.icon-telegram:before {
    content: "\ea95";
}

.icon-twitter:before {
    content: "\ea96";
}

.icon-vine:before {
    content: "\ea97";
}

.icon-vk:before {
    content: "\ea98";
}

.icon-renren:before {
    content: "\ea99";
}

.icon-sina-weibo:before {
    content: "\ea9a";
}

.icon-rss:before {
    content: "\ea9b";
}

.icon-rss2:before {
    content: "\ea9c";
}

.icon-youtube:before {
    content: "\ea9d";
}

.icon-youtube2:before {
    content: "\ea9e";
}

.icon-twitch:before {
    content: "\ea9f";
}

.icon-vimeo:before {
    content: "\eaa0";
}

.icon-vimeo2:before {
    content: "\eaa1";
}

.icon-lanyrd:before {
    content: "\eaa2";
}

.icon-flickr:before {
    content: "\eaa3";
}

.icon-flickr2:before {
    content: "\eaa4";
}

.icon-flickr3:before {
    content: "\eaa5";
}

.icon-flickr4:before {
    content: "\eaa6";
}

.icon-dribbble:before {
    content: "\eaa7";
}

.icon-behance:before {
    content: "\eaa8";
}

.icon-behance2:before {
    content: "\eaa9";
}

.icon-deviantart:before {
    content: "\eaaa";
}

.icon-500px:before {
    content: "\eaab";
}

.icon-steam:before {
    content: "\eaac";
}

.icon-steam2:before {
    content: "\eaad";
}

.icon-dropbox:before {
    content: "\eaae";
}

.icon-onedrive:before {
    content: "\eaaf";
}

.icon-github:before {
    content: "\eab0";
}

.icon-npm:before {
    content: "\eab1";
}

.icon-basecamp:before {
    content: "\eab2";
}

.icon-trello:before {
    content: "\eab3";
}

.icon-wordpress:before {
    content: "\eab4";
}

.icon-joomla:before {
    content: "\eab5";
}

.icon-ello:before {
    content: "\eab6";
}

.icon-blogger:before {
    content: "\eab7";
}

.icon-blogger2:before {
    content: "\eab8";
}

.icon-tumblr:before {
    content: "\eab9";
}

.icon-tumblr2:before {
    content: "\eaba";
}

.icon-yahoo:before {
    content: "\eabb";
}

.icon-yahoo2:before {
    content: "\eabc";
}

.icon-tux:before {
    content: "\eabd";
}

.icon-appleinc:before {
    content: "\eabe";
}

.icon-finder:before {
    content: "\eabf";
}

.icon-android:before {
    content: "\eac0";
}

.icon-windows:before {
    content: "\eac1";
}

.icon-windows8:before {
    content: "\eac2";
}

.icon-soundcloud:before {
    content: "\eac3";
}

.icon-soundcloud2:before {
    content: "\eac4";
}

.icon-skype:before {
    content: "\eac5";
}

.icon-reddit:before {
    content: "\eac6";
}

.icon-hackernews:before {
    content: "\eac7";
}

.icon-wikipedia:before {
    content: "\eac8";
}

.icon-linkedin:before {
    content: "\eac9";
}

.icon-linkedin2:before {
    content: "\eaca";
}

.icon-lastfm:before {
    content: "\eacb";
}

.icon-lastfm2:before {
    content: "\eacc";
}

.icon-delicious:before {
    content: "\eacd";
}

.icon-stumbleupon:before {
    content: "\eace";
}

.icon-stumbleupon2:before {
    content: "\eacf";
}

.icon-stackoverflow:before {
    content: "\ead0";
}

.icon-pinterest:before {
    content: "\ead1";
}

.icon-pinterest2:before {
    content: "\ead2";
}

.icon-xing:before {
    content: "\ead3";
}

.icon-xing2:before {
    content: "\ead4";
}

.icon-flattr:before {
    content: "\ead5";
}

.icon-foursquare:before {
    content: "\ead6";
}

.icon-yelp:before {
    content: "\ead7";
}

.icon-paypal:before {
    content: "\ead8";
}

.icon-chrome:before {
    content: "\ead9";
}

.icon-firefox:before {
    content: "\eada";
}

.icon-IE:before {
    content: "\eadb";
}

.icon-edge:before {
    content: "\eadc";
}

.icon-safari:before {
    content: "\eadd";
}

.icon-opera:before {
    content: "\eade";
}

.icon-file-pdf:before {
    content: "\eadf";
}

.icon-file-openoffice:before {
    content: "\eae0";
}

.icon-file-word:before {
    content: "\eae1";
}

.icon-file-excel:before {
    content: "\eae2";
}

.icon-libreoffice:before {
    content: "\eae3";
}

.icon-html-five:before {
    content: "\eae4";
}

.icon-html-five2:before {
    content: "\eae5";
}

.icon-css3:before {
    content: "\eae6";
}

.icon-git:before {
    content: "\eae7";
}

.icon-codepen:before {
    content: "\eae8";
}

.icon-svg:before {
    content: "\eae9";
}

.icon-IcoMoon:before {
    content: "\eaea";
}

.icon-uni21:before {
    content: "\21";
}

.icon-uni22:before {
    content: "\22";
}

.icon-uni23:before {
    content: "\23";
}

.icon-uni24:before {
    content: "\24";
}

.icon-uni25:before {
    content: "\25";
}

.icon-uni26:before {
    content: "\26";
}

.icon-uni27:before {
    content: "\27";
}

.icon-uni28:before {
    content: "\28";
}

.icon-uni29:before {
    content: "\29";
}

.icon-uni2A:before {
    content: "\2a";
}

.icon-uni2B:before {
    content: "\2b";
}

.icon-uni2C:before {
    content: "\2c";
}

.icon-uni2D:before {
    content: "\2d";
}

.icon-uni2E:before {
    content: "\2e";
}

.icon-uni2F:before {
    content: "\2f";
}

.icon-uni30:before {
    content: "\30";
}

.icon-uni31:before {
    content: "\31";
}

.icon-uni32:before {
    content: "\32";
}

.icon-uni33:before {
    content: "\33";
}

.icon-uni34:before {
    content: "\34";
}

.icon-uni35:before {
    content: "\35";
}

.icon-uni36:before {
    content: "\36";
}

.icon-uni37:before {
    content: "\37";
}

.icon-uni38:before {
    content: "\38";
}

.icon-uni39:before {
    content: "\39";
}

.icon-uni3A:before {
    content: "\3a";
}

.icon-uni3B:before {
    content: "\3b";
}

.icon-uni3C:before {
    content: "\3c";
}

.icon-uni3D:before {
    content: "\3d";
}

.icon-uni3E:before {
    content: "\3e";
}

.icon-uni3F:before {
    content: "\3f";
}

.icon-uni40:before {
    content: "\40";
}

.icon-uni41:before {
    content: "\41";
}

.icon-uni42:before {
    content: "\42";
}

.icon-uni43:before {
    content: "\43";
}

.icon-uni44:before {
    content: "\44";
}

.icon-uni45:before {
    content: "\45";
}

.icon-uni46:before {
    content: "\46";
}

.icon-uni47:before {
    content: "\47";
}

.icon-uni48:before {
    content: "\48";
}

.icon-uni49:before {
    content: "\49";
}

.icon-uni4A:before {
    content: "\4a";
}

.icon-uni4B:before {
    content: "\4b";
}

.icon-uni4C:before {
    content: "\4c";
}

.icon-uni4D:before {
    content: "\4d";
}

.icon-uni4E:before {
    content: "\4e";
}

.icon-uni4F:before {
    content: "\4f";
}

.icon-uni50:before {
    content: "\50";
}

.icon-uni51:before {
    content: "\51";
}

.icon-uni52:before {
    content: "\52";
}

.icon-uni53:before {
    content: "\53";
}

.icon-uni54:before {
    content: "\54";
}

.icon-uni55:before {
    content: "\55";
}

.icon-uni56:before {
    content: "\56";
}

.icon-uni57:before {
    content: "\57";
}

.icon-uni58:before {
    content: "\58";
}

.icon-uni59:before {
    content: "\59";
}

.icon-uni5A:before {
    content: "\5a";
}

.icon-uni5B:before {
    content: "\5b";
}

.icon-uni5C:before {
    content: "\5c";
}

.icon-uni5D:before {
    content: "\5d";
}

.icon-uni5E:before {
    content: "\5e";
}

.icon-uni5F:before {
    content: "\5f";
}

.icon-uni60:before {
    content: "\60";
}

.icon-uni61:before {
    content: "\61";
}

.icon-uni62:before {
    content: "\62";
}

.icon-uni63:before {
    content: "\63";
}

.icon-uni64:before {
    content: "\64";
}

.icon-uni65:before {
    content: "\65";
}

.icon-uni66:before {
    content: "\66";
}

.icon-uni67:before {
    content: "\67";
}

.icon-uni68:before {
    content: "\68";
}

.icon-uni69:before {
    content: "\69";
}

.icon-uni6A:before {
    content: "\6a";
}

.icon-uni6B:before {
    content: "\6b";
}

.icon-uni6C:before {
    content: "\6c";
}

.icon-uni6D:before {
    content: "\6d";
}

.icon-uni6E:before {
    content: "\6e";
}

.icon-uni6F:before {
    content: "\6f";
}

.icon-uni70:before {
    content: "\70";
}

.icon-uni71:before {
    content: "\71";
}

.icon-uni72:before {
    content: "\72";
}

.icon-uni73:before {
    content: "\73";
}

.icon-uni74:before {
    content: "\74";
}

.icon-uni75:before {
    content: "\75";
}

.icon-uni76:before {
    content: "\76";
}

.icon-uni77:before {
    content: "\77";
}

.icon-uni78:before {
    content: "\78";
}

.icon-uni79:before {
    content: "\79";
}

.icon-uni7A:before {
    content: "\7a";
}

.icon-uni7B:before {
    content: "\7b";
}

.icon-uni7C:before {
    content: "\7c";
}

.icon-uni7D:before {
    content: "\7d";
}

.icon-uni7E:before {
    content: "\7e";
}

.icon-uniA9:before {
    content: "\a9";
}

/*
 *  Owl Carousel - Core
 */
.owl-carousel {
    display: none;
    width: 100%;
    -webkit-tap-highlight-color: transparent;
    /* position relative and z-index fix webkit rendering fonts issue */
    position: relative;
    z-index: 1;
}

    .owl-carousel .owl-stage {
        position: relative;
        -ms-touch-action: pan-Y;
        -moz-backface-visibility: hidden;
        /* fix firefox animation glitch */
    }

        .owl-carousel .owl-stage:after {
            content: ".";
            display: block;
            clear: both;
            visibility: hidden;
            line-height: 0;
            height: 0;
        }

    .owl-carousel .owl-stage-outer {
        position: relative;
        overflow: hidden;
        /* fix for flashing background */
        -webkit-transform: translate3d(0px, 0px, 0px);
    }

    .owl-carousel .owl-wrapper,
    .owl-carousel .owl-item {
        -webkit-backface-visibility: hidden;
        -moz-backface-visibility: hidden;
        -ms-backface-visibility: hidden;
        -webkit-transform: translate3d(0, 0, 0);
        -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
        overflow: hidden;
    }

    .owl-carousel .owl-item {
        position: relative;
        min-height: 1px;
        float: left;
        -webkit-backface-visibility: hidden;
        -webkit-tap-highlight-color: transparent;
        -webkit-touch-callout: none;
    }

        .owl-carousel .owl-item img {
            display: block;
            width: 100%;
        }

    .owl-carousel .owl-nav.disabled,
    .owl-carousel .owl-dots.disabled {
        display: none;
    }

    .owl-carousel .owl-nav .owl-prev,
    .owl-carousel .owl-nav .owl-next,
    .owl-carousel .owl-dot {
        cursor: pointer;
        cursor: hand;
        -webkit-user-select: none;
        -khtml-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }

    .owl-carousel.owl-loaded {
        display: block;
    }

    .owl-carousel.owl-loading {
        opacity: 0;
        display: block;
    }

    .owl-carousel.owl-hidden {
        opacity: 0;
    }

    .owl-carousel.owl-refresh .owl-item {
        visibility: hidden;
    }

    .owl-carousel.owl-drag .owl-item {
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }

    .owl-carousel.owl-grab {
        cursor: move;
        cursor: grab;
    }

    .owl-carousel.owl-rtl {
        direction: rtl;
    }

        .owl-carousel.owl-rtl .owl-item {
            float: right;
        }

/* No Js */
.no-js .owl-carousel {
    display: block;
}

/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
    animation-duration: 1000ms;
    animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
    z-index: 0;
}

.owl-carousel .owl-animated-out {
    z-index: 1;
}

.owl-carousel .fadeOut {
    animation-name: fadeOut;
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
    transition: height 500ms ease-in-out;
}

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item .owl-lazy {
    opacity: 0;
    transition: opacity 400ms ease;
}

.owl-carousel .owl-item img.owl-lazy {
    transform-style: preserve-3d;
}

/*
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
    position: relative;
    height: 100%;
    background: #000;
}

.owl-carousel .owl-video-play-icon {
    position: absolute;
    height: 80px;
    width: 80px;
    left: 50%;
    top: 50%;
    margin-left: -40px;
    margin-top: -40px;
    background: url("owl.video.play.png") no-repeat;
    cursor: pointer;
    z-index: 1;
    -webkit-backface-visibility: hidden;
    transition: transform 100ms ease;
}

    .owl-carousel .owl-video-play-icon:hover {
        transform: scale(1.3, 1.3);
    }

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
    display: none;
}

.owl-carousel .owl-video-tn {
    opacity: 0;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    transition: opacity 400ms ease;
}

.owl-carousel .owl-video-frame {
    position: relative;
    z-index: 1;
    height: 100%;
    width: 100%;
}

.owl-carousel {
    position: relative;
}

    .owl-carousel .owl-dots {
        position: absolute;
        top: -19px;
        right: 0;
    }

    .owl-carousel .owl-dot {
        width: 13px;
        height: 13px;
        display: inline-block;
        background-color: #c7cdd1;
        margin-left: 6px;
    }

        .owl-carousel .owl-dot:first-child {
            margin-left: 0;
        }

        .owl-carousel .owl-dot.active {
            background-color: #a93228;
        }

/* components */
body {
    -webkit-text-size-adjust: none;
}

    body.japanies-font * {
        font-family: 'Noto_Sans_JP', sans-serif !important;
    }

header {
    height: 100px;
    background: #131829;
}

@media (min-width: 768px) {
    header {
        height: auto;
    }
}

.globalHeader {
    background: #131829;
    /*z-index: 101;*/
    z-index: 99999;
    width: 100%;
    position: relative;
    padding: 1.5em 0;
}

@media (min-width: 768px) {
    .globalHeader {
        background: rgba(19, 24, 41, 0.85);
    }
}

.globalHeader .logo {
    float: left;
    max-width: 205px;
    width: 185px;
}

@media (min-width: 768px) {
    .globalHeader .logo {
        width: auto;
    }
}

.globalHeader .logo a {
    display: block;
}

.globalHeader .rightSection {
    padding: 7px 0 0;
}

.bodyFixed {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    overflow: hidden !important;
}

input[type="text"]::-ms-clear {
    display: none;
}

@media (min-width: 768px) {
    .container .header-menu {
        padding-right: 0px;
    }
}

.locationCards .card.aos-init .caption address span a:nth-child(2) {
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    color: #242738;
}

    .locationCards .card.aos-init .caption address span a:nth-child(2):hover {
        color: #242738;
    }

@media screen and (min-device-width: 480px) and (max-device-width: 768px) {
    .locationCards .card {
        width: 40%;
        float: left;
        margin: 0 5%;
        height: 314px;
    }

        .locationCards .card figure {
            max-height: 160px;
        }
}

/*BTlaw-1333*/
.experience-heading-container a.nav-link.experience-heading {
    background-color: #2880db;
    border-radius: 10px;
    padding: 12px;
    display: inline-block;
    min-width: 100px;
    text-align: center;
    margin-right: 25px;
    color: #ffffff;
    cursor: pointer;
    margin-bottom: 15px;
}

/*
@media (min-width: 1170px){
    .event-detail,.margin-fix-news-detail,.isLocationDetail{
        .secondaryContent {
            padding-left: 3em;
            margin-left: 0em;
            width: 44%;
        }
        .primaryContent {
            width: 74%;
            margin: -19px 3em;
            padding-top: 20px;
        }
    }
    
}


    .secondaryContent{
        padding-right: 0px;
        @media (min-width: 1170px){
            padding-right: 30px;
        }
        
    }
*/
.globalHeader figure.logo.aos-init.aos-animate a img {
    left: 0;
}

@media only screen and (min-width: 768px) {
    .globalHeader figure.logo.aos-init.aos-animate a img {
        position: relative;
        left: -10%;
    }
}

@media only screen and (min-width: 1280px) {
    .globalHeader figure.logo.aos-init.aos-animate a img {
        position: relative;
        left: -20%;
    }
}

@media only screen and (min-width: 1300px) {
    .globalHeader figure.logo.aos-init.aos-animate a img {
        position: relative;
        left: -36%;
    }
}

@media only screen and (min-width: 1800px) {
    .globalHeader figure.logo.aos-init.aos-animate a img {
        position: relative;
        left: -120%;
    }
}

@media only screen and (min-width: 768px) {
    .globalHeader .header-menu .aos-init.aos-animate {
        position: relative;
        right: 4%;
    }
}

@media only screen and (min-width: 1280px) {
    .globalHeader .header-menu .aos-init.aos-animate {
        position: relative;
        right: -5%;
    }
}

@media only screen and (min-width: 1800px) {
    .globalHeader .header-menu .aos-init.aos-animate {
        right: -20%;
    }
}

@media only screen and (min-width: 768px) {
    .globalFooter .container .col-md-10 .copyRight, .globalFooter .container .col-md-10 .text-lg-center {
        position: relative;
        left: -2%;
    }
}

@media only screen and (min-width: 1380px) {
    .globalFooter .container .col-md-10 .copyRight {
        position: relative;
        left: -6%;
    }
}

@media only screen and (min-width: 1800px) {
    .globalFooter .container .col-md-10 .copyRight {
        position: relative;
        left: -20%;
    }
}

@media only screen and (min-width: 768px) {
    .globalFooter .container .col-md-2 {
        position: relative;
        right: 2%;
    }
}

@media only screen and (min-width: 1280px) {
    .globalFooter .container .col-md-2 {
        position: relative;
        right: -4%;
    }
}

@media only screen and (min-width: 1800px) {
    .globalFooter .container .col-md-2 {
        position: relative;
        left: 14%;
    }
}

.breifcase .mybriefcase-count {
    display: inline-block;
    color: #b8b4b4;
    position: absolute;
    top: -19px;
    left: 20px;
}

@media (min-width: 768px) {
    .breifcase .mybriefcase-count {
        display: none;
    }
}

.isLocationDetail.page.location_detail_outer {
    /*background-color: #121728; */
    z-index: 1;
}

    .isLocationDetail.page.location_detail_outer .infoBox.tintMedium {
        background-color: #fff;
    }

@media (min-width: 768px) {
    .isLocationDetail.page.location_detail_outer .infoBox.tintMedium {
        background: rgba(0, 0, 0, 0.45);
    }
}

.isLocationDetail.page.location_detail_outer .infoBox.tintDark {
    background-color: #fff;
}

@media (min-width: 768px) {
    .isLocationDetail.page.location_detail_outer .infoBox.tintDark {
        background: rgba(0, 0, 0, 0.75);
    }
}

.isLocationDetail.page.location_detail_outer .edyTabs {
    background-color: #fff;
}

@media (min-width: 768px) {
    .isLocationDetail.page.location_detail_outer .blogs-bar {
        margin-top: 5.5em;
    }

    .isLocationDetail.page.location_detail_outer .blogs-land-bar {
        margin-top: 0;
    }
}

.form-container .disable-send-btn {
    pointer-events: none;
    opacity: 0.7;
}

/*for the profeshinal listing page */
.social-icon li a {
    -moz-transition: top 0.5s ease;
    -o-transition: top 0.5s ease;
    -webkit-transition: top 0.5s ease;
    transition: top 0.5s ease;
}

    .social-icon li a:hover {
        color: orange;
    }

.caption .contactInfo a p {
    -moz-transition: top 0.5s ease;
    -o-transition: top 0.5s ease;
    -webkit-transition: top 0.5s ease;
    transition: top 0.5s ease;
}

    .caption .contactInfo a p:hover {
        color: #4fc6de;
    }

.introBox .caption h4 a {
    color: #4fc6de;
    -moz-transition: top 0.5s ease;
    -o-transition: top 0.5s ease;
    -webkit-transition: top 0.5s ease;
    transition: top 0.5s ease;
}

    .introBox .caption h4 a:hover {
        color: orange;
    }

.peopleBanner .introBox h1 div {
    text-transform: none;
}

@media (min-width: 768px) {
    .innerWrap.innerWrap-location-detail .infoBlock.social-result .col-lg-6.col-sm-9.col-xs-12 {
        padding-right: 25px;
    }
}

.sb-search.sb-search-open + .search-panel-global {
    overflow-y: scroll;
    max-height: 70vh;
}

@media (max-width: 767px) {
    .sb-search.sb-search-open + .search-panel-global.opened-keyboard {
        max-height: 40vh;
    }
}

.sb-search.sb-search-open + .search-panel-global li a {
    color: #fff;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

    .sb-search.sb-search-open + .search-panel-global li a:hover {
        color: orange;
    }

ul.search-panel-global {
    display: none;
    background-color: #363a49;
    color: #fff;
    width: 100%;
    position: fixed;
    right: 0;
    left: 0;
    top: 140px;
    display: none;
    list-style: none;
    padding: 0px 20px;
    z-index: 1;
}

@media (min-width: 768px) {
    ul.search-panel-global {
        position: absolute;
        left: 20%;
        width: 65%;
        top: 17px;
        max-width: 520px;
        background-color: #363a49;
        color: #fff;
        padding: 0px;
        transition: all 0.5s linear;
        transform: translateY(20px);
        transition: transform 0.4s ease;
    }
}

@media only screen and (max-width: 989px) and (min-width: 768px) {
    ul.search-panel-global {
        left: 10%;
        width: 61%;
    }
}

@media only screen and (max-width: 1169px) and (min-width: 990px) {
    ul.search-panel-global {
        left: 90px;
        width: 65%;
    }
}

ul.search-panel-global li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    padding: 5px 5px;
    cursor: pointer;
}

    ul.search-panel-global li.selected {
        /*background-color: darkgrey;*/ color: #4fc6de;
    }
/*ul.search-panel-global li:hover {
  color: #4fc6de;}*/

.search-section .formGroup .large-search {
    padding-right: 50px;
}

.hiddenContainer {
    max-height: 100vh;
    position: relative;
}

#biosearchdiv ul.search-panel-global {
    display: block;
    left: 15px;
    width: calc(100% - 30px);
    max-width: 100%;
    top: 0;
    background-color: #fff;
    border: 1px solid #f1f1f1;
    position: absolute;
}

@media (max-width: 767px) {
    #biosearchdiv ul.search-panel-global {
        padding: 0;
        top: calc(100% - 15px);
    }
}

#biosearchdiv ul.search-panel-global li {
    border-bottom: 1px solid #ccc;
    color: #000;
}

    #biosearchdiv ul.search-panel-global li.selected {
        background: #e4e4e4;
    }

@media (min-width: 768px) {
    .secondaryContent {
        width: 55.6%;
        padding-left: 1.5em;
        margin-left: 1.5em;
        border-left: 1px solid #b0b8bd;
        min-height: 26em;
    }
}

@media only screen and (max-width: 1024px) and (min-width: 992px) {
    .secondaryContent {
        padding-right: 30px;
    }
}

@media (min-width: 1170px) {
    .secondaryContent {
        padding-left: 3em;
        margin-left: 3em;
        width: 47.6%;
    }
}

.secondaryContent .top_gap {
    margin-top: 6%;
}

    .secondaryContent .top_gap li {
        border-bottom: none !important;
    }

.secondaryContent .innerWrap {
    list-style: none;
    display: block;
    overflow: hidden;
}

    .secondaryContent .innerWrap > li {
        margin-bottom: 3em;
        float: left;
        width: 100%;
    }

    .secondaryContent .innerWrap .btn {
        width: 100%;
    }

@media (min-width: 768px) {
    .secondaryContent .innerWrap .btn {
        padding: 10px 0;
    }
}

.secondaryContent .innerWrap .btn-submit {
    width: 100%;
}

.secondaryContent h2 {
    font-size: 1.533em;
    line-height: 1;
    font-family: Proxima-Nova-Thin, sans-serif !important;
    margin-bottom: 0.40em;
    color: #000;
}

/* firefox specific */
html {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-smoothing: antialiased;
    font-weight: 400;
}

@-moz-document url-prefix() {
    body {
        font-weight: lighter !important;
    }
}

@font-face {
    font-family: "Proxima-Nova-Alt-Rg";
    src: url("../fonts/ProximaNovaAltRegular-webfont.eot");
    src: url("../fonts/ProximaNovaAltRegular-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/ProximaNovaAltRegular-webfont.woff") format("woff"), url("../fonts/ProximaNovaAltRegular-webfont.woff2") format("woff2"), url("../fonts/ProximaNovaAltRegular-webfont.svg#Proxima-Nova-Alt-Rg") format("svg");
}

@font-face {
    font-family: "Proxima-Nova-Alt-Bold";
    src: url("../fonts/ProximaNovaAltBold-webfont.eot");
    src: url("../fonts/ProximaNovaAltBold-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/ProximaNovaAltBold-webfont.woff") format("woff"), url("../fonts/ProximaNovaAltBold-webfont.woff2") format("woff2"), url("../fonts/ProximaNovaAltBold-webfont.svg#Proxima-Nova-Alt-Bold") format("svg");
}

@font-face {
    font-family: "Proxima-Nova-Alt-SemiBold";
    src: url("../fonts/ProximaNovaSemibold-webfont.eot");
    src: url("../fonts/ProximaNovaSemibold-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/ProximaNovaSemibold-webfont.woff") format("woff"), url("../fonts/ProximaNovaSemibold-webfont.woff2") format("woff2"), url("../fonts/ProximaNovaSemibold-webfont.svg#Proxima-Nova-Alt-SemiBold") format("svg");
}

@font-face {
    font-family: "Proxima-Nova-Thin";
    src: url("../fonts/ProximaNovaThin-webfont.eot");
    src: url("../fonts/ProximaNovaThin-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/ProximaNovaThin-webfont.woff") format("woff"), url("../fonts/ProximaNovaThin-webfont.woff2") format("woff2"), url("../fonts/ProximaNovaThin-webfont.svg#Proxima-Nova-Thin") format("svg");
}

@font-face {
    font-family: 'Noto_Sans_JP';
    src: url("../fonts/ja_font/NotoSansJP-Black.otf") format("otf"), url("../fonts/ja_font/NotoSansJP-Bold.otf") format("otf"), url("../fonts/ja_font/NotoSansJP-Light.otf") format("otf"), url("../fonts/ja_font/NotoSansJP-Medium.otf") format("otf"), url("../fonts/ja_font/NotoSansJP-Regular.otf") format("otf");
}

.filterGroup {
    margin-bottom: 1em;
}

    .filterGroup .formGroup {
        position: relative;
        padding-right: 0;
    }

        .filterGroup .formGroup label {
            color: #000;
            right: 15px;
        }

        .filterGroup .formGroup.filter_gap {
            margin-bottom: 2px;
        }

@media (min-width: 1170px) {
    .filterGroup .formGroup.filter_gap {
        padding-top: 8px;
    }
}

.filterGroup .formGroup .sbOptions {
    padding-left: 0;
}

.filterGroup .filter_gap {
    text-align: left;
}

@media (min-width: 768px) {
    .filterGroup .filter_gap {
        text-align: right;
    }
}

.filterGroup.practice-sec-drop {
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .filterResult {
        padding-bottom: 4em;
    }
}

.filterResult .caption ul {
    padding-left: 0;
}

.filterResult.mobile_list .vCard .caption {
    padding-left: 0;
}

@media (min-width: 768px) {
    .filterResult.mobile_list .vCard .caption {
        padding-left: 15px;
    }
}

.mobile_list .contactInfo {
    display: block;
    margin-top: 0.50em;
}

@media (min-width: 768px) {
    .mobile_list .contactInfo {
        display: block;
    }
}

.mobile_list .contactInfo p {
    margin: 0;
}

.mobile_list .social-icon {
    margin: 0;
}

.mobile_list .caption ul li {
    display: inline;
}

    .mobile_list .caption ul li:last-child {
        display: inline-block;
    }

@media (min-width: 768px) {
    .mobile_list .caption ul li:last-child {
        display: none;
    }
}

.mobile_list .caption h3 {
    color: #121728;
    font-size: 16px;
}

#btValueworks .filterResult {
    padding-bottom: 0;
}

@media (min-width: 768px) {
    #btValueworks .filterResult {
        padding-bottom: 0;
    }
}

.menuTrigger {
    margin-top: 8px;
    max-width: 90px;
    cursor: pointer;
}

.hamburger {
    text-transform: uppercase;
    cursor: pointer;
}

@media all and (min-width: 768px) {
    .hamburger {
        position: relative;
        margin-left: 60px;
        /*
        &:before {
            content: "Menu";
            position: absolute;
            right: 141%;
            font-size: 16px;
            top:75%;
            transform: translateY(-48%);
            color: $white;
        }
        &.isActive {
            &:before {
                content: "Close";
            }
        }
        */
    }
}

.hamburger.isActive .line:nth-child(1) {
    -moz-transform: translateY(8px) rotate(45deg);
    -o-transform: translateY(8px) rotate(45deg);
    -ms-transform: translateY(8px) rotate(45deg);
    -webkit-transform: translateY(8px) rotate(45deg);
    transform: translateY(8px) rotate(45deg);
}

.hamburger.isActive .line:nth-child(2) {
    opacity: 0;
}

.hamburger.isActive .line:nth-child(3) {
    -moz-transform: translateY(-8px) rotate(-45deg);
    -o-transform: translateY(-8px) rotate(-45deg);
    -ms-transform: translateY(-8px) rotate(-45deg);
    -webkit-transform: translateY(-8px) rotate(-45deg);
    transform: translateY(-8px) rotate(-45deg);
}

.hamburger .line {
    width: 25px;
    height: 3px;
    background-color: #fff;
    display: block;
    margin: 5px auto 0;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

    .hamburger .line:first-child {
        margin-top: 0;
    }

.slideBox {
    position: absolute;
    width: 100%;
    color: #fff;
    /*height: 100%;*/
    line-height: 1.15;
    top: 100%;
    z-index: 99999;
    -moz-transition: top 0.8s ease;
    -o-transition: top 0.8s ease;
    -webkit-transition: top 0.8s ease;
    transition: top 0.8s ease;
}

@media (min-width: 768px) {
    .slideBox {
        width: 424px;
        right: -424px;
        height: auto;
        min-height: 80vh;
        top: 84px;
        max-width: 424px;
        position: fixed;
        z-index: 9999;
    }
}

.slideBox p {
    color: #fff;
}

.slideBox .globalWrap {
    background-color: rgba(36, 39, 56, 0.99);
    width: 100%;
    float: right;
    height: 100%;
    box-sizing: border-box;
}

@media (min-width: 768px) {
    .slideBox .globalWrap {
        float: left;
        padding: 0;
    }
}

.slideBox .globalWrap .icon.icon-cross.right-cross {
    position: absolute;
    right: 20px;
    top: 18px;
}

@media (min-width: 768px) {
    .slideBox .globalWrap .icon.icon-cross.right-cross {
        top: 8px;
        position: absolute;
        right: 40px;
        z-index: 999;
        cursor: pointer;
        display: block;
    }
}

.slideBox h3 {
    color: #4fc6de;
    text-transform: uppercase;
    font-size: 19px;
    margin-bottom: 0;
}

.slideBox h4 {
    color: #fdb813;
    font-size: 13px;
    line-height: 1.2;
}

.slideBox p {
    font-size: 1em;
    line-height: 1.3;
    margin-bottom: 0;
}

.slideBox .contentWrap {
    position: relative;
    z-index: 1;
    padding: 20px 0;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

.slideBox #slideContent {
    display: block;
    padding: 0 2em 0 1em;
}

@media (min-width: 768px) {
    .slideBox #slideContent {
        padding: 0 4.9em 0 3.6em;
    }
}

.slideBox #slideContent li {
    list-style: none;
    margin-bottom: 1.8em;
    display: block;
}

.slideBox .globalWrap {
    display: block;
    position: fixed !important;
    -moz-transition: all 0.8s ease;
    -o-transition: all 0.8s ease;
    -webkit-transition: all 0.8s ease;
    transition: all 0.8s ease;
    top: 100%;
}

    .slideBox .globalWrap .icon-cross {
        cursor: pointer;
    }

    .slideBox .globalWrap.isActive {
        top: 0px;
    }

@media (min-width: 768px) {
    .slideBox .globalWrap.isActive {
        top: 84px;
    }
}

@media (min-width: 768px) {
    .slideBox .globalWrap {
        position: relative !important;
    }
}

.slideBox .globalWrap.share .icon.icon-cross.right-cross {
    right: 17px;
}

.slideBox .globalWrap.share, .slideBox .globalWrap.connect {
    background: #ee832e;
    display: block;
    float: right;
    width: 53%;
    height: 100%;
    position: relative;
    text-align: center;
    right: 0;
}

@media (min-width: 768px) {
    .slideBox .globalWrap.share, .slideBox .globalWrap.connect {
        width: 48px;
        height: 11.435em;
        display: none;
    }
}

.slideBox .globalWrap.share nav, .slideBox .globalWrap.connect nav {
    width: 100%;
    display: table;
    height: 100%;
}

@media (min-width: 768px) {
    .slideBox .globalWrap.share nav, .slideBox .globalWrap.connect nav {
        height: auto;
    }
}

@media (min-width: 768px) {
    .slideBox .globalWrap.share nav.inlineMenu, .slideBox .globalWrap.connect nav.inlineMenu {
        margin: 35px 0 0 0;
    }
}

.slideBox .globalWrap.share ul, .slideBox .globalWrap.connect ul {
    display: table-cell;
    vertical-align: middle;
    list-style-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVR42mNkYAAAAAYAAjCB0C8AAAAASUVORK5CYII=);
}

    .slideBox .globalWrap.share ul li, .slideBox .globalWrap.connect ul li {
        list-style: none;
        width: 100%;
        display: block;
        text-align: center;
        margin-bottom: 12px;
    }

        .slideBox .globalWrap.share ul li a, .slideBox .globalWrap.connect ul li a {
            color: #facf73;
            font-size: 30px;
        }

@media (min-width: 768px) {
    .slideBox .globalWrap.share ul li a, .slideBox .globalWrap.connect ul li a {
        font-size: 20px;
    }
}

.slideBox .globalWrap.share ul li .sprite, .slideBox .globalWrap.connect ul li .sprite {
    display: inline-block;
}

    .slideBox .globalWrap.share ul li .sprite.mail, .slideBox .globalWrap.connect ul li .sprite.mail {
        background-position: 7px -151px;
        background-size: 132px 124px;
    }

.slideBox .globalWrap.connect {
    background: #3a7fc0;
}

    .slideBox .globalWrap.connect ul li a {
        color: #aedbf7;
    }

@media (max-width: 767px) {
    .slideBox.mobile-hide {
        width: 100% !important;
    }
}

.thumnailNews {
    margin-bottom: 1.8em;
}

    .thumnailNews p {
        font-size: 1.3em;
    }

    .thumnailNews .caption {
        padding-right: 0em;
    }

.awardsList {
    padding-right: 2em;
}

@media (min-width: 768px) {
    .awardsList {
        display: -webkit-flex;
        display: flex;
    }
}

.awardsList:last-child {
    padding-bottom: 0;
    margin-bottom: 4px;
}

.awardsList figure {
    margin-left: 15px;
}

    .awardsList figure:first-child {
        margin-left: 0;
        margin-bottom: 4px;
    }

.newsList {
    margin-bottom: 1.5em;
}

    .newsList .flexWrap {
        display: flex;
    }

    .newsList figure {
        width: 37%;
    }

    .newsList .caption {
        width: 56%;
        padding-left: 12px;
    }

        .newsList .caption span, .newsList .caption time {
            text-transform: capitalize;
            color: #fff;
        }

        .newsList .caption p {
            color: rgba(255, 255, 255, 0.5);
        }

    .newsList .flexWrap .event-image {
        width: 44%;
        float: left;
    }

        .newsList .flexWrap .event-image figure {
            width: 100%;
        }

.slide-share {
    margin-top: 179px !important;
    z-index: 0;
}

    .slide-share .globalWrap .right_sec {
        float: left;
        display: block !important;
        background: none;
        padding-right: 12px;
    }

        .slide-share .globalWrap .right_sec ul {
            float: left;
            padding-right: 8px;
            border: none;
            list-style: none;
        }

            .slide-share .globalWrap .right_sec ul li {
                padding: 0 0 0 5px;
                background: none;
                margin-top: -1px;
                height: auto;
                float: left;
            }

                .slide-share .globalWrap .right_sec ul li div {
                    background-size: cover;
                    width: 45px;
                    height: 45px;
                    margin-top: 18px;
                }

                    .slide-share .globalWrap .right_sec ul li div:hover {
                        animation: shake 0.5s;
                        animation-iteration-count: 1;
                        cursor: pointer;
                    }

    .slide-share .slideBtn {
        height: 55px !important;
        background-color: #f7a833;
    }

        .slide-share .slideBtn span {
            top: 20px !important;
        }

@keyframes shake {
    0% {
        transform: translate(1px, 1px) rotate(0deg);
    }

    10% {
        transform: translate(-1px, -2px) rotate(-1deg);
    }

    20% {
        transform: translate(-3px, 0px) rotate(1deg);
    }

    30% {
        transform: translate(3px, 2px) rotate(0deg);
    }

    40% {
        transform: translate(1px, -1px) rotate(1deg);
    }

    50% {
        transform: translate(-1px, 2px) rotate(-1deg);
    }

    60% {
        transform: translate(-3px, 1px) rotate(0deg);
    }

    70% {
        transform: translate(3px, 1px) rotate(-1deg);
    }

    80% {
        transform: translate(-1px, -1px) rotate(1deg);
    }

    90% {
        transform: translate(1px, 2px) rotate(0deg);
    }

    100% {
        transform: translate(1px, -2px) rotate(-1deg);
    }
}

.slideBox_buttonBox {
    width: 100%;
    position: fixed;
    bottom: 0;
    z-index: 999;
}

@media (min-width: 768px) {
    .slideBox_buttonBox {
        position: absolute;
        z-index: 999;
        top: -59px;
        left: -14px;
        width: inherit;
        bottom: inherit;
    }
}

.slideBox_buttonBox .icon.icon-cross {
    cursor: pointer;
    left: 0;
    right: 0;
    margin: auto;
    display: none;
}

.slideBox_buttonBox .btn-label {
    display: block;
}

@media (min-width: 768px) {
    .slideBox_buttonBox .btn-label {
        display: none;
    }
}

.slideBox_buttonBox .slideBtn {
    color: #fff;
    text-align: center;
    font-size: 15px;
    line-height: 18px;
    font-family: "Proxima-Nova-Alt-SemiBold", sans-serif;
    position: relative;
    height: 38px;
    float: left;
}

@media (min-width: 768px) {
    .slideBox_buttonBox .slideBtn {
        position: absolute;
        display: block;
        float: none;
    }
}

.slideBox_buttonBox .slideBtn span {
    height: 38px;
}

@media (min-width: 768px) {
    .slideBox_buttonBox .slideBtn span {
        height: auto;
    }
}

.slideBox_buttonBox .slideBtn.newsHeadline2 {
    width: calc(100% - 53%);
}

@media (min-width: 768px) {
    .slideBox_buttonBox .slideBtn.newsHeadline2 {
        width: auto;
    }
}

.slideBox_buttonBox .slideBtn.newsHeadline2 span {
    display: inline-block;
    padding: 10px;
    background-color: #8e951f;
    width: 100%;
}

@media (min-width: 768px) {
    .slideBox_buttonBox .slideBtn.newsHeadline2 span {
        -moz-transform: rotate(-90deg);
        -o-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg);
        left: -53px;
        position: absolute;
        top: 88px;
        width: 98px;
    }
}

.slideBox_buttonBox .slideBtn.newsHeadline2 span strong {
    font-size: 14px;
    white-space: nowrap;
}

@media (min-width: 375px) {
    .slideBox_buttonBox .slideBtn.newsHeadline2 span strong {
        font-size: 15px;
    }
}

.slideBox_buttonBox .slideBtn.share-box {
    width: calc(100% - 75%);
}

@media (min-width: 768px) {
    .slideBox_buttonBox .slideBtn.share-box {
        width: auto;
    }
}

.slideBox_buttonBox .slideBtn.share-box span {
    width: 100%;
    background-color: #ef832e;
    padding: 10px;
    display: inline-block;
}

@media (min-width: 768px) {
    .slideBox_buttonBox .slideBtn.share-box span {
        left: -42px;
        position: absolute;
        top: 174.142px;
        width: 76px;
        -moz-transform: rotate(-90deg);
        -o-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg);
    }
}

.slideBox_buttonBox .slideBtn.connect_btn {
    width: calc(100% - 72%);
    display: inline-block;
}

@media (min-width: 768px) {
    .slideBox_buttonBox .slideBtn.connect_btn {
        width: auto;
    }
}

@media (min-width: 768px) {
    .slideBox_buttonBox .slideBtn.connect_btn {
        display: none;
    }
}

.slideBox_buttonBox .slideBtn.connect_btn span {
    width: 100%;
    display: inline-block;
    background-color: #3a7fc0;
    padding: 10px;
}

@media (min-width: 768px) {
    .slideBox_buttonBox .slideBtn.connect_btn span {
        left: -25px;
        position: absolute;
        top: 288px;
        width: 86px;
        -moz-transform: rotate(-90deg);
        -o-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg);
    }
}

.btn-label {
    text-align: center;
    display: block;
    font-size: 20px;
    margin: 14px 0;
}

@media (min-width: 768px) {
    .btn-label {
        display: none;
    }
}

.connectWrapper, .shareWrapper {
    overflow: auto;
}

@media (min-width: 768px) {
    body.japanies-font .slideBox_buttonBox .slideBtn.newsHeadline2 span {
        transform: rotate(0);
        top: 59px;
        width: 37px;
        left: -23px;
    }
}

body.japanies-font .slideBox_buttonBox .slideBtn.newsHeadline2 span strong {
    white-space: normal;
    font-weight: 100;
}

body.japanies-font .slideBox_buttonBox .slideBtn.share-box span strong {
    white-space: normal;
    font-weight: 100;
}

.inverseTheme {
    background-color: #121728;
    background-position: top left;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    background-blend-mode: soft-light;
    color: #fff;
}

    .inverseTheme:after {
        content: "";
        position: absolute;
        background-image: linear-gradient(to bottom, #121728 0%, rgba(18, 23, 40, 0.57) 32%, transparent 71%, transparent 100%);
        background-image: linear-gradient(to top right, #121728, transparent);
        width: 100%;
        height: 100%;
        left: 0;
        bottom: 0;
    }

    .inverseTheme h1,
    .inverseTheme h3,
    .inverseTheme p,
    .inverseTheme .videoCarousel h3 {
        color: #fff;
    }

        .inverseTheme h1 span {
            color: #a9c938;
        }

.page .halfContainer {
    padding-top: 3.5em;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .page .halfContainer {
        padding-top: 4em;
    }
}

.page .isLeft .halfContainer {
    padding-right: 15px;
}

@media (min-width: 768px) {
    .page .isLeft .halfContainer {
        padding-right: 30px;
    }
}

@media (min-width: 1024px) {
    .page .isLeft .halfContainer {
        padding-right: 4.00em;
    }
}

.page .isLeft .halfContainer .videoCarousel {
    padding-bottom: 0;
}

.page .isRight .halfContainer {
    padding-top: 45px;
}

@media (min-width: 768px) {
    .page .isRight .halfContainer {
        padding-left: 30px;
    }
}

@media (min-width: 1024px) {
    .page .isRight .halfContainer {
        padding-left: 4.00em;
    }
}

/* Variablles */
/* Variablles */
.primaryNav {
    position: fixed;
    top: 100px;
    padding: 2.2em 0.5em 1.5em 0;
    background: rgba(36, 39, 56, 0.99);
    /*font-size: 1.69em;*/
    font-size: 24px;
    line-height: 1.3;
    font-family: "Proxima-Nova-Alt-Rg", sans-serif;
    width: 100vw;
    right: -100vw;
    font-weight: bold;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

@media (min-width: 375px) {
    .primaryNav {
        font-size: 1.80em;
    }
}

@media (min-width: 568px) {
    .primaryNav {
        padding: 1.3em 1.5em 1.3em 0;
    }
}

@media (min-width: 768px) {
    .primaryNav {
        width: 100%;
        right: inherit;
        max-width: 424px;
        padding: 2.2em 1.5em 1em 0;
        text-align: right;
        position: static;
        float: left;
        opacity: 0;
        visibility: hidden;
    }
}

.primaryNav .levelTop {
    padding-right: 18px;
}

.primaryNav .subMenu {
    display: none;
    font-size: 0.70em;
    font-weight: 100;
}

@media (min-width: 768px) {
    .primaryNav .subMenu {
        padding-bottom: 20px;
    }
}

.primaryNav .subMenu a {
    color: #4fc6de;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

@media (min-width: 1025px) {
    .primaryNav .subMenu a:hover {
        color: #f7a833;
    }
}

.primaryNav a {
    color: #fff;
    position: relative;
    padding-left: 15px;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

@media (min-width: 768px) {
    .primaryNav a {
        padding-left: 0;
    }
}

@media (min-width: 1025px) {
    .primaryNav a:hover {
        color: #4fc6de;
    }
}

.primaryNav li {
    margin-bottom: 5px;
}

    .primaryNav li.hasChild {
        position: relative;
        /*
            >a:after {
                content: "";
                position: absolute;
                top: 3px;
                width: 24px;
                height: 24px;
                @include transition(all 0.2s linear);
                -webkit-perspective: 24px;
                /* Chrome, Safari, Opera  */
        /*
                perspective: 24px;
                background: url(../images/icons/arrow_down.png);
                background-position: center center;
                background-size: cover;
                left:-22px;
                
                @media(min-width:$mobileIphone){
                    top: 6px;
                }

                @media(min-width:$tablet){
                    right: -29px;
                    left:inherit;
                }
            }
            /*
            &.isActive {
                >a:after {
                    @include transform(rotatex(-180deg));
                }
            }
            */
    }

        .primaryNav li.hasChild span .fa-angle-down {
            -moz-transition: all 0.2s linear;
            -o-transition: all 0.2s linear;
            -webkit-transition: all 0.2s linear;
            transition: all 0.2s linear;
            color: #fff;
            float: left;
            margin-left: -25px;
            font-size: 36px;
        }

@media (min-width: 768px) {
    .primaryNav li.hasChild span .fa-angle-down {
        float: none;
        margin-left: 0px;
        position: relative;
        top: 6px;
    }
}

.primaryNav li.hasChild.isActive span .fa-angle-down {
    -moz-transform: rotatex(-180deg);
    -o-transform: rotatex(-180deg);
    -ms-transform: rotatex(-180deg);
    -webkit-transform: rotatex(-180deg);
    transform: rotatex(-180deg);
}

.primaryNav .levelTop > li {
    margin-bottom: 8px;
}

@media (max-width: 767px) {
    .primaryNav .levelTop > li {
        width: 104%;
    }
}

.navigationHolder {
    overflow-y: auto;
    padding-left: 1.5em;
}

/*Priti-BTLaw-1566 changes start*/
@media screen and (min-width: 320px) and (max-width: 480px) {
    .primaryNav {
        padding: 0.5em 0.5em 1.5em 0;
    }

        .primaryNav .mCSB_scrollTools {
            display: none !important;
        }
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation : landscape) {
    .primaryNav {
        height: calc(100vh - 100px);
        height: calc(-webkit-fill-available - 100px);
        padding: 1.2em 0.5em 1em 0;
    }
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation : portrait) {
    .primaryNav {
        padding: 2.2em 0.5em 1em 0;
    }
}

@media only screen and (min-device-width: 1024px) and (max-device-width: 1366px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: landscape) {
    .primaryNav {
        padding: 1.2em 0.5em 1em 0;
        height: calc(100vh - 100px);
        height: calc(-webkit-fill-available - 100px);
    }
}

@media screen and (min-width: 1025px) {
    .primaryNav {
        padding: 1.2em 0.5em 1em 0;
        height: calc(100vh-100px) !important;
    }
}
/*Priti BTLaw-1566 changes end*/

@media (min-width: 768px) {
    .navigationHolder {
        padding-right: 1.5em;
    }
}

.navigationHolder .levelTop li.hasChild {
    margin-right: -25px;
}

    .navigationHolder .levelTop li.hasChild ul.subMenu {
        margin-right: 30px;
    }

.sb-search {
    margin-top: 7px;
    margin-right: 15px;
    min-width: 22px;
    height: 30px;
    float: right;
    overflow: hidden;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
    -webkit-backface-visibility: hidden;
}

@media (max-width: 767px) {
    .sb-search form {
        top: 90px !important;
    }
}

@media (min-width: 768px) {
    .sb-search {
        position: relative;
    }
}

.sb-search form {
    visibility: hidden;
    height: 100%;
    width: 100%;
    position: fixed;
    top: 71px;
    background: rgba(19, 24, 41, 0.85);
    height: 71px;
    left: 0;
    padding: 20px;
    box-sizing: border-box;
    transform: translateY(20px);
    transition: transform 0.4s ease;
    opacity: 0;
}

@media (min-width: 768px) {
    .sb-search form {
        width: auto;
        position: static;
        background: transparent;
        height: auto;
        padding: 0;
        visibility: visible;
        transform: none;
        opacity: 1;
    }
}

.sb-search .sb-search-input {
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    outline: none;
    width: 100%;
    height: 30px;
    margin: 0;
    z-index: 1;
    padding: 5px;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
    background: transparent;
    font-family: inherit;
    font-size: 17px;
    color: #fff;
    box-sizing: border-box;
}

@media (min-width: 768px) {
    .sb-search .sb-search-input {
        font-size: 22px;
        opacity: 0;
        border: none;
        position: absolute;
        top: 0;
        right: 0px;
        padding: 0 60px 0 0;
    }
}

.sb-search input[type="text"].sb-search-input {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    border-radius: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    opacity: 0;
}

.sb-search.sb-search-open form {
    visibility: visible;
    transform: translateY(0);
    opacity: 1;
}

    .sb-search.sb-search-open form .sb-search-input {
        opacity: 1;
        padding: 0px 53px 0 5px;
    }

@media all and (max-width: 768px) {
    .sb-search.sb-search-open form .sb-search-input {
        padding: 0px 25px 0 5px;
    }
}

.sb-search-input::-webkit-input-placeholder {
    color: #fff;
}

.sb-search-input:-moz-placeholder {
    color: #fff;
}

.sb-search-input::-moz-placeholder {
    color: #fff;
}

.sb-search-input:-ms-input-placeholder {
    color: #fff;
}

.sb-icon-search,
.sb-search-submit,
.sb-icon-cross {
    width: 22px;
    height: 22px;
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    padding: 0;
    margin: 0;
    line-height: 30px;
    text-align: center;
    cursor: pointer;
    color: #fff;
}

.sb-icon-search {
    right: 48px;
    top: 8px;
}

@media (min-width: 768px) {
    .sb-icon-search {
        right: 0;
        top: 0;
    }
}

.sb-icon-cross {
    z-index: 1;
    right: 12px;
    top: 20px;
    opacity: 0;
}

@media (min-width: 768px) {
    .sb-icon-cross {
        right: 26px;
        top: 0;
    }
}

.sb-icon-cross .line {
    position: absolute;
    top: 50%;
    left: 0px;
    right: 0px;
    margin: 0px auto;
    height: 2px;
    width: 19px;
    background: #fff;
    opacity: 0.60;
}

    .sb-icon-cross .line:first-child {
        -moz-transform: translateY(-50%) rotate(45deg);
        -o-transform: translateY(-50%) rotate(45deg);
        -ms-transform: translateY(-50%) rotate(45deg);
        -webkit-transform: translateY(-50%) rotate(45deg);
        transform: translateY(-50%) rotate(45deg);
    }

    .sb-icon-cross .line:last-child {
        -moz-transform: translateY(-50%) rotate(-45deg);
        -o-transform: translateY(-50%) rotate(-45deg);
        -ms-transform: translateY(-50%) rotate(-45deg);
        -webkit-transform: translateY(-50%) rotate(-45deg);
        transform: translateY(-50%) rotate(-45deg);
    }

.sb-search-open .sb-icon-cross {
    opacity: 1;
    -moz-opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=1)";
    -khtml-opacity: 1;
}

.sb-search-submit {
    /*background: $white;
     IE needs this */
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    /* IE 8 */
    filter: alpha(opacity=0);
    /* IE 5-7 */
    opacity: 0;
    -moz-opacity: 0;
    color: transparent;
    border: none;
    outline: none;
}

.sb-icon-search {
    color: #fff;
    background: transparent;
    z-index: 2;
    font-size: 21px;
    font-family: 'icomoon';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    -webkit-font-smoothing: antialiased;
}

    .sb-icon-search i {
        position: absolute;
        top: 2px;
        left: 0;
        -moz-transform: rotateY(180deg);
        -o-transform: rotateY(180deg);
        -ms-transform: rotateY(180deg);
        -webkit-transform: rotateY(180deg);
        transform: rotateY(180deg);
        color: #fff;
    }

.formGroup .sb-icon-search i {
    color: #8c8c8c;
}

.sb-icon-search:before {
    content: "";
}

.sb-search.sb-search-open .sb-icon-search,
.no-js .sb-search .sb-icon-search {
    color: #fff;
    z-index: 1;
}

.sb-search.sb-search-open .sb-search-input {
    opacity: 1;
    -moz-opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=1)";
    -khtml-opacity: 1;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.sb-search.sb-search-open .sb-search-submit,
.no-js .sb-search .sb-search-submit {
    z-index: 90;
}

@media all and (min-width: 768px) {
    .sb-search {
        width: 0;
        transition: all 0.5s linear;
    }

        .sb-search.sb-search-open,
        .no-js .sb-search {
            width: -webkit-calc(100% - 110px);
            width: -moz-calc(100% - 110px);
            width: calc(100% - 110px);
            width: 65%;
            max-width: 520px;
            transition: all 0.5s linear;
        }
}

.mobileTab {
    cursor: pointer;
    position: relative;
    font-size: 1.067em;
    padding: 1em;
    border-bottom: 1px solid #666;
    font-family: "Proxima-Nova-Alt-SemiBold", sans-serif;
    background-color: #242738;
    line-height: 1;
    color: #ee832e;
}

    .mobileTab:before {
        content: "";
        position: absolute;
        top: 30%;
        width: 18px;
        height: 18px;
        background: url(../images/icons/arrow_down.png);
        -moz-transition: all 0.5s ease;
        -o-transition: all 0.5s ease;
        -webkit-transition: all 0.5s ease;
        transition: all 0.5s ease;
        background-position: center center;
        background-size: cover;
        right: 18px;
    }

    .mobileTab.isActive {
        color: #fff;
    }

        .mobileTab.isActive:before {
            -moz-transform: rotatex(-180deg);
            -o-transform: rotatex(-180deg);
            -ms-transform: rotatex(-180deg);
            -webkit-transform: rotatex(-180deg);
            transform: rotatex(-180deg);
        }

@media (min-width: 768px) {
    .mobileTab {
        display: none;
    }
}

.mobileTab.locationDetailTab {
    margin: 0 -15px;
}

@media (max-width: 767px) {
    .isLocationDetail.page.location_detail_outer .edyTabs.blogs-bar .trigger {
        display: block;
        list-style: none;
        pointer-events: none;
    }
    /*.isLocationDetail.page.location_detail_outer .edyTabs.blogs-bar ul.trigger li.isActive {
  cursor: pointer;
    position: relative;
    font-size: 1.067em;
    padding: 1em;
    border-bottom: 1px solid #666;
    font-family: "Proxima-Nova-Alt-SemiBold", sans-serif;
    background-color: #242738;
    line-height: 1;
    color: #fff; }*/
}

.edyTabs .trigger {
    display: none;
}

@media (min-width: 768px) {
    .edyTabs .trigger {
        background-color: #242738;
        padding: 1.15em;
        text-align: center;
        display: block;
        text-transform: uppercase;
        color: #ee832e;
        font-size: 0.98em;
        display: block;
    }

        .edyTabs .trigger li {
            list-style-type: none;
            cursor: pointer;
            position: relative;
            font-size: 1.067em;
            padding: 1em;
            border-bottom: 1px solid #666;
            font-family: "Proxima-Nova-Alt-SemiBold", sans-serif;
            background-color: #242738;
            line-height: 1;
            color: #ee832e;
        }

    .blogcontain {
        padding: 0 !important;
    }

    .blogdd {
        margin-bottom: 6px !important;
    }
}

@media (min-width: 768px) and (min-width: 768px) {
    .edyTabs .trigger li {
        background-color: transparent;
        display: inline-block;
        margin-left: 1.725em;
        margin-right: 1.725em;
        padding: 0;
        border-bottom: none;
        -moz-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        -webkit-transition: all 0.3s ease;
        transition: all 0.3s ease;
    }
}

@media (min-width: 768px) {
    .edyTabs .trigger li:before {
        content: "";
        position: absolute;
        top: 30%;
        width: 18px;
        height: 18px;
        background: url(../images/icons/arrow_down.png);
        -moz-transition: all 0.5s ease;
        -o-transition: all 0.5s ease;
        -webkit-transition: all 0.5s ease;
        transition: all 0.5s ease;
        background-position: center center;
        background-size: cover;
        right: 18px;
    }
}

@media (min-width: 768px) and (min-width: 768px) {
    .edyTabs .trigger li:before {
        top: -2px;
        left: -20px;
        right: inherit;
    }
}

@media (min-width: 768px) {
    .edyTabs .trigger li.isActive {
        color: #fff;
    }

        .edyTabs .trigger li.isActive:before {
            -moz-transform: rotatex(-180deg);
            -o-transform: rotatex(-180deg);
            -ms-transform: rotatex(-180deg);
            -webkit-transform: rotatex(-180deg);
            transform: rotatex(-180deg);
        }
}

@media (min-width: 768px) and (min-width: 1170px) {
    .edyTabs .trigger li:hover {
        color: #fff;
    }
}

@media (min-width: 768px) {
    .edyTabs .trigger li:first-child {
        margin-left: 0;
    }

    .edyTabs .trigger li:last-child {
        margin-right: 0;
    }
}

.edyTabs .tab {
    display: none;
}

    .edyTabs .tab.isActive {
        display: block;
    }

.practice-sec-drop .formGroup ul li {
    padding-bottom: 0;
}

.pageContent .locationDetailTab:first-child {
    margin-top: -15px;
}

.mapAddress {
    padding-bottom: 15px;
}

@media (min-width: 768px) {
    .mapAddress {
        display: none;
    }
}

.mapAddress p {
    color: #000;
    font-size: 16px;
}

.globalFooter {
    float: left;
    background: #121728;
    padding: 1em 0 3em;
    width: 100%;
    color: #fff;
    font-family: Proxima-Nova-Thin, sans-serif;
    bottom: 0;
}

    .globalFooter .container {
        position: relative;
    }

@media (min-width: 768px) {
    .globalFooter {
        padding: 1.5em 0;
        position: relative;
        z-index: 9999;
    }
}

.globalFooter .innerContainer {
    font-size: .85em;
}

    .globalFooter .innerContainer .socialNav {
        display: none;
    }

@media (min-width: 768px) {
    .globalFooter .innerContainer .socialNav {
        display: block;
    }
}

.globalFooter a {
    color: #fff;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

    .globalFooter a:hover {
        color: rgba(255, 255, 255, 0.5);
    }

.globalFooter .footerNav li {
    margin: 0 4px 3px 4px;
}

    .globalFooter .footerNav li:last-child {
        margin-right: 0;
        padding-right: 0;
        border: 0;
    }

@media all and (max-width: 767px) {
    .globalFooter .footerNav {
        margin-bottom: 10px;
    }
}

@media all and (min-width: 992px) {
    .globalFooter .footerNav li {
        border-right: 1px solid rgba(255, 255, 255, 0.5);
        padding-right: 7px;
        margin-left: 0;
    }
}

.globalFooter .socialNav {
    text-align: right;
    display: inline-block;
    font-size: 15px;
}

    .globalFooter .socialNav li {
        margin-right: 7px;
    }

        .globalFooter .socialNav li:last-child {
            margin-right: 0;
        }

    .globalFooter .socialNav a {
        color: #4fc6de;
        opacity: 1;
    }

        .globalFooter .socialNav a:hover {
            opacity: 0.7;
        }

@media all and (max-width: 992px) {
    .globalFooter .copyRight {
        margin-bottom: 10px;
    }
}

#top_btn {
    z-index: 9999;
    color: rgba(0, 0, 0, 0.7);
    position: fixed;
    background-color: #e4e4e4;
    border-radius: 100%;
    bottom: 50px;
    height: 60px;
    width: 60px;
    right: 21px;
    display: none;
    text-transform: uppercase;
    cursor: pointer;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

    #top_btn:after {
        content: "Top";
        position: absolute;
        left: 31%;
        top: 48%;
        font-size: 15px;
    }

@media (min-width: 1170px) {
    #top_btn:hover {
        background-color: #e6e6e6;
    }
}

footer.isFixed {
    position: static !important;
}

@media (min-width: 768px) {
    footer.isFixed {
        position: fixed !important;
    }
}

@media (min-width: 768px) {
    html body .infoBanner {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
    }
}

.infoBanner {
    position: relative;
    width: 100%;
    color: #000;
    /*h4{

    }*/
}

@media (min-width: 768px) {
    .infoBanner {
        /* height: 100vh;*/
        display: block;
    }
}

@media (min-width: 768px) and (min-width: 768px) {
    .infoBanner {
        display: -webkit-flex;
        display: flex;
    }
}

.infoBanner .inner_img {
    display: block;
}

@media (min-width: 768px) {
    .infoBanner .inner_img {
        display: none;
    }
}

.infoBanner .bannerImg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-color: #f1f1f1;
    background-position: left bottom;
    background-repeat: no-repeat;
    position: relative;
}

@media (min-width: 768px) {
    .infoBanner .bannerImg {
        position: absolute;
        background-position: 14% 0;
    }
}

@media (min-width: 1170px) {
    .infoBanner .bannerImg {
        background-position: 0 0;
    }
}

@media (max-width: 767px) {
    .infoBanner .bannerImg {
        height: auto;
        min-height: 250px;
        background-position: 6% bottom;
        margin-bottom: 25px;
    }

        .infoBanner .bannerImg:after, .infoBanner .bannerImg:before {
            content: '';
            position: absolute;
            top: 0;
            width: 33.333333%;
            right: 0;
            height: 100%;
        }

        .infoBanner .bannerImg:after {
            background: rgba(0, 0, 0, 0.45);
            right: 33.333%;
        }

        .infoBanner .bannerImg:before {
            background: rgba(0, 0, 0, 0.75);
        }
}

@media (min-width: 768px) {
    .infoBanner {
        color: #fff;
    }
}

.infoBanner .infoBox {
    position: relative;
}

    .infoBanner .infoBox.tintDark-professional-listing {
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        background-blend-mode: multiply;
        position: relative;
        height: 231px;
        float: left;
        width: 33.3%;
    }

        .infoBanner .infoBox.tintDark-professional-listing h1 {
            display: none;
        }

@media (min-width: 768px) {
    .infoBanner .infoBox.tintDark-professional-listing h1 {
        display: block;
    }
}

@media (min-width: 768px) {
    .infoBanner .infoBox.tintDark-professional-listing {
        height: auto;
    }
}

.infoBanner .infoBox .uncommon_text {
    /*top: 58%;*/
}

@media (min-width: 768px) {
    .infoBanner .infoBox {
        width: 33.333%;
    }

        .infoBanner .infoBox.tintLight {
            background: rgba(0, 0, 0, 0.2);
        }

        .infoBanner .infoBox.tintMedium {
            background: rgba(0, 0, 0, 0.45);
        }

            .infoBanner .infoBox.tintMedium .inlineMenu .socialNav li:last-child a {
                font-size: 14px;
            }

                .infoBanner .infoBox.tintMedium .inlineMenu .socialNav li:last-child a#downloadpdf {
                    font-size: 20px;
                }

        .infoBanner .infoBox.tintDark {
            background: rgba(0, 0, 0, 0.75);
        }
}

@media (min-width: 768px) and (min-width: 768px) {
    .infoBanner .infoBox.tintDark .contentMiddle {
        padding: 2em 3em 2em 2em;
    }
}

@media (min-width: 768px) and (min-width: 1170px) {
    .infoBanner .infoBox.tintDark .contentMiddle {
        padding: 1.5em 10%;
    }
}

@media (min-width: 768px) {
    .infoBanner .infoBox.tintDark-professional-listing::before {
        content: "";
        position: absolute;
        height: 100%;
        width: 100%;
        background: rgba(0, 0, 0, 0.45);
    }
}

.infoBanner .infoBox.tintMedium .contentMiddle {
    display: flex;
    flex-wrap: wrap;
}

    .infoBanner .infoBox.tintMedium .contentMiddle .locationDropdown {
        width: 100%;
    }

        .infoBanner .infoBox.tintMedium .contentMiddle .locationDropdown ul li {
            border-bottom: 1px solid #ccc;
        }

    .infoBanner .infoBox.tintMedium .contentMiddle .table-row {
        width: 100%;
    }

.infoBanner h1 {
    color: #000;
}

@media (max-width: 768px) {
    .introBox h1 {
        margin-bottom: 0.7em !important;
    }

    .infoBanner h1 {
        color: #000;
        margin-bottom: 0px;
    }

        .infoBanner h1 span {
            color: #a9c938;
            font-weight: 100;
            text-transform: none;
            margin-bottom: 1em;
        }
}

@media (min-width: 768px) {
    .infoBanner h1 {
        color: #fff;
        margin-bottom: 20px;
    }
}

.infoBanner h1 span {
    color: #a9c938;
    font-weight: 100;
    text-transform: none;
}

.chinese-title {
    color: #FFFFFF;
    font-weight: bolder !important;
}

.japanese-title {
    font-weight: bold !important;
}

@media (min-width: 768px) {
    .infoBanner p {
        color: #fff;
        font-family: Proxima-Nova-Thin, sans-serif;
        line-height: 1.4;
        font-size: 1.067em;
    }
}

@media (min-width: 768px) {
    .infoBanner address,
    .infoBanner .contactInfo {
        color: #fff;
        font-family: "Proxima-Nova-Alt-Rg", sans-serif;
    }

        .infoBanner address p,
        .infoBanner .contactInfo p {
            line-height: 1.2;
            font-size: 0.933em;
        }

            .infoBanner address p a,
            .infoBanner .contactInfo p a {
                -moz-transition: all 0.3s ease;
                -o-transition: all 0.3s ease;
                -webkit-transition: all 0.3s ease;
                transition: all 0.3s ease;
            }

                .infoBanner address p a:hover,
                .infoBanner .contactInfo p a:hover {
                    color: #facf73;
                }

            .infoBanner address p.bio-fax a,
            .infoBanner .contactInfo p.bio-fax a {
                -moz-transition: all 0.3s ease;
                -o-transition: all 0.3s ease;
                -webkit-transition: all 0.3s ease;
                transition: all 0.3s ease;
            }

                .infoBanner address p.bio-fax a:hover,
                .infoBanner .contactInfo p.bio-fax a:hover {
                    color: #4fc6de;
                }
}

.infoBanner .socialNav li {
    line-height: 0.9;
    margin: 0 0.5em;
    vertical-align: middle;
}

    .infoBanner .socialNav li:first-child {
        margin-left: 0;
    }

    .infoBanner .socialNav li a {
        font-size: 30px;
        line-height: 1;
        -moz-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        -webkit-transition: all 0.3s ease;
        transition: all 0.3s ease;
    }

@media (min-width: 768px) {
    .infoBanner .socialNav li a {
        font-size: 20px;
    }
}

.infoBanner .socialNav li a:hover {
    color: #facf73;
}

@media (min-width: 768px) {
    .infoBanner .socialNav li.briefcase {
        margin-left: 0;
        margin-top: 8px;
    }
}

@media (min-width: 1170px) {
    .infoBanner .socialNav li.briefcase {
        margin-left: 0.6em;
        margin-top: 0;
    }
}

.infoBanner .socialNav li.briefcase a {
    font-size: 14px;
}

.infoBanner .caption {
    padding-bottom: 1em;
    border-bottom: 2px solid #b0b8bd;
    margin-bottom: 1em;
}

.infoBanner .contentMiddle {
    padding: 2px 1em 0;
    width: 100%;
}

@media (min-width: 768px) {
    .infoBanner .contentMiddle {
        position: relative !important;
        left: 0;
        top: 59%;
        right: 0;
        margin: 0 auto;
        padding: 2em;
        -moz-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        height: auto !important;
        transform: translateY(-50%) !important;
    }
}

@media (min-width: 1170px) {
    .infoBanner .contentMiddle {
        padding: 0 2em;
    }
}

.infoBanner.peopleBanner .bannerImg {
    margin-bottom: -2px;
    background-position: 0 0;
}

@media (min-width: 768px) {
    .infoBanner.peopleBanner .bannerImg {
        background-position: 11% 0;
    }
}

@media (min-width: 1170px) {
    .infoBanner.peopleBanner .bannerImg {
        background-position: 0 0;
    }
}

@media (max-width: 767px) {
    .infoBanner.peopleBanner .bannerImg {
        height: 350px;
    }
}

@media (max-width: 568px) {
    .infoBanner.peopleBanner .bannerImg {
        height: 250px;
    }
}

.infoBanner.peopleBanner .tintMedium .introBox {
    display: none;
}

@media (min-width: 768px) {
    .infoBanner.peopleBanner .tintMedium .introBox {
        display: block;
    }
}

.infoBanner.peopleBanner .tintDark .contentMiddle {
    display: block;
}

@media screen and (max-width: 767px) {
    .infoBanner.peopleBanner .tintDark .contentMiddle .block p {
        font-size: 16px;
        color: #000;
        font-weight: normal;
        margin-bottom: 15px;
    }
}

@media (min-width: 768px) {
    .infobanner {
        font-size: 48px;
    }
}

@media (min-width: 768px) {
    .locationDropdown {
        display: none;
    }
}

.locationDropdown .sbHolder {
    width: 100%;
}

@media (min-width: 768px) {
    .locationDropdown .sbHolder {
        width: auto;
    }
}

.explorebtn {
    display: none;
}

@media (min-width: 768px) {
    .explorebtn {
        font-size: 55px;
        position: absolute;
        left: 46%;
        bottom: 10px;
        cursor: pointer;
        display: block;
    }
}

@-webkit-keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

@-moz-keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

@-o-keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

.bounce {
    webkit-animation: bounce 2s infinite;
    -o-animation: bounce 2s infinite;
    -moz-animation: bounce 2s infinite;
    animation: bounce 2s infinite;
}

.newslanding .tintMedium .contentMiddle {
    display: flex;
    flex-wrap: wrap;
}

    .newslanding .tintMedium .contentMiddle .locationDropdown {
        width: 100%;
    }

.highlighted-1 {
    color: #000;
    font-weight: bold;
}

.news-subscription-btn {
    width: 100%;
    margin-bottom: 40px;
    display: none;
}

    .news-subscription-btn a {
        background: #f7a833;
        height: 50px;
        line-height: 50px;
        text-transform: uppercase;
        font-size: 17px;
        color: #fff;
        font-family: "Proxima-Nova-Alt-Rg", sans-serif;
        display: block;
        text-align: center;
        letter-spacing: 0.009em;
    }

.newslanding .news-subscription-btn {
    display: block;
}

@media (min-width: 768px) {
    .newslanding .news-subscription-btn {
        display: none;
    }
}

.touchdeviceipad .table {
    display: table !important;
    width: 100%;
    height: 100%;
}

    .touchdeviceipad .table.contentMiddle {
        transform: none;
        position: static;
        -webkit-transform: none;
        display: table !important;
    }

.touchdeviceipad .table-row {
    display: table-row;
    width: 100%;
    height: 100%;
}

.touchdeviceipad .infoBanner .contentMiddle .table-cell {
    display: table-cell;
    vertical-align: middle;
}

.law_detail .news-subscription-btn {
    display: block;
}

@media (min-width: 768px) {
    .law_detail .news-subscription-btn {
        display: none;
    }
}

.law_detail .locationDropdown {
    display: none;
}

.law_detail .top_border {
    border-bottom: 1px solid #bdbdbd;
    padding-bottom: 4%;
}

@media (min-width: 768px) {
    .law_detail .top_border {
        border-bottom: none;
        padding-bottom: 0;
    }
}

.law_detail .btn-submit {
    display: none;
}

@media (min-width: 768px) {
    .law_detail .btn-submit {
        display: block;
    }
}

.law_detail .law_slider {
    overflow: inherit;
    position: static;
}

@media (min-width: 768px) {
    .law_detail .law_slider {
        overflow: hidden;
        padding-left: 0;
        padding-right: 30px;
    }
}

.infoBanner.peopleBanner .bannerImg.new {
    background-position: 8% 0px;
}

@media (max-width: 767px) {
    .infoBanner .infoBox.third.new {
        display: block !important;
        height: auto !important;
    }
}

@media (max-width: 767px) {
    .infoBanner .infoBox.third.new .table.contentMiddle {
        display: none;
    }
}

.infoBanner .infoBox.third.new .innerWrap.table.contentMiddle {
    display: block !important;
    padding-top: 15px;
    padding-bottom: 15px;
}

@media (min-width: 768px) {
    .infoBanner .infoBox.third.new .innerWrap.table.contentMiddle {
        display: none !important;
    }
}

.infoBanner .infoBox.third.new .innerWrap.table.contentMiddle .introBox {
    float: left;
    width: 100%;
}

@media (max-width: 767px) {
    .infoBanner .infoBox.third.new .innerWrap.table.contentMiddle .introBox {
        display: block !important;
        height: auto !important;
    }
}

@media only screen and (max-width: 1024px) and (min-width: 768px) {
    .infoBanner .infoBox.first.new, .infoBanner .infoBox.second.new {
        display: none;
    }

    .infoBanner .infoBox.third.new {
        width: 43%;
        float: right;
        margin-left: 57%;
    }

        .infoBanner .infoBox.third.new .innerWrap.table.contentMiddle {
            display: block !important;
            margin-top: 30%;
            height: auto;
            padding: 0px 10%;
        }

        .infoBanner .infoBox.third.new .contentMiddle.table {
            padding: 0px 10%;
            float: left;
        }

            .infoBanner .infoBox.third.new .contentMiddle.table .table-row {
                display: inline-block;
            }

                .infoBanner .infoBox.third.new .contentMiddle.table .table-row .table-cell .block p {
                    opacity: 1 !important;
                    font-size: 14px;
                }

    .infoBanner.peopleBanner .bannerImg {
        background-position: 8% 0;
    }
}

@media only screen and (max-width: 767px) and (min-width: 0px) {
    .infoBanner .infoBox.second, .infoBanner .infoBox.third {
        width: 100%;
    }
}

.infoBanner .tintDark-professional-listing .contentMiddle {
    top: 59%;
}

@media only screen and (max-width: 992px) and (min-width: 768px) {
    .infoBanner .infoBox.third.new .contentMiddle.table {
        padding: 0px 14%;
    }
}

@media only screen and (max-width: 992px) and (min-width: 768px) {
    .infoBanner .infoBox.third.new .innerWrap.table.contentMiddle {
        padding: 0px 14%;
    }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .third.new .contentMiddle {
        top: 0;
        -moz-transform: translateY(0);
        -o-transform: translateY(0);
        -ms-transform: translateY(0);
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

.twoColumnLayout .infoBanner .bannerImg:after, .twoColumnLayout .infoBanner .bannerImg:before {
    width: 33.33%;
}

@media (min-width: 768px) {
    .infoBanner address {
        padding-bottom: 10px;
    }
}

.blue {
    color: #4fc6de;
}

.primaryContent nav.inlineMenu ul li.briefcase a {
    font-size: 14px;
}

.block ul.ul-location {
    padding-left: 0px;
}

.tabsContent .pageContent {
    padding-bottom: 0px;
}

@media (min-width: 768px) {
    .tabsContent .pageContent {
        padding-bottom: 1em;
    }
}

.videoCarousel h2 {
    font-family: "Proxima-Nova-Alt-Rg", sans-serif;
    font-weight: normal;
    display: inline-block;
    margin-bottom: 3px;
    font-size: 1.2em;
    color: #a93228;
    text-transform: uppercase;
}

.videoCarousel h3 {
    font-family: "Proxima-Nova-Alt-SemiBold", sans-serif;
    font-size: 1.5em;
    color: #000;
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .videoCarousel h3 {
        font-size: 1.20em;
        line-height: 1.1;
    }
}

.videoCarousel .title {
    margin-bottom: 1em;
}

.videoCarousel p {
    font-size: 0.933em;
}

.videoCarousel .thumbnail {
    margin-bottom: 0.80em;
}

.bio-detail-slider .owl-nav {
    display: block;
}

h4.host-name {
    transition: all .3s ease;
    color: #121728;
    font-family: "Proxima-Nova-Alt-Rg",sans-serif;
    font-weight: 600;
}

.bio-detail-slider .owl-prev, .bio-detail-slider .owl-next {
    position: absolute;
    top: 23%;
}

@media (min-width: 768px) {
    .bio-detail-slider .owl-prev, .bio-detail-slider .owl-next {
        top: 21%;
    }
}

@media (min-width: 1170px) {
    .bio-detail-slider .owl-prev, .bio-detail-slider .owl-next {
        top: 29%;
    }
}

.bio-detail-slider .owl-prev {
    width: 18px;
    height: 30px;
    left: 10px;
    background: url(../images/icons/left_insight.png) no-repeat center center;
    color: transparent;
}

.bio-detail-slider .owl-next {
    width: 18px;
    height: 30px;
    right: 10px;
    background: url(../images/icons/right_insight.png) no-repeat center center;
    color: transparent;
}

.thumbnailCaption figure {
    margin-bottom: 1.2em;
}
    /*BTLaw-1446*/
    .thumbnailCaption figure img {
        width: 100%;
    }

.card {
    font-size: 0.933em;
    line-height: 1.38;
    font-family: "Proxima-Nova-Alt-Rg", sans-serif;
}

@media (min-width: 768px) {
    .card {
        max-width: 340px;
    }
}

.card .caption address a {
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    color: #242738;
}

.card figure {
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .card figure {
        max-height: 140px;
    }
}

.card figure a {
    display: block;
    line-height: 0;
}

@media (min-width: 1025px) {
    .card figure a:hover {
        -moz-transition: all 400ms ease;
        -o-transition: all 400ms ease;
        -webkit-transition: all 400ms ease;
        transition: all 400ms ease;
    }

        .card figure a:hover span {
            height: 100%;
        }

        .card figure a:hover img {
            -moz-transform: scale(1.1, 1.1);
            -o-transform: scale(1.1, 1.1);
            -ms-transform: scale(1.1, 1.1);
            -webkit-transform: scale(1.1, 1.1);
            transform: scale(1.1, 1.1);
        }
}

.card figure span {
    text-align: center;
    width: 100%;
    font-family: "Proxima-Nova-Alt-SemiBold", sans-serif;
    background: rgba(0, 0, 0, 0.6);
    line-height: 1;
    color: #fff;
    min-height: 45px;
    height: 0;
    font-size: 1.400em;
    z-index: 2;
}

@media (min-width: 768px) {
    .card figure span {
        min-height: 32px;
        font-size: 1.200em;
    }
}

.card figure span i {
    font-style: normal;
    position: absolute;
    width: 100%;
    vertical-align: middle;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    text-transform: uppercase;
}

.card figure img {
    -moz-transition: all 400ms ease;
    -o-transition: all 400ms ease;
    -webkit-transition: all 400ms ease;
    transition: all 400ms ease;
}

.card figure span {
    -moz-transition: all 200ms ease-out;
    -o-transition: all 200ms ease-out;
    -webkit-transition: all 200ms ease-out;
    transition: all 200ms ease-out;
}

.card .caption {
    padding: 10px 0;
}

.card address {
    font-style: normal;
    font-size: 1.45em;
    color: #000;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

@media (min-width: 768px) {
    .card address {
        font-size: inherit;
    }
}

.card address span {
    display: block;
    font-family: Proxima-Nova-Thin, sans-serif;
    line-height: 1.4;
    color: #777779;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

    .card address span:hover {
        color: #4fc6de;
    }

    .card address span.faxDesktop {
        display: none;
    }

@media (min-width: 768px) {
    .card address span.faxDesktop {
        display: inline-block;
    }
}

.card address span.faxmobile {
    display: inline-block;
}

@media (min-width: 768px) {
    .card address span.faxmobile {
        display: none;
    }
}

.card address a:hover {
    color: #4fc6de;
}

.card address:hover {
    color: #4fc6de;
}

.card a {
    color: #000;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

    .card a:hover {
        color: #4fc6de;
    }

.location_detail .card address {
    font-size: 1.15em;
}

.vCard {
    margin-bottom: 1em;
    float: left;
}

    .vCard h4,
    .vCard p {
        color: #121728;
    }

    .vCard h4 {
        font-family: "Proxima-Nova-Alt-Rg", sans-serif;
        margin: -4px 0 0 0;
        text-transform: inherit;
    }

    .vCard p {
        line-height: 1.2;
        margin-bottom: 0;
    }

    .vCard address {
        color: #777779;
        line-height: 1.1em;
    }
/* sahil 29 april: event image in landscape mode issue */
@media only screen and (min-device-width : 550px) and (max-device-width : 767px) and (orientation : landscape) {
    .vCard h4 {
        width: 20em;
    }

    .vCard address {
        width: 20em;
    }
}

.vCard address a,
.vCard address span {
    display: block;
}

.vCard address a {
    color: #4fc6de;
}

.vCard ul {
    list-style: none;
    list-style-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVR42mNkYAAAAAYAAjCB0C8AAAAASUVORK5CYII=);
}

@media (min-width: 768px) {
    .vCard ul {
        display: -webkit-flex;
        display: flex;
    }
}

.vCard ul li {
    margin-left: 8px;
}

    .vCard ul li:first-child {
        margin-left: 0;
    }

    .vCard ul li a {
        font-size: 28px;
        -moz-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        -webkit-transition: all 0.3s ease;
        transition: all 0.3s ease;
    }

@media (min-width: 768px) {
    .vCard ul li a:hover {
        color: #f7a833;
    }
}

.vCard.inline {
    margin-bottom: 2em;
}

@media (min-width: 768px) {
    .vCard.inline {
        display: -webkit-flex;
        display: flex;
    }
}

.vCard.inline .caption {
    padding: 0;
    padding-left: 20px;
    display: inline-table;
}

@media (min-width: 768px) {
    .primaryContent .filterResult .vCard {
        margin-bottom: 1.2em;
    }
}

@media (min-width: 1170px) {
    .primaryContent .filterResult .vCard {
        margin-bottom: 2em;
    }
}

.primaryContent .filterResult .vCard .caption ul {
    margin-bottom: 0;
}

    .primaryContent .filterResult .vCard .caption ul li {
        padding-bottom: 0;
    }

.law_contact .caption ul li:last-child {
    display: inline-block;
}

@media (min-width: 768px) {
    .law_contact .caption ul li:last-child {
        display: none;
    }
}

.law_contact .caption ul li {
    display: inline-block;
}

.pageContent .location_detail .innerWrap li {
    border-bottom: 0;
}

@media (min-width: 768px) {
    .pageContent .location_detail .innerWrap li:first-child {
        margin-bottom: 13%;
    }
}

.pageContent .location_detail .innerWrap li:nth-child(3) {
    margin-top: 8%;
}

.pageContent .location_detail .innerWrap li:last-child {
    margin-bottom: 0;
}

.pageContent .location_detail .caption .contactInfo {
    margin-top: 10px;
}

    .pageContent .location_detail .caption .contactInfo p:first-child {
        padding-bottom: 4px;
    }

.pageContent .location_detail .caption ul li {
    width: auto;
}

    .pageContent .location_detail .caption ul li .sprite {
        display: inline-block;
    }

.vCard .caption .location-text {
    font-family: "Proxima-Nova-Alt-SemiBold", sans-serif;
}

    .vCard .caption .location-text a {
        color: #4fc6de;
        -moz-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        -webkit-transition: all 0.3s ease;
        transition: all 0.3s ease;
    }

        .vCard .caption .location-text a:hover {
            color: orange;
        }

@media (min-width: 768px) {
    .vCard address a, .vCard address span {
        width: 100%;
        margin-right: 0px;
    }
}

.infoBlock {
    margin-bottom: 1em;
}

    .infoBlock h4 {
        color: #f7a833;
        margin-bottom: 0.50em;
    }

    .infoBlock h4, .infoBlock p {
        font-size: 1em;
    }

@media (min-width: 768px) {
    .infoBlock h4, .infoBlock p {
        font-size: 0.933em;
    }
}

.infoBlock p {
    color: #777779;
}

.buttonGrid .button {
    margin-bottom: 1em;
}

    .buttonGrid .button .mediumBrown {
        background-color: #464646;
    }

    .buttonGrid .button .lightBlue {
        background-color: #6eafe2;
    }

    .buttonGrid .button .lightGray {
        background-color: #777779;
    }

    .buttonGrid .button .darkBlue {
        background-color: #215c7c;
    }

    .buttonGrid .button .darkAqua {
        background-color: #00a8ba;
    }

    .buttonGrid .button .skyBlue {
        background-color: #3885dd;
    }

.buttonGrid .btn {
    width: 100%;
    height: 35px;
    font-size: 0.867em;
    display: block;
    padding: 0 30px;
    line-height: 35px;
}

.subscribeBlock.ismobileActive {
    margin-bottom: 90px;
    text-align: center;
    margin-top: 12px;
}

@media (max-width: 767px) {
    .subscribeBlock .innerWrap {
        background: #f1f1f1;
        padding: 1.067em;
        /*margin-top: -40px; */
    }
}

.subscribeBlock .innerWrap {
    background: #f1f1f1;
    padding: 1.067em;
}

.subscribeBlock p {
    font-size: 0.800em;
    padding-bottom: 0.70em;
}

.subscribeBlock .btn {
    font-size: 1em;
    padding: 10px 15px;
    display: block;
}

@media (min-width: 768px) {
    .subscribeBlock .btn {
        font-size: 0.900em;
    }
}

.subscribeBlock.ismobileActive .btn {
    width: 255px;
    display: inline-block;
}

.subscribeBlock a {
    color: #fff;
}

.contactBlock {
    background-color: rgba(19, 24, 41, 0.9);
    padding: 4.50em 0;
}

@media (min-width: 1024px) {
    .contactBlock.contactArea {
        padding-bottom: 6em;
    }
}



@media (min-width: 768px) and (max-width: 1023px) {
    .contactBlock.contactArea {
        padding-top: 11em;
        padding-bottom: 10em;
    }
}

@media (min-width: 1024px) and (max-width: 1200px) {
    .contactBlock.contactArea {
        padding-top: 5em;
        padding-bottom: 10em;
    }
}

.contactBlock h2 {
    color: #fff;
}

.iscontact .locationDropdown {
    display: none;
}

.iscontact .send_btn {
    width: 30%;
}

@media (min-width: 768px) {
    .iscontact .send_btn {
        width: 100%;
    }
}

.iscontact .officeSearch .formGroup.selectLocation {
    margin-bottom: 2.3em;
}

@media (min-width: 768px) {
    .iscontact .officeSearch .formGroup.selectLocation {
        margin-bottom: 4.30em;
    }
}

.officeSearch h2 {
    font-size: 1.533em;
    line-height: 1;
    font-family: Proxima-Nova-Thin, sans-serif;
    margin-bottom: 0.40em;
    color: #000;
}

.officeSearch h3 {
    color: #f7a833;
    margin-bottom: 0.80em;
    padding-bottom: 0.35em;
    font-size: 0.933em;
    border-bottom: 1px solid #b0b8bd;
}

.officeSearch address {
    font-size: 1.067em;
    font-family: 'Proxima-Nova-Alt-Rg', Arial, Helvetica, sans-serif;
    line-height: 1.30;
    margin-bottom: 2em;
}

.officeSearch p {
    margin-bottom: 1.56em;
}

.officeSearch .formGroup.selectLocation {
    margin-bottom: 4.30em;
}

.officeSearch .mapBox {
    margin-bottom: 0.45em;
}

.officeSearch .location.card {
    margin-bottom: 10em;
}

    .officeSearch .location.card h4 {
        text-transform: initial;
        font-size: 1.067em;
        font-family: "Proxima-Nova-Alt-SemiBold", sans-serif;
    }

.listView h3, .japanies-font .listView h3 {
    color: #a93228;
    font-size: 16px;
    text-transform: uppercase;
    margin-bottom: 0.5em;
}

@media (min-width: 768px) {
    .listView h3 {
        font-size: 16px;
    }
}

.listView p {
    font-size: 1.18em;
    line-height: 1.13;
    font-weight: bold;
    margin-bottom: 0;
    color: #131829;
}

@media (min-width: 768px) {
    .listView p {
        font-size: 0.94em;
        padding-bottom: 3px;
    }
}

.listView p a {
    color: #131829;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

@media (min-width: 1025px) {
    .listView p a:hover {
        color: #4fc6de;
    }
}

.listView .listData {
    padding-bottom: 1em;
    margin-bottom: 1em;
    border-bottom: #b0b8bd 1px solid;
}
/* BTLaw-1718 changes */
.item .listData {
    padding-bottom: unset;
    margin-bottom: unset;
}

@media (min-width: 768px) {
    .listView .listData {
        padding-bottom: 0.40em;
        margin-bottom: 0.50em;
    }
}

.listView figure {
    margin-bottom: 10px;
}
/*@media (max-width: 768px) {
	  .listView.gridData .item {
  border-bottom: 1px solid #b0b8bd!important;
  border-top: none!important;
  margin-bottom: 15px!important;
  margin-left: 15px;
  margin-right: 15px;
  padding-left: 0;
  padding-right: 0;
  padding-top: 6%; }
  }*/
@media (min-width: 768px) {
    .listView figure {
        margin-bottom: 0;
    }
}

.listView.gridData .item {
    border-top: 1px solid #b0b8bd;
    margin-bottom: 20px;
    margin-left: 15px;
    margin-right: 15px;
    padding-left: 0;
    padding-right: 0;
    padding-top: 20px;
}

@media (min-width: 768px) {
    .listView.gridData .item {
        padding-bottom: 25px;
        margin-left: 0;
        margin-right: 0;
        padding-left: 15px;
        padding-right: 15px;
        padding-top: 0;
    }

        .listView.gridData .item html:first-child {
            width: 49.8%;
        }
}

@media (min-width: 768px) {
    .listView.gridData .listData {
        /* border: none;*/
        margin-bottom: 0;
        padding-right: 0;
    }

    .listView.gridData .item {
        border-bottom: 1px solid #b0b8bd;
        padding-top: 15px;
        border-top-width: 1px;
        border-style: solid;
        border-color: #b0b8bd;
        border-top: 0;
        padding-bottom: 0;
        margin-bottom: 0;
    }

        .listView.gridData .item .listData {
            padding-left: 0;
        }

        .listView.gridData .item:last-child {
            padding-bottom: 0;
            border-bottom: 0 !important;
        }

        .listView.gridData .item:nth-last-child(2) {
            border-bottom: 0;
        }

        .listView.gridData .item:nth-child(-n+2) {
            border-top: 0;
            padding-top: 0;
        }

        .listView.gridData .item:nth-child(2n+1) {
            border-right-width: 1px;
        }

        .listView.gridData .item:first-child html:first-child {
            width: 49.6%;
        }

        .listView.gridData .item:nth-child(2n) {
            padding-right: 0;
            border-top: 0;
            border-bottom: 1px solid #b0b8bd;
        }
}

@media (min-width: 768px) and (min-width: 768px) {
    .listView.gridData .item:nth-child(2n) .listData {
        padding-left: 15px;
    }
}

@media (min-width: 768px) and (min-width: 768px) {
    .listView.gridData .item > .row {
        display: flex;
        display: -webkit-flex;
        flex-direction: row-reverse;
    }
}

@media (min-width: 768px) {
    _::-webkit-full-page-media, _:future, :root .listView.gridData .item {
        width: 49.8%;
    }
}

@media (min-width: 768px) {
    _::-webkit-full-page-media, _:future, :root .listView.gridData .item:first-child {
        width: 49.6%;
    }
}

.videoCarousel h2 {
    font-family: "Proxima-Nova-Alt-Bold", sans-serif;
    font-size: 16px;
}

.prof_list_new .top_pub .gridData .flexWrap .col-sm-6 .row figure {
    padding-left: 0;
}

.flexBanner {
    overflow: hidden;
    position: relative;
}

    .flexBanner .overlay {
        width: 100%;
        height: 100%;
        -moz-transition: all 0.4s linear;
        -o-transition: all 0.4s linear;
        -webkit-transition: all 0.4s linear;
        transition: all 0.4s linear;
        background: #000;
        position: absolute;
        top: 0;
        left: 0;
        opacity: 0.55;
    }

    .flexBanner .innerWrap {
        padding: 84px 2.5em;
    }

    .flexBanner .slidesWrap {
        width: 75%;
        margin-left: 25%;
        height: 79vh;
        position: relative;
    }

@media (min-width: 768px) {
    .flexBanner .slidesWrap {
        display: -webkit-flex;
        display: flex;
    }
}

.flexBanner .slidesWrap:after, .flexBanner .slidesWrap:before {
    clear: both;
    display: table;
    content: "";
}

.flexBanner .slidesWrap .slide {
    width: 33.333%;
    cursor: pointer;
    float: left;
    position: relative;
    background: no-repeat center center;
    background-size: cover;
}

    .flexBanner .slidesWrap .slide .heading h2 {
        color: #fff;
    }

    .flexBanner .slidesWrap .slide .heading figure {
        -moz-transition: all 0.75s ease;
        -o-transition: all 0.75s ease;
        -webkit-transition: all 0.75s ease;
        transition: all 0.75s ease;
        opacity: 1;
        visibility: visible;
    }

    .flexBanner .slidesWrap .slide.isShrink .innerWrap {
        font-size: 7px;
    }

    .flexBanner .slidesWrap .slide.isShrink .heading figure {
        opacity: 0;
        visibility: hidden;
    }

    .flexBanner .slidesWrap .slide .innerWrap {
        width: 100%;
        height: 100%;
        position: relative;
        z-index: 1;
        font-size: 15px;
        -moz-transition: font-size 0.75s ease;
        -o-transition: font-size 0.75s ease;
        -webkit-transition: font-size 0.75s ease;
        transition: font-size 0.75s ease;
    }

    .flexBanner .slidesWrap .slide h2 {
        opacity: 1;
        text-transform: uppercase;
        font-size: 2.48em;
        line-height: 1;
        width: 100%;
        font-family: "Proxima-Nova-Alt-SemiBold", sans-serif;
    }

    .flexBanner .slidesWrap .slide .caption {
        color: #fff;
        left: 0;
        width: 100%;
        position: absolute;
        top: 6%;
        background-color: #fff;
        height: 100%;
        display: none;
        opacity: 0;
    }

        .flexBanner .slidesWrap .slide .caption p {
            margin-bottom: 0.8em;
        }

        .flexBanner .slidesWrap .slide .caption figure {
            margin-bottom: 1.2em;
        }

.flexBanner .controles {
    position: absolute;
    top: 0;
    left: 0;
    width: 25%;
    height: 100%;
    background: no-repeat center center;
    background-size: cover;
    z-index: 1;
}

    .flexBanner .controles .innerWrap {
        position: relative;
        z-index: 1;
        width: 100%;
        height: 100%;
        padding-left: 2.5em;
        padding-right: 2.5em;
    }

    .flexBanner .controles h1 {
        color: #facf73;
        font-size: 2.48em;
    }

    .flexBanner .controles .edy-list-firmlanding-container {
        padding-left: 2.5em;
        padding-right: 2.5em;
        margin-top: -60px;
        z-index: 1000;
    }

    .flexBanner .controles .edylist-group-firmlanding, .flexBanner .controles .edylist-group-firmlanding1 {
        padding-left: 0;
        margin-bottom: 20px;
        position: relative;
        display: block;
        background-color: rgba(77, 77, 77, 0);
        border-bottom: 1px solid rgba(255, 255, 255, 0);
    }

        .flexBanner .controles .edylist-group-firmlanding .edylist-group-item-firmlanding, .flexBanner .controles .edylist-group-firmlanding1 .edylist-group-item-firmlanding {
            padding-left: 0;
            margin-bottom: 20px;
            position: relative;
            display: block;
            padding-top: 10px;
            padding-bottom: 10px;
            margin-bottom: -1px;
            background-color: rgba(77, 77, 77, 0);
            border-bottom: 1px solid rgba(255, 255, 255, 0.34902);
            padding-left: 10px;
            color: #ef8330;
        }

        .flexBanner .controles .edylist-group-firmlanding .edylist-group-item-firmlanding-child, .flexBanner .controles .edylist-group-firmlanding1 .edylist-group-item-firmlanding-child {
            padding-left: 0;
            margin-bottom: 20px;
            position: relative;
            display: block;
            padding-top: 10px;
            padding-bottom: 10px;
            margin-bottom: -1px;
            background-color: rgba(77, 77, 77, 0);
            border-bottom: 1px solid rgba(255, 255, 255, 0);
            padding-left: 10px;
            color: #ef8330;
        }

        .flexBanner .controles .edylist-group-firmlanding .edylist-group-item-firmlanding:last-child, .flexBanner .controles .edylist-group-firmlanding1 .edylist-group-item-firmlanding:last-child {
            border-bottom: 1px solid rgba(255, 255, 255, 0);
        }

.flexBanner h1, .flexBanner h2 {
    position: relative;
}

    .flexBanner h1 span, .flexBanner h2 span {
        position: absolute;
        top: -26px;
        left: 0;
        color: #a9c938;
    }

.flexBanner-career-landing-main-control h1 span, .flexBanner-career-landing-main-control .flexBanner h2 span {
    color: #a9c938;
}

.flexBanner-career-landing-main-control .controles-heading {
    color: white;
}

.flexBanner-career-landing {
    position: relative;
}

    .flexBanner-career-landing .overlay {
        width: 100%;
        height: 100%;
        -moz-transition: all 0.4s linear;
        -o-transition: all 0.4s linear;
        -webkit-transition: all 0.4s linear;
        transition: all 0.4s linear;
        background: #000;
        position: absolute;
        top: 0;
        left: 0;
        opacity: 0.55;
    }

    .flexBanner-career-landing .innerWrap {
        padding: 2.3em 1.5em;
    }

@media (min-width: 768px) {
    .flexBanner-career-landing .slidesWrap {
        width: 75%;
        margin-left: 25%;
        position: relative;
    }
}

@media (min-width: 768px) and (min-width: 768px) {
    .flexBanner-career-landing .slidesWrap {
        display: -webkit-flex;
        display: flex;
    }
}

@media (min-width: 768px) {
    .flexBanner-career-landing .slidesWrap {
        height: 100vh;
    }
}

.flexBanner-career-landing .slidesWrap:after, .flexBanner-career-landing .slidesWrap:before {
    clear: both;
    display: table;
    content: "";
}

.flexBanner-career-landing .slidesWrap .slide {
    position: relative;
    background: no-repeat center center;
    background-size: cover;
}

@media (min-width: 768px) {
    .flexBanner-career-landing .slidesWrap .slide {
        width: 33.3%;
        float: left;
    }
}

.flexBanner-career-landing .slidesWrap .slide .heading figure {
    -moz-transition: all 0.75s ease;
    -o-transition: all 0.75s ease;
    -webkit-transition: all 0.75s ease;
    transition: all 0.75s ease;
    opacity: 1;
    visibility: visible;
}

.flexBanner-career-landing .slidesWrap .slide.isShrink .innerWrap {
    font-size: 7px;
}

.flexBanner-career-landing .slidesWrap .slide.isShrink .heading figure {
    opacity: 0;
    visibility: hidden;
}

.flexBanner-career-landing .slidesWrap .slide .innerWrap {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
    font-size: 15px;
    -moz-transition: font-size 0.75s ease;
    -o-transition: font-size 0.75s ease;
    -webkit-transition: font-size 0.75s ease;
    transition: font-size 0.75s ease;
}

    .flexBanner-career-landing .slidesWrap .slide .innerWrap a {
        height: 100%;
        display: block;
    }

@media (min-width: 768px) {
    .flexBanner-career-landing .slidesWrap .slide .heading {
        position: absolute;
        top: 48%;
        width: 80%;
    }
}

@media (min-width: 1170px) {
    .flexBanner-career-landing .slidesWrap .slide .heading {
        width: 80%;
    }
}

.flexBanner-career-landing .slidesWrap .slide .heading h2 {
    opacity: 1;
    text-transform: uppercase;
    line-height: 1;
    font-family: "Proxima-Nova-Alt-Rg", sans-serif;
    color: #fff;
    letter-spacing: 2px;
    text-align: center;
    margin-bottom: 0;
    font-size: 2em;
}

@media (min-width: 768px) and (max-width: 1023px) {
    .flexBanner-career-landing .slidesWrap .slide .heading h2 {
        font-size: 16px !important;
        border-bottom: none !important;
        padding-bottom: 0px !important;
        /*margin-left: 1em!important;*/
    }
}

@media (min-width: 1170px) {
    .flexBanner-career-landing .slidesWrap .slide .heading h2 {
        font-size: 2.1em;
    }
}

.flexBanner-career-landing .slidesWrap .slide .caption {
    color: #fff;
    left: 0;
    width: 100%;
    position: absolute;
    top: 6%;
    background-color: #fff;
    height: 100%;
    display: none;
    opacity: 0;
}

    .flexBanner-career-landing .slidesWrap .slide .caption p {
        margin-bottom: 0.8em;
    }

    .flexBanner-career-landing .slidesWrap .slide .caption figure {
        margin-bottom: 1.2em;
    }

.flexBanner-career-landing .slidesWrap .slide .overlay {
    -moz-transition: all 0.7s ease;
    -o-transition: all 0.7s ease;
    -webkit-transition: all 0.7s ease;
    transition: all 0.7s ease;
}

@media (min-width: 1025px) {
    .flexBanner-career-landing .slidesWrap .slide:hover .overlay {
        opacity: 0.3;
    }
}

@media (min-width: 768px) {
    .flexBanner-career-landing .controles {
        position: absolute;
        top: 0;
        left: 0;
        width: 25.1%;
        height: 100%;
        background: no-repeat center center;
        background-size: cover;
        /*z-index: 1;*/
    }
}

@media (min-width: 320px) {
    .flexBanner-career-landing .controles .innerWrap {
        width: 100%;
        position: relative;
        padding: 2em 1.5em 1.5em;
    }
}

@media (min-width: 768px) {
    .flexBanner-career-landing .controles .innerWrap {
        position: absolute;
        top: 52%;
        left: 0;
        width: 100%;
        height: auto;
        z-index: 1;
        padding: 1.5em;
        background-color: inherit;
        -moz-transform: translatey(-50%);
        -o-transform: translatey(-50%);
        -ms-transform: translatey(-50%);
        -webkit-transform: translatey(-50%);
        transform: translatey(-50%);
        min-height: inherit;
    }
}
/*@media screen and (min-device-width: 768px) and (max-device-width: 1280px) {
    .flexBanner-career-landing .controles .innerWrap {
      top: 54%; } }*/
.flexBanner-career-landing .controles h1 {
    color: #facf73;
    font-size: 2em;
    margin-bottom: 10px;
    font-family: "Proxima-Nova-Alt-Rg", sans-serif;
}

@media (min-width: 375px) {
    .flexBanner-career-landing .controles h1 {
        font-size: 2.7em;
    }
}

@media (min-width: 768px) {
    .flexBanner-career-landing .controles h1 {
        font-size: 1.65em;
        margin: 0;
    }
}

@media (min-width: 1170px) {
    .flexBanner-career-landing .controles h1 {
        font-size: 2.48em;
    }
}

.flexBanner-career-landing .controles h1 span {
    display: none;
}

@media (min-width: 768px) {
    .flexBanner-career-landing .controles h1 span {
        font-size: 18px;
        letter-spacing: 0;
        display: block;
        margin-bottom: 25px;
        display: block;
    }
}

@media (min-width: 768px) and (min-width: 1170px) {
    .flexBanner-career-landing .controles h1 span {
        font-size: 22px;
    }
}

.flexBanner-career-landing .controles h1 span.controles-heading {
    margin-bottom: 5px;
    display: block;
}

@media (min-width: 1170px) {
    .flexBanner-career-landing .controles h1 span.future {
        font-size: 30px;
        font-weight: bold;
    }
}

.career_mobile .controles {
    min-height: 295px;
}

@media (max-width: 767px) {
    .career_mobile .controles {
        min-height: 150px;
        background-position: center 25%;
    }
}

@media (min-width: 768px) {
    .career_mobile .controles {
        min-height: inherit;
    }
}

.career_mobile h1 {
    display: flex;
    display: -webkit-flex;
    flex-wrap: wrap-reverse;
}

@media (min-width: 768px) {
    .career_mobile h1 {
        display: block;
    }
}

.career_mobile .future {
    display: block !important;
    font-size: 31px;
}

@media (min-width: 768px) {
    .career_mobile .future {
        font-size: 20px;
    }
}

.career_mobile .career-text {
    margin: 6% 0 10px 0;
    font-size: 31px;
}

@media (min-width: 768px) {
    .career_mobile .career-text {
        margin: 0% 0 0 0;
    }
}

.career_mobile .overlay {
    opacity: 1;
    background: #333;
}
/*btlaw-1056*/
@media screen and (max-width: 767px) {
    .flexBanner-career-landing.career_mobile .overlay {
        opacity: 0.5;
    }

    .flexBanner-career-landing.career_mobile .slideswrap-back-image .innerWrap .heading {
        top: 30px;
        position: relative;
    }
}

@media (min-width: 768px) {
    .career_mobile .overlay {
        opacity: 0.55;
        background: #000;
    }
}

.career_mobile .slidesWrap .slide .heading h2 {
    text-align: left;
    border-bottom: 1px solid #fff;
    padding-bottom: 10px;
    font-size: 24px;
}
/*btlaw-1056*/
@media screen and (max-width: 767px) {
    .career_mobile .slidesWrap .slide .heading h2 {
        border-bottom: none;
    }
}

@media (min-width: 1024px) {
    .career_mobile .slidesWrap .slide .heading h2 {
        border-bottom: none;
        padding-bottom: 0px;
        /*margin-left:1.5em;*/
    }
}

@media (min-width: 1170px) {
    .career_mobile .slidesWrap .slide .heading h2 {
        font-size: 2em;
    }
}

.career_mobile .slidesWrap .slide:last-child .heading h2 {
    border-bottom: 0;
}

.career_mobile .innerWrap {
    padding: 1em 1.5em;
    padding-bottom: 0;
}

@media (min-width: 768px) {
    .career_mobile .innerWrap {
        padding: 2.3em 1.5em;
    }
}

.slidesWrap .slide.active .overlay {
    opacity: 0.3;
}

.flexBanner-career-landing.firm_landing {
    background: #131829;
}

    .flexBanner-career-landing.firm_landing .slidesWrap {
        height: 100vh;
    }

.no-border-top {
    border-top: none;
}

.no-border-bottom {
    border-bottom: none;
}

.card.location > div {
    margin-top: 3px;
}

    .card.location > div span {
        /*float: left;*/
        width: 100%;
        line-height: 15px;
    }

@media (min-width: 992px) {
    .card.location > div span {
        border-left: 1px solid #999;
        padding-left: 10px;
        margin-left: 10px;
        width: auto;
    }
}

@media (min-width: 992px) {
    .card.location .contact-nav span {
        border-left: none !important;
        padding-left: 0px !important;
        margin-left: 0px !important;
        width: auto;
    }
}

.card.location > div span:first-child {
    border-left: 0px solid #999;
    padding-left: 0px;
    margin-left: 0px;
}

.card.location .address-nav {
    margin-bottom: 0px;
}

    .card.location .address-nav p {
        margin-bottom: 0px;
    }

.card.location .contact-nav {
    margin-bottom: -3px;
}

main {
    width: 100%;
    overflow: hidden;
}

@media (min-width: 768px) {
    .ismobileActive {
        display: none !important;
    }
}

.isdesktopActive {
    display: none !important;
}

@media (min-width: 768px) {
    .isdesktopActive {
        display: block !important;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 750px;
        width: 100%;
    }
}

@media (min-width: 990px) {
    .container {
        max-width: 970px;
    }
}

@media (min-width: 1170px) {
    .container {
        max-width: 1170px;
    }
}

.hide {
    display: none !important;
}

@media (min-width: 1170px) {
    .nopadRight {
        padding-right: 0 !important;
    }
}

.page {
    min-height: 92vh;
}

@media (min-width: 768px) and (max-width: 989px) {
    .page {
        min-height: 87vh
    }
}

.pageContent {
    padding: 1em 0;
}

@media (min-width: 768px) {
    .pageContent {
        display: -webkit-flex;
        display: flex;
    }
}

@media (min-width: 768px) {
    .pageContent {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
    }
}

@media (min-width: 768px) {
    .pageContent {
        padding: 3em 0 4em;
    }
}

@media (min-width: 1170px) {
    .pageContent {
        padding: 4.4em 0 4em;
    }
}

.pageContent.nobottompadding {
    padding-bottom: 0;
}

.primaryContent {
    width: 100%;
    min-height: unset !important;
}

@media (min-width: 768px) {
    .primaryContent > .row {
        margin-top: 25px;
    }
}

@media (min-width: 1170px) {
    .primaryContent .leftHalf {
        padding-right: 4em;
    }
}

@media (min-width: 1170px) {
    .primaryContent .rightHalf {
        padding-left: 4em;
    }
}

.primaryContent .news-gap {
    margin-top: 0;
}

@media (min-width: 768px) {
    .block {
        margin-bottom: 1.5em;
    }
}

@media (max-width: 767px) {
    .subscribeBlock {
        margin-bottom: 1.5em;
    }

    .block:last-child {
        margin-bottom: 0;
        margin-top: 5px !important;
    }
    /*.block:last-child .row{
  position: relative;
bottom: 40px;  }*/
}


.block:last-child {
    margin-bottom: 0;
}

nav.inlineMenu li {
    display: inline-block;
    margin-right: 8px;
}

    nav.inlineMenu li:last-child {
        margin-right: 0;
    }

    nav.inlineMenu li a {
        -moz-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        -webkit-transition: all 0.3s ease;
        transition: all 0.3s ease;
    }

        nav.inlineMenu li a:hover {
            color: orange;
        }

.sprite {
    background-image: url("../images/icons/sprite.png");
    background-position: 0 0;
}

.sprite {
    width: 33px;
    height: 20px;
    display: block;
}

    .sprite.mail {
        background-position: 0 -23px;
    }

    .sprite.vcard {
        background-position: 0 0;
        transform: scale(0.955);
    }

.bottom_space:last-child {
    margin-bottom: 4%;
}

.top_pub {
    margin-top: 8%;
}

@media (min-width: 768px) {
    .top_pub {
        margin-top: 0%;
    }
}

.blog-profeshion .col-md-10.col-md-offset-2 {
    position: absolute;
    top: 0;
    left: 10px;
    float: left;
}

@media (min-width: 768px) {
    .blog-profeshion .col-md-10.col-md-offset-2 {
        position: relative;
        top: 0;
        left: 9px;
        float: left;
    }
}

@media (min-width: 768px) {
    .blog-profeshion .col-md-10.col-md-offset-2 {
        left: 0;
    }
}

.tabsContent .primaryContent .leftHalf {
    margin-top: 15px;
}

@media (min-width: 768px) {
    .tabsContent .primaryContent .leftHalf {
        margin-top: 0px;
    }
}

.tab .primaryContent .introTextforMobile {
    margin-top: 15px;
}

@media (min-width: 768px) {
    .tab .primaryContent .introTextforMobile {
        margin-top: 0px;
    }
}

a {
    outline: none;
}

.edySlider {
    overflow: hidden;
    position: relative;
}

    .edySlider .slidesWrap {
        height: auto;
        position: relative;
    }

@media (min-width: 768px) {
    .edySlider .slidesWrap {
        display: -webkit-flex;
        display: flex;
    }
}

@media (min-width: 768px) {
    .edySlider .slidesWrap {
        margin-left: 25%;
        width: 75%;
        height: 100vh;
    }
}

@media (min-width: 1170px) {
    .edySlider .slidesWrap {
        height: 94.8vh;
    }
}

.edySlider .slidesWrap:after, .edySlider .slidesWrap:before {
    clear: both;
    display: table;
    content: "";
}

.edySlider .slidesWrap .owl-item {
    height: auto;
    float: left;
    width: 25%;
    position: relative;
}

@media (min-width: 768px) {
    .edySlider .slidesWrap .owl-item {
        min-height: 93vh;
    }
}

@media (min-width: 768px) {
    .edySlider .slidesWrap .owl-item .overlay {
        width: 100%;
        height: 100%;
        -moz-transition: all 0.4s linear;
        -o-transition: all 0.4s linear;
        -webkit-transition: all 0.4s linear;
        transition: all 0.4s linear;
        background: #000;
        position: absolute;
        top: 0;
        left: 0;
        opacity: 0.55;
    }
}

.edySlider .slidesWrap .owl-item.resized .overlay {
    opacity: 0.05;
}

.edySlider .slidesWrap .slide {
    min-width: 100%;
    min-height: 470px;
    cursor: pointer;
    float: left;
    position: relative;
    background: no-repeat center center;
    background-size: cover;
    padding: 15px;
    transform: none;
    opacity: 1;
}

@media (min-width: 375px) {
    .edySlider .slidesWrap .slide {
        min-height: 65vh;
    }
}

@media (min-width: 480px) {
    .edySlider .slidesWrap .slide {
        min-height: 95vh;
    }

    .mobilecount {
        display: none;
    }
}

@media (min-width: 568px) {
    .edySlider .slidesWrap .slide {
        min-height: 110vh;
    }
}

@media (min-width: 768px) {
    .edySlider .slidesWrap .slide {
        /*transform: translateY(-100px);*/
        min-height: 100vh;
    }

        .edySlider .slidesWrap .slide.blogSlide {
            /*transform: translateY(-100px);*/
            min-height: 80vh;
        }

    .edySlider .slidesWrap.blogSlides {
        height: 80vh;
    }
}

@media (max-width: 480px) {
    .deskcount {
        display: none;
    }

    .mobilecount {
        display: block;
    }

    .filterGroup-2 {
        padding-top: 0 !important;
    }
}

.edySlider .slidesWrap .slide h3 {
    position: absolute;
    opacity: 1;
    text-transform: uppercase;
    color: #fff;
    top: 50%;
    font-size: 24px;
    text-align: center;
    opacity: 0;
    display: none;
    left: 0;
    width: 100%;
    padding: 0 0.65em;
    font-family: "Proxima-Nova-Alt-Bold", sans-serif;
    letter-spacing: 1px;
}

@media (min-width: 768px) {
    .edySlider .slidesWrap .slide h3 {
        font-size: 16px;
    }
}

@media (min-width: 1170px) {
    .edySlider .slidesWrap .slide h3 {
        font-size: 24px;
    }
}

.edySlider .slidesWrap .slide .caption {
    display: block;
    opacity: 1;
    color: #fff;
    padding: 0 1.3em 0 0.6em;
    position: absolute;
    top: -182px;
}

@media (min-width: 375px) {
    .edySlider .slidesWrap .slide .caption {
        top: -250px; /* Priti -12-08-2022 */
    }
}

@media (min-width: 667px) {
    .edySlider .slidesWrap .slide .caption {
        top: -148px;
    }
}

@media (min-width: 768px) {
    .edySlider .slidesWrap .slide .caption {
        display: none;
        opacity: 0;
        padding: 0;
        bottom: 10%;
        top: inherit;
    }
}

@media (min-width: 1170px) {
    .edySlider .slidesWrap .slide .caption {
        padding: 0 1.6em;
    }
}

.edySlider .slidesWrap .slide .caption span, .edySlider .slidesWrap .slide .caption h4 {
    font-family: "Proxima-Nova-Alt-Rg", sans-serif;
    font-weight: bold;
    /* priti BTLAW-1559 */
    margin-top: 8px;
    margin-bottom: 10px;
}

.edySlider .slidesWrap .slide .caption span {
    font-size: 16px;
    font-family: "Proxima-Nova-Alt-Semibold", sans-serif;
}

.edySlider .slidesWrap .slide .caption h4 {
    color: #fdb813;
    text-transform: lowercase;
    line-height: 0.92;
    margin-bottom: 4px;
    font-size: 27px;
    /* priti BTLAW-1559 */
    margin-top: 8px;
    margin-bottom: 10px;
}

.edySlider .slidesWrap .slide .captiontitle h4 {
    text-transform: none !important;
}

@media (min-width: 768px) {
    .edySlider .slidesWrap .slide .caption h4 {
        font-size: 30px;
        /* priti BTLAW-1559 */
        margin-top: 8px;
        margin-bottom: 10px;
    }
}

@media (min-width: 1170px) {
    .edySlider .slidesWrap .slide .caption h4 {
        font-size: 48px;
        /* priti BTLAW-1559 */
        margin-top: 8px;
        margin-bottom: 10px;
    }
}

.edySlider .slidesWrap .slide .caption p {
    font-size: 15px;
    font-family: Proxima-Nova-Thin, sans-serif;
    color: #fff;
    margin-bottom: 4px;
    font-weight: 600;
}

@media (min-width: 768px) {
    .edySlider .slidesWrap .slide .caption p {
        font-size: 18px;
        line-height: 1.4;
    }
}

@media (min-width: 1170px) {
    .edySlider .slidesWrap .slide .caption p {
        font-size: 24px;
    }
}

.edySlider .slidesWrap .slide .caption a {
    font-size: 14px;
    text-align: center;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-family: "Proxima-Nova-Alt-SemiBold", sans-serif;
    display: inline-block;
    padding: 8px 12px;
    margin: 7px 0 0 0;
    background-color: #ee832e;
    float: left;
    border: none;
    outline: none;
}

@media (min-width: 768px) {
    .edySlider .slidesWrap .slide .caption a {
        font-size: 14px;
        display: inline;
    }
}

.edySlider .slidesWrap .slide .caption a:hover {
    opacity: 0.7;
}

.edySlider .slidesWrap .owl-item.active .slide h3 {
    opacity: 1;
    display: none;
}

@media (min-width: 768px) {
    .edySlider .slidesWrap .owl-item.active .slide h3 {
        display: block;
    }
}

.edySlider .slidesWrap .owl-item.prevInactive .slide h3 {
    opacity: 0 !important;
    display: none !important;
}

@media (min-width: 320px) {
    .edySlider .edySliderControles {
        width: 100%;
        position: static;
        padding: 2em 1.5em 1.5em;
        background-color: #333738;
        min-height: 330px;
    }
}

@media (min-width: 375px) {
    .edySlider .edySliderControles {
        min-height: 400px; /* priti-12/8/2022 */
    }
}

@media (min-width: 667px) {
    .edySlider .edySliderControles {
        min-height: 295px;
    }
}

@media (min-width: 768px) {
    .edySlider .edySliderControles {
        position: absolute;
        top: 50%;
        left: 0;
        width: 25%;
        height: auto;
        z-index: 1;
        padding: 1.5em 1.2em;
        background-color: inherit;
        -moz-transform: translatey(-50%);
        -o-transform: translatey(-50%);
        -ms-transform: translatey(-50%);
        -webkit-transform: translatey(-50%);
        transform: translatey(-50%);
        min-height: inherit;
    }
}

@media (min-width: 1170px) {
    .edySlider .edySliderControles {
        padding: 1.5em;
    }
}

.edySlider .edySliderControles h1 {
    color: #facf73;
    letter-spacing: 2px;
    font-size: 2em;
    font-family: 'proxima_novasemibold';
    margin-bottom: 10px;
}

@media (min-width: 375px) {
    .edySlider .edySliderControles h1 {
        font-size: 2.7em;
    }
}

@media (min-width: 768px) {
    .edySlider .edySliderControles h1 {
        font-size: 1.65em;
        margin: 0;
    }
}

@media (min-width: 1170px) {
    .edySlider .edySliderControles h1 {
        font-size: 2.48em;
    }
}

.edySlider .edySliderControles h2 {
    font-family: "Proxima-Nova-Alt-Rg", sans-serif;
}

@media (min-width: 320px) {
    .edySlider .edySliderControles h2 {
        display: none;
    }
}

@media (min-width: 768px) {
    .edySlider .edySliderControles h2 {
        display: block;
        color: #a9c938;
        font-size: 18px;
        margin-bottom: 31px;
        line-height: 1;
    }
}

@media (min-width: 1170px) {
    .edySlider .edySliderControles h2 {
        font-size: 30px;
    }
}

.edySlider .edySliderControles .pagination {
    margin-bottom: 40px;
}

    .edySlider .edySliderControles .pagination:before, .edySlider .edySliderControles .pagination:after {
        clear: both;
        content: "";
        display: table;
    }

    .edySlider .edySliderControles .pagination .owl-dot {
        width: 14px;
        height: 14px;
        cursor: pointer;
        background-color: #fff;
        opacity: 0.35;
        margin-left: 6px;
        float: left;
        -moz-transition: all 0.3s ease-in;
        -o-transition: all 0.3s ease-in;
        -webkit-transition: all 0.3s ease-in;
        transition: all 0.3s ease-in;
        display: block;
    }

        .edySlider .edySliderControles .pagination .owl-dot:first-child {
            margin-left: 0;
        }

        .edySlider .edySliderControles .pagination .owl-dot span {
            display: none;
            color: #fff;
            position: absolute;
            bottom: -25px; /* priti BTLAW-1559 */
            left: 0;
            white-space: nowrap;
        }

        .edySlider .edySliderControles .pagination .owl-dot.active {
            background-color: #ee832e;
            opacity: 1;
        }

            .edySlider .edySliderControles .pagination .owl-dot.active span {
                display: none;
            }

@media (min-width: 768px) {
    .edySlider .edySliderControles .pagination .owl-dot.active span {
        display: block;
    }
}

.edySlider .edySliderControles .pagination .owl-dot.first-child {
    margin-left: 0;
}

.edySlider .owl-nav.disabled {
    cursor: pointer;
    display: block;
}

    .edySlider .owl-nav.disabled .owl-prev, .edySlider .owl-nav.disabled .owl-next {
        color: transparent;
        position: absolute;
        top: 44%;
        width: 18px;
        height: 30px;
    }

@media (min-width: 768px) {
    .edySlider .owl-nav.disabled .owl-prev, .edySlider .owl-nav.disabled .owl-next {
        top: 49%;
    }
}

@media (min-width: 1170px) {
    .edySlider .owl-nav.disabled .owl-prev, .edySlider .owl-nav.disabled .owl-next {
        top: 52%;
    }
}

.edySlider .owl-nav.disabled .owl-prev {
    left: 10px;
    display: block;
    background: url(../images/icons/left_insight.png) no-repeat center center;
}

@media (min-width: 768px) {
    .edySlider .owl-nav.disabled .owl-prev {
        display: none;
    }
}

.edySlider .owl-nav.disabled .owl-next {
    right: 10px;
    background: url(../images/icons/right_insight.png) no-repeat center center;
}

@media (min-width: 768px) {
    .edySlider .owl-nav.disabled {
        display: block;
    }
}

.field-validation-error {
    color: red;
}

/* disclaimer section */
.disclaimer-container {
    display: none;
    position: relative;
    width: 100%;
    z-index: 9999999;
}

@media (min-width: 768px) {
    .disclaimer-container {
        position: fixed;
    }
}

.disclaimer-container .disclaimer {
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: #000;
    opacity: .7;
    text-align: center;
    z-index: -1;
    font-family: "Proxima-Nova-Alt-Rg", sans-serif;
}

.disclaimer-container .heading {
    position: unset;
    text-align: center;
    width: 100%;
    padding: 10px 10px;
}

@media (min-width: 768px) {
    .disclaimer-container .heading {
        padding: 20px 10px;
    }
}

.disclaimer-container .heading .left-heading {
    color: #a9c938;
    font-weight: 600;
}

.disclaimer-container .heading .right-heading {
    color: #fff;
}

.disclaimer-container .heading .content-privacy {
    margin-top: 10px;
}

    .disclaimer-container .heading .content-privacy a {
        margin-right: 10px;
        -moz-transition: all 0.4s linear;
        -o-transition: all 0.4s linear;
        -webkit-transition: all 0.4s linear;
        transition: all 0.4s linear;
        color: #f7a833;
    }

        .disclaimer-container .heading .content-privacy a:hover {
            color: #f7a833;
        }

@media (min-width: 1170px) {
    .disclaimer-container .heading .content-privacy a:hover {
        color: #4fc6de;
    }
}

.disclaimer-container .heading .content-privacy .btn {
    padding: 10px 30px;
}

.except-home.disclaimer-container {
    position: fixed;
    bottom: 0px;
    z-index: 9999999;
}
/*
@media (min-width: 768px) {
    .except-home.disclaimer-container {
        height: 100px;
    }
}
*/
/* disclaimer popup */
.modal.disclaimer-popup {
    background-color: rgba(0, 0, 0, 0.7);
}

    .modal.disclaimer-popup .modal-sm {
        width: 90%;
        margin: 0px auto;
        max-width: 500px;
    }

@media (min-width: 768px) {
    .modal.disclaimer-popup .modal-sm {
        width: 50%;
    }
}

.modal.disclaimer-popup .modal-sm .modal-content {
    width: 100%;
    border-radius: 0px;
    padding: 15px 15px 105px;
}

@media (min-width: 768px) {
    .modal.disclaimer-popup .modal-sm .modal-content {
        padding: 30px 30px 70px;
    }
}

.modal.disclaimer-popup .modal-sm .modal-content .modal-body .content-head {
    color: #a93228;
    font-weight: 600;
}

.modal.disclaimer-popup .modal-sm .modal-content .modal-body .btn-container {
    width: 100%;
    float: left;
    margin-top: 10px;
}

    .modal.disclaimer-popup .modal-sm .modal-content .modal-body .btn-container .btn.left {
        width: 100%;
        float: left;
        margin-bottom: 10px;
    }

@media (min-width: 768px) {
    .modal.disclaimer-popup .modal-sm .modal-content .modal-body .btn-container .btn.left {
        width: calc(50% - 10px);
        margin-right: 10px;
        margin-bottom: 0px;
    }
}

.modal.disclaimer-popup .modal-sm .modal-content .modal-body .btn-container .btn.right {
    width: 100%;
    float: left;
}

@media (min-width: 768px) {
    .modal.disclaimer-popup .modal-sm .modal-content .modal-body .btn-container .btn.right {
        width: calc(50% - 10px);
        margin-left: 10px;
    }
}

/*end disclaimer section */
.contactInfo .print-mail {
    display: none;
}

.isPracticeDetail.page.practise_outer .primaryContent.practice-main-content.isActive .practice-main-content ul li a:hover {
    color: orange;
}

.overflowinitial {
    overflow: visible !important;
}

.menuTrigger.pullRight .toggle-menu {
    display: none;
}

@media (min-width: 768px) {
    .menuTrigger.pullRight .toggle-menu {
        position: absolute;
        right: 35px;
        font-size: 16px;
        top: 21px;
        transform: translateY(-48%);
        color: #fff;
        display: none;
    }

        .menuTrigger.pullRight .toggle-menu.active {
            display: block;
        }
}

.pageContent-location {
    padding: 1.5em 0 0;
}

@media (min-width: 768px) {
    .pageContent-location {
        padding-top: 4.4em;
    }
}

.pageContent-location .nobottompadding {
    padding-bottom: 0;
}

.locationCards .card {
    margin-bottom: 7.5%;
}

@media (min-width: 768px) {
    .locationCards .card {
        margin: 0 2.5% 3.5%;
        width: 28.332%;
        float: left;
        min-height: 280px;
    }
}

@media (min-width: 768px) {
    .locationCards .card {
        min-height: 260px;
    }
}

@media (min-width: 1024px) {
    .locationCards .card {
        width: 21.24%;
        margin: 0 1.8% 3.5%;
        height: 208px;
    }
}

.locationCards .card .caption > address > span {
    font-size: 0.95em;
    color: #000;
    font-weight: 600;
}

@media (min-width: 768px) {
    .locationCards .card .caption > address > span {
        font-size: 14px;
    }
}

.locationCards .card .caption span .faxmobile a:hover {
    color: none;
}

.filterGroup {
    margin-bottom: 0px;
}

    .filterGroup .clear-all-filter {
        margin: 0;
    }

.clear-all {
    width: 100%;
    float: left;
}

    .clear-all .clear-all-filter {
        margin: 0;
    }

.newslanding .clear-all {
    width: 100%;
    float: left;
    padding-left: 15px;
}

    .newslanding .clear-all .clear-all-filter {
        margin: 0;
    }

.isLocationDetail .location_detail .innerWrap li {
    width: calc(100% - 30px);
    margin-right: 30px;
}

.prof_list_new .primaryContent ul.sbOptions {
    /*max-height: 125px !important;
    height: auto !important;*/ /*BTLaw-1668*/
    padding-bottom: 0;
}

.prof_list_new .infoBlock h4 {
    margin-bottom: 5px;
}

.isLocationDetail .location_detail_outer .mobile_list .caption .fa-phone {
    -webkit-transform: rotate(97deg);
    -moz-transform: rotate(97deg);
    -o-transform: rotate(97deg);
    -ms-transform: rotate(97deg);
    transform: rotate(97deg);
    font-size: 21px;
    position: relative;
    top: 4px;
}

.isLocationDetail .location_detail_outer .primaryContent.tab:first-child {
    padding-top: 18px;
}

.isLocationDetail .primaryContent > .row {
    margin-top: 0px;
}

.isLocationDetail .primaryContent .vCard .row .caption .contactInfo .practice-prof {
    color: #121728;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

    .isLocationDetail .primaryContent .vCard .row .caption .contactInfo .practice-prof:hover {
        color: #4fc6de;
    }

.calender-container {
    position: relative;
    background-color: #f1f1f1;
    height: 1.9em;
    position: relative;
    height: 2.25em;
}

.detail-contact .people-address .contactInfo p {
    margin: 0;
}

.people-search-section .clear-all-text {
    width: calc(100% - 154px);
    float: left;
    color: #000;
    font-size: 18px;
    text-align: right;
    line-height: 2;
    cursor: pointer;
    text-transform: uppercase;
}

.people-search-section .btn-submit {
    width: 120px;
}

.peopleBanner h1 {
    text-transform: capitalize;
    font-size: 2em;
    margin-bottom: 15px;
}

    .peopleBanner h1 span {
        color: #fdb813;
        font-family: Proxima-Nova-Thin, sans-serif;
        font-weight: 300;
        font-size: 22px;
        margin-top: 0.10em;
    }

.peopleBanner h4 {
    font-size: 0.8em;
    padding-bottom: 10px;
}

.view-all-button {
    padding: 8px 20px;
    text-transform: capitalize;
    margin-top: 20px;
    float: left;
}

.block.listView.newsection {
    margin-bottom: 25px;
}

    .block.listView.newsection h3 {
        font-family: "Proxima-Nova-Alt-Bold", sans-serif;
    }

@media (min-width: 768px) {
    .block.listView.clearfix.newsection {
        margin-bottom: 0px;
    }
}

.twoColumnLayout .tab .pageContent .primaryContent .introTextforMobile h1 span {
    font-weight: 600;
}

.twoColumnLayout .tab .pageContent .primaryContent .introTextforMobile .caption address p {
    color: #777779;
}

.caption .col-md-6.bio-office-address-info {
    padding-bottom: 10px;
}

    .caption .col-md-6.bio-office-address-info h4 {
        padding-bottom: 5px;
    }

    .caption .col-md-6.bio-office-address-info + .contactInfo {
        width: 100%;
    }

.location-heading-container.container {
    margin: 20px auto 0px;
    padding: 0px 4%;
    font-size: 18px;
    color: #000;
    font-family: 'Proxima-Nova-Alt-Rg', Arial, Helvetica, sans-serif;
}

@media (min-width: 480px) {
    .location-heading-container.container {
        padding: 0px 8%;
    }
}

@media (min-width: 768px) {
    .location-heading-container.container {
        margin: 50px auto 0px;
        padding: 0px 30px;
    }
}

.language-container {
    position: absolute;
    right: 68px;
    top: -3px;
    cursor: pointer;
}

@media (min-width: 768px) {
    .language-container {
        right: 145px;
    }
}

.language-container .sbHolder {
    width: 57px;
    height: 31px;
    margin-top: 6px;
    background: #b8b4b4;
    border-radius: 8px;
}

    .language-container .sbHolder .sbOptions {
        padding-bottom: 0px;
    }

    .language-container .sbHolder li {
        border-bottom: 1px solid #b8b4b4;
    }

.language-container .fa-globe {
    margin-left: 5px;
    font-size: 21px;
    color: #b8b4b4;
}

.language-container .globe-section {
    width: 35px;
    float: left;
    margin-top: 13px;
}

.language-container .arrows {
    width: 20px;
    float: left;
    color: #b8b4b4;
    margin-top: 12px;
    font-size: 22px;
    display: none;
}

@media (min-width: 768px) {
    .language-container .arrows {
        display: block;
    }
}

.language-container .arrows .fa-chevron-up {
    display: none;
}

.language-container .arrows.up .fa-chevron-up {
    display: block;
}

.language-container .arrows.up .fa-chevron-down {
    display: none;
}

.language-container ul {
    min-width: 50px;
    width: auto;
    position: absolute;
    background: #131829;
    top: 35px;
    right: 0px;
    padding: 5px 0px 0px 0px;
    list-style-type: none;
    display: none;
}

@media (min-width: 768px) {
    .language-container ul {
        background: rgba(54, 58, 73, 0.721569);
    }
}

.language-container ul li {
    padding: 5px 5px 5px 5px;
    width: 100%;
    border-bottom: 1px solid #f1f1f1;
}

    .language-container ul li a {
        color: #fff;
    }

    .language-container ul li.active {
        background-color: #00b0bd;
        border-bottom: 1px solid #4fc6de;
    }

        .language-container ul li.active a {
            color: rgba(0, 0, 0, 0.9);
        }

.language-container ul.active {
    display: block;
}

@media screen and (min-device-width: 320px) and (max-device-width: 479px) {
    .globalHeader .logo img {
        max-width: 75%;
        position: relative;
        top: 10px;
    }
}

.iscontact textarea {
    height: 16.4em;
}

.iscontact .primaryContent .formWrap {
    padding-right: 0;
}

@media (min-width: 768px) {
    .iscontact .primaryContent .formWrap {
        padding-right: 11.315em;
    }
}

.iscontact .primaryContent h2 {
    text-transform: uppercase;
    color: #f7a833;
    font-size: 1.55em;
    margin-bottom: 1.467em;
    font-family: "Proxima-Nova-Alt-SemiBold", sans-serif;
}

.iscontact .formGroup.captchaText {
    margin-bottom: 0.60em;
}

.officeSearch .locations {
    display: none;
}

    .officeSearch .locations.active {
        display: inline-block;
    }

.practise-leader .vCard {
    margin-bottom: 0;
}

    .practise-leader .vCard h3 {
        display: none;
    }

    .practise-leader .vCard h4 {
        padding-top: 3%;
    }

.practise-leader .caption ul {
    padding-left: 0;
    margin-bottom: 0;
}

.practise-leader .caption .contactInfo {
    padding: 10px 0 0;
}

.vCard .caption h4 {
    margin-top: 0px;
    font-weight: 600;
}

    .vCard .caption h4 a {
        -moz-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        -webkit-transition: all 0.3s ease;
        transition: all 0.3s ease;
        color: #121728;
    }

        .vCard .caption h4 a:hover {
            color: #4fc6de;
        }

@media (min-width: 768px) {
    .vCard .caption h4 {
        margin-top: 3px;
    }
}

.vCard .caption ul li {
    width: 30px;
    float: left;
    line-height: 10px;
}

@media (min-width: 768px) {
    .vCard .caption ul li {
        line-height: 35px;
    }
}

#Overview_detail .row {
    margin-top: 0;
}

.practise_outer .infoBanner .infoBox.tintMedium .contentMiddle .table-cell .mobileTab,
.practise_outer .infoBanner .infoBox.tintMedium .contentMiddle .table-cell .mapAddress {
    display: block;
}

@media (min-width: 768px) {
    .practise_outer .infoBanner .infoBox.tintMedium .contentMiddle .table-cell .mobileTab,
    .practise_outer .infoBanner .infoBox.tintMedium .contentMiddle .table-cell .mapAddress {
        display: none;
    }
}

.practise_outer .infoBanner .infoBox.tintMedium .contentMiddle .table-cell {
    display: block;
    flex-wrap: inherit;
}

.practise_outer .primaryContent .row {
    margin-top: 0;
}

.practise_outer .primaryContent .block ul li {
    line-height: 1;
}

.practise_outer .primaryContent .newsection .row figure {
    padding-left: 15px;
}

.practise_outer .infoBanner .infoBox .contentMiddle {
    padding-top: 0;
}

@media (min-width: 768px) {
    .practise_outer .infoBanner .infoBox .contentMiddle {
        padding-top: 1em;
    }
}

.practise_outer .bannerImg {
    margin-bottom: 0px;
}

@media (min-width: 768px) {
    .practise_outer .bannerImg {
        margin-bottom: 25px;
    }
}

.practise_outer .bannerImg .infoBox .introBox {
    padding-top: 30px;
}

@media (min-width: 768px) {
    .practise_outer .bannerImg .infoBox .introBox {
        padding-top: 0px;
    }
}

.practise_outer .infoBox .introBox {
    padding-top: 30px;
}

@media (min-width: 768px) {
    .practise_outer .infoBox .introBox {
        padding-top: 0px;
    }
}

.practise_outer .locationDropdown, .practise_outer .mapAddress p {
    display: none;
}

.practise_outer .listView.gridData .item:last-child {
    margin-bottom: 20px;
    border-bottom: 0;
}

@media (min-width: 768px) {
    .practise_outer .listView.gridData .item:last-child {
        border-bottom: 0;
        margin-bottom: 0px;
    }
}

.practise_outer .infoBanner .contentMiddle .block p {
    margin-top: 5%;
}

@media (min-width: 768px) {
    .practise_outer .infoBanner .contentMiddle .block p {
        margin-top: 0%;
    }
}

.practise_outer .filterGroup .filter_gap {
    text-align: left;
}

@media (min-width: 1170px) {
    .practise_outer .filterGroup .filter_gap {
        text-align: right;
    }
}

.practise_outer #insights_detail .leftHalf .listView figure, .practise_outer #insights_detail .rightHalf .listView figure {
    padding-left: 15px;
}

@media (min-width: 768px) {
    .practise_outer #insights_detail .leftHalf .listView figure, .practise_outer #insights_detail .rightHalf .listView figure {
        padding-left: 0;
    }
}

.practise_outer .videoCarousel .owl-nav .owl-prev, .practise_outer .videoCarousel .owl-nav .owl-next {
    top: 19%;
    width: 18px;
    height: 30px;
    position: absolute;
}

@media (min-width: 768px) {
    .practise_outer .videoCarousel .owl-nav .owl-prev, .practise_outer .videoCarousel .owl-nav .owl-next {
        top: 27%;
    }
}

.practise_outer .videoCarousel .owl-nav .owl-prev {
    left: 10px;
    background: url(../images/icons/left_insight.png) no-repeat center center;
    color: transparent;
}

.practise_outer .videoCarousel .owl-nav .owl-next {
    right: 10px;
    background: url(../images/icons/right_insight.png) no-repeat center center;
    color: transparent;
}

.border-bott {
    display: block;
    border-top: 1px solid #b0b8bd;
    margin-top: 30px;
}

@media (min-width: 768px) {
    .border-bott {
        display: none;
    }
}

.practise-leader .row .caption h4 {
    font-family: "Proxima-Nova-Alt-Rg", sans-serif;
}

.practise-leader .social-icon li a .fa-phone {
    top: 4px;
}

@media (min-width: 768px) {
    .practise-leader .social-icon li a .fa-phone {
        top: -2px;
    }
}

.overview-section {
    padding: 0px 0px 25px 0px;
    border-bottom: 1px solid #b0b8bd;
    margin-bottom: 25px;
}

.overview-subheding {
    padding: 0px 0px 25px 0px;
    border-bottom: 1px solid #b0b8bd;
    margin-bottom: 25px;
}

    .overview-subheding h3 {
        color: #f7a833;
    }

    .overview-subheding .content .head {
        margin-bottom: 0.50em;
    }

        .overview-subheding .content .head a {
            color: #777779;
            font-size: 0.933em;
            -moz-transition: all 0.3s ease;
            -o-transition: all 0.3s ease;
            -webkit-transition: all 0.3s ease;
            transition: all 0.3s ease;
        }

            .overview-subheding .content .head a:hover {
                color: #4fc6de;
            }

.practise-leader .vCard .location-text {
    padding-top: 0;
    font-weight: 300;
}

.practise-leader .vCard .contactInfo p {
    margin: 0;
}

.practise-leader .vCard .social-icon {
    margin: 0;
}

    .practise-leader .vCard .social-icon li:last-child {
        display: block;
    }

@media (min-width: 768px) {
    .practise-leader .vCard .social-icon li:last-child {
        display: none;
    }
}

.mobile_list .vCard .caption .location-text {
    font-family: "Proxima-Nova-Alt-Rg", sans-serif;
    font-weight: 400;
}

.isPracticeDetail.page.twoColumnLayout.practice_outer .secondaryContent .left-gap {
    margin-bottom: 4px;
}

@media (min-width: 768px) {
    .isPracticeDetail.page.twoColumnLayout.practice_outer .secondaryContent .left-gap {
        margin-bottom: 0px;
    }
}

@media (min-width: 768px) {
    .practise_outer .infoBanner .infoBox.first, .practise_outer .infoBanner .infoBox.second, .practise_outer .infoBanner .infoBox.third {
        width: 33.33%;
    }
}

@media only screen and (max-width: 1024px) and (min-width: 768px) {
    .practise_outer .infoBanner .infoBox.third.new {
        width: 43%;
    }
}

.practise_outer #insights_detail .rightHalf .listView .row figure {
    padding-left: 15px;
}

@media (min-width: 768px) {
    .practise_outer #insights_detail .rightHalf .listView .row figure {
        padding-left: 0px;
    }
}

.search_result #all li.ng-scope {
    width: 100%;
}

@media screen and (max-device-width: 767px) {
    .isPracticeDetail.page.twoColumnLayout.practice_outer .infoBox.tintDark-professional-listing {
        min-height: 231px;
    }
}

.practice_outer .top_pub .gridData .row {
    margin-top: 5px;
}

.practise_outer .secondaryContent .overview-subheding:last-child {
    border-bottom: 0;
}

@media (min-width: 768px) {
    .practise_outer .headline_gap {
        margin-top: 50px;
    }

    .practise_outer .pageContent .secondaryContent .headline_gap {
        margin-top: 0px !important;
    }
}

@media (min-width: 768px) {
    .pageContent .primaryContent .practice-main-content {
        margin-top: -1em !important
    }
}

.bio-width {
    width: 100%;
}

.isEvent {
    margin-bottom: 0;
}

    .isEvent .videoCarousel h2 {
        margin-bottom: 5px;
    }

    .isEvent .owl-carousel .owl-dots {
        top: -22px;
    }

@media (min-width: 768px) {
    .isEvent .listView p {
        font-size: 1em;
    }
}

@media (min-width: 768px) {
    .isEvent .gridData .view-all-button {
        float: right;
    }
}

.isEvent .toggleBtn {
    position: absolute;
    top: 0;
    background-color: #808080;
    text-align: left;
    padding-left: 13px;
    width: 255px;
    text-transform: capitalize;
    height: 35px;
    font-size: 1.2em;
    padding-top: 5px;
    padding-bottom: 5px;
    left: 0;
    right: 0;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .isEvent .toggleBtn {
        width: 150px;
        left: auto;
        right: auto;
        margin: 0;
        height: 30px;
    }
}

.isEvent .toggleBtn:hover, .isEvent .toggleBtn:focus {
    opacity: 1;
}

.isEvent .toggleBtn:after {
    content: "";
    position: absolute;
    width: 18px;
    height: 16px;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
    top: 8px;
    background: url(../images/icons/sprite.png);
    background-position: -41px -17px;
    right: 5px;
}

@media (min-width: 768px) {
    .isEvent .toggleBtn:after {
        top: 3px;
    }
}

.isEvent .toggleBtn.open:after {
    top: 13px;
    transform: rotate(180deg);
}

@media (min-width: 768px) {
    .isEvent .toggleBtn.open:after {
        top: 10px;
    }
}

.isEvent .eventSearch .innerWrap {
    display: none;
}

.isEvent .eventSearch .formGroup {
    margin-bottom: 0.5em;
    height: 1.9em;
}

.isEvent .eventSearch .eventSearchBtn {
    text-align: center;
    padding-bottom: 15px;
    margin-top: 15px;
}

@media (min-width: 768px) {
    .isEvent .eventSearch .eventSearchBtn {
        text-align: right;
        padding-bottom: 0;
        margin-top: 3px;
    }
}

.isEvent .eventSearch .submit {
    font-size: 0.800em;
    padding: 7px 17px;
}

.isEvent .eventSearch input,
.isEvent .eventSearch textarea,
.isEvent .eventSearch select,
.isEvent .eventSearch .sbSelector {
    height: 33px;
    line-height: 33px;
}

@media (min-width: 768px) {
    .isEvent .eventSearch input,
    .isEvent .eventSearch textarea,
    .isEvent .eventSearch select,
    .isEvent .eventSearch .sbSelector {
        height: 1.90em;
        line-height: 1.90em;
    }
}

.isEvent .inverseTheme {
    padding-bottom: 3em;
}

@media (min-width: 768px) {
    .isEvent .inverseTheme {
        padding-bottom: 20em;
        margin-top: 84px;
    }
}

/*Ravi changes start*/

@media (min-width: 768px) {
    .isEvent .inverseTheme {
        padding-bottom: 11em;
    }
}

@media only screen and (min-width: 768px) and (max-height: 1024px) and (-webkit-min-device-pixel-ratio: 1.5) {
    .col-sm-6.isLeft.inverseTheme {
        min-height: 1200px !important;
    }
}


@media only screen and (min-width: 1024px) and (max-height: 1366px) and (-webkit-min-device-pixel-ratio: 1.5) {

    .col-sm-6.isLeft.inverseTheme {
        min-height: 1105px !important;
    }

    .col-sm-6.isRight {
        min-height: 600px !important;
    }

    .viewportHeight {
        min-height: 70vh;
    }

    .page {
        min-height: 86vh;
    }
}

@media only screen and (min-width: 1024px) and (max-height: 1366px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 1.5) {

    .col-sm-6.isLeft.inverseTheme {
        min-height: 910px !important;
    }
}

@media only screen and (min-width: 1024px) and (max-height: 768px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 1.5) {
    .col-sm-6.isLeft.inverseTheme {
        min-height: 1116px !important;
    }
}

/*Ravi changes end*/


.isEvent .inverseTheme .halfContainer .videoCarousel .owl-carousel .owl-nav .owl-prev, .isEvent .inverseTheme .halfContainer .videoCarousel .owl-carousel .owl-nav .owl-next {
    position: absolute;
    width: 18px;
    height: 30px;
    top: 20%;
}

@media only screen and (max-width: 450px) and (min-width: 300px) {
    .isEvent .inverseTheme .halfContainer .videoCarousel .owl-carousel .owl-nav .owl-prev, .isEvent .inverseTheme .halfContainer .videoCarousel .owl-carousel .owl-nav .owl-next {
        top: 23%;
    }
}

@media only screen and (max-width: 767px) and (min-width: 451px) {
    .isEvent .inverseTheme .halfContainer .videoCarousel .owl-carousel .owl-nav .owl-prev, .isEvent .inverseTheme .halfContainer .videoCarousel .owl-carousel .owl-nav .owl-next {
        top: 30%;
    }
}

@media only screen and (max-width: 992px) and (min-width: 768px) {
    .isEvent .inverseTheme .halfContainer .videoCarousel .owl-carousel .owl-nav .owl-prev, .isEvent .inverseTheme .halfContainer .videoCarousel .owl-carousel .owl-nav .owl-next {
        top: 20%;
    }
}

@media only screen and (min-width: 993px) {
    .isEvent .inverseTheme .halfContainer .videoCarousel .owl-carousel .owl-nav .owl-prev, .isEvent .inverseTheme .halfContainer .videoCarousel .owl-carousel .owl-nav .owl-next {
        top: 30%;
    }
}

.isEvent .inverseTheme .halfContainer .videoCarousel .owl-carousel .owl-nav .owl-prev {
    left: 10px;
    background: url(../images/icons/left_insight.png) no-repeat center center;
    color: transparent;
}

.isEvent .inverseTheme .halfContainer .videoCarousel .owl-carousel .owl-nav .owl-next {
    right: 10px;
    background: url(../images/icons/right_insight.png) no-repeat center center;
    color: transparent;
}

.isEvent .videoCarousel h2 {
    font-size: 0.933em;
    font-family: "Proxima-Nova-Alt-SemiBold", sans-serif;
}

.isEvent .videoCarousel h3 {
    font-size: 1.467em;
}

.isEvent .videoCarousel time {
    color: #c7cdd1;
    font-size: 1.067em;
    font-family: "Proxima-Nova-Alt-Rg", sans-serif;
}

.isEvent .videoCarousel p {
    font-size: 0.867em;
    font-family: Proxima-Nova-Thin, sans-serif;
    margin-bottom: 0.9em;
}

.isEvent .listView h3,
.isEvent .buttonGrid h3 {
    font-size: 16px;
    text-transform: uppercase;
    margin-bottom: 1.5em;
    font-family: "Proxima-Nova-Alt-Bold", sans-serif;
    color: #a93228;
}

@media (min-width: 768px) {
    .isEvent .listView h3,
    .isEvent .buttonGrid h3 {
        font-size: 16px;
    }
}

.isEvent .buttonGrid {
    text-align: center;
    padding-bottom: 35px;
}

    .isEvent .buttonGrid .btn {
        max-width: 175px;
        display: inline-block;
    }

@media (min-width: 768px) {
    .isEvent .buttonGrid {
        text-align: left;
        padding-bottom: 0;
    }

        .isEvent .buttonGrid .btn {
            max-width: auto;
        }
}

@media (min-width: 768px) {
    .isEvent .isRight {
        padding-top: 84px;
    }
}

.twoColumnLayout .locationDropdown {
    display: none;
}

.block.listView.gridData {
    padding-bottom: 35px;
}

@media (min-width: 768px) {
    .block.listView.gridData {
        padding-bottom: 0;
        padding-left: 15px;
        padding-right: 15px;
    }
}

.block.listView.gridData h3 {
    font-family: "Proxima-Nova-Alt-Bold", sans-serif;
}

@media (min-width: 768px) {
    .block.listView.gridData h3 {
        margin-left: -15px;
    }
}

@media (min-width: 768px) {
    .block.listView.gridData .view-all-button {
        margin-right: -15px;
    }
}

.block.listView.gridData.top_pub {
    margin-top: 0;
}

@media (min-width: 768px) {
    .block.listView.gridData.top_pub {
        margin-top: 8%;
    }
}

.block.listView.gridData .flexWrap .item .row .listData {
    border-bottom: 0;
}

.datepickerContainer {
    position: relative;
}

    .datepickerContainer .datePicker {
        position: relative;
        background: #f1f1f1;
        height: 1.90em;
        line-height: 1.90em;
        padding: 0 2.3em 0 0.66em;
        cursor: pointer;
        font-size: 0.9em;
    }

        .datepickerContainer .datePicker:after {
            content: " ";
            background-image: url(../images/icons/sprite.png);
            background-position: -40px 0;
            background-repeat: no-repeat;
            width: 20px;
            height: 20px;
            position: absolute;
            right: .4em;
            top: 50%;
            -moz-transition: all 0.3s ease;
            -o-transition: all 0.3s ease;
            -webkit-transition: all 0.3s ease;
            transition: all 0.3s ease;
            -moz-transform: translatey(-50%);
            -o-transform: translatey(-50%);
            -ms-transform: translatey(-50%);
            -webkit-transform: translatey(-50%);
            transform: translatey(-50%);
        }

        .datepickerContainer .datePicker.clicked:after {
            -moz-transform: translatey(-50%) rotate(-180deg);
            -o-transform: translatey(-50%) rotate(-180deg);
            -ms-transform: translatey(-50%) rotate(-180deg);
            -webkit-transform: translatey(-50%) rotate(-180deg);
            transform: translatey(-50%) rotate(-180deg);
        }

    .datepickerContainer .dateRangeHolder {
        position: absolute;
        top: 29px;
        left: 0;
        background-color: #fff;
        border: 1px solid #f1f1f1;
        width: 100%;
        padding: 0.20em;
        z-index: 100;
        display: none;
    }

        .datepickerContainer .dateRangeHolder input {
            background: #fff;
            padding: 0;
            font-size: 0.85em;
            text-align: center;
        }

.daterangepicker .drp-selected {
    display: block;
    padding-bottom: 15px;
    padding-right: 0;
}

@media (min-width: 768px) {
    .daterangepicker .drp-selected {
        display: inline-block;
        padding-bottom: 0;
        padding-right: 8px;
    }
}

.datepickerContainer .calender {
    background: #f1f1f1;
    font-size: 0.9em;
    display: block;
    color: #333;
    padding: 0 2.13em 0 0.1em;
    line-height: 1.91em;
    font-family: "Proxima-Nova-Alt-Rg", sans-serif;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.datepickerContainer span {
    padding-right: 25px;
}

.datepickerContainer .fa-calendar {
    position: absolute;
    right: 6px;
    top: 5px;
}

.ismobileActive .datepickerContainer .fa-calendar {
    top: 3px;
    font-size: 20px;
    color: #000;
}

.isEvent .datepickerContainer .calender-container {
    height: 2.2em;
}

@media (min-width: 768px) {
    .isEvent .datepickerContainer .calender-container {
        height: 1.80em;
    }
}

.isEvent .datepickerContainer input {
    padding-right: 25px;
}

.isEvent .datepickerContainer .calender-container .fa-calendar {
    top: 7px;
}

.isEvent .calender-container {
    height: 2.2em;
}

@media (min-width: 768px) {
    .isEvent .calender-container {
        height: 1.80em;
    }
}

.block.listView.gridData.clearfix.top_pub .listData p a {
    width: 100%;
    float: left;
    padding-right: 10px;
}

.isEvent .calender-container {
    height: 2.2em;
    line-height: 1.90em;
}

@media (min-width: 768px) {
    .isEvent .calender-container {
        height: 1.80em;
    }
}

.isEvent .calender-container .fa-calendar {
    top: 9px;
    color: #000;
}

@media (min-width: 768px) {
    .isEvent .calender-container .fa-calendar {
        top: 7px;
    }
}

.isEvent .calender-container input {
    padding-right: 20px;
}

.lateral-page .pageContent {
    display: inherit;
}

.lateral-page .margin-fix-news-detail h1 {
    width: 100%;
    text-transform: capitalize;
    font-family: "Proxima-Nova-Alt-Rg", sans-serif;
    font-weight: 600;
    color: #000;
    font-size: 25px;
}

.lateral-page .margin-fix-news-detail .lateral_text p {
    margin: 2% 0;
}

.owl-carousel .owl-nav .owl-prev, .owl-carousel .owl-nav .owl-next, .owl-carousel .owl-dot {
    color: transparent;
}

.fluidContainer .isRight .halfContainer .eventSearch .innerWrap .row .formGroup ul li {
    border-bottom: 1px solid #ccc;
}

.isPeople.twoColumnLayout.page.prof_list_new .edyTabs .tab .tabsContent .container .pageContent .primaryContent .row .rightHalf.top_pub .gridData .item figure {
    padding-left: 15px;
}

@media (min-width: 768px) {
    .isPeople.twoColumnLayout.page.prof_list_new .edyTabs .tab .tabsContent .container .pageContent .primaryContent .row .rightHalf.top_pub .gridData .item figure {
        padding-left: 10px;
    }
}

.eventSearch .innerWrap .formGroup ul li {
    border-bottom: 1px solid #ccc;
}

.insight-img .owl-stage-outer .owl-stage {
    position: relative;
}

    .insight-img .owl-stage-outer .owl-stage .owl-item .item .thumbnail .video-event-icon {
        position: absolute;
        top: 19%;
        left: 44%;
    }

@media (min-width: 768px) {
    .insight-img .owl-stage-outer .owl-stage .owl-item .item .thumbnail .video-event-icon {
        top: 16%;
    }
}

@media (min-width: 1170px) {
    .insight-img .owl-stage-outer .owl-stage .owl-item .item .thumbnail .video-event-icon {
        top: 29%;
    }
}

.isEvent .fullCarousel .owl-item .caption .readMoreBtn {
    color: #f7a833;
}

    .isEvent .fullCarousel .owl-item .caption .readMoreBtn:hover {
        color: #4fc6de;
    }

/* Author: Yogesh 13/3/18    */
.list-h3 {
    color: #a93228;
}

.introText {
    padding-bottom: 20px;
}

    .introText p {
        font-family: "Proxima-Nova-Alt-Rg", sans-serif;
        font-weight: bold;
    }

.bio-pronoun {
    font-weight: normal;
    color: white;
    margin-top: 3%;
    margin-bottom: 0;
    font: message-box;
    font-size: 20px;
    font-family: "Proxima-Nova-Alt-Rg", sans-serif;
}

@media (max-width: 600px) {
    .bio-pronoun {
        color: black;
    }
}

.edylist-group {
    padding-left: 0;
    margin-bottom: 20px;
    position: relative;
    display: block;
    background-color: #fff;
    border-bottom: 1px solid rgba(36, 39, 56, 0.99);
    /* below hamburger is list + and - icon */
}

    .edylist-group .b {
        color: rgba(36, 39, 56, 0.99);
        display: inline-block;
        padding-left: 32px;
        font-weight: bold;
        font-size: 17px;
        -moz-transition: all 0.5s;
        -o-transition: all 0.5s;
        -webkit-transition: all 0.5s;
        transition: all 0.5s;
    }

@media (min-width: 768px) {
    .edylist-group .b {
        font-size: 15px;
        padding-left: 20px;
    }
}

@media (min-width: 1170px) {
    .edylist-group .b {
        font-size: 17px;
    }
}

.edylist-group .edylist-group-item {
    padding-left: 0;
    margin-bottom: 20px;
    position: relative;
    display: block;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-bottom: -1px;
    background-color: #fff;
    border-top: 1px solid rgba(36, 39, 56, 0.99);
    border-bottom: 1px solid rgba(36, 39, 56, 0.99);
    cursor: pointer;
}

@media (min-width: 768px) {
    .edylist-group .edylist-group-item {
        padding-top: 5px;
        padding-bottom: 5px;
    }
}

@media (min-width: 1170px) {
    .edylist-group .edylist-group-item {
        padding-top: 10px;
        padding-bottom: 10px;
    }
}

.edylist-group .edylist-group-item a {
    color: #777779;
}

@media (min-width: 768px) {
    .edylist-group .edylist-group-item a:hover {
        color: #ee832e;
    }
}

.edylist-group .edylist-group-item ul {
    border-bottom: none;
}

    .edylist-group .edylist-group-item ul li {
        padding-left: 0;
        list-style-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVR42mNkYAAAAAYAAjCB0C8AAAAASUVORK5CYII=);
    }

@media (min-width: 768px) {
    .edylist-group .edylist-group-item ul li {
        padding-left: 20px;
    }
}

.edylist-group .edylist-group-item ul li:last-child {
    padding-bottom: 0px;
    border-bottom: none;
}

@media (min-width: 768px) {
    .edylist-group .edylist-group-item:hover .line {
        background-color: #4fc6de;
    }

    .edylist-group .edylist-group-item:hover span.b {
        color: #4fc6de;
    }
}

.edylist-group .edylist-group-item.has-mini-list ul.edylist-group {
    display: none;
    padding-left: 33px;
}

@media (min-width: 768px) {
    .edylist-group .edylist-group-item.has-mini-list ul.edylist-group {
        padding-left: 0;
        padding-left: 23px;
    }
}

.edylist-group .edylist-group-item:first-child {
    border-top: none;
}

.edylist-group .hamburger {
    position: absolute;
    margin: 0;
    width: 17px;
    height: 17px;
    top: 15px;
    left: 0;
}

@media (min-width: 768px) {
    .edylist-group .hamburger {
        top: 10px;
    }
}

@media (min-width: 1170px) {
    .edylist-group .hamburger {
        top: 16px;
    }
}

.edylist-group .hamburger .line-1 {
    transform: rotateZ(90deg);
}

.edylist-group .hamburger .minus {
    transform: none;
}

.edylist-group .hamburger .line {
    position: absolute;
    margin: 2px auto 0;
    height: 2px;
    width: 14px;
    background-color: #b3b3b3;
}

@media (min-width: 768px) {
    .edylist-group .hamburger .line {
        width: 12px;
    }
}

@media (min-width: 1170px) {
    .edylist-group .hamburger .line {
        width: 14px;
    }
}

.edylist-group .hamburger:before {
    display: none;
}

.secondaryContent .infoBlock {
    line-height: 1.4;
    margin-bottom: 1em;
}

    .secondaryContent .infoBlock .info-data {
        color: black;
    }

    .secondaryContent .infoBlock .info-date {
        color: #777779;
        margin-top: -3%;
    }

#practices h1 span {
    color: #a9c938;
    font-weight: 100;
}

#practices h1 {
    color: #000;
}

#practices .practice-sector-heading p {
    font-size: 18px;
    font-family: 'proxima_novasemibold', Arial, Helvetica, sans-serif;
}

.practice-sector-heading {
    display: block;
}

@media (min-width: 768px) {
    .practice-sector-heading {
        display: none;
    }
}

.practice_outer .infoBanner .bannerImg {
    margin-bottom: 0px;
}

@media (min-width: 768px) {
    .practice_outer .infoBanner .bannerImg {
        margin-bottom: 25px;
    }
}

#practice-1 > h3.list-h3, #sectors-1 > h3.list-h3 {
    font-size: 1.47em;
    position: relative;
    cursor: pointer;
    border-bottom: 1px solid #a8a8a8;
    padding-bottom: 5px;
    /*
        &:after{
            content: "";
            position: absolute;
            
            width: 24px;
            height: 24px;
            
            background: url(../images/icons/arrow_down_gray.png);
            background-position: center center;
            background-size: cover;
            right: 0;
            top: 0;
            @include respond-to(tablet) {
                display: none;
            }
        }
        */
}

@media (min-width: 768px) {
    #practice-1 > h3.list-h3, #sectors-1 > h3.list-h3 {
        font-size: 1.067em;
        cursor: default;
        padding-bottom: 10px;
        margin-bottom: 0;
        border-bottom: 1px solid #000;
    }
}

#practice-1 > h3.list-h3 .icon, #sectors-1 > h3.list-h3 .icon {
    position: absolute;
    width: 24px;
    height: 24px;
    background: url(../images/icons/arrow_down_gray.png);
    background-position: center center;
    background-size: cover;
    right: 0;
    top: 0;
}

@media (min-width: 768px) {
    #practice-1 > h3.list-h3 .icon, #sectors-1 > h3.list-h3 .icon {
        display: none;
    }
}

#practice-1 > h3.list-h3 .icon.icon-up, #sectors-1 > h3.list-h3 .icon.icon-up {
    background: url(../images/icons/arrow_up_gray.png);
    background-repeat: no-repeat;
}

#practice-1 > h3.list-h3 .desk-icon, #sectors-1 > h3.list-h3 .desk-icon {
    float: right;
    color: #b3b3b3;
    cursor: pointer;
    background-color: #fff;
    font-size: 12.01pt;
    font-weight: bold;
    display: none;
}

@media (min-width: 768px) {
    #practice-1 > h3.list-h3 .desk-icon, #sectors-1 > h3.list-h3 .desk-icon {
        display: block;
    }
}

#practice-1 > ul.edylist-group, #sectors-1 > ul.edylist-group {
    display: none;
    margin-top: -10px;
}

@media (min-width: 768px) {
    #practice-1 > ul.edylist-group, #sectors-1 > ul.edylist-group {
        display: block;
        margin-top: 0;
    }
}

#sectors-1 {
    margin-bottom: 30px;
}

@media (min-width: 768px) {
    #sectors-1 {
        margin-bottom: 0;
    }
}

h4.secondaryContent-h4 {
    font-size: 1em;
    margin-bottom: 5px;
}

@media (min-width: 768px) {
    h4.secondaryContent-h4 {
        font-size: 0.933em;
        margin-bottom: 5px;
    }
}

.practice_outer .infoBanner .contentMiddle .table-cell .mobileTab, .practice_outer .infoBanner .contentMiddle .table-cell .mapAddress {
    display: block;
}

@media (min-width: 768px) {
    .practice_outer .infoBanner .contentMiddle .table-cell .mobileTab, .practice_outer .infoBanner .contentMiddle .table-cell .mapAddress {
        display: none;
    }
}

.practice_outer .infoBanner .contentMiddle .table-cell {
    display: block;
    flex-wrap: inherit;
}

.practice_outer .infoBanner .contentMiddle {
    padding-top: 0;
}

@media (min-width: 768px) {
    .practice_outer .infoBanner .contentMiddle {
        padding-top: 1em;
    }
}

.practice_outer .infoBox .introBox {
    padding-top: 30px;
}

@media (min-width: 768px) {
    .practice_outer .infoBox .introBox {
        padding-top: 0px;
    }
}

.isPracticeDetail .tabsContent .pageContent {
    padding: 1em 0;
}

@media (min-width: 768px) {
    .isPracticeDetail .tabsContent .pageContent {
        padding: 3em 0;
    }
}

.isPracticeDetail .primaryContent .introText p:nth-child(1) {
    margin-top: 0px;
}

.isPracticeDetail .primaryContent .practice-detail-section ul {
    margin: 15px 15px;
}

.isPracticeDetail .primaryContent .practice-detail-section .red-text-news-detail {
    margin-top: 10px;
}

.isPracticeDetail .primaryContent .vCard .row .caption .contactInfo .practice-prof:hover {
    color: #4fc6de;
}

.isPracticeDetail .block.listView.clearfix.newsection {
    /*float: left;*/
    width: 100%;
}

.isPracticeDetail.page.twoColumnLayout.practice_outer .contentMiddle.introBox.uncommon_text h1 {
    height: 60px;
}

.isPracticeDetail .page.practise_outer .secondaryContent .overview-subheding {
    border-bottom: 0;
}

.isPracticeDetail .page.practise_outer .primaryContent .videos-gap {
    float: left;
    width: 100%;
}

.practise-vcard .row .vCard {
    padding-right: 0;
}

.practice-detail-section ul li {
    padding-left: 1em;
}

.firmlanding-content-unit .practice-detail-section ul li {
    padding-left: 0px;
}

.subscription-container.subscription-form .check-box-area input[type=checkbox] {
    margin-top: -2px;
    width: 20px;
    margin-left: 0px;
}

.subscription-container.subscription-form .check-box-area .checkbox-outer label {
    width: 100%;
    float: left;
    margin: 0px 0px 10px;
}

@media (min-width: 768px) {
    .subscription-container.subscription-form .check-box-area .checkbox-outer label {
        width: 100%;
    }
}

.subscription-form.subscription-container .formGroup {
    width: 100%;
    float: left;
}

.introBox h1 div span {
    text-transform: initial;
}

.primaryContent .social-listing .infoBlock .info-data {
    text-transform: initial;
}

.practice-main-content ul, .practice-main-content ol {
    padding-left: 15px;
}

@media (min-width: 768px) {
    .tabsContent .primaryContent .block {
        margin-bottom: 0.5em;
    }
}

.tabsContent .primaryContent .block ul {
    padding-left: 15px;
    margin-top: 10px;
}

@media (min-width: 768px) {
    .tabsContent .primaryContent .block ul {
        margin-top: 0px;
    }
}

/* for ul alignment */
.block ul, .block ol {
    padding-left: 15px;
}

    .block ul.socialNav {
        padding-left: 0px;
    }

/*bio detail no tab */
@media (max-width: 767px) {
    .infoBanner.peopleBanner .tintMedium.no-tab-bio-detail {
        display: none;
    }
}

.infoBanner.peopleBanner .tintMedium.no-tab-bio-detail .introBox .inlineMenu .socialNav .phone {
    display: none;
}

.infoBanner.peopleBanner .tintMedium.no-tab-bio-detail .introBox .inlineMenu .socialNav li:nth-child(2) {
    margin-left: 0px;
}

@media screen and (max-width: 1024px) {
    .infoBanner.peopleBanner .tintMedium.no-tab-bio-detail .introBox {
        display: block;
        padding: 15px 0px;
        width: 100%;
        float: left;
    }

        .infoBanner.peopleBanner .tintMedium.no-tab-bio-detail .introBox .inlineMenu .socialNav .briefcase {
            display: none;
        }

        .infoBanner.peopleBanner .tintMedium.no-tab-bio-detail .introBox h1 {
            font-size: 1.667em;
            color: #242738;
        }

            .infoBanner.peopleBanner .tintMedium.no-tab-bio-detail .introBox h1 span {
                color: #777779;
            }

        .infoBanner.peopleBanner .tintMedium.no-tab-bio-detail .introBox .caption {
            border-bottom: 1px solid #b0b8bd;
        }

            .infoBanner.peopleBanner .tintMedium.no-tab-bio-detail .introBox .caption .contactInfo {
                display: none;
            }

            .infoBanner.peopleBanner .tintMedium.no-tab-bio-detail .introBox .caption h4 a {
                font-size: 15px;
            }

        .infoBanner.peopleBanner .tintMedium.no-tab-bio-detail .introBox .inlineMenu .socialNav .phone {
            display: inline-block;
        }

            .infoBanner.peopleBanner .tintMedium.no-tab-bio-detail .introBox .inlineMenu .socialNav .phone .fa-phone {
                -webkit-transform: rotate(97deg);
                -moz-transform: rotate(97deg);
                -o-transform: rotate(97deg);
                -ms-transform: rotate(97deg);
                transform: rotate(97deg);
                font-size: 22px;
                position: relative;
                top: -3px;
            }

        .infoBanner.peopleBanner .tintMedium.no-tab-bio-detail .introBox .inlineMenu .socialNav .print-icon {
            display: none;
        }

        .infoBanner.peopleBanner .tintMedium.no-tab-bio-detail .introBox .inlineMenu .socialNav li:nth-child(2) {
            margin-left: 0.5em;
        }
}

@media screen and (min-width: 767px) {
    .primaryContent .insight-videos {
        margin-top: -20px;
    }

        .primaryContent .insight-videos ul {
            margin-top: 0px;
        }
}

.block figure.corporate-health-card {
    margin-bottom: 0px;
}

@media (min-width: 768px) {
    .block figure.corporate-health-card {
        margin-bottom: 10px;
    }
}

.primaryContent .list-btn {
    width: 36px;
    background: #e4e4e4;
    border: none;
    outline: none;
    color: #777779;
    text-transform: uppercase;
    box-shadow: none;
    padding: 8px 0px;
    text-align: center;
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
    margin-right: 17.3px;
    margin-top: 5px;
    -moz-transition: top 0.5s ease;
    -o-transition: top 0.5s ease;
    -webkit-transition: top 0.5s ease;
    transition: top 0.5s ease;
    font-family: "Proxima-Nova-Alt-Rg", sans-serif;
    display: inline-block;
}

    .primaryContent .list-btn:hover:not(.list-btn-disabled) {
        background: #9a9a9a;
        color: #fff;
    }

@media (min-width: 768px) {
    .primaryContent .list-btn:hover:not(.list-btn-disabled) {
        width: 36px;
    }
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    .primaryContent .list-btn {
        margin-right: 18.9px;
        width: 35px;
    }
}

.primaryContent .list-btn-disabled {
    background: #f1f1f1;
    color: rgba(119, 119, 121, 0.501961);
    cursor: not-allowed;
}

.primaryContent .formGroup > input {
    min-height: 35px;
}

.primaryContent .btn-submit {
    float: right;
}

    .primaryContent .btn-submit.view-all-button {
        float: none;
        margin-top: 0;
    }

@media (min-width: 768px) {
    .primaryContent .btn-submit.view-all-button {
        float: right;
        margin-top: 17px;
    }
}

.primaryContent .primaryContent-h4 {
    color: #f7a833;
    margin-bottom: 15px;
}

.secondaryContent .innerWrap-professional-listing {
    list-style: none;
    display: block;
}

    .secondaryContent .innerWrap-professional-listing > li {
        margin-bottom: 1em;
        float: left;
        width: 100%;
    }

.professional_list .letterSearch {
    display: none;
    padding-right: 0;
}

@media (min-width: 768px) {
    .professional_list .letterSearch {
        display: block;
    }
}

.professional_list .ng-scope .infoBlock .col-md-6 p.info-date {
    margin-top: 0;
    padding-top: 0;
}

.professional_list .ng-scope .infoBlock .col-md-6 h4.info-data {
    margin-bottom: 0;
}

.professional_list .ng-scope .infoBlock .col-md-6 h4 a:hover {
    color: #f7a833;
}

.prof_list .infoBox .contentMiddle {
    padding: 0em 3em;
}

    .prof_list .infoBox .contentMiddle h1 {
        margin-bottom: 0;
    }

@media (min-width: 768px) {
    .prof_list .infoBox .contentMiddle h1 {
        font-size: 30px;
    }
}

@media (min-width: 1170px) {
    .prof_list .infoBox .contentMiddle h1 {
        font-size: 2.467em;
    }
}

.prof_list .secondaryContent .innerWrap-professional-listing {
    border-top: 1px solid #969696;
    padding-top: 7%;
    margin-top: 4%;
}

@media (min-width: 768px) {
    .prof_list .secondaryContent .innerWrap-professional-listing {
        border-top: none;
        padding-top: 0;
        margin-top: 0;
    }
}

.professional_list .noResult {
    padding: 0px 15px;
}

.professional_list .primaryContent-h4 {
    font-size: 1.3em;
}

.location_detail_outer .tabs .filterGroup.clearfix .row {
    margin-right: 0px;
}

.contentMiddle.introBox.uncommon_text span {
    color: #a9c938;
    font-weight: 100;
    display: none;
    font-size: 20px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 5px;
}

@media (min-width: 768px) {
    .contentMiddle.introBox.uncommon_text span {
        display: block;
    }
}

#lblmsg.successful {
    color: red;
}

@media (min-width: 768px) {
    .isPracticeDetail.page.twoColumnLayout.practice_outer .pageContent .primaryContent .row:first-child {
        margin-top: 0px;
    }
}
/*btlaw-1056*/
@media screen and (max-width: 767px) {
    .slidesWrap.slideswrap-back-image .slide {
        background-position: center 35%;
        min-height: 150px;
    }
}

.no-padding {
    padding: 0px;
}

.twoColumnLayout .tab .primaryContent {
    border-bottom: none;
}

@media (min-width: 768px) {
    .twoColumnLayout .tab .primaryContent .introTextforMobile {
        display: none;
    }
}

.twoColumnLayout .tab .primaryContent .introTextforMobile h1 {
    font-size: 1.667em;
    color: #242738;
    text-transform: none;
}

@media (min-width: 768px) {
    .twoColumnLayout .tab .primaryContent .introTextforMobile h1 {
        text-transform: uppercase;
    }
}

.twoColumnLayout .tab .primaryContent .introTextforMobile h1 span {
    color: #777779;
    font-family: Proxima-Nova-Thin, sans-serif;
    font-weight: normal;
}

@media (min-width: 768px) {
    .twoColumnLayout .tab .primaryContent .introTextforMobile h1 span {
        color: #ee832e;
    }
}

.twoColumnLayout .tab .primaryContent .introTextforMobile .caption {
    border-bottom: 1px solid #b0b8bd;
    margin-bottom: 1em;
}

@media (min-width: 768px) {
    .twoColumnLayout .tab .primaryContent .introTextforMobile .caption {
        padding-bottom: 1em;
    }
}

.twoColumnLayout .tab .primaryContent .introTextforMobile .caption .contactInfo {
    display: none;
}

@media (min-width: 768px) {
    .twoColumnLayout .tab .primaryContent .introTextforMobile .caption .contactInfo {
        display: block;
    }
}

.twoColumnLayout .tab .primaryContent .introTextforMobile .caption h4 {
    padding-bottom: 5px;
}

.twoColumnLayout .tab .primaryContent .introTextforMobile ul.socialNav {
    padding-left: 0;
    margin-bottom: 14px;
}

    .twoColumnLayout .tab .primaryContent .introTextforMobile ul.socialNav li {
        display: inline-block;
        margin: 0 9px;
        padding-bottom: 0;
    }

        .twoColumnLayout .tab .primaryContent .introTextforMobile ul.socialNav li a {
            font-size: 30px;
        }

        .twoColumnLayout .tab .primaryContent .introTextforMobile ul.socialNav li.briefcase {
            display: block;
        }

@media (min-width: 768px) {
    .twoColumnLayout .tab .primaryContent .introTextforMobile ul.socialNav li.briefcase {
        display: block;
    }
}

.twoColumnLayout .tab .primaryContent .introTextforMobile ul.socialNav li.briefcase a {
    font-size: 14px;
}

.twoColumnLayout .tab .primaryContent > .row {
    margin-top: 0;
}

@media (min-width: 768px) {
    .twoColumnLayout.eventlanding .pageContent {
        flex-direction: row-reverse;
    }
}

.twoColumnLayout.eventlanding .pageContent .primaryContent .infoBlock h4.info-data {
    margin-bottom: 5px;
}

@media (min-width: 768px) {
    .twoColumnLayout .container {
        max-width: 700px;
    }
}

@media (min-width: 990px) {
    .twoColumnLayout .container {
        max-width: 970px;
    }
}

@media (min-width: 1170px) {
    .twoColumnLayout .container {
        max-width: 1170px;
    }
}

.infoBanner .contentMiddle .table-cell {
    display: flex;
    display: -webkit-flex;
    /* Safari */
    flex-wrap: wrap-reverse;
}

@media (min-width: 768px) {
    .infoBanner .contentMiddle .table-cell {
        display: block;
    }
}

.infoBanner .contentMiddle .table-cell .mobileTab, .infoBanner .contentMiddle .table-cell .mapAddress {
    display: none;
}

.infoBanner .contentMiddle .block p {
    font-size: 18px;
    font-family: 'Proxima-Nova-Alt-Rg', Arial, Helvetica, sans-serif;
    font-weight: bold;
}

@media (min-width: 768px) {
    .infoBanner .contentMiddle .block p {
        font-size: inherit;
        font-weight: normal;
    }
}

.infoBanner .contentMiddle .block:last-child {
    width: 100%;
}

    .infoBanner .contentMiddle .block:last-child .inlineMenu {
        border-top: 1px solid #bdbdbd;
        padding-top: 15px;
        padding-bottom: 20px;
        margin: 20px 0 0 0;
    }

@media (min-width: 768px) {
    .infoBanner .contentMiddle .block:last-child .inlineMenu {
        border-top: none;
        margin: 0;
        padding-top: 0;
        padding-bottom: 0;
    }
}

.primaryContent .row-margin-law-student-detail .no-padding {
    margin-top: 7%;
}

.primaryContent .row-margin-law-student-detail .innerWrap li {
    padding-bottom: 0;
}

.primaryContent .letterSearch {
    display: none;
}

@media (min-width: 768px) {
    .primaryContent .letterSearch {
        display: block;
    }
}

@media (min-width: 768px) {
    .primaryContent .mobileLetterSearch {
        display: none;
    }
}

.primaryContent #search, .primaryContent #search222 {
    padding: 5px 15px 25px;
    text-align: center;
}

@media (min-width: 768px) {
    .primaryContent #search, .primaryContent #search222 {
        text-align: left;
    }
}

.primaryContent #search .btn-submit, .primaryContent #search222 .btn-submit {
    float: none;
}

@media (min-width: 768px) {
    .primaryContent #search .btn-submit, .primaryContent #search222 .btn-submit {
        float: right;
    }
}

.primaryContent h1.peopleHeading {
    color: #000;
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    .primaryContent h1.peopleHeading {
        display: none;
    }
}

.primaryContent h1.peopleHeading span {
    color: #a9c938;
    font-weight: 100;
}

.primaryContent .back-heading {
    color: #4fc6de;
    line-height: 1.1;
    font-weight: normal;
    font-family: "Proxima-Nova-Alt-Rg", sans-serif;
    padding-bottom: 20px;
    font-size: 20px;
}

@media (min-width: 768px) {
    .primaryContent .back-heading {
        margin-left: -15px;
        padding-bottom: 0px;
        font-size: 1.067em;
    }
}

@media (min-width: 1025px) {
    .primaryContent .back-heading a:hover {
        color: #f7a833;
    }
}

@media (min-width: 768px) {
    .primaryContent .month-border-circle {
        position: absolute;
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background-color: #b0b8bd;
        margin-left: -4.51px;
    }
}

@media (min-width: 768px) {
    .primaryContent .months-border {
        border-left: 3px solid #b0b8bd;
        height: 580px;
    }
}

@media (min-width: 1170px) {
    .primaryContent .months-border {
        height: 500px;
    }
}

.primaryContent .info-heading-month {
    color: #b0b8bd;
    font-size: 1.7em;
    line-height: 1.1;
    font-weight: normal;
    font-family: Proxima-Nova-Alt-SemiBold, arial;
    margin-bottom: 0px;
}

@media (max-width: 767px) {
    .primaryContent .info-heading-month {
        margin: 0px 0px 20px 0px;
        display: inline-flex;
        position: relative;
        bottom: 20px;
    }

        .primaryContent .info-heading-month + .ng-scope {
            position: relative;
            top: -28px;
        }
}

@media (min-width: 768px) {
    .primaryContent .info-heading-month {
        margin-left: -80px;
        margin-top: 10px;
        margin-bottom: 12px;
        font-size: 1.5em;
        margin-bottom: 15px;
    }
}

@media (min-width: 1170px) {
    .primaryContent .info-heading-month {
        margin-top: 20px;
        margin-bottom: 22px;
    }
}

.primaryContent .info-heading {
    color: #ee832e;
    font-size: 1.5em;
    line-height: 1.1;
    font-weight: normal;
    font-family: "Proxima-Nova-Alt-SemiBold", sans-serif;
}

.primaryContent .innerWrap li {
    margin-bottom: 1.29em;
    float: left;
    width: 100%;
    list-style-type: none;
    border-bottom: 1px solid #d0d0d0;
    padding-bottom: 20px;
    list-style-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVR42mNkYAAAAAYAAjCB0C8AAAAASUVORK5CYII=);
}

    .primaryContent .innerWrap li:last-child {
        margin-bottom: 0;
    }

        .primaryContent .innerWrap li:last-child p.info-image-data {
            margin-bottom: 0;
        }

.primaryContent .innerWrap .btn {
    padding: 10px 0;
    width: 35%;
    display: inline-block;
    margin-top: 3%;
}

@media (min-width: 768px) {
    .primaryContent .innerWrap .btn {
        width: 100px;
        margin-top: 20px;
    }
}

.primaryContent .innerWrap .btn.desktopBtn {
    display: none;
}

@media (min-width: 768px) {
    .primaryContent .innerWrap .btn.desktopBtn {
        display: block;
    }
}

@media (max-width: 768px) {
    .primaryContent .infoBlock {
        display: grid
    }
}

.primaryContent .infoBlock {
    font-family: Proxima-Nova-Alt-Rg, arial;
    line-height: 0.5;
    font-size: 18px;
    margin-bottom: 0;
}

    .primaryContent .infoBlock .desktop-featured-section {
        display: none;
    }

@media (min-width: 768px) {
    .primaryContent .infoBlock .desktop-featured-section {
        display: block;
    }
}

.primaryContent .infoBlock .mobile-featured-section {
    display: block;
}

@media (min-width: 768px) {
    .primaryContent .infoBlock .mobile-featured-section {
        display: none;
    }
}

.japanies-font .primaryContent .infoBlock .info-heading {
    color: black
}

.primaryContent .infoBlock .info-heading {
    color: #a93228;
    font-size: .85em;
    line-height: 1.1;
    font-weight: normal;
    font-family: "Proxima-Nova-Alt-SemiBold", sans-serif;
}

.primaryContent .infoBlock .col-xs-12 .info-date {
    padding-bottom: 20px;
}

@media (min-width: 768px) {
    .primaryContent .infoBlock .col-xs-12 .info-date {
        padding-bottom: 0;
    }
}

.primaryContent .infoBlock .info-data {
    text-transform: capitalize;
    font-family: "Proxima-Nova-Alt-Rg", sans-serif;
    font-weight: bold;
    color: #000;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

    .primaryContent .infoBlock .info-data a {
        color: #000;
        -moz-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        -webkit-transition: all 0.3s ease;
        transition: all 0.3s ease;
    }

@media (min-width: 1170px) {
    .primaryContent .infoBlock .info-data a:hover {
        color: #4fc6de;
    }
}

.primaryContent .infoBlock .info-data a:hover {
    color: #4fc6de;
}

.primaryContent .infoBlock .info-data-second {
    color: #33333a;
    text-transform: capitalize;
    margin-bottom: 0.2em;
    font-family: "Proxima-Nova-Alt-Rg", sans-serif;
    line-height: normal;
}

.primaryContent .infoBlock .info-date {
    font-size: 1em;
    line-height: 1.2;
    margin-top: 0;
}

@media (min-width: 768px) {
    .primaryContent .infoBlock .info-date {
        font-size: 15px;
        margin-bottom: 0;
    }
}

.primaryContent .infoBlock .info-date span {
    display: inline-block;
}

@media (min-width: 768px) {
    .primaryContent .infoBlock .info-date span {
        display: inline;
    }
}

.primaryContent .infoBlock .info-date span .pipe {
    display: none;
}

@media (min-width: 768px) {
    .primaryContent .infoBlock .info-date span .pipe {
        display: inline-block;
    }
}

.primaryContent .infoBlock .info-image {
    padding-bottom: 10px;
}

.primaryContent .infoBlock .info-image-data {
    color: black;
    font-size: 17px;
    line-height: 1.1em;
}

@media (min-width: 768px) {
    .primaryContent .infoBlock .info-image-data {
        margin-top: 2px;
        font-size: 15px;
        margin-bottom: 0;
    }
}

.primaryContent .timeline .col-sm-11 .innerWrap {
    margin-top: 0;
}

    .primaryContent .timeline .col-sm-11 .innerWrap li .row .col-sm-9 .infoBlock .info-data-second {
        margin-top: 0;
    }

.secondaryContent .right_law li {
    margin-bottom: 10% !important;
}

.secondaryContent .formGroup {
    margin-bottom: 0.7em;
}

.secondaryContent .innerWrap ul {
    list-style-type: none;
}

@supports (-ms-ime-align: auto) {
    .secondaryContent .innerWrap ul {
        list-style-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVR42mNkYAAAAAYAAjCB0C8AAAAASUVORK5CYII=);
    }
}

.secondaryContent .innerWrap li {
    margin-bottom: 0em;
    float: left;
    width: 100%;
    border-bottom: 1px solid #d0d0d0;
}

    .secondaryContent .innerWrap li ul li {
        border-bottom: none;
    }

.secondaryContent .innerWrap .sbOptions li {
    margin-bottom: 0;
}

    .secondaryContent .innerWrap .sbOptions li:last-child {
        border-bottom: none;
    }

.secondaryContent .infoBlock {
    line-height: 1.4;
    margin-bottom: 1em;
    line-height: 1.2;
}

    .secondaryContent .infoBlock .info-heading {
        color: #a93228;
    }

    .secondaryContent .infoBlock .info-data {
        text-transform: capitalize;
    }

        .secondaryContent .infoBlock .info-data a {
            color: #000;
        }

@media (min-width: 1170px) {
    .secondaryContent .infoBlock .info-data a:hover {
        color: #4fc6de;
    }
}

.secondaryContent .infoBlock .info-date {
    color: #a7a7a7;
    margin-top: 0;
}

.secondaryContent .eventsInterest {
    display: none;
}

@media (min-width: 768px) {
    .secondaryContent .eventsInterest {
        display: block;
    }
}

.secondaryContent .eventsInterest .ul-normal {
    list-style-type: none;
}

@supports (-ms-ime-align: auto) {
    .secondaryContent .eventsInterest .ul-normal {
        list-style-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVR42mNkYAAAAAYAAjCB0C8AAAAASUVORK5CYII=);
    }
}

.eventsInterest {
    padding-bottom: 20px;
}

    .eventsInterest .secondaryContent-h4 {
        color: #f7a833;
        margin-bottom: 15px;
        font-size: 1.2em;
    }

@media (min-width: 768px) {
    .eventsInterest .secondaryContent-h4 {
        font-size: 1em;
    }
}

.eventsInterest .infoBlock {
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .eventsInterest .infoBlock {
        margin-bottom: 1em;
    }
}

.eventsInterest .infoBlock .info-date {
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .eventsInterest .infoBlock .info-date {
        margin-bottom: 0.8em;
    }
}

@media (min-width: 768px) {
    .eventsInterest {
        padding-top: 35px;
        padding-bottom: 0;
    }
}

@media (min-width: 768px) {
    .mobileBtn, .pastEventsMobile {
        display: none;
    }
}

.mobileBtn {
    margin-top: 20px;
}

@media (min-width: 768px) {
    .mobileBtn {
        margin-top: 0;
    }
}

.pastEventsMobile {
    padding-top: 20px;
}

.desktopBtn, .desktopPastEvents {
    display: none;
    padding-top: 20px;
}

@media (min-width: 768px) {
    .desktopBtn, .desktopPastEvents {
        display: block;
    }
}

@media (min-width: 768px) {
    .mobileEvents {
        display: none;
    }
}

.timeline {
    margin-bottom: 20px;
}

@media (min-width: 768px) and (min-width: 768px) {
    .timeline .row {
        display: -webkit-flex;
        display: flex;
    }
}

@media (min-width: 768px) {
    .timeline .row .col-sm-1 {
        border-left: 3px solid #b0b8bd;
        position: relative;
        left: 5px;
    }

        .timeline .row .col-sm-1:after {
            position: absolute;
            background: #b0b8bd;
            border-radius: 100%;
            left: -7px;
            top: 0;
            width: 12px;
            height: 12px;
            content: "";
        }

        .timeline .row .col-sm-1:before {
            position: absolute;
            background: #b0b8bd;
            border-radius: 100%;
            left: -7px;
            bottom: 0;
            width: 12px;
            height: 12px;
            content: "";
        }

    .timeline .row .infoBlock {
        margin-bottom: 0;
        line-height: 1;
    }
}

@media (min-width: 768px) {
    .timeline {
        margin-bottom: 0;
    }
}

.timeline.previousResults .infoBlock p.info-date {
    margin-bottom: 0;
}

.timeline.previousResults li:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.timeline:last-child {
    margin-bottom: 0;
}

.border_hide {
    border-top: 0 !important;
}

    .border_hide li:last-child a {
        font-size: 30px;
    }

@media (min-width: 768px) {
    .border_hide li:last-child a {
        font-size: 22px;
    }
}

.left-gap {
    margin-left: 0;
    padding-left: 0;
}

.videoCarousel {
    padding-bottom: 20px;
}

@media (min-width: 768px) {
    .videoCarousel {
        padding-bottom: 0;
    }
}

#searchDiv .dateRangeHolder input {
    cursor: pointer;
}

.newslanding .primaryContent h3.back-heading.showsection {
    display: inline-block;
    padding-top: 20px;
}

@media (min-width: 768px) {
    .newslanding .primaryContent h3.back-heading.showsection {
        padding-top: 0;
    }
}

@media only screen and (max-width: 1500px) and (min-width: 1300px) {
    body .daterangepicker .drp-buttons {
        text-align: left;
    }
}

.newslanding .related-article-section .row.border {
    border-bottom: 1px solid #d0d0d0;
    padding-bottom: 20px;
}

.primaryContent .infoBlock .info-data {
    width: 100%;
    float: left;
    margin-bottom: 0;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
    .primaryContent .infoBlock .info-data {
        letter-spacing: -.5px;
    }
}

.newslanding .primaryContent .infoBlock .info-date {
    width: 100%;
    float: left;
}

.leftHalf .videoCarousel {
    position: relative;
}

.leftHalf .video-player {
    background-repeat: no-repeat;
    color: #fff;
    left: 0;
    height: 48px;
    margin: auto;
    cursor: pointer;
    right: 0;
    top: 30%;
    width: 55px;
    position: absolute;
    background-image: url(../images/icons/arrow.png);
    z-index: 101;
}

@media only screen and (max-width: 400px) and (min-width: 100px) {
    .leftHalf .video-player {
        top: 18%;
    }
}

@media only screen and (max-width: 500px) and (min-width: 401px) {
    .leftHalf .video-player {
        top: 23%;
    }
}

@media only screen and (max-width: 600px) and (min-width: 501px) {
    .leftHalf .video-player {
        top: 27%;
    }
}

@media only screen and (max-width: 670px) and (min-width: 601px) {
    .leftHalf .video-player {
        top: 30%;
    }
}

.noResult h2 {
    padding-left: 16px;
}

@media (min-width: 768px) {
    .noResult h2 {
        padding-left: 0;
    }
}

.filterResult.clearfix.mobile_list .vCard {
    height: auto;
}

@media (min-width: 768px) {
    .filterResult.clearfix.mobile_list .vCard {
        height: 280px;
    }
}

.rightHalf .listData .listView p {
    margin: 0 0px;
}

.peopleBanner .block.listView.newsection.clearfix {
    width: 100%;
}

body .pageContent .formGroup ul li {
    border-bottom: 1px solid #ccc;
}

    body .pageContent .formGroup ul li:first-child {
        border-top: none;
    }

.bt-border-bottom {
    border-bottom: 1px solid #ccc;
    padding-bottom: 15px;
}

.page-content-search-result #all .social-result .col-md-6 .caption {
    padding-top: 0%;
}

@media (min-width: 768px) {
    .page-content-search-result #all .social-result .col-md-6 .caption {
        padding-top: 0%;
    }
}

.page-content-search-result #all .social-result .col-md-6 .vCard .caption .contactInfo p {
    margin-top: 0;
}

.page-content-search-result #all .social-result .col-md-6 .vCard .caption .people_li {
    width: auto;
    margin-top: 5px;
    margin-bottom: 0;
}

    .page-content-search-result #all .social-result .col-md-6 .vCard .caption .people_li li.ng-scope {
        width: auto;
        margin-bottom: 0;
        list-style-position: inherit;
    }

.social-listing .infoBlock .col-md-6 h4 {
    margin-bottom: 0;
}

    .social-listing .infoBlock .col-md-6 h4 a {
        color: #000;
    }

        .social-listing .infoBlock .col-md-6 h4 a:hover {
            color: #4fc6de;
        }

.social-listing .infoBlock .col-md-6 .social-icon li {
    list-style-type: none;
    float: left;
    margin-right: 10px;
}

    .social-listing .infoBlock .col-md-6 .social-icon li a {
        font-size: 28px;
    }

        .social-listing .infoBlock .col-md-6 .social-icon li a .fa-phone {
            top: 0;
        }

.social-listing .infoBlock .col-md-6 .social-icon .contact-people {
    display: block;
}

@media (min-width: 768px) {
    .social-listing .infoBlock .col-md-6 .social-icon .contact-people {
        display: none;
    }
}

.social-listing .infoBlock .col-md-6 .contactInfo p {
    font-size: 15px;
}

    .social-listing .infoBlock .col-md-6 .contactInfo p.practice-prof:hover {
        color: #4fc6de;
    }

.social-listing .infoBlock .col-md-6 h4.info-data {
    color: #777779;
    font-weight: 400;
}

.social-listing .infoBlock .col-md-6 .info-date a {
    color: #4fc6de;
}

    .social-listing .infoBlock .col-md-6 .info-date a:hover {
        color: orange;
    }

.isPracticeDetail .tabsContent .primaryContent .edylist-group .edylist-group-item .line {
    height: 3px;
    width: 18px;
}

@media (max-width: 767px) {
    .edylist-group .edylist-group-item.has-mini-list ul.edylist-group .edylist-group-item .hamburger ~ a {
        margin-left: 2em;
    }
}

@media (min-width: 768px) {
    .isPracticeDetail .tabsContent .primaryContent .edylist-group .edylist-group-item .line {
        height: 2px;
        width: 14px;
    }
}

.professional_list .row .col-sm-12 button.btn, #serviceBio_List .row .col-sm-12 button.btn {
    padding: 10px 12px;
}

/* sitecore 9 form */
.checkbox-outer {
    width: 50%;
    float: left;
}

.formGroup .check-left {
    float: left;
    width: 20px;
    margin-right: 16px;
}

.sub-cen-btn {
    width: 100%;
    float: left;
}

.checkbox-head p {
    font-weight: 600;
    color: #000;
}

.check-box-area {
    width: 100%;
    float: left;
    margin-top: 20px;
}

.pageContent .subscription-form {
    margin: 50px 15%;
}

.subscription-form .check-box-area .checkbox-outer {
    width: 100%;
}

.subscription-form .check-box-area input[type=checkbox] {
    margin-top: -5px;
}

/* sitecore 9 form */
/*sticky nav */
@media (max-width: 767px) {
    #stickyDiv {
        height: 17em;
    }
}

@media (min-width: 768px) {
    .sticky {
        position: fixed;
        top: 82px;
        width: 27%;
        z-index: 9999;
        max-width: 353px;
        height: 220px !important;
    }

    #stickyDiv {
        background-color: #fff;
        height: 17em;
    }
}

div.daterangepicker {
    z-index: 9999;
}

@media screen and (min-width: 767px) {
    .primaryContent .timeline.insight-videos.ng-scope {
        margin-top: 0px;
    }

    .newslanding .primaryContent h3.back-heading.video-listing-heading {
        margin-left: 0px;
    }

    .primaryContent .timeline.video-listing-content .innerWrap li {
        padding-bottom: 10px;
        line-height: 1.28;
        list-style-image: none;
    }
}

.yellow {
    color: #f7a833;
}

.ul-normal {
    list-style-type: none;
}

@media (min-width: 768px) {
    .newslanding .pageContent {
        flex-direction: row-reverse;
    }
}

.newslanding .secondaryContent .innerWrap .mobileCheckbox {
    padding-top: 20px;
    padding-bottom: 15px;
}

@media (min-width: 768px) {
    .newslanding .secondaryContent .innerWrap .mobileCheckbox {
        display: none;
    }
}

@media (min-width: 1170px) {
    .newslanding .secondaryContent .subscribeBlock {
        margin-top: 0px;
    }
}

@media (min-width: 1170px) {
    .newslanding .secondaryContent .news-landing-card .caption {
        padding: 0;
    }
}

.newslanding .secondaryContent .news-landing-card .caption .contactInfo p {
    color: #4fc6df;
}

.newslanding .primaryContent {
    border-bottom: none;
    margin-bottom: 0;
}

    .newslanding .primaryContent h3.back-heading {
        display: none !important;
    }

@media (min-width: 768px) {
    .newslanding .primaryContent h3.back-heading {
        margin-left: -71px;
        display: block;
    }
}

.newslanding .primaryContent h3.back-heading.pastEventsMobile {
    display: block;
}

@media (min-width: 768px) {
    .newslanding .primaryContent h3.back-heading.pastEventsMobile {
        display: none;
    }
}

@media (min-width: 768px) {
    .newslanding .primaryContent h2.info-heading-month .month {
        text-align: left;
        width: 200px;
        margin-left: 0;
        margin-top: 0px;
        text-transform: uppercase;
    }
}

.newslanding .primaryContent h2.info-heading-month .month {
    text-align: left;
    /*width: 200px;
    margin-left: 0;*/
    margin-top: 0px;
    text-transform: uppercase;
}

@media (min-width: 768px) {
    .newslanding .primaryContent h2.info-heading-month .month {
        margin-left: -77px;
        margin-top: 0;
        text-align: center;
    }
}

.newslanding .primaryContent h2.info-heading-month .heading {
    margin-left: 15px;
    color: #f7a833;
    margin-top: 0px;
    text-transform: uppercase;
}

@media (min-width: 768px) {
    .newslanding .primaryContent h2.info-heading-month .heading {
        margin-left: 138px;
        margin-top: -24px;
    }
}

.newslanding .primaryContent h2.info-heading-month span {
    color: #f7a833;
    font-size: inherit;
    display: inline;
}

@media (min-width: 768px) {
    .newslanding .primaryContent h2.info-heading-month span {
        padding-left: 8px;
        display: inline-block;
    }
}

@media (min-width: 1170px) {
    .newslanding .primaryContent h2.info-heading-month span {
        padding-left: 32px;
    }
}

.newslanding .primaryContent .timeline {
    padding-bottom: 4px;
}

    .newslanding .primaryContent .timeline:last-child {
        padding-bottom: 0;
    }

.newslanding .primaryContent .infoBlock .info-date {
    margin-bottom: 0;
    margin-top: 0;
}

@media (min-width: 768px) {
    .newslanding .primaryContent .eventsInterest {
        display: none;
    }
}

.newslanding .primaryContent .eventsInterest .innerWrap {
    padding-bottom: 30px;
}

.newslanding .primaryContent .eventsInterest .ul-normal, .newslanding .primaryContent .eventsInterest ul {
    padding-left: 0;
}

    .newslanding .primaryContent .eventsInterest .ul-normal li ul li {
        display: inline-block;
        padding-bottom: 0;
        line-height: normal;
    }

.newslanding .primaryContent .eventsInterest .news-landing-card .caption {
    padding-left: 0;
}

    .newslanding .primaryContent .eventsInterest .news-landing-card .caption ul {
        margin-bottom: 0;
    }

/** CHECKBOX STYLES **/
.control {
    display: block;
    position: relative;
    padding-left: 30px;
    margin-bottom: 7px;
    cursor: pointer;
    font-size: 18px;
    font-weight: normal;
    font-family: Proxima-Nova-Alt-Rg, sans-serif;
    min-height: 23px;
    color: #000;
}

    .control input {
        position: absolute;
        z-index: -1;
        opacity: 0;
        top: 0;
        left: 0;
        height: 18px;
        width: 18px;
        margin: 0;
        padding: 0;
    }

.control__indicator {
    position: absolute;
    top: 1px;
    left: 0;
    height: 18px;
    width: 18px;
    background-color: rgba(0, 0, 0, 0.1);
}

.control--radio .control__indicator {
    border-radius: 50%;
}

.control input:disabled ~ .control__indicator {
    background: #e6e6e6;
    opacity: 0.6;
    pointer-events: none;
}

.control__indicator:after {
    content: '';
    position: absolute;
    display: none;
}

.control input:checked ~ .control__indicator:after {
    display: block;
}

.control--checkbox .control__indicator:after {
    left: 6px;
    top: 3px;
    width: 4px;
    height: 8px;
    border: solid #666;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.bottom_gap .yellow {
    margin-bottom: 3%;
}

@media (min-width: 768px) {
    .bottom_gap .yellow {
        margin-bottom: 8%;
    }
}

.bottom_gap .innerWrap li {
    border-bottom: none;
    /*width: auto*/
    margin-right: 5%;
    width: 100%;
}

@media (min-width: 768px) {
    .bottom_gap .innerWrap li {
        margin-right: 0%;
    }
}

.bottom_gap .innerWrap li .vCard {
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .bottom_gap .innerWrap li .block .caption ul li:last-child {
        display: none;
    }
}

.bottom_gap .news-list > li {
    width: 100%;
}

    .bottom_gap .news-list > li:last-child {
        border-bottom: 1px solid #d0d0d0;
        margin-bottom: 9%;
        padding-bottom: 5%;
    }

.bottom_gap .area_gap {
    margin-bottom: 6% !important;
}

    .bottom_gap .area_gap li {
        margin-top: 3%;
    }

.bottom_gap .blue {
    padding-bottom: 10px;
}

    .bottom_gap .blue a {
        color: #4fc6de;
    }

@media (min-width: 1170px) {
    .bottom_gap .blue a:hover {
        color: #ee832e;
    }
}

@media (min-width: 768px) {
    .bottom_gap .vCard ul {
        display: flex;
    }
}

.bottom_gap .subscribeBlock {
    float: left;
    margin-bottom: 25px;
}

@media (min-width: 768px) {
    .bottom_gap .subscribeBlock {
        float: inherit;
    }

    .bottom_gap .subscribeBlock {
        margin-top: 25px !important;
    }
}

.margin-fix-news-detail .news_bottom {
    padding-bottom: 0;
    border-bottom: none;
}

.margin-fix-news-detail .infoBlock.infoBlock-news-detail.news_bottom {
    margin-top: -.3em;
}

.margin-fix-news-detail .news_bottom .col-md-5 {
    border-top: 1px solid #ccc;
    margin-top: 5%;
}

@media (min-width: 768px) {
    .margin-fix-news-detail .news_bottom .col-md-5 {
        border-top: none;
        margin-top: 0;
    }
}

.margin-fix-news-detail .news_bottom .col-md-5 nav ul {
    margin-bottom: 0px;
    margin-top: 9px;
    padding-left: 0px;
}

@media (min-width: 768px) {
    .margin-fix-news-detail .news_bottom .col-md-5 nav ul {
        margin-top: -3px;
    }
}

@media (max-width: 767px) {
    .margin-fix-news-detail .news_bottom .col-md-5 nav ul {
        border-bottom: 1px solid #ccc !important;
        padding: 0px 0px 25px 32px !important;
        width: 108% !important;
        margin-left: -15px !important;
    }
}

@media (min-width: 768px) {
    .margin-fix-news-detail .news_bottom {
        border-bottom: 1px solid #d0d0d0;
    }

    .margin-fix-news-detail .infoBlock.infoBlock-news-detail.news_bottom {
        margin-top: -.3em;
    }
}

.margin-fix-news-detail .news_bottom .inlineMenu {
    text-align: left;
}

@media (min-width: 768px) {
    .margin-fix-news-detail .news_bottom .inlineMenu {
        float: right !important;
        text-align: inherit;
    }
}

.margin-fix-news-detail .news_bottom nav.inlineMenu li {
    font-size: 35px;
}

@media (min-width: 768px) {
    .margin-fix-news-detail .news_bottom nav.inlineMenu li {
        font-size: 20px;
    }
}

.subscribeBlock .yellow {
    margin-bottom: 3%;
    text-transform: uppercase;
}

.primaryContent .news_bottom .info-date {
    font-size: 0.8em;
}

    .primaryContent .news_bottom .info-date span {
        display: inline-block;
    }

@media (min-width: 768px) {
    .primaryContent .news_bottom .info-date span {
        display: inline;
    }
}

.margin-fix-news-detail .secondaryContent .border-no {
    border: 0;
}

.timeline_gap {
    padding-top: 10%;
}

.social-icon li a .fa-phone {
    font-size: 21px;
    position: relative;
    top: 4px;
    left: 0px;
    -webkit-transform: rotate(97deg);
    -moz-transform: rotate(97deg);
    -o-transform: rotate(97deg);
    -ms-transform: rotate(97deg);
    transform: rotate(97deg);
}

.newslanding .primaryContent h2.info-heading-month .month {
    margin-left: 0;
}

@media (min-width: 768px) {
    .newslanding .primaryContent h2.info-heading-month .month {
        margin-left: -31px;
    }
}

.isPeople.twoColumnLayout.page.newslanding .primaryContent .infoBlock .info-heading {
    float: left;
    width: 100%;
}

.pageContent.margin-fix-news-detail .ul-location .location-icon.phone a .fa-phone {
    -moz-transform: rotate(97deg);
    -webkit-transform: rotate(97deg);
    -o-transform: rotate(97deg);
    -ms-transform: rotate(97deg);
    transform: rotate(97deg);
}

.locationCards .card figure a:hover {
    color: #000;
}

.locationCards .card figure a {
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

@media (min-width: 768px) {
    .newslanding .primaryContent {
        padding: 0px 40px;
    }
}

@media (min-width: 1170px) {
    .newslanding .secondaryContent {
        margin-left: 0px;
    }
}

body .prof_list_new .secondaryContent .innerWrap-professional-listing {
    border-top: 1px solid #d0d0d0;
    padding-top: 20px;
}

@media (min-width: 768px) {
    body .prof_list_new .secondaryContent .innerWrap-professional-listing {
        border-top: none;
        padding-top: 0;
    }

        body .prof_list_new .secondaryContent .innerWrap-professional-listing .media-image {
            pointer-events: none;
        }
}

body .prof_list_new .secondaryContent.category_top_magin ul.innerWrap.border-hide li {
    border-bottom: none;
}

.orange {
    color: #f7a833;
}

.row.horizon-line {
    margin-top: 0px;
}

.list-btn.activeFilter {
    background-color: #a8c3e4;
    color: #000;
}

.paragraph-style-section ul {
    padding-left: 15px;
}

.blogs h4 {
    color: #f7a833;
    margin-bottom: 0.50em;
}

.blogs .secondaryContent .innerWrap li {
    border-bottom: 0;
}

.blogs .vCard h3 {
    margin-bottom: 4%;
    font-size: 17px;
    margin-top: 2%;
}

.blogs .vCard {
    margin-bottom: 2em;
}

.blogs_out .locationDropdown {
    display: none;
}

.blogs_out .news-subscription-btn {
    display: block;
}

@media (min-width: 768px) {
    .blogs_out .news-subscription-btn {
        display: none;
    }
}

.blogs_out .table-row {
    width: 100%;
}

    .blogs_out .table-row .introBox {
        width: 100%;
    }

.pageContent .primaryContent.blog-page-content-section {
    border-top: 1px solid #bdbdbd;
}

@media (min-width: 768px) {
    .pageContent .primaryContent.blog-page-content-section {
        border-top: none;
    }
}

.pageContent .primaryContent.blog-page-content-section p {
    margin-top: 0;
}

.vCard img.blogs-category-images {
    width: 150px;
    height: auto;
}

@media (min-width: 768px) {
    .vCard img.blogs-category-images {
        width: 100%;
        height: auto;
    }
}

.blogs .caption h3 a {
    color: black;
    transition: all 0.3s ease;
    font-size: 12pt;
    font-family: 'Proxima-Nova-Alt-Rg', Arial, Helvetica, sans-serif;
}

    .blogs .caption h3 a:hover {
        color: #4fc6de;
    }

.secondaryContent .blog_border {
    border: 0;
}

@media (min-width: 768px) {
    .secondaryContent .blog_border {
        border-bottom: 1px solid #d0d0d0;
    }
}

.twoColumnLayout .block ul {
    margin: 0px 0px;
}

.infoBanner .socialNav li a.social-link-text {
    font-size: 15px;
}

    .infoBanner .socialNav li a.social-link-text span, .infoBanner .socialNav li a.social-link-text i {
        display: inline-block;
        vertical-align: middle;
    }

    .infoBanner .socialNav li a.social-link-text span {
        padding-right: 10px;
    }

.filterGroup-2 .form-group-2 {
    position: relative;
}

.filterGroup-2 .search-icon {
    position: absolute;
    right: 0;
    top: 0;
    width: 30px;
    height: 100%;
}

.blog-search-2 {
    text-align: right;
    padding-right: 0;
}

    .blog-search-2 ul li {
        text-align: left;
    }

    .blog-search-2 .sorting-select ul {
        min-width: 150px;
        right: 0;
        left: auto;
    }

    .blog-search-2 .formGroup {
        display: inline-block;
        vertical-align: middle;
        padding-left: 5px;
    }

        .blog-search-2 .formGroup .sbSelector {
            color: #000;
        }

        .blog-search-2 .formGroup label {
            display: inline-block;
            vertical-align: middle;
        }

            .blog-search-2 .formGroup label ~ .sbHolder {
                display: inline-block;
                vertical-align: middle;
            }

.filterGroup-2 input[type="text"] {
    border: 1px solid rgba(0, 0, 0, 0.2);
    min-height: 45px;
}

.filterGroup-2 .icon-search {
    top: 5px;
}

    .filterGroup-2 .icon-search:before {
        color: #000;
    }

.blog-gallery-section {
    padding: 40px 0;
}

    .blog-gallery-section .blog-list-item {
        width: 33.33333%;
        height: 195px;
        float: left;
        position: relative;
        margin-bottom: 30px;
        padding-left: 15px;
        padding-right: 0;
        overflow: hidden;
    }
/* .blog-gallery-section .blog-list-item:nth-child(10) ~ div {
      display: none; } */
@media (max-width: 991px) {
    .blog-gallery-section .blog-list-item {
        width: 50%;
        padding: 0;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .blog-gallery-section .blog-list-item figure img {
        width: auto !important;
        min-height: 100%;
        max-width: 100%;
        min-width: 100%; /*height:100%;*/
    }
}

@media (min-width: 1170px) {
    .blog-gallery-section .blog-list-item figure img {
        /* height: 117%!important;*/
    }
}

.blog-gallery-section .blog-list-item > div {
    /*height: 195px;*/
    overflow: hidden;
}

.blog-gallery-section .blog-list-item a {
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.blog-gallery-section .blog-list-item figure a {
    display: block;
}

    .blog-gallery-section .blog-list-item figure a:hover {
        transform: scale(1.1);
    }

.blog-gallery-section .blog-list-item figure img {
    min-height: 100%;
    max-width: 100%;
    width: 100%;
    min-width: 100%; /*height:100%; */
}

.blog-gallery-section .blog-list-item:nth-child(7n+7), .blog-gallery-section .blog-list-item:nth-child(1), .blog-gallery-section .blog-list-item:nth-child(10), .blog-gallery-section .blog-list-item:nth-child(9) {
    width: 66.33333%;
    padding-right: 15px;
    padding-left: 0;
}

@media (max-width: 991px) {
    .blog-gallery-section .blog-list-item:nth-child(7n+7), .blog-gallery-section .blog-list-item:nth-child(1), .blog-gallery-section .blog-list-item:nth-child(10), .blog-gallery-section .blog-list-item:nth-child(9) {
        width: 50%;
        padding: 0 !important;
    }
}

@media (max-width: 991px) {
    .blog-gallery-section .blog-list-item:nth-child(1) {
        width: 100%;
        padding: 0 !important;
        float: none !important;
    }
}

.blog-gallery-section .blog-list-item:nth-child(8) {
    width: 33.33333%;
    height: 420px;
    float: left; /*BTLaw-1633 Rajesh*/
}

@media (max-width: 991px) {
    .blog-gallery-section .blog-list-item:nth-child(8) {
        width: 50%;
        height: 195px;
        float: left;
    }
}
/*.blog-gallery-section .blog-list-item:nth-child(8) > div {
        height: 420px; }*/
@media (max-width: 991px) {
    .blog-gallery-section .blog-list-item:nth-child(8) > div {
        height: 202px;
    }
}

.blog-gallery-section .blog-list-item:nth-child(8) > div img {
    min-height: 100%;
}

@media (max-width: 991px) {
    .blog-gallery-section .blog-list-item:nth-child(8) > div img {
        height: auto;
    }
}

.blog-gallery-section .blog-list-item:nth-child(4), .blog-gallery-section .blog-list-item:nth-child(9) {
    padding-left: 0;
    padding-right: 15px;
    width: 33.333%;
}

@media (max-width: 991px) {
    .blog-gallery-section .blog-list-item:nth-child(4), .blog-gallery-section .blog-list-item:nth-child(9) {
        width: 50%;
        padding: 0;
    }
}

.blog-gallery-section .blog-list-item:nth-child(5), .blog-gallery-section .blog-list-item:nth-child(10) {
    padding-left: 15px;
    padding-right: 15px;
    width: 33.333%;
}

@media (max-width: 991px) {
    .blog-gallery-section .blog-list-item:nth-child(5), .blog-gallery-section .blog-list-item:nth-child(10) {
        width: 50%;
        padding: 0;
    }
}

.blog-gallery-section .blog-list-item:nth-child(1) {
    height: 420px;
}

    .blog-gallery-section .blog-list-item:nth-child(1) > div {
        height: 420px;
    }

.blog-gallery-section .blog-list-item:nth-child(n+11) {
    padding-left: 0;
    width: 33.333%;
    padding-right: 0px;
    padding-left: 15px;
}

@media (max-width: 991px) {
    .blog-gallery-section .blog-list-item:nth-child(n+11) {
        width: 50%;
        padding: 0;
    }
}
/*.blog-gallery-section .blog-list-item:nth-child(n+11):nth-child(5n+1) {
        width: 66.666%;
        padding-left: 0;
        padding-right: 15px; }*/
@media (max-width: 991px) {
    .blog-gallery-section .blog-list-item:nth-child(n+11):nth-child(5n+1) {
        width: 50%;
        padding: 0;
    }
}
/*.blog-gallery-section .blog-list-item:nth-child(n+11):nth-child(5n+3) {
        padding-left: 0;
        padding-right: 15px; }*/
/*.blog-gallery-section .blog-list-item:nth-child(n+11):nth-child(5n+4) {
        padding-left: 15px;
        padding-right: 15px; }*/
/* @media (max-width: 991px) {
      .blog-gallery-section .blog-list-item:not(:first-child):nth-child(even) {
        padding-right: 15px !important;
        padding-left: 0px !important; }
     .blog-gallery-section .blog-list-item:not(:first-child):nth-child(odd) {
        padding-left: 15px !important;
        padding-right: 0px !important; } }*/
.blog-gallery-section .blog-list-item .gal-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.7);
    width: 50%;
    padding: 20px;
    max-height: 97%;
    overflow: auto;
}

    .blog-gallery-section .blog-list-item .gal-overlay h3, .blog-gallery-section .blog-list-item .gal-overlay p, .blog-gallery-section .blog-list-item .gal-overlay span {
        color: #fff;
        font-family: "Proxima-Nova-Alt-Rg", sans-serif;
        display: block;
    }

    .blog-gallery-section .blog-list-item .gal-overlay h3, .blog-gallery-section .blog-list-item .gal-overlay span {
        font-weight: 300;
        font-size: 12px;
    }

        .blog-gallery-section .blog-list-item .gal-overlay h3 a {
            color: #fff;
            display: inline-block;
        }

            .blog-gallery-section .blog-list-item .gal-overlay h3 a:hover {
                opacity: 0.5;
            }

    .blog-gallery-section .blog-list-item .gal-overlay p {
        font-weight: 400;
        font-size: 13px;
        margin: 0 0 10px;
    }

.blog-gallery-section .blog-list-item.odd .gal-overlay p, .blog-gallery-section .blog-list-item.even .gal-overlay p {
    font-weight: 400;
    font-size: 18px;
    margin: 0 0 10px;
    line-height: 20px;
}

.blog-gallery-section .blog-list-item.odd .gal-overlay, .blog-gallery-section .blog-list-item.even .gal-overlay {
    min-height: 115px;
    padding: 15px !important;
}

.blog-gallery-section .blog-list-item .gal-overlay.orange-top {
    background: rgba(244, 136, 64, 0.9);
    top: 0;
    left: 0px;
    width: 100%;
    height: auto;
    bottom: auto;
}

.blog-gallery-section .blog-list-item .gal-overlay.brown-light-right {
    background: rgb(152, 113, 92);
    top: 0;
    left: auto;
    width: 50%;
    height: 100%;
    bottom: auto;
    right: 0;
}

.blog-gallery-section .blog-list-item .gal-overlay.blue-bottom {
    background: rgba(0, 150, 177, 0.9);
    width: 100%;
    height: auto;
    left: 0;
}

.blog-gallery-section .blog-list-item .gal-overlay.dark-brown-right {
    background: rgb(67, 36, 29);
    top: 0;
    left: auto;
    width: 50%;
    height: 100%;
    bottom: auto;
    right: 0;
}

.blog-gallery-section .blog-list-item .gal-overlay.red-bottom {
    width: 100%;
    background: rgba(157, 42, 21, 0.9);
}

.blog-gallery-section .blog-list-item .gal-overlay.bottom-orange {
    background: rgba(244, 136, 64, 0.9);
    top: auto;
    left: 0px;
    width: 100%;
    height: auto;
    bottom: 0;
}

.blog-gallery-section .blog-list-item .gal-overlay.green-bottom {
    background: rgba(96, 101, 34, 0.9);
    top: auto;
    left: 0px;
    width: 100%;
    height: auto;
    bottom: 0;
    min-height: 46.5%;
}

.blog-gallery-section .blog-list-item .gal-overlay.light-2-brown-right {
    background: rgba(88, 66, 53, 0.9);
    top: 0;
    left: auto;
    width: 50%;
    height: 100%;
    bottom: auto;
    right: 0;
}

.blog-gallery-section .blog-list-item .gal-overlay.red-top {
    width: 100%;
    background: rgba(157, 42, 21, 0.9);
    bottom: auto;
    top: 0;
}

.blog-gallery-section .blog-list-item .gal-overlay.purpal-right {
    left: auto;
    right: 0;
    background: rgb(43, 41, 62);
    min-width: 50%;
    min-height: 100%;
}

.blog-gallery-section .blog-list-item .gal-overlay.orange-right, .blog-gallery-section .blog-list-item .gal-overlay.red-right, .blog-gallery-section .blog-list-item .gal-overlay.blue-right, .blog-gallery-section .blog-list-item .gal-overlay.green-right, .blog-gallery-section .blog-list-item .gal-overlay.dark-puppal-right {
    left: auto;
    right: 0;
    top: 0;
    width: 50%;
    height: 100%;
    background: rgb(244, 136, 64);
}

.blog-gallery-section .blog-list-item .gal-overlay.red-right {
    background: rgb(157, 42, 21);
}

.blog-gallery-section .blog-list-item .gal-overlay.blue-right {
    background: rgb(0, 150, 177);
}

.blog-gallery-section .blog-list-item .gal-overlay.green-right {
    background: rgb(96, 101, 34);
}

.blog-gallery-section .blog-list-item .gal-overlay.dark-puppal-right {
    background: rgb(67, 66, 82);
}

.blog-gallery-section .blog-list-item > div {
    position: relative;
}

.blog-gallery-section-2 .blog-list-item:first-child {
    padding-left: 0px;
    padding-right: 15px;
    width: 33.333%;
    height: 195px;
}

@media (max-width: 991px) {
    .blog-gallery-section-2 .blog-list-item:first-child {
        float: left !important;
        width: 50% !important;
        padding-right: 15px !important;
    }
}

@media (max-width: 767px) {
    .blog-gallery-section-2 .blog-list-item:first-child {
        float: none !important;
        width: 100% !important;
        padding-right: 0px !important;
    }
}

.blog-gallery-section-2 .blog-list-item:first-child > div {
    height: 196px;
}

.blog-gallery-section-2 .blog-list-item:nth-child(2) {
    padding-right: 15px;
}

.blog-gallery-section-2 .blog-list-item:nth-child(n+7) {
    padding-left: 15px;
    padding-right: 15px;
    width: 33.333%;
}

@media (max-width: 991px) {
    .blog-gallery-section-2 .blog-list-item:nth-child(n+7) {
        width: 50%;
    }
}

.blog-gallery-section-2 .blog-list-item:nth-child(7) {
    padding-left: 0px !important;
}

.blog-gallery-section-2 .blog-list-item:nth-child(8) {
    padding-left: 15px;
    padding-right: 0;
    width: 33.333%;
    height: 195px;
}

@media (max-width: 991px) {
    .blog-gallery-section-2 .blog-list-item:nth-child(8) {
        width: 50%;
    }
}

.blog-gallery-section-2 .blog-list-item:nth-child(n+10):nth-child(3n+1) {
    padding-left: 15px;
    padding-right: 15px;
    width: 33.333%;
    height: 195px;
}

@media (max-width: 991px) {
    .blog-gallery-section-2 .blog-list-item:nth-child(n+10):nth-child(3n+1) {
        width: 50%;
    }
}

.blog-gallery-section-2 .blog-list-item:nth-child(n+10):nth-child(3n+3) {
    padding-right: 15px !important;
}

.blog-gallery-section-2 .blog-list-item:nth-child(n+10):nth-child(3n+4) {
    padding-left: 15px !important;
    padding-right: 0 !important;
}

.blog-gallery-section-2 .blog-list-item:nth-child(n+10):nth-child(3n+2) {
    padding-left: 15px !important;
}

.blog-gallery-section-2 .blog-list-item:nth-child(n+10):nth-child(5n+1) {
    width: 33.333%;
    height: 195px;
}

@media (max-width: 991px) {
    .blog-gallery-section-2 .blog-list-item:nth-child(n+10):nth-child(5n+1) {
        width: 50%;
    }
}

.blog-gallery-section-2 .blog-list-item:nth-child(9n+9), .blog-gallery-section-2 .blog-list-item:nth-child(3n) {
    padding-left: 15px !important;
}

@media (max-width: 991px) {
    .blog-gallery-section-2 .blog-list-item:not(:first-child):nth-child(odd) {
        padding-right: 15px !important;
        padding-left: 0px !important;
    }

    .blog-gallery-section-2 .blog-list-item:not(:first-child):nth-child(even) {
        padding-left: 15px !important;
        padding-right: 0px !important;
    }
}

/* .blog-gallery-section-2 .blog-list-item:nth-child(9) ~ div {
  display: none; } */

.loadMore-btn {
    text-align: center;
    padding-bottom: 50px;
}

    .loadMore-btn a {
        display: inline-block;
        font-size: 16px;
        text-align: center;
        padding: 12px 25px;
        color: #06b0bd;
        border: 1px solid #06b0bd;
        font-weight: bold;
        -moz-transition: all 0.5s ease-in-out;
        -o-transition: all 0.5s ease-in-out;
        -webkit-transition: all 0.5s ease-in-out;
        transition: all 0.5s ease-in-out;
    }

        .loadMore-btn a:hover {
            color: #fff;
            background: #06b0bd;
        }

@media (max-width: 767px) {
    .filterGroup-2 {
        padding: 40px 0 0;
    }

        .filterGroup-2 .formGroup {
            padding-right: 15px;
        }

    .primaryContent .filterGroup-2 .sb-icon-search {
        right: 31px;
        top: 5px;
    }

    .BlogsContent .pageContent {
        padding-bottom: 2rem;
    }

    .blog-gallery-section .blog-list-item {
        width: 100% !important;
        /* height: auto; */
        padding: 0 !important;
        float: none !important;
        margin-bottom: 20px !important;
    }

        .blog-gallery-section .blog-list-item:nth-child(1) {
            height: auto !important;
        }

        .blog-gallery-section .blog-list-item:not(:first-child):nth-child(even), .blog-gallery-section .blog-list-item:not(:first-child):nth-child(odd) {
            padding: 0 !important;
        }
        /* .blog-gallery-section .blog-list-item > div {
      height: auto !important; } 
    .blog-gallery-section .blog-list-item figure a {
      line-height: 0px; } 
  .blog-gallery-section-2 .blog-list-item:nth-child(n+10):nth-child(3n+1),*/
        .blog-gallery-section-2 .blog-list-item:nth-child(n+10):nth-child(5n+1),
        .blog-gallery-section .blog-list-item:nth-child(8) > div img,
        .blog-gallery-section .blog-list-item:nth-child(8) {
            height: auto !important;
            min-height: 1px !important;
        }

        .blog-gallery-section .blog-list-item figure img {
            max-width: 100%;
        }

    .blog-search-2 {
        text-align: left;
        padding-right: 15px;
    }

        .blog-search-2 .formGroup {
            display: block;
            margin-bottom: 10px !important;
            padding-right: 0 !important;
            padding-left: 0 !important;
        }

            .blog-search-2 .formGroup .sbSelector {
                border: 1px solid rgba(0, 0, 0, 0.2);
            }

            .blog-search-2 .formGroup label ~ .sbHolder {
                min-width: 150px;
            }

            .blog-search-2 .formGroup label {
                padding-right: 0.5rem;
            }

    .blog-gallery-section .blog-list-item .gal-overlay p {
        font-size: 14px;
    }

    .banner-btn .btn {
        display: block;
        padding: 0 10px;
        font-size: 17px;
        line-height: 50px;
    }
}

.primaryContent {
    /* search icon */
    /* finish: search icon  */
    /* sorting select dropdown input with transparent background */
    /* finish: sorting selection option with transparent background */
}

    .primaryContent .sb-icon-search {
        color: #777779;
        top: 7px;
        right: .4em;
    }

    .primaryContent .articles-count p {
        color: #121728;
        padding-top: 8px;
        margin-top: 0;
    }

    .primaryContent .sorting-select .sbHolder {
        background: #ffffff;
    }

    .primaryContent .grey-1 {
        background: #939295;
    }

    .primaryContent .articles-background-royalBlue .dark-color {
        background: #3885dd;
    }

        .primaryContent .articles-background-royalBlue .dark-color.very-light-background {
            background: #3885dda6;
        }

        .primaryContent .articles-background-royalBlue .dark-color.light-background {
            background: #3885ddcf;
        }

    .primaryContent .articles-background-prairieSand .dark-color {
        background: #983222;
    }

        .primaryContent .articles-background-prairieSand .dark-color.very-light-background {
            background: #983222a6;
        }

        .primaryContent .articles-background-prairieSand .dark-color.light-background {
            background: #983222cf;
        }

    .primaryContent .articles-background-seaBuckthorn .dark-color {
        background: #f8a834;
    }

        .primaryContent .articles-background-seaBuckthorn .dark-color.very-light-background {
            background: #f8a834a6;
        }

        .primaryContent .articles-background-seaBuckthorn .dark-color.light-background {
            background: #f8a834cf;
        }

    .primaryContent .articles-background-bondiBlue .dark-color {
        background: #009aa6;
    }

        .primaryContent .articles-background-bondiBlue .dark-color.very-light-background {
            background: #009aa6a6;
        }

        .primaryContent .articles-background-bondiBlue .dark-color.light-background {
            background: #009aa6cf;
        }

    .primaryContent .articles-background-olive .dark-color {
        background: #8e9300;
    }

        .primaryContent .articles-background-olive .dark-color.very-light-background {
            background: #8e9300a6;
        }

        .primaryContent .articles-background-olive .dark-color.light-background {
            background: #8e9300cf;
        }

    .primaryContent .articles-background-bamboo .dark-color {
        background: #d95e00;
    }

        .primaryContent .articles-background-bamboo .dark-color.very-light-background {
            background: #d95e00a6;
        }

        .primaryContent .articles-background-bamboo .dark-color.light-background {
            background: #d95e00cf;
        }

    .primaryContent .articles-background-donkeyBrown .dark-color {
        background: #a79e70;
    }

        .primaryContent .articles-background-donkeyBrown .dark-color.very-light-background {
            /*background:  $bgColor+a6;*/
            background-color: #c6c0a2;
        }

        .primaryContent .articles-background-donkeyBrown .dark-color.light-background {
            background: #a79e70cf;
        }

    .primaryContent .articles-background-calypso .dark-color {
        background: #336784;
    }

        .primaryContent .articles-background-calypso .dark-color.very-light-background {
            background: #336784a6;
        }

        .primaryContent .articles-background-calypso .dark-color.light-background {
            background: #336784cf;
        }

    .primaryContent .articles-background-elm .dark-color {
        background: #1a7274;
    }

        .primaryContent .articles-background-elm .dark-color.very-light-background {
            background: #1a7274a6;
        }

        .primaryContent .articles-background-elm .dark-color.light-background {
            background: #1a7274cf;
        }

    .primaryContent .articles-background-romanCoffee .dark-color {
        background: #765847;
    }

        .primaryContent .articles-background-romanCoffee .dark-color.very-light-background {
            background: #765847a6;
        }

        .primaryContent .articles-background-romanCoffee .dark-color.light-background {
            background: #765847cf;
        }

    .primaryContent .articles-background-extraColor .dark-color {
        background: #000000;
    }

        .primaryContent .articles-background-extraColor .dark-color.very-light-background {
            background: #000000a6;
        }

        .primaryContent .articles-background-extraColor .dark-color.light-background {
            background: #000000cf;
        }

    .primaryContent .article-card {
        padding: 8px;
        font-size: 14px;
    }

        .primaryContent .article-card p a {
            color: white;
        }

        .primaryContent .article-card date {
            color: black;
            margin-bottom: 0px;
        }

        .primaryContent .article-card .text-right {
            float: right;
            color: black;
            text-align: right;
        }

            .primaryContent .article-card .text-right * {
                color: black;
            }

            .primaryContent .article-card .text-right img {
                float: left;
                margin-top: -3px;
                margin-left: -45%;
                width: 25px;
            }

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    .primaryContent .article-card .text-right .articles-background-royalBlue .article-card .col-md-12 .text-right img {
        margin-left: -8%;
    }
}

.primaryContent .article-card .text-right p {
    margin-top: 0;
}

.primaryContent .category_top_magin {
    margin-top: 0;
    border-top: 1px solid #ccc;
    padding-top: 6%;
}

@media (min-width: 768px) {
    .primaryContent .category_top_magin {
        padding-top: 0;
        border-top: 0;
    }
}

.secondaryContent .innerWrap-posts > li:last-child {
    border-bottom: 1px solid #d0d0d0;
}

.secondaryContent .innerWrap-Tags {
    list-style: none;
    font-weight: 600;
}

    .secondaryContent .innerWrap-Tags li > a {
        float: left;
        margin-right: 14px;
        color: #4d4d4d;
    }

.secondaryContent .innerWrap-Tags-fix {
    margin-bottom: 140px;
}

.secondaryContent .innerWrap-Tags-list {
    list-style: none;
    font-weight: 600;
    float: left;
}

    .secondaryContent .innerWrap-Tags-list li > a {
        color: #4d4d4d;
    }
/* sahil 29 april to to remove above border */
.secondaryContent .innerWrap-Tags-list-fix {
    width: 100%;
    /*padding-top: 30px;*/
    padding-bottom: 30px;
    /*border-top: 1px solid #d0d0d0;*/
}

    .secondaryContent .innerWrap-Tags-list-fix .btn.view-all-button {
        width: 100px;
        float: left;
        text-transform: capitalize;
        margin-top: 0px;
    }

.secondaryContent .enable-last-child-bottom-border {
    border-bottom: 1px solid #d0d0d0;
}

.secondaryContent .image-text-card img {
    width: 100%;
}

.secondaryContent .image-text-card .image-text-card-details-background {
    top: 0;
    position: absolute;
    background: rgba(0, 0, 0, 0.439216);
    width: calc(100% - 30px);
    height: 96%;
}

    .secondaryContent .image-text-card .image-text-card-details-background .white {
        color: white;
        font-weight: bold;
    }

    .secondaryContent .image-text-card .image-text-card-details-background .green {
        color: #a9c938;
        font-weight: bold;
    }

    .secondaryContent .image-text-card .image-text-card-details-background .icon-size {
        font-size: 60px;
        font-weight: bold;
    }

    .secondaryContent .image-text-card .image-text-card-details-background .image-text-card-details {
        margin-top: 8%;
    }

.govt_relations .border-hide li:last-child {
    border-bottom: 0;
    margin-bottom: 25px;
}

.govt_relations .formGroup {
    margin-bottom: 0;
}

.govt_relations .filterGroup {
    margin-top: 6%;
}

.govt_relations .secondaryContent .innerWrap {
    width: 100%;
    float: left;
}

    .govt_relations .secondaryContent .innerWrap .secondaryContent-h4 {
        color: #f7a833;
        margin-bottom: 15px;
    }

@media (max-width: 767px) {
    .govt_relations .secondaryContent .innerWrap .secondaryContent-h4 {
        margin-bottom: 30px;
    }
}

.govt_relations .secondaryContent .innerWrap li {
    border-bottom: 0;
}

.govt_relations .secondaryContent .innerWrap-Tags {
    float: left;
    margin-bottom: 30px;
}

    .govt_relations .secondaryContent .innerWrap-Tags h4 {
        color: #f7a833;
        margin-bottom: 15px;
    }

.govt_relations .secondaryContent .innerWrap-Tags-list {
    float: left;
}

    .govt_relations .secondaryContent .innerWrap-Tags-list h4 {
        color: #f7a833;
        margin-bottom: 15px;
    }

.govt_relations .secondaryContent .innerWrap-posts li:last-child {
    border-bottom: 1px solid #ccc;
    padding-bottom: 7%;
    margin-bottom: 11%;
}

.article-card {
    height: 160px;
    margin-bottom: 20px;
    position: relative;
}

    .article-card .goverment-blog-content {
        position: absolute;
        bottom: 0;
    }

    .article-card.relevance-one, .article-card.relevance-two, .article-card.relevance-three {
        width: calc(100% - 30px);
        margin-left: 15px;
        margin-right: 15px;
    }

@media (min-width: 768px) {
    .article-card.relevance-one, .article-card.relevance-two, .article-card.relevance-three {
        width: calc(100% - 30px);
    }
}

.article-card.relevance-one div, .article-card.relevance-two div, .article-card.relevance-three div {
    padding: 0 8px;
}

    .article-card.relevance-one div.goverment-blog-content, .article-card.relevance-two div.goverment-blog-content, .article-card.relevance-three div.goverment-blog-content {
        padding-bottom: 8px;
    }

.article-card.relevance-one .text-right p, .article-card.relevance-two .text-right p, .article-card.relevance-three .text-right p {
    display: none;
}

.article-card.relevance-one .text-right img, .article-card.relevance-two .text-right img, .article-card.relevance-three .text-right img {
    margin-left: 0px;
    width: 25px;
}

@media (min-width: 1024px) {
    .article-card.relevance-one {
        width: calc(50% - 20px);
        margin: 10px 10px;
        font-size: 16px;
    }

    .article-card.relevance-two {
        width: calc(25% - 20px);
        margin: 10px 10px;
    }

    .article-card.relevance-three {
        width: calc(100% - 20px);
        margin: 10px 10px;
        font-size: 16px;
    }
}

.govt_relations .primaryContent .sorting-select {
    display: none;
}

@media (min-width: 1024px) {
    .govt_relations .primaryContent .sorting-select {
        display: block;
    }
}

.btn.btn-submit.fullWidth {
    width: 100%;
    float: left;
}

@media only screen and (min-width: 768px) and (max-width: 992px) {
    .image-text-card-details-background .image-text-card-details .col-xs-8 h2 span {
        font-size: 18px;
    }
}

.location_detail_outer .primaryContent .ng-scope .row .col-sm-12 .no-gap-detail {
    margin-top: 10px;
}

.primaryContent.blog-page-content-section .ng-scope {
    width: calc(100% - 15px);
}

@media (min-width: 768px) {
    .primaryContent.blog-page-content-section .ng-scope {
        width: 100%;
    }
}

.headline-container li {
    position: relative;
}

.clear-all.blog-listing {
    padding: 0;
}

.filterGroup .blog-filter .formGroup {
    padding-right: 15px;
}

.primaryContent .blog-articles {
    margin-bottom: 10px;
}

@media (min-width: 768px) {
    .primaryContent .blog-articles {
        margin-bottom: 0px;
    }
}

.isPeople .pageContent.article-card.col-md-12.text-right .ng-binding {
    padding-top: 3px;
}

.blog_catg_1 .category_top_magin .border-hide li {
    border-bottom: 0;
}

.blog_catg_1 .blog-page-content-section .blog-articles .articles-count .ng-binding {
    line-height: 2.6em;
    margin-bottom: 5px;
}

.pageContent .primaryContent.blog-page-content-section .relevance-one .goverment-blog-content .text-right p {
    padding-top: 0px;
    display: inline-block;
}

.pageContent .primaryContent.blog-page-content-section .relevance-one .goverment-blog-content .text-right img {
    margin-left: 0px;
}

.primaryContent.blog-page-content-section .goverment-blog-content {
    width: 95%;
    float: left;
}

    .primaryContent.blog-page-content-section .goverment-blog-content .ng-scope {
        width: auto;
    }

        .primaryContent.blog-page-content-section .goverment-blog-content .ng-scope p {
            margin-bottom: 0px;
        }

.isLocationDetail.page.location_detail_outer .infoBanner .contentMiddle .block:last-child .inlineMenu {
    border-top: none;
    padding-top: 0px;
}

li.related-people-second-sec {
    padding-bottom: 15px;
}

.secondaryContent .innerWrap li.local-officess-address {
    border-bottom: none;
    width: 100%;
}

.news-landing-card ul.set-width {
    width: 64px;
}

.leave-comment {
    float: left;
    margin-bottom: 15px;
}

@media (max-width: 767px) {
    .leave-comment {
        margin-top: 20px;
    }
}

.legal-updates-heading {
    margin-bottom: 20px;
}

.legal-updates-timing .primaryContent-h4 {
    margin-bottom: 8px;
}

.legal-updates-timing .timing-date {
    font-weight: 600;
    font-size: 18px;
    color: #000;
}

@media (min-width: 1170px) {
    .legal-updates-timing .timing-date {
        font-size: 16px;
    }
}

.legal-updates-timing .timing-date a {
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    color: #121728;
}

    .legal-updates-timing .timing-date a:hover {
        color: #4fc6de;
    }

@media (max-width: 767px) {
    .secondaryContent.bottom_gap {
        margin-top: 16px !important;
    }
}

.secondaryContent.bottom_gap {
    float: left;
    margin-top: 10px;
}

@media (min-width: 768px) {
    .secondaryContent.bottom_gap {
        margin-top: 0px;
    }
}

.profile-photo-comments.blog-profile-photo {
    width: 55px;
    height: 55px;
}

@media (min-width: 768px) {
    .profile-photo-comments.blog-profile-photo {
        width: 70px;
        height: 70px;
    }
}

.info-block-date-bar {
    margin-top: 20px;
}

    .info-block-date-bar hr.date-bar {
        margin: 0 3%;
        border-top: 1px solid #ccc;
    }

@media (min-width: 768px) {
    .info-block-date-bar {
        display: none;
    }
}

nav.inline-menu-icon {
    width: 100%;
}

@media (min-width: 768px) {
    nav.inline-menu-icon {
        width: auto;
    }
}

nav.inline-menu-icon ul {
    margin-bottom: 8px;
    margin-top: 9px;
    font-size: 35px;
    text-align: center;
}

@media (min-width: 768px) {
    nav.inline-menu-icon ul {
        padding: 10px 0px;
        font-size: 20px;
    }
}

.subscribeBlock .innerWrap.blog-subscribe {
    margin-top: 30px;
}

.pageContent .bottom_gap .innerWrap .news-landing-card ul li.related-prople-add-book {
    display: block !important;
    margin-top: 18px;
}

@media (max-width: 767px) {
    .infoBlock.infoBlock-news-detail.infoblock-news-heading.infoblock-news-heading.blog-detail-heading {
        padding-bottom: 21px !important;
    }
}

.innerWrap-Tags-primary-block .active-tag-primary-block {
    color: #f7a833;
}

.infoBlock.infoBlock-news-detail.infoblock-news-heading.infoblock-news-heading {
    padding-bottom: 0px;
    border-bottom: 1px solid #ccc;
}

    .infoBlock.infoBlock-news-detail.infoblock-news-heading.infoblock-news-heading .info-date {
        line-height: 3.1;
    }

.blog-content .blog-heading {
    margin-top: -10px;
}

@media (min-width: 821px) and (max-width: 1169px) {
    .blog-content .blog-heading {
        margin-top: .5em !important;
    }
    /* sumit March 30: for reducing space between headings & Alignment for BTLaw-1414*/
    .row.blog-content:first-child h3.blog-heading-back {
        margin-bottom: 0px;
        margin-top: 0px !important;
    }

    .primaryContent .row.blog-content:first-child {
        padding-top: 0 !important;
    }
}

@media (min-width: 768px) {
    .blog-content .blog-heading {
        margin-top: -25px;
    }

    .blog-content .col-md-6 .blog-heading {
        width: 105%;
    }
}

.blog-content .sub-comment {
    padding-left: 5%;
}

@media (min-width: 768px) {
    .blog-content .sub-comment {
        padding-left: 0;
    }
}

.primaryContent .row.blog-content {
    margin-top: 0px;
}

.primaryContent .row.blog-content-up {
    border-top: 0px solid #ccc;
}

.primaryContent .row.blog-profeshion {
    display: block;
    border-top: 0px solid #ccc;
    padding-top: 15px;
    border-bottom: 1px solid #ccc;
}

@media (max-width: 767px) {
    .primaryContent .row.blog-content-up {
        margin-bottom: 4%;
    }
}

@media (min-width: 768px) {
    .primaryContent .row.blog-profeshion {
        padding-top: 0;
        margin: 0 0px 10px 0;
        padding: 20px 0px 20px 0;
    }
}

.pd-top20 {
    padding-top: 30px;
}

.yellow.blog-details-head {
    margin-bottom: 5%;
}

.contactInfo .locationPlace {
    color: #4fc6de;
}

.red-text-news-detail {
    color: #a93228 !important;
    font-weight: 600;
}

@media (max-width: 767px) {
    .margin-fix-news-detail {
        border-bottom: 1px solid #d0d0d0;
        padding-bottom: 5px;
    }

    .margin-fix-news-detail {
        margin-top: 0px !important;
    }
}

@media (min-width: 768px) {
    .margin-fix-news-detail {
        margin-top: 97px;
        padding-top: 0px !important;
    }
}

@media (min-width: 1024px) {
    .margin-fix-news-detail {
        margin-top: 97px;
    }
}

ul.enable-last-child-bottom-border-grey li:last-child {
    border-bottom: 1px solid #d0d0d0;
}

.back-heading-news-detail {
    margin-top: -40px;
    margin-left: 0px;
    color: #4fc6de;
    line-height: 1.1;
    font-weight: normal;
}

.infoBlock-news-detail {
    margin-top: 2%;
    padding-bottom: 5%;
    border-bottom: 0px solid #d0d0d0;
}

    .infoBlock-news-detail .info-heading {
        color: #a93228;
        font-size: 1em;
        line-height: 1.1;
        font-weight: normal;
    }

    .infoBlock-news-detail .info-data {
        color: black;
        text-transform: capitalize;
        font-size: 25px;
    }

    .infoBlock-news-detail .info-date {
        text-transform: capitalize;
        color: #a7a7a7;
        margin-top: -2px;
        font-size: 15px;
    }

        .infoBlock-news-detail .info-date span {
            color: #4fc6df;
        }

#customModal .vCard .caption {
    padding: 5px 15px;
}

.news-landing-card img {
    float: left;
}

.modal {
    display: none;
    position: fixed;
    z-index: 999999;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(39, 43, 58, 0.85);
}

.modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 10px 26px 26px 26px;
    border: 1px solid #888;
    width: 90%;
    border-radius: 10px;
}

@media (min-width: 768px) {
    .modal-content {
        width: 80%;
    }
}

.close {
    color: #aaaaaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    margin-top: -10px;
    border-radius: 50%;
    background: #f1f1f1;
    width: 36px;
    padding-left: 0.38em;
    margin-right: -25px;
}

button[data-dismiss] {
    border: none;
    background: transparent;
    padding-right: 0;
    margin-right: -2px;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

nav.inlineMenu ul li.print-icon {
    display: none;
}

@media (min-width: 768px) {
    nav.inlineMenu ul li.print-icon {
        display: inline-block;
    }
}

.location_detail_outer .infoBanner .infoBox.tintDark .contentMiddle .table-cell ul.socialNav li:last-child.location-envelope {
    display: inline-block;
}

.location_detail_outer .infoBanner .infoBox.tintDark .contentMiddle .table-cell ul.socialNav li:first-child.location-facebook {
    display: inline-block;
}

.bottom_gap .innerWrap .infoBlock.last-news-tag {
    margin-bottom: 30px;
}

.innerWrap-Tags-list.innerWrap-Tags-list-fix.no-bottom-padding {
    padding-bottom: 0px;
}

ul.innerWrap-Tags li.tag-first-child {
    padding-bottom: 15px;
}

ul.innerWrap li.last-news-tag {
    margin-bottom: 30px;
}

ul.innerWrap li.tag-first-child {
    padding-bottom: 15px;
}

@media (max-width: 767px) {
    .related-people-section {
        /*border-top: 1px solid #d0d0d0;*/
        padding-top: 15px;
        padding-bottom: 15px;
        /* border-bottom: none!important;*/
        margin-bottom: 0px !important;
    }

        .related-people-section.eventsInterest {
            margin-bottom: 0px !important;
            margin-top: -35px;
            border-bottom: 1px solid #d0d0d0 !important;
            border-top: none;
        }
}

.related-people-section {
    border-bottom: 1px solid #d0d0d0;
}

    .related-people-section .row.unit {
        margin-bottom: 15px;
        margin-right: 0px;
    }

@media (min-width: 768px) {
    .related-people-section .row.unit {
        margin-right: 0px;
        margin-right: 15px;
    }
}

.related-people-section .row.unit .people-image {
    margin-right: 0px;
}

@media (min-width: 768px) {
    .related-people-section .row.unit .people-image {
        margin-right: 0;
    }
}

.related-people-section h3.heading {
    color: #f7a833;
    margin-bottom: 15px;
}

.related-people-section .people-image {
    padding-right: 15px;
}

@media (min-width: 768px) {
    .related-people-section .people-image {
        padding-right: 0px;
    }
}

.related-people-section .people-image img {
    width: 100%;
}

.related-people-section .people-address h4 {
    text-transform: none !important;
    -webkit-word-break: keep-all !important;
    -ms-word-break: keep-all !important;
    -moz-word-break: keep-all !important;
    -o-word-break: keep-all !important;
    word-break: keep-all !important;
}

    .related-people-section .people-address h4 a {
        -moz-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        -webkit-transition: all 0.3s ease;
        transition: all 0.3s ease;
        color: #121728;
        font-family: "Proxima-Nova-Alt-Rg", sans-serif;
        font-weight: 600;
    }

        .related-people-section .people-address h4 a:hover {
            color: #4fc6de;
        }

.related-people-section .people-address .icons {
    font-size: 28px;
}

    .related-people-section .people-address .icons a {
        -moz-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        -webkit-transition: all 0.3s ease;
        transition: all 0.3s ease;
        margin-right: 3px;
    }

        .related-people-section .people-address .icons a:hover {
            color: orange;
        }

        .related-people-section .people-address .icons a .fa-phone {
            font-size: 22px;
            position: relative;
            top: -2px;
            left: 0px;
            display: inline-block;
            -webkit-transform: rotate(97deg);
            -moz-transform: rotate(97deg);
            -o-transform: rotate(97deg);
            -ms-transform: rotate(97deg);
            transform: rotate(97deg);
        }

@media (min-width: 768px) {
    .related-people-section .people-address .icons a .fa-phone {
        display: none;
    }
}

.related-people-section .people-address .contactInfo p a {
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

    .related-people-section .people-address .contactInfo p a:hover {
        color: orange;
    }

.related-people-section .people-address address {
    color: #777779;
}

.related-people-section .contact-details {
    color: #000;
}

    .related-people-section .contact-details .mobile span a {
        color: #000;
        -moz-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        -webkit-transition: all 0.3s ease;
        transition: all 0.3s ease;
    }

        .related-people-section .contact-details .mobile span a:hover {
            color: #4fc6de;
        }

.related-article-section {
    border-bottom: 1px solid #d0d0d0;
    margin-bottom: 25px;
}

    .related-article-section .row {
        margin-bottom: 30px;
        padding: 0px 15px;
    }

        .related-article-section .row h4.info-heading {
            color: #a93228;
            margin-bottom: 7px;
            font-size: 1em;
        }

@media (max-width: 767px) {
    .related-article-section {
        /* border-top: 1px solid #d0d0d0;*/
        /*padding-top: 25px;*/
    }
}

@media (min-width: 768px) {
    .related-article-section .row h4.info-heading {
        font-size: 0.933em;
    }
}

.related-article-section .row h4.info-data {
    color: black;
    font-size: 1em;
    margin-bottom: 7px;
    line-height: 1.1;
    font-weight: normal;
    font-family: "Proxima-Nova-Alt-SemiBold", sans-serif;
    text-transform: capitalize;
}

@media (min-width: 768px) {
    .related-article-section .row h4.info-data {
        font-size: 0.933em;
        margin-bottom: 0px;
    }
}

.related-article-section .row h4.info-data a {
    color: black;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

    .related-article-section .row h4.info-data a:hover {
        color: #4fc6de;
    }

.related-article-section .row p.info-date {
    color: #a7a7a7;
    margin-bottom: 0;
    font-size: 1em;
    margin-top: 5px;
}

@media (min-width: 768px) {
    .related-article-section .row p.info-date {
        font-size: 0.933em;
    }
}

.related-article-section h3.heading {
    color: #f7a833;
    margin-bottom: 15px;
}

.tags-section {
    border-bottom: 1px solid #d0d0d0;
    margin-bottom: 25px;
}

    .tags-section .row {
        color: #4d4d4d;
        font-weight: 600;
        margin-bottom: 15px;
    }

        .tags-section .row a.btn {
            color: #fff;
        }

            .tags-section .row a.btn:hover {
                color: #fff;
            }

        .tags-section .row span {
            -moz-transition: all 0.3s ease;
            -o-transition: all 0.3s ease;
            -webkit-transition: all 0.3s ease;
            transition: all 0.3s ease;
        }

            .tags-section .row span:hover {
                color: #4fc6de;
            }

    .tags-section h3.heading {
        color: #f7a833;
        margin-bottom: 15px;
    }
/* sahil 29 april to display border below related practice area */
.related-practice-area {
    margin-bottom: 25px;
    border-bottom: 1px solid #d0d0d0;
}

    .related-practice-area .row {
        font-weight: 600;
        margin-bottom: 15px;
    }

        .related-practice-area .row a {
            color: #4d4d4d;
            -moz-transition: all 0.3s ease;
            -o-transition: all 0.3s ease;
            -webkit-transition: all 0.3s ease;
            transition: all 0.3s ease;
        }

            .related-practice-area .row a:hover {
                color: #4fc6de;
            }

            .related-practice-area .row a.btn {
                color: #fff;
            }

                .related-practice-area .row a.btn:hover {
                    color: #fff;
                }

    .related-practice-area h3.heading {
        color: #f7a833;
        margin-bottom: 15px;
    }

    .related-practice-area.border {
        border-bottom: 1px solid #d0d0d0;
    }

@media (max-width: 767px) {
    .related-practice-area h3.heading {
        margin-top: 15px;
    }

    .related-practice-area.border {
        padding-bottom: 5px;
    }
}

.no-border {
    border-bottom: none;
}

.keyword-search.pd-top {
    margin-bottom: 25px;
    margin-top: 0px;
}

@media (min-width: 768px) {
    .keyword-search.pd-top {
        margin-top: -35px;
    }
}

.keyword-search.pd-top .btn.btn-submit {
    width: 100%;
}

.keyword-search.pd-top .mobileCheckbox {
    display: block;
}

@media (min-width: 768px) {
    .keyword-search.pd-top .mobileCheckbox {
        display: none;
    }
}

.modal .modal-content .modal-container {
    margin-top: 25px;
}

.popup-for-relatedoffice ul {
    list-style: none;
}

    .popup-for-relatedoffice ul li.local-officess-address {
        margin-bottom: 20px;
        float: left;
        padding: 0px 20px;
    }

    .popup-for-relatedoffice ul li.phone a {
        font-size: 24px;
    }

.primaryContent ul.overviewList {
    list-style-position: inside;
}

.daterangepicker .drp-buttons {
    text-align: left;
}

@media (max-width: 767px) {
    .daterangepicker .drp-buttons {
        height: 90px;
        display: table-cell !important;
        padding: 2px !important;
    }
}

#closer_videopopup {
    position: absolute;
    display: table-cell;
    right: 2%;
    top: 2%;
    font-size: 32px;
    text-align: center;
    vertical-align: middle;
    padding: auto;
    cursor: default;
    background: none;
    border: none;
    color: #ffffff;
    z-index: 100004;
    cursor: pointer;
}

#opct {
    position: fixed;
    z-index: 100000;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    filter: alpha(opacity=90);
    -moz-opacity: 0.90;
    opacity: 0.9;
}

#videCont {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 */
    padding-top: 25px;
    height: 0;
    margin: auto;
    max-width: 720px;
    height: 0;
    height: auto !important;
}

.video-section iframe {
    position: absolute;
    top: 25%;
    width: 100%;
    height: 200px;
    left: 0;
    width: 100%;
    opacity: 1 !important;
    z-index: 999999;
}

@media (min-width: 768px) {
    .video-section iframe {
        top: 15%;
        height: 345px;
    }
}

#video1 {
    cursor: pointer;
    cursor: hand;
}

#opct {
    background: #17212a;
}

.innerWrap .video-section iframe {
    display: none;
}

.calender-container {
    position: relative;
    background-color: #f1f1f1;
    /* height: 33px; */
    height: 2.25em;
    position: relative;
}

    .calender-container input {
        position: absolute;
        z-index: 1;
        background: transparent;
        color: #333;
        padding-top: 0;
        padding-bottom: 0;
    }

    .calender-container .fa-calendar {
        position: absolute;
        right: 5px;
        top: 10px;
    }

.primaryContent.blog-page-content-section .filterGroup.clearfix .row {
    margin-right: 0px;
}

.infoBlock.infoBlock-news-detail.infoblock-news-heading.blog-detail-heading h1.info-data {
    margin-bottom: 10px;
}

.pageContent .primaryContent.blog-page-content-section p {
    padding-top: 15px;
}

@media (min-width: 768px) {
    .pageContent .primaryContent.blog-page-content-section p {
        padding-top: 0px;
    }
}

.pageContent .primaryContent.blog-page-content-section {
    border-bottom: 1px solid #e2e2e2;
    margin-bottom: 15px;
}

@media (min-width: 768px) {
    .pageContent .primaryContent.blog-page-content-section {
        border-bottom: 0px solid #e2e2e2;
        margin-bottom: 0px;
    }
}

.pageContent-location .card address span.faxDesktop {
    color: #777779;
}

    .pageContent-location .card address span.faxDesktop:hover {
        color: #777779;
    }

.infoBlock.infoBlock-news-detail.news_bottom h1.info-data {
    margin-bottom: 10px;
}

@media (min-width: 768px) {
    .comment-text .primaryContent-h4 {
        margin-top: 20px;
    }
}

@media (min-width: 1170px) {
    .comment-text .primaryContent-h4 {
        margin-top: 10px;
    }
}

.briefcase a {
    font-size: 14px;
}

.margin-fix-news-detail .infoBlock-news-detail .info-date {
    padding-bottom: 10px;
}

@media (min-width: 768px) {
    .margin-fix-news-detail .infoBlock-news-detail .info-date {
        margin-top: 12px;
        /*padding-bottom: 35px; */
    }
}

.popular-blog {
    cursor: pointer;
}

.insight-top-gap {
    margin-top: 13px;
}

@media (min-width: 768px) {
    .insight-top-gap {
        margin-top: 0;
    }
}

.prof_list_new .edyTabs .primaryContent .col-sm-6 .videoCarousel .owl-stage-outer .owl-item .caption .readMoreBtn {
    color: #f7a833;
}

    .prof_list_new .edyTabs .primaryContent .col-sm-6 .videoCarousel .owl-stage-outer .owl-item .caption .readMoreBtn:hover {
        color: #4fc6de;
    }

.isPracticeDetail.page.practise_outer .tabsContent .container .filterGroup .formGroup {
    padding-right: 15px;
}

@media (min-width: 768px) {
    .isPracticeDetail.page.practise_outer .tabsContent .container .filterGroup .formGroup {
        padding-right: 0px;
    }
}

@media (max-width: 767px) {
    .isPeople.twoColumnLayout .practice-main-content .bio-partner-info {
        display: block !important;
    }
}

.isPeople.govt_relations .margin-fix-news-detail .horizon-line.one hr {
    display: none;
}

.row-margin-law-student-detail {
    margin-top: 30px;
}

.testimonial-heading-yellow {
    color: #f7a833;
}

.secondaryContent .quick-heading {
    font-size: x-large;
    margin-bottom: 0.7em;
}

.secondaryContent .read-more-law-student-detail {
    font-weight: 600;
    color: #363a49;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

    .secondaryContent .read-more-law-student-detail:hover {
        color: #4fc6de;
    }

.secondaryContent .quick-links-law-student-detail .quick-heading {
    font-size: x-large;
}

.secondaryContent .quick-links-law-student-detail li {
    border-bottom: 0;
    margin-bottom: 5px;
}

.secondaryContent .last-child-bottom-border li:last-child {
    border-bottom: 1px solid #b0b8bd;
}

.secondaryContent .video-text-card .video-text-card-details .video-detail-heading {
    color: #363a49;
    margin-top: 5px;
    width: 100%;
    float: left;
    text-transform: uppercase;
}

.secondaryContent .video-text-card .video-text-card-details .time {
    font-family: proxima_novasemibold;
    font-size: 1em;
    font-weight: 100;
    color: #777779;
    width: 100%;
    float: left;
}

.culture-gap h4 {
    margin-bottom: 2%;
}

.culture-gap li {
    border-bottom: 0 !important;
}

    .culture-gap li .contactInfo p {
        color: #4fc6df;
    }

    .culture-gap li .caption li {
        width: auto;
    }

.mobile_block {
    display: block;
}

@media (min-width: 768px) {
    .mobile_block {
        display: none;
    }
}

.mobile_block .video-text-card {
    margin-top: 2%;
}

.mobile_block .col-xs-12 h3 {
    font-weight: bold;
}

.primaryContent .mobile_block li {
    border-bottom: 0;
    margin-bottom: 0;
}

    .primaryContent .mobile_block li:last-child {
        display: none;
    }

.primaryContent .mobile_block .quick-heading {
    font-size: 26px;
    margin-bottom: 10px;
}

.pageContent .desktop_hide {
    display: none;
}

@media (min-width: 768px) {
    .pageContent .desktop_hide {
        display: block;
        width: 100%;
    }
}

.top_border {
    border-top: 1px solid #ccc;
    margin-top: 2%;
}

@media (min-width: 768px) {
    .top_border {
        border: 0;
    }
}

.row-margin-law-student-detail .news-heading {
    color: #a93228;
    font-size: 1.3em;
    line-height: 1.1;
    font-weight: normal;
    font-family: "Proxima-Nova-Alt-SemiBold", sans-serif;
    margin-bottom: 0px;
}

@media (min-width: 768px) {
    .row-margin-law-student-detail .news-heading {
        font-size: 1.067em;
    }
}

.blog-profeshion .row {
    margin-bottom: 17px;
}

@media (min-width: 992px) {
    .blog-profeshion .row {
        margin-bottom: 0px;
    }
}

@media (min-width: 768px) {
    .blog-profeshion > div:last-child .row {
        margin-bottom: 0px;
    }
}

@media (max-width: 767px) {
    .info-block-date-bar {
        margin-top: 0;
    }
}

.media-image img {
    width: 100%;
}

.secondaryContent.location_detail .video-text-card-details {
    padding-top: 7px;
}

.media-player {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}

    .media-player .circle {
        position: absolute;
        background-image: url("../images/icons/arrow-2.png");
        background-repeat: no-repeat;
        bottom: 0;
        color: #fff;
        left: 0;
        height: 48px;
        margin: auto;
        cursor: pointer;
        right: 0;
        top: -18%;
        background-size: 40px 40px;
        width: 48px;
    }

video-text-card .media-image {
    position: relative;
}

.media-image[data-toggle="modal"] {
    position: relative;
    pointer-events: none;
}

@media (min-width: 768px) {
    .secondaryContent .innerWrap .row .video-text-card .media-image img {
        margin-bottom: 1.2em !important;
    }

    .secondaryContent .innerWrap .row .video-text-card .media-image .circle img {
        margin-bottom: 0em !important;
    }
}

.news-gap .col-md-12 .media-image {
    margin-bottom: 1em;
    pointer-events: none;
}

.media-image .circle:first-child {
    pointer-events: all;
    background-image: url("../images/icons/arrow-2.png");
    background-repeat: no-repeat;
    color: #fff;
    width: 60px;
    height: 60px;
    background-size: 60px;
    cursor: pointer;
    position: absolute;
    margin: 0 auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background-color: #9e9999;
    border-radius: 50%;
}

.secondaryContent .media-image .circle:first-child {
    pointer-events: all;
    background-image: url("../images/icons/arrow-2.png");
    background-repeat: no-repeat;
    color: #fff;
    width: 40px;
    height: 40px;
    background-size: 40px;
    cursor: pointer;
    position: absolute;
    margin: 0 auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background-color: #9e9999;
    border-radius: 50%;
}

@media (max-width: 768px) {
    .secondaryContent .media-image .circle:first-child {
        width: 60px;
        height: 60px;
        background-size: 60px;
    }
}

@media (min-width: 768px) {
    .media-player .circle {
        background-size: 35px 35px;
        /*width: 35px;
        height: 35px;*/

        left: 43%;
        right: auto;
        position: absolute;
        top: 35%;
        margin: 0 auto;
        /*margin-top: -17.5px;
        margin-left: -17.5px;*/
    }
}

@media only screen and (max-width: 767px) {
    .media-player .circle {
        background-size: 30px 30px;
        width: 30px;
        height: 30px;
        top: 50%;
        left: 50%;
        margin-top: -15px;
        margin-left: -15px;
    }
}

.law_detail .primaryContent {
    width: 100%;
    float: left;
}

@media (min-width: 768px) {
    .law_detail .primaryContent {
        width: 62%;
    }
}

.law_detail .primaryContent .innerWrap li {
    margin-bottom: 0;
}

.law_detail .primaryContent .infoBlock .info-date {
    padding-bottom: 15px;
}

.law_detail .btn.btn-submit.fullWidth {
    width: 200px;
}

.law_detail .secondaryContent .innerWrap li {
    border-bottom: 1px solid #d0d0d0;
}

@media (min-width: 768px) {
    .law_detail .secondaryContent .innerWrap li {
        border-bottom: 0px solid #d0d0d0;
    }
}

.law_detail .news-subscription-btn a {
    background: #ee832e;
    font-weight: 600;
    font-size: 18px;
    text-transform: uppercase;
}

.law_detail .innerWrap .video-text-card {
    float: left;
}

.secondaryContent ul.innerWrap.border-hide li {
    width: 100%;
}

.primaryContent .blog-filter {
    margin-bottom: 10px;
}

.primaryContent .blog-articles {
    margin-top: 0px;
}

    .primaryContent .blog-articles .formGroup {
        margin-bottom: -10px;
    }

.primaryContent .blog-sections {
    margin-top: 0px;
}

.innerWrap.quick-links-law-student-detail.desktop_hide li h3 a {
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

    .innerWrap.quick-links-law-student-detail.desktop_hide li h3 a:hover {
        color: #f7a833;
    }

.law_detail .secondaryContent .eventsInterest {
    display: inline-block;
}

.law_detail .innerWrap.culture-gap.mobile_block .block p {
    margin: 0;
    float: left;
}

.law_detail .innerWrap.culture-gap.mobile_block .block a strong {
    color: #000;
}

.law_detail .law_slider {
    padding-left: 0;
}

    .law_detail .law_slider .testimonial-heading-yellow {
        position: relative;
        top: 20px;
        font-size: 22px;
        font-family: "Proxima-Nova-Alt-semiBold", sans-serif;
    }

    .law_detail .law_slider .owl-carousel .owl-nav.disabled {
        display: block;
    }

        .law_detail .law_slider .owl-carousel .owl-nav.disabled .owl-prev {
            position: absolute;
            left: 10px;
            background-image: url(../images/icons/left_insight.png);
            background-repeat: no-repeat;
            background-size: 16px 16px;
            color: transparent;
            width: 18px;
            height: 30px;
            top: 50px;
        }

@media only screen and (max-width: 380px) and (min-width: 100px) {
    .law_detail .law_slider .owl-carousel .owl-nav.disabled .owl-prev {
        top: 5.5rem;
    }
}

@media only screen and (max-width: 480px) and (min-width: 381px) {
    .law_detail .law_slider .owl-carousel .owl-nav.disabled .owl-prev {
        top: 6rem;
    }
}

@media only screen and (max-width: 768px) and (min-width: 481px) {
    .law_detail .law_slider .owl-carousel .owl-nav.disabled .owl-prev {
        top: 10rem;
    }
}

.law_detail .law_slider .owl-carousel .owl-nav.disabled .owl-next {
    position: absolute;
    background-image: url(../images/icons/right_insight.png);
    background-repeat: no-repeat;
    background-size: 15px 16px;
    color: transparent;
    right: 8px;
    width: 18px;
    height: 30px;
    top: 50px;
}

@media only screen and (max-width: 380px) and (min-width: 100px) {
    .law_detail .law_slider .owl-carousel .owl-nav.disabled .owl-next {
        top: 5.5rem;
    }
}

@media only screen and (max-width: 480px) and (min-width: 381px) {
    .law_detail .law_slider .owl-carousel .owl-nav.disabled .owl-next {
        top: 6rem;
    }
}

@media only screen and (max-width: 768px) and (min-width: 481px) {
    .law_detail .law_slider .owl-carousel .owl-nav.disabled .owl-next {
        top: 10rem;
    }
}

.law_detail .law_slider .title {
    margin-top: 30px;
}

    .law_detail .law_slider .title h3 {
        margin-bottom: 0px;
    }

        .law_detail .law_slider .title h3 a {
            color: #121728;
            -moz-transition: all 0.3s ease;
            -o-transition: all 0.3s ease;
            -webkit-transition: all 0.3s ease;
            transition: all 0.3s ease;
        }

            .law_detail .law_slider .title h3 a:hover {
                color: #4fc6de;
            }

    .law_detail .law_slider .title p {
        margin-top: 0px;
    }

        .law_detail .law_slider .title p a {
            color: rgba(0, 0, 0, 0.7);
        }

            .law_detail .law_slider .title p a:hover {
                color: #4fc6de;
            }

.law_detail .primaryContent .law-heading.row {
    margin-top: 0px;
}

    .law_detail .primaryContent .law-heading.row p {
        margin-top: 0px;
    }

.law_detail .primaryContent .quick-links-law-student-detail li {
    line-height: 1;
    padding-bottom: 0px;
}

@media (min-width: 768px) {
    .law_detail .infoBanner .infoBox.first, .law_detail .infoBanner .infoBox.second, .law_detail .infoBanner .infoBox.third {
        width: 33.33%;
    }
}

@media only screen and (max-width: 1024px) and (min-width: 768px) {
    .law_detail .infoBanner .infoBox.third.new {
        width: 43%;
    }
}

.law_detail .table-cell .block p.aos-init {
    border-bottom: 1px solid #bdbdbd;
    padding-bottom: 20px;
}

@media (min-width: 768px) {
    .law_detail .table-cell .block p.aos-init {
        border-bottom: 0px solid #bdbdbd;
        padding-bottom: 0px;
    }
}

.law_detail .primaryContent {
    padding-top: 0px;
}

.law_detail .infoBanner .contentMiddle .block:last-child .inlineMenu {
    margin: -10px 0 0 0;
}

@media (min-width: 768px) {
    .law_detail .infoBanner .contentMiddle .block:last-child .inlineMenu {
        margin: 20px 0 0 0;
    }
}

.law_detail .right_law {
    display: none;
}

@media (min-width: 768px) {
    .law_detail .right_law {
        display: block;
    }
}

.mobile_block.innerWrap.quick-links-law-student-detail {
    float: left;
    width: 100%;
    margin-bottom: 20px;
    margin-top: 10px;
    border-bottom: 1px solid #bdbdbd;
    border-top: 1px solid #bdbdbd;
    padding: 20px 0px;
}

@media (min-width: 768px) {
    .mobile_block.innerWrap.quick-links-law-student-detail {
        border-bottom: 0px solid #bdbdbd;
        border-top: 0px solid #bdbdbd;
        padding: 0px 0px;
    }
}

.innerWrap.culture-gap.mobile_block {
    float: left;
    margin-bottom: 15px;
    margin-top: 0px;
}

    .innerWrap.culture-gap.mobile_block .block.aboutus {
        margin-top: -25px;
    }

.row.row-margin-law-student-detail .news-heading {
    float: left;
    margin-bottom: 10px;
}

@media (min-width: 768px) {
    .row.row-margin-law-student-detail .news-heading {
        margin-bottom: 0px;
    }
}

.law_detail .row.row-margin-law-student-detail .innerWrap p.info-date {
    margin: 0;
    float: left;
    width: 100%;
}

.law_detail .row.row-margin-law-student-detail .innerWrap .info-data {
    margin-bottom: 0px;
    float: left;
}

.law_detail .pageContent .secondaryContent {
    width: 100%;
    float: left;
}

@media (min-width: 768px) {
    .law_detail .pageContent .secondaryContent {
        width: 34%;
        float: left;
        margin: 0 0 0 4%;
    }
}

.law_detail .innerWrap.culture-gap.mobile_block li .block .yellow {
    float: left;
    width: 100%;
}

@supports (-webkit-overflow-scrolling: touch) {
    .quick-links-law-student-detail .quick-heading {
        margin-bottom: 3%;
    }

    .law_detail .innerWrap.culture-gap.mobile_block .block a {
        float: left;
        width: 100%;
    }
}

.video-popup.modal .modal-content {
    padding: 0px 13px 10px 13px;
}

    .video-popup.modal .modal-content .close {
        position: relative;
        top: -4px;
        right: -26px;
        background-color: #131829;
        width: 23px;
        height: 23px;
        padding: 0px;
        font-size: 20px;
    }

        .video-popup.modal .modal-content .close:hover {
            color: #fff;
        }

.law_detail .primaryContent .mobile_block.quick-links-law-student-detail li {
    padding-bottom: 0px;
}

@media (min-width: 768px) {
    .law_detail .primaryContent .mobile_block.quick-links-law-student-detail li {
        padding-bottom: 7px;
    }
}

.law_detail .innerWrap.culture-gap.mobile_block li .block.aboutus .yellow {
    margin-top: 15px;
}

.law_detail .primaryContent .culture-gap li {
    list-style-image: none;
}

@media (min-width: 768px) {
    .law_detail .primaryContent .culture-gap li {
        list-style-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVR42mNkYAAAAAYAAjCB0C8AAAAASUVORK5CYII=);
    }
}

.innerWrap.culture-gap.desktop_hide h3.secondaryContent-h4.yellow {
    text-transform: uppercase;
}

.law_border {
    float: left;
    border-bottom: 1px solid #ccc;
    margin-bottom: 7%;
    padding-bottom: 5%;
}

.law_detail .container .quick-links-law-student-detail li {
    display: inline-block;
    line-height: 1.5;
    margin-top: 16px;
}

@media (min-width: 768px) {
    .law_detail .container .quick-links-law-student-detail li {
        display: inline-block;
        line-height: 1;
        margin-top: 3px;
    }
}

.read-more-work-landing {
    font-weight: 600;
    color: #363a49;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

    .read-more-work-landing:hover {
        color: #4fc6de;
    }

.law_detail .container .quick-links-law-student-detail li.law-student-read-more-section {
    display: none;
}

@media (min-width: 768px) {
    .law_detail .container .quick-links-law-student-detail li.law-student-read-more-section {
        display: block;
    }
}

.primaryContent .mobile_block.culture-gap.law_border li:last-child {
    display: block;
}

.secondaryContent .innerWrap-Tags-list ul.ul-location {
    display: block;
}

    .secondaryContent .innerWrap-Tags-list ul.ul-location li.location-icon > a {
        color: #4fc6de;
    }

        .secondaryContent .innerWrap-Tags-list ul.ul-location li.location-icon > a:hover {
            color: #4fc6de;
        }

@media (min-width: 1170px) {
    .secondaryContent .innerWrap-Tags-list ul.ul-location li.location-icon > a:hover {
        color: orange;
    }
}

.secondaryContent .innerWrap-Tags-list ul.ul-location li.location-icon.phone {
    display: none;
}

.secondaryContent .innerWrap-Tags-list ul.ul-location li.location-icon {
    margin-left: 0px;
    margin-top: 5%;
}

    .secondaryContent .innerWrap-Tags-list ul.ul-location li.location-icon:first-child {
        display: block;
        margin-right: 8px;
        width: 100%;
        margin-top: 14px;
    }

@media (min-width: 1170px) {
    .secondaryContent .innerWrap-Tags-list ul.ul-location li.location-icon:first-child {
        display: none;
        width: auto;
        margin-top: 0px;
    }
}

.secondaryContent .innerWrap-Tags-list ul.ul-location li.location-icon:last-child {
    display: none;
}

.vCard address span.address-code {
    display: none;
    font-weight: 100;
}

@media (min-width: 1170px) {
    .vCard address span.address-code {
        display: block;
    }
}

.event-detail-related-people {
    display: none;
}

@media (min-width: 1170px) {
    .event-detail-related-people {
        display: block;
    }
}

.event-detail-related-people .news-landing-card .caption .contactInfo p a:hover {
    color: #f7a833;
}

.event-detail-speaker hr.event-block-hr-line {
    display: none;
}

@media (min-width: 1170px) {
    .event-detail-speaker hr.event-block-hr-line {
        margin-top: 0px;
        display: block;
    }
}

.event-detail-speaker-desktop {
    display: none;
}

@media (min-width: 1170px) {
    .event-detail-speaker-desktop {
        display: block;
    }
}

.event-detail-speaker-mobile {
    display: block;
}

    .event-detail-speaker-mobile .primaryContent-h4 {
        margin-bottom: 0px;
        color: #f7a833;
    }

    .event-detail-speaker-mobile .vCard.news-landing-card {
        padding: 15px 0px 0px 0px;
    }

@media (min-width: 1170px) {
    .event-detail-speaker-mobile {
        display: none;
    }
}

.btn.event-detail-halfwidth {
    width: 150px;
}

@media (min-width: 1170px) {
    .btn.event-detail-halfwidth {
        width: 100%;
    }
}

.legal-updates-timing.location {
    margin-bottom: 15px;
}

.date-location-block {
    padding-left: 0px !important;
    margin-top: -22px;
}

@media (min-width:1114px) {
    .legal-updates-timing.location {
        margin-bottom: 17px !important;
    }

    .date-location-block .icons-block {
        width: 43%;
        float: right;
        margin-bottom: 0px !important;
        margin-right: 10px;
    }

    .date-location-block .register-block p {
        margin-top: 5%;
    }

    .date-location-block .register-block {
        width: 55%;
        /*margin-top: 20px;*/
        /* margin-bottom: 0px!important; */
    }

    .date-location-block .location {
        width: 55%;
        /* overflow: auto;*/
    }

    .date-location-block .location-block {
        float: right !important;
        width: 43%;
    }
}

@media (min-width:768px) and (max-width:1114px) {
    .date-location-block {
        padding-left: 0px !important;
        margin-bottom: -14px !important;
        margin-top: -22px;
    }

        .date-location-block .register-block p {
            margin-top: 15%;
        }

        .date-location-block .location {
            width: 55% !important;
        }

        .date-location-block .location-block {
            width: 42% !important;
            float: left !important;
        }

        .date-location-block .register-block {
            width: 46% !important;
            /*margin-top: 0px!important; 
		margin-bottom: 0px!important;*/
        }

        .date-location-block .icons-block {
            width: 43% !important;
            float: right;
            /*margin-top: 0px!important;*/
            margin-bottom: 0px !important;
        }
}

.event-detail-desktop-section {
    display: none;
}

@media (min-width: 768px) {
    .event-detail-desktop-section {
        display: block;
        float: left;
        width: 100%;
        /*margin-top: 10px;*/
        margin-bottom: 20px;
    }
}

.event-detail-desktop-section .inlineMenu ul {
    margin: 0px 0px 10px 0px;
}

.event-detail-mobile-section {
    display: block;
}

    .event-detail-mobile-section .event-detail-break-line {
        display: block;
        height: 1px;
        border: 0;
        border-top: 1px solid #b0b8bd;
        margin: 2.3em 20px;
        padding: 0;
    }

@media (min-width: 768px) {
    .event-detail-mobile-section {
        display: none;
    }
}

.event-detail-mobile-section nav.inlineMenu ul {
    float: left;
}

.inlineMenu.inline-menu-icon.event-detail-inline {
    float: right;
}

    .inlineMenu.inline-menu-icon.event-detail-inline ul {
        padding: 0px 0px;
        text-align: left;
    }

@media (max-width: 767px) {
    .firm-detail .inlineMenu.inline-menu-icon.event-detail-inline ul {
        float: left;
        margin-bottom: 10px;
        margin-top: 10px;
        border-top: 1px solid #c7c7c7;
        border-bottom: 1px solid #c7c7c7;
        padding-top: 15px;
        padding-bottom: 15px;
        width: 100%;
    }
}
/*btlaw-1516*/
.firm-detail-heading ul {
    margin-bottom: 35px;
}

@media (max-width: 767px) {
    .inlineMenu.inline-menu-icon.event-detail-inline ul {
        float: left;
        margin-bottom: 5px;
        margin-top: 10px;
    }
}

@media (min-width: 1170px) {
    .inlineMenu.inline-menu-icon.event-detail-inline ul {
        text-align: left;
    }

        .inlineMenu.inline-menu-icon.event-detail-inline ul li a:hover {
            color: #f7a833;
        }
}

@media (max-width: 767px) {
    .inlineMenu.inline-menu-icon.event-detail-inline ul li {
        padding-bottom: 0;
        float: left;
        line-height: 1;
    }

        .inlineMenu.inline-menu-icon.event-detail-inline ul li a {
            float: left;
        }

            .inlineMenu.inline-menu-icon.event-detail-inline ul li a svg {
                height: auto;
                line-height: 1;
                float: left;
            }

        .inlineMenu.inline-menu-icon.event-detail-inline ul li.briefcase {
            margin-top: 11px;
        }
}

.innerWrap-tag-fix-event-detail {
    margin-bottom: 7em;
    margin-top: 12.5em;
}

.border-hr {
    display: block;
    height: 0.5px;
    border: 0;
    border-top: 1px solid #d0d0d0;
    margin: 1.3em 0;
    padding: 0;
}

.info-block-event-detail .info-heading-small {
    color: #a93228;
    font-size: 0.8em;
}

.info-block-event-detail .info-data {
    font-size: 25px;
}

.event-detail-only-location-card .caption {
    padding-left: 15px;
    padding-top: 0px;
}

    .event-detail-only-location-card .caption address p {
        color: #4fc6df;
        font-weight: 600;
    }

.innerWrap-Tags.innerWrap-Tags-fix.area_gap li.last-news-tag {
    margin-bottom: 30px;
}

.innerWrap-Tags-list.innerWrap-Tags-list-fix.border-no.event {
    padding-top: 0px;
}

.event-detail .back-heading-news-detail a:hover {
    color: #f7a833;
}

.event-detail .secondaryContent .innerWrap-Tags {
    float: left;
}

.event-detail-speaker .news-landing-card .caption {
    padding: 0px;
}

    .event-detail-speaker .news-landing-card .caption .icons a {
        -moz-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        -webkit-transition: all 0.3s ease;
        transition: all 0.3s ease;
        font-size: 28px;
    }

        .event-detail-speaker .news-landing-card .caption .icons a:hover {
            color: orange;
        }

.secondaryContent .modal .innerWrap-Tags-list-fix {
    padding-top: 0px;
    padding-bottom: 0px;
    border-top: 0px solid #d0d0d0;
}

.secondaryContent .modal .innerWrap li.local-officess-address {
    width: 100%;
    padding: 0px 20px;
    margin: 10px 0px;
}

@media (min-width: 768px) {
    .secondaryContent .modal .innerWrap li.local-officess-address {
        width: 50%;
    }
}

@media (min-width: 1170px) {
    .secondaryContent .modal .innerWrap li.local-officess-address {
        width: 33.33%;
    }
}

.secondaryContent .modal .innerWrap li.local-officess-address .ul-location li {
    display: block;
}

    .secondaryContent .modal .innerWrap li.local-officess-address .ul-location li:last-child {
        display: block;
    }

.secondaryContent .modal .innerWrap li.local-officess-address .block .row {
    margin: 0;
}

    .secondaryContent .modal .innerWrap li.local-officess-address .block .row figure img {
        float: left;
    }

.secondaryContent .modal .innerWrap-Tags-list ul.ul-location li.location-icon:first-child {
    display: inline-block;
}
/* sahil april 29: to display hrg in mobile device */
.primaryContent .row.event-detail-speaker {
    margin-top: 0px;
}

    .primaryContent .row.event-detail-speaker .col-md-12 p {
        font-size: 1.067em;
    }

@media screen and (min-device-width: 320px) and (max-device-width: 1023px) {
    .primaryContent .row.event-detail-speaker {
        display: grid;
    }
}

@media screen and (min-device-width: 768px) and (max-device-width: 1170px) {
    .primaryContent .row.event-detail-speaker p:nth-child(1) {
        /*border-top: 1px solid #b0b8bd;
    padding-top: 10px; */
    }

    margin-fix-news-detail .legal-updates-timing {
        margin-bottom: 15px;
    }
}

.event-detail-speaker-desktop .event-detail-speaker .col-md-4 {
    min-height: 70px;
}

.infoBlock-blog-detail {
    text-transform: capitalize;
    color: #777779;
    margin-top: -2px;
    font-size: 15px;
}

    .infoBlock-blog-detail span {
        color: #4fc6df;
    }

.innerWrap-Tags-primary-block {
    list-style: none;
    display: flex;
    display: -webkit-flex;
}

    .innerWrap-Tags-primary-block li {
        padding-right: 30px;
        color: #4d4d4d;
        font-weight: 600;
    }

.info-button {
    background-color: rgba(56, 133, 221, 0.71);
    padding: 1em;
    color: black;
    cursor: pointer;
    max-height: 8em;
    padding-top: 6%;
    padding-bottom: 6%;
    padding-left: 5%;
    padding-right: 5%;
    min-height: 7.7em;
}

@media only screen and (max-width: 1366px) and (min-width: 768px) {
    .info-button h3 {
        margin: 3px 0px !important;
    }
}

.info-button h3 {
    color: white;
    margin: 3px 0px !important;
}

@media only screen and (max-width: 990px) and (min-width: 768px) {
    .info-button {
        font-size: 0.6em
    }
}

.info-button h3 {
    color: white;
}

.profile-photo-comments {
    width: 70px;
    height: 70px;
    border-radius: 50%;
}

.form-control-comments {
    background-color: #ffffff;
    border-top: 0.4px solid #d0d0d0;
}

.infoblock-news-heading.blog-detail-heading {
    margin-top: 0;
}

.primaryContent .infoBlock.blog-detail-heading .info-data {
    text-transform: initial;
}

@media (min-width: 768px) {
    nav.inline-menu-icon.blog-detail-social-icon ul {
        margin-top: -25px;
    }
}

@media (min-width: 768px) {
    .primaryContent .row.blog-content-up {
        margin-top: 0px;
    }
}

.primaryContent .row.blog-content h4.red {
    color: #a93228;
}

.bottom_gap .vCard.blog-detail-card ul {
    display: block;
}

    .bottom_gap .vCard.blog-detail-card ul .fa-phone {
        display: none;
    }

.secondaryContent.bottom_gap .float_left {
    float: left;
}

@media (min-width: 768px) {
    .secondaryContent.bottom_gap .float_left {
        float: left;
    }
}

.innerWrap-Tags.innerWrap-tag-fix-event-detail.popular-tags {
    margin-top: 30px;
}

.last-news-tag.last--news-tag-sec {
    padding-bottom: 15px;
}

.secondaryContent-h4.yellow.blog-details-head.blog-detail-related {
    margin-bottom: 20px;
}

.innerWrap.blog-subscribe.blog-subscribe-detail {
    margin-top: 0px;
}

.btn.blog-detail-save {
    width: 135px;
}

.news-landing-card .caption {
    padding: 0;
}

    .news-landing-card .caption .icons {
        font-size: 28px;
    }

        .news-landing-card .caption .icons a {
            -moz-transition: all 0.3s ease;
            -o-transition: all 0.3s ease;
            -webkit-transition: all 0.3s ease;
            transition: all 0.3s ease;
        }

            .news-landing-card .caption .icons a:hover {
                color: orange;
            }

            .news-landing-card .caption .icons a .fa-phone {
                font-size: 22px;
                position: relative;
                top: -2px;
                left: 0px;
            }

.primaryContent nav.inlineMenu {
    text-align: left;
}

@media (min-width: 768px) {
    .primaryContent nav.inlineMenu {
        text-align: right;
    }
}

.primaryContent nav.inlineMenu ul li a {
    font-size: 35px;
}

@media (min-width: 768px) {
    .primaryContent nav.inlineMenu ul li a {
        font-size: 20px;
    }
}

.innerWrap-Tags-primary-block.blog-detail-tags-tab {
    padding-left: 0px;
}

    .innerWrap-Tags-primary-block.blog-detail-tags-tab li a {
        transition: all 0.3s ease;
    }

        .innerWrap-Tags-primary-block.blog-detail-tags-tab li a:hover {
            color: #4fc6de;
        }

.validate-form {
    font-size: 16px;
    font-weight: 500;
}

    .validate-form .error {
        color: red;
    }

    .validate-form .success {
        color: green;
    }

    .validate-form .inactive {
        display: none;
    }

.blog-profeshion #myButton img {
    position: relative;
    right: 10px;
}

.blog-profeshion strong {
    position: relative;
    right: 15px;
    top: -9px;
}

.blog-profeshion .col-md-10 {
    padding-right: 0;
    float: right;
    text-align: right;
}

.form-group .leave-comment h4 {
    font-size: 1.067em;
}

.blog-authors .blog-content .col-md-12 .primaryContent-h4 {
    margin-top: 20px;
}

.nav-tabs {
    border-bottom: 1px solid #ddd;
}

    .nav-tabs .nav-tabs > li {
        float: left;
        margin-bottom: -1px;
    }

.nav {
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
    display: flex;
    display: -webkit-flex;
    display: -moz-flex;
}

    .nav li {
        position: relative;
        display: block;
        padding: 10px;
    }

        .nav li a {
            color: black;
            font-weight: 600;
        }

    .nav .active {
        background: #f1f1f1;
    }

.nav-justified {
    width: 100%;
}

.cross-svg-small-global {
    height: 16px;
    width: 16px;
    margin-left: 0px;
    cursor: pointer;
    display: block;
    float: left;
    color: #b0b8bd;
}

.search-section {
    margin-bottom: 45px;
}

    .search-section .filter-main-search {
        float: left;
        padding-left: 15px;
        padding-right: 15px;
    }

@media (min-width: 768px) {
    .search-section .filter-main-search {
        width: 14%;
    }
}

@media (min-width: 1170px) {
    .search-section .filter-main-search {
        width: 12%;
    }
}

.search-section .filter-main-search .filter-name {
    float: left;
}

.search-section .filter-main-search .cross-svg-small {
    height: 16px;
    width: 16px;
    margin-left: 10px;
    cursor: pointer;
    display: block;
    float: left;
    color: #b0b8bd;
}

.search-section .filter-main-search.remove-section {
    display: none;
}

.search-section .cross-svg-large {
    position: absolute;
    height: 63px;
    width: 63px;
    border-radius: 50%;
    padding: 15px 15px 15px 15px;
    cursor: pointer;
    margin-left: 91%;
    display: block;
}

@media (min-width: 768px) {
    .search-section .cross-svg-large {
        margin-left: 86%;
    }
}

@media (min-width: 1170px) {
    .search-section .cross-svg-large {
        margin-left: 91%;
    }
}

.large-search {
    min-height: 60px;
    font-size: 2em;
}

.primaryContent-fix-search-result {
    width: 75%;
    padding-right: 4.4em;
}

    .primaryContent-fix-search-result .p-as-detail {
        line-height: 1.4em;
        font-size: 14px;
    }

.page-content-search-result {
    padding: 4.4em 0 4em;
    width: 88%;
    margin: 8% 6%;
}

@media (max-width: 1024px) {
    .page-content-search-result .search_box .primaryContent-fix-search-result #all li .infoBlock.social-result > .col-lg-6 {
        width: 100%;
    }
}

.secondary-column {
    border-left: 1px solid #b0b8bd;
    padding-left: 3em;
    min-height: 930px;
}

    .secondary-column .filters-margin {
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .secondary-column .heading-medium-yellow {
        color: #ee832e;
        font-size: 1.5em;
        line-height: 1.1;
        font-weight: normal;
    }

    .secondary-column .heading-small-yellow {
        color: #ee832e;
        line-height: 1.1;
        font-weight: normal;
    }

    .secondary-column .filter-category-search {
        list-style: none;
    }

        .secondary-column .filter-category-search li {
            margin-top: 10px;
            clear: left;
        }

            .secondary-column .filter-category-search li input[type='checkbox'] {
                float: left;
                height: 1.25em;
                width: 25px;
                margin: 0px;
                transition: height 300ms cubic-bezier(0.4, 0, 0.23, 1);
            }

                .secondary-column .filter-category-search li input[type='checkbox']:checked ~ span {
                    color: #a93228;
                    font-weight: bold;
                    transition: all 300ms cubic-bezier(0.4, 0, 0.23, 1);
                }

            .secondary-column .filter-category-search li span {
                color: black;
                float: left;
            }

.search_box .primaryContent ul {
    padding-left: 0px;
}

.search_box .col-md-7 .vCard .caption address {
    margin-top: 3%;
}

.search_box .col-md-7 .vCard .caption .contactInfo {
    margin-top: 3%;
}

    .search_box .col-md-7 .vCard .caption .contactInfo p {
        color: #000;
    }

.search_box .vCard.inline {
    margin-bottom: 0;
}

.search_box .primaryContent .innerWrap li {
    width: auto;
    line-height: 0;
}

.search_box .people_list li {
    border: 0;
}

.search_box .innerWrap-location-detail li:last-child {
    border: 0;
}

.search_box .secondary-column .filter-category-search li input[type='checkbox'] {
    margin-right: 6%;
    width: 18px;
    -webkit-appearance: none;
}

.search_box .nav-tabs {
    display: none;
}

@media (min-width: 768px) {
    .search_box .nav-tabs {
        display: flex;
    }
}

.search_box .locationDropdown {
    font-size: 20px;
    color: #000;
    padding: 10px 0;
}

.search_result .primaryContent-fix-search-result {
    width: 100%;
    padding-right: 16px;
    padding-top: 0px;
    border-right: 0;
}

@media (min-width: 768px) {
    .search_result .primaryContent-fix-search-result {
        width: 73%;
        padding-right: 4.4em;
        padding-top: 20px;
        border-right: 1px solid #b0b8bd;
    }
}

.search_result .secondary-column {
    width: 100%;
    border-left: 0;
}

@media (min-width: 768px) {
    .search_result .secondary-column {
        width: 26%;
    }
}

.search_result .filter-main-search {
    width: 50%;
    margin-bottom: 5px;
}

@media only screen and (min-device-width: 100px) and (max-device-width: 480px) {
    .search_result .filter-main-search {
        width: 100%;
    }
}

@media (min-width: 768px) {
    .search_result .filter-main-search {
        display: block;
        width: auto;
    }
}

.search_result .page-content-search-result {
    margin-top: 0;
    padding-top: 4%;
}

    .search_result .page-content-search-result .row.tabTriggerTarget p.tab-section {
        padding: 0px 20px 20px 20px;
    }

@media (min-width: 768px) {
    .search_result .page-content-search-result {
        padding: 4.4em 0 4em;
        margin-top: 8%;
    }
}

.search_result .page-content-search-result .secondary-column .filters-margin {
    width: 100%;
    float: left;
}

.search_result .page-content-search-result .secondary-column .filter-category-search li:last-child span {
    margin-left: 0;
    margin-top: 2%;
}

.search_result .search-section {
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .search_result .search-section {
        margin-bottom: 45px;
    }
}

.search_result .mobile_icon {
    display: block;
    position: absolute;
    height: 63px;
    width: 63px;
    border-radius: 50%;
    padding: 15px 15px 15px 15px;
    cursor: pointer;
    right: 15px;
    font-size: 32PX;
    display: block;
    color: #948f8f;
}

@media (min-width: 768px) {
    .search_result .mobile_icon {
        display: none;
    }
}

.search_result .vCard.inline .caption {
    padding-top: 11%;
    padding-left: 5px;
    width: 100%;
    max-width: 100%;
}

@media (min-width: 768px) {
    .search_result .vCard.inline .caption {
        padding: 0;
        padding-left: 20px;
        width: calc(87% - 100px);
        max-width: 50%;
    }
}

.search_result .vCard.inline .caption .people_li.searh-result-list li {
    margin-bottom: 0;
}

.search_result .search-section .cross-svg-large {
    display: none;
}

@media (min-width: 768px) {
    .search_result .search-section .cross-svg-large {
        display: block;
    }
}

.search_result .secondary-column {
    padding-left: 10px;
}

@media (min-width: 768px) {
    .search_result .secondary-column {
        padding-left: 1em;
    }
}

@media (min-width: 1170px) {
    .search_result .secondary-column {
        padding-left: 3em;
    }
}

.search_result .people_li li {
    border: 0;
}

.control {
    display: block;
    position: relative;
    padding-left: 30px;
    margin-bottom: 7px;
    cursor: pointer;
    font-size: 14px;
    font-weight: normal;
    color: #000;
    min-height: 23px;
}

    .control input {
        position: absolute;
        z-index: -1;
        opacity: 0;
        top: 0;
        left: 0;
    }

.control__indicator {
    position: absolute;
    top: 1px;
    left: 0;
    height: 18px;
    width: 18px;
    border: 1px solid #ccc;
    background-color: #efecec;
}

.control--radio .control__indicator {
    border-radius: 50%;
}

.control:hover input ~ .control__indicator,
.control input:focus ~ .control__indicator {
    background: #fff;
}

.control input:disabled ~ .control__indicator {
    background: #e6e6e6;
    opacity: 0.6;
    pointer-events: none;
}

.control__indicator:after {
    content: '';
    position: absolute;
    display: none;
}

.control input:checked ~ .control__indicator:after {
    display: block;
}

.control--checkbox .control__indicator:after {
    left: 5px;
    top: 1px;
    width: 4px;
    height: 11px;
    border: solid #94979a;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.vCard .caption ul.people_li.searh-result-list li:last-child {
    display: inline-block;
}

.vCard .caption address.search-result-address, .vCard .caption .contactInfo.search-result-contact {
    margin-top: 7px;
    font-size: 16px;
}

    .vCard .caption address.search-result-address span a, .vCard .caption .contactInfo.search-result-contact span a {
        color: #777779;
    }

        .vCard .caption address.search-result-address span a:hover, .vCard .caption .contactInfo.search-result-contact span a:hover {
            color: orange;
        }

.vCard .search-result-people {
    width: 232px;
    min-width: 100px;
    max-width: 50%;
    max-width: 50%;
}

@media (max-width: 767px) {
    .vCard .search-result-people {
        width: 100%;
        max-width: 100%;
    }
}

.secondary-column .filter-category-search li:last-child span:hover {
    color: #ee832e;
}

p.clear-all-filter {
    float: left;
}

    p.clear-all-filter a:hover {
        color: #ee832e;
    }

.search_more {
    color: #4fc6df;
    margin-top: 8px;
    float: left;
    cursor: pointer;
}

    .search_more:hover {
        color: #ee832e;
    }

.border-bottom {
    border-bottom: 1px solid #000;
    padding-bottom: 15px;
    margin-bottom: 1.5em;
}

.accordian-filter .clear-filter {
    margin-bottom: 10px;
}

    .accordian-filter .clear-filter a {
        color: #4fc6de;
        font-size: 16px;
    }

.accordian-filter .accordian-unit {
    margin-bottom: 5px;
}

    .accordian-filter .accordian-unit ul.filter-category-search {
        list-style-type: none;
    }

        .accordian-filter .accordian-unit ul.filter-category-search li {
            line-height: 1.5;
        }

            .accordian-filter .accordian-unit ul.filter-category-search li .loadMoresec {
                font-size: 16px;
            }

            .accordian-filter .accordian-unit ul.filter-category-search li .btn {
                width: 100px;
                padding: 10px 10px;
            }

    .accordian-filter .accordian-unit .heading {
        height: 2.6em;
        font-size: 0.9em;
        display: block;
        color: #333;
        padding: 0 15px 0 0.66em;
        line-height: 2.6em;
        font-family: "Proxima-Nova-Alt-Rg", sans-serif;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        background-color: #f1f1f1;
    }

        .accordian-filter .accordian-unit .heading .fa-minus, .accordian-filter .accordian-unit .heading .fa-plus {
            margin-top: 15px;
            color: #948f8f;
            position: absolute;
            right: 28px;
        }

    .accordian-filter .accordian-unit .content {
        border: 1px solid #f1f1f1;
        padding: 0.5em 0.66em;
        display: none;
    }

#homeslider .owl-nav .owl-prev, #homeslider .owl-nav .owl-next {
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
}

/* subscription page */
.pageContent .subscription-container {
    float: left;
    width: 96%;
    margin: 10px 2%;
}

@media (min-width: 768px) {
    .pageContent .subscription-container {
        width: 100%;
        margin: 50px 20%;
    }
}

.pageContent .subscription-container .heading {
    text-align: left;
    float: left;
    width: 100%;
    font-size: 1.3em;
    color: #f7a833;
    text-transform: uppercase;
    margin-bottom: 25px;
    font-family: "Proxima-Nova-Alt-SemiBold", sans-serif;
}

.pageContent .subscription-container .sub-cen-btn .btn {
    margin-top: 15px;
}

.pageContent .subscription-container .formWrap .question-answer-section {
    width: 100%;
    margin-top: 15px;
    float: left;
}

    .pageContent .subscription-container .formWrap .question-answer-section .formGroup .checkbox-head {
        color: #000;
        font-weight: 600;
        margin-bottom: 1.04em;
    }

    .pageContent .subscription-container .formWrap .question-answer-section .formGroup .checkbox-content {
        width: 100%;
        float: left;
    }

        .pageContent .subscription-container .formWrap .question-answer-section .formGroup .checkbox-content .checkbox-content-unit {
            width: 50%;
            float: left;
        }

@media (min-width: 768px) {
    .pageContent .subscription-container .formWrap .question-answer-section .formGroup .checkbox-content .checkbox-content-unit {
        width: 33%;
    }
}

.search_box.col-md-12 .social-result .vCard .caption {
    display: inline-block;
}

#searchFilterlabel.secondary-column {
    display: none;
}

@media (min-width: 768px) {
    #searchFilterlabel.secondary-column {
        display: inline-block;
    }
}

#searchFilterlabel.secondary-column .filter-sortBy {
    float: left;
    width: 100%;
    margin-bottom: 2em;
}

    #searchFilterlabel.secondary-column .filter-sortBy .sbHolder {
        margin-bottom: 0;
        width: 100%;
    }

.accordian-unit .loadMoresec {
    color: #4fc6df;
}

.search_box .innerWrap-location-detail li .infoBlock .info-heading {
    width: 100%;
    float: left;
    padding-left: 0;
    margin-left: 0;
    display: inline-block;
}

.search_box .innerWrap-location-detail li .infoBlock p.info-date {
    width: 100%;
    float: left;
    padding-left: 0;
    margin-left: 0;
    display: inline-block;
}

.search_result #all .searh-result-list li.ng-scope {
    width: auto;
}

.contactInfo.search-result-contact p.ng-binding.ng-scope {
    margin-top: 0px;
}

#events_location .innerWrap .row .col-md-2 {
    margin-top: 3%;
}

#primaryContent .socialNav li {
    font-size: 30px;
}

#primaryContent .introTextforMobile .caption {
    border-bottom: 1px solid #ccc;
    margin-bottom: 3%;
}

#primaryContent .introTextforMobile .socialNav {
    padding-left: 0px;
}

#primaryContent .introTextforMobile h1 {
    color: #000;
}

    #primaryContent .introTextforMobile h1 span {
        color: #a9c938;
        font-weight: 100;
    }

#primaryContent .red {
    color: #a93228;
    font-size: 1.08rem;
}

#primaryContent .card {
    display: none;
}

@media (min-width: 768px) {
    #primaryContent .card {
        display: block;
    }
}

.primaryContent .red {
    color: #a93228;
    font-size: 1.08rem;
}

.location_detail_outer .primaryContent.tab {
    padding-top: 30px;
}

@media (min-width: 768px) {
    .location_detail_outer .primaryContent.tab {
        padding-top: 0;
    }
}

.location_detail_outer .primaryContent.tab .careerOpp {
    margin-top: 0;
    width: 100%;
    font-size: 18px;
}

@media (min-width: 768px) {
    .location_detail_outer .primaryContent.tab .careerOpp {
        display: none;
        font-size: 14px;
    }
}

.location_detail_outer .primaryContent.tab .eventsList .info-date {
    margin-bottom: 0.8em;
}

.location_detail_outer .primaryContent.tab .eventsList .infoBlock .col-xs-12 .info-date {
    margin-bottom: 0;
}

.location_detail_outer .primaryContent .infoBlock .info-image-data {
    margin-bottom: 0;
}

.location_detail_outer .primaryContent .infoBlock .btn-submit {
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    .location_detail_outer .primaryContent .infoBlock .btn-submit {
        margin-bottom: 0;
    }
}

.location_detail_outer .primaryContent .infoBlock .info-data {
    margin-bottom: 5px;
}

.location_detail_outer .primaryContent .btn-submit {
    float: left;
}

@media (min-width: 768px) {
    .location_detail_outer .primaryContent .btn-submit {
        float: right;
    }
}

.location_detail_outer .primaryContent ul.overviewList li {
    padding-bottom: 0;
}

@media (min-width: 768px) {
    .location_detail_outer .primaryContent ul.overviewList li {
        padding-bottom: 10px;
    }
}

.location_detail_outer .primaryContent .ng-scope .row .col-sm-12 .no-gap-detail {
    margin-top: 0;
}

.location_detail_outer .primaryContent .news-top-gap {
    margin-top: 0;
}

    .location_detail_outer .primaryContent .news-top-gap li:last-child {
        border-bottom: 0;
    }

.location_detail_outer .infoBanner .bannerImg {
    margin-bottom: 0px;
}

.location_detail_outer .block .row .vCard .caption ul li:last-child {
    margin-top: 0;
    display: inline-block;
}

@media (min-width: 768px) {
    .location_detail_outer .block .row .vCard .caption ul li:last-child {
        display: none;
    }
}

.location_detail_outer .block .row .vCard .caption ul li a .fa-phone {
    font-size: 22px;
    position: relative;
    top: 4px;
    left: 0px;
}

.location_detail_outer .location_detail .location_list li:first-child {
    margin-bottom: 0;
}

.location_detail_outer .location_detail .location_list .vCard {
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .location_detail_outer .infoBox h1 {
        font-size: 2em;
    }
}

@media (min-width: 1170px) {
    .location_detail_outer .infoBox h1 {
        font-size: 2.467em;
    }
}

.location_detail_outer .infoBanner .infoBox.tintMedium .contentMiddle {
    padding-top: 0;
}

@media (min-width: 768px) {
    .location_detail_outer .infoBanner .infoBox.tintMedium .contentMiddle {
        padding-top: 2em;
    }
}

@media (min-width: 1170px) {
    .location_detail_outer .infoBanner .infoBox.tintMedium .contentMiddle {
        padding-top: 1.5em;
    }
}

.location_detail_outer .infoBanner .infoBox.tintMedium .contentMiddle .table-cell {
    display: block;
    flex-wrap: inherit;
}

    .location_detail_outer .infoBanner .infoBox.tintMedium .contentMiddle .table-cell .introBox {
        padding-top: 30px;
    }

@media (min-width: 768px) {
    .location_detail_outer .infoBanner .infoBox.tintMedium .contentMiddle .table-cell .introBox {
        padding-top: 0;
    }
}

.location_detail_outer .infoBanner .infoBox.tintMedium .contentMiddle .table-cell .introBox .locationDropdown {
    display: none;
}

.location_detail_outer .infoBanner .infoBox.tintMedium .contentMiddle .table-cell .mobileTab, .location_detail_outer .infoBanner .infoBox.tintMedium .contentMiddle .table-cell .mapAddress {
    display: block;
}

@media (min-width: 768px) {
    .location_detail_outer .infoBanner .infoBox.tintMedium .contentMiddle .table-cell .mobileTab, .location_detail_outer .infoBanner .infoBox.tintMedium .contentMiddle .table-cell .mapAddress {
        display: none;
    }
}

.location_detail_outer .infoBanner .infoBox.tintDark .contentMiddle .table-cell ul.socialNav {
    text-align: left;
}

    .location_detail_outer .infoBanner .infoBox.tintDark .contentMiddle .table-cell ul.socialNav li {
        margin: 0.5em;
    }

    .location_detail_outer .infoBanner .infoBox.tintDark .contentMiddle .table-cell ul.socialNav [data-network="phone"] {
        display: inline-block;
    }

@media (min-width: 768px) {
    .location_detail_outer .infoBanner .infoBox.tintDark .contentMiddle .table-cell ul.socialNav [data-network="phone"] {
        display: none;
    }
}

.location_detail_outer .infoBanner .infoBox.tintDark .contentMiddle .table-cell ul.socialNav [data-network="print"] {
    display: none;
}

@media (min-width: 768px) {
    .location_detail_outer .infoBanner .infoBox.tintDark .contentMiddle .table-cell ul.socialNav [data-network="print"] {
        display: inline-block;
    }
}

.location_detail_outer .mobile_list .caption .fa-phone {
    -webkit-transform: rotate(97deg);
    -moz-transform: rotate(97deg);
    -o-transform: rotate(97deg);
    -ms-transform: rotate(97deg);
    transform: rotate(97deg);
}

.location_detail_outer .table-row .inlineMenu .socialNav li.phone-icon {
    -webkit-transform: rotate(97deg);
    -moz-transform: rotate(97deg);
    -o-transform: rotate(97deg);
    -ms-transform: rotate(97deg);
    transform: rotate(97deg);
}

.location_detail_outer .tabs .pageContent .primaryContent p.red {
    margin-top: 0;
}

.location_detail_outer .tabs .pageContent .primaryContent .overviewList li {
    line-height: 1;
    list-style-position: inside;
    padding-left: 1em;
    margin-bottom: 5px;
    color: rgba(0, 0, 0, 0.7);
}

@media (min-width: 768px) {
    .location_detail_outer .tabs .pageContent .primaryContent .overviewList li {
        line-height: 1;
        margin-bottom: 0px;
    }
}

.tabsContent .pageContent {
    padding-top: 0;
}

@media (min-width: 768px) {
    .tabsContent .pageContent {
        padding-top: 3em;
    }

    .blog-content {
        padding-top: 1em !important;
    }

    .margin-fix-news-detail .blog-content {
        padding-top: unset !important;
    }
}

.tabsContent .pageContent .mobileMapRightSection .detail-contact .people-address .icons {
    font-size: 20px;
}

    .tabsContent .pageContent .mobileMapRightSection .detail-contact .people-address .icons .locationBio-email-address {
        display: none;
    }

    .tabsContent .pageContent .mobileMapRightSection .detail-contact .people-address .icons a .fa-phone {
        display: none;
    }

.tabsContent .pageContent .mobileMapRightSection .detail-contact h3.heading {
    margin-top: 15px;
}

.primaryContent .filterGroup .sbHolder ul li {
    padding-bottom: 0;
}

.primaryContent #overview_location .careerOpp {
    margin-bottom: 2%;
}

.location_detail .location_list .vCard .caption {
    padding: 0;
}

.location_detail .innerWrap .location .mapView {
    font-weight: 600;
}

.careerOpp {
    margin-top: 20px;
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    .careerOpp {
        margin-bottom: 0;
        margin-top: 0px;
    }
}

a.careerOpp {
    float: left;
}

.mobileHide {
    display: none;
}

@media (min-width: 768px) {
    .mobileHide {
        display: block;
    }
}

.secondaryContent.location_detail {
    display: none;
}

@media (min-width: 768px) {
    .secondaryContent.location_detail {
        display: block;
    }
}

.secondaryContent.location_detail .people-address .icons .locationBio-email-address {
    display: none;
    font-size: 12px;
    color: #000;
}

.secondaryContent .innerWrap li h3 {
    color: #f7a833;
    font-family: "Proxima-Nova-Alt-SemiBold", sans-serif;
    margin-bottom: 4%;
    text-transform: uppercase;
}

.mobileMapRightSection {
    padding: 20px 0 0 0;
}

@media (min-width: 768px) {
    .mobileMapRightSection {
        display: none;
    }
}

.mobileMapRightSection .mapSection {
    padding-bottom: 40px;
}

.mobileMapRightSection .contactList ul {
    padding-left: 0;
    list-style-type: none;
}

@supports (-ms-ime-align: auto) {
    .mobileMapRightSection .contactList ul ul {
        list-style-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVR42mNkYAAAAAYAAjCB0C8AAAAASUVORK5CYII=);
    }
}

.mobileMapRightSection .contactList ul li .vCard .caption {
    padding-left: 0;
}

.mobileMapRightSection .contactList ul li .vCard .contactInfo {
    display: none;
}

.mobileMapRightSection .contactList ul li .vCard ul li {
    display: inline-block;
}

    .mobileMapRightSection .contactList ul li .vCard ul li:last-child {
        display: inline-block;
    }

.mobileMapRightSection .contactList h3 {
    color: #f7a833;
}

.career-text span.future {
    text-transform: none;
}

.introBox .mapAddress a {
    color: #000;
}

.introBox .mapAddress :hover {
    color: #4fc6de;
}

.twoColumnLayout .tab .primaryContent .introTextforMobile ul.socialNav li.phone {
    display: inline-block;
}

@media (min-width: 768px) {
    .twoColumnLayout .tab .primaryContent .introTextforMobile ul.socialNav li.phone {
        display: none;
    }
}

.twoColumnLayout .tab .primaryContent .introTextforMobile ul.socialNav li.phone .fa-phone {
    -webkit-transform: rotate(97deg);
    -moz-transform: rotate(97deg);
    -o-transform: rotate(97deg);
    -ms-transform: rotate(97deg);
    transform: rotate(97deg);
    font-size: 22px;
}

.twoColumnLayout .tab .primaryContent .introTextforMobile ul.socialNav li.print {
    display: none;
}

@media (min-width: 768px) {
    .twoColumnLayout .tab .primaryContent .introTextforMobile ul.socialNav li.print {
        display: inline-block;
    }
}

.paragraph-style-section > p:first-of-type {
    color: #a93228;
    font-size: 1.067em;
    font-weight: 600;
}

.isPeople .secondaryContent .innerWrap-professional-listing {
    padding-top: 0px;
}

@media (min-width: 768px) {
    .isPeople .secondaryContent .innerWrap-professional-listing {
        padding-top: 20px;
    }
}

.flexBanner-career-landing.career_mobile {
    height: 100vh;
}

.isPeople.page.blogs_out.ng-scope .related-article-section.no-border .row {
    margin-bottom: 30px;
    padding: 0px 15px;
}

    .isPeople.page.blogs_out.ng-scope .related-article-section.no-border .row h4.info-data {
        margin-bottom: 0px;
    }

.location_detail .related-people-section .row.unit {
    margin-right: 0px;
}

.location_detail_outer .location_detail .related-people-section .people-address {
    padding-right: 0px;
}

.location_detail_outer .btn.careerOpp.fullWidth {
    width: 100%;
}

@media (min-width: 768px) {
    .location_detail_outer .btn.careerOpp.fullWidth {
        width: auto;
    }
}

.twoColumnLayout .peopleBanner.infoBanner .bannerImg:after, .twoColumnLayout .peopleBanner.infoBanner .bannerImg:before {
    width: 0;
}

.iscontact .overview-section {
    padding: 0px 0px 0px 0px;
    border-bottom: 0px solid #b0b8bd;
}

.iscontact .card h4 a {
    color: #4fc6de;
    font-size: 1.2em;
}

    .iscontact .card h4 a:hover {
        color: orange;
    }

@media (min-width: 768px) {
    .isPeople.twoColumnLayout.page.newslanding.ng-scope .related-article-section.eventsInterest.no-border .row.border {
        margin-bottom: 15px;
    }

    .isPeople.twoColumnLayout.page.newslanding.ng-scope .related-people-section.eventsInterest {
        padding-top: 0px;
        margin-top: -15%;
    }

    .modal-container.related-people-section .row.unit {
        min-height: 160px;
    }
}

@media screen and (min-device-width: 768px) and (max-device-width: 920px) {
    .modal-container.related-people-section .row.unit {
        min-height: 195px;
    }
}

.secondaryContent .modal .people-address .icons .locationBio-email-address {
    display: none;
}

.secondaryContent.location_detail ul li .secondaryContent-h4.yellow {
    margin-bottom: 10px;
}

.event-detail-speaker-desktop .event-block-hr-line.hide-line {
    margin: 10px 0 0 5px;
}

.event-detail-speaker-desktop .news-landing-card figure.col-lg-6 {
    padding-left: 0;
}

.event-detail-speaker-desktop .news-landing-card div.col-lg-6 {
    padding-right: 0;
}

@media (min-width: 768px) {
    .margin-fix-news-detail .primaryContent > .row {
        margin-top: 0;
    }

    .event-detail-speaker-mobile + .row hr {
        margin: 5px 0 15px;
    }
}

@media screen and (max-width: 768px) {
    .event-detail-speaker-mobile .primaryContent-h4 {
        padding-top: 5px;
        margin-top: 0px
    }
}

@media screen and (max-width: 1169px) {
    .event-detail-speaker-mobile .primaryContent-h4 {
        padding-top: 10px;
    }

    .event-detail-speaker-mobile .news-landing-card figure.col-lg-6 {
        padding-left: 0;
    }

    .event-detail-speaker-mobile .news-landing-card div.col-lg-6 {
        padding-right: 0;
    }
}

@media screen and (max-width: 768px) {
    .location_detail_outer .mobileMapRightSection .secondaryContent-h4.yellow {
        margin: 10px 0;
    }
}

.flexBanner-career-landing .flexBanner-career-landing-main-control .controles-heading {
    color: #ffffff;
    font-size: 20px;
}

.flexBanner-career-landing .controles .innerWrap.firmlanding-firm-textcontainer {
    top: 50%;
    transition: top .8s;
    -moz-transition: top .8s;
    -webkit-transition: top .8s;
    -o-transition: top .8s;
}

@media only screen and (max-width: 1024px) {
    .flexBanner-career-landing .controles .innerWrap.firmlanding-firm-textcontainer {
        top: 46%;
    }
}

.flexBanner-career-landing .controles .innerWrap.firmlanding-firm-textcontainer.active {
    top: 25%;
}

.flexBanner-career-landing .slidesWrap .slide .heading.firmlanding-section {
    top: 45%;
}

    .flexBanner-career-landing .slidesWrap .slide .heading.firmlanding-section h2 {
        text-transform: uppercase;
        font-size: 2.48em;
    }

.edy-list-firmlanding-container {
    padding-right: 2.5em;
    z-index: 1000;
    position: relative;
}

@media (min-width: 768px) {
    .edy-list-firmlanding-container {
        top: 32%;
        padding-left: 1em;
    }
}

@media (min-width: 1170px) {
    .edy-list-firmlanding-container {
        top: 35%;
        padding-left: 2.5em;
    }
}

.edylist-group-firmlanding, .edylist-group-firmlanding1 {
    padding-left: 0;
    margin-bottom: 0px;
    position: relative;
    display: block;
    background-color: rgba(77, 77, 77, 0);
    border-bottom: 1px solid rgba(255, 255, 255, 0);
    cursor: pointer;
    font-size: 12px;
}

@media (min-width: 1170px) {
    .edylist-group-firmlanding, ..edylist-group-firmlanding1 {
        font-size: 15px;
    }
}

.edylist-group-firmlanding .edylist-group-item-firmlanding, .edylist-group-firmlanding1 .edylist-group-item-firmlanding {
    padding-left: 0;
    margin-bottom: 20px;
    position: relative;
    display: block;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-bottom: -1px;
    background-color: rgba(77, 77, 77, 0);
    border-bottom: 1px solid rgba(255, 255, 255, 0.34902);
    padding-left: 20px;
    color: #ef8330;
}

    .edylist-group-firmlanding .edylist-group-item-firmlanding .firm-list-heading, .edylist-group-firmlanding1 .edylist-group-item-firmlanding .firm-list-heading1 {
        font-size: 18px;
    }

.edylist-group-firmlanding .edylist-group-item-firmlanding-child, .edylist-group-firmlanding1 .edylist-group-item-firmlanding-child, .edylist-group-firmlanding1 .edylist-group-item-firmlanding-child a {
    padding-left: 0;
    margin-bottom: 20px;
    position: relative;
    display: block;
    padding-top: 5px;
    padding-bottom: 5px;
    margin-bottom: -1px;
    background-color: rgba(77, 77, 77, 0);
    border-bottom: 1px solid rgba(255, 255, 255, 0);
    padding-left: 20px;
    color: #ef8330;
    font-family: "Proxima-Nova-Alt-SemiBold", sans-serif;
}

    .edylist-group-firmlanding .edylist-group-item-firmlanding-child a, .edylist-group-firmlanding1 .edylist-group-item-firmlanding-child a {
        color: #ef8330;
        font-size: 16px;
    }

.edylist-group-firmlanding .edylist-group-item-firmlanding:last-child, .edylist-group-firmlanding1 .edylist-group-item-firmlanding:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0);
}

.firmlanding .firmlanding-units {
    cursor: pointer;
}

.firmlanding-listing-section {
    -webkit-transition: all 0.58s cubic-bezier(0.58, 1.6, 0.9, 0.9) 0s;
    transition: all 0.58s cubic-bezier(0.47, 0.48, 0.47, 0.48) 0s;
    opacity: 0;
    -webkit-transform: translateX(70px) rotateX(0deg);
    transform: translateX(70px) rotateX(0deg);
    display: none;
}

@media (min-width: 768px) {
    .firmlanding-listing-section {
        display: block;
    }
}

.firmlanding-listing-section.active {
    opacity: 1;
    -webkit-transform: translateY(0px) rotateY(0deg) rotateX(0deg);
    transform: translateY(0px) rotateY(0deg) rotateX(0deg);
}

.flexBanner-career-landing .flexBanner-career-landing-main-control .controles-heading.work-updation {
    color: #ffffff !important;
    font-size: 20px;
    font-family: "Proxima-Nova-Alt-SemiBold", sans-serif;
}

.firmlanding-content-unit {
    display: none;
}

    .firmlanding-content-unit.Active {
        display: inline-block;
    }

.firmlanding-contents-section .firmlanding-content-unit.isActive {
    display: block;
    overflow: auto;
}

.firmlanding-contents-section .firmlanding-content-unit {
    display: block;
    color: #ffffff;
    overflow: scroll;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    height: 400px;
}

@media (min-width: 768px) {
    .firmlanding-contents-section .firmlanding-content-unit {
        height: auto;
    }
}

.firmlanding-contents-section {
    position: relative;
    z-index: 9999;
    background-color: #fff;
    width: 100%;
    top: 0;
    right: 0;
    transform: translateY(0px);
    transition: 0s;
    display: none;
    background-color: #fff;
    display: none;
}

    .firmlanding-contents-section.mobile {
        z-index: 9999;
        background-color: #fff;
        width: 100%;
        top: 0;
        right: 0;
        transform: translateY(0px);
        transition: 0s;
        display: block;
        background-color: #fff;
        display: block;
    }

@media (min-width: 768px) {
    .firmlanding-contents-section {
        width: 100%;
        position: absolute;
        top: 600px;
        transform: translateY(100px);
        display: block;
    }
}

.firmlanding-contents-section .secondaryContent {
    margin: 0px 15px;
    width: auto;
}

@media (min-width: 768px) {
    .sidebarvideo {
        padding-left: 0 !important;
    }

    .sidebarvideotext {
        margin-left: 0 !important;
    }

    .firmlanding-contents-section .secondaryContent {
        padding: 0 40px;
        padding-left: 40px;
        width: 35%;
        float: left;
        margin: 0;
    }
}

.firmlanding-contents-section .secondaryContent .contact_part .caption h3 {
    color: #4fc6de;
}

.firmlanding-contents-section .secondaryContent .video-text-card {
    margin-bottom: 5%;
    padding: 0;
}

.firmlanding-contents-section .secondaryContent .contact_part .vCard {
    padding: 0;
}

.firmlanding-contents-section .primaryContent {
    padding: 0 15px;
    width: 100%;
}

@media (min-width: 768px) {
    .firmlanding-contents-section .primaryContent {
        width: 65%;
        padding: 0 40px;
    }
}

.firmlanding-contents-section .primaryContent .edyTabs .mobileTab {
    display: block;
    background: none;
    border-bottom: 1px solid #c7c7c7;
    padding-left: 0;
}

.firmlanding-contents-section .primaryContent .edyTabs .tabsContent {
    color: rgba(0, 0, 0, 0.7);
    padding: 2% 0;
}

.firmlanding-contents-section .primaryContent .mobileTab.isActive-firm {
    color: #4fc6de;
}

.firmlanding-contents-section .primaryContent .isActive_button {
    display: block;
}

.firmlanding-contents-section .primaryContent .showDiv {
    display: block;
}

.firmlanding-contents-section .primaryContent .owl-nav {
    display: block;
}

.firmlanding-contents-section .tabsContent .container {
    padding: 0 0;
}

.firmlanding-contents-section.active {
    transform: translateX(0px) rotateX(0deg);
    -webkit-transition: all 0s cubic-bezier(0.58, 1.6, 0.9, 0.9) 0s;
    transition: all 0s cubic-bezier(0.47, 0.48, 0.47, 0.48) 0s;
    top: 85px;
}

@media (max-width:767px) {
    .sidebarvideo {
        padding-left: 0 !important;
    }

    .firmlanding-contents-section.active {
        transform: translateX(0px) rotateX(0deg);
        -webkit-transition: all 0s cubic-bezier(0.58, 1.6, 0.9, 0.9) 0s;
        transition: all 0s cubic-bezier(0.47, 0.48, 0.47, 0.48) 0s;
        top: 0px;
    }
}

.firmlanding-contents-section.active .locationDropdown .sbHolder {
    background: #131829;
    margin-bottom: 0;
    display: block;
}

    .firmlanding-contents-section.active .locationDropdown .sbHolder .sbOptions {
        background-color: #131829;
        border: 1px solid #131829;
    }

        .firmlanding-contents-section.active .locationDropdown .sbHolder .sbOptions li a {
            color: #ef8330;
            text-transform: uppercase;
        }

    .firmlanding-contents-section.active .locationDropdown .sbHolder .sbSelector {
        color: #fff;
        text-transform: uppercase;
    }

    .firmlanding-contents-section.active .locationDropdown .sbHolder .sbToggle {
        background-position: -42px -18px;
    }

.firmlanding-contents-section.active .locationDropdown .filter-sortBy .sbHolder {
    margin-bottom: 0;
    margin-top: 1.4em;
}

.overview-tabb .primaryContent .infoBlock .info-heading {
    color: #a9c938;
    text-transform: none;
    margin-bottom: 0;
    font-family: "Proxima-Nova-Alt-Rg", sans-serif;
}

.overview-tabb .primaryContent .infoBlock .info-data {
    text-transform: uppercase;
}

.overview-tabb .infoBlock-news-detail {
    padding-bottom: 1%;
    border-bottom: 0;
}

.edylist-group-firmlanding .subtabColor, .edylist-group-firmlanding1 .subtabColor {
    color: #ffffff;
}

.edylist-group-firmlanding .subtabColor, .edylist-group-firmlanding1 .whiteFont1 a {
    color: #ef8330;
}

    .edylist-group-firmlanding .subtabColor a, .edylist-group-firmlanding1 .subtabColor a {
        color: #ffffff;
        font-size: 16px;
    }

.mobileTab.mobileTabActive:before {
    -moz-transform: rotatex(-180deg);
    -o-transform: rotatex(-180deg);
    -ms-transform: rotatex(-180deg);
    -webkit-transform: rotatex(-180deg);
    transform: rotatex(-180deg);
}

.firmlanding-content-unit .mobileTab {
    color: #a93228;
}

    .firmlanding-content-unit .mobileTab:before {
        background: url(../images/icons/arrow_down_gray.png);
    }

.whiteFont, .whiteFont1 {
    color: #fff;
}

.diversity_nav {
    margin: 3% 0 0 4%;
}

    .diversity_nav li {
        color: #a9c938;
        list-style-type: none;
        margin-bottom: 2%;
        list-style: none;
    }

        .diversity_nav li a {
            color: #a9c938;
            list-style-type: none;
            margin-bottom: 2%;
            list-style: none;
        }

.subtabs {
    font-weight: normal;
    font-family: "Proxima-Nova-Alt-SemiBold", sans-serif;
    position: relative;
}

/*
.subtabs::before{
    background: url(../images/icons/arrow_down.png); content: "";
    position: absolute;
    top: 1px;
    width: 18px;
    height: 18px;
    @include transition(all 0.3s ease);
    background-position: center center;
    background-size: cover;
    left: -26px;}
    */
.news-section {
    width: 100%;
    margin: 3% 0 0 0;
}

    .news-section .news-section-image {
        margin: 0 0;
    }

@media (max-width:990px) {
    .news-section .news-section-image div {
        overflow: hidden;
    }

    .news-section .news-section-image > .col-md-12 {
    }
}

.news-section .news-section-image div {
    padding: 0;
}

.news-section .news-section-image .testimonial-heading {
    float: left;
}

    .news-section .news-section-image .testimonial-heading a {
        color: #4fc6de;
    }

.news-section .news-section-image .heading {
    width: auto;
    float: left;
    margin-bottom: 0px;
    margin-right: 15px;
}

.news-section .news-section-image .testimonial-heading {
    margin-bottom: 3px;
}

@media only screen and (max-width: 1024px) and (min-width: 768px) {
    .news-section .news-section-image .testimonial-heading {
        margin-bottom: 13px;
        margin-top: 0em;
        left: 4.9em;
        position: relative;
    }
}

@media (min-width:1025px) {
    .news-section .news-section-image .testimonial-heading {
        margin-bottom: 11px;
        margin-top: 0em;
    }
}

@media (max-width:767px) {
    .news-section .news-section-image .testimonial-heading {
        float: right;
        margin-top: 0px;
    }
}

.news-section .col-sm-6 .law_slider {
    padding: 0;
    margin-top: 6px;
}

    .news-section .col-sm-6 .law_slider h3.testimonial-heading {
        font-size: 18px;
        margin-bottom: 5px;
    }

        .news-section .col-sm-6 .law_slider h3.testimonial-heading a {
            -moz-transition: all 0.3s ease;
            -o-transition: all 0.3s ease;
            -webkit-transition: all 0.3s ease;
            transition: all 0.3s ease;
            color: #4fc6de;
        }

            .news-section .col-sm-6 .law_slider h3.testimonial-heading a:hover {
                color: orange;
            }

@media (min-width: 768px) {
    .news-section .col-sm-6 .law_slider h3.testimonial-heading {
        font-size: 14px;
    }
}

.news-section .col-sm-6 .law_slider .caption {
    margin-top: 6px;
}

.news-section .col-sm-6 .law_slider .owl-carousel .owl-dots {
    right: 5px;
}

.news-section h4 {
    color: #f7a833;
    font-size: 20px;
    margin-bottom: 2%;
}

.news-section h3 a {
    color: #000;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

    .news-section h3 a:hover {
        color: #4fc6de;
    }

.firm_landing .controles {
    background-position: 0px center;
    background-size: cover;
    background-repeat: no-repeat;
}

@media (min-width: 768px) {
    .firm_landing .controles {
        background-position: -250px center;
    }
}

@media (width: 812px) {
    .firm_landing .controles {
        background-position: -94px center;
    }
}

@media (min-width: 1170px) {
    .firm_landing .controles {
        background-position: 0px center;
    }
}

.firm_landing .slidesWrap .slide:first-child {
    background-position: 0px center;
}

@media (min-width: 768px) {
    .firm_landing .slidesWrap .slide:first-child {
        background-position: 0px center;
    }
}

@media (min-width: 1170px) {
    .firm_landing .slidesWrap .slide:first-child {
        background-position: 0px center;
    }
}

@media (width: 812px) {
    .firm_landing .slidesWrap .slide:first-child {
        background-position: -16px center;
    }
}

.firm_landing .slidesWrap .slide:nth-child(2) {
    background-position: center center;
}

@media (min-width: 768px) {
    .firm_landing .slidesWrap .slide:nth-child(2) {
        background-position: -16px center;
    }
}

@media (width: 812px) {
    .firm_landing .slidesWrap .slide:nth-child(2) {
        background-position: -16px center;
    }
}

.firm_landing .slidesWrap .slide:nth-child(3) {
    background-position: center center;
}

@media (min-width: 768px) {
    .firm_landing .slidesWrap .slide:nth-child(3) {
        background-position: -78px center;
    }
}

.firm_landing .slidesWrap .slide:nth-child(5) {
    background-position: center -132px;
}

@media (min-width: 768px) {
    .firm_landing .slidesWrap .slide:nth-child(5) {
        background-position: -5px center;
    }
}

@media (width: 812px) {
    .firm_landing .slidesWrap .slide:nth-child(5) {
        background-position: -41px center;
    }
}

.firm_landing .related-people-section .row.unit {
    margin-left: -15px;
}

@media (min-width: 768px) {
    .firm_landing .related-people-section .row.unit {
        margin-right: 0px;
    }
}

.firm_landing .related-people-section .row.unit .people-image {
    padding-right: 0px;
}

@media (min-width: 768px) {
    .firm_landing .related-people-section .row.unit .people-image {
        padding-right: 15px;
    }
}

.firm_landing .firmlanding-content-unit .back-heading-news-detail {
    display: block;
    font-family: "Proxima-Nova-Alt-Rg", sans-serif;
}

@media (min-width: 768px) {
    .firm_landing .firmlanding-content-unit .back-heading-news-detail {
        display: block;
    }
}

.slide_down {
    transform: translateY(100%);
    position: fixed;
}

.flexBanner-career-landing.firm_landing .overlay {
    opacity: 0.5;
    background: #000;
}

@media (min-width: 768px) {
    .flexBanner-career-landing.firm_landing .overlay {
        opacity: 0.70;
        background: #000;
    }
}

.firm_landing .controles {
    min-height: inherit;
}

.firm_landing .slidesWrap .slide .heading.firmlanding-section h2 {
    border: 0;
    font-size: 1.90em;
    text-align: left;
    /*padding: 50px 0;*/
    /* width: 200px;*/
    /*margin: 0 auto;*/
}

@media (min-width: 768px) and (max-width:1023px) {
    .firm_landing .slidesWrap .slide .heading.firmlanding-section h2 {
        font-size: 1.48em !important;
        text-align: left;
        padding: 0;
        margin: 0;
        margin-left: 0em !important;
    }
}

@media (min-width: 1170px) {
    .firm_landing .slidesWrap .slide .heading.firmlanding-section h2 {
        font-size: 2.48em;
        /*margin-left: 1.5em;*/
    }
}

.firm_landing h1 {
    flex-wrap: inherit;
    display: inherit;
}

.mobile_header_img {
    display: block;
}

@media (min-width: 768px) {
    .mobile_header_img {
        display: none;
    }
}

.firmlanding-content-unit .tab {
    display: block;
}

@media (min-width: 768px) {
    .firmlanding-content-unit .tab {
        display: block;
    }
}

.firmlanding-contents-section {
    display: inline-block;
}

.pull-right {
    width: 100%;
    display: block;
}

@media (min-width: 768px) {
    .pull-right {
        display: none;
    }
}

.pull-right .lang-selector {
    position: relative;
    background-color: #131829;
    color: #fff;
    margin-bottom: 0;
    float: left;
    width: 100%;
}

    .pull-right .lang-selector .lang-selected {
        cursor: pointer;
        position: relative;
    }

    .pull-right .lang-selector .lang-selected-left {
        display: inline-block;
        padding: 9px 10px;
    }

    .pull-right .lang-selector .lang-selected-right {
        background: url(../images/icons/sprite.png);
        background-position: -38px -16px;
        width: 20px;
        height: 20px;
        position: absolute;
        right: .4em;
        top: 55%;
        -moz-transform: translatey(-50%);
        -o-transform: translatey(-50%);
        -ms-transform: translatey(-50%);
        -webkit-transform: translatey(-50%);
        transform: translatey(-50%);
        -moz-transition: all 0.2s linear;
        -o-transition: all 0.2s linear;
        -webkit-transition: all 0.2s linear;
        transition: all 0.2s linear;
    }

        .pull-right .lang-selector .lang-selected-right .glyphicon {
            top: 50%;
            left: 50%;
            position: absolute;
            -webkit-transform: translate(-50%, -50%);
            -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
            color: #ce1443;
            background: url(../images/icons/sprite.png);
        }

        .pull-right .lang-selector .lang-selected-right.icontoggle {
            -moz-transform: translatey(-50%) rotate(-180deg);
            -o-transform: translatey(-50%) rotate(-180deg);
            -ms-transform: translatey(-50%) rotate(-180deg);
            -webkit-transform: translatey(-50%) rotate(-180deg);
            transform: translatey(-50%) rotate(-180deg);
        }

    .pull-right .lang-selector .lang-listing {
        background-color: #131829;
        color: #fff;
        position: absolute;
        z-index: 9999;
        top: 35px;
        width: 100%;
        display: none;
    }

.pull-right ul li {
    list-style-type: none;
}

    .pull-right ul li ul {
        margin: 0 0 0 2%;
    }

        .pull-right ul li ul li {
            list-style-type: none;
            font-size: 13px;
        }

            .pull-right ul li ul li a {
                color: #a9c938;
            }

    .pull-right ul li a {
        color: #ef8330;
        font-family: "Proxima-Nova-Alt-Rg", sans-serif;
        font-size: 0.9em;
        text-transform: uppercase;
        line-height: 1;
        padding: 0 13px;
        display: block;
        border-right: 1px solid #fff;
        padding: 0.5em 0.66em;
    }

.firmlanding-video {
    position: relative;
    pointer-events: none;
}

    .firmlanding-video .video-player {
        pointer-events: all;
        background-repeat: no-repeat;
        transform: translate(-50%,-50%);
        color: #fff;
        left: 50%;
        height: 60px;
        margin: 0 auto;
        cursor: pointer;
        top: 50%;
        width: 60px;
        position: absolute;
        background-image: url(../images/icons/arrow.png);
        background-color: #9e9999;
        border-radius: 50%;
        background-size: 60px;
    }

    .firmlanding-video img {
        cursor: pointer;
    }

.firmlanding.edyTabs .mobileTab:before {
    right: 0px;
}

.firm_landing.flexBanner-career-landing .slidesWrap .slide {
    height: 150px;
}

@media (min-width: 768px) {
    .firm_landing.flexBanner-career-landing .slidesWrap .slide {
        height: auto;
    }
}

.firm_landing.flexBanner-career-landing .controles .innerWrap.firmlanding-firm-textcontainer {
    height: 150px;
    padding-top: 1px;
}

@media (min-width: 768px) {
    .firm_landing.flexBanner-career-landing .controles .innerWrap.firmlanding-firm-textcontainer {
        height: auto;
        padding: 1.5em 1.2em;
    }
}

.firmlanding-content-unit .pageContent {
    width: 100%;
    float: left;
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    .firmlanding-content-unit .pageContent {
        min-height: calc(100vh - 130px);
    }
}

.firm_landing .owl-carousel .owl-nav .owl-prev {
    left: 10px;
    background: url(../images/icons/left_insight.png) no-repeat center center;
    color: transparent;
    position: absolute;
    width: 18px;
    height: 30px;
    top: 30%;
}

@media only screen and (max-width: 767px) and (min-width: 451px) {
    .firm_landing .owl-carousel .owl-nav .owl-prev {
        top: 40%;
    }
}

@media (min-width: 768px) {
    .firm_landing .owl-carousel .owl-nav .owl-prev {
        display: block;
    }
}

.firm_landing .owl-carousel .owl-nav .owl-next {
    right: 10px;
    background: url(../images/icons/right_insight.png) no-repeat center center;
    color: transparent;
    position: absolute;
    width: 18px;
    height: 30px;
    top: 30%;
}

@media only screen and (max-width: 767px) and (min-width: 451px) {
    .firm_landing .owl-carousel .owl-nav .owl-next {
        top: 40%;
    }
}

@media (min-width: 768px) {
    .firm_landing .owl-carousel .owl-nav .owl-next {
        display: block;
    }
}

.isPeople.page.confirmation {
    min-height: 92.6vh;
}

.fullCarouselTestimonial_firm.owl-carousel .owl-dots {
    right: 0px;
    top: -1.8em
}

    .fullCarouselTestimonial_firm.owl-carousel .owl-dots .owl-dot {
        float: left;
    }

.fullCarouselTestimonial_firm.owl-carousel .caption .title h3 {
    margin-top: 10px;
    margin-bottom: 0px;
}

.fullCarouselTestimonial_firm.owl-carousel .caption .title p {
    margin: 0;
    margin-bottom: 15px;
}

.firmlanding .close {
    margin-right: -24px;
}

.back-heading-news-detail.blog-heading a, .firm-heading a {
    color: #4fc6de;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

    .back-heading-news-detail.blog-heading a:hover, .firm-heading a:hover {
        color: orange;
    }

.firmlanding-content-unit .secondaryContent.bottom_gap .secondaryContent-h4.yellow {
    font-size: 1.067em;
    font-family: "Proxima-Nova-Alt-SemiBold", sans-serif;
    color: #f7a833;
    margin-bottom: 25px;
}

.firm_landing .slidesWrap.firmlanding {
    height: 450px;
}

@media (min-width: 768px) {
    .firm_landing .slidesWrap.firmlanding {
        height: 100vh;
    }
}

.edyTabs.firmlanding {
    margin-bottom: 20px;
}

* {
    -webkit-overflow-scrolling: touch;
}

@media (min-width: 1170px) {
    .infoBanner.pro_list_section .contentMiddle {
        padding: 0 3em;
    }
}

@media (min-width: 768px) {
    .peopleBanner .block.listView.clearfix.newsection {
        width: 100%;
    }

    .listData p {
        margin: 0 0;
    }
}

.newslanding .news-subscription-btn {
    width: 100%;
    margin: 0 auto 15px auto;
}

@media (min-width: 768px) {
    .newslanding .news-subscription-btn {
        width: 280px;
    }
}

.flexBanner-career-landing.career_mobile {
    height: auto;
}

@media (min-width: 768px) {
    .flexBanner-career-landing.career_mobile {
        height: 100vh;
    }
}

@media only screen and (max-width: 992px) and (min-width: 768px) {
    .firmlanding-content-unit .media-player .circle {
        background-size: 20px 20px;
        left: 26%;
        top: -28%;
    }
}

.edylist-group-item.has-mini-list ul.edylist-group {
    margin: 0px 0px;
}

.subtabs .subtabs-arrow {
    background: url(../images/icons/arrow_down.png);
    position: absolute;
    top: 1px;
    width: 18px;
    height: 18px;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    background-position: center center;
    background-size: cover;
    left: -26px;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

    .subtabs .subtabs-arrow.showtabs {
        background: url(../images/icons/arrow_up.png);
    }

.firm_landing .secondaryContent .contact_part .related-people-section .row .people-image {
    padding-right: 0;
}

.firmlanding-content-unit .primaryContent ul {
    list-style-position: inside;
    padding-left: 15px;
}

img.bio-print-section {
    display: none;
}

.modal.email-confirm {
    background-color: rgba(0, 0, 0, 0.7);
}

    .modal.email-confirm .modal-dialog {
        width: 90%;
        margin: 0px auto;
        max-width: 500px;
    }

        .modal.email-confirm .modal-dialog .modal-content {
            width: 100%;
            border-radius: 0px;
            padding: 15px 15px 105px;
        }

@media (min-width: 768px) {
    .modal.email-confirm .modal-dialog .modal-content {
        padding: 30px 30px 0px;
    }
}

.modal.email-confirm .modal-dialog .modal-content .modal-body {
    color: #a93228;
    font-weight: 600;
}

    .modal.email-confirm .modal-dialog .modal-content .modal-body .btn-container {
        width: 100%;
        float: left;
        margin-top: 10px;
    }

        .modal.email-confirm .modal-dialog .modal-content .modal-body .btn-container .btn.left {
            width: calc(50% - 10px);
            margin-right: 10px;
            margin-bottom: 0px;
            float: left;
        }

            .modal.email-confirm .modal-dialog .modal-content .modal-body .btn-container .btn.left a {
                color: #fff;
            }

        .modal.email-confirm .modal-dialog .modal-content .modal-body .btn-container .btn.right {
            width: calc(50% - 10px);
            margin-left: 10px;
            float: left;
        }

.secondaryContent .introTextforMobile {
    display: none;
}

/* print biodetail page */
@media print {
    * {
        -webkit-print-color-adjust: exact !important;
        -ms-print-color-adjust: exact !important;
        color-adjust: exact !important;
        -webkit-transition: none !important;
        -ms-transition: none !important;
        transition: none !important;
    }

    .disclaimer-container.except-home {
        display: none !important;
    }

    .practice-main-content iframe {
        max-width: 100%;
        overflow: hidden;
    }

    .page {
        min-height: 1px !important;
    }

    html, body {
        page-break-after: avoid;
        page-break-before: avoid;
    }

    p:last-child {
        margin-bottom: 0;
    }

    body {
        font-size: 11.25pt;
        /*page-break-inside: avoid;*/
        height: 100%;
        line-height: 1.5;
    }

    p {
        font-size: 14px !important;
        margin-bottom: 10px !important;
    }

    .primaryContent p, .primaryContent ul {
        margin: 5px 0px;
    }

    body .pageContent {
        display: block !important;
        width: 100% !important;
        padding-bottom: 0px !important;
        margin-bottom: 0px !important;
        position: relative !important;
    }

        body .pageContent:before {
            border-right: 1px solid #ccc;
            position: fixed;
            top: 0;
            right: 33%;
            height: 100%;
            content: "";
        }

    body .pageContentForIpad:before {
        border-right: none !important;
    }

    h3 {
        font-size: 12pt;
    }

    a {
        display: inline-block;
        word-break: break-all;
    }

    .pageContent {
        display: block !important;
    }

    .primaryContent {
        width: 67% !important;
        float: none !important;
        /*min-height: 1px !important;*/
        padding-right: 30px !important;
    }

    .secondaryContent {
        width: 30% !important;
        float: none !important;
        padding-left: 3% !important;
        margin-left: 0 !important;
        padding-top: 20px !important;
    }

        .secondaryContent .overview-section .content p a {
            word-break: normal;
        }

    .primaryContent {
        display: block !important;
        float: left !important;
        border-right: none !important;
    }

    .secondaryContent.secondaryContentForBtvalueCareer {
        padding-top: 1em !important;
    }

    .touchdeviceipad .secondaryContent.secondaryContentForBtvalueCareer {
        padding-top: 70px !important;
    }

    .secondaryContentForBtvalueCareer .quick-links-law-student-detail .quick-heading {
        margin-bottom: 0;
    }

    @-moz-document url-prefix() {
        .secondaryContent.secondaryContentForBtvalueCareer {
            padding-top: 1em !important;
        }

        .primary-content-people-details p {
            position: relative !important;
            top: 14.5em !important;
        }
    }


    ::-webkit-full-page-media, _:future, :root .secondaryContentForPrint {
        border: none !important;
        margin-top: -4em !important;
    }


    .practise-leader .vCard .social-icon li:last-child {
        display: none;
    }

    ::-webkit-full-page-media, _:future, :root .primary-content-people-details p {
        position: relative !important;
        top: 14.5em !important;
    }

    @-moz-document url-prefix() {
        .practise_outer .infoBox .introBox {
            margin-top: 3em;
        }
    }

    .secondaryContent .introTextforMobile .bio-office-address-info {
        width: 100% !important;
    }

    .video-text-card {
        display: none;
    }

    .overview-subheding .content .head a {
        word-break: normal;
    }

    .secondaryContent .innerWrap li.no-border {
        margin-bottom: 2em !important;
    }

    .secondaryContent .innerWrap li.video-text-list {
        margin-bottom: 0em !important;
    }



    .primaryContent.practice-main-content.paragraph-style-section {
        margin-top: 0em !important;
    }

    .emptyBioPage {
        display: block !important;
    }

        .emptyBioPage .pageContent {
            border: none !important;
        }

    .secondaryContent {
        float: right !important;
        width: 30% !important;
        padding-right: 5% !important;
        padding-left: 0 !important;
        display: block !important;
    }

    body * {
        visibility: visible;
        font-family: Arial, Helvetica, sans-serif;
    }

    .bio-banner-print.hide {
        display: block !important;
        position: relative !important;
        z-index: 100;
        width: 100%;
        height: 68px;
        background: none !important;
        box-shadow: none !important;
        padding: 0;
        overflow: hidden;
    }

        .bio-banner-print.hide img {
            width: 100%;
            padding: 0;
            height: 100%;
            display: block;
        }

            .bio-banner-print.hide img.logo-print {
                position: absolute;
                top: 50%;
                left: 20px;
                width: 220px;
                height: auto;
                /* padding: 15px; */
                -webkit-transform: translateY(-50%);
                -ms-transform: translateY(-50%);
                -moz-transform: translateY(-50%);
                -o-transform: translateY(-50%);
                transform: translateY(-50%);
            }

    .news-landing-card img {
        width: 65pt;
    }

    .isPeople.twoColumnLayout {
        min-height: 283px !important;
        position: relative;
        padding-top: 0 !important;
        max-width: 1170px;
    }

        .isPeople.twoColumnLayout .container {
            max-width: 100%;
        }

        .isPeople.twoColumnLayout img.bio-print-section {
            display: block;
            padding-bottom: 15px;
            border-right: none;
            float: none;
            position: absolute;
            left: 0;
            /* height: 250px !important; */
            /* max-height: 250px !important; */
            width: 67%;
            top: 69px;
            /* max-width: 783px; */
            height: auto;
        }

        .isPeople.twoColumnLayout .edyTabs {
            width: 100% !important;
            float: none;
            border-right: none;
            padding-right: 0;
        }

            .isPeople.twoColumnLayout .edyTabs .primaryContent {
                border-right: 1px solid #ccc;
                padding-top: 35% !important;
            }

                .isPeople.twoColumnLayout .edyTabs .primaryContent .block:last-child {
                    margin-bottom: 0 !important;
                }

            .isPeople.twoColumnLayout .edyTabs .tab .secondaryContent {
                border-left: 0;
                margin-bottom: 0 !important;
            }

                .isPeople.twoColumnLayout .edyTabs .tab .secondaryContent .block:last-child, .isPeople.twoColumnLayout .edyTabs .tab .secondaryContent .introTextforMobile {
                    margin-bottom: 0 !important;
                }

                .isPeople.twoColumnLayout .edyTabs .tab .secondaryContent .innerWrap {
                    margin-bottom: 0 !important;
                }

                    .isPeople.twoColumnLayout .edyTabs .tab .secondaryContent .innerWrap .infoBlock:last-child {
                        margin-bottom: 0 !important;
                    }

                    .isPeople.twoColumnLayout .edyTabs .tab .secondaryContent .innerWrap li {
                        float: none !important;
                    }

                        .isPeople.twoColumnLayout .edyTabs .tab .secondaryContent .innerWrap li:last-child {
                            margin-bottom: 0 !important;
                        }

            .isPeople.twoColumnLayout .edyTabs .trigger {
                display: none;
            }

    .isPeople {
        position: relative;
        padding-top: 68px;
    }

    .edyTabs .tabs .tab .tabsContent .container .pageContent {
        padding: 0 !important;
        position: relative;
    }

    .isPeople .edyTabs .tabs > .tab {
        display: none;
    }

        .isPeople .edyTabs .tabs > .tab:nth-child(2) {
            display: block;
        }

    .isPeople .edyTabs .tab .container {
        padding: 0;
        margin: 0;
    }

    .primaryContent {
        float: left;
        width: 100%;
    }

    .secondaryContent {
        float: right;
        width: 30%;
    }

    .slideBox * {
        visibility: hidden;
    }

    .isPeople, .infoBanner, .bannerImg, .globalFooter, header {
        position: absolute;
        left: 0;
        top: 0;
    }

        .isPeople .primaryContent.paragraph-style-section p:nth-child(1) {
            font-weight: 600 !important;
        }

    .globalHeader {
        visibility: hidden;
        display: none;
    }

        .globalHeader .col-xs-8.col-md-9 {
            visibility: hidden;
        }

    .edyTabs .tab {
        display: block;
    }

        .edyTabs .tab .paragraph-style-section > p:first-of-type {
            color: #111;
        }

        .edyTabs .tab .primaryContent p {
            font-weight: normal !important;
        }

        .edyTabs .tab .primaryContent .block.hide.bio-partner-info {
            display: block !important;
            margin-bottom: 15px;
        }

        .edyTabs .tab .primaryContent .block h3.red {
            color: #111;
            opacity: 0.9;
            font-size: 16px;
            margin-bottom: 10px;
            margin-top: 15px;
            letter-spacing: 0;
        }

        .edyTabs .tab .primaryContent .block p {
            color: #111;
            opacity: 0.9;
            font-size: 13px;
            margin: 0px 0 10px;
            letter-spacing: 0;
        }

            .edyTabs .tab .primaryContent .block p:last-of-type {
                margin-bottom: 0;
            }

        .edyTabs .tab .primaryContent > p {
            color: #111;
            opacity: 0.9;
            font-size: 13px;
            letter-spacing: 0;
        }

        .edyTabs .tab .primaryContent p {
            color: #111;
            opacity: 0.9;
            font-size: 13px;
            letter-spacing: 0;
        }

            .edyTabs .tab .primaryContent p strong {
                color: #111;
                opacity: 0.9;
                font-size: 16px;
                letter-spacing: 0;
            }

        .edyTabs .tab .primaryContent:last-of-type {
            margin-bottom: 0;
        }

        .edyTabs .tab .primaryContent ul {
            color: #111;
            opacity: 0.9;
            font-size: 13px;
            margin: 0;
        }

            .edyTabs .tab .primaryContent ul li {
                color: #111;
                opacity: 0.9;
                font-size: 13px;
                letter-spacing: 0;
            }

    .edyTabs .tabs .mobileTab {
        display: none;
    }

    .edyTabs .tab.isActive {
        display: block;
    }

    #top_btn {
        display: none;
    }

    .twoColumnLayout .tab .secondaryContent .introTextforMobile {
        display: block;
    }

    .secondaryContent .introTextforMobile {
        display: block;
        margin-bottom: 10px;
    }

        .secondaryContent .introTextforMobile h1 {
            font-size: 20px;
            color: #000;
            margin-bottom: 0;
            letter-spacing: 0;
            text-transform: none;
        }

            .secondaryContent .introTextforMobile h1 span {
                font-size: 16px;
                font-weight: normal;
                color: #a93228;
                margin: 10px 0 10px 0;
                letter-spacing: 0;
            }

        .secondaryContent .introTextforMobile > .block {
            display: none;
        }

        .secondaryContent .introTextforMobile address {
            color: #111;
            opacity: 0.9;
            font-size: 15px;
        }

            .secondaryContent .introTextforMobile address h4 {
                display: none;
            }

        .secondaryContent .introTextforMobile .contactInfo p {
            color: #111;
            letter-spacing: 0;
            opacity: 0.9;
            font-size: 15px;
            margin-bottom: 0;
        }

        .secondaryContent .introTextforMobile .contactInfo a {
            color: #111;
            letter-spacing: 0;
            opacity: 0.9;
            font-size: 15px;
        }

    .secondaryContent .infoBlock {
        margin-bottom: 30px;
    }

        .secondaryContent .infoBlock h4 {
            font-weight: 600;
            margin-bottom: 10px;
            font-size: 13px;
        }

        .secondaryContent .infoBlock p {
            color: #000;
            letter-spacing: 0;
            font-size: 12px;
            word-break: normal;
        }

    .globalFooter {
        display: none;
    }

    [data-aos^=fade][data-aos^=fade].aos-animate {
        display: none;
    }

    .leftHalf .video-player {
        display: none;
    }

    .introTextforMobile .inlineMenu {
        display: none;
    }

    .infoBanner {
        display: inline-block;
        position: relative;
        width: 100%;
        color: #000;
    }

    .newsection .btn, .rightHalf .btn {
        display: none;
    }

    .twoColumnLayout .tab .secondaryContent .introTextforMobile h1 {
        display: block;
    }

    .mobileTab {
        border-bottom: 0px solid #666;
        margin-left: 0px;
    }

    * {
        -webkit-print-color-adjust: exact;
    }

    .twoColumnLayout .tab .secondaryContent .introTextforMobile .caption .contactInfo {
        display: inline-block;
    }

    .infoBanner.peopleBanner .bannerImg {
        background-image: url();
    }

    .mobileTab:before {
        background: url("");
    }

    .mobileTab:after {
        background: url("");
    }

    img.bio-print-section {
        display: block;
        padding-bottom: 15px;
        margin-left: 0px;
        width: 67%;
        padding-right: 30px;
        border-right: 1px solid #ccc;
        float: left;
    }

    .modal.disclaimer-popup, .disclaimer-container {
        display: none;
    }

    .contactInfo .print-mail {
        display: block;
    }

    .contactInfo .bio-fax {
        display: block;
    }

    .rightHalf.top_pub .block.listView.gridData.clearfix {
        width: 100%;
        float: left;
    }
    /*hide map in location detail page*/
    .mobileMapRightSection .mapSection {
        display: none;
    }
    /* print biodetail page */
    /* print newslanding page */
    .keyword-search.pd-top {
        display: none;
    }

    .table-cell .block p {
        display: inline-block;
    }
    /* print page industries manufacturing section */
    .contactBlock {
        display: none;
    }

    #practice-1 > ul.edylist-group, #sectors-1 > ul.edylist-group {
        display: block;
    }

    .tabsContent.insight-event-content {
        display: none;
    }

    .insight-event-heading {
        display: none;
    }
    /* service pages */
    /*https://uat.btlaw.com/work/industries/agriculture-and-food*/
    .isPracticeDetail.page.practise_outer {
        position: absolute;
        left: 0;
        top: 0;
        min-height: 80vh;
    }

        .isPracticeDetail.page.practise_outer .bio-banner-print {
            position: absolute;
            width: 100%;
            top: 0;
            left: 0;
        }

        .isPracticeDetail.page.practise_outer * {
            font-family: Arial, Helvetica, sans-serif !important;
        }

        .isPracticeDetail.page.practise_outer section.infoBanner {
            display: block;
        }

            .isPracticeDetail.page.practise_outer section.infoBanner .bannerImg {
                display: none;
            }

            .isPracticeDetail.page.practise_outer section.infoBanner .infoBox {
                display: none;
            }

                .isPracticeDetail.page.practise_outer section.infoBanner .infoBox.tintMedium {
                    display: block;
                    height: auto !important;
                    float: left;
                    width: 100%;
                    background-color: transparent;
                    border: 0 !important;
                }

                    .isPracticeDetail.page.practise_outer section.infoBanner .infoBox.tintMedium .mobileTab {
                        margin-left: 0px;
                    }

                    .isPracticeDetail.page.practise_outer section.infoBanner .infoBox.tintMedium .introBox h1 {
                        display: block;
                    }

                    .isPracticeDetail.page.practise_outer section.infoBanner .infoBox.tintMedium .contentMiddle {
                        display: block !important;
                        top: 0;
                        transform: translate(0, 0);
                        padding: 0 !important;
                        margin-top: 15px;
                        border: 0 !important;
                    }

                        .isPracticeDetail.page.practise_outer section.infoBanner .infoBox.tintMedium .contentMiddle .introBox h1 {
                            color: #000;
                            margin-bottom: 0;
                        }

                            .isPracticeDetail.page.practise_outer section.infoBanner .infoBox.tintMedium .contentMiddle .introBox h1 span {
                                color: #000;
                            }

                    .isPracticeDetail.page.practise_outer section.infoBanner .infoBox.tintMedium .explorebtn {
                        display: none;
                    }

                .isPracticeDetail.page.practise_outer section.infoBanner .infoBox.tintDark {
                    display: block;
                    margin-left: 15px;
                    height: auto !important;
                    margin-top: 0px;
                }

                    .isPracticeDetail.page.practise_outer section.infoBanner .infoBox.tintDark .contentMiddle {
                        padding-left: 0px;
                        padding-top: 0;
                    }

                    .isPracticeDetail.page.practise_outer section.infoBanner .infoBox.tintDark .table-cell .block .aos-init.aos-animate {
                        display: block;
                    }

                        .isPracticeDetail.page.practise_outer section.infoBanner .infoBox.tintDark .table-cell .block .aos-init.aos-animate p {
                            font-size: 12px;
                            font-weight: normal;
                        }

                    .isPracticeDetail.page.practise_outer section.infoBanner .infoBox.tintDark .table-cell .block .inlineMenu .socialNav {
                        display: none;
                    }

        .isPracticeDetail.page.practise_outer aside.secondaryContent .desktop_hide {
            display: none;
        }

        .isPracticeDetail.page.practise_outer aside.secondaryContent .overview-section {
            border-bottom: 0;
            padding-bottom: 0;
            font-size: 12px;
        }

            .isPracticeDetail.page.practise_outer aside.secondaryContent .overview-section h2 {
                font-weight: bold;
                font-size: 16px;
            }

            .isPracticeDetail.page.practise_outer aside.secondaryContent .overview-section p {
                margin-bottom: 10px;
            }

                .isPracticeDetail.page.practise_outer aside.secondaryContent .overview-section p:last-of-type {
                    margin-bottom: 0;
                }

        .isPracticeDetail.page.practise_outer aside.secondaryContent .overview-subheding .head a {
            font-size: 12px;
        }

    .isLocationDetail.page.location_detail_outer {
        background-color: transparent;
    }
    /* no tab section  */
    .isPeople.prof_list_new .infoBanner.peopleBanner.no-tab-bio-detail-section {
        display: block;
    }

        .isPeople.prof_list_new .infoBanner.peopleBanner.no-tab-bio-detail-section .infoBox.tintDark.third.new {
            display: none;
        }

        .isPeople.prof_list_new .infoBanner.peopleBanner.no-tab-bio-detail-section .bannerImg, .isPeople.prof_list_new .infoBox.first.new {
            display: none;
        }

        .isPeople.prof_list_new .infoBanner.peopleBanner.no-tab-bio-detail-section .no-tab-infoBox.tintMedium.second.new.no-tab-bio-detail {
            display: block;
        }

        .isPeople.prof_list_new .infoBanner.peopleBanner.no-tab-bio-detail-section .tintMedium.no-tab-bio-detail .introBox {
            display: block;
            padding: 15px 0px;
        }

            .isPeople.prof_list_new .infoBanner.peopleBanner.no-tab-bio-detail-section .tintMedium.no-tab-bio-detail .introBox h1 {
                display: block;
                font-size: 1.667em;
                color: #242738;
            }

                .isPeople.prof_list_new .infoBanner.peopleBanner.no-tab-bio-detail-section .tintMedium.no-tab-bio-detail .introBox h1 div span {
                    font-size: 20px;
                    color: #777779;
                }

            .isPeople.prof_list_new .infoBanner.peopleBanner.no-tab-bio-detail-section .tintMedium.no-tab-bio-detail .introBox .inlineMenu {
                display: none;
            }

            .isPeople.prof_list_new .infoBanner.peopleBanner.no-tab-bio-detail-section .tintMedium.no-tab-bio-detail .introBox .caption {
                border-bottom: 0px solid #b0b8bd;
            }

                .isPeople.prof_list_new .infoBanner.peopleBanner.no-tab-bio-detail-section .tintMedium.no-tab-bio-detail .introBox .caption h4 {
                    font-size: 0.8em;
                }
    /* end no tab section  */
    /* Practices print css start here */
    .isPracticeDetail .pageContent {
        position: static !important;
    }

    .isPracticeDetail .infoBanner {
        width: 67%;
        border-right: 1px solid #ddd;
        padding-right: 30px !important;
    }

    .isPracticeDetail .tabsContent .primaryContent {
        border-right: 1px solid #ddd;
        width: 67% !important;
    }

    .isPracticeDetail .infoBox.tintMedium .contentMiddle {
        margin-top: 0 !important;
    }

    .isPracticeDetail img.bio-print-section {
        padding-right: 30px !important;
    }

    .isPracticeDetail aside.secondaryContent {
        position: absolute;
        right: 0;
        top: 72px;
        padding-left: 0 !important;
        border: none !important;
    }

        .isPracticeDetail aside.secondaryContent .content p {
            font-size: 12px;
            color: #000;
            opacity: 1;
            line-height: 1.28;
            font-weight: normal;
        }

        .isPracticeDetail aside.secondaryContent .overview-subheding {
            border: 0;
            padding-bottom: 0;
        }

            .isPracticeDetail aside.secondaryContent .overview-subheding .content .head a {
                color: #000;
            }

    .isPracticeDetail .edyTabs .tab {
        display: none !important;
    }

        .isPracticeDetail .edyTabs .tab:first-of-type {
            display: block !important;
        }

        .isPracticeDetail .edyTabs .tab .pageContent {
            margin: 0;
            padding: 0;
        }

    h2.covid-headings {
        font-size: 18px !important;
    }

    .isPracticeDetail .edyTabs .tab .practice-main-content h2 {
        margin: 15px 0 0px 0;
        padding: 0;
        font-size: 13px;
    }

    .isPracticeDetail .edyTabs .tab .practice-main-content p {
        margin: 15px 0 0 0;
        color: #000;
        opacity: 1;
        font-size: 12px;
    }

    .unorderedlis-paragraph {
        margin-top: 20px !important;
        margin-bottom: 12px !important;
    }

    .covid-cutoff {
        display: none;
    }

    .isPracticeDetail .edyTabs .tab .practice-main-content p:first-of-type {
        margin-top: 0;
    }

    .isPracticeDetail .edyTabs .tab .practice-main-content .contactInfo p {
        margin-top: 0;
    }

    .isPracticeDetail .edyTabs .tab .practice-main-content ul {
        color: #000 !important;
        opacity: 1;
    }

        .isPracticeDetail .edyTabs .tab .practice-main-content ul li {
            color: rgba(0, 0, 0, 0.99) !important;
            opacity: 1 !important;
            font-size: 12px;
            margin-top: 10px;
            margin-bottom: 0;
            padding-bottom: 0;
            color: #000 !important;
            -webkit-font-smoothing: subpixel-antialiased;
        }

    .isPracticeDetail .trigger {
        display: none;
    }

    .isPracticeDetail .contentMiddle .mobileTab {
        display: none !important;
    }

    .isPracticeDetail .tintMedium {
        margin: 0 !important;
        background: transparent !important;
    }

        .isPracticeDetail .tintMedium .contentMiddle {
            display: none !important;
            margin: 0 !important;
        }

            .isPracticeDetail .tintMedium .contentMiddle h1 {
                text-transform: capitalize;
                font-size: 23px !important;
                margin: 0 0 15px 0 !important;
            }

                .isPracticeDetail .tintMedium .contentMiddle h1 span {
                    text-transform: uppercase;
                    font-size: 14px !important;
                    color: #a93228 !important;
                    margin-bottom: 15px;
                }

        .isPracticeDetail .tintMedium .explorebtn {
            display: none !important;
        }

    .isPracticeDetail img.bio-print-section {
        border-right: 0px solid #ccc;
        padding: 0;
    }

    .isPracticeDetail .infoBox.tintDark {
        width: 100%;
        float: left;
        margin-left: 0 !important;
        background: transparent;
        padding-top: 0 !important;
        margin-top: 0 !important;
        margin-bottom: 15px;
    }

        .isPracticeDetail .infoBox.tintDark .contentMiddle {
            top: 0;
            transform: translateY(0);
            padding: 0px 0 0;
            position: relative;
            margin-top: 0;
        }

            .isPracticeDetail .infoBox.tintDark .contentMiddle p {
                color: #000;
                font-weight: bold;
                margin-bottom: 15px;
                margin-top: 0;
            }

            .isPracticeDetail .infoBox.tintDark .contentMiddle .block {
                margin-bottom: 0;
            }

                .isPracticeDetail .infoBox.tintDark .contentMiddle .block .inlineMenu {
                    display: none;
                }

            .isPracticeDetail .infoBox.tintDark .contentMiddle .aos-init {
                font-size: 13px;
                float: left;
            }

    .isPracticeDetail [data-aos][data-aos][data-aos-duration='1600'] {
        opacity: 1;
        transform: translateY(0px);
    }

    .isPracticeDetail .tabsContent .container {
        margin: 0;
        padding: 0;
    }

    .isPracticeDetail .tabsContent .pageContent .red-text-news-detail {
        margin-top: 15px;
    }

    .isPracticeDetail .tabsContent .practise-leader .vCard {
        /*width: 50%;*/
        margin-bottom: 10px;
    }

        .isPracticeDetail .tabsContent .practise-leader .vCard:nth-child(odd) {
            clear: left;
        }

        .isPracticeDetail .tabsContent .practise-leader .vCard .caption {
            padding: 0;
            margin: 0;
            /*margin-left: 16px;*/
        }

            .isPracticeDetail .tabsContent .practise-leader .vCard .caption address:last-of-type {
                display: none;
            }

            .isPracticeDetail .tabsContent .practise-leader .vCard .caption .social-icon, .isPracticeDetail .tabsContent .practise-leader .vCard .caption .location-text {
                display: none;
            }

        .isPracticeDetail .tabsContent .practise-leader .vCard .figure {
            margin: 0;
            margin: 0;
        }
    /* Practices print css end here */
    /* Location print css start here */
    .isLocationDetail.location_detail_outer {
        position: absolute;
        left: 0;
        top: 0;
        min-height: 80vh;
    }

        .isLocationDetail.location_detail_outer .bio-banner-print {
            position: absolute;
            width: 100%;
            top: 0;
            left: 0;
        }

        .isLocationDetail.location_detail_outer img.bio-print-section {
            display: block;
            width: 67%;
            padding-right: 30px;
            margin-bottom: 0;
            padding-bottom: 0;
            display: block;
            padding-bottom: 15px;
            border-right: none;
            float: none;
            position: absolute;
            left: 0;
            height: 250px !important;
            max-height: 250px !important;
            width: 67%;
            top: 69px;
            max-width: 783px;
        }

        .isLocationDetail.location_detail_outer [data-aos^=fade][data-aos^=fade].aos-animate {
            opacity: 1 !important;
            transform: translate(0) !important;
            display: block;
        }

        .isLocationDetail.location_detail_outer .infoBanner {
            display: block !important;
            width: 67%;
            border-right: 1px solid #ddd;
            display: none !important;
        }

            .isLocationDetail.location_detail_outer .infoBanner .bannerImg {
                display: none;
            }

            .isLocationDetail.location_detail_outer .infoBanner .infoBox {
                display: none;
            }

                .isLocationDetail.location_detail_outer .infoBanner .infoBox.tintMedium {
                    display: block;
                    float: left;
                    height: auto !important;
                    background: transparent !important;
                }

                    .isLocationDetail.location_detail_outer .infoBanner .infoBox.tintMedium .contentMiddle {
                        padding: 0;
                        -moz-transform: translateY(-50%) !important;
                        -o-transform: translateY(-50%) !important;
                        -ms-transform: translateY(-50%) !important;
                        -webkit-transform: translateY(-50%) !important;
                        transform: translateY(0%) !important;
                        top: 0 !important;
                    }

                        .isLocationDetail.location_detail_outer .infoBanner .infoBox.tintMedium .contentMiddle .table-row {
                            float: left;
                            height: 60px;
                        }

                        .isLocationDetail.location_detail_outer .infoBanner .infoBox.tintMedium .contentMiddle h1 {
                            text-transform: capitalize;
                            font-weight: bold;
                            color: #000;
                            font-size: 23px;
                            margin: 0;
                        }

                            .isLocationDetail.location_detail_outer .infoBanner .infoBox.tintMedium .contentMiddle h1 span {
                                font-size: 13px;
                                font-weight: 600;
                                color: #a93228;
                                text-transform: uppercase;
                                margin-bottom: 10px;
                            }

                        .isLocationDetail.location_detail_outer .infoBanner .infoBox.tintMedium .contentMiddle .locationDetailTab, .isLocationDetail.location_detail_outer .infoBanner .infoBox.tintMedium .contentMiddle .mapAddress {
                            display: none !important;
                        }

        .isLocationDetail.location_detail_outer .edyTabs ul.trigger {
            display: none;
        }

        .isLocationDetail.location_detail_outer .edyTabs .tabs {
            margin: 0;
            padding: 0;
        }

            .isLocationDetail.location_detail_outer .edyTabs .tabs .container {
                width: 100%;
                margin: 0;
                padding: 0;
                max-width: 100%;
            }

            .isLocationDetail.location_detail_outer .edyTabs .tabs .pageContent {
                padding: 0;
            }

                .isLocationDetail.location_detail_outer .edyTabs .tabs .pageContent .primaryContent {
                    width: 67% !important;
                    padding-top: 245px !important;
                }

                .isLocationDetail.location_detail_outer .edyTabs .tabs .pageContent .tab {
                    display: none !important;
                }

                    .isLocationDetail.location_detail_outer .edyTabs .tabs .pageContent .tab:first-of-type {
                        display: block !important;
                        width: 67%;
                        padding-right: 30px;
                        border-right: 1px solid #ddd;
                    }

                        .isLocationDetail.location_detail_outer .edyTabs .tabs .pageContent .tab:first-of-type .careerOpp {
                            display: none !important;
                        }

                    .isLocationDetail.location_detail_outer .edyTabs .tabs .pageContent .tab #LocationDetailOverview.paragraph-style-section > p:first-of-type {
                        font-size: 12px;
                        margin-top: 0 !important;
                        padding-top: 0 !important;
                    }

                    .isLocationDetail.location_detail_outer .edyTabs .tabs .pageContent .tab #LocationDetailOverview p {
                        color: #000 !important;
                        font-weight: 100 !important;
                        margin-bottom: 0px;
                        font-size: 12px;
                    }

                    .isLocationDetail.location_detail_outer .edyTabs .tabs .pageContent .tab #LocationDetailOverview li, .isLocationDetail.location_detail_outer .edyTabs .tabs .pageContent .tab #LocationDetailOverview a {
                        font-size: 12px;
                    }

                    .isLocationDetail.location_detail_outer .edyTabs .tabs .pageContent .tab .mobileMapRightSection {
                        display: none !important;
                    }

                .isLocationDetail.location_detail_outer .edyTabs .tabs .pageContent .secondaryContent {
                    border-left: none;
                }

                    .isLocationDetail.location_detail_outer .edyTabs .tabs .pageContent .secondaryContent .careerOpp {
                        display: none !important;
                    }

                    .isLocationDetail.location_detail_outer .edyTabs .tabs .pageContent .secondaryContent li {
                        width: 100%;
                        margin: 0 0 15px 0 !important;
                    }

                        .isLocationDetail.location_detail_outer .edyTabs .tabs .pageContent .secondaryContent li .mapSection, .isLocationDetail.location_detail_outer .edyTabs .tabs .pageContent .secondaryContent li .desktop_hide {
                            display: none !important;
                        }

                        .isLocationDetail.location_detail_outer .edyTabs .tabs .pageContent .secondaryContent li .desktop_hide {
                            display: none !important;
                        }

                        .isLocationDetail.location_detail_outer .edyTabs .tabs .pageContent .secondaryContent li .card.location {
                            display: block !important;
                        }

                            .isLocationDetail.location_detail_outer .edyTabs .tabs .pageContent .secondaryContent li .card.location .mapView {
                                font-weight: normal;
                            }

                            .isLocationDetail.location_detail_outer .edyTabs .tabs .pageContent .secondaryContent li .card.location span, .isLocationDetail.location_detail_outer .edyTabs .tabs .pageContent .secondaryContent li .card.location a {
                                font-size: 14px;
                                color: #000;
                                /* width: 100%;*/
                            }

                            .isLocationDetail.location_detail_outer .edyTabs .tabs .pageContent .secondaryContent li .card.location span {
                                margin-top: 10px;
                                float: left;
                                /*width: 100%;*/
                            }

                            .isLocationDetail.location_detail_outer .edyTabs .tabs .pageContent .secondaryContent li .card.location > div span:last-child {
                                margin-top: 3px;
                            }

                    .isLocationDetail.location_detail_outer .edyTabs .tabs .pageContent .secondaryContent address {
                        color: #000;
                        font-size: 14px;
                        word-break: normal;
                    }

                    .isLocationDetail.location_detail_outer .edyTabs .tabs .pageContent .secondaryContent .related-people-section .unit .people-image {
                        width: 100%;
                    }

                        .isLocationDetail.location_detail_outer .edyTabs .tabs .pageContent .secondaryContent .related-people-section .unit .people-image img {
                            width: calc(70% - 10px);
                        }

                    .isLocationDetail.location_detail_outer .edyTabs .tabs .pageContent .secondaryContent .related-people-section .unit .people-address {
                        width: 100%;
                    }

                        .isLocationDetail.location_detail_outer .edyTabs .tabs .pageContent .secondaryContent .related-people-section .unit .people-address .contactInfo {
                            margin-bottom: 5px;
                        }

                            .isLocationDetail.location_detail_outer .edyTabs .tabs .pageContent .secondaryContent .related-people-section .unit .people-address .contactInfo a {
                                color: #777779;
                            }

                        .isLocationDetail.location_detail_outer .edyTabs .tabs .pageContent .secondaryContent .related-people-section .unit .people-address address span {
                            color: #777779;
                        }

                        .isLocationDetail.location_detail_outer .edyTabs .tabs .pageContent .secondaryContent .related-people-section .unit .people-address .contact-details {
                            font-size: 12px;
                        }

                        .isLocationDetail.location_detail_outer .edyTabs .tabs .pageContent .secondaryContent .related-people-section .unit .people-address .icons .locationBio-email-address {
                            display: block !important;
                        }

                        .isLocationDetail.location_detail_outer .edyTabs .tabs .pageContent .secondaryContent .related-people-section .unit .people-address .icons a {
                            display: none !important;
                        }

    .isLocationDetail .explorebtn.bounce {
        display: none;
    }
    /* Location print css end here */
    /* Alert print css start here */
    .isPeople.govt_relations .container {
        margin: 0;
        padding: 0;
        width: 100%;
        max-width: 100% !important;
    }

    .isPeople.govt_relations .margin-fix-news-detail {
        margin: 0;
        padding: 0;
    }

        .isPeople.govt_relations .margin-fix-news-detail .secondaryContent {
            border-left: 0;
        }

        .isPeople.govt_relations .margin-fix-news-detail .back-heading-news-detail {
            display: none;
        }

        .isPeople.govt_relations .margin-fix-news-detail .event-detail-speaker .paragraph-style-section {
            border-top: 1px solid #ccc;
            margin-top: 15px;
            float: left;
            width: 100%;
        }

            .isPeople.govt_relations .margin-fix-news-detail .event-detail-speaker .paragraph-style-section p:first-of-type {
                color: rgba(0, 0, 0, 0.7);
                font-weight: normal;
            }

        .isPeople.govt_relations .margin-fix-news-detail .news-gap {
            width: 100%;
            border-right: 0px solid #ccc;
            float: left;
            padding-bottom: 0px;
            margin: 0;
        }

            .isPeople.govt_relations .margin-fix-news-detail .news-gap .col-md-12 {
                padding: 0;
            }

            .isPeople.govt_relations .margin-fix-news-detail .news-gap .legal-updates-timing {
                width: 50%;
                float: left;
                margin-top: 15px;
            }

            .isPeople.govt_relations .margin-fix-news-detail .news-gap .event-detail-mobile-section {
                display: none;
            }

        .isPeople.govt_relations .margin-fix-news-detail .primaryContent {
            width: 67%;
            border-right: 1px solid #ccc;
            float: left;
            padding-bottom: 0px;
            padding-right: 30px;
        }

            .isPeople.govt_relations .margin-fix-news-detail .primaryContent .form-group {
                display: none;
            }

            .isPeople.govt_relations .margin-fix-news-detail .primaryContent .blog-content-up.practice-main-content {
                width: 100%;
                border-right: 0px solid #ccc;
                padding-right: 0 !important;
                margin-right: 0 !important;
            }

            .isPeople.govt_relations .margin-fix-news-detail .primaryContent .blog-profeshion.blog-authors {
                border-top: 0;
                padding-top: 7px !important;
                margin-bottom: 0;
                float: left;
            }

            .isPeople.govt_relations .margin-fix-news-detail .primaryContent .blog-content-up.practice-main-content {
                margin-top: 0;
                float: left;
            }

                .isPeople.govt_relations .margin-fix-news-detail .primaryContent .blog-content-up.practice-main-content:nth-of-type(1) {
                    margin-left: 10px;
                }

                .isPeople.govt_relations .margin-fix-news-detail .primaryContent .blog-content-up.practice-main-content > .col-md-12 {
                    display: none;
                }

                    .isPeople.govt_relations .margin-fix-news-detail .primaryContent .blog-content-up.practice-main-content > .col-md-12:first-child {
                        display: block;
                    }

            .isPeople.govt_relations .margin-fix-news-detail .primaryContent .blog-profeshion.blog-authors {
                float: left;
                width: 100%;
            }

                .isPeople.govt_relations .margin-fix-news-detail .primaryContent .blog-profeshion.blog-authors .vCard {
                    margin-bottom: 10px;
                    width: 100%;
                    padding-right: 0px;
                }

                    .isPeople.govt_relations .margin-fix-news-detail .primaryContent .blog-profeshion.blog-authors .vCard figure, .isPeople.govt_relations .margin-fix-news-detail .primaryContent .blog-profeshion.blog-authors .vCard .caption {
                        width: 50%;
                        float: left;
                        padding: 0;
                    }

                    .isPeople.govt_relations .margin-fix-news-detail .primaryContent .blog-profeshion.blog-authors .vCard figure {
                        padding-right: 10px !important;
                    }

                .isPeople.govt_relations .margin-fix-news-detail .primaryContent .blog-profeshion.blog-authors > .col-md-4 {
                    width: 50%;
                    float: left;
                    padding-left: 0;
                    padding-right: 15px;
                }

                    .isPeople.govt_relations .margin-fix-news-detail .primaryContent .blog-profeshion.blog-authors > .col-md-4 .row {
                        float: left;
                        width: 100%;
                        margin: 0;
                    }

            .isPeople.govt_relations .margin-fix-news-detail .primaryContent .row:last-child {
                margin-bottom: 0px !important;
            }

        .isPeople.govt_relations .margin-fix-news-detail .practice-main-content {
            border-right: 0px solid #ccc;
        }

            .isPeople.govt_relations .margin-fix-news-detail .practice-main-content h2 {
                margin-bottom: 15px;
                float: left;
                width: 100%;
            }

                .isPeople.govt_relations .margin-fix-news-detail .practice-main-content h2:first-of-type a {
                    margin-top: 15px;
                }

            .isPeople.govt_relations .margin-fix-news-detail .practice-main-content > .col-md-12 h2:first-of-type a {
                padding-top: 0px;
                float: left;
                margin-top: 0;
            }

        .isPeople.govt_relations .margin-fix-news-detail .infoBlock.news_bottom {
            border-bottom: 1px solid #ccc !important;
            float: left;
            width: 100%;
            padding-bottom: 10px !important;
        }

            .isPeople.govt_relations .margin-fix-news-detail .infoBlock.news_bottom .info-date {
                border-bottom: 0px !important;
                height: auto;
            }

            .isPeople.govt_relations .margin-fix-news-detail .infoBlock.news_bottom .row {
                float: left;
                width: 100%;
            }

                .isPeople.govt_relations .margin-fix-news-detail .infoBlock.news_bottom .row .info-date {
                    padding-bottom: 0px !important;
                    float: left;
                    width: 100%;
                    display: block;
                }

                .isPeople.govt_relations .margin-fix-news-detail .infoBlock.news_bottom .row .col-md-5.col-sm-6 {
                    border: 0 !important;
                }

        .isPeople.govt_relations .margin-fix-news-detail .infoBlock.blog-detail-heading {
            border-bottom: 0px solid #ccc;
            float: left;
            width: 100%;
            padding-right: 0px;
        }

        .isPeople.govt_relations .margin-fix-news-detail .infoBlock.infoBlock-news-detail {
            float: left;
            width: 100%;
        }

            .isPeople.govt_relations .margin-fix-news-detail .infoBlock.infoBlock-news-detail h1 {
                float: left;
            }

                .isPeople.govt_relations .margin-fix-news-detail .infoBlock.infoBlock-news-detail h1.info-date {
                    margin-top: 0px;
                    margin-bottom: 0;
                }

            .isPeople.govt_relations .margin-fix-news-detail .infoBlock.infoBlock-news-detail .info-date {
                padding-right: 0;
                padding-bottom: 0px;
                margin-bottom: 10px;
                margin-top: 10px;
                font-size: 12px;
                float: left;
                width: 100%;
            }

                .isPeople.govt_relations .margin-fix-news-detail .infoBlock.infoBlock-news-detail .info-date span {
                    float: none;
                    display: inline;
                }

                    .isPeople.govt_relations .margin-fix-news-detail .infoBlock.infoBlock-news-detail .info-date span a {
                        font-size: 12px;
                    }

            .isPeople.govt_relations .margin-fix-news-detail .infoBlock.infoBlock-news-detail .inline-menu-icon {
                display: none;
            }

            .isPeople.govt_relations .margin-fix-news-detail .infoBlock.infoBlock-news-detail .row {
                float: left;
                width: 100%;
            }

            .isPeople.govt_relations .margin-fix-news-detail .infoBlock.infoBlock-news-detail div.info-date {
                padding-bottom: 5px !important;
                margin-bottom: 0 !important;
                border-bottom: 1px solid #ccc;
            }

                .isPeople.govt_relations .margin-fix-news-detail .infoBlock.infoBlock-news-detail div.info-date span {
                    padding-bottom: 0 !important;
                    margin-bottom: 0 !important;
                }

        .isPeople.govt_relations .margin-fix-news-detail .practice-main-content {
            width: 100%;
            margin-top: 0 !important;
            float: left;
        }

            .isPeople.govt_relations .margin-fix-news-detail .practice-main-content.row {
                margin: 0;
            }

                .isPeople.govt_relations .margin-fix-news-detail .practice-main-content.row .col-md-12 {
                    padding: 0;
                }

        .isPeople.govt_relations .margin-fix-news-detail .secondaryContent .BlogPrint-Tags.hide {
            padding: 0 !important;
            display: block !important;
        }

            .isPeople.govt_relations .margin-fix-news-detail .secondaryContent .BlogPrint-Tags.hide .news-detail-heading {
                color: #f7a833;
                margin-bottom: 15px;
                font-size: 1.067em;
                font-weight: bold;
            }

            .isPeople.govt_relations .margin-fix-news-detail .secondaryContent .BlogPrint-Tags.hide .news-info-data {
                float: left;
                width: 100%;
                font-size: 15px;
                color: #4d4d4d;
                margin-bottom: 5px;
            }

        .isPeople.govt_relations .margin-fix-news-detail .secondaryContent .innerWrap-Tags-list-fix {
            padding-top: 0px;
            padding-bottom: 30px;
            border-top: 0px solid #d0d0d0;
        }

            .isPeople.govt_relations .margin-fix-news-detail .secondaryContent .innerWrap-Tags-list-fix .event-detail-only-location-card figure {
                width: 60%;
                float: left;
            }

            .isPeople.govt_relations .margin-fix-news-detail .secondaryContent .innerWrap-Tags-list-fix .event-detail-only-location-card address {
                width: 100%;
                float: left;
                clear: both;
            }

                .isPeople.govt_relations .margin-fix-news-detail .secondaryContent .innerWrap-Tags-list-fix .event-detail-only-location-card address span {
                    font-size: 13px;
                    color: #000;
                    font-weight: normal;
                    display: block !important;
                }

                    .isPeople.govt_relations .margin-fix-news-detail .secondaryContent .innerWrap-Tags-list-fix .event-detail-only-location-card address span.hide {
                        display: block !important;
                    }

                .isPeople.govt_relations .margin-fix-news-detail .secondaryContent .innerWrap-Tags-list-fix .event-detail-only-location-card address a p {
                    color: #777779;
                    margin: 5px 0 10px 0;
                    font-size: 15px;
                    font-weight: normal;
                }

            .isPeople.govt_relations .margin-fix-news-detail .secondaryContent .innerWrap-Tags-list-fix .event-detail-only-location-card .ul-location {
                display: none;
            }

        .isPeople.govt_relations .margin-fix-news-detail .secondaryContent .related-people-section {
            border-bottom: 0;
        }

            .isPeople.govt_relations .margin-fix-news-detail .secondaryContent .related-people-section .unit .morepopup {
                display: none;
            }

            .isPeople.govt_relations .margin-fix-news-detail .secondaryContent .related-people-section .people-image {
                width: 66%;
            }

                .isPeople.govt_relations .margin-fix-news-detail .secondaryContent .related-people-section .people-image img {
                    width: 100%;
                }

            .isPeople.govt_relations .margin-fix-news-detail .secondaryContent .related-people-section .people-address {
                width: 100%;
            }

                .isPeople.govt_relations .margin-fix-news-detail .secondaryContent .related-people-section .people-address .icons span.locationBio-email-address {
                    display: block !important;
                    font-size: 12px;
                    color: #000;
                }

                .isPeople.govt_relations .margin-fix-news-detail .secondaryContent .related-people-section .people-address .icons a {
                    display: none;
                }

                .isPeople.govt_relations .margin-fix-news-detail .secondaryContent .related-people-section .people-address h4 {
                    font-size: 11pt;
                }

                .isPeople.govt_relations .margin-fix-news-detail .secondaryContent .related-people-section .people-address address {
                    font-size: 12pt;
                }

                    .isPeople.govt_relations .margin-fix-news-detail .secondaryContent .related-people-section .people-address address:nth-of-type(2) {
                        display: none;
                    }

                .isPeople.govt_relations .margin-fix-news-detail .secondaryContent .related-people-section .people-address .contactInfo a {
                    color: #777779;
                }

                .isPeople.govt_relations .margin-fix-news-detail .secondaryContent .related-people-section .people-address .contact-details * {
                    font-size: 9pt;
                }

        .isPeople.govt_relations .margin-fix-news-detail .secondaryContent .related-article-section {
            display: none;
        }

        .isPeople.govt_relations .margin-fix-news-detail .secondaryContent .related-practice-area {
            border-bottom: 0;
        }

            .isPeople.govt_relations .margin-fix-news-detail .secondaryContent .related-practice-area a {
                font-weight: normal;
                color: #000;
            }

        .isPeople.govt_relations .margin-fix-news-detail .secondaryContent .subscribeBlock {
            display: none;
        }
    /* Alert print css end here */
    .bottom_gap .innerWrap li .vCard img {
        width: 150pt;
    }

    .event-detail-speaker-desktop {
        display: block !important;
    }

        .event-detail-speaker-desktop .col-md-6 {
            width: 47% !important;
            float: none !important;
            display: inline-block !important;
            vertical-align: top !important;
        }

    .vCard .caption h4 a {
        font-size: 11pt;
    }

    .event-detail-speaker-mobile {
        display: none !important;
    }

    .news-landing-card img {
        width: auto !important;
        max-width: 100% !important;
    }

    .event-detail-only-location-card .caption {
        width: 100%;
    }

    .primaryContent .col-md-12 hr {
        display: none !important;
    }

    .primaryContent .event-detail-desktop-section {
        display: none !important;
    }

    .secondaryContent .btn.btn-submit.view-all-button.morepopup {
        display: none !important;
    }

    .primaryContent .infoBlock .info-data {
        font-size: 18pt !important;
    }

    .infoBanner.peopleBanner .infoBox.tintMedium {
        display: none;
    }

    .isPeople.page {
        position: static !important;
        left: auto !important;
        top: auto !important;
        padding-top: 0 !important;
    }

    .related-people-section .people-address h4 a {
        word-break: none !important;
    }
    /*BTLAW-982*/
    .covid-insight-and-event-block {
        display: none;
    }

    .overview-subheding .content .head {
        margin-bottom: 8.8px;
    }
}

@media print {
    body .pageContent.pageContentContentForBtvalueCareer {
        display: contents !important;
    }

    .primaryContentForBtvalueCareer h2 {
        margin-bottom: 6px;
    }

    .primaryContentForBtvalueCareer .row {
        margin-left: -30px;
    }

    .secondaryContent.secondaryContentForBtvalueCareer {
        position: absolute;
        right: 0;
    }

        .secondaryContent.secondaryContentForBtvalueCareer .related-people-section .people-address .icons a .fa-phone {
            display: none;
        }

        .secondaryContent.secondaryContentForBtvalueCareer .related-people-section .row.unit .people-image, .secondaryContent.secondaryContentForBtvalueCareer .related-people-section .row.unit .people-address {
            width: 100%;
        }

    .secondaryContentForBtvalueCareer .innerWrap.desktop_hide hr {
        display: none;
    }

    .secondaryContent.secondaryContentForBtvalueCareer .innerWrap {
        display: block;
    }

        .secondaryContent.secondaryContentForBtvalueCareer .innerWrap.right_law {
            display: none;
        }

        .secondaryContent.secondaryContentForBtvalueCareer .innerWrap li h3 {
            margin-bottom: 0px;
        }

            .secondaryContent.secondaryContentForBtvalueCareer .innerWrap li h3 a {
                word-break: break-word;
            }

    .primaryContent .mobile_block {
        display: none;
    }

    .primaryContent .row-margin-law-student-detail {
        display: none
    }
    /*.secondaryContentForBtvalueCareer .innerWrap hr{
		border: none!important;
	}*/
    .secondaryContentForBtvalueCareer .innerWrap li {
        border: none !important;
    }

    .touchdeviceipad .pageContent.pageContentContentForBtvalueCareer {
        display: contents !important;
    }

    .touchdeviceipad .secondaryContentForBtvalueCareer .related-people-section .people-address h4 a {
        word-break: break-word;
    }

    .touchdeviceipad .primaryContent.primaryContentForBtvalueCareer p {
        display: inline-flex;
    }


    /*.touchdeviceipad .primaryContent p.clientDrivenParagraph{
		line-height: 1.5;
		
	}*/
    .touchdeviceipad .primaryContent p.attorneysParagraph {
        line-height: 1.4;
        display: block;
    }

    .touchdeviceipad .primaryContent p.judicialParagraph {
        line-height: 1.6;
        display: block;
    }

    .touchdeviceipad .primaryContent p.lawStudentsParagraph {
        line-height: 19px;
        display: block;
    }

    @media (max-width: 900px) {
        .touchdeviceipad .primaryContent p.professionalStaffParagraph {
            line-height: 1.4;
            display: block;
        }
    }

    @media (min-width: 901px) {
        .touchdeviceipad .primaryContent p.professionalStaffParagraph {
            line-height: 17pt;
            display: block;
        }
    }

    .touchdeviceipad .primaryContent .pricingSolutionList {
        line-height: 1.4;
    }

    .touchdeviceipad .primaryContent p.collaborativeParagraph {
        display: block;
        line-height: 20px;
    }

    .touchdeviceipad .isLocationDetail.locationdetail_outer .edyTabs .tabs .pageContent .secondaryContent li .card.location span {
        margin-top: 10px;
        float: left;
        border-left: none;
        padding-left: 0px;
        margin-left: 0px;
    }

    .touchdeviceipad .isLocationDetail.location_detail_outer .edyTabs .tabs .pageContent .secondaryContent li .card.location a {
        width: auto !important;
    }

    .touchdeviceipad .isLocationDetail.location_detail_outer .edyTabs .tabs .pageContent .secondaryContent li .card.location span {
        width: auto;
    }

    .touchdeviceipad .row.location-person-detail-row {
        display: initial;
    }

    .touchdeviceipad .isPracticeDetail .pageContent {
        position: relative !important;
    }

    .touchdeviceipad .vCard.location-person-detail {
        width: 100%;
    }

    .touchdeviceipad .vCard .row.location-person-detail-row {
        display: inline-block;
        width: 100%;
    }

    .touchdeviceipad .vCard .row .location-person-detail-image {
        width: 50%;
    }

        .touchdeviceipad .vCard .row .location-person-detail-image img {
            width: 100%;
        }

    .touchdeviceipad .caption.col-xs-6.col-sm-12.location-person-detail-caption {
        width: 50%;
        max-height: 100%
    }

    .touchdeviceipad .isPracticeDetail aside.secondaryContentRelative {
        position: relative !important;
        right: 0 !important;
        margin-top: -460px !important;
        padding-left: 0 !important;
        border: none !important;
        margin-bottom: 50px !important;
    }

    .touchdeviceipad .isPracticeDetail aside.secondaryContentAbsolute {
        position: absolute;
        right: 0;
        top: -400px !important;
        padding-left: 0 !important;
        border: none !important;
        margin-left: 0px;
        margin-bottom: 50px;
    }

    .touchdeviceipad .isPracticeDetail aside.secondaryContent.insuranceRecovery {
        top: -450px !important;
    }

    .touchdeviceipad .isPracticeDetail aside.secondaryContent.secondaryContentCorporate {
        margin-top: -490px !important;
    }

    .touchdeviceipad .isPracticeDetail.practise_outer .infoBanner {
        position: relative;
        top: 40px;
    }

    .touchdeviceipad .isPracticeDetail .infoBox.tintDark.insuranceInfobox {
        position: relative !important;
        top: 20px !important;
    }

    .touchdeviceipad .isPracticeDetail .infoBox.tintDark.environmentalInfobox {
        position: relative !important;
        top: 25px !important;
    }

    .touchdeviceipad .isPracticeDetail.practise_outer .pageContent .practise-leader {
        display: contents !important;
    }

    .touchdeviceipad .isPracticeDetail .infoBox.tintDark.corporateInfobox {
        position: relative !important;
        top: 20px !important;
    }

    .touchdeviceipad .isPracticeDetail aside.secondaryContent.governmentSecondaryContent {
        position: relative !important;
        top: -300px !important;
    }

    .touchdeviceipad .isPracticeDetail aside.secondaryContent.mergerSecondaryContent {
        top: -500px !important;
    }

    .touchdeviceipad .isPracticeDetail.page.practise_outer section.infoBanner .infoBox.tintDark.mergerInfobox {
        position: relative !important;
        top: 45px !important;
    }

    .touchdeviceipad .isPracticeDetail.page.practise_outer section.infoBanner .infoBox.tintDark.governmentEnglishInfobox {
        position: relative !important;
        top: 35px !important;
    }

    .touchdeviceipad .isPracticeDetail aside.secondaryContent.governmentEnglishSecondaryContent {
        position: relative !important;
        top: -425px !important;
    }
    /*.touchdeviceipad .overview-subheding .content .head {
    margin-bottom: 0.50em;
}*/

    @-moz-document url-prefix() {
        .secondaryContent.secondaryContentForBtvalueCareer .innerWrap li h3 {
            /*margin-bottom: 0px !important;
			line-height: 1.1;*/
        }


        body .pageContent.pageContentContentForBtvalueCareer {
            display: contents !important;
        }

        .container {
            max-width: 100%;
        }

        .isPracticeDetail .tabsContent .practise-leader .vCard {
            margin-bottom: 20px !important;
        }

        .isPracticeDetail aside.secondaryContentRelative {
            position: relative;
            right: 0;
            margin-top: -443px;
            top: 0 !important;
            padding-left: 0 !important;
            border: none !important;
            margin-left: 0px;
            margin-bottom: 50px;
        }

        .isPracticeDetail aside.secondaryContentAbsolute {
            position: absolute;
            right: 0;
            top: 72 !important;
            padding-left: 0 !important;
            border: none !important;
            margin-left: 0px;
            margin-bottom: 50px;
        }
        /*.isPracticeDetail aside.secondaryContent.insuranceRecovery {
	margin-top:-555px;
}*/
        .isPracticeDetail aside.secondaryContent.secondaryContentCorporate {
            margin-top: -470px;
        }

        .isPracticeDetail.page.practise_outer section.infoBanner .infoBox.tintMedium .contentMiddle {
            margin-top: -3em !important;
        }

        .location-person-detail .location-person-detail-row .location-person-detail-image a img {
            width: 210px;
            height: 120px
        }
    }
}

@media print and (max-width: 40em) {


    .secondaryContent.secondaryContentForBtvalueCareer .innerWrap li h3 {
        margin-bottom: -4px !important;
    }

    .isPracticeDetail aside.secondaryContentRelative {
        position: relative;
        right: 0;
        margin-top: -455px !important;
        padding-left: 0 !important;
        border: none !important;
        top: 0px !important;
    }

    .isPracticeDetail aside.secondaryContentAbsolute {
        position: absolute;
        right: 0;
        top: 72px !important;
        padding-left: 0 !important;
        border: none !important;
    }
    /*.isPracticeDetail aside.secondaryContent.insuranceRecovery {
	margin-top:-565px!important;
}*/
    .isPracticeDetail aside.secondaryContent.secondaryContentCorporate {
        margin-top: -490px !important;
    }

    .isPracticeDetail aside.secondaryContent.secondaryContentRelative.tinDarkSecondaryContent {
        margin-top: -435px !important;
    }
}

@media print and (orientation: landscape) {
    body .pageContent.pageContentContentForBtvalueCareer {
        display: contents !important;
    }

    .touchdeviceipad .secondaryContentForBtvalueCareer .quick-links-law-student-detail .quick-heading {
        margin-top: 20px !important
    }

    .isPracticeDetail aside.secondaryContentRelative {
        position: relative;
        right: 0;
        margin-top: -603px;
        padding-left: 0 !important;
        border: none !important;
        margin-bottom: 50px;
    }

    .isPracticeDetail aside.secondaryContentAbsolute {
        position: absolute;
        right: 0;
        top: 72px;
        padding-left: 0 !important;
        border: none !important;
        margin-bottom: 50px;
    }
    /*.isPracticeDetail aside.secondaryContent.insuranceRecovery {
	margin-top:-625px;
}*/
    .isPracticeDetail aside.secondaryContent.secondaryContentCorporate {
        margin-top: -631px;
    }

    .isPracticeDetail aside.secondaryContent.secondaryContentRelative.tinDarkSecondaryContent {
        margin-top: -584px;
    }

    @-moz-document url-prefix() {
        .secondaryContent.secondaryContentForBtvalueCareer .innerWrap li h3 {
            margin-bottom: 0px !important;
            line-height: 1;
        }

        body .pageContent.pageContentContentForBtvalueCareer {
            display: contents !important;
        }

        .secondaryContent.secondaryContentForBtvalueCareer .innerWrap li h3 a {
            font-size: 14px;
        }

        .isPracticeDetail .edyTabs .tab .practice-main-content p:first-of-type {
            margin-top: 15px !important;
        }
        /*.isPracticeDetail .pageContent .primaryContent .practice-main-content{
		width: 130%;
	}*/

        .isPracticeDetail .tabsContent .practise-leader .vCard {
            margin-bottom: 20px !important;
        }

            .isPracticeDetail .tabsContent .practise-leader .vCard.governmentVcard {
                margin-bottom: 55px !important;
            }

        .isPracticeDetail aside.secondaryContentRelative {
            position: relative;
            right: -21%;
            margin-top: -528px !important;
            top: 0 !important;
            padding-left: 0 !important;
            border: none !important;
            margin-left: 0px;
        }

        .isPracticeDetail aside.secondaryContentAbsolute {
            position: absolute;
            top: 72px !important;
            padding-left: 0 !important;
            border: none !important;
            margin-left: 0px;
        }
        /*.isPracticeDetail aside.secondaryContent.insuranceRecovery {
	margin-top:-635px!important;
}*/
        .isPracticeDetail aside.secondaryContent.secondaryContentCorporate {
            margin-top: -560px;
        }

        .isPracticeDetail.page.practise_outer section.infoBanner .infoBox.tintMedium .contentMiddle {
            top: 18px !important;
        }

        .isPracticeDetail.page.practise_outer section.infoBanner .infoBox.tintMedium .contentMiddle {
            margin-top: 0 !important;
        }

        .isPracticeDetail .tabsContent .practise-leader .vCard {
            width: 50%;
        }

            .isPracticeDetail .tabsContent .practise-leader .vCard .caption {
                margin-left: 16px;
            }
    }
}


/*close section for contact us*/
.close-captcha {
    color: #aaaaaa;
    float: right;
    font-size: 21pt;
    font-weight: bold;
    margin-top: -10px;
    border-radius: 50%;
    background: #f1f1f1;
    width: 36px;
    padding-left: 0.38em;
    margin-right: -25px;
}

    .close-captcha:hover, .close-captcha:focus {
        color: #000;
        text-decoration: none;
        cursor: pointer;
    }

/*css for side bar */
.mCSB_container ul li figure img {
    width: 100%;
}

/* end css for side bar */
@media (min-width: 768px) {
    .edyTabs .tabs .tab .tabsContent .container .pageContent {
        padding: 5em 0;
    }
}

.infoBlock.infoBlock-news-detail.infoblock-news-heading.infoblock-news-heading .info-date.col-md-7 {
    line-height: 1.5;
}

/*for modal*/
.video-popup.modal {
    padding-top: 5vh;
}

    .video-popup.modal .modal-dialog .modal-content {
        width: 90vw;
        max-width: 160.78vh;
        /* 16/9 = 1.778 */
    }

        .video-popup.modal .modal-dialog .modal-content iframe {
            height: 56.25vw;
            /* height:width ratio = 9/16 = .5625  */
            max-height: calc(90vh - 26px);
        }

.locationDropdown .filter-sortBy {
    margin-top: 1.4em;
}

    .locationDropdown .filter-sortBy .sbHolder {
        margin-bottom: 0;
        margin-top: 0;
    }

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    .primaryContent .infoBlock img.info-image {
        max-width: 155px;
    }
}



@media print {
    /*.caption.col-xs-6.col-sm-12.location-person-detail-caption{
		overflow: hidden;
	}*/

}

@media print and (orientation: portrait) and (-ms-high-contrast: none), (-ms-high-contrast: active) and (max-width: 40em) {
    .secondaryContent.secondaryContentForBtvalueCareer .innerWrap li h3 {
        margin-bottom: -4px;
    }

    .isPracticeDetail aside.secondaryContent {
        position: absolute !important;
        right: 0px;
        top: -29em !important;
        padding-left: 0px !important;
        border: none !important;
    }

    .secondaryContent.secondaryContentForBtvalueCareer {
        padding-top: 0px !important;
        margin-top: -0.5em !important
    }

    .isPracticeDetail aside.secondaryContent.insuranceRecovery {
        position: absolute !important;
        right: 0px;
        top: -33em !important;
        padding-left: 0px !important;
        border: none !important;
    }

    .isPracticeDetail aside.secondaryContent.secondaryContentCorporate {
        position: absolute !important;
        right: 0px;
        top: -31em !important;
        padding-left: 0px !important;
        border: none !important;
    }

    .isPracticeDetail aside.secondaryContent.covidSecondaryContent {
        top: -30em !important;
    }

    .isPracticeDetail aside.secondaryContent.covidjapaneseSecondaryContent {
        top: -29em !important;
    }

    .isPracticeDetail aside.secondaryContent.secondaryContentRelative.tinDarkSecondaryContent {
        margin-top: 1em !important;
    }

    .isPracticeDetail aside.secondaryContent.governmentSecondaryContent {
        margin-top: 5em !important;
    }

    .isPracticeDetail aside.secondaryContent.governmentEnglishSecondaryContent {
        top: -33em !important;
    }


    .isPracticeDetail aside.secondaryContent.taxSecondaryContent {
        position: relative !important;
        right: 0px;
        top: 0em !important;
        padding-left: 0px !important;
        border: none !important;
        margin-top: -29em !important;
    }

    .isPracticeDetail aside.secondaryContent.mergerSecondaryContent {
        position: absolute !important;
        right: 0px;
        top: -29em !important;
        padding-left: 0px !important;
        border: none !important;
        margin-top: -8em !important;
    }
}

@media print and (orientation: landscape) and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    .secondaryContent.secondaryContentForBtvalueCareer .innerWrap li h3 {
        margin-bottom: 2px !important;
    }

    .container {
        max-width: 100%;
    }

    .secondaryContent.secondaryContentForBtvalueCareer {
        padding-top: 0px !important;
        margin-top: -2em !important
    }

    .secondaryContentForBtvalueCareer .innerWrap.desktop_hide hr {
        display: none;
    }

    .secondaryContentForBtvalueCareer {
        border-left: none !important;
    }

    .isPracticeDetail .edyTabs .tab .practice-main-content p:first-of-type {
        margin-top: 15px !important;
    }
    /*.isPracticeDetail .pageContent .primaryContent .practice-main-content{
		width: 125%;
	}*/

    .isPracticeDetail.page.practise_outer section.infoBanner .infoBox.tintMedium .contentMiddle {
        top: 18px !important;
    }

    .isPracticeDetail aside.secondaryContent .overview-section .content p a img {
        height: 195px;
        width: 293px;
    }


    .isPracticeDetail aside.secondaryContent {
        position: absolute !important;
        left: 43em !important;
        top: -34em !important;
        padding-left: 0px !important;
        border: none !important;
        margin-top: 0px !important
    }

        .isPracticeDetail aside.secondaryContent.insuranceRecovery {
            position: absolute !important;
            left: 43em !important;
            top: -37em !important;
            float: right !important;
            width: 35% !important;
            border: none !important;
        }

        .isPracticeDetail aside.secondaryContent.secondaryContentCorporate {
            position: absolute !important;
            left: 43em !important;
            top: -36em !important;
            float: right !important;
            width: 35% !important;
            border: none !important;
            margin-top: 0px !important;
        }

        .isPracticeDetail aside.secondaryContent.covidSecondaryContent {
            top: -34em !important;
        }

        .isPracticeDetail aside.secondaryContent.covidjapaneseSecondaryContent {
            top: -34em !important;
        }

        .isPracticeDetail aside.secondaryContent.secondaryContentRelative.tinDarkSecondaryContent {
            margin-top: 1em !important;
        }

        .isPracticeDetail aside.secondaryContent.governmentSecondaryContent {
            margin-top: 3em !important;
        }

        .isPracticeDetail aside.secondaryContent.governmentEnglishSecondaryContent {
            top: -36em !important;
        }

        .isPracticeDetail aside.secondaryContent.mergerSecondaryContent {
            margin-top: -5em !important;
        }

    .isPracticeDetail .infoBox.tintMedium .contentMiddle {
        margin-top: 3em !important;
    }

    .row.flexWrap.practise-leader {
        display: block;
    }
}

@media print and (-ms-high-contrast: none), (-ms-high-contrast: active) and (max-width: 40em) {

    .secondaryContentForBtvalueCareer .innerWrap.culture-gap .block p img {
        width: 300px;
        height: 150px;
    }

    .secondaryContent.secondaryContentForBtvalueCareer .innerWrap li h3 a {
        word-break: normal;
    }

    .isPracticeDetail aside.secondaryContent .overview-section .content p a img {
        height: 160px;
        width: 270px;
    }

    .isPracticeDetail aside.secondaryContent .overview-section .content p a img {
        width: 100%;
    }

    .row.location-person-detail-row {
        display: initial;
    }

    .isPracticeDetail .pageContent {
        position: relative !important;
    }

    /* .isPracticeDetail aside.secondaryContent {
    position: absolute;
    right: 0px;
    top: -40em;
    padding-left: 0px !important;
    border: none !important;
	
	
	}*/
    /*.isPracticeDetail.page.practise_outer section.infoBanner .infoBox.tintMedium .contentMiddle {
		margin-top: 6%!important;
	}*/

    .vCard.location-person-detail {
        width: 100%;
    }

    .vCard .row.location-person-detail-row {
        display: inline-block;
        width: 100%;
    }

    .vCard .row .location-person-detail-image {
        width: 50%;
    }

        .vCard .row .location-person-detail-image img {
            width: 100%;
        }

    .caption.col-xs-6.col-sm-12.location-person-detail-caption {
        width: 50%;
        max-height: 100%
    }

    .isPeople.govt_relations .margin-fix-news-detail .primaryContent {
        padding-right: 20pt !important;
    }

    .news-landing-card img {
        width: 60pt !important;
    }

    .event-detail-speaker .news-landing-card .caption {
        padding-left: 10px;
    }
}
/*Ipad print issue*/


.breifcase {
    position: absolute;
    top: 10px;
    right: 108px;
}

@media (min-width: 768px) {
    .breifcase {
        right: 225px;
    }
}

.breifcase span {
    display: none;
}

@media (min-width: 768px) {
    .breifcase span {
        display: inline-block;
    }
}

.breifcase span a {
    color: #b8b4b4;
}

.breifcase a .fa-briefcase {
    margin-left: 5px;
    font-size: 21px;
    color: #b8b4b4;
}

.sb-search.sb-search-open {
    background-color: transparent;
    z-index: 1;
}

@media (min-width: 768px) {
    .sb-search.sb-search-open {
        background-color: #363a49;
    }
}

.pageContent .briefcase-container {
    width: 100%;
    float: left;
    margin-top: 30px;
}

@media (min-width: 768px) {
    .pageContent .briefcase-container {
        margin-top: 100px;
        min-height: 70vh;
    }
}

.pageContent .briefcase-container .briefcase-heading {
    width: 100%;
    float: left;
}

    .pageContent .briefcase-container .briefcase-heading h1 {
        color: #000;
        width: 100%;
        float: left;
    }

    .pageContent .briefcase-container .briefcase-heading .briefcase-content {
        line-height: 1.7em;
        width: 100%;
        float: left;
    }

.pageContent .briefcase-container .briefcase-section {
    width: 100%;
    float: left;
    margin-top: 50px;
}

    .pageContent .briefcase-container .briefcase-section .page-heading h3 {
        font-size: 22px;
        color: #b6b6b6;
    }

    .pageContent .briefcase-container .briefcase-section .page-emport {
        width: 100%;
        float: left;
        margin-top: 25px;
        border-bottom: 1px solid #aaa;
        padding-bottom: 20px;
    }

@media (min-width: 768px) {
    .pageContent .briefcase-container .briefcase-section .page-emport {
        width: 97%;
    }
}

.pageContent .briefcase-container .briefcase-section .page-emport .select-section {
    font-weight: 600;
    width: 100%;
    float: left;
    margin-bottom: 10px;
}

@media (min-width: 768px) {
    .pageContent .briefcase-container .briefcase-section .page-emport .select-section {
        width: 50%;
        margin-bottom: 0px;
    }
}

.pageContent .briefcase-container .briefcase-section .page-emport .select-section span.verticle-bar {
    padding: 0px 10px;
}

.pageContent .briefcase-container .briefcase-section .page-emport .select-section span a {
    color: #000;
}

.pageContent .briefcase-container .briefcase-section .page-emport .file-section {
    width: 100%;
    float: left;
}

@media (min-width: 768px) {
    .pageContent .briefcase-container .briefcase-section .page-emport .file-section {
        width: 50%;
    }
}

.pageContent .briefcase-container .briefcase-section .page-emport .file-section .email-page {
    width: 100%;
    float: left;
    padding: 8px 0px;
    text-align: center;
    cursor: pointer;
    margin-bottom: 15px;
}

@media (min-width: 768px) {
    .pageContent .briefcase-container .briefcase-section .page-emport .file-section .email-page {
        margin: 0 3%;
        width: 44%;
    }
}

.pageContent .briefcase-container .briefcase-section .page-emport .file-section .email-page a {
    color: #fff;
}

.pageContent .briefcase-container .briefcase-section .page-emport .file-section .genrate-pdf {
    padding: 8px 0px;
    text-align: center;
    width: 100%;
    float: left;
    cursor: pointer;
}

@media (min-width: 768px) {
    .pageContent .briefcase-container .briefcase-section .page-emport .file-section .genrate-pdf {
        width: 50%;
    }
}

.pageContent .briefcase-container .briefcase-section .page-emport .file-section .genrate-pdf a {
    color: #fff;
}

.pageContent .briefcase-container .briefcase-section .page-label {
    width: 100%;
    float: left;
    color: #bbb;
    font-weight: 600;
    margin: 30px 0 30px 0px;
    font-size: 16px;
}

.pageContent .briefcase-container .briefcase-section .page-container {
    width: 100%;
    float: left;
}

    .pageContent .briefcase-container .briefcase-section .page-container .unit {
        width: 100%;
        float: left;
    }

@media (min-width: 768px) {
    .pageContent .briefcase-container .briefcase-section .page-container .unit {
        width: 48%;
        margin-right: 2%;
    }
}

@media (min-width: 1170px) {
    .pageContent .briefcase-container .briefcase-section .page-container .unit {
        width: 30%;
        margin-right: 3%;
    }
}

.pageContent .briefcase-container .briefcase-section .page-container .unit .buttons {
    width: 100%;
    float: left;
}

    .pageContent .briefcase-container .briefcase-section .page-container .unit .buttons .left-check {
        width: 50%;
        float: left;
        text-align: left;
        /* The container */
        /* Hide the browser's default checkbox */
        /* Create a custom checkbox */
        /* On mouse-over, add a grey background color */
        /* When the checkbox is checked, add a blue background */
        /* Create the checkmark/indicator (hidden when not checked) */
        /* Show the checkmark when checked */
        /* Style the checkmark/indicator */
    }

        .pageContent .briefcase-container .briefcase-section .page-container .unit .buttons .left-check .container {
            width: 22px;
            float: left;
            display: block;
            position: relative;
            margin-bottom: 12px;
            cursor: pointer;
            font-size: 22px;
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            user-select: none;
        }

            .pageContent .briefcase-container .briefcase-section .page-container .unit .buttons .left-check .container input {
                position: absolute;
                opacity: 0;
                cursor: pointer;
                width: 22px;
            }

        .pageContent .briefcase-container .briefcase-section .page-container .unit .buttons .left-check .checkmark {
            position: absolute;
            top: 0;
            left: 0;
            height: 25px;
            width: 25px;
            background-color: #fff;
            border-radius: 6px;
            border: 1px solid #ccc;
        }

        .pageContent .briefcase-container .briefcase-section .page-container .unit .buttons .left-check .container:hover input ~ .checkmark {
            background-color: #ccc;
        }

        .pageContent .briefcase-container .briefcase-section .page-container .unit .buttons .left-check .container input:checked ~ .checkmark {
            background-color: #ee832e;
            border: 1px solid #ee832e;
        }

        .pageContent .briefcase-container .briefcase-section .page-container .unit .buttons .left-check .checkmark:after {
            content: "";
            position: absolute;
            display: none;
        }

        .pageContent .briefcase-container .briefcase-section .page-container .unit .buttons .left-check .container input:checked ~ .checkmark:after {
            display: block;
        }

        .pageContent .briefcase-container .briefcase-section .page-container .unit .buttons .left-check .container .checkmark:after {
            left: 8px;
            top: 4px;
            width: 5px;
            height: 10px;
            border: solid white;
            border-width: 0 3px 3px 0;
            -webkit-transform: rotate(45deg);
            -ms-transform: rotate(45deg);
            transform: rotate(45deg);
        }

    .pageContent .briefcase-container .briefcase-section .page-container .unit .buttons .right-check {
        width: 50%;
        float: left;
        text-align: right;
    }

        .pageContent .briefcase-container .briefcase-section .page-container .unit .buttons .right-check .fa-window-close {
            color: #aaa;
            font-size: 25px;
            cursor: pointer;
        }

.pageContent .briefcase-container .briefcase-section .page-container .unit .content {
    width: 100%;
    overflow: hidden;
    border: 1px solid #ccc;
    height: 300px;
    margin: 45px 0px;
    padding: 0px;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

    .pageContent .briefcase-container .briefcase-section .page-container .unit .content .breifcase-inner {
        padding: 20px;
        height: auto;
        overflow: hidden;
        max-height: 280px;
    }

    .pageContent .briefcase-container .briefcase-section .page-container .unit .content .heading {
        font-size: 14px;
        color: #4fc6de;
    }

    .pageContent .briefcase-container .briefcase-section .page-container .unit .content .sub-heading {
        color: #bbb;
        font-size: 14px;
        margin-top: 30px;
    }

    .pageContent .briefcase-container .briefcase-section .page-container .unit .content .main-heading {
        font-size: 20px;
        font-weight: 600;
    }

        .pageContent .briefcase-container .briefcase-section .page-container .unit .content .main-heading a {
            color: #000;
            cursor: pointer;
            -moz-transition: all 0.3s ease;
            -o-transition: all 0.3s ease;
            -webkit-transition: all 0.3s ease;
            transition: all 0.3s ease;
        }

            .pageContent .briefcase-container .briefcase-section .page-container .unit .content .main-heading a:hover {
                color: #4fc6de;
            }

    .pageContent .briefcase-container .briefcase-section .page-container .unit .content .discrition {
        height: auto;
        color: #000;
        margin-top: 20px;
        font-size: 14px;
        overflow: hidden;
    }

    .pageContent .briefcase-container .briefcase-section .page-container .unit .content.active {
        border: 6px solid #ee832e;
    }

.briefcase.modal .modal-header .close {
    background: #f1f1f1;
    padding-left: 0px;
    position: relative;
    top: 45px;
    right: 10px;
    z-index: 1;
}

.briefcase.modal .modal-content {
    width: 90%;
    padding: 0;
    border: none;
}

@media (min-width: 768px) {
    .briefcase.modal .modal-content {
        width: 65%;
    }
}

.briefcase.modal .modal-body .mail-container {
    width: 100%;
    float: left;
}

    .briefcase.modal .modal-body .mail-container .mail-left {
        position: relative;
        width: 100%;
        height: 500px;
        float: left;
        background: url(../images/briefcase/back_1.png);
        background-size: 38% auto;
        background-color: #009ab1;
        background-repeat: no-repeat;
        background-position: 1% 30px;
    }

@media (min-width: 768px) {
    .briefcase.modal .modal-body .mail-container .mail-left {
        width: 50%;
    }
}

.briefcase.modal .modal-body .mail-container .mail-left .left-content {
    width: 100%;
    float: left;
    text-align: center;
    margin-top: 60px;
}

    .briefcase.modal .modal-body .mail-container .mail-left .left-content .heading {
        font-size: 30px;
        color: #fff;
        letter-spacing: 1px;
    }

    .briefcase.modal .modal-body .mail-container .mail-left .left-content .content {
        color: #fff;
        padding: 10px 14%;
    }

.briefcase.modal .modal-body .mail-container .mail-left .left-image img {
    text-align: center;
    clear: both;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translatex(-50%);
    width: 250px;
}

.briefcase.modal .modal-body .mail-container .mail-left .left-image2 {
    width: 100%;
    /* TEXT-ALIGN: CENTER; */
    text-align: center;
    margin-top: 30px;
    float: left;
}

.briefcase.modal .modal-body .mail-container .mail-left2 {
    background: url(../images/briefcase/brief-background.png);
    position: relative;
    width: 100%;
    height: 500px;
    float: left;
    background-size: 100% auto;
    background-color: #009ab1;
    background-repeat: no-repeat;
    background-position: 6% 100%;
}

@media (min-width: 768px) {
    .briefcase.modal .modal-body .mail-container .mail-left2 {
        width: 50%;
    }
}

.briefcase.modal .modal-body .mail-container .mail-right {
    width: 100%;
    background-color: #fff;
    height: 500px;
    float: left;
}

@media (min-width: 768px) {
    .briefcase.modal .modal-body .mail-container .mail-right {
        width: 50%;
    }
}

.briefcase.modal .modal-body .mail-container .mail-right .form-container {
    margin-top: 25px;
    padding: 0px 10%;
}

@media (min-width: 768px) {
    .briefcase.modal .modal-body .mail-container .mail-right .form-container {
        margin-top: 125px;
    }
}

.briefcase.modal .modal-body .mail-container .mail-right .form-container .form-group {
    margin-bottom: 15px;
}

    .briefcase.modal .modal-body .mail-container .mail-right .form-container .form-group .form-heading {
        font-size: 18px;
        color: #000;
        font-weight: 600;
        margin-bottom: 15px;
    }

        .briefcase.modal .modal-body .mail-container .mail-right .form-container .form-group .form-heading span {
            color: #aaa;
        }

    .briefcase.modal .modal-body .mail-container .mail-right .form-container .form-group textarea {
        height: 100px;
    }

    .briefcase.modal .modal-body .mail-container .mail-right .form-container .form-group .send {
        width: 70%;
        float: left;
    }

@media (min-width: 768px) {
    .briefcase.modal .modal-body .mail-container .mail-right .form-container .form-group .send {
        width: 50%;
    }
}

.briefcase.modal .modal-body .mail-container .mail-right .form-container .form-group .send a {
    padding: 10px 20px;
}

.briefcase.modal .modal-body .mail-container .mail-right .form-container .form-group .cancel {
    width: 30%;
    float: left;
}

@media (min-width: 768px) {
    .briefcase.modal .modal-body .mail-container .mail-right .form-container .form-group .cancel {
        width: 50%;
    }
}

.briefcase.modal .modal-body .mail-container .mail-right .form-container .form-group .cancel a {
    color: #000;
}

.page-emport.disablebutton .file-section .btn {
    opacity: 0.7;
    pointer-events: none;
}

.cromeBrowser .pageContent .briefcase-container .briefcase-section .page-container .unit .content .breifcase-inner {
    max-height: 272px;
}

.japanies-font .pageContent .briefcase-container .briefcase-section .page-container .unit .content .breifcase-inner {
    max-height: 267px;
}

    .japanies-font .pageContent .briefcase-container .briefcase-section .page-container .unit .content .breifcase-inner .discrition {
        font-size: 15px;
        line-height: 22px;
        margin-top: 18px;
    }

.japanies-font .pageContent .practice-main-content span, .japanies-font .pageContent .practice-main-content .red-text-news-detail {
    color: black !important;
}

.japanies-font .pageContent .list-h3, .japanies-font .pageContent .related-article-section .row h4.info-heading {
    color: black !important;
}

.japanies-font p strong, .japanies-font .paragraph-style-section > p:first-of-type, .japanies-font .primaryContent .red, .japanies-font .listView h3, /*.japanies-font .primaryContent .infoBlock .info-heading,*/
.japanies-font .event-detail-speaker strong span, .japanies-font .videoCarousel h2, .japanies-font .isEvent .listView h3, .japanies-font .isEvent .buttonGrid h3 {
    color: black;
}
/*BTLaw-1518*/
.japanies-font .bio-detail-slider h2 {
    color: #f7a833;
    font-weight: bold;
}

.container.blogs .primaryContent.blog-page-content-section > .row {
    display: flex;
    display: -webkit-flex;
    display: -ms-flex;
    display: -moz-flex;
    display: -o-flex;
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -o-flex-wrap: wrap;
}

    .container.blogs .primaryContent.blog-page-content-section > .row > .vCard {
        float: none;
    }

@media (min-width: 768px) {
    .event-detail-speaker hr.hide-line {
        border: none !important;
    }
}

.BlogsContent
.sbToggle {
    top: 50%;
}

.BlogsContent .loading-spiner {
    position: relative;
}

    .BlogsContent .loading-spiner:before {
        position: absolute;
        content: "";
        width: 100%;
        left: 0;
        height: 119px;
        top: 0;
        background: #fff;
    }

    .BlogsContent .loading-spiner img {
        position: relative;
    }

.blog-gallery-section .blog-list-item:nth-child(10) ~ div {
    display: block
}

.blog-gallery-section .blog-list-item a {
    color: #fff;
}

@media (max-width: 767px) {
    .flexBanner-career-landing.career_mobile {
        overflow: auto !important;
    }
}

.blog-gallery-section .blog-list-item .gal-overlay h3 i {
    clear: right;
    display: inline-block;
    display: none;
}

.blog-gallery-section .blog-list-item .gal-overlay h3 a {
    min-width: 90%;
    font-size: 13px;
}

    .blog-gallery-section .blog-list-item .gal-overlay h3 a:after {
        content: ",";
        color: #fff;
    }

    .blog-gallery-section .blog-list-item .gal-overlay h3 a:nth-last-child(2):after,
    .blog-gallery-section .blog-list-item .gal-overlay h3 a:last-child:after {
        display: none;
    }

.blog-gallery-section .blog-list-item .gal-overlay {
    overflow: hidden;
}


.blogInfoBanner .infoBox {
    height: 475px !important;
}

.blog-gallery-section-2 .blog-list-item figure img {
    transform: scale(1) translateX(-60px);
    -webkit-transform: scale(1) translateX(-60px);
    -ms-transform: scale(1) translateX(-60px);
    -moz-transform: scale(1) translateX(-60px);
}

.blog-gallery-section .blog-list-item .gal-overlay h3[ng-if="resultSet.FullName != ''"] a {
    font-size: 16px;
}

@media (max-width: 767px) {
    .blogInfoBanner .infoBox {
        height: auto !important;
    }
}

@media (min-width: 992px) {

    .blog-gallery-section-2 .blog-list-item:nth-child(n+10):nth-child(3n+4) {
        padding-left: 0 !important;
        padding-right: 15px !important;
    }

    .blog-gallery-section-2 .blog-list-item:nth-child(n+10):nth-child(3n+2) {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    .blog-gallery-section-2 .blog-list-item:nth-child(n+10):nth-child(3n+3) {
        padding-left: 15px !important;
        padding-right: 0px !important;
    }
}
/*.primaryContent p{margin: 15px 0px 0px 0px !important;}*/
.contactInfo a {
    display: contents;
}

.location-heading-container.container {
    margin: 0px auto 50px auto;
    padding: 0 30px;
}


body.japanies-font .slideBox_buttonBox .slideBtn.share-box span strong i {
    transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    display: inline-block;
    font-style: normal;
}

body.japanies-font .slideBox_buttonBox .slideBtn.share-box span {
    transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
}


/** Rahul **/
.blog-gallery-section .odd.blog-list-item > div, .blog-gallery-section .even.blog-list-item > div {
    height: 265px;
    overflow: hidden;
}

.blog-gallery-section .blog-list-item.odd .gal-overlay p, .blog-gallery-section .blog-list-item.even .gal-overlay p {
    height: 60px;
}

.blog-gallery-section .odd.blog-list-item {
    width: 33.33333%;
    height: 265px;
    float: left;
    position: relative;
    margin-bottom: 30px;
    padding-left: 15px;
    padding-right: 0;
    overflow: hidden;
}

.blog-gallery-section .even.blog-list-item {
    width: 33.33333%;
    height: 265px;
    float: right;
    position: relative;
    margin-bottom: 30px;
    padding-left: 0px;
    padding-right: 15px;
    overflow: hidden;
}

.blog-gallery-section .blog-list-item.odd .gal-overlay, .blog-gallery-section .blog-list-item.even .gal-overlay {
    background: #2b293c !important;
}

.blog-gallery-section .odd.blog-list-item .gal-overlay.orange-top, .blog-gallery-section .even.blog-list-item .gal-overlay.orange-top {
    background: #f68042 !important;
}

.blog-gallery-section .blog-list-item.odd .gal-overlay.red-light-right, .blog-gallery-section .blog-list-item.even .gal-overlay.red-light-right {
    background: #ab281b !important;
}

.blog-gallery-section .odd.blog-list-item .gal-overlay.dark-brown-right, .blog-gallery-section .even.blog-list-item .gal-overlay.dark-brown-right {
    background: #656a29 !important;
}

.blog-gallery-section .odd.blog-list-item .gal-overlay.red-bottom, .blog-gallery-section .even.blog-list-item .gal-overlay.red-bottom {
    background: #987464 !important;
}

.blog-gallery-section .blog-list-item.odd .gal-overlay.blue-bottom, .blog-gallery-section .blog-list-item.even .gal-overlay.blue-bottom {
    background: #f68042 !important;
}

.blog-gallery-section .blog-list-item.odd .gal-overlay.bottom-orange, .blog-gallery-section .blog-list-item.even .gal-overlay.bottom-orange {
    background: #4a3225 !important;
}

.blog-gallery-section .odd.blog-list-item .gal-overlay.green-bottom, .blog-gallery-section .even.blog-list-item .gal-overlay.green-bottom {
    background: #00a3b4 !important;
}

.blog-gallery-section .blog-list-item.odd .gal-overlay.brown-light-right, .blog-gallery-section .blog-list-item.even .gal-overlay.brown-light-right {
    background: #987464 !important;
}

.blog-gallery-section .blog-list-item.odd a, .blog-gallery-section .blog-list-item.even a {
    font-size: 20px;
}

@media (max-width: 767px) {
    .blog-gallery-section .blog-list-item.odd a, .blog-gallery-section .blog-list-item.even a {
        font-size: 17px;
        height: 14em;
    }
}

@media (max-width: 991px) {

    .blog-gallery-section .odd.blog-list-item, .blog-gallery-section .even.blog-list-item {
        width: 50%;
        padding: 0;
    }
}

.blog-gallery-section .odd.blog-list-item:nth-child(3n+1), .blog-gallery-section .even.blog-list-item:nth-child(3n+1) {
    height: 560px;
}

.blog-gallery-section .even.blog-list-item:nth-child(3n+1), .blog-gallery-section .odd.blog-list-item:nth-child(3n+1) {
    height: 560px;
    padding-left: 15px;
}

.blog-gallery-section .odd.blog-list-item .gal-overlay.red-bottom, .blog-gallery-section .even.blog-list-item .gal-overlay.red-bottom {
    width: 100%;
    background: rgba(157, 42, 21);
    height: auto;
    bottom: 0px;
}

.blog-gallery-section .odd.blog-list-item:nth-child(3n+1), .blog-gallery-section .even.blog-list-item:nth-child(3n+1) {
    width: 66.33333%;
    padding-left: 0;
    padding-right: 15px;
}

.blog-gallery-section .even.blog-list-item:nth-child(3n+1) {
    padding-right: 0px;
    padding-left: 15px;
}

    .blog-gallery-section .odd.blog-list-item:nth-child(3n+1) > div, .blog-gallery-section .even.blog-list-item:nth-child(3n+1) > div {
        height: 560px;
    }

@media (max-width: 767px) {
    .blog-gallery-section .odd.blog-list-item, .blog-gallery-section .even.blog-list-item {
        padding: 0px 15px !important;
    }

    .blog-gallery-section .odd.blog-list-item, .blog-gallery-section.even .blog-list-item {
        width: 100% !important;
        height: auto;
        padding: 0 !important;
        float: none !important;
        margin-bottom: 20px !important;
    }

        .blog-gallery-section .odd.blog-list-item:nth-child(3n+1), .blog-gallery-section .even.blog-list-item:nth-child(3n+1) {
            height: auto;
        }

    .blog-gallery-section .even.blog-list-item, .blog-gallery-section .odd.blog-list-item {
        height: auto;
    }
}

.blog-gallery-section .blog-list-item.odd .gal-overlay, .blog-gallery-section .blog-list-item.even .gal-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    background: rgb(0, 0, 0);
    width: 100%;
    padding: 20px;
    max-height: 100%;
}

.blog-gallery-section .odd.blog-list-item .gal-overlay.orange-top, .blog-gallery-section .even.blog-list-item .gal-overlay.orange-top {
    background: rgb(244, 136, 64);
    width: 100%;
    top: auto;
    height: auto;
    bottom: 0px;
}

.blog-gallery-section .blog-list-item.odd .gal-overlay.brown-light-right, .blog-gallery-section .blog-list-item.even .gal-overlay.brown-light-right {
    background: rgb(152, 113, 92);
    top: auto;
    left: 0;
    width: 100%;
    height: auto;
    bottom: 0;
    right: 0;
}

.blog-gallery-section .odd.blog-list-item .gal-overlay.dark-brown-right, .blog-gallery-section .even.blog-list-item .gal-overlay.dark-brown-right {
    background: rgb(67, 36, 29);
    top: auto;
    left: 0;
    width: 100%;
    height: auto;
    bottom: 0;
    right: 0;
}

.blog-gallery-section .odd.blog-list-item .gal-overlay.green-bottom, .blog-gallery-section .even.blog-list-item .gal-overlay.green-bottom {
    background: rgb(96, 101, 34);
    top: auto;
    left: 0;
    width: 100%;
    height: auto;
    bottom: 0;
    right: 0;
}

.blog-gallery-section .blog-list-item.odd .gal-overlay.bottom-orange, .blog-gallery-section .blog-list-item.even .gal-overlay.bottom-orange {
    background: rgb(244, 136, 64);
}

@media (max-width: 1024px) {
    .blog-gallery-section .odd.blog-list-item:nth-child(3n+1) > div, .blog-gallery-section .even.blog-list-item:nth-child(3n+1) > div {
        height: 490px;
    }

    .blog-gallery-section .odd.blog-list-item:nth-child(3n+1), .blog-gallery-section .even.blog-list-item:nth-child(3n+1) {
        height: 490px;
    }

    .blog-gallery-section .even.blog-list-item:nth-child(3n+1), .blog-gallery-section .odd.blog-list-item:nth-child(3n+1) {
        height: 490px;
    }

    .blog-gallery-section .odd.blog-list-item > div, .blog-gallery-section .even.blog-list-item > div {
        height: 230px;
    }

    .blog-gallery-section .blog-list-item.odd .gal-overlay p, .blog-gallery-section .blog-list-item.even .gal-overlay p {
        height: 60px;
    }

    .blog-gallery-section .odd.blog-list-item {
        height: 230px;
    }

    .blog-gallery-section .even.blog-list-item {
        height: 230px;
    }
}

@media (max-width: 990px) {
    .blog-gallery-section .odd.blog-list-item:nth-child(3n+1), .blog-gallery-section .even.blog-list-item:nth-child(3n+1) {
        height: auto;
        width: 100%;
    }

    .blog-gallery-section .even.blog-list-item:nth-child(3n+1), .blog-gallery-section .odd.blog-list-item:nth-child(3n+1) {
        height: auto;
        padding-left: 15px;
    }

        .blog-gallery-section .odd.blog-list-item:nth-child(3n+1) > div, .blog-gallery-section .even.blog-list-item:nth-child(3n+1) > div {
            height: auto;
        }

    .blog-gallery-section .odd.blog-list-item, .blog-gallery-section .even.blog-list-item {
        width: 50%;
        padding: 0;
    }

        .blog-gallery-section .even.blog-list-item, /*.blog-gallery-section .odd.blog-list-item, */ .blog-gallery-section .even.blog-list-item > div /*,.blog-gallery-section .odd.blog-list-item>div*/ {
            height: auto !important;
        }

    .blog-gallery-section .odd.blog-list-item, .blog-gallery-section .even.blog-list-item {
        padding: 0px 15px !important;
    }
}

@media (max-width: 767px) {
    .blog-gallery-section .odd.blog-list-item, .blog-gallery-section .even.blog-list-item {
        padding: 0px !important;
    }

    body.japanies-font .slideBox_buttonBox .slideBtn.share-box span strong i {
        transform: rotate(-0deg);
        -moz-transform: rotate(-0deg);
        -o-transform: rotate(-0deg);
        -ms-transform: rotate(-0deg);
        -webkit-transform: rotate(-0deg);
        display: inline-block;
        font-style: normal;
    }

    body.japanies-font .slideBox_buttonBox .slideBtn.share-box span {
        transform: rotate(90deg);
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
    }
}

.primaryContent p.clear-all-filter {
    margin: 0px !important;
}

.blog-gallery-section .blog-list-item .gal-overlay h3.ng-binding {
    font-size: 13px;
}

h3.external-name {
    font-size: 16px !important;
}

h3.external-company {
    font-size: 13px !important;
}

.primaryContent .event-detail-speaker-desktop h3.primaryContent-h4 {
    margin-top: 0;
}

.margin-fix-news-detail .event-detail-speaker-desktop .vCard {
    margin-bottom: 1.5em;
}

.buzzsprout-player {
    margin-top: 0 !important;
}










.LUpdates {
    position: absolute;
    right: 417px;
    top: 9px;
    background: #ffb62f;
    padding: 5px 10px;
    color: #000;
    text-align: center;
    width: 200px
}

    .LUpdates a {
        color: #000 !important
    }

.mobileView {
    position: absolute;
    width: 100%;
    display: none;
    margin-top: 10px;
}

    .mobileView a {
        color: #000 !important;
    }

@media screen and (min-width:768px) and (max-width:990px) {
    .LUpdates {
        right: 381px;
        padding: 5px 0px;
        top: 0px;
        text-align: center;
        width: 147px;
    }
}

.japanies-font nav.inlineMenu li {
    display: inline-block;
    margin-right: 6px;
}

.japanies-font nav.inlineMenu {
    margin-top: 12px;
}

address span {
    word-break: initial;
}

@media screen and (min-width:320px) and (max-width:767px) {
    .mobileView {
        display: block
    }

    .LUpdates {
        display: none
    }
}

.phone, .mobile {
    color: #000;
}

@media screen and (min-width:768px) and (max-width:1200px) {
    .news-section {
        padding-bottom: 40px !important;
    }

    .flexBanner-career-landing.career_mobile {
        height: auto;
    }
}

@media screen and (min-width:1200px) {
    .flexBanner-career-landing.career_mobile {
        height: auto;
    }
}

.edylist-group-firmlanding1 .diversity_nav li a.subtabColor {
    color: #fff;
}

address span {
}

.edylist-group-firmlanding1 a {
    font-size: 18px !important;
    padding: 0px !important;
}

ul.edylist-group-firmlanding1 li.edylist-group-item-firmlanding-child a {
    font-size: 15px !important;
}

.primaryContent p, .primaryContent ul {
    word-break: break-word;
}

.edylist-group-firmlanding1 .diversity_nav li a {
    color: #a9c938;
}

.primaryContent h3 {
    margin: 0px 0px 3px;
}


.diversity_nav {
    display: none;
}

    .diversity_nav.active {
        display: block;
    }

.innerWrap.flexBanner-career-landing-main-control.firmlanding-firm-textcontainer.active.mobile {
    display: none;
}

.innerWrap.flexBanner-career-landing-main-control.firmlanding-firm-textcontainer.active.desktop {
    display: block;
}

@media screen and (max-width:767px) {
    .blog-content .blog-heading-back {
        margin-bottom: -10px;
        margin-top: 20px;
    }

    .overview-tabb .primaryContent .infoBlock .info-data {
        margin: 10px 0px;
    }

    .back-heading-news-detail.blog-heading a {
        display: inline-block;
        margin-top: 0px;
        width: 100%;
        margin-bottom: 0px;
    }

    .back-heading-news-detail.blog-heading:last-child {
        margin-bottom: .7em !important;
    }

    /* BTLaw-1630 */
    .back-heading-news-detail.blog-heading-back a {
        margin-bottom: 0px;
    }
    /* BTLaw-1630 */
    .firm-heading a {
        display: inline-block;
        width: 100%;
        margin-bottom: 25px;
    }

    .fullCarouselTestimonial_firm.owl-carousel .caption .title p {
        margin-top: 10px !important;
    }

    .innerWrap.flexBanner-career-landing-main-control.firmlanding-firm-textcontainer.active.desktop {
        display: none;
    }

    .innerWrap.flexBanner-career-landing-main-control.firmlanding-firm-textcontainer.active.mobile {
        display: block;
        background-repeat: no-repeat;
        background-size: cover;
        background-position: 0px center;
    }

    .innerWrap.flexBanner-career-landing-main-control.firmlanding-firm-textcontainer.active h1 {
        position: relative;
    }

    .flexBanner-career-landing .controles h1 {
        font-size: 2.5em !important;
        display: block;
    }

        .flexBanner-career-landing .controles h1 div {
            text-align: center;
        }
}

/* Highlight and pull quote css*/

.SubHeadSection {
    background: #b7e7eb;
    padding: 20px 25px;
    margin: 25px 0px;
    overflow: hidden;
}

    .SubHeadSection h5 {
        color: black;
        text-align: center;
    }


.language-container ul.active {
    z-index: 9999999999;
}

p.pullqouteclass {
    font-weight: 700;
    text-align: center;
    font-size: 18px;
    max-width: 450px;
    width: 100%;
    padding: 10px;
    color: #a93228;
    margin: 0px auto;
}

.japanies-font .pageContent p.pullqouteclass span {
    font-weight: 700;
    color: #a93228 !important;
}

p.pullqouteclass::after {
    width: 210px;
    margin: 20px auto;
    display: block;
    content: '';
    border-top: 4px solid #a93228;
}

p.pullqouteclass::before {
    width: 210px;
    margin: 20px auto;
    display: block;
    content: '';
    border-top: 4px solid #a93228;
}

body.japanies-font .primaryNav {
    margin-top: -1px !important;
}

.firm_landing .firmlanding-content-unit .back-heading-news-detail {
    width: 300px;
}

.firm-detail-heading {
    margin-top: -15px;
}

.firm-heading {
    width: 300px;
    color: #4fc6de;
    line-height: 1.1;
    font-weight: 400;
    font-family: "Proxima-Nova-Alt-Rg", sans-serif;
}

.edylist-group-item-firmlanding-child h3 {
    margin: 0px !important;
}

.edylist-group-item-firmlanding-child {
    padding-bottom: 0px !important;
}

.podcast-script {
    margin-top: 10px;
}

@media screen and (min-width:1024px) {
    .firm-detail .inlineMenu.inline-menu-icon.event-detail-inline {
        margin-top: -40px !important;
        float: right !important;
        width: 19em;
    }
}

@media screen and (max-width:1023px) {
    .firm-detail .inlineMenu.inline-menu-icon.event-detail-inline {
        margin-top: 0px !important;
        float: none;
    }
}

@media screen and (max-width:767px) {

    .innerWrap-Tags-primary-block {
        list-style: none;
        display: block;
    }

    .date-location-block {
        margin-top: -12px;
        margin-bottom: 10px;
    }

    .firm_landing .slidesWrap .slide .heading.firmlanding-section h2 {
        padding: 50px 0px 25px 0px;
    }

    .blog-content .blog-heading {
        margin-top: 10px;
    }

    /* sumit March 30: for reducing space between headings for BTLaw-1414*/
    .row.blog-content:first-child h3 {
        margin-bottom: unset;
    }

    .firmlanding-contents-section .firmlanding-content-unit.isActive {
        overflow: unset;
    }

    .flexBanner-career-landing.career_mobile.firm_landing {
        background: #fff;
    }

    .pull-right {
        position: absolute;
        z-index: 11111;
    }
}

#preloader {
    z-index: 999999999 !important;
}

.inlineMenu.inline-menu-icon.event-detail-inline {
    margin-top: 12px;
}

.primaryContent .infoBlock .info-data {
    margin-bottom: 10px;
}

h2.info-data.subheading {
    color: #a7a7a7 !important;
    margin: 0px 0px 10px 0px !important;
    font-size: 20px;
    line-height: 1.25;
}

.bioDetails-section-no-bio {
    display: none;
}

@-moz-document url-prefix() {

    .secondaryContentForPrint {
        /*border: none!important;
		margin-top: -4em!important;*/
        border-left: 1px solid #b0b8bd !important;
        margin-top: 0em !important;
    }

    .secondaryContentForBtvalueCareer {
        border-left: none !important;
    }
    /*.container{
				max-width: 100%;
			}*/
    .primary-content-people-details p {
        position: relative;
        top: 14.5em;
    }
}

@-moz-document url-prefix() {

    .primary-content-people-details p {
        position: relative !important;
        top: 14.5em !important;
    }
}

_ /*::-webkit-full-page-media, _:future, :root .secondaryContentForPrint {

  border: none!important;
		margin-top: -4em!important;

}*/
::-webkit-full-page-media, _:future, :root .primary-content-people-details p {
    position: relative !important;
    top: 14.5em !important;
}

.primary-content-people-details p {
    position: relative;
    top: 18.5em;
    min-height: 30em;
    right: 1em;
    color: rgb(60, 54, 54);
}

.primaryContent.practice-main-content.paragraph-style-section {
    margin-top: -1em;
}

@media (max-width: 767px) {
    .primaryContent.practice-main-content.paragraph-style-section {
        margin-top: 0em !important;
    }
}

@media (max-width: 767px) {
    .govt_relations .container .pageContent .bottom_gap .block:last-child .row {
        position: relative;
        bottom: 20px;
    }
}

@media screen and (min-width:320px) {

    .isPeople.govt_relations .primaryContent .infoBlock.infoBlock-news-detail {
        margin-bottom: 1em;
    }
    /*.related-practice-area .row{margin-bottom:0px;}*/
    .bottom-space {
        padding-bottom: 0;
    }

    .paragraph-space p {
        margin-top: 0;
    }

    .primaryContent .mobile_list .vCard {
        float: none;
    }
    /*.practice-main-content{padding-bottom:30px;}*/
    .secondaryContentForPrint .video-page {
        padding-top: 15px;
    }

    .margin-fix-news-detail .row.event-detail-speaker .paragraph-style-section {
        padding-bottom: 20px;
    }

    .secondaryContent.bottom_gap.secondaryContentForPrint .related-article-section {
        padding-top: 20px;
    }
    /*.secondaryContentForPrint .related-practice-area.border.video-page{border-bottom:0;margin-bottom:0; padding-top: 8px;}*/
    .secondaryContent.bottom_gap.secondaryContentForPrint .related-article-section {
        margin-bottom: 0;
    }

    .secondaryContent.bottom_gap.secondaryContentForPrint .block.subscribeBlock {
        padding-top: 25px;
    }

    .innerWrap-Tags-primary-block.blog-detail-tags-tab {
        padding-top: 15px;
    }

    .secondaryContent.bottom_gap.secondaryContentForPrint .block.subscribeBlock {
        padding-top: 28px;
    }

    .related-people-section {
        border-bottom: 1px solid #d0d0d0;
        margin-bottom: 8px !important;
    }

    .govt_relations .secondaryContent .innerWrap-Tags-list {
        padding-top: 22px;
    }
    /*.related-practice-area.border.video-page .row .col-md-12 a{padding:10px 0;display:block;}*/
    /*.related-practice-area{padding-bottom:21px;}*/

    /*.secondaryContentForPrint .row.unit .col-md-6 .view-all-button{margin-bottom:30px;}*/

    .innerWrap-Tags-primary-block.blog-detail-tags-tab.inner-tab {
        padding-top: 0px !important;
    }
}

@media screen and (min-width:768px) {
    .secondaryContentForPrint .video-page {
        padding-top: 15px !important;
    }

    .govt_relations .secondaryContent .innerWrap-Tags-list {
        padding-top: 22px !important
    }
}

@media screen and (min-width:768px) {
    _:-ms-fullscreen, :root .secondaryContentForPrint .video-page {
        padding-top: 0px !important;
    }

    _:-ms-fullscreen, :root .govt_relations .secondaryContent .innerWrap-Tags-list {
        padding-top: 0px !important;
    }
}

@media all and (min-width:768px) and (-webkit-min-device-pixel-ratio:0) and (min-resolution: .001dpcm) {
    .secondaryContentForPrint .video-page {
        padding-top: 0px !important;
    }

    .govt_relations .secondaryContent .innerWrap-Tags-list {
        padding-top: 0px !important
    }
}

@media screen and (min-width:768px) {
    @-moz-document url-prefix() {
        .secondaryContentForPrint .video-page {
            padding-top: 0px !important
        }

        ;
    }
}

@media screen and (min-width:768px) {
    @-moz-document url-prefix() {
        .govt_relations .secondaryContent .innerWrap-Tags-list {
            padding-top: 0px !important
        }
    }
}

@media screen and (min-width:768px) {

    .related-practice-area.border.video-page .row .col-md-12 a {
        padding: 0px 0;
        display: block;
    }

    .govt_relations .secondaryContent .innerWrap-Tags-list {
        padding-top: 22px;
    }

    .isPeople.govt_relations .primaryContent .infoBlock.infoBlock-news-detail {
        margin-bottom: 10px;
    }

    .bottom-space {
        padding-bottom: 12px !important;
    }

    .paragraph-space p {
        margin-top: 15px;
    }

    .primaryContent .mobile_list .vCard {
        float: left;
    }
    /*.secondaryContentForPrint .video-page{padding-top: 5px;}*/
    .event-detail-speaker-mobile .event-detail-speaker .col-md-12 .primaryContent-h4 {
        padding-top: 0;
    }

    .related-practice-area {
        padding-bottom: 0px;
    }

    .secondaryContent.bottom_gap.secondaryContentForPrint .related-article-section {
        padding-top: 0px;
        margin-bottom: 25px;
    }

    @-moz-document url-prefix() {
        .bottom_gap .subscribeBlock {
            margin-top: 0px !important;
        }
    }

    _:-ms-fullscreen, :root .bottom_gap .subscribeBlock {
        margin-top: 0px !important;
    }


    .secondaryContent.bottom_gap.secondaryContentForPrint .related-article-section {
        padding-top: 0px;
        margin-bottom: 25px;
    }


    @-moz-document url-prefix() {
        .secondaryContent.bottom_gap.secondaryContentForPrint .related-article-section {
            margin-bottom: 25px;
        }
    }
}

@media screen and (min-width:768px) {
    :-ms-fullscreen, :root .secondaryContent.bottom_gap.secondaryContentForPrint .related-article-section {
        margin-bottom: 25px;
    }

    .secondaryContent.bottom_gap.secondaryContentForPrint .block.subscribeBlock {
        padding-top: 0px;
    }

    .innerWrap-Tags-primary-block.blog-detail-tags-tab {
        padding-top: 0px;
    }

    .related-people-section {
        margin-bottom: 15px !important;
    }

    .pt-0 {
        padding-top: 0px !important;
    }

    .d-flex {
        display: flex !important;
    }

    .inner-tab {
        flex-wrap: wrap;
        align-items: center;
        margin-top: 0px !important;
    }

    .blog-detail-tags-tab li {
        min-width: fit-content;
    }

    .inner-tab li {
        padding-right: 0px;
    }

        .inner-tab li a {
            border-right: 1px solid #b0b8bd;
            padding-right: 15px;
        }

        .inner-tab li:last-child a {
            border: none
        }
}

.inner-tab li a {
    color: #4fc6de !important;
}

@media screen and (max-width:768px) {
    .inner-tab {
        align-items: flex-start;
    }

    .blog-detail-tags-tab {
        flex-direction: column;
    }

    .inner-tab li a {
        border-right: none;
        padding-right: 0px;
    }
}

@media screen and (max-width:820px) {
    .inner-tab {
        align-items: flex-start;
    }

    .blog-detail-tags-tab.d-flex {
        flex-direction: column;
    }

    .inner-tab li a {
        border-right: none;
        padding-right: 0px;
    }
}

@media screen and (min-width:1024px) {

    .isPeople.govt_relations .primaryContent .infoBlock.infoBlock-news-detail {
        margin-bottom: 5px;
        padding-bottom: 10px;
    }

    .related-practice-area .row {
        margin-bottom: 15px;
    }

    .secondaryContentForPrint .row.unit .col-md-6 .view-all-button {
        margin-bottom: 10px;
    }

    .secondaryContentForPrint .related-practice-area .row {
        margin-bottom: 20px;
    }
    /*.secondaryContentForPrint .video-page{padding-top: 36px;}*/
    .event-detail-speaker-desktop .event-detail-speaker .col-md-12 hr {
        margin: 12px 0 23px;
    }

    .secondaryContent.bottom_gap.secondaryContentForPrint .related-article-section {
        padding-top: 35px;
    }
}

@media screen and (min-width:1024px) {
    .secondaryContent.bottom_gap.secondaryContentForPrint > .related-article-section {
        padding-top: 0px !important;
    }
}

@media screen and (min-width:1025px) {

    /*.secondaryContentForPrint .video-page{padding-top: 0px;}*/
    /*.secondaryContent.bottom_gap.secondaryContentForPrint .related-article-section{padding-top:0px;}*/
}

/* Portrait and Landscape */
@media only screen and (min-device-width: 414px) and (max-device-width: 736px) and (-webkit-min-device-pixel-ratio: 3) {
    .primaryContent .timeline .innerWrap .btn {
        margin: 5% 0 7%;
    }

    ul.search-panel-global li:hover {
        background-color: darkgrey;
    }

    @media (max-width: 767px) {
        .primaryContent .info-heading-month {
            margin-top: 27px !important;
        }
    }
    /*@media (max-width: 767px) {
	    .block:last-child {
      margin-bottom: 0;
    margin-top:-36px!important;  }
    }*/
    @media (max-width: 767px) {
        .newslanding .container .pageContent .primaryContent .related-people-section.eventsInterest {
            margin-bottom: 0px !important;
            margin-top: -35px;
            border-bottom: 1px solid #d0d0d0 !important;
            border-top: none;
        }
    }
}

.clear-all-btn {
    display: flex;
    justify-content: flex-end;
    margin-top: -15px;
}

    .clear-all-btn a {
        display: flex;
        width: fit-content;
        white-space: nowrap;
    }

        .clear-all-btn a:hover {
            color: #ee832e;
        }

@media (max-width: 1000px) {
    .clear-all-btn {
        justify-content: start;
        align-items: center;
        padding-top: 10px;
        margin-top: unset;
        padding-left: 5px !important;
    }
}

.bio-detail-slider h2 {
    font-weight: bold;
}
/* BTLaw-1632 */
.p-8 {
    padding-top: 8px;
}

.filter_gap.p-8 {
}

@media (max-width: 768px) {
    .p-8 {
        padding-top: 0px;
    }

    .filter_gap.p-8 {
        padding-bottom: 8px;
    }
}
/* BTLaw-1632 */
/*BTLaw-1631 Rajesh*/
li.event-list-row {
    padding: 9px 0px 18px 0px !IMPORTANT;
    margin-bottom: 0px !important;
}

    li.event-list-row p {
        margin-bottom: 0px !important;
    }
/*BTLaw-1631*/
/* BTLaw-1632 Rajesh*/
.d-flex {
    display: flex !important;
}

.justify-content-end-tab {
    -webkit-box-pack: flex-start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
}

.filterGroup .filter_gap.text-xs-right {
    text-align: right !important;
}

@media (max-width: 992px) {
    .justify-content-end-tab {
        -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
        justify-content: flex-end !important;
    }

    .filterGroup .filter_gap.text-xs-right {
        text-align: left !important;
    }
}

@media (max-width: 830px) {
    .filterGroup .filter_gap.text-xs-right {
        text-align: left !important;
    }
}
/* BTLaw-1632 Rajesh*/

.block.listView.gridData h3, .bio-detail-slider h2, .listView h3, .japanies-font .listView h3, .primaryContent h3 {
    margin: 10px 0px;
}

.heading-font-16 {
    font-size: 19.5px !important;
    font-weight: bold;
}

@media (min-width: 768px) {
    .block.listView.gridData h3, .bio-detail-slider h2, .listView h3, .japanies-font .listView h3, .primaryContent h3 {
        margin: 10px 0px;
        font-size: 16px;
    }

    .heading-font-16 {
        font-size: 16px !important;
        font-weight: bold;
    }
}

.bio-detail-slider .owl-carousel .owl-dots {
    position: absolute;
    top: -28px;
    right: 0;
}

.listView.gridData .item > .row {
    margin: 0px;
}

.block.listView.gridData {
    padding-left: 0px;
    padding-right: 0px;
}

.back-heading-news-detail.blog-heading {
    margin-top: unset !important;
}

.primaryContent .blog-content:first-child .blog-heading-top {
    margin-bottom: 15px !important;
    margin-top: 10px !important;
}

@media (min-width: 768px) {
    .back-heading-news-detail.blog-heading, .primaryContent .blog-content:first-child .blog-heading-top {
        margin-top: unset !important;
    }
}

.margin-fix-news-detail .blog-content .back-heading-news-detail {
    margin-bottom: 15px !important;
    margin-top: 4px !important;
}

.margin-fix-news-detail .blog-content .back-heading-news-detail.blog-heading-back {
    margin-bottom: 4px !important;
    margin-top: 4px !important;
}

/* BTLaw-1653 */
@media (max-width: 767px) {
    .navigationHolder .levelTop li.hasChild ul.subMenu {
        margin-right: unset !important;
        padding-left: 9px !important;
    }

    .navigationHolder .levelTop li.hasChild ul.subMenu li {
        display: flex;
    }

    .navigationHolder .levelTop li.hasChild ul.subMenu {
        list-style-type: none
    }
}

.isChinesePractice * {
    line-height: 170% !important;
}

/*Accordion section starts*/

.accordion-container {
    position: relative;
    max-width: 100%;
    height: auto;
    margin: 10px auto 30px;
}

.accordion-container > h2, .accordion-container > h3 {
    text-align: left;
    color: #a93228;
    font-size: 16px;
    margin-bottom: 0px;
    border-bottom: none;
    margin-bottom: 10px;
}

.accordion-container .content {
    border: none;
}

.accordion-container .set {
    position: relative;
    width: calc(100% - 35px);
    border-bottom: 1px solid #c8c8c8;
    padding: 00px 0px;
    margin-left: 35px;
}

.accordion-container .set > .accordion-title {
    font-size: 17px;
    cursor: pointer;
    color: #000;
    position: relative;
    margin: 20px 0px;
    padding: 5px 0px;
    display: block;
    width: 100%;
    padding-left: 0px;
    font-family: "Proxima-Nova-Alt-SemiBold", sans-serif !important;
    -webkit-tap-highlight-color: transparent;
}

.accordion-container .set > .accordion-title::after {
    position: absolute;
    left: 0px;
    top: -3px;
    bottom: 0px;
    margin: auto;
    content: '+';
    font-size: 40px;
    height: fit-content;
    color: #b3b3b3;
    left: -35px;
    font-family: "Proxima-Nova-Alt-Rg", sans-serif !important;
    line-height: 0px;
}

.accordion-container .set > .accordion-title.active::after {
    content: '---';
    letter-spacing: -7px;
    top: -8px;
    font-size: 37px;
}

.accordion-container .set.notab > .accordion-title::after {
    display: none;
}

.accordion-container .content {
    background-color: #fff;
    border-bottom: none;
    display: none;
    padding-bottom: 20px;
    margin-top: 10px;
    padding-left: 0px;
    line-height: 135%;
}

.accordion-container .content a {
    display: block;
    clear: both;
    width: fit-content;
    margin-top: 15px;
}

.accordion-container .content a:hover {
    color: orange;
    display: block;
}

.accordion-container .content p {
    padding: 10px 0px;
    margin: 0;
    color: #333;
}
/*Accordion section starts*/

body.japanies-font .back-heading-news-detail {
    font-weight: 600;
}

.ui-icon-gripsmall-diagonal-se {
    cursor: s-resize;
    height: 15px;
    bottom: 0px;
    left: 0;
    background: url(../images/icons/resize-icon.svg) no-repeat center;
    width: 100%;
    margin: auto;
    right: 0px;
    position: absolute;
    background-color: #fff;
    z-index: 99999999;
}

.ui-resizable-handle {
    position: absolute;
    font-size: 0.1px;
    display: block;
    z-index: 9999 !important;
}

#stickyDiv {
    overflow: unset !important;
}

.expendbox {
    position: absolute;
    min-height: 120px;
    padding-bottom: 10px;
    min-width: 150px;
    max-width: 100% !important;
    width: 100% !important;
}

ul.sbOptions {
    height: CALC(100% - 15PX) !important;
    width: 100%;
    overflow-y: auto;
    margin: 0px;
    top: 0px !important;
    max-height: unset !important;
}

.sbHolder .expendbox {
    display: none;
}

.sbToggleOpen .expendbox {
    display: block !important;
}

.expandlimt {
    position: fixed;
    bottom: 0px;
    height: 40px;
    width: 100%;
    z-index: -999999;
}

.expandlimt.show {
    height: 40px;
}

@media (min-width: 769px) {
    .expandlimt {
        height: 10px;
    }
}

.blog-search-2 .sorting-select .expendbox, #searchFilterlabel .expendbox {
    right: 0;
    left: auto;
    min-height: 90px !important;
}

@media (max-width: 767px) {
    .edySlider .edySliderControles {
        min-height: fit-content !important;
        position: absolute;
        z-index: 1;
        background: transparent !important;
    }

    .edySlider .slidesWrap .slide .caption {
        top: 155px !important;
    }

    .edySlider .owl-nav.disabled {
        position: absolute;
        width: 100%;
        bottom: 50px;
    }

    .edySlider .slidesWrap .owl-item:after {
        content: "";
        width: 100%;
        height: 100%;
        background: #000;
        position: absolute;
        top: 0;
        left: 0;
        opacity: 0.55;
        right: 0px;
        bottom: 0px;
    }

    .edySlider .slidesWrap .slide .caption {
        z-index: 2;
    }
}

.edySlider .edySliderControles .pagination .owl-dot {
    margin-right: 3px;
    margin-left: 3px;
    float: right;
    margin-top: 8px;
}

.edySlider .edySliderControles .pagination {
    display: flex;
    flex-wrap: wrap;
}

@media (max-width: 767px) {
    .firm-detail-heading {
        margin-top: -5px;
    }
    .firm-detail-heading .firm-heading a {
        margin-bottom: 5px;
    }
}

.mobile_block_hide {
    display: none;
}

.keyword-search-tab {
    padding: 0px 0px;
    margin-bottom: 15px;
}

.keyword-search-tab form {
    display: flex;
    width: 100%;
}

.keyword-search-tab .input-search-wrapper {
    width: inherit;
    position: relative;
}

.keyword-search-tab .input-search-wrapper input {
    min-height: 35px;
}

.keyword-search-tab .submit-btn {
    padding-left: 20px;
}

.keyword-search-tab .submit-btn button {
    background: #ee832e;
    border: none;
    outline: none;
    color: #fff;
    text-transform: uppercase;
    box-shadow: none;
    padding: 10px 50px;
    cursor: pointer;
    font-size: 14px;
    font-family: "Proxima-Nova-Alt-SemiBold", sans-serif;
    line-height: 1;
    text-align: center;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    min-height: 35px;
    word-break: keep-all;
    white-space: nowrap;
}

.keyword-search-tab .submit-btn button:hover {
    background-color: rgba(238, 131, 46, .8);
}

.keyword-search-tab ul.search-panel-global {
    width: 100%;
    left: 0px;
    top: 1%;
    max-width: 100%;
    background-color: #fff;
    border: 1px solid #f1f1f1;
    position: absolute;
}

.keyword-search-tab ul.search-panel-global li {
    border-bottom: 1px solid #ccc;
    color: #000;
}

.keyword-search-tab ul.search-panel-global li a {
    color: #000;
    width: 100%;
    display: block;
}

.keyword-search-tab ul.search-panel-global li.selected {
    background: #e4e4e4;
}

@media (max-width: 767px) {
    .keyword-search-tab ul.search-panel-global {
        width: 100%;
        left: 0px;
        top: 20px;
        max-width: 100%;
        background-color: #fff;
        border: 1px solid #f1f1f1;
        position: absolute;
        padding-left: 0px;
        padding-right: 0px;
    }
    .keyword-search-tab .submit-btn button {
        padding-left: 15px;
        padding-right: 15px;
    }
    .keyword-search-tab .submit-btn {
        padding-left: 10px;
    }
}

a, * {
    -webkit-tap-highlight-color: transparent;
}

.upper-case {
    text-transform: uppercase !important;
}
