@charset "UTF-8";
@font-face {
    font-family: 'Muli Semibold';
    src: url(../fonts/Muli-SemiBold.woff2) format("woff2"), url(../fonts/Muli-SemiBold.woff) format("woff");
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Lato';
    src: url(../fonts/Lato-Regular.woff2) format("woff2"), url(../fonts/Lato-Regular.woff) format("woff");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Cambria';
    src: url(../fonts/Cambria.woff2) format("woff2"), url(../fonts/Cambria.woff) format("woff");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Lato Bold';
    src: url(../fonts/Lato-Bold.woff2) format("woff2"), url(../fonts/Lato-Bold.woff) format("woff");
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Muli';
    src: url(../fonts/Muli-Regular.woff2) format("woff2"), url(../fonts/Muli-Regular.woff) format("woff");
    font-weight: normal;
    font-style: normal;
}

html {
    font-family: sans-serif;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
    display: block;
}

audio,
canvas,
progress,
video {
    display: inline-block;
    vertical-align: baseline;
}

audio:not([controls]) {
    display: none;
    height: 0;
}

[hidden],
template {
    display: none;
}

a {
    background-color: transparent;
}

a:active,
a:hover {
    outline: 0;
}

abbr[title] {
    border-bottom: 1px dotted;
}

b,
strong {
    font-weight: bold;
}

dfn {
    font-style: italic;
}

mark {
    background: #ff0;
    color: #000;
}

small {
    font-size: 80%;
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sup {
    top: -0.5em;
}

sub {
    bottom: -0.25em;
}

img {
    border: 0;
}

svg:not(:root) {
    overflow: hidden;
}

figure {
    margin: 1em 40px;
}

hr {
    box-sizing: content-box;
    height: 0;
}

pre {
    overflow: auto;
}

code,
kbd,
pre,
samp {
    font-family: monospace, monospace;
    font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
    color: inherit;
    font: inherit;
    margin: 0;
}

button {
    overflow: visible;
}

button,
select {
    text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
    -webkit-appearance: button;
    cursor: pointer;
}

button[disabled],
html input[disabled] {
    cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
    border: 0;
    padding: 0;
}

input {
    line-height: normal;
}

input[type="checkbox"],
input[type="radio"] {
    box-sizing: border-box;
    padding: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    height: auto;
}

input[type="search"] {
    -webkit-appearance: textfield;
    box-sizing: content-box;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

fieldset {
    border: 1px solid #c0c0c0;
    margin: 0 2px;
    padding: 0.35em 0.625em 0.75em;
}

legend {
    border: 0;
    padding: 0;
}

textarea {
    overflow: auto;
}

optgroup {
    font-weight: bold;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

td,
th {
    padding: 0;
}

/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.1
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2016 Daniel Eden
 */
.animated {
    animation-duration: 2s;
    animation-fill-mode: both;
}

.animated.infinite {
    animation-iteration-count: infinite;
}

@keyframes bounce {
    from, 20%, 53%, 80%, to {
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        transform: translate3d(0, 0, 0);
    }
    40%, 43% {
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        transform: translate3d(0, -30px, 0);
    }
    70% {
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        transform: translate3d(0, -15px, 0);
    }
    90% {
        transform: translate3d(0, -4px, 0);
    }
}

.bounce {
    animation-name: bounce;
    transform-origin: center bottom;
}

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

.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.slick-list:focus {
    outline: none;
}

.slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
    transform: translate3d(0, 0, 0);
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
}

.slick-track:before,
.slick-track:after {
    display: table;
    content: '';
}

.slick-track:after {
    clear: both;
}

.slick-loading .slick-track {
    visibility: hidden;
}

.slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}

[dir='rtl'] .slick-slide {
    float: right;
}

.slick-slide img {
    display: block;
}

.slick-slide.slick-loading img {
    display: none;
}

.slick-slide.dragging img {
    pointer-events: none;
}

.slick-initialized .slick-slide {
    display: block;
}

.slick-loading .slick-slide {
    visibility: hidden;
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
    display: none;
}

/* Arrows */
.slick-prev,
.slick-next {
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 50%;
    display: block;
    width: 20px;
    height: 20px;
    padding: 0;
    margin-top: -10 px\9;
    /*lte IE 8*/
    transform: translate(0, -50%);
    cursor: pointer;
    color: transparent;
    border: none;
    outline: none;
    background: transparent;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
    color: transparent;
    outline: none;
    background: transparent;
}

.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
    opacity: 1;
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
    opacity: .25;
}

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

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

[dir='rtl'] .slick-prev {
    right: -25px;
    left: auto;
}

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

[dir='rtl'] .slick-prev:before {
    content: '→';
}

.slick-next {
    right: -25px;
}

[dir='rtl'] .slick-next {
    right: auto;
    left: -25px;
}

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

[dir='rtl'] .slick-next:before {
    content: '←';
}

/* Dots */
.slick-slider {
    margin-bottom: 30px;
    /* background-color: yellow; */
    float: left;
    width: 650px;
    display: block;
    clear: both;
    width: 100%;
}

.slick-dots {
    position: absolute;
    bottom: -45px!important;
    display: block!important;
    width: 100%;
    padding: 0;
    list-style: none;
    text-align: center;
}

.slick-dots li {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
}

.slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 20px;
    height: 20px;
    padding: 5px;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}

.slick-dots li button:hover,
.slick-dots li button:focus {
    outline: none;
}

.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
    opacity: 1;
}

.slick-dots li button:before {
    font-size: 6px;
    line-height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    content: '•';
    text-align: center;
    opacity: .25;
    color: black;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
    opacity: .75;
    color: black;
}

.nice-select {
    -webkit-tap-highlight-color: transparent;
    background-color: #fff;
    border-radius: 5px;
    border: solid 1px #e8e8e8;
    box-sizing: border-box;
    clear: both;
    cursor: pointer;
    display: block;
    float: left;
    font-family: inherit;
    font-size: 14px;
    font-weight: normal;
    height: 42px;
    line-height: 40px;
    outline: none;
    padding-left: 18px;
    padding-right: 30px;
    position: relative;
    text-align: left !important;
    transition: all 0.2s ease-in-out;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    white-space: nowrap;
    width: auto;
}

.nice-select:hover {
    border-color: #dbdbdb;
}

.nice-select:active, .nice-select.open, .nice-select:focus {
    border-color: #999;
}

.nice-select:after {
    border-bottom: 2px solid #999;
    border-right: 2px solid #999;
    content: '';
    display: block;
    height: 5px;
    margin-top: -4px;
    pointer-events: none;
    position: absolute;
    right: 12px;
    top: 50%;
    transform-origin: 66% 66%;
    transform: rotate(45deg);
    transition: all 0.15s ease-in-out;
    width: 5px;
}

.nice-select.open:after {
    transform: rotate(-135deg);
}

.nice-select.open .list {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1) translateY(0);
}

.nice-select.disabled {
    border-color: #ededed;
    color: #999;
    pointer-events: none;
}

.nice-select.disabled:after {
    border-color: #cccccc;
}

.nice-select.wide {
    width: 100%;
}

.nice-select.wide .list {
    left: 0 !important;
    right: 0 !important;
}

.nice-select.right {
    float: right;
}

.nice-select.right .list {
    left: auto;
    right: 0;
}

.nice-select.small {
    font-size: 12px;
    height: 36px;
    line-height: 34px;
}

.nice-select.small:after {
    height: 4px;
    width: 4px;
}

.nice-select.small .option {
    line-height: 34px;
    min-height: 34px;
}

.nice-select .list {
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
    box-sizing: border-box;
    margin-top: 4px;
    opacity: 0;
    overflow: hidden;
    padding: 0;
    pointer-events: none;
    position: absolute;
    top: 100%;
    left: 0;
    transform-origin: 50% 0;
    transform: scale(0.75) translateY(-21px);
    transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
    z-index: 9;
}

.nice-select .option {
    cursor: pointer;
    font-weight: 400;
    line-height: 40px;
    list-style: none;
    min-height: 40px;
    outline: none;
    padding-left: 18px;
    padding-right: 29px;
    text-align: left;
    transition: all 0.2s;
}

.nice-select .option:hover, .nice-select .option.focus, .nice-select .option.selected.focus {
    background-color: #f6f6f6;
}

.nice-select .option.selected {
    font-weight: bold;
}

.nice-select .option.disabled {
    background-color: transparent;
    color: #999;
    cursor: default;
}

.no-csspointerevents .nice-select .list {
    display: none;
}

.no-csspointerevents .nice-select.open .list {
    display: block;
}

/*----- COLORS -----*/
/*----- FONTS -----*/
/*----- TYPOGRAPHY -----*/
h1, h2, h3, h4, p, ul, ol {
    margin: 0;
    padding: 0;
    font-weight: normal;
}

h1 {
    font: 36px/30px "Lato Bold";
    text-transform: uppercase;
    color: #2fb5e8;
    margin-bottom: 40px;
}

h2 {
    font-size: 28px;
    text-transform: uppercase;
    margin-bottom: 30px;
    font-weight: bold;
    color: #1c578f;
    line-height: 36px;
}

h3 {
    font: 16px/30px "Lato Bold";
    margin-bottom: 10px;
}

p {
    margin-bottom: 35px;
}

ul, ol {
    margin-left: 15px;
    margin-bottom: 30px;
}

a, .btn, button, input, textarea, svg {
    transition: all .3s ease-in-out;
    text-decoration: none;
}

img {
    max-width: 100%;
}

html {
    overflow-x: hidden;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-shadow: rgba(0, 0, 0, 0.01) 0 0 1px;
    overflow-x: hidden;
    position: relative;
    font-weight: normal;
    color: #15273b;
    font: 16px/30px "Lato";
}

section {
    display: block;
    width: 100%;
    float: left;
    clear: both;
    position: relative;
}

.desktop-only {
    display: block;
}

@media (max-width: 1199px) {
    .desktop-only {
        display: none;
    }
}

.mobile-only {
    display: none !important;
}

@media (max-width: 767px) {
    .mobile-only {
        display: block !important;
    }
}

*:focus {
    outline: 0;
}

.container {
    width: 1280px;
    margin: auto;
    float: none;
    display: block;
}

@media (max-width: 1400px) {
    .container {
        width: 1170px;
    }
}

@media (max-width: 1199px) {
    .container {
        width: 970px;
    }
}

@media (max-width: 991px) {
    .container {
        width: 710px;
    }
}

@media (max-width: 767px) {
    .container {
        width: calc(100% - 60px);
    }
}

.grid {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: row;
    flex-flow: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

/*----- MENUS -----*/
.sub-menu {
    display: none;
}

.sub-menu li {
    list-style-type: none;
}

/*----- BUTTONS -----*/
.btn {
    display: block;
    max-width: 260px;
    border: 3px solid #2fb5e8;
    text-align: left;
    line-height: 21px;
    padding: 10px 0px 10px 20px;
    background: #fff;
    color: #15273b;
    text-transform: uppercase;
    font-family: "Lato Bold";
    position: relative;
    margin: auto;
}

.btn span {
    display: block;
    text-transform: none;
    font-family: "Lato";
}

.btn:after {
    content: '';
    width: 38px;
    height: 65px;
    background: url(../img/arrow-light.png) center center/cover no-repeat;
    position: absolute;
    right: 10px;
    top: 0;
}

.btn:hover {
    background: #2fb5e8;
    color: #fff;
}

/*----- INTERNAL PAGES - GLOBAL -----*/
.page-content {
    width: 100%;
    float: left;
    padding-top: 85px;
    padding-bottom: 175px;
}

.column {
    float: left;
    position: relative;
    width: 50%;
}

.main-content {
    width: 62.5%;
    left: 37.5%;
}

.sidebar {
    width: 25%;
    right: 62.5%;
}

.sidebar ul {
    margin: 0;
}

.sidebar li {
    list-style-type: none;
}

.sidebar a {
    display: block;
    border-bottom: 1px solid #d4d8d9;
    color: #15273b;
    text-transform: uppercase;
    padding: 12.5px 20px;
}

.sidebar a:hover {
    color: #2fb5e8;
}

.sidebar .current-menu-item a {
    color: #2fb5e8;
}

.sidebar .widget {
    margin-bottom: 60px;
}

@media (max-width: 991px) {
    .main-content, .sidebar {
        width: 100%;
        left: 0;
        right: 0;
    }

    .sidebar {
        text-align: center;
    }
}

/*----- HEADER -----*/
header {
    background: #15273b;
    padding-top: 20px;
    padding-left: 35px;
    padding-right: 55px;
    padding-bottom: 20px;
    position: relative;
    z-index: 1;
}

header .logo {
    max-width: 570px;
    width: 30%;
    position: relative;
    top: 10px;
}

header .phone {
    font: 43px/1 "Muli Semibold";
    color: #fff;
    position: absolute;
    top: 25px;
    right: 55px;
}

header .phone span {
    font-size: 28px;
    color: #2fb5e8;
}

header nav {
    font: 16px/1 "Muli";
    text-transform: uppercase;
    position: absolute;
    bottom: 20px;
    right: 20px;
    max-width: 990px;
    width: 60%;
}

header nav .menu {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 0;
}

header nav li {
    -ms-flex-positive: 1;
    flex-grow: 1;
    position: relative;
    list-style-type: none;
}

header nav li:after {
    content: '';
    width: 1px;
    height: 15px;
    background: #bbbaba;
    position: absolute;
    right: 0;
    top: 0;
}

header nav li:last-child:after {
    display: none;
}

header nav a {
    text-decoration: none;
    color: #bbbaba;
    position: relative;
    display: block;
    text-align: center;
	    padding-right: 10px;
	cursor: pointer;
}

header nav a:after {
    content: '';
    width: 70%;
    height: 7px;
    background: #2fb5e8;
    display: block;
    margin: 0 auto;
    position: absolute;
    bottom: -27px;
    left: 0;
    right: 0;
    opacity: 0;
    transition: all .3s ease-in-out;
}

header nav a:hover {
    color: #fff;
}

header nav a:hover:after {
    opacity: 1;
}

header nav .current-menu-item a {
    color: #fff;
}

header nav .current-menu-item a:after {
    opacity: 1;
}

header nav .menu-item-has-children:before {
    content: '';
    border-top: 5px solid #bbbaba;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    position: absolute;
    right: 10px;
    top: 7px;
}

header nav .sub-menu {
    position: absolute;
    background: #005382;
    width: 260px;
    top: 35px;
    left: -25px;
}

header nav .sub-menu li:after {
    display: none;
}

header nav .sub-menu a {
    display: block;
    padding: 15px 15px;
    border-bottom: 1px solid #bbbaba;
}

header nav .sub-menu a:after {
    opacity: 0 !important;
}

header .menu-toggle {
    display: none;
}

@media (max-width: 1300px) {
    header .phone {
        font-size: 25px;
    }

    header nav a {
        font-size: 12px;
    }

    header nav .menu-item-has-children:before {
        right: 5px;
        top: 5px;
    }
}

@media (max-width: 991px) {
    header .logo {
        width: 405px;
    }

    header .menu-toggle {
        display: block;
        color: #fff;
        text-transform: uppercase;
        width: 80px;
        text-align: center;
        font-size: 20px;
        position: absolute;
        top: 20px;
        right: 20px;
    }

    header .menu-toggle i {
        width: 80px;
        height: 5px;
        margin-bottom: 8px;
        display: block;
        background: #2fb5e8;
    }

    header .menu-toggle i:first-child {
        margin-top: 8px;
    }

    header nav {
        position: absolute;
        width: 100%;
        max-width: 100%;
        left: 0;
        top: 130px;
    }

    header nav .menu {
        display: none;
    }

    header nav .menu li:after {
        display: none;
    }

    header nav .menu a {
        background: #005382;
        font-size: 16px;
        padding: 15px 0;
        border-bottom: 1px solid #bbbaba;
    }

    header nav .menu a:after {
        display: none;
    }

    header nav .sub-menu {
        position: relative;
        top: 0;
        width: 100%;
        margin: 0;
        left: 0;
    }

    header nav .sub-menu a {
        background: #2fb5e8;
        color: #15273b;
        border-bottom: 1px solid #15273b;
    }

    header nav .menu-item-has-children:before {
        right: 50px;
        top: 20px;
        z-index: 999;
    }

    header .phone {
        text-align: right;
        top: 60px;
        right: 135px;
    }

    header .phone span {
        display: block;
        font-size: 16px;
        margin-bottom: 10px;
    }
	header nav {
    top: 80px!important;
}
}

@media (max-width: 767px) {
header {
    padding-top: 0px;
    padding-left: 15px;
}

    header .phone {
        display: none;
    }

    header .logo {
        width: 255px;
    }

    header .menu-toggle {
        top: 5px;
        right: 10px;
        font-size: 20px;
        width: 60px;
    }

    header .menu-toggle i {
        width: 60px;
        margin-bottom: 5px;
    }

    header .menu-toggle i:first-child {
        margin-top: 5px;
    }

    header nav {
        top: 121px;
    }
}

/*----- BANNER -----*/
.home .banner {
    background: url(../img/banner.jpg) center 0%/cover no-repeat;
    text-align: center;
    height: 760px;
    margin-top: -5px;
}
.banner {
    background: url(../img/banner.jpg) center 0%/cover no-repeat;
    text-align: center;
    height: 400px;
    margin-top: 0px;
}

.home .banner .wrap {
    margin-top: 270px;
}

.banner .wrap {
    margin-top: 135px;
}

.banner .caption, .banner .title, .banner .tagline {
    text-shadow: -15px 5px 30px #000;
}

.home .banner .caption {
    font: 50px/1 "Lato Bold";
    text-transform: uppercase;
    color: #2fb5e8;
}
.banner .caption {
    display: none;
}

.banner .title {
    font: 75px/55px "Lato Bold";
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 30px;
}


.home .banner .title {
    font: 100px/93px "Lato Bold";
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 50px;
}

.banner .title span {
    color: #2fb5e8;
}

.banner .tagline {
    font-size: 24px;
    line-height: 1;
    color: #fff;
    margin-bottom: 20px;
    display: none;
}
.home .banner .tagline {
    font-size: 32px;
    line-height: 1;
    color: #fff;
    margin-bottom: 50px;
    display: none;
}

.banner .btn {
    border: 0;
    font-size: 22px;
    max-width: 290px;
    color: #2fb5e8;
}

.banner .btn span {
    font-size: 16px;
    color: #15273b;
    transition: all .3s ease-in-out;
}

.banner .btn:after {
    background: url(../img/arrow-dark.png) center center no-repeat #15273b;
    width: 35px;
    height: 100%;
    top: 0px;
}

.banner .btn:hover {
    background: #15273b;
    color: #fff;
}

.banner .btn:hover span {
    color: #fff;
}

@media (max-width: 1300px) {
    .banner .caption {
        font-size: 40px;
    }

    .banner .title {
        font-size: 75px;
        margin-bottom: 0;
    }

    .banner .tagline {
        font-size: 25px;
    }
}

@media (max-width: 991px) {
    .banner {
        height: 375px;
    }

    .banner .wrap {
        margin-top: 150px;
    }

    .banner .caption, .banner .title, .banner .tagline {
        text-shadow: 1px 2px 8px #000;
    }

    .banner .caption {
        font-size: 25px;
        line-height: 1;
        margin-bottom: 5px;
    }

    .banner .title {
        font-size: 49px;
        line-height: 1;
    }

    .banner .tagline {
        font-size: 17px;
        margin-bottom: 25px;
    }
}

@media (max-width: 767px) {
    .banner {
     background: url(../img/banner.jpg) -150px 0%/cover no-repeat;
    padding: 0;
    position: relative;
    height: auto;
    padding-top: 20px;
    }

    .banner:before {
        content: '';
        width: 100%;
        height: 190px;
        background: url(../img/banner-mobile.png) center 0%/cover no-repeat;
        display: none;
    }

    .banner .wrap {
        margin-top: 20px;
    }

    .banner .caption, .banner .title, .banner .tagline {
        text-shadow: none;
    }

.banner .title, .banner .tagline {
    color: #ffffff;
    text-shadow: 0 0 10px black;
}

    .banner .caption {
        font-size: 22px;
    }

    .banner .title {
        font-size: 35px;
        line-height: 40px;
        margin-bottom: 20px;
    }

    .banner .tagline {
        font-size: 16px;
        line-height: 25px;
        max-width: 330px;
        margin: 0 auto 30px;
    }

    .banner .btn {
        background: #15273b;
        font-size: 18px;
        max-width: 240px;
        margin-bottom: 50px;
    }

    .banner .btn span {
        color: #fff;
        font-size: 12px;
    }

    .banner .btn:after {
        background: url(../img/arrow-light.png) center center no-repeat;
        right: 10px;
    }
}

@media (max-width: 1366px) {
.banner {
    margin-top: -14px;
}
}


/*----- FOOTER -----*/
footer .form {
    background: #005382;
    width: 40%;
    padding-top: 110px;
    padding-bottom: 110px;
}

footer .form .wrap {
    max-width: 600px;
    width: 80%;
    margin: auto;
}

footer .form .title {
    font-size: 36px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 10px;
    margin-top: 180px;
}

footer .form .tagline {
    font: 28px/1 "Cambria";
    color: #2fb5e8;
    margin-bottom: 80px;
}

footer .locations {
    width: calc(60% - 70px);
    background: url(../img/bg-pattern.png) repeat #15273b;
    padding-top: 95px;
    padding-left: 70px;
    padding-bottom: 175px;
}

footer .locations .logo {
    max-width: 600px;
    margin-bottom: 75px;
}

footer .locations .title-wrap {
    width: 200px;
    float: left;
}

footer .locations .title {
    font-size: 25px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 85px;
}

footer .locations .title span {
    display: block;
    font: 46px/1 "Cambria";
    text-transform: none;
    color: #2fb5e8;
}

footer .locations .grid {
    max-width: 830px;
}

footer .locations .item {
    width: calc(33.3333% - 2px);
    color: #cecfcf;
    text-align: center;
    text-transform: uppercase;
    border-bottom: 1px solid #203b59;
    border-right: 1px solid #203b59;
    line-height: 22px;
    padding-bottom: 50px;
    padding-top: 50px;
    font-size: 14px;
}

footer .locations .item:nth-child(3n) {
    border-right: 0;
}

footer .locations .item:nth-child(n + 7) {
    border-bottom: 0;
    padding-top: 40px;
}

footer .locations .office {
    font: 18px/1 "Lato Bold";
    color: #fff;
    position: relative;
}

footer .locations .office:after {
    content: '';
    width: 50px;
    height: 2px;
    background: #2fb5e8;
    display: block;
    margin: 15px auto;
}

footer .social {
    width: 140px;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

footer .social a {
    width: 35px;
    height: 35px;
    background: url(../img/icon-facebook.png) center center no-repeat #2fb5e8;
    display: block;
    font-size: 0;
    border-radius: 100%;
}

footer .social a:hover {
    opacity: .5;
}

footer .social .twitter {
    background: url(../img/icon-twitter.png) center center no-repeat #2fb5e8;
}

footer .social .linkedin {
    background: url(../img/icon-linkedin.png) center center no-repeat #2fb5e8;
}

footer .subfooter {
    padding: 30px 0;
}

footer .subfooter .container {
    width: calc(100% - 30px);
    max-width: 1440px;
}

footer .subfooter .benchmark {
    text-align: right;
}

footer .subfooter .benchmark span {
    text-transform: uppercase;
    font-size: 12px;
}

@media (max-width: 1400px) {
    footer .form {
        width: 35%;
    }

    footer .locations {
        width: calc(65% - 70px);
    }

    footer .locations .item {
        font-size: 14px;
        line-height: 25px;
    }
}

@media (max-width: 991px) {
    footer .form, footer .locations {
        width: 100%;
    }

    footer .form {
        padding: 100px 0;
    }

    footer .form .wrap {
        max-width: 620px;
    }

    footer .locations {
        padding: 65px 40px 105px;
    }

    footer .locations .logo {
        max-width: 420px;
        margin-bottom: 60px;
    }

    footer .locations .grid {
        width: 70%;
    }

    footer .locations .title {
        font-size: 18px;
        margin-bottom: 50px;
    }

    footer .locations .title span {
        font-size: 35px;
    }

    footer .locations .item {
        font-size: 12px;
        padding-bottom: 20px;
    }

    footer .locations .item:nth-child(n + 4) {
        padding-top: 25px;
    }

    footer .subfooter {
        font-size: 13px !important;
        padding: 20px 0;
    }

    footer .copyright {
        width: 40%;
    }

    footer .benchmark {
        width: 60%;
    }
}

@media (max-width: 767px) {
    footer {
        text-align: center;
    }

    footer .form {
        padding: 0px 0 75px;
    }

    footer .form .wrap {
        width: 90%;
    }

    footer .form .title {
        font-size: 27px;
    }

    footer .form .tagline {
        font-size: 21px;
        margin-bottom: 130px;
    }

    footer .locations {
        padding: 70px 0;
    }

    footer .locations .logo {
        width: 193px;
        height: 128px;
        background: url(../img/footer-logo.png) center center no-repeat;
        margin: 0 auto 60px;
    }

    footer .locations .logo img {
        display: none;
    }

    footer .locations .title-wrap {
        width: 100%;
    }

    footer .locations .title {
        font-size: 15px;
    }

    footer .locations .title span {
        font-size: 35px;
    }

    footer .locations .social {
        display: none;
    }

    footer .locations .grid {
        width: 100%;
    }

    footer .locations .item {
        width: 100%;
        border: 0;
        margin-bottom: 65px;
        padding: 0 !important;
    }

    footer .locations .office {
        font-size: 18px;
    }

    footer .locations .office:after {
        width: 50px;
        height: 2px;
    }

    footer .locations .address br:first-child {
        display: none;
    }

    footer .subfooter {
        padding: 20px 0;
    }

    footer .subfooter .copyright, footer .subfooter .benchmark {
        width: 100%;
        text-align: center;
    }

    footer .subfooter .copyright {
        font-size: 12px;
        margin-bottom: 10px;
    }

    footer .subfooter .benchmark {
        font-size: 13px;
        line-height: 1;
    }

    footer .subfooter .benchmark span {
        font-size: 10px;
        display: block;
        margin-bottom: 10px;
    }
}

/*----- CONTACT FORM -----*/
.gform_wrapper label {
    display: none;
}

.gform_wrapper ul {
    margin: 0;
}

.gform_wrapper li {
    width: 100%;
    margin-bottom: 20px;
    list-style-type: none;
}

.gform_wrapper input, .gform_wrapper textarea {
    width: 100%;
    background: transparent;
    box-shadow: none;
    border: 0;
    border-bottom: 1px solid #fff;
    padding-bottom: 15px;
    color: #fff;
}

.gform_wrapper textarea {
    height: 130px;
}

.gform_wrapper ::-webkit-input-placeholder {
    /* Chrome */
    color: #abaaaa !important;
    text-transform: uppercase;
}

.gform_wrapper :-ms-input-placeholder {
    /* IE 10+ */
    color: #abaaaa !important;
    text-transform: uppercase;
}

.gform_wrapper ::-moz-placeholder {
    /* Firefox 19+ */
    color: #abaaaa !important;
    opacity: 1 !important;
    text-transform: uppercase;
}

.gform_wrapper :-moz-placeholder {
    /* Firefox 4 - 18 */
    color: #abaaaa !important;
    opacity: 1 !important;
    text-transform: uppercase;
}

.gform_wrapper input[type=submit] {
    border: 0;
    background: #fff;
    color: #15273b;
    width: auto;
    padding: 15px 50px;
    float: right;
}

.gform_wrapper input[type=submit]:hover {
    background: #15273b;
    color: #fff;
}

@media (max-width: 991px) {
    .gform_wrapper input[type=submit] {
        float: left;
        margin-top: 40px;
		    text-align: center;
    }
}

.required {
    transform: translateY(-20px);
    color: #abaaaa;
}

@media (max-width: 991px) {
    .required {
        transform: translate(-160px, -25px);
    }
}

input#input_1_5 {
    display: none;
}

.gfield_description {
    display: none;
}
/*----- BLOG -----*/
article {
    border-bottom: 1px solid #d4d8d9;
    margin-bottom: 30px;
    padding-bottom: 30px;
}

article:last-child {
    margin-bottom: 0;
}

article a {
    font-family: "Lato Bold";
    text-transform: uppercase;
    color: #15273b;
}

article a:hover {
    color: #2fb5e8;
}

/*----- PRACTICE AREAS -----*/
.page-practice-areas h1 {
    text-align: center;
    margin-bottom: 100px;
}

.page-practice-areas #menu-practice-areas {
    text-align: center;
    list-style-type: none;
}

.page-practice-areas #menu-practice-areas li {
    width: 25%;
    float: left;
    margin-right: 75px;
    margin-bottom: 50px;
}

.page-practice-areas #menu-practice-areas li:nth-child(3n) {
    margin-right: 0;
}

.page-practice-areas #menu-practice-areas a {
    text-transform: uppercase;
    color: #15273b;
    border-bottom: 1px solid #d4d8d9;
    display: block;
    padding-bottom: 10px;
}

.page-practice-areas #menu-practice-areas a:hover {
    color: #2fb5e8;
}

@media (max-width: 991px) {
    .page-practice-areas h1 {
        margin-bottom: 50px;
    }

    .page-practice-areas #menu-practice-areas li {
        width: 100%;
        margin-bottom: 0;
        margin-right: 0 !important;
    }

    .page-practice-areas #menu-practice-areas li a {
        padding: 15px 0;
    }
}

/*----- HOME PAGE -----*/
.selling-points .intro {
    background: #15273b;
    text-align: center;
    width: 25%;
    float: left;
    font: 41px/41px "Cambria";
    color: #d4d8d9;
    font-weight: bold;
    position: relative;
    padding: 110px 0 85px;
}

.selling-points .intro:before {
    content: '';
    width: 94px;
    height: 187px;
    background: url(../img/sp-bg.png) center center no-repeat;
    position: absolute;
    top: 50px;
    left: 0;
    right: 0;
    margin: auto;
}

.selling-points .intro span {
    font: 45px/1 "Lato";
    text-transform: uppercase;
    color: #fff;
    font-weight: normal;
    display: block;
    margin-top: 5px;
}

.selling-points .number, .selling-points .content {
    float: left;
}

.selling-points .number {
    font: 60px/1 "Cambria";
    color: #2fb5e8;
    margin-right: 30px;
}

.selling-points .title {
    font: 18px/24px "Lato Bold";
    text-transform: uppercase;
    width: 180px;
    margin-bottom: 6px;
}

.selling-points .tagline {
    color: #5e5f60;
    line-height: 22px;
    margin-top: 16px;
}

.selling-points .grid {
    width: 75%;
    padding-top: 75px;
    padding-bottom: 65px;
}

.selling-points .item {
    -ms-flex-positive: 1;
    flex-grow: 1;
    width: calc(25% - 91px);
    padding: 0 45px;
    border-right: 1px solid #d4d8d9;
}

.selling-points .item:first-child .title {
    width: 230px;
}

.selling-points .item:last-child {
    border: 0;
}

@media (max-width: 1750px) {
    .selling-points .intro {
        font-size: 34px;
    }

    .selling-points .intro span {
        font-size: 35px;
    }
}

@media (max-width: 1360px) {
    .selling-points .intro {
        font-size: 28px;
    }

    .selling-points .intro span {
        font-size: 29px;
    }

    .selling-points .item .title {
        max-width: 140px;
    }
}

@media (max-width: 991px) {
    .selling-points .intro {
        display: none;
    }

    .selling-points .grid {
        width: 100%;
        padding: 0;
    }

    .selling-points .item {
        padding: 55px 10px;
        width: calc(25% - 20px);
        border: 0;
    }

    .selling-points .number {
        font-size: 40px;
        margin-right: 15px;
        width: 40px;
    }

    .selling-points .content {
        width: calc(100% - 60px);
    }

    .selling-points .title {
        font-size: 15px;
        line-height: 20px;
        max-width: 110px;
        margin-bottom: 15px;
    }

    .selling-points .tagline {
        font-size: 13px;
        line-height: 20px;
        max-width: 120px;
    }
}

@media (max-width: 767px) {
    .selling-points {
        text-align: center;
        padding-bottom: 55px;
    }

    .selling-points .intro {
        display: block;
        width: 100%;
        font-size: 27px;
        line-height: 1;
        padding: 110px 0 80px;
    }

    .selling-points .intro span {
        font-size: 30px;
    }

    .selling-points .intro:before {
        background-size: contain;
        height: 145px;
        top: 60px;
    }

    .selling-points .item {
        width: 100%;
        padding: 55px 35px 0;
    }

    .selling-points .item:first-child .title {
        max-width: 200px;
    }

    .selling-points .title {
        font-size: 18px;
        line-height: 28px;
        max-width: 200px;
    }
.selling-points .item .title {
    max-width: 200px;
}
    .selling-points .number {
        font-size: 60px;
    }

    .selling-points .tagline {
        font-size: 16px;
        line-height: 28px;
        max-width: 200px;
    }

    .selling-points .title {
        margin: 0 auto 10px;
    }

    .selling-points .tagline {
        margin: 0 auto;
    }
}

/*----- ABOUT -----*/
.about {
    background: #f3f3f4;
    padding: 170px 0 170px;
}
.about p {
    font-size: 18px;
    line-height: 32px;
}

.about h1 {
    font-family: "Cambria";
    text-transform: none;
    font-size: 60px;
}

.about h1 span {
    display: block;
    margin-top: 25px;
    font: 53px/1 "Lato";
    text-transform: uppercase;
    color: #15273b;
}

.about .container {
    max-width: 1170px;
}

.about .column {
    width: 48%;
    margin-right: 4%;
}

.about .column:last-child {
    margin-right: 0;
}

.about blockquote {
    font: 22px/26px "Lato Bold";
    letter-spacing: .25px;
    text-transform: uppercase;
    margin: 0;
    color: #2fb5e8;
    border-top: 3px solid #15273b;
    padding-top: 25px;
    padding-right: 90px;
}

.about blockquote p {
    margin-bottom: 0;
}

.about .btn {
    display: none;
}

@media (max-width: 991px) {
    .about {
        padding: 70px 0 120px;
    }

    .about .container {
        width: calc(100% - 60px);
    }

    .about h1 {
        font-size: 37px;
    }

    .about h1 span {
        font-size: 35px;
    }

    .about blockquote {
        font-size: 18px;
        line-height: 26px;
    }

    .about blockquote p {
        max-width: 270px;
    }
}

@media (max-width: 767px) {
    .about {
        text-align: center;
        padding-bottom: 80px;
    }

    .about .container {
        width: calc(100% - 30px);
    }

    .about .column {
        width: 100%;
    }

    .about h1 {
        font-size: 35px;
    }

    .about h1 span {
        font-size: 37px;
        line-height: 45px;
        margin-top: 5px;
    }

    .about p {
        font-size: 14px;
        line-height: 30px;
    }

    .about blockquote {
        width: 100%;
        padding-right: 0;
        margin-bottom: 15px;
        border: 0;
    }

    .about .btn {
        display: block;
        width: 230px;
        text-align: center;
        padding: 30px 0;
        border: 0;
        background: #15273b;
        color: #2fb5e8;
        font-size: 18px;
    }

    .about .btn:after {
        display: none;
    }

    .about .about-more {
        display: none;
    }
}

/*----- PRACTICE AREAS -----*/
.practice-areas {
    background: url(../img/bg-pattern-light.png) #005382;
    text-align: center;
    color: #fff;
    padding: 90px 0;
	width: 100%; /*this is the edit - no prev rule */
}

.practice-areas .title {
    font: 40px/1 "Lato Bold";
    text-transform: uppercase;
    margin-bottom: 85px;
}

.practice-areas .wrap {
    max-width: 1670px; /*this is the edit - was 820px*/
    margin: 0 auto;
}

.practice-areas .item {
    width: 24%; /*this is the edit - was 50% */
    margin-bottom: 60px;
    max-height: 160px !important;
}

.practice-areas .item a {
    display: block;
    max-width: 360px;
    margin: auto 0 0 13%;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid #ffffff;
    padding: 20px 0 25px;
    font: 22px/1 "Lato Bold";
    text-transform: uppercase;
    color: #fff;
    min-height: 100px;
    box-shadow: 0 0 10px #012b43;
}

.practice-areas .item a:hover {
    background: #2fb5e8;
	color: #15273b;
}

.practice-areas .item:last-child {
    margin-bottom: 125px;
}

.practice-areas .icon {
    max-height: 60px;
    margin-bottom: 15px;
}

.practice-areas .btn {
    border: 0;
    color: #2fb5e8;
    max-width: 300px;
    text-align: center;
    padding: 30px 0;
}

.practice-areas .btn:after {
    display: none;
}

.practice-areas .btn:hover {
    color: #fff;
}

@media (max-width: 1550px) {
    .practice-areas .item a {
        max-width: 280px;
        font-size: 15px;
		margin-left: 15%; /*this is the edit - no prev rule */
    }
}


@media (max-width: 1199px) {
    .practice-areas .item a {
        max-width: 280px; /*this is the edit - was 220px */
        font-size: 15px;
	    margin-left: 13%; /*this is the edit - no prev rule */
    }
}

@media (max-width: 991px) {
    .practice-areas {
        width: 100%;
        padding: 70px 0 100px;
    }

    .practice-areas .title {
        margin-bottom: 70px;
    }

    .practice-areas .wrap {
        max-width: 600px;
    }

    .practice-areas .item {
        max-height: 145px !important;
	    width: 50%; /*this is the edit - no prev rule */
    }

    .practice-areas .item a {
        font-size: 16px;
	    margin: auto;

    }

    .practice-areas .item:last-child {
        margin-bottom: 90px;
    }

    .practice-areas .btn {
        padding: 25px 0;
    }
}

@media (max-width: 767px) {
    .practice-areas {
        padding: 60px 0 90px;
    }

    .practice-areas .title {
        font-size: 25px;
        margin-bottom: 80px;
    }

    .practice-areas .item {
        width: 100%;
        margin-bottom: 50px !important;
    }

    .practice-areas .item a {
        padding: 10px 0 15px;
		margin-left: auto; /*this is the edit - no prev rule */
}
    }

    .practice-areas .btn {
        width: 230px;
        font-size: 13px;
    }
}

/*----- TESTIMONIALS -----*/
.testimonials {
    background: #15273b;
    color: #fff;
    padding-top: 175px;
}

.testimonials .title {
    font: 48px/1 "Cambria";
    font-weight: bold;
    text-align: center;
}

.testimonials .title span {
    display: block;
    font-family: "Lato";
    font-weight: normal;
    color: #2fb5e8;
    text-transform: uppercase;
    position: relative;
}

.testimonials .title span:after {
    content: '';
    width: 350px;
    height: 3px;
    background: #2fb5e8;
    display: block;
    margin: 25px auto 110px;
}

.testimonials .wrap {
    max-width: 600px;
    margin: auto;
}

.testimonials .left {
    text-align: center;
    width: 30%;
    margin-right: 10%;
}

.testimonials .right {
    width: 60%;
}

.testimonials .stars {
    width: 130px;
    height: 26px;
    background: url(../img/icon-stars.png) center center/cover no-repeat;
    display: block;
    margin: auto;
}

.testimonials .name {
    font: 18px/1 "Lato Bold";
}

.testimonials .source {
    position: relative;
    color: #f0efef;
}

.testimonials .source:after {
    content: '';
    width: 90px;
    height: 1px;
    display: block;
    background: #f0efef;
    margin: 15px auto;
}

.testimonials .item {
    margin-bottom: 100px;
}

.testimonials .slick-dots {
    bottom: 0;
}

.testimonials .slick-dots li {
    width: 10px;
    height: 10px;
    background: #fff;
}

.testimonials .slick-dots li button, .testimonials .slick-dots li:before {
    display: none;
}

.testimonials .slick-dots li.slick-active {
    background: #005382;
}

.testimonials .icon {
    width: 44px;
    height: 33px;
    background: url(../img/icon-quote.png) center center/cover no-repeat;
    float: left;
    margin-top: 10px;
    margin-right: 15px;
}

.testimonials .quote {
    float: left;
    width: calc(100% - 65px);
    font-style: italic;
}

.testimonials .btn {
    border: 0;
    color: #15273b;
    max-width: 300px;
    text-align: center;
    padding: 30px 0;
    background: #2fb5e8;
    float: left;
    width: 42%;
    margin-left: 34%;
    margin-top: 40px;
}

.testimonials .btn:after {
    display: none;
}

.testimonials .btn:hover {
    background: #fff;
}

@media (max-width: 991px) {
    .testimonials {
        width: 100%;
        padding: 80px 0 110px;
    }

    .testimonials .btn {
        padding: 25px 0;
    }
}

@media (max-width: 767px) {
    .testimonials {
        padding: 60px 0 70px;
    }

    .testimonials .title {
        font-size: 37px;
        margin-bottom: 80px;
    }

    .testimonials .title span:after {
        display: none;
    }

    .testimonials .left, .testimonials .right {
        width: 100%;
        max-width: 230px;
        margin: 0 auto 30px;
        float: none;
        text-align: center;
    }

    .testimonials .icon {
        margin-left: -15px;
    }

    .testimonials .btn {
        width: 250px;
    }

    .testimonials .item {
        margin-bottom: 160px;
    }

    .testimonials .slick-dots {
        bottom: 70px;
        margin: 0;
    }
}

/*----- NEWS -----*/

section.news {
    display: none;
}
.news {
    padding: 170px 0 0;
    background: #f3f3f4;
}

.news .title-wrap {
    text-align: center;
    position: relative;
    margin-bottom: 160px;
}

.news .title-wrap:before {
    content: '';
    width: 94px;
    height: 173px;
    background: url(../img/news-bg.png) center center/cover no-repeat;
    position: absolute;
    top: -60px;
    left: 0;
    right: 0;
    margin: auto;
}

.news .title {
    font: 62px/1 "Lato Bold";
    text-transform: uppercase;
    color: #2fb5e8;
}

.news .title span {
    font-family: "Cambria";
    color: #15273b;
}

.news .tagline {
    text-transform: uppercase;
    color: #757575;
}

.news .btn {
    background: #2fb5e8;
    color: #fff;
    border: 0;
}

.news .btn:after {
    background: url(../img/arrow-white.png) center center no-repeat;
}

.news .btn:hover {
    background: #15273b;
}

.news .icon {
    width: 25px;
    margin-right: 25px;
    float: left;
}

.news .content {
    width: calc(100% - 50px);
    float: left;
}

.news .article {
    font: 18px/30px "Lato Bold";
    text-transform: uppercase;
    max-width: 210px;
    position: relative;
}

.news .article:after {
    content: '';
    width: 37px;
    height: 6px;
    display: block;
    background: #d9d9d9;
    margin: 20px 0;
}

.news .logo {
    margin-bottom: 25px;
}

.news .excerpt {
    color: #5a5a5a;
    max-width: 200px;
    margin-bottom: 30px;
}

.news .item {
    margin-bottom: 145px;
}

.news .item a {
    font-family: "Lato Bold";
    text-transform: uppercase;
    color: #2fb5e8;
}

.news .slick-next, .news .slick-prev {
    width: 19px;
    height: 24px;
    background: url(../img/arrow-left-grey.png) center center no-repeat;
    top: 33%;
}

.news .slick-next:before, .news .slick-prev:before {
    display: none;
}

.news .slick-next {
    background: url(../img/arrow-right-grey.png) center center no-repeat;
    right: -80px;
}

.news .slick-prev {
    left: -80px;
}

@media (max-width: 991px) {
    .news {
        padding-top: 160px;
        padding-bottom: 120px;
    }

    .news .title-wrap:before {
        height: 145px;
        background-size: contain;
        top: -50px;
    }

    .news .title {
        font-size: 50px;
    }

    .news .tagline {
        font-size: 12px;
    }

    .news .item {
        margin-bottom: 105px;
    }

    .news .logo {
        max-width: 130px;
    }

    .news .article {
        font-size: 14px;
        line-height: 24px;
        max-width: 130px;
    }

    .news .article:after {
        margin: 10px 0 20px;
    }

    .news .excerpt {
        max-width: 145px;
    }

    .news .slick-prev {
        left: 0;
        z-index: 10;
    }

    .news .slick-next {
        right: 0;
    }
}

@media (max-width: 767px) {
    .news {
        padding: 125px 0 80px;
        text-align: center;
		display: none;
    }

    .news .container {
        width: calc(100% - 30px);
    }

    .news .title-wrap {
        margin-bottom: 125px;
    }

    .news .title {
        font-size: 35px;
    }

    .news .tagline {
        font-size: 13px;
        line-height: 20px;
    }

    .news .item {
        margin-bottom: 0;
    }

    .news .article {
        max-width: 180px;
    }

    .news .logo {
        max-width: 100%;
    }

    .news .excerpt {
        max-width: 175px;
    }

    .news a:not(.btn) {
        margin-left: -40px;
    }

    .news .btn {
        font-size: 13px;
    }
}

/*----- CURRENT CASES -----*/
.current-cases {
    background: url(../img/cases-bg.jpg) center center/cover no-repeat;
    padding: 225px 0 250px;
}

.current-cases .title-wrap {
    max-width: 400px;
    margin-left: 100px;
    margin-right: 90px;
    float: left;
}

.current-cases .title {
    font-size: 82px;
    color: #fff;
    text-transform: uppercase;
}

.current-cases .title span {
    display: block;
    text-transform: none;
    font-family: "Cambria";
    font-size: 67px;
    font-weight: bold;
    margin-top: 40px;
    border-bottom: 2px solid #2fb5e8;
    padding-bottom: 50px;
    margin-bottom: 30px;
}

.current-cases .tagline {
    color: #fff;
}

.current-cases .grid-wrap {
    width: calc(100% - 590px);
    float: left;
    background: #fff;
    padding: 115px 0;
    position: relative;
}

.current-cases .grid {
    max-width: 900px;
    margin: auto;
}

.current-cases .icon, .current-cases .content {
    float: left;
}

.current-cases .item {
    -ms-flex-positive: 1;
    flex-grow: 1;
    width: 50%;
}

.current-cases .item:nth-child(-n + 2) {
    margin-bottom: 120px;
}

.current-cases .icon {
    width: 60px;
    border-right: 1px solid #d4d8d9;
    margin-right: 25px;
}

.current-cases .content {
    width: calc(100% - 100px);
    color: #5e5e5e;
    max-width: 300px;
}

.current-cases .case {
    font: 24px/1 "Lato Bold";
    color: #005382;
    margin-bottom: 45px;
}

.current-cases .btn {
    position: absolute;
    width: 250px;
    left: 0;
    right: 0;
    bottom: -30px;
    background: #2fb5e8;
    color: #fff;
    border: 0;
}

.current-cases .btn:after {
    background: url(../img/arrow-grey.png) center center/cover no-repeat;
    height: 62px;
}

.current-cases .btn:hover {
    background: #b6b7b8;
    color: #15273b;
}

@media (max-width: 1550px) {
    .current-cases .title-wrap {
        max-width: 340px;
        margin-left: 70px;
        margin-right: 70px;
    }

    .current-cases .grid-wrap {
        width: calc(100% - 480px);
    }

    .current-cases .grid {
        max-width: 830px;
    }

    .current-cases .title {
        font-size: 66px;
    }

    .current-cases .title span {
        font-size: 50px;
        margin-top: 30px;
    }
}

@media (max-width: 1360px) {
    .current-cases .title-wrap {
        max-width: 300px;
        margin-left: 40px;
        margin-right: 40px;
    }

    .current-cases .grid-wrap {
        width: calc(100% - 380px);
    }

    .current-cases .grid {
        max-width: 700px;
    }
}

@media (max-width: 991px) {
    .current-cases {
        padding-top: 145px;
    }

    .current-cases .title-wrap {
        max-width: 210px;
        margin-left: 20px;
        margin-right: 50px;
    }

    .current-cases .title {
        font-size: 45px;
    }

    .current-cases .title span {
        font-size: 45px;
        margin-top: 15px;
    }

    .current-cases .tagline {
        font-size: 12px;
        max-width: 200px;
    }

    .current-cases .grid-wrap {
        width: calc(100% - 310px);
        padding: 50px 15px 40px;
    }

    .current-cases .item:nth-child(-n + 2) {
        margin-bottom: 40px;
    }

    .current-cases .item:nth-child(3) .case {
        max-width: 90px;
    }

    .current-cases .icon {
        width: 50px;
        border: 0;
    }

    .current-cases .icon img {
        max-width: 30px;
        margin: auto;
        display: block;
    }

    .current-cases .case {
        font-size: 20px;
        line-height: 25px;
        margin-bottom: 25px;
    }

    .current-cases .excerpt {
        font-size: 13px;
        line-height: 25px;
    }

}

@media (max-width: 767px) {
    .current-cases {
        background: url(../img/cases-bg-mobile.png) center center/cover no-repeat;
        text-align: center;
        padding: 80px 0 200px;
    }

    .current-cases .title-wrap, .current-cases .grid-wrap {
        width: 100%;
        margin: 0 auto;
        float: none;
    }

    .current-cases .title-wrap {
        max-width: 275px;
    }

    .current-cases .grid-wrap {
        max-width: 220px;
    padding-top: 30px;
    padding-bottom: 40px;
    height: 360px;
    }

    .current-cases .title {
        font-size: 55px;
    }

    .current-cases .title span {
        font-size: 50px;
        border-bottom: 3px solid #2fb5e8;
    }

    .current-cases .tagline {
        font-size: 14px;
        line-height: 25px;
        color: #fff;
        max-width: 100%;
        margin-bottom: 50px;
    }

    .current-cases .item {
        width: 100%;
        margin-bottom: 0 !important;
    }

    .current-cases .icon {
        border-right: 1px solid #d4d8d9;
    }

    .current-cases .icon img {
        margin-top: 30px;
    }

    .current-cases .slick-next, .current-cases .slick-prev {
        width: 19px;
        height: 24px;
        background: url(../img/arrow-left-grey.png) center center no-repeat;
        top: 33%;
    }

    .current-cases .slick-next:before, .current-cases .slick-prev:before {
        display: none;
    }

    .current-cases .slick-next {
        background: url(../img/arrow-right-grey.png) center center no-repeat;
        right: -45px;
    }

    .current-cases .slick-prev {
        left: -45px;
    }

    .current-cases .btn {
        width: 200px;
        bottom: -120px;
        font-size: 13px;
    }

    .current-cases .case {
        max-width: 100% !important;
    }
}

/*----- TEAM -----*/
.team {
    padding: 225px 0 165px;
	background: #f3f3f4;
}

.team .container {
    max-width: 1170px;
}

.team .title-wrap {
    text-align: center;
    position: relative;
    margin-bottom: 160px;
}

.team .title-wrap:before {
    content: '';
    width: 94px;
    height: 173px;
    background: url(../img/news-bg.png) center center/cover no-repeat;
    position: absolute;
    top: -60px;
    left: 0;
    right: 0;
    margin: auto;
}

.team .title {
    font: 32px/1 "Lato Bold";
    text-transform: uppercase;
    color: #2fb5e8;
}

.team .title span {
    font: 64px/1 "Cambria";
    color: #15273b;
    display: block;
}

.team .item {
    padding: 0 15px;
    margin-bottom: 125px;
}

.team img {
    margin: 0 auto 20px;
    width: 100%;
}

.team .wrap {
    background: #15273b;
    color: #fff;
    text-align: center;
    border-bottom: 6px solid #2fb5e8;
    padding: 15px 0;
}

.team a {
    color: #fff;
}

.team .name {
    font: 20px/1 "Lato Bold";
    text-transform: uppercase;
    margin-bottom: 10px;
}

.team .job-title {
    font-family: "Cambria";
    line-height: 1;
}

.team .slick-next, .team .slick-prev {
    width: 19px;
    height: 24px;
    background: url(../img/arrow-left.png) center center no-repeat;
    top: 33%;
}

.team .slick-next:before, .team .slick-prev:before {
    display: none;
}

.team .slick-next {
    background: url(../img/arrow-right.png) center center no-repeat;
    right: -80px;
}

.team .slick-prev {
    left: -80px;
}

.team .btn {
    color: #15273b;
    width: 20%;
    float: left;
    margin-left: 40%;
    max-width: 20%!important;
    margin-right: 40%;
}

@media (max-width: 1199px) {
	.team .slick-next {
		right: -40px;
	}
	
	.team .slick-prev {
		left: -40px;
	}
	
	.team .container {
		width: 920px;
	}
}

@media (max-width: 991px) {
    .team {
        padding: 130px 0 120px;
    }

    .team .title-wrap {
        margin-bottom: 150px;
    }

    .team .title-wrap:before {
        height: 150px;
        background-size: contain;
        top: -50px;
    }

    .team .title {
        font-size: 23px;
    }

    .team .title span {
        font-size: 55px;
    }

    .team .item {
        padding: 0 5px;
        margin-bottom: 100px;
    }

    .team .item img {
        margin-bottom: 10px;
    }

    .team .name {
        font-size: 18px;
        margin-bottom: 5px;
    }

    .team .job-title {
        font-size: 14px;
    }
	
}

@media (max-width: 767px) {
    .team {
        padding: 145px 0 80px;
    }

    .team .container {
        width: calc(100% - 30px);
    }

    .team .title-wrap {
        margin-bottom: 120px;
    }

    .team .title-wrap:before {
        top: -60px;
    }

    .team .title {
        font-size: 18px;
    }

    .team .title span {
        font-size: 37px;
    }

    .team .team-carousel {
        max-width: 230px;
        margin: auto;
		float: none;
    }

    .team .slick-prev {
        background-image: url(../img/arrow-left-blue.png);
        left: -30px;
    }

    .team .slick-next {
        background-image: url(../img/arrow-right-blue.png);
        right: -30px;
    }

.team .btn {
    font-size: 13px;
    width: 80%!important;
    max-width: 80%!important;
    margin-left: 10%!important;
}
	.gform_wrapper input, .gform_wrapper textarea {
    width: 95%!important;
}
}

/*----- OUR FIRM -----*/
.our-firm {
    background: #f3f3f4;
    padding: 185px 0;
}

.our-firm .wrap {
    width: calc(100% - 60px);
    max-width: 1630px;
    margin: auto;
}

.our-firm h3 {
    font: 20px/30px "Lato Bold";
    text-transform: uppercase;
    color: #005382;
    border-bottom: 1px solid #d4d8d9;
    padding-bottom: 10px;
}

.our-firm .left {
    width: 55%;
    margin-right: 7%;
}

.our-firm .right {
    width: 38%;
}

.our-firm blockquote {
    font: 40px/60px "Cambria";
    color: #2fb5e8;
    margin: 0;
    position: relative;
}

.our-firm blockquote:after {
    content: '';
    width: 160px;
    height: 6px;
    background: #005382;
    display: block;
    margin: 60px 0;
}

.our-firm .tagline {
    font: 39px/42px "Lato Bold";
    text-transform: uppercase;
    color: #005382;
}

.our-firm .btn {
    display: none;
}

@media (max-width: 991px) {
    .our-firm {
        padding: 100px 0 110px;
    }

    .our-firm .wrap {
        width: calc(100% - 30px);
    }

    .our-firm h3 {
        font-size: 18px;
        line-height: 30px;
    }

    .our-firm p {
        font-size: 14px;
        line-height: 25px;
    }

    .our-firm blockquote {
        font-size: 25px;
        line-height: 38px;
        margin-top: 60px;
    }

    .our-firm blockquote:after {
        margin: 30px 0;
    }

    .our-firm .tagline {
        font-size: 28px;
        max-width: 230px;
    }
}

@media (max-width: 767px) {
    .our-firm {
        padding: 80px 0 65px;
        text-align: center;
    }

    .our-firm .column {
        width: 100%;
    }

    .our-firm blockquote {
        margin-top: 30px;
    }

    .our-firm blockquote:after {
        margin: 30px auto;
    }

    .our-firm .tagline {
        font-size: 26px;
        margin: auto;
        max-width: 100%;
    }

    .our-firm .our-firm-more {
        display: none;
    }

    .our-firm .btn {
        display: block;
        width: 230px;
        text-align: center;
        padding: 20px 0;
        border: 0;
        background: #15273b;
        color: #2fb5e8;
        font-size: 18px;
    }

    .our-firm .btn:after {
        display: none;
    }

    .our-firm .about-more {
        display: none;
    }
}

/*----- AWARDS -----*/

section.awards {
    display: none;
}
.awards {
    padding: 170px 0;
    text-align: center;
}

.awards .container {
    width: calc(100% - 60px);
    max-width: 1560px;
}

.awards .title {
    font: 49px/1 "Lato Bold";
    text-transform: uppercase;
    color: #2fb5e8;
    margin-bottom: 140px;
}

.awards .title span {
    font-family: "Cambria";
    color: #15273b;
}

.awards img {
    margin: auto;
	width: calc(60% - 30px);
}

.awards .slick-next, .awards .slick-prev {
    width: 19px;
    height: 24px;
    background: url(../img/arrow-left-blue.png) center center no-repeat;
    top: 33%;
}

.awards .slick-next:before, .awards .slick-prev:before {
    display: none;
}

.awards .slick-next {
    background: url(../img/arrow-right-blue.png) center center no-repeat;
    right: -80px;
}

.awards .slick-prev {
    left: -80px;
}


@media (max-width: 991px) {
    .awards {
        padding: 120px 0;
    }

    .awards .title {
        font-size: 39px;
        margin-bottom: 120px;
    }

    .awards img {
        max-width: 115px;
    }

    .awards .slick-prev {
        left: -20px;
    }

    .awards .slick-next {
        right: -20px;
    }
}



@media (max-width: 767px) {
    .awards {
        padding: 50px 0 80px;
    }

    .awards .container {
        width: calc(100% - 30px);
    }

    .awards .title {
        font-size: 32px;
        margin-bottom: 80px;
    }

    .awards .title span {
        font-size: 41px;
    }

    .awards .slick-prev {
        left: 0;
        background-image: url(../img/arrow-left-grey.png);
    }

    .awards .slick-next {
        right: 0;
        background-image: url(../img/arrow-right-grey.png);
    }
}

/*Nancy-Added*/

.column.main-content h3 {
    font: 20px/30px "Lato Bold";
    margin-bottom: 10px;
    color: #017cc0;
}

.benchmark.column a {
    color: #005382;
}

.benchmark.column a:hover {
    color: #b6b7b8;
}

.wrap a:hover {
    color: #2eb5e8;
}

.page-practice-areas #menu-practice-areas  {
    margin-left: 10%!important;

}

@media (max-width:1024px) {
.page-content {
    padding-bottom: 40px!important
}
}

@media (max-width:1366px) and (min-width: 1024px) {
header nav {
    font: 12px/1 "Muli"!important;
    text-transform: uppercase;
    position: absolute;
    bottom: 20px;
    right: 20px;
    max-width: 990px;
    width: 67%!important;
}
}




/* ===== ATTORNEY PAGE ===== */

#attorney-page {
    margin-left: 1%;
}
.attorney-wrap {
    float: left;
    width: 24%;
    margin: 0px 1% 50px 0;
}

.attorney-wrap strong {
text-align: center!important;
    background-color: #0e99e5;
    display: block;
    width: 96%;
    margin: 10px auto 0px;
    padding: 5px;
    color: white;
}
.attorney-wrap strong:hover {
    background-color: black;
}
.attorney-wrap img {
    width: 100%;
    height: auto;
}
@media (max-width: 767px) {
.attorney-wrap {
    float: left;
    width: 80%;
    margin: 0px 10% 30px;
}
}

#primary #attorney-page {
    width: 100%;
}

#secondary .widget #attorney-page {
    display: none;
}

div#primary-testominals h1 {
    text-align: center;
    padding-top: 30px;
}
/* ===== ATTORNEY PAGE ===== */

/*TESTIMONIALS PAGE*/


.testimonials-wrap p {
    float: left;
    width: 100%;
  }
img.stars-testimonial.alignleft {
    float: left;
    display: block;
    margin-bottom: 10px;
}

.testimonials-wrap {
    float: left;
    margin-bottom: 40px;
    border-bottom: 5px solid #0e99e5;    
    width: 25%;
    min-height: 320px;
    background-color: #eff0f1;
    margin-right: 5%;
    padding: 20px;
}
.testimonials-wrap.last {
    margin-right: 0%;
}

  strong.page-testimonials {
    float: left;
    display: block;
    color: #0e99e5;
    margin: 0px!important;
    line-height: 24px;
    font-size: 18px;
    width: 100%;
  }

  p.credit {
    width: 100%;
    margin-left: 25px !important;
    font-weight: 700;
    float: left;
    margin-bottom: 30px!important;
      }

@media (max-width: 1024px) {
#testim-page .testimonials-wrap {
    width: 90%;
    min-height: 280px;
    margin: 0 3% 40px;
}

}

@media (min-width: 1025px) and (max-width: 1399px) {

#testim-page .testimonials-wrap {
    width: 24%;
    min-height: 348px;
    margin-right: 1%;
    padding: 20px;
    margin-left: 4%;
}
}

#primary #testim-page {
    width: 100%;
}

#secondary .widget #testim-page {
    display: none;
}
      
    /*END TESTIMONIALS PAGE*/


.testimonial-sidebar h3 {
    padding: 30px 0 3px 0;
    font-size: 20px;
    font-weight: 600;
    color: #2eb5e8;
}

.testimonial-sidebar strong {
    color: #005382;
    font-size: 17px;
    font-weight: 600;
}

.testimonial-sidebar p {
    margin-bottom: 10px;
}


img.alignleft {
    float: left;
    margin-right: 30px;
}

@media (max-width: 767px) {
.home .banner {
    background: url(../img/banner.jpg) -460px  0%/cover no-repeat;
    height: 440px;
}
	.home .banner:before {
    display: none;
}
	.home .banner .title {
    font: 52px/46px "Lato Bold";

}
	.home .banner .wrap {
    margin-top: 120px;
}
	.home .banner .tagline {
    font-size: 22px;
    margin-bottom: 20px;
	text-shadow: 0px 0px 20px #000000;
	max-width: 280px;
}
	.testimonials-carousel.slick-initialized.slick-slider {
    height: 380px;
}
	.testimonials .btn {
    width: 70%;
    margin-left: 15%;
    margin-top: 60px;
}
	.gform_wrapper input[type=submit] {
    float: left;
    margin-top: 70px;
    margin-left: 20%;
    width: 60%;
}
	.required {
    display: none;
	}
	.gfield_description {
    color: #cacaca;
    margin-top: 40px;
    line-height: 26px;
}
	footer .form .title {
    margin-top: 120px;
}

}

@media (max-width: 991px) {
.team .btn {
    color: #15273b;
    width: 38%;
    float: left;
    margin-left: 27%;
    margin-right: 40%;
}
}

.copyright.column a {
    color: #000;
}

.copyright.column a:hover {
    color: #005382;
	font-weight: 700;
}
.team .container {
    width: 80%;
    max-width: 80%;
}
section#page-content {
    padding-top: 50px;
}
.page-content a {
    color: #1c5792;
}
.page-content a:hover {
    text-decoration: underline;
}

@media (min-width: 768px) and (max-width: 900px) {

}

@media (min-width: 901px) and (max-width: 1024px) {

}

@media (min-width: 1025px) and (max-width: 1300px) {
	.banner {
    margin-top: 0px;
		height: 350px;
}
	.banner .wrap {
    margin-top: 95px;
}
	.banner .btn {
    margin-top: 30px;
}
	.home .banner {
    height: 500px;
}
	.home .banner .wrap {
    margin-top: 140px;
}
	.sidebar {
    width: 25%;
    right: 68.5%;
}
.main-content {
    width: 69.5%;
    left: 29.5%;
}
}

@media (min-width: 1301px) and (max-width: 1400px) {
	.banner {
    margin-top: 0px;
		height: 350px;
}
	.banner .wrap {
    margin-top: 95px;
}
		.banner .btn {
    margin-top: 30px;
}
		.home .banner {
    height: 500px;
}
	.home .banner .wrap {
    margin-top: 140px;
}
	.sidebar {
    width: 25%;
    right: 68.5%;
}
	.main-content {
    width: 69.5%;
    left: 29.5%;
}

}


@media (min-width: 1401px) and (max-width: 1500px) {
		.banner .wrap {
    margin-top: 95px;
}
		.banner .btn {
    margin-top: 30px;
}
		.home .banner {
    height: 500px;
}
	.home .banner .wrap {
    margin-top: 140px;
}
	.sidebar {
    width: 25%;
    right: 68.5%;
}
	.main-content {
    width: 69.5%;
    left: 29.5%;
}


}

@media (min-width: 1501px) and (max-width: 1599px) {

}

.attorney-wrap a {
    float: left;
}
.airport-fire h3 {
    color: #2fb5e8;
    text-transform: uppercase;
    font-size: 23px;
}
