@charset "UTF-8";
/*!
Theme Name: AALS
Theme URI: http://www.aals.org
Author: AALS Team
Author URI: http://www.aals.org
Description: <strong>UPDATE</strong> - 1.0+ is here, completely overhauled, yet again. As always,  Thank you for using innovationaccess
Version: 1.2.0
Tags: black, blue, white, light, one-column, fluid-layout, responsive-layout, custom-menu, featured-images, microformats, sticky-post, threaded-comments, translation-ready
*/
/* --------------------------------------------------
  2.0 Mixins

  * Font-Face
  * Font-size
  * Button
  * Clearfix
  * Opacity
  * Vendor Prefix
  * Centre a block element
  * Vertical centring a block element
  * Psudo elements
  * Placeholders
  * Truncate Text
  * MediaQueries
  * Keyframes and animation
  * Transitions
  * Transform

-------------------------------------------------- */
/* Font-Face */
/* USAGE =====
@include font-face("MyFont", "path/to/MyFont", $style: normal, $weight: normal);
*/
/* Font-size */
/* USAGE =====
p {
  @include font-size(16px, 32px);
}
*/
/* Button */
/* USAGE =====
button {
  @include button($white, $red, none);
}
*/
/* Clearfix */
/* Opacity */
/* Vendor Prefix */
/* USAGE =====
html {
  @include prefix('box-sizing', 'border-box', moz webkit);
}
*/
/* Centre a block element */
/* Vertical centring a block element */
/* Psudo elements */
/* USAGE =====
div::after {
  @include pseudo;
  top: -1rem; left: -1rem;
  width: 1rem; height: 1rem;
}
*/
/* Placeholders */
/* USAGE =====
input,
textarea {
  @include input-placeholder {
      color: $grey;
  }
}
*/
/* Truncate Text */
/* Keyframes and animation */
/* USAGE =====
@include keyframes(slide-down) {
  0% { opacity: 1; }
  90% { opacity: 0; }
}

.element {
  width: 100px;
  height: 100px;
  background: black;
  @include animation('slide-down 5s 3');
}
*/
/* Transitions */
/* USAGE =====
.class-name {
  color: gray;
  @include transition(color .3s ease);
  &:hover {
    color: black;
  }
}
*/
/* Transform */
/* USAGE =====
same as * Transitions
*/
/* Gredeient */
/*----- media queries -----*/
/* All mobile view (portrait & landscape phones, less than 767px) */
/* Extra small devices (portrait phones, less than 576px) */
/* Small devices (landscape phones, 576px and up) */
/* Up from Ipad view */
/* Mobile and Tablet Vertical devices */
/* Medium devices (tablets portrait, 768px and upto 991px) */
/* Small devices (tablets landscape, 992px and upto 1024px) */
/* Mobile & Tablet to mini desktop devices  */
/* Medium Tablet Pro devices  */
/* Desktop devices (1200px only) */
/* Medium devices (desktops, 1025px and upto 1280px) */
/* Large devices (desktops, 1281px and upto 1399px) */
/* XL devices (large desktops, 1200px and up) */
/* XL devices (large desktops, 1200px and up) */
/* XL devices (large desktops, 1200px and up) */
/* Extra large devices (large desktops, 1400px and up) */
/* USAGE =====
.class-name {
  color: gray;
  @include for-phone-portrait-landscape-up(){
    padding: 10px;
  }
}
*/
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,400;0,600;0,700;0,800;1,400;1,600;1,700;1,800&display=swap");
html,
body {
  overflow-x: hidden;
}

body {
  color: #01212C;
  font-family: "Open Sans", sans-serif;
  font-size: 20px;
  line-height: 32px;
  font-weight: 400;
}
@media (max-width: 767px) {
  body {
    font-size: 16px;
    line-height: 24px;
  }
}

.container {
  width: 100%;
}
@media (min-width: 1400px) {
  .container {
    width: 1400px;
  }
}

.main-content {
  margin-bottom: 25px;
}
.main-content .container {
  width: 100%;
  margin: 0 -15px;
}
@media (max-width: 767px) {
  .main-content iframe {
    width: 100%;
  }
}
.main-content a {
  word-break: break-all;
}
.main-content ul li a {
  text-decoration: underline;
}
.main-content ul li a:hover {
  text-decoration: none;
}

a {
  transition: all 0.3s ease-in-out;
  color: #0A607D;
}
a:hover, a:active, a:focus {
  text-decoration: none;
}

b,
strong {
  font-weight: bold;
}

i {
  font-style: italic;
}

u {
  text-decoration: underline;
}

p.text {
  font-family: "Open Sans", sans-serif;
  font-size: 20px !important;
  line-height: 32px !important;
  font-weight: 400;
}
@media (max-width: 767px) {
  p.text {
    font-size: 16px !important;
    line-height: 28px !important;
  }
}

.page-title {
  display: none;
}

.bg-black {
  background-color: #000;
  border-radius: 10px;
}

.text-white {
  color: #fff !important;
}

.bg-light {
  background-color: #EAFAFF;
}

.section-space {
  padding: 50px 0 60px;
}
@media (max-width: 991px) {
  .section-space {
    padding: 25px 0;
  }
}

.section-spacing {
  margin-top: 25px;
  margin-bottom: 25px;
}
@media (max-width: 767px) {
  .section-spacing {
    margin-top: 35px;
    margin-bottom: 0;
  }
}

.space-bottom {
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .space-bottom {
    margin-bottom: 10px;
  }
}

@media (max-width: 767px) {
  .vc_row-has-fill + .vc_row-full-width + .vc_row > .vc_column_container > .vc_column-inner {
    padding-top: 0;
  }
}

/* Style link button show and hide mobile view */
.show-mobile {
  display: none;
}
@media (max-width: 767px) {
  .show-mobile {
    display: block;
  }
}

.hide-mobile {
  display: block;
}
@media (max-width: 767px) {
  .hide-mobile {
    display: none;
  }
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ul-theme,
ul,
ul.text {
  padding-left: 30px;
  list-style-type: none;
  font-family: "Open Sans", sans-serif;
  margin: 10px 0;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
@media (max-width: 767px) {
  .ul-theme,
ul,
ul.text {
    padding-left: 20px;
  }
}
.ul-theme li,
ul li,
ul.text li {
  position: relative;
  font-size: 20px;
  line-height: 32px;
  font-weight: 400;
  color: #01212C;
  margin-bottom: 20px;
  padding-left: 20px;
}
@media (max-width: 767px) {
  .ul-theme li,
ul li,
ul.text li {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 16px;
  }
}
.ul-theme li::before,
ul li::before,
ul.text li::before {
  content: "";
  font-family: "FontAwesome";
  font-size: 25px;
  position: absolute;
  left: 0;
  top: 2px;
  color: #0D6891;
  font-weight: 700;
}
@media (max-width: 767px) {
  .ul-theme li::before,
ul li::before,
ul.text li::before {
    font-size: 22px;
  }
}

ol,
.ol-theme,
ol.text {
  padding-left: 30px;
  list-style-type: none;
  font-family: "Open Sans", sans-serif;
  margin: 10px 0;
  counter-reset: section;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
@media (max-width: 767px) {
  ol,
.ol-theme,
ol.text {
    padding-left: 20px;
  }
}
ol li,
.ol-theme li,
ol.text li {
  position: relative;
  font-size: 20px;
  line-height: 32px;
  font-weight: 400;
  color: #01212C;
  margin-bottom: 20px;
  padding-left: 20px;
}
@media (max-width: 767px) {
  ol li,
.ol-theme li,
ol.text li {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 16px;
  }
}
ol li::before,
.ol-theme li::before,
ol.text li::before {
  counter-increment: section;
  content: counter(section);
  font-size: 20px;
  color: #0D6891;
  font-weight: bold;
  position: absolute;
  left: 0;
}
@media (max-width: 767px) {
  ol li::before,
.ol-theme li::before,
ol.text li::before {
    font-size: 16px;
  }
}

img {
  max-width: 100%;
}

p {
  font-size: 20px;
  line-height: 32px;
  font-weight: 400;
  font-family: "Open Sans", sans-serif;
}
@media (max-width: 767px) {
  p {
    font-size: 16px;
    line-height: 24px;
  }
}
p a {
  color: #0A607D;
  text-decoration: underline;
  transition: all 0.5s ease-in-out;
}
p a:hover {
  text-decoration: none;
}

.btn,
.wpcf7-submit {
  border: none;
  border-radius: 100px;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-family: "Open Sans", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 27px;
  padding: 18px 30px 18px;
  margin: 15px 20px;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  vertical-align: middle;
  min-width: 265px;
  white-space: inherit;
}
.btn.btn-sm,
.wpcf7-submit.btn-sm {
  padding: 14px 20px;
  font-size: 16px;
  line-height: 22px;
  min-width: 235px;
}
@media (max-width: 767px) {
  .btn.btn-sm,
.wpcf7-submit.btn-sm {
    padding: 10px 15px 10px;
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .btn,
.wpcf7-submit {
    padding: 16px 25px 16px;
    font-size: 16px;
    line-height: 23px;
    min-width: 247px;
    margin: 10px 15px;
    white-space: inherit;
  }
}

.wpcf7 input[type=submit] {
  padding: 18px 30px 18px;
  border-radius: 100px !important;
}

.btn-primary,
.btn-highlight,
.wpcf7 input[type=submit] {
  background: #0A607D;
  color: #fff;
  box-shadow: none;
  border: none;
  background-color: #0A607D !important;
}
.btn-primary:hover, .btn-primary:active, .btn-primary:focus,
.btn-highlight:hover,
.btn-highlight:active,
.btn-highlight:focus,
.wpcf7 input[type=submit]:hover,
.wpcf7 input[type=submit]:active,
.wpcf7 input[type=submit]:focus {
  background: #0A607D;
  border: none;
  box-shadow: none;
}
.btn-primary:hover, .btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled):active:focus,
.btn-highlight:hover,
.btn-highlight:not(:disabled):not(.disabled):active,
.btn-highlight:not(:disabled):not(.disabled):active:focus,
.wpcf7 input[type=submit]:hover,
.wpcf7 input[type=submit]:not(:disabled):not(.disabled):active,
.wpcf7 input[type=submit]:not(:disabled):not(.disabled):active:focus {
  background-color: #053C4E !important;
  box-shadow: none;
}

.btn-secondary {
  background: #FA8733;
  color: #01212C;
  box-shadow: none;
  border: none;
}
.btn-secondary:hover, .btn-secondary:active, .btn-secondary:focus {
  background: #FA8733;
  border: none;
  box-shadow: none;
}
.btn-secondary:hover, .btn-secondary:not(:disabled):not(.disabled):active, .btn-secondary:not(:disabled):not(.disabled):active:focus {
  background-color: #EA681E;
  box-shadow: none;
}

.btn-info {
  background: #fff;
  color: #0D6891;
  box-shadow: none;
  border: none;
}
.btn-info:hover, .btn-info:active, .btn-info:focus {
  background: #fff;
  border: none;
  box-shadow: none;
}
.btn-info:hover, .btn-info:not(:disabled):not(.disabled):active, .btn-info:not(:disabled):not(.disabled):active:focus {
  background-color: #0A607D;
  box-shadow: none;
}

.style-link {
  color: #0D6891;
  font-size: 22px;
  line-height: 30px;
  font-weight: 700;
  font-family: "Open Sans", sans-serif;
  display: inline-flex;
  align-items: center;
  position: relative;
  padding-right: 48px;
  text-decoration: none;
  margin: 20px 15px;
  white-space: inherit;
}
@media (max-width: 767px) {
  .style-link {
    font-size: 18px;
    line-height: 24px;
    padding-right: 38px;
    margin: 10px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .style-link {
    font-size: 20px;
  }
}
.style-link::after {
  content: "";
  background-image: url("images/style-link-dark.svg");
  background-repeat: no-repeat;
  font-family: "FontAwesome";
  position: absolute;
  right: 0;
  height: 34px;
  width: 34px;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 767px) {
  .style-link::after {
    background-size: 100%;
    width: 28px;
    height: 28px;
    right: 0;
  }
}
.style-link:hover::after {
  right: -7px;
}
@media (max-width: 767px) {
  .style-link:hover::after {
    right: -5px;
  }
}
.style-link.style-sm {
  font-size: 18px;
  line-height: 24px;
}
@media (max-width: 767px) {
  .style-link.style-sm {
    font-size: 16px;
    line-height: 22px;
  }
}
.style-link.style-sm::after {
  right: 3px;
  height: 28px;
  background-size: 100% 100%;
  width: 28px;
}
@media (max-width: 767px) {
  .style-link.style-sm::after {
    right: 0px;
  }
}
.style-link.style-sm:hover::after {
  right: -3px;
}
@media (max-width: 767px) {
  .style-link.style-sm:hover::after {
    right: -3px;
  }
}
.style-link.style-light {
  color: #fff;
}
.style-link.style-light::after {
  background-image: url("images/style-link-light.svg");
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

@media (max-width: 767px) {
  .w-100 .btn {
    width: 100%;
    margin: 0;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .hide-mobile .style-link {
    margin-top: 10px;
  }
}

@font-face {
  font-family: "Mrs-Eaves-OT-Roman_new";
  src: url("../../fonts/Mrs-Eaves-OT-Roman_new.ttf") format("ttf");
  font-weight: normal;
  font-style: normal;
}
label,
.wpcf7-form label {
  font-size: 18px;
  line-height: 26px;
  color: #01212C;
  font-family: "Open Sans", sans-serif;
  margin-bottom: 14px !important;
  width: 100%;
}
@media (max-width: 767px) {
  label,
.wpcf7-form label {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 10px !important;
  }
}
label em,
.wpcf7-form label em {
  font-style: normal;
  color: #ff0000;
}

.form-control,
input[type=text],
input[type=email],
input[type=tel],
input[type=number],
input[type=url],
input[type=date],
.wpcf7-textarea,
.wpcf7-select {
  border: 2px solid #01212C;
  border-radius: 6px;
  padding: 10px 22px;
  color: #01212C;
  font-size: 20px;
  font-weight: 600;
  line-height: 26px;
  color: #000;
  height: 70px;
  font-family: "Open Sans", sans-serif;
  width: 100%;
  background-color: #fff;
}
.form-control.placeholder,
input[type=text].placeholder,
input[type=email].placeholder,
input[type=tel].placeholder,
input[type=number].placeholder,
input[type=url].placeholder,
input[type=date].placeholder,
.wpcf7-textarea.placeholder,
.wpcf7-select.placeholder {
  color: #677174;
  font-weight: 600;
}
.form-control:-moz-placeholder,
input[type=text]:-moz-placeholder,
input[type=email]:-moz-placeholder,
input[type=tel]:-moz-placeholder,
input[type=number]:-moz-placeholder,
input[type=url]:-moz-placeholder,
input[type=date]:-moz-placeholder,
.wpcf7-textarea:-moz-placeholder,
.wpcf7-select:-moz-placeholder {
  color: #677174;
  font-weight: 600;
}
.form-control::-moz-placeholder,
input[type=text]::-moz-placeholder,
input[type=email]::-moz-placeholder,
input[type=tel]::-moz-placeholder,
input[type=number]::-moz-placeholder,
input[type=url]::-moz-placeholder,
input[type=date]::-moz-placeholder,
.wpcf7-textarea::-moz-placeholder,
.wpcf7-select::-moz-placeholder {
  color: #677174;
  font-weight: 600;
}
.form-control:-ms-input-placeholder,
input[type=text]:-ms-input-placeholder,
input[type=email]:-ms-input-placeholder,
input[type=tel]:-ms-input-placeholder,
input[type=number]:-ms-input-placeholder,
input[type=url]:-ms-input-placeholder,
input[type=date]:-ms-input-placeholder,
.wpcf7-textarea:-ms-input-placeholder,
.wpcf7-select:-ms-input-placeholder {
  color: #677174;
  font-weight: 600;
}
.form-control::-webkit-input-placeholder,
input[type=text]::-webkit-input-placeholder,
input[type=email]::-webkit-input-placeholder,
input[type=tel]::-webkit-input-placeholder,
input[type=number]::-webkit-input-placeholder,
input[type=url]::-webkit-input-placeholder,
input[type=date]::-webkit-input-placeholder,
.wpcf7-textarea::-webkit-input-placeholder,
.wpcf7-select::-webkit-input-placeholder {
  color: #677174;
  font-weight: 600;
}
@media (max-width: 767px) {
  .form-control,
input[type=text],
input[type=email],
input[type=tel],
input[type=number],
input[type=url],
input[type=date],
.wpcf7-textarea,
.wpcf7-select {
    font-size: 16px;
    height: 55px;
    padding: 5px 10px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .form-control,
input[type=text],
input[type=email],
input[type=tel],
input[type=number],
input[type=url],
input[type=date],
.wpcf7-textarea,
.wpcf7-select {
    height: 60px;
  }
}
.form-control:focus,
input[type=text]:focus,
input[type=email]:focus,
input[type=tel]:focus,
input[type=number]:focus,
input[type=url]:focus,
input[type=date]:focus,
.wpcf7-textarea:focus,
.wpcf7-select:focus {
  border: 3px solid #0A607D;
  box-shadow: 0px 0px 5px #0A607D;
}

select.form-control,
select.wpcf7-select {
  background-image: url("images/down.svg");
  background-position: right 20px center;
  background-repeat: no-repeat;
  background-size: auto 16%;
  outline: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  color: #01212C;
}
select.form-control::-ms-expand,
select.wpcf7-select::-ms-expand {
  display: none;
}
select.form-control:focus,
select.wpcf7-select:focus {
  box-shadow: none;
  border-color: #0A607D;
}
select.form-control option:first,
select.wpcf7-select option:first {
  color: #677174;
}

.form-group {
  position: relative;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .form-group {
    margin-bottom: 24px;
  }
}

textarea.form-control,
.wpcf7-textarea {
  height: auto;
  border-radius: 6px;
  height: 200px;
  padding: 20px 22px;
  resize: none;
}
@media (max-width: 767px) {
  textarea.form-control,
.wpcf7-textarea {
    height: 150px;
    padding: 15px;
  }
}

.custom-checkbox,
.custom-radiobox,
.wpcf7-checkbox .wpcf7-list-item,
.wpcf7-radio .wpcf7-list-item {
  display: flex;
  align-items: center;
  padding-left: 0;
  margin-bottom: 16px;
  margin-left: 0;
}
@media (max-width: 767px) {
  .custom-checkbox,
.custom-radiobox,
.wpcf7-checkbox .wpcf7-list-item,
.wpcf7-radio .wpcf7-list-item {
    margin-bottom: 15px;
  }
}

.custom-checkbox input,
.custom-radiobox input,
.wpcf7-checkbox .wpcf7-list-item input,
.wpcf7-radio .wpcf7-list-item input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}

.custom-checkbox label,
.custom-radiobox label,
.wpcf7-checkbox .wpcf7-list-item span,
.wpcf7-radio .wpcf7-list-item span {
  position: relative;
  cursor: pointer;
  font-weight: 400;
  display: flex;
  font-size: 20px;
  color: #1B1B1B;
  padding-left: 40px;
}
@media (max-width: 767px) {
  .custom-checkbox label,
.custom-radiobox label,
.wpcf7-checkbox .wpcf7-list-item span,
.wpcf7-radio .wpcf7-list-item span {
    font-size: 16px;
    line-height: 24px;
  }
}

.wpcf7-checkbox .wpcf7-list-item label,
.wpcf7-radio .wpcf7-list-item label {
  margin-bottom: 0 !important;
}

.custom-checkbox label:before,
.wpcf7-checkbox .wpcf7-list-item span:before {
  content: "";
  -webkit-appearance: none;
  background-color: transparent;
  border: 1px solid #707070;
  height: 22px;
  width: 22px;
  border-radius: 5px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  position: absolute;
  left: 0;
}

.custom-checkbox label:hover,
.wpcf7-checkbox .wpcf7-list-item span:hover {
  color: #0A607D;
}
.custom-checkbox label:hover::after,
.wpcf7-checkbox .wpcf7-list-item span:hover::after {
  content: "";
  font-family: "FontAwesome";
  display: block;
  position: absolute;
  width: 22px;
  text-align: center;
  color: #fff;
  font-size: 16px;
  line-height: 22px;
  left: 0;
}
.custom-checkbox label:hover::before,
.wpcf7-checkbox .wpcf7-list-item span:hover::before {
  background-color: #0A607D;
}

.custom-checkbox input:checked + label,
.wpcf7-checkbox .wpcf7-list-item input:checked + span {
  font-weight: 700;
  color: #0A607D;
}

.custom-checkbox input:checked + label::before,
.wpcf7-checkbox .wpcf7-list-item input:checked + span::before {
  background-color: #0A607D;
}

.custom-checkbox input:checked + label:after,
.wpcf7-checkbox .wpcf7-list-item input:checked + span::after {
  content: "";
  font-family: "FontAwesome";
  display: block;
  position: absolute;
  width: 22px;
  text-align: center;
  color: #fff;
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
  left: 0;
}

.custom-radiobox label:before,
.wpcf7-radio .wpcf7-list-item span::before {
  content: "";
  -webkit-appearance: none;
  background-color: transparent;
  border: 1px solid #707070;
  height: 22px;
  width: 22px;
  border-radius: 100%;
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  position: absolute;
  left: 0;
}

.custom-radiobox label:hover::after,
.wpcf7-radio .wpcf7-list-item span:hover::after {
  content: "";
  height: 16px;
  width: 16px;
  background: #0A607D;
  border-radius: 100%;
  position: absolute;
  left: 3px;
  right: 0;
  top: 3px;
  bottom: 0;
}

.custom-radiobox input:checked + label,
.wpcf7-radio .wpcf7-list-item input:checked + span {
  font-weight: 700;
  color: #0A607D;
}

.custom-radiobox input:checked + label:after,
.wpcf7-radio .wpcf7-list-item input:checked + span::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 22px;
  height: 22px;
  background: #0A607D;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
}

.form-control.focus {
  border: 3px solid #0A607D;
  box-shadow: 0px 0px 5px #0A607D;
}

.custom-checkbox label.hover {
  color: #0A607D;
}
.custom-checkbox label.hover::after {
  content: "";
  font-family: "FontAwesome";
  display: block;
  position: absolute;
  width: 22px;
  text-align: center;
  color: #fff;
  font-size: 16px;
  line-height: 22px;
  left: 0;
}
.custom-checkbox label.hover::before {
  background-color: #0A607D;
}

.custom-radiobox label.hover {
  color: #0A607D;
}
.custom-radiobox label.hover::after {
  content: "";
  height: 16px;
  width: 16px;
  background: #0A607D;
  border-radius: 100%;
  position: absolute;
  left: 3px;
  right: 0;
  top: 3px;
  bottom: 0;
}

h1,
h2,
h3,
.search_blog .title,
h4,
h5,
h6 {
  font-family: "Mrs-Eaves-OT-Roman_new";
  font-weight: bold;
  margin: 0;
}

h1 {
  font-size: 60px;
  line-height: 75px;
  color: #0A607D;
}
@media (max-width: 767px) {
  h1 {
    font-size: 35px;
    line-height: 44px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  h1 {
    font-size: 40px;
    line-height: 50px;
  }
}

h2 {
  font-size: 43px;
  line-height: 51px;
  color: #01212C;
}
@media (max-width: 767px) {
  h2 {
    font-size: 25px;
    line-height: 28px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  h2 {
    font-size: 35px;
    line-height: 45px;
  }
}

h3, .search_blog .title {
  font-size: 40px !important;
  line-height: 45px;
  color: #053C4E !important;
}
@media (max-width: 767px) {
  h3, .search_blog .title {
    font-size: 22px !important;
    line-height: 24px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  h3, .search_blog .title {
    font-size: 30px !important;
    line-height: 40px;
  }
}

h4 {
  font-size: 30px !important;
  line-height: 38px;
  color: #0A607D;
}
@media (max-width: 767px) {
  h4 {
    font-size: 20px !important;
    line-height: 28px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  h4 {
    font-size: 26px !important;
    line-height: 36px;
  }
}

h5 {
  font-size: 25px;
  line-height: 43px;
  color: #01212C;
}
@media (max-width: 767px) {
  h5 {
    font-size: 18px;
    line-height: 26px;
  }
}

h6 {
  font-size: 22px;
  line-height: 43px;
  color: #456230;
}
@media (max-width: 767px) {
  h6 {
    font-size: 16px;
    line-height: 24px;
  }
}

span.date {
	font-size: 17px;
	color: #0A607D;
}

/**
 * Global component
 *
 * - Cards
 * - Styled Text with Image Card
 *
 *
 **/
/*----- Cards -----*/
.card {
  position: relative;
  box-shadow: 0px 0px 26px rgba(0, 0, 0, 0.3);
  font-family: "Open Sans", sans-serif;
  padding: 25px 38px 38px;
  height: 100%;
}
@media (max-width: 991px) {
  .card {
    margin-bottom: 25px;
    padding: 25px;
  }
}
@media (max-width: 767px) {
  .card {
    height: auto;
  }
}
.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-image: url("images/white-card.svg");
  background-repeat: no-repeat;
  width: 208px;
  height: 201px;
}
@media (max-width: 991px) {
  .card::before {
    width: 146px;
  }
}
.card > a {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
  height: 100%;
}
.card .card-title {
  font-size: 16px;
  line-height: 22px;
  font-weight: 700;
  color: #1F2B40;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .card .card-title {
    font-size: 14px;
  }
}
.card .card-content {
  color: #0A607D;
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .card .card-content {
    margin-bottom: 30px;
  }
}
.card .card-date {
  font-size: 18px;
  line-height: 24px;
  font-style: italic;
  font-weight: 400;
  color: #1F2B40;
  margin-top: auto;
  width: 100%;
}
@media (max-width: 991px) {
  .card .card-date {
    font-size: 16px;
  }
}
.card.blue {
  background-color: #0A607D;
}
.card.blue::before {
  background-image: url("images/blue-card.svg");
}
.card.blue .card-title,
.card.blue .card-date,
.card.blue .card-content {
  color: #fff;
}
.card.teal {
  background-color: #01212C;
}
.card.teal::before {
  background-image: url("images/dark-blue-card.svg");
}
.card.teal .card-title,
.card.teal .card-date,
.card.teal .card-content {
  color: #fff;
}
.card.white {
  background-color: #fff;
}

/*----- Equal Height of Card -----*/
@media (min-width: 768px) {
  .equal-height {
    display: flex;
    flex-wrap: wrap;
  }
  .equal-height > .vc_column_container {
    display: flex;
    align-items: stretch;
  }
  .equal-height .wpb_column > .vc_column-inner > .wpb_wrapper {
    height: 100%;
  }
  .equal-height > .vc_column_container.vc_col-sm-12 {
    flex-basis: 100%;
  }
}
/*----- Style Card -----*/
.style-card {
  position: relative;
  font-family: "Open Sans", sans-serif;
  color: #01212C;
  font-size: 20px;
  line-height: 32px;
}
@media (max-width: 767px) {
  .style-card {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 25px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .style-card {
    font-size: 18px;
    line-height: 28px;
  }
}
.style-card .style-card-image {
  height: 250px;
  margin-bottom: 28px;
  overflow: hidden;
}
@media (max-width: 991px) {
  .style-card .style-card-image {
    margin-bottom: 20px;
  }
}
.style-card .style-card-image img {
  display: flex;
  object-fit: cover;
  height: 100%;
  width: 100%;
}
@media (max-width: 767px) {
  .style-card .style-card-image img {
    object-position: top;
  }
}
.style-card .style-card-description {
  margin-top: 16px;
}
@media (max-width: 767px) {
  .style-card .style-card-description {
    margin-top: 10px;
  }
}

.panel {
  border: unset;
  box-shadow: unset;
}
.panel .panel-heading {
  background-color: #fff;
  background-image: linear-gradient(to bottom, #fff, #EFEFEF);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#EFEFEF));
  background-image: -webkit-linear-gradient(top, #fff, #EFEFEF);
  background-image: -moz-linear-gradient(top, #fff, #EFEFEF);
  background-image: -webkit-linear-gradient(top, #fff, #EFEFEF);
  background-image: -o-linear-gradient(top, #fff, #EFEFEF);
  border: 1px solid #e9e9e9;
  border-radius: 5px;
  padding: 10px 20px 10px 45px;
  position: relative;
}
.panel .panel-title > a {
  color: #88bbc8;
  display: block;
  font-size: 13px;
  width: 100%;
}
.panel .panel-title > a::before {
  content: "";
  font-family: FontAwesome;
  font-size: 14px;
  left: 15px;
  position: absolute;
  top: 12px;
}
.panel .panel-title > a.collapsed {
  color: initial;
}
.panel .panel-title > a.collapsed::before {
  content: "";
}
.panel .panel-title > a:hover {
  text-decoration: unset;
}
@media (min-width: 961px) {
  .panel {
    max-width: 80%;
  }
  .panel .panel-heading {
    margin-right: 1rem;
  }
}

.panel-group .panel .panel-collapse .panel-body {
  border: unset;
}

.nav-tabs {
  border: 0;
}
.nav-tabs > li {
  border-bottom: 1px solid #ededed;
  font-size: 13px;
  font-weight: 700;
  border-bottom: 1px solid #ededed;
}
.nav-tabs > li > a {
  border: none;
  color: #333;
  padding: 2rem 1rem;
}
.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
  background-color: #f8f8f8;
  border: none;
  color: #88bbc8;
}
.nav-tabs + .tab-content {
  padding: 3rem 2rem 4rem;
  width: 100%;
}
.nav-tabs.vertical {
  background: #f8f8f8;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  vertical-align: top;
}
.nav-tabs.vertical > li {
  flex: 1;
  text-align: center;
  padding-left: 0;
}
.nav-tabs.vertical > li::before {
  display: none;
}
.nav-tabs.vertical > li.active::after {
  bottom: -1px;
  color: #fff;
  content: "";
  filter: drop-shadow(0px -1px 1px #c3c3c3);
  font-family: FontAwesome;
  font-size: 5rem;
  left: 32%;
  position: absolute;
}
.nav-tabs.vertical + .tab-content {
  display: inline-block;
  box-shadow: 0 3px 8px #c3c3c3;
}
@media (min-width: 961px) {
  .nav-tabs.vertical {
    box-shadow: -3px 3px 8px -3px #c3c3c3;
    display: inline-flex;
    flex-direction: column;
    flex-wrap: nowrap;
    max-width: 25%;
    padding-top: 1rem;
  }
  .nav-tabs.vertical > li {
    text-align: left;
  }
  .nav-tabs.vertical > li.active::after {
    content: "";
    filter: drop-shadow(-2px 0px 1px #c3c3c3);
    left: unset;
    right: -1px;
    top: 20px;
  }
  .nav-tabs.vertical > li > a {
    padding: 1.75rem 2.5rem;
  }
  .nav-tabs.vertical + .tab-content {
    width: 75%;
  }
}

/*----- Quote Component -----*/
.blockquote-theme {
  background-color: #0A607D;
  padding: 50px 0;
  text-align: center;
  color: #fff;
  position: relative;
}
@media (max-width: 767px) {
  .blockquote-theme {
    padding: 30px 0;
  }
}
.blockquote-theme::before {
  content: "";
  background-image: url("images/quote-block-card.svg");
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 90%;
  max-height: 400px;
}
@media (max-width: 767px) {
  .blockquote-theme::before {
    max-height: 175px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .blockquote-theme::before {
    max-height: 250px;
  }
}
.blockquote-theme .quote-main-title {
  font-size: 45px;
  line-height: 45px;
  font-family: "Mrs-Eaves-OT-Roman_new";
  font-weight: bold;
  margin-bottom: 50px;
  position: relative;
  padding: 0 15px;
}
@media (max-width: 767px) {
  .blockquote-theme .quote-main-title {
    font-size: 30px;
    line-height: 40px;
    margin-bottom: 25px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .blockquote-theme .quote-main-title {
    font-size: 38px;
    margin-bottom: 30px;
  }
}
.blockquote-theme a {
  color: #fff;
}
.blockquote-theme .quote-content {
  padding: 0 100px;
  position: relative;
}
@media (max-width: 767px) {
  .blockquote-theme .quote-content {
    padding: 0 20px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .blockquote-theme .quote-content {
    padding: 0 50px;
  }
}
.blockquote-theme .quote-content .quote-description {
  display: inline-flex;
  font-family: "Open Sans", sans-serif;
  position: relative;
  padding-right: 50px;
}
@media (max-width: 991px) {
  .blockquote-theme .quote-content .quote-description {
    padding-right: 0;
  }
}
.blockquote-theme .quote-content .quote-description .quote-text {
  margin-top: 15px;
  font-size: 25px;
  line-height: 45px;
  position: relative;
  padding-left: 65px;
}
@media (max-width: 991px) {
  .blockquote-theme .quote-content .quote-description .quote-text {
    padding-left: 50px;
  }
}
.blockquote-theme .quote-content .quote-description .quote-text.quote-mark::before {
  content: "";
  background-image: url("images/quote-block.svg");
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
  top: -15px;
  width: 56px;
  height: 56px;
  background-size: 100%;
}
@media (max-width: 991px) {
  .blockquote-theme .quote-content .quote-description .quote-text.quote-mark::before {
    background-size: 80%;
    width: 50px;
  }
}
@media (max-width: 991px) {
  .blockquote-theme .quote-content .quote-description .quote-text {
    font-size: 20px;
    line-height: 40px;
  }
}
.blockquote-theme .quote-content .quote-description .quote-text p {
  font-size: 25px;
  line-height: 45px;
}
@media (max-width: 991px) {
  .blockquote-theme .quote-content .quote-description .quote-text p {
    font-size: 20px;
    line-height: 30px;
  }
}
.blockquote-theme .quote-content .quote-author {
  margin-top: 16px;
  text-align: right;
  font-size: 18px;
  line-height: 45px;
  font-style: italic;
  font-weight: bold;
}
@media (max-width: 767px) {
  .blockquote-theme .quote-content .quote-author {
    font-size: 14px;
    line-height: 20px;
    text-align: center;
  }
}

/*----- Link List -----*/
.link-list {
  margin-top: 20px;
  padding-left: 0;
}
@media (max-width: 767px) {
  .link-list {
    margin-bottom: 25px;
  }
}
.link-list li {
  border-bottom: 1px solid #4B6693;
  margin-bottom: 25px;
  padding-bottom: 25px;
  padding-left: 0;
}
@media (max-width: 767px) {
  .link-list li {
    margin-bottom: 11px;
    padding-bottom: 11px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .link-list li {
    margin-bottom: 15px;
    padding-bottom: 15px;
  }
}
.link-list li::before {
  display: none;
}
.link-list li:last-child {
  margin-bottom: 0;
}
.link-list li .list-wrap {
  display: flex;
  font-size: 22px;
  line-height: 30px;
  font-weight: 600;
  font-family: "Open Sans", sans-serif;
  color: #01212C;
  position: relative;
  padding-left: 34px;
  align-items: center;
}
@media (max-width: 767px) {
  .link-list li .list-wrap {
    font-size: 16px;
    line-height: 24px;
    padding-left: 24px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .link-list li .list-wrap {
    font-size: 20px;
  }
}
.link-list li .list-wrap::before {
  content: "";
  position: absolute;
  left: 0;
  background: url("images/list-arrow.png");
  background-repeat: no-repeat;
  width: 14px;
  height: 23px;
  top: 0;
  bottom: 0;
  margin: auto;
}
@media (max-width: 767px) {
  .link-list li .list-wrap::before {
    background-size: 100%;
    width: 10px;
    height: 16px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .link-list li .list-wrap::before {
    background-size: 100%;
    width: 12px;
  }
}
.link-list li .list-wrap a {
  color: #01212C;
}
.link-list li.active_link .list-wrap {
  padding-left: 47px;
}
@media (max-width: 767px) {
  .link-list li.active_link .list-wrap {
    padding-left: 37px;
  }
}
.link-list li.active_link .list-wrap::before {
  content: "";
  position: absolute;
  left: 0;
  background: url("images/list-active-arrow.png");
  background-repeat: no-repeat;
  width: 31px;
  height: 23px;
  top: 3px;
}
@media (max-width: 767px) {
  .link-list li.active_link .list-wrap::before {
    background-size: 100%;
    width: 20px;
    height: 15px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .link-list li.active_link .list-wrap::before {
    background-size: 100%;
    width: 26px;
  }
}
.link-list li.active_link .list-wrap a {
  font-weight: 700;
  color: #0A607D;
}

/* ----- Table component -----*/
.table-theme,
.table,
table {
  background: #fff;
  font-size: 20px;
  line-height: 32px;
  color: #01212C;
  font-family: "Open Sans", sans-serif;
  width: 100%;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
  margin-top: 25px !important;
  margin-bottom: 25px !important;
}
@media (max-width: 767px) {
  .table-theme,
.table,
table {
    font-size: 16px;
    line-height: 30px;
  }
}
@media (max-width: 991px) {
  .table-theme,
.table,
table {
    font-size: 18px;
    line-height: 30px;
  }
}
.table-theme thead tr th,
.table-theme tbody tr th,
.table thead tr th,
.table tbody tr th,
table thead tr th,
table tbody tr th {
  background: #0A607D;
  padding: 16px 43px;
  color: #fff;
  font-weight: 700;
  border: none;
  font-size: 25px !important;
  line-height: 47px;
}
@media (max-width: 767px) {
  .table-theme thead tr th,
.table-theme tbody tr th,
.table thead tr th,
.table tbody tr th,
table thead tr th,
table tbody tr th {
    padding: 10px 20px;
  }
}
@media (min-width: 992px) and (max-width: 1024px) {
  .table-theme thead tr th,
.table-theme tbody tr th,
.table thead tr th,
.table tbody tr th,
table thead tr th,
table tbody tr th {
    padding: 14px 30px;
  }
}
.table-theme thead,
.table-theme tfoot,
.table thead,
.table tfoot,
table thead,
table tfoot {
  background: #0A607D;
  color: #fff;
  font-weight: 700;
  border: none;
  font-size: 25px;
  line-height: 47px;
  font-family: "Mrs-Eaves-OT-Roman_new";
}
@media (max-width: 767px) {
  .table-theme thead,
.table-theme tfoot,
.table thead,
.table tfoot,
table thead,
table tfoot {
    font-size: 18px;
    line-height: 32px;
  }
}
@media (max-width: 991px) {
  .table-theme thead,
.table-theme tfoot,
.table thead,
.table tfoot,
table thead,
table tfoot {
    font-size: 22px;
    line-height: 40px;
  }
}
.table-theme.table-striped > tbody > tr:nth-child(odd) > td,
.table-theme .table-striped > tbody > tr:nth-child(odd) > th,
.table.table-striped > tbody > tr:nth-child(odd) > td,
.table .table-striped > tbody > tr:nth-child(odd) > th,
table.table-striped > tbody > tr:nth-child(odd) > td,
table .table-striped > tbody > tr:nth-child(odd) > th {
  background-color: #fff !important;
}
.table-theme.table-bordered,
.table.table-bordered,
table.table-bordered {
  border: none;
}
.table-theme.table-bordered tr td,
.table.table-bordered tr td,
table.table-bordered tr td {
  border: none;
}
.table-theme tbody tr,
.table tbody tr,
table tbody tr {
  vertical-align: top;
  border-top: none;
}
.table-theme tbody tr:nth-child(even),
.table tbody tr:nth-child(even),
table tbody tr:nth-child(even) {
  background-color: #F2F8FC;
}
.table-theme tbody tr:nth-child(odd),
.table tbody tr:nth-child(odd),
table tbody tr:nth-child(odd) {
  background-color: #fff;
}
.table-theme tbody tr td,
.table tbody tr td,
table tbody tr td {
  padding: 16px 43px;
  border: none;
  line-height: 32px;
}
@media (max-width: 767px) {
  .table-theme tbody tr td,
.table tbody tr td,
table tbody tr td {
    padding: 10px 20px;
  }
}
@media (min-width: 992px) and (max-width: 1024px) {
  .table-theme tbody tr td,
.table tbody tr td,
table tbody tr td {
    padding: 14px 30px;
  }
}
.table-theme tfoot,
.table tfoot,
table tfoot {
  border-top: 1px solid #B2B5C0;
  background: #fff;
  color: #0A607D;
}
.table-theme tfoot tr td,
.table tfoot tr td,
table tfoot tr td {
  padding: 16px 43px;
  line-height: 47px;
}
@media (max-width: 767px) {
  .table-theme tfoot tr td,
.table tfoot tr td,
table tfoot tr td {
    padding: 10px 20px;
  }
}
@media (min-width: 992px) and (max-width: 1024px) {
  .table-theme tfoot tr td,
.table tfoot tr td,
table tfoot tr td {
    padding: 14px 30px;
  }
}

table.text {
  background: #fff;
  font-size: 20px;
  line-height: 32px;
  color: #01212C;
  font-family: "Open Sans", sans-serif;
  width: 100%;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
}

/*----- Accordion Expand/Collapse -----*/
.accordion-wrapper,
.panel-group {
  margin-bottom: 25px;
}
.accordion-wrapper .panel,
.panel-group .panel {
  max-width: 100%;
  border-bottom: 1px solid #4B6693;
  border-radius: 0;
  margin-bottom: 0;
}
.accordion-wrapper .panel .panel-heading,
.panel-group .panel .panel-heading {
  background: #fff;
  border: none;
  border-radius: 0;
  padding: 0;
  margin-right: 0;
}
.accordion-wrapper .panel .panel-heading .panel-title,
.panel-group .panel .panel-heading .panel-title {
  color: #1F2B40;
}
.accordion-wrapper .panel .panel-heading .panel-title > a,
.panel-group .panel .panel-heading .panel-title > a {
  font-size: 30px !important;
  color: #1F2B40 !important;
  line-height: 40px;
  padding: 20px 70px 20px 20px;
  outline: none;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
@media (min-width: 768px) and (max-width: 991px) {
  .accordion-wrapper .panel .panel-heading .panel-title > a,
.panel-group .panel .panel-heading .panel-title > a {
    font-size: 24px !important;
    line-height: 30px;
  }
}
@media (max-width: 767px) {
  .accordion-wrapper .panel .panel-heading .panel-title > a,
.panel-group .panel .panel-heading .panel-title > a {
    font-size: 20px !important;
    line-height: 30px;
    padding: 15px 50px 15px 15px;
  }
}
.accordion-wrapper .panel .panel-heading .panel-title > a[aria-expanded=true],
.panel-group .panel .panel-heading .panel-title > a[aria-expanded=true] {
  border-bottom: 3px solid #0A607D;
  color: #0A607D !important;
}
.accordion-wrapper .panel .panel-heading .panel-title > a[aria-expanded=true]::before,
.panel-group .panel .panel-heading .panel-title > a[aria-expanded=true]::before {
  background-image: url("images/blue-minus.svg");
  height: 45px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .accordion-wrapper .panel .panel-heading .panel-title > a[aria-expanded=true]::before,
.panel-group .panel .panel-heading .panel-title > a[aria-expanded=true]::before {
    background-size: 100%;
    height: 31px;
    width: 30px;
  }
}
@media (max-width: 767px) {
  .accordion-wrapper .panel .panel-heading .panel-title > a[aria-expanded=true]::before,
.panel-group .panel .panel-heading .panel-title > a[aria-expanded=true]::before {
    background-size: 100%;
    height: 27px;
    width: 26px;
  }
}
.accordion-wrapper .panel .panel-heading .panel-title > a::before,
.panel-group .panel .panel-heading .panel-title > a::before {
  background-image: url("images/dark-plus.svg");
  background-repeat: no-repeat;
  height: 44px;
  width: 44px;
  content: "";
  left: inherit;
  right: 20px;
  top: 0;
  bottom: 0;
  margin: auto;
}
@media (min-width: 768px) and (max-width: 991px) {
  .accordion-wrapper .panel .panel-heading .panel-title > a::before,
.panel-group .panel .panel-heading .panel-title > a::before {
    background-size: 100%;
    height: 30px;
    width: 30px;
  }
}
@media (max-width: 767px) {
  .accordion-wrapper .panel .panel-heading .panel-title > a::before,
.panel-group .panel .panel-heading .panel-title > a::before {
    background-size: 100%;
    height: 26px;
    width: 26px;
  }
}
.accordion-wrapper .panel .panel-body,
.panel-group .panel .panel-body {
  padding: 25px 30px;
  font-size: 20px;
  line-height: 30px;
  font-family: "Open Sans", sans-serif;
  color: #1F2B40;
}
@media (min-width: 768px) and (max-width: 991px) {
  .accordion-wrapper .panel .panel-body,
.panel-group .panel .panel-body {
    font-size: 18px;
    line-height: 26px;
    padding: 20px;
  }
}
@media (max-width: 767px) {
  .accordion-wrapper .panel .panel-body,
.panel-group .panel .panel-body {
    font-size: 16px;
    line-height: 24px;
    padding: 15px;
  }
}

/* ----- Teaser component -----*/
.teaser-card {
  position: relative;
  height: 325px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .teaser-card {
    height: 275px;
    margin-bottom: 25px;
  }
}
.teaser-card > a {
  display: block;
  cursor: pointer;
}
.teaser-card > a::after {
  content: "";
  position: absolute;
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 100%);
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 100%);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#00000000", endColorstr="#a601212c", GradientType=0);
  bottom: 0;
  height: 100%;
  width: 100%;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.teaser-card > a .card-image {
  height: 325px;
}
@media (max-width: 767px) {
  .teaser-card > a .card-image {
    height: 275px;
  }
}
.teaser-card > a .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.teaser-card > a .card-warpper {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 0 20px 30px 20px;
  overflow: hidden;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.teaser-card > a .card-warpper .overlay-text {
  padding-bottom: 20px;
  margin-top: 15px;
  opacity: 0;
  visibility: hidden;
  display: none;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.teaser-card > a .card-warpper .overlay-text .card-content {
  font-size: 20px;
  line-height: 30px;
  font-family: "Open Sans", sans-serif;
  margin-bottom: 10px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .teaser-card > a .card-warpper .overlay-text .card-content {
    font-size: 18px;
    line-height: 26px;
  }
}
@media (max-width: 767px) {
  .teaser-card > a .card-warpper .overlay-text .card-content {
    font-size: 16px;
    line-height: 24px;
  }
}
.teaser-card.focus:hover .card-image img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
.teaser-card.focus .overlay-text {
  display: none;
}
@media (min-width: 768px) and (max-width: 991px) {
  .teaser-card.overlay .card-warpper {
    margin-bottom: 10px;
  }
}
.teaser-card.overlay:hover a::after {
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.95) 100%);
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.95) 100%);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.95) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#00000000", endColorstr="#a6000000", GradientType=0);
}
.teaser-card.overlay:hover .card-warpper {
  height: 80%;
  margin-bottom: 30px;
  position: absolute;
}
@media (min-width: 768px) and (max-width: 991px) {
  .teaser-card.overlay:hover .card-warpper {
    margin-bottom: 10px;
  }
}
.teaser-card.overlay:hover .card-warpper .overlay-text {
  margin-top: 10px;
  opacity: 1;
  visibility: visible;
  display: block;
}
@media (max-width: 767px) {
  .teaser-card.overlay:hover .card-warpper .overlay-text {
    margin-top: 10px;
  }
}

.body-theme .brand-logo {
  color: #fff;
  margin-left: -5px;
}
@media (max-width: 767px) {
  .body-theme .brand-logo {
    margin-left: 0;
  }
}
@media (min-width: 1025px) and (max-width: 1199px) {
  .body-theme .brand-logo {
    width: 436px;
    padding-right: 20px;
  }
}
.body-theme .brand-logo a {
  display: flex;
  align-items: center;
  color: #fff;
}
@media (max-width: 767px) {
  .body-theme .brand-logo a {
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    margin-bottom: 30px;
    display: block;
  }
}
.body-theme .brand-logo a img {
  justify-content: center;
}
@media (min-width: 768px) and (max-width: 991px) {
  .body-theme .brand-logo a img {
    width: 61px;
  }
}
.body-theme .brand-logo a .brand-text {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  margin-left: 20px;
  letter-spacing: 1px;
}
@media (max-width: 767px) {
  .body-theme .brand-logo a .brand-text {
    font-size: 16px;
    line-height: 1.4;
    margin-left: 0;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .body-theme .brand-logo a .brand-text {
    font-size: 16px;
    max-width: 270px;
  }
}
@media (min-width: 992px) and (max-width: 1024px) {
  .body-theme .brand-logo a .brand-text {
    font-size: 16px;
  }
}
.body-theme .brand-logo a .brand-text span {
  display: block;
  margin-bottom: 8px;
  font-family: "Mrs-Eaves-OT-Roman_new";
}
@media (max-width: 767px) {
  .body-theme .brand-logo a .brand-text span:after {
    content: "";
    position: absolute;
    bottom: 20px;
    height: 2px;
    background-color: #fff;
    width: 80px;
    left: 0;
    right: 0;
    margin: auto;
  }
}
.body-theme .brand-logo a .brand-text span:last-child {
  font-size: 18px;
  font-style: italic;
  font-weight: 400;
  opacity: 0.5;
  margin-bottom: 0;
}
@media (min-width: 992px) and (max-width: 1024px) {
  .body-theme .brand-logo a .brand-text span:last-child {
    font-size: 14px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .body-theme .brand-logo a .brand-text span:last-child {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .body-theme .brand-logo a .brand-text span:last-child {
    display: none;
  }
}
.body-theme header {
  background-color: #0A607D !important;
  height: auto;
  background: transparent;
  font-family: "Mrs-Eaves-OT-Roman_new";
  margin-bottom: 79px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .body-theme header {
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .body-theme header {
    margin-bottom: -2px;
  }
}
.body-theme header.expand .brand-logo,
.body-theme header.expand .sub-nav,
.body-theme header.expand .logindropdown,
.body-theme header.expand .navbar-toggle,
.body-theme header.expand .search-form::after,
.body-theme header.expand .search-form::before {
  filter: blur(3px);
  opacity: 0.2;
  transition: all 0.3s;
}
.body-theme header.expand .sub-nav-section .search-form .search-wrapper .form-textfield {
  width: 450px;
  transition: width 0.3s;
  right: 40px;
}
@media (max-width: 767px) {
  .body-theme header.expand .sub-nav-section .search-form .search-wrapper .form-textfield {
    width: 180px;
    right: 110px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .body-theme header.expand .sub-nav-section .search-form .search-wrapper .form-textfield {
    right: 110px;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .body-theme header.expand .sub-nav-section .search-form .search-wrapper .form-textfield {
    width: 300px;
  }
}
.body-theme header.expand .sub-nav-section .search-form .search-wrapper .form-textfield input[type=text] {
  display: inline;
}
.body-theme header .header-top {
  padding: 30px 0;
}
@media (max-width: 767px) {
  .body-theme header .header-top {
    padding: 20px 0 15px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .body-theme header .header-top {
    padding: 20px 0;
  }
}
.body-theme header .sub-nav-section {
  display: flex;
  justify-content: flex-end;
  margin-top: 0;
}
@media (max-width: 767px) {
  .body-theme header .sub-nav-section {
    justify-content: flex-start;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .body-theme header .sub-nav-section {
    margin-top: 9px;
  }
}
@media (min-width: 992px) and (max-width: 1024px) {
  .body-theme header .sub-nav-section {
    margin-top: 7px;
  }
}
@media (min-width: 1025px) and (max-width: 1199px) {
  .body-theme header .sub-nav-section {
    margin-top: 19px;
  }
}
@media (width: 1200px) {
  .body-theme header .sub-nav-section {
    margin-top: 8px;
  }
}
.body-theme header .sub-nav-section .sub-nav {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
}
@media (max-width: 767px) {
  .body-theme header .sub-nav-section .sub-nav {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .body-theme header .sub-nav-section .sub-nav {
    display: none;
  }
}
.body-theme header .sub-nav-section .sub-nav .menu {
  margin-right: 20px;
  padding: 0;
  margin-top: 0;
  margin-bottom: 0;
}
@media (min-width: 992px) and (max-width: 1024px) {
  .body-theme header .sub-nav-section .sub-nav .menu {
    margin-right: 10px;
  }
}
@media (min-width: 1025px) and (max-width: 1199px) {
  .body-theme header .sub-nav-section .sub-nav .menu {
    margin-right: 10px;
  }
}
.body-theme header .sub-nav-section .sub-nav .menu li {
  border-right: none;
  padding: 0;
  margin: 0 12px;
  display: inline-block;
}
@media (min-width: 992px) and (max-width: 1024px) {
  .body-theme header .sub-nav-section .sub-nav .menu li {
    margin: 0 6px;
  }
}
@media (min-width: 1025px) and (max-width: 1199px) {
  .body-theme header .sub-nav-section .sub-nav .menu li {
    margin: 0 6px;
  }
}
.body-theme header .sub-nav-section .sub-nav .menu li::before {
  display: none;
}
.body-theme header .sub-nav-section .sub-nav .menu li a {
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  color: #fff;
  font-size: 20px;
  line-height: 27px;
}
@media (min-width: 992px) and (max-width: 1024px) {
  .body-theme header .sub-nav-section .sub-nav .menu li a {
    font-size: 16px;
  }
}
@media (min-width: 1025px) and (max-width: 1199px) {
  .body-theme header .sub-nav-section .sub-nav .menu li a {
    font-size: 16px;
  }
}
.body-theme header .sub-nav-section .logindropdown {
  padding-right: 20px;
  margin-right: 20px;
  position: relative;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .body-theme header .sub-nav-section .logindropdown {
    width: 155px;
  }
}
@media (max-width: 991px) {
  .body-theme header .sub-nav-section .logindropdown {
    margin-right: 0;
    padding-right: 0;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .body-theme header .sub-nav-section .logindropdown {
    margin-left: auto;
    padding-right: 30px;
  }
}
@media (min-width: 992px) and (max-width: 1024px) {
  .body-theme header .sub-nav-section .logindropdown {
    margin-right: 15px;
  }
}
@media (min-width: 1025px) and (max-width: 1199px) {
  .body-theme header .sub-nav-section .logindropdown {
    margin-right: 15px;
  }
}
@media (width: 1200px) {
  .body-theme header .sub-nav-section .logindropdown {
    margin-right: 15px;
  }
}
.body-theme header .sub-nav-section .logindropdown::after {
  content: "";
  position: absolute;
  right: 0;
  border-right: 3px solid #053C4E;
  height: 46px;
  top: 0;
  bottom: 0;
  margin: auto;
}
@media (min-width: 768px) and (max-width: 991px) {
  .body-theme header .sub-nav-section .logindropdown::after {
    right: 10px;
  }
}
.body-theme header .sub-nav-section .logindropdown .selectmenu {
  width: 236px !important;
  position: relative;
  cursor: pointer;
}
@media (min-width: 1025px) and (max-width: 1199px) {
  .body-theme header .sub-nav-section .logindropdown .selectmenu {
    width: 200px !important;
  }
}
@media (min-width: 992px) and (max-width: 1024px) {
  .body-theme header .sub-nav-section .logindropdown .selectmenu {
    width: 200px !important;
  }
}
@media (max-width: 767px) {
  .body-theme header .sub-nav-section .logindropdown .selectmenu {
    width: 100% !important;
  }
}
.body-theme header .sub-nav-section .logindropdown .selectmenu select {
  display: none;
}
.body-theme header .sub-nav-section .logindropdown .select2-container {
  width: 236px !important;
  position: relative;
}
@media (max-width: 767px) {
  .body-theme header .sub-nav-section .logindropdown .select2-container {
    width: 100% !important;
  }
}
.body-theme header .sub-nav-section .logindropdown .select2-container.select2-container--open .select2-selection__arrow:after {
  transform: rotate(-180deg);
}
.body-theme header .sub-nav-section .logindropdown .select2-container .select2-selection--single {
  height: 60px;
  border: none;
  position: relative;
  border-radius: 5px;
  display: block;
}
.body-theme header .sub-nav-section .logindropdown .select2-container .select2-selection--single::before {
  content: "";
  font-family: "FontAwesome";
  font-size: 25px;
  position: absolute;
  z-index: 1;
  color: #fff;
  margin: 12.5px 0 0 20px;
}
@media (max-width: 767px) {
  .body-theme header .sub-nav-section .logindropdown .select2-container .select2-selection--single::before {
    font-size: 22px;
    margin: 16px 0 0 15px;
  }
}
.body-theme header .sub-nav-section .logindropdown .select2-container .select2-selection__rendered {
  line-height: 36px;
  font-size: 20px;
  color: #fff;
  background-color: #053C4E;
  font-weight: 600;
  padding: 10px 15px 15px 50px;
  height: 60px;
  width: 100%;
  border: none;
  font-family: "Open Sans", sans-serif;
  -webkit-appearance: none;
  border-radius: 5px;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-right: 40px;
}
@media (max-width: 767px) {
  .body-theme header .sub-nav-section .logindropdown .select2-container .select2-selection__rendered {
    font-size: 16px;
    line-height: 45px;
    height: 55px;
    align-items: center;
    padding: 5px 30px 5px 40px;
  }
}
.body-theme header .sub-nav-section .logindropdown .select2-container .select2-selection__arrow::after {
  content: "";
  font-family: "FontAwesome";
  font-size: 30px;
  font-weight: 700;
  position: absolute;
  z-index: 1;
  color: #fff;
  top: 0;
  line-height: 60px;
  right: 15px;
  transition: all 0.3s ease-in-out;
}
.body-theme header .sub-nav-section .logindropdown .select2-container .select2-selection__arrow b {
  display: none;
}
.body-theme header .sub-nav-section .search-form {
  display: flex;
  align-items: center;
  position: relative;
}
@media (max-width: 767px) {
  .body-theme header .sub-nav-section .search-form {
    margin-left: auto;
  }
}
@media (max-width: 767px) {
  .body-theme header .sub-nav-section .search-form {
    padding-right: 65px;
    z-index: 9;
  }
  .body-theme header .sub-nav-section .search-form::after, .body-theme header .sub-nav-section .search-form::before {
    content: "";
    position: absolute;
    right: 50px;
    border-right: 3px solid #053C4E;
    height: 46px;
    top: 0;
    bottom: 0;
    margin: auto;
    z-index: -1;
  }
  .body-theme header .sub-nav-section .search-form::before {
    right: inherit;
    left: -15px;
  }
}
@media (min-width: 768px) and (max-width: 1200px) {
  .body-theme header .sub-nav-section .search-form {
    padding-right: 65px;
    z-index: 9;
  }
  .body-theme header .sub-nav-section .search-form::after, .body-theme header .sub-nav-section .search-form::before {
    content: "";
    position: absolute;
    right: 50px;
    border-right: 3px solid #053C4E;
    height: 46px;
    top: 0;
    bottom: 0;
    margin: auto;
    z-index: -1;
  }
  .body-theme header .sub-nav-section .search-form::before {
    right: inherit;
    left: -15px;
  }
}
@media (min-width: 768px) and (max-width: 1200px) {
  .body-theme header .sub-nav-section .search-form::before {
    display: none !important;
  }
}
@media (min-width: 1025px) and (max-width: 1199px) {
  .body-theme header .sub-nav-section .search-form::before {
    display: none !important;
  }
}
.body-theme header .sub-nav-section .search-form .search-wrapper .form-textfield {
  display: inline-block;
  width: 0;
  position: absolute;
  right: 100%;
  top: -5px;
}
@media (max-width: 767px) {
  .body-theme header .sub-nav-section .search-form .search-wrapper .form-textfield {
    top: 0;
  }
}
.body-theme header .sub-nav-section .search-form .search-wrapper .form-textfield input {
  display: none;
  outline: 0;
  width: 100%;
}
.body-theme header .sub-nav-section .search-form .search-wrapper .form-searchfield input {
  border: none;
  margin-top: 10px;
}

.select2-container.select2-container--open .select2-dropdown {
  border: none;
}
.select2-container.select2-container--open .select2-dropdown .select2-search--dropdown {
  display: none;
}
.select2-container.select2-container--open .select2-dropdown .select2-results__options {
  border-radius: 8px;
  background-color: #053C4E;
  color: #fff;
  width: 236px;
  position: absolute;
  top: 55px;
  padding: 0 12px;
  margin: 0;
}
@media (min-width: 1025px) and (max-width: 1199px) {
  .select2-container.select2-container--open .select2-dropdown .select2-results__options {
    width: 200px;
  }
}
@media (min-width: 992px) and (max-width: 1024px) {
  .select2-container.select2-container--open .select2-dropdown .select2-results__options {
    width: 200px;
  }
}
@media (max-width: 767px) {
  .select2-container.select2-container--open .select2-dropdown .select2-results__options {
    width: 100%;
    min-width: 155px;
    top: 50px;
  }
}
.select2-container.select2-container--open .select2-dropdown .select2-results__options li {
  position: relative;
  padding: 0 12px 0 35px;
  border-bottom: 2px solid #01212C;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  line-height: 54px;
  font-weight: 500;
  cursor: pointer;
  color: #fff;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .select2-container.select2-container--open .select2-dropdown .select2-results__options li {
    padding: 0 0 0 18px;
    font-size: 14px;
  }
}
.select2-container.select2-container--open .select2-dropdown .select2-results__options li:first-child {
  display: none;
}
.select2-container.select2-container--open .select2-dropdown .select2-results__options li:hover::before {
  content: "";
}
.select2-container.select2-container--open .select2-dropdown .select2-results__options li::before {
  content: "";
  font-family: "FontAwesome";
  font-size: 18px;
  font-weight: 700;
  position: absolute;
  color: #F9D59F;
  left: 15px;
}
@media (max-width: 767px) {
  .select2-container.select2-container--open .select2-dropdown .select2-results__options li::before {
    left: 0;
  }
}
.select2-container.select2-container--open .select2-dropdown .select2-results__options li:last-child {
  border-bottom: none;
}
.select2-container.select2-container--open .select2-selection__arrow:after {
  transform: rotate(-180deg);
}

@-moz-document url-prefix() {
  @media (min-width: 768px) and (max-width: 991px) {
    .body-theme header .sub-nav-section {
      margin-top: 7px;
    }
  }
  @media (min-width: 992px) and (max-width: 1024px) {
    .body-theme header .sub-nav-section {
      margin-top: 15px;
    }
  }
  @media (min-width: 1025px) and (max-width: 1199px) {
    .body-theme header .sub-nav-section {
      margin-top: 15px;
    }
  }
  @media (width: 1200px) {
    .body-theme header .sub-nav-section {
      margin-top: 5px;
    }
  }
  .body-theme .brand-logo a .brand-text {
    letter-spacing: 0;
    font-size: 18px;
  }
  @media (min-width: 768px) and (max-width: 991px) {
    .body-theme .brand-logo a .brand-text {
      font-size: 14px;
    }
  }
  .body-theme .brand-logo a .brand-text span:last-child {
    letter-spacing: 0;
    font-size: 16px;
  }
  @media (min-width: 768px) and (max-width: 991px) {
    .body-theme .brand-logo a .brand-text span:last-child {
      font-size: 13px;
    }
  }

  .select2-container.select2-container--open .select2-dropdown .select2-results__options {
    top: 0;
  }
  @media (max-width: 767px) {
    .select2-container.select2-container--open .select2-dropdown .select2-results__options {
      top: -5px;
    }
  }
}
.header-menu {
  background-color: #fff;
  box-shadow: 0px 3px 16px rgba(0, 0, 0, 0.19);
}
@media (max-width: 767px) {
  .header-menu .container {
    padding-left: 0;
    padding-right: 0;
  }
}
.header-menu .navbar {
  margin-bottom: 0;
  min-height: auto;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .header-menu .navbar {
    display: block;
  }
  .header-menu .navbar .navbar-toggle {
    display: block;
  }
}
@media (max-width: 767px) {
  .header-menu .navbar {
    display: block;
  }
  .header-menu .navbar .navbar-toggle {
    display: block;
  }
}
.header-menu .navbar .navbar-header .navbar-toggle {
  position: absolute;
  top: -65px;
  right: 0;
  margin: 0;
  width: 35px;
  height: 35px;
  padding: 0;
  z-index: 10;
}
@media (max-width: 767px) {
  .header-menu .navbar .navbar-header .navbar-toggle {
    right: 15px;
  }
}
@media (min-width: 768px) and (max-width: 1200px) {
  .header-menu .navbar .navbar-header .navbar-toggle {
    top: -78px;
  }
}
@media (min-width: 992px) and (max-width: 1024px) {
  .header-menu .navbar .navbar-header .navbar-toggle {
    top: -86px;
  }
}
@media (min-width: 1025px) and (max-width: 1199px) {
  .header-menu .navbar .navbar-header .navbar-toggle {
    top: -98px;
  }
}
@media (width: 1200px) {
  .header-menu .navbar .navbar-header .navbar-toggle {
    top: -86px;
  }
}
.header-menu .navbar .navbar-header .navbar-toggle.collapsed .menuicon {
  background-color: #fff;
}
.header-menu .navbar .navbar-header .navbar-toggle.collapsed .menuicon:before {
  position: absolute;
  transform: translateY(-251%);
  top: -3px;
}
.header-menu .navbar .navbar-header .navbar-toggle.collapsed .menuicon:after {
  transform: translateY(250%);
  top: 3px;
}
.header-menu .navbar .navbar-header .navbar-toggle .menuicon {
  margin-top: -2px;
  position: absolute;
  top: 47%;
  left: 0px;
  right: 0;
  display: block;
  padding: 0;
  width: 35px;
  height: 3px;
  font-size: 0px;
  background-color: transparent;
  transition: background-color 0.3s;
  margin: auto;
}
.header-menu .navbar .navbar-header .navbar-toggle .menuicon::after, .header-menu .navbar .navbar-header .navbar-toggle .menuicon::before {
  position: absolute;
  left: 0px;
  width: 100%;
  height: 100%;
  background: #fff;
  content: "";
  transition: transform 0.3s;
}
.header-menu .navbar .navbar-header .navbar-toggle .menuicon:before {
  transform: translateY(0) rotate(45deg);
  top: 0px;
}
.header-menu .navbar .navbar-header .navbar-toggle .menuicon:after {
  transform: translateY(0) rotate(-45deg);
  top: 0px;
}
.header-menu .navbar .navbar-collapse {
  padding: 0;
  max-height: inherit;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .header-menu .navbar .navbar-collapse {
    display: none !important;
  }
}
.header-menu .navbar .navbar-collapse.in {
  overflow: hidden;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .header-menu .navbar .navbar-collapse.in {
    display: block !important;
    width: 100vw;
    position: relative;
    left: 50%;
    transform: translatex(-50%);
    padding: 0 20px;
  }
}
.header-menu .navbar .navbar-collapse .navbar-nav {
  font-family: "Open Sans", sans-serif;
  margin: 0;
}
@media (max-width: 767px) {
  .header-menu .navbar .navbar-collapse .navbar-nav {
    margin: 0 15px;
  }
}
@media (min-width: 768px) and (max-width: 1200px) {
  .header-menu .navbar .navbar-collapse .navbar-nav {
    background-color: #fff;
    float: none;
  }
}
.header-menu .navbar .navbar-collapse .navbar-nav li {
  position: relative;
  margin: 0;
  padding: 0;
}
.header-menu .navbar .navbar-collapse .navbar-nav li::before {
  display: none;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .header-menu .navbar .navbar-collapse .navbar-nav li {
    border-bottom: 1px solid #677174;
    display: block;
    width: 100%;
  }
  .header-menu .navbar .navbar-collapse .navbar-nav li:last-child {
    border-bottom: none;
  }
}
@media (max-width: 767px) {
  .header-menu .navbar .navbar-collapse .navbar-nav li {
    border-bottom: 1px solid #677174;
    display: block;
    width: 100%;
  }
  .header-menu .navbar .navbar-collapse .navbar-nav li:last-child {
    border-bottom: none;
  }
}
@media (min-width: 768px) and (max-width: 1200px) {
  .header-menu .navbar .navbar-collapse .navbar-nav li .down-arrow {
    width: 56px;
    height: 56px;
    position: absolute;
    right: 0;
    top: 0;
    display: inline-block;
    z-index: 9999;
    display: flex;
    justify-content: center;
  }
  .header-menu .navbar .navbar-collapse .navbar-nav li .down-arrow::after {
    cursor: pointer;
    content: "";
    font-family: "FontAwesome";
    font-size: 28px;
    color: #0A607D;
    position: absolute;
    line-height: 56px;
    font-weight: bold;
  }
}
@media (max-width: 767px) {
  .header-menu .navbar .navbar-collapse .navbar-nav li .down-arrow {
    width: 56px;
    height: 56px;
    position: absolute;
    right: 0;
    top: 0;
    display: inline-block;
    z-index: 9999;
    display: flex;
    justify-content: center;
  }
  .header-menu .navbar .navbar-collapse .navbar-nav li .down-arrow::after {
    cursor: pointer;
    content: "";
    font-family: "FontAwesome";
    font-size: 28px;
    color: #0A607D;
    position: absolute;
    line-height: 56px;
    font-weight: bold;
  }
}
.header-menu .navbar .navbar-collapse .navbar-nav li .down-arrow.up-arrow {
  transform: rotate(-180deg);
}
.header-menu .navbar .navbar-collapse .navbar-nav li:first-child {
  display: none;
}
.header-menu .navbar .navbar-collapse .navbar-nav li:nth-child(2) a {
  padding-left: 0;
}
.header-menu .navbar .navbar-collapse .navbar-nav li a {
  color: #1F2B40;
  font-size: 17px;
  line-height: 30px;
  font-weight: 700;
  padding: 25px 12px;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .header-menu .navbar .navbar-collapse .navbar-nav li a {
    padding: 0;
    line-height: 56px;
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .header-menu .navbar .navbar-collapse .navbar-nav li a {
    padding: 0;
    line-height: 56px;
    font-size: 16px;
  }
}
@media (min-width: 1025px) and (max-width: 1280px) {
  .header-menu .navbar .navbar-collapse .navbar-nav li a {
    font-size: 14px;
  }
}
@media (min-width: 1281px) and (max-width: 1399px) {
  .header-menu .navbar .navbar-collapse .navbar-nav li a {
    font-size: 14px;
  }
}
.header-menu .navbar .navbar-collapse .navbar-nav li a:hover {
  background: transparent;
}
.header-menu .navbar .navbar-collapse .navbar-nav li:hover a {
  background: transparent;
  color: #0A607D;
}
.header-menu .navbar .navbar-collapse .navbar-nav li:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  margin-top: 0;
}
.header-menu .navbar .navbar-collapse .navbar-nav li .sub-menu {
  background: #0A607D;
  padding: 10px 15px;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  z-index: 60;
  min-width: 265px !important;
  margin-top: 50px;
  transition: all 0.4s ease;
}
@media (min-width: 1025px) and (max-width: 1280px) {
  .header-menu .navbar .navbar-collapse .navbar-nav li .sub-menu {
    min-width: 200px !important;
  }
}
@media (min-width: 1281px) and (max-width: 1399px) {
  .header-menu .navbar .navbar-collapse .navbar-nav li .sub-menu {
    min-width: 225px !important;
  }
}
@media (min-width: 768px) and (max-width: 1200px) {
  .header-menu .navbar .navbar-collapse .navbar-nav li .sub-menu {
    display: none;
    width: 100%;
    min-width: 100% !important;
    position: relative;
    z-index: 99;
    opacity: inherit;
    visibility: inherit;
    margin-top: 0;
    z-index: -1;
    transform: translateY(-100%);
    opacity: 0;
    transition: all 0.3s ease;
  }
  .header-menu .navbar .navbar-collapse .navbar-nav li .sub-menu::before {
    right: 40px;
    left: inherit !important;
  }
  .header-menu .navbar .navbar-collapse .navbar-nav li .sub-menu.show {
    z-index: 1;
    transform: translateY(0);
    opacity: 1;
    transition: all 0.3s ease;
    width: 100vw;
    margin: 0 -20px;
  }
}
@media (min-width: 768px) and (max-width: 1200px) and (max-width: 767px) {
  .header-menu .navbar .navbar-collapse .navbar-nav li .sub-menu.show {
    margin: 0 -15px;
  }
}
@media (max-width: 767px) {
  .header-menu .navbar .navbar-collapse .navbar-nav li .sub-menu {
    display: none;
    width: 100%;
    min-width: 100% !important;
    position: relative;
    z-index: 99;
    opacity: inherit;
    visibility: inherit;
    margin-top: 0;
    z-index: -1;
    transform: translateY(-100%);
    opacity: 0;
    transition: all 0.3s ease;
  }
  .header-menu .navbar .navbar-collapse .navbar-nav li .sub-menu::before {
    right: 35px;
    left: inherit !important;
  }
  .header-menu .navbar .navbar-collapse .navbar-nav li .sub-menu.show {
    z-index: 1;
    transform: translateY(0);
    opacity: 1;
    transition: all 0.3s ease;
    width: 100vw;
    margin: 0 -20px;
  }
}
@media (max-width: 767px) and (max-width: 767px) {
  .header-menu .navbar .navbar-collapse .navbar-nav li .sub-menu.show {
    margin: 0 -15px;
  }
}
.header-menu .navbar .navbar-collapse .navbar-nav li .sub-menu::before {
  content: "";
  position: absolute;
  top: -10px;
  border-left: 10px solid #0A607D;
  border-bottom: 10px solid #0A607D;
  height: 20px;
  width: 20px;
  transform: rotate(135deg);
  margin: auto;
  transition: all 0.3s ease;
  left: 40px;
  background-color: #0A607D;
}
.header-menu .navbar .navbar-collapse .navbar-nav li .sub-menu li {
  border-bottom: 2px solid #01212C;
  display: flex;
  align-items: center;
}
.header-menu .navbar .navbar-collapse .navbar-nav li .sub-menu li:last-child {
  border: none;
}
.header-menu .navbar .navbar-collapse .navbar-nav li .sub-menu li::after {
  content: "";
  font-family: "FontAwesome";
  font-size: 18px;
  font-weight: 700;
  position: absolute;
  color: #F9D59F;
  left: 10px;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .header-menu .navbar .navbar-collapse .navbar-nav li .sub-menu li::after {
    font-size: 24px;
  }
}
@media (min-width: 1201px) {
  .header-menu .navbar .navbar-collapse .navbar-nav li .sub-menu li::after {
    top: 15px;
  }
}
.header-menu .navbar .navbar-collapse .navbar-nav li .sub-menu li.current-menu-item::before {
  content: "";
}
.header-menu .navbar .navbar-collapse .navbar-nav li .sub-menu li.current-menu-item a {
  color: #F9D59F;
}
.header-menu .navbar .navbar-collapse .navbar-nav li .sub-menu li a {
  color: #fff;
  font-size: 14px;
  padding: 10px 10px 10px 35px;
  display: block;
  /* white-space: nowrap; */
}
@media (min-width: 768px) and (max-width: 1200px) {
  .header-menu .navbar .navbar-collapse .navbar-nav li .sub-menu li a {
    display: block;
    line-height: 24px;
    padding: 20px 10px 20px 30px;
    /* white-space: inherit; */
    width: 100%;
  }
}
@media (max-width: 767px) {
  .header-menu .navbar .navbar-collapse .navbar-nav li .sub-menu li a {
    display: block;
    line-height: 24px;
    padding: 20px 10px 20px 30px;
    white-space: inherit;
    width: 100%;
  }
}
.header-menu .navbar .navbar-collapse .navbar-nav li .sub-menu li a:hover {
  color: #F9D59F;
}
.header-menu .navbar .navbar-collapse .navbar-nav li:last-child .sub-menu {
  left: -165px;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .header-menu .navbar .navbar-collapse .navbar-nav li:last-child .sub-menu {
    left: 0;
  }
}
@media (max-width: 767px) {
  .header-menu .navbar .navbar-collapse .navbar-nav li:last-child .sub-menu {
    left: 0;
  }
}
.header-menu .navbar .navbar-collapse .navbar-nav li:last-child .sub-menu::before {
  left: 190px;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .header-menu .navbar .navbar-collapse .navbar-nav li:last-child .sub-menu::before {
    right: 35px;
    left: initial !important;
  }
}
@media (max-width: 767px) {
  .header-menu .navbar .navbar-collapse .navbar-nav li:last-child .sub-menu::before {
    right: 35px;
    left: initial !important;
  }
}
.header-menu .navbar .navbar-collapse .mobile-menu {
  display: none;
}
@media (max-width: 767px) {
  .header-menu .navbar .navbar-collapse .mobile-menu {
    display: block;
    background: #0A607D;
    text-align: center;
    margin: 10px -20px 0 -20px;
    width: calc(100vw + 40px);
  }
  .header-menu .navbar .navbar-collapse .mobile-menu li {
    display: inline-block;
    margin: 0;
    padding: 0;
  }
  .header-menu .navbar .navbar-collapse .mobile-menu li::before {
    display: none;
  }
  .header-menu .navbar .navbar-collapse .mobile-menu li a {
    color: #fff;
    font-size: 15px;
    line-height: 20px;
    font-weight: bold;
    padding: 20px 15px;
    display: inline-block;
    font-family: "Open Sans", sans-serif;
  }
}
@media (min-width: 768px) and (max-width: 1200px) {
  .header-menu .navbar .navbar-collapse .mobile-menu {
    display: block;
    background: #0A607D;
    text-align: center;
    margin: 10px -20px 0 -20px;
    width: calc(100vw + 40px);
  }
  .header-menu .navbar .navbar-collapse .mobile-menu li {
    display: inline-block;
    margin: 0;
    padding: 0;
  }
  .header-menu .navbar .navbar-collapse .mobile-menu li::before {
    display: none;
  }
  .header-menu .navbar .navbar-collapse .mobile-menu li a {
    color: #fff;
    font-size: 15px;
    line-height: 20px;
    font-weight: bold;
    padding: 20px 15px;
    display: inline-block;
    font-family: "Open Sans", sans-serif;
  }
}

@-moz-document url-prefix() {
  @media (min-width: 768px) and (max-width: 991px) {
    .body-theme .header-menu .navbar .navbar-header .navbar-toggle {
      top: -74px;
    }
  }
  @media (min-width: 992px) and (max-width: 1024px) {
    .body-theme .header-menu .navbar .navbar-header .navbar-toggle {
      top: -92px;
    }
  }
  @media (min-width: 1025px) and (max-width: 1199px) {
    .body-theme .header-menu .navbar .navbar-header .navbar-toggle {
      top: -92px;
    }
  }
  @media (width: 1200px) {
    .body-theme .header-menu .navbar .navbar-header .navbar-toggle {
      top: -86px;
    }
  }
}
.body-theme .footer-top {
  background: #01212C;
  padding: 30px 0;
}
.body-theme .footer-top .footer-top-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .body-theme .footer-top .footer-top-wrapper {
    display: block;
    flex-direction: column;
    justify-content: inherit;
  }
}
@media (max-width: 767px) {
  .body-theme .footer-top .footer-logo .brand-logo a {
    display: flex;
    padding: 0;
    text-align: left;
    margin-bottom: 35px;
  }
  .body-theme .footer-top .footer-logo .brand-logo a img {
    height: 31px;
    margin-right: 5px;
  }
}
@media (max-width: 767px) and (min-width: 576px) and (max-width: 767px) {
  .body-theme .footer-top .footer-logo .brand-logo a img {
    height: 45px;
    margin-right: 15px;
  }
}
@media (max-width: 767px) {
  .body-theme .footer-top .footer-logo .brand-logo a .brand-text {
    font-size: 13px;
    margin-left: 10px;
  }
}
@media (max-width: 767px) and (min-width: 576px) and (max-width: 767px) {
  .body-theme .footer-top .footer-logo .brand-logo a .brand-text {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .body-theme .footer-top .footer-logo .brand-logo a .brand-text span {
    margin-bottom: 5px;
  }
  .body-theme .footer-top .footer-logo .brand-logo a .brand-text span:last-child {
    display: block;
    font-size: 12px;
    margin-bottom: 0;
  }
  .body-theme .footer-top .footer-logo .brand-logo a .brand-text span::after {
    display: none;
  }
}
@media (max-width: 767px) {
  .body-theme .footer-top .social-links {
    text-align: center;
  }
}
.body-theme .footer-top .social-links li {
  padding: 0 15px;
  margin-bottom: 0;
}
@media (min-width: 768px) and (max-width: 991px) {
  .body-theme .footer-top .social-links li {
    padding: 0 10px;
  }
}
.body-theme .footer-top .social-links li::before {
  display: none;
}
.body-theme .footer-top .social-links li:last-child {
  padding-right: 0;
}
.body-theme .footer-top .social-links li a i {
  color: #fff;
  font-size: 30px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.body-theme .footer-top .social-links li a i:hover {
  color: #A6DAEB;
}
.body-theme .footer-bottom {
  background: #011A22;
  padding: 40px 0;
  font-family: "Open Sans", sans-serif;
}
@media (max-width: 991px) {
  .body-theme .footer-bottom {
    padding: 40px 5px 30px 5px;
  }
}
@media (max-width: 767px) {
  .body-theme .footer-bottom {
    padding: 15px 5px 30px 5px;
  }
}
.body-theme .footer-bottom .footer-details {
  position: relative;
}
.body-theme .footer-bottom .footer-details::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 1px;
  background: #fff;
}
@media (max-width: 767px) {
  .body-theme .footer-bottom .footer-details::after {
    height: 1px;
    width: 100%;
    top: inherit;
    bottom: -35px;
  }
}
.body-theme .footer-bottom .footer-title {
  font-size: 22px;
  line-height: 50px;
  font-weight: 700;
  color: #A6DAEB;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .body-theme .footer-bottom .footer-title {
    font-size: 18px;
    margin-bottom: 10px;
  }
}
.body-theme .footer-bottom .footer-address li {
  font-size: 18px;
  line-height: 34px;
  color: #fff;
  position: relative;
  padding: 0 15px 0 40px;
  margin-bottom: 16px;
}
.body-theme .footer-bottom .footer-address li::before {
  display: none;
}
@media (min-width: 1200px) {
  .body-theme .footer-bottom .footer-address li {
    font-size: 20px;
    padding: 0 15px 0 50px;
  }
}
@media (max-width: 767px) {
  .body-theme .footer-bottom .footer-address li {
    padding: 0 0 0 30px;
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 26px;
  }
}
.body-theme .footer-bottom .footer-address li a {
  color: #fff;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.body-theme .footer-bottom .footer-address li a:hover {
  color: #A6DAEB;
}
.body-theme .footer-bottom .footer-address li span {
  position: absolute;
  left: 0;
}
.body-theme .footer-bottom .footer-address li span i {
  font-size: 25px;
  color: #A6DAEB;
}
@media (max-width: 767px) {
  .body-theme .footer-bottom .footer-address li span i {
    font-size: 22px;
  }
}
.body-theme .footer-bottom .footer-address li span img {
  width: 20px;
}
@media (max-width: 767px) {
  .body-theme .footer-bottom .footer-address li span img {
    width: 16px;
  }
}
@media (min-width: 1400px) {
  .body-theme .footer-bottom .footer-links-wrapper {
    padding-left: 60px;
  }
}
@media (max-width: 767px) {
  .body-theme .footer-bottom .footer-links-wrapper {
    margin-top: 40px;
  }
}
.body-theme .footer-bottom .footer-menu {
  margin: 0 -20px;
}
@media (max-width: 767px) {
  .body-theme .footer-bottom .footer-menu {
    margin: -10px 0 0;
  }
}
.body-theme .footer-bottom .footer-menu li {
  display: inline-block;
  border-bottom: 1px solid #A6DAEB;
  width: calc(33% - 20px);
  margin: 0 9px 5px;
  padding-left: 0;
}
.body-theme .footer-bottom .footer-menu li::before {
  display: none;
}
.body-theme .footer-bottom .footer-menu li.active a {
  color: #A6DAEB;
}
@media (min-width: 1200px) {
  .body-theme .footer-bottom .footer-menu li {
    width: calc(33% - 40px);
    margin: 0 20px 5px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .body-theme .footer-bottom .footer-menu li {
    width: calc(50% - 26px);
  }
}
@media (max-width: 767px) {
  .body-theme .footer-bottom .footer-menu li {
    width: 100%;
    margin: 0;
  }
}
.body-theme .footer-bottom .footer-menu li a {
  font-size: 18px;
  line-height: 59px;
  font-weight: 700;
  color: #fff;
  position: relative;
  display: block;
}
@media (min-width: 1200px) {
  .body-theme .footer-bottom .footer-menu li a {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .body-theme .footer-bottom .footer-menu li a {
    font-size: 16px;
  }
}
.body-theme .footer-bottom .footer-menu li a::after {
  content: "";
  font-family: "FontAwesome";
  font-size: 25px;
  position: absolute;
  right: 0;
  color: #A6DAEB;
}
.body-theme .footer-bottom .footer-menu li a:hover {
  color: #A6DAEB;
}
.body-theme .footer-bottom .footer-copyright {
  margin-top: 40px;
  font-size: 16px;
  line-height: 34px;
  text-align: right;
  color: #fff;
}
@media (max-width: 767px) {
  .body-theme .footer-bottom .footer-copyright {
    text-align: center;
    line-height: 24px;
    margin-top: 25px;
  }
}

/* Home Page
 * - Hero Slider
 * - Sportlight
 * - Section Legal Education News
 * - Upcoming Symposia
 * - Billboard
 *
 **/
/*----- Section Hero slider -----*/
.home-slider {
  position: relative;
}
@media (max-width: 767px) {
  .home-slider {
    width: 100vw;
    margin-left: -50vw;
    left: 50%;
    margin-bottom: -130px;
  }
}
.home-slider .slide-item {
  position: relative;
  height: 560px;
  overflow: hidden;
}
@media (min-width: 768px) and (max-width: 991px) {
  .home-slider .slide-item {
    height: 450px;
  }
}
.home-slider .slide-item img {
  width: 100%;
}
.home-slider .slide-item .silder-description .card {
  width: 730px;
  position: absolute;
  bottom: 0;
  height: auto;
  left: 60px;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .home-slider .slide-item .silder-description .card {
    width: calc(100% - 30px);
    left: 15px;
    top: 60%;
    bottom: inherit;
    transform: translate(0, -50%);
    padding: 25px 20px;
  }
}
@media (min-width: 992px) and (max-width: 1024px) {
  .home-slider .slide-item .silder-description .card {
    width: 650px;
  }
}
@media (min-width: 1025px) and (max-width: 1199px) {
  .home-slider .slide-item .silder-description .card {
    width: 650px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .home-slider .slide-item .silder-description .card {
    width: 500px;
    left: 40px;
  }
}
.home-slider .slide-item .silder-description .card .btn {
  margin-left: 0;
  margin-right: 0;
}

/*----- Section Title -----*/
.section-title {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .section-title {
    margin-bottom: 0;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .section-title {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .section-title h2 {
    margin-bottom: 30px;
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 767px) {
  .section-title .style-link {
    display: none;
  }
}

/*----- Section In the SportLight -----*/
@media (max-width: 767px) {
  .section-link-list .vc_col-sm-6:first-child .link-list {
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 0;
  }
  .section-link-list .vc_col-sm-6:last-child .link-list {
    padding-left: 0;
    margin-top: 0;
  }
}
.section-link-list .link-list p {
  display: none;
}
@media (min-width: 768px) and (max-width: 991px) {
  .section-link-list .link-list .list-wrap {
    min-height: 60px;
  }
}
@media (min-width: 992px) and (max-width: 1024px) {
  .section-link-list .link-list .list-wrap {
    min-height: 60px;
  }
}
@media (min-width: 1025px) and (max-width: 1199px) {
  .section-link-list .link-list .list-wrap {
    min-height: 60px;
  }
}

/*----- Section Legal Education News -----*/
.bg-gradient {
  position: relative;
  z-index: 1;
  background-position: top !important;
}
.bg-gradient::after {
  content: "";
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -moz-linear-gradient(top, rgba(1, 33, 44, 0.75) 0%, rgba(1, 33, 44, 0.95) 100%);
  background: -webkit-linear-gradient(top, rgba(1, 33, 44, 0.75) 0%, rgba(1, 33, 44, 0.95) 100%);
  background: linear-gradient(to bottom, rgba(1, 33, 44, 0.75) 0%, rgba(1, 33, 44, 0.95) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#01212C", endColorstr="#01212C", GradientType=0);
}
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  .bg-gradient::after {
    min-height: 1500px;
  }
}
.bg-gradient .section-title,
.bg-gradient .style-link,
.bg-gradient .card,
.bg-gradient .section-link-list,
.bg-gradient .btn {
  position: relative;
  z-index: 1;
}
.bg-gradient .section-title h2 {
  color: #fff;
}
.bg-gradient .section-link-list h3, .bg-gradient .section-link-list .search_blog .title, .search_blog .bg-gradient .section-link-list .title {
  color: #fff !important;
}
@media (max-width: 767px) {
  .bg-gradient .section-link-list h3, .bg-gradient .section-link-list .search_blog .title, .search_blog .bg-gradient .section-link-list .title {
    text-align: center;
  }
}
.bg-gradient .link-list li {
  border-color: #fff;
}
.bg-gradient .link-list li .list-wrap {
  color: #fff;
}
.bg-gradient .link-list li .list-wrap::before {
  background-image: url("images/list-arrow-orange.png");
  background-repeat: no-repeat;
}
@media (max-width: 767px) {
  .bg-gradient .link-list li .list-wrap::before {
    background-size: 100%;
    width: 10px;
    height: 16px;
  }
}
.bg-gradient .link-list li .list-wrap a {
  color: #fff;
}
.bg-gradient .link-list li.active_link .list-wrap::before {
  background: url("images/list-active-arrow-orange.png");
  background-repeat: no-repeat;
}
@media (max-width: 767px) {
  .bg-gradient .link-list li.active_link .list-wrap::before {
    background-size: 100%;
    width: 20px;
    height: 15px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .bg-gradient .link-list li.active_link .list-wrap::before {
    background-size: 100%;
    width: 26px;
  }
}
@media (max-width: 767px) {
  .bg-gradient .section-space {
    padding-top: 0;
    padding-bottom: 20px;
  }
}
.bg-gradient .vc_column_container.vc_col-sm-12 > .vc_column-inner {
  padding-top: 0;
}

/*----- Section Upcoming Symposia -----*/
@media (max-width: 767px) {
  .section-upcoming {
    margin-top: -40px;
  }
}

.upcoming-list {
  margin: 0 -20px;
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
}
@media (max-width: 767px) {
  .upcoming-list {
    margin: 0;
  }
}
.upcoming-list li {
  border-bottom: 1px solid #677174;
  padding: 0 0 26px;
  display: inline-block;
  width: calc(50% - 42px);
  margin: 0 20px 26px 20px;
}
.upcoming-list li::before {
  display: none;
}
@media (max-width: 767px) {
  .upcoming-list li {
    width: 100%;
    margin: 0 0 17px 0;
  }
}
.upcoming-list li .upcoming-list-wrap .pretext p {
  color: #01212C;
  font-size: 16px;
  line-height: 26px;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  padding-bottom: 12px;
}
.upcoming-list li .upcoming-list-wrap .date p {
  font-size: 18px;
  line-height: 24px;
  color: #1F2B40;
  font-style: italic;
  font-weight: 400;
  padding-bottom: 0;
}
@media (max-width: 767px) {
  .upcoming-list li .upcoming-list-wrap .date p {
    margin-top: 10px;
    font-size: 16px;
    line-height: 22px;
  }
}

.dark-list .upcoming-list li { border-color: #fff !important; }
.dark-list .upcoming-list li .upcoming-list-wrap .pretext p {
	color: #fff !important;
	font-size: 19px;
	font-weight: normal;
}
.dark-list .upcoming-list li .upcoming-list-wrap .date p { color: #fff !important; }
.dark-list a { color: #fff !important; }
.dark-list h4 a { font-size: 22px; font-weight: 600; font-family: "Open Sans", sans-serif; }
.dark-list .style-link::after { background-image: url("images/style-link-light.svg"); background-size: 100% 100%; }
.dark-list .upcoming-list-wrap {
	line-height: 30px;
	padding-left: 34px;
}
.dark-list .upcoming-list-wrap h4 {
    line-height: 28px;
    margin-bottom: 18px;
}
.dark-list .upcoming-list-wrap::before {
	content: "";
	position: absolute;
	left: 0;
	/* background: url("images/list-arrow-orange.png"); */
	background-repeat: no-repeat;
	width: 14px;
	height: 23px;
	top: 22px;
	margin: auto;
}

/*----- Section Billboard -----*/
.section-billboard .section-image-wrapper {
  height: 300px;
  overflow: hidden;
}
@media (max-width: 991px) {
  .section-billboard .section-image-wrapper {
    margin-bottom: 20px;
  }
}
.section-billboard .section-image-wrapper img {
  object-fit: cover;
  width: 100%;
}
.section-billboard .section-description {
  font-size: 20px;
  line-height: 34px;
  font-family: "Open Sans", sans-serif;
  color: #01212C;
}
@media (max-width: 767px) {
  .section-billboard .section-description {
    font-size: 16px;
    line-height: 26px;
  }
}
@media (max-width: 767px) {
  .section-billboard .section-description .wpb_content_element:last-child {
    margin-bottom: 0;
  }
}
.section-billboard .section-description p {
  font-size: 20px;
  line-height: 34px;
  font-family: "Open Sans", sans-serif;
  color: #01212C;
}
@media (max-width: 767px) {
  .section-billboard .section-description p {
    font-size: 16px;
    line-height: 26px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .section-billboard .section-description p {
    font-size: 18px;
    line-height: 28px;
  }
}
.section-billboard .section-description .style-list {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}
@media (max-width: 991px) {
  .section-billboard .section-description .style-list {
    flex-flow: column;
  }
}
.section-billboard .section-description .style-list li {
  margin: 0;
  padding: 0;
}
.section-billboard .section-description .style-list li::before {
  display: none;
}
.section-billboard .section-description .style-list li:last-child {
  margin-bottom: 0;
}
@media (min-width: 992px) and (max-width: 1024px) {
  .section-billboard .section-description .style-list li:last-child {
    flex-basis: 100%;
  }
}
.section-billboard .section-description .style-list li a {
  margin-left: 0;
}

/*----- Interior_page -----*/
.inner-banner {
  position: relative;
  height: 400px;
  width: 100%;
  background-repeat: no-repeat;
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .inner-banner {
    height: 270px;
    width: calc(100% + 40px);
    margin-left: -15px;
    margin-bottom: 25px;
  }
}
.inner-banner::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#00000000", endColorstr="#a601212c", GradientType=0);
}
.inner-banner h1 {
  z-index: 1;
  padding: 0 30px 30px 56px;
  position: absolute;
  bottom: 0;
}
@media (max-width: 767px) {
  .inner-banner h1 {
    padding: 0 20px 30px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .inner-banner h1 {
    padding: 0 30px 30px 40px;
  }
}

.no-banner-title {
  margin: 0 0 80px;
}
@media (max-width: 767px) {
  .no-banner-title {
    margin: 40px 0;
  }
}

.rightsidebar {
  padding: 22px 27px;
  margin-bottom: 30px;
  min-height: 200px;
  height: auto;
}
/*@media (max-width: 767px) {*/
/*  .rightsidebar {*/
/*    display: none;*/
/*  }*/
/*}*/
/*@media (min-width: 768px) and (max-width: 991px) {*/
/*  .rightsidebar {*/
/*    display: none;*/
/*  }*/
/*}*/
.rightsidebar .link-list {
  margin-top: 0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
  padding-left: 0;
}
.rightsidebar .link-list li:last-child {
  padding-bottom: 0;
  border: none;
}
.rightsidebar .link-list li .list-wrap {
  width: 100%;
}

.mobile-sidebar-main {
  display: none;
  position: relative;
  float: left;
  width: 100%;
  margin-bottom: 25px;
}
@media (max-width: 991px) {
  .mobile-sidebar-main {
    display: block;
  }
}
.mobile-sidebar-main .mobile-drop-btn {
  line-height: 30px;
  font-size: 18px;
  color: #677174;
  background-color: #fff;
  font-weight: 600;
  border: 2px solid #01212C;
  padding: 10px 40px 10px 20px;
  width: 100%;
  font-family: "Open Sans", sans-serif;
  border-radius: 5px;
  position: relative;
}
.mobile-sidebar-main .mobile-drop-btn::after {
  content: "";
  font-family: "FontAwesome";
  font-size: 30px;
  font-weight: 700;
  position: absolute;
  z-index: 1;
  color: #01212C;
  top: 0;
  line-height: 55px;
  right: 15px;
  transition: all 0.3s ease-in-out;
}
.mobile-sidebar-main .mobile-drop-btn.open {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.mobile-sidebar-main .mobile-drop-btn.open::after {
  transform: rotate(-180deg);
}
.mobile-sidebar-main .list-mobile {
  border-top: none;
  border: 2px solid #01212C;
  margin: -2px 0 0 0;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}
.mobile-sidebar-main .list-mobile li {
  padding: 20px 12px;
  margin: 0 12px;
  border-bottom: 2px solid #01212C;
}
.mobile-sidebar-main .list-mobile li:last-child {
  border-bottom: none;
}
.mobile-sidebar-main .list-mobile li a {
  font-weight: 600;
}

.row-reverse {
  display: flex;
  flex-direction: row-reverse;
  flex-wrap: wrap;
}
.row-reverse .left-section {
  order: 2;
}
.row-reverse .right-section {
  order: 1;
}

html,
body,
div,
span,
applet,
object,
iframe,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  border: 0;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

blockquote {
  quotes: none;
}
blockquote:before, blockquote:after {
  content: "";
  content: none;
}

del {
  text-decoration: line-through;
}

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

nav ul,
nav ol {
  list-style: none;
  padding: 0;
}

a img {
  border: none;
}

:focus {
  outline: none;
}

.clear {
  clear: both;
}

p {
  padding-bottom: 0.5em;
}

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

form .fa-search {
  position: absolute;
  top: 5px;
  right: 8px;
  font-size: 15px;
  color: #999;
}

#mobile-nav-label {
  color: #fff;
  font-size: 16px;
  line-height: 45px;
  margin-bottom: 0;
  font-weight: bold;
}

#mobile-nav-button {
  color: #fff;
  font-size: 27px;
  background: #030d22;
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  float: left;
  margin-right: 15px;
}

header h2 {
  color: #fff;
  line-height: 45px;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: bold;
}

.img-wrap {
  width: 100%;
  border: 3px solid #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  margin-bottom: 15px;
}
.img-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

.call-out-section {
  margin-bottom: 30px;
}
.call-out-section h3 a, .call-out-section .search_blog .title a, .search_blog .call-out-section .title a {
  color: #d47d07;
}
.call-out-section h3 a i, .call-out-section .search_blog .title a i, .search_blog .call-out-section .title a i {
  margin-right: 10px;
  float: left;
  display: block;
  width: 19px;
  height: 23px;
}

.blog-news-section .news-subscribe {
  background: #fff;
  color: #c6542c;
  font-weight: bold;
  text-align: center;
  display: block;
  padding: 1em;
  margin: 1em 0;
}
.blog-news-section .news-subscribe:hover, .blog-news-section .news-subscribe:focus {
  color: #c6542c;
}

.news {
  background: #f2f2f2;
  padding-top: 20px;
  padding-bottom: 20px;
}
.news h3, .news .search_blog .title, .search_blog .news .title {
  margin-bottom: 5px;
  font-weight: 700;
  color: #c6542c;
}
.news h3 .section-title, .news .search_blog .title .section-title, .search_blog .news .title .section-title {
  margin-bottom: 15px;
}
.news ul {
  padding: 0;
  list-style: none;
}
.news ul li {
  clear: left;
  border-bottom: 1px solid #dedede;
  padding-bottom: 15px;
  margin-bottom: 15px;
  float: left;
  width: 100%;
}
.news ul li:last-child {
  border-bottom: none;
}
.news ul li h3 a, .news ul li .search_blog .title a, .search_blog .news ul li .title a {
  color: #3976bd;
  font-size: 14px;
  line-height: 14px;
}
.news ul li p {
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
  padding-bottom: 0;
}
.news .img-wrap {
  width: 130px;
  float: left;
  margin-right: 15px;
}

.home-legal-news-banner {
  width: 100%;
}

.blog-member {
  padding-top: 15px;
}
.blog-member .link-list-block {
  background-color: transparent !important;
}
.blog-member .link-list-block h4 {
  color: #000 !important;
}
.blog-member .link-list-block ul li {
  padding-left: 45px;
}
.blog-member .link-list-block ul li:before {
  color: #c6542c !important;
  font-weight: normal;
  left: 0 !important;
}
.blog-member .link-list-block ul li a {
  color: #000 !important;
  font-weight: normal;
}

.blog {
  padding-left: 30px;
}
.blog h3, .blog .search_blog .title, .search_blog .blog .title {
  color: #c6542c;
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 15px;
}
.blog ul {
  list-style: none;
  padding: 0;
}
.blog ul li {
  position: relative;
  padding-left: 55px;
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid #b3b3b3;
}
.blog ul li:before {
  content: "»";
  color: #c6542c;
  position: absolute;
  left: 0;
  top: 10px;
  font-size: 75px;
}
.blog ul li p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  padding-bottom: 0;
}

.view-all {
  clear: both;
  text-align: right;
  color: #d47d07;
  font-style: italic;
  display: block;
}

aside ul {
  list-style: none;
  padding: 0;
}
aside ul li:before {
  content: "»";
  margin-right: 10px;
  color: #263248;
  position: absolute;
  left: 20px;
}
aside a {
  color: #263248;
}
aside a:hover {
  color: #c6542c;
  text-decoration: none;
}
aside .block {
  padding: 20px 0;
  border-bottom: 1px solid #b3b3b3;
  padding-bottom: 0;
}
aside .block:last-child {
  border: none;
}
aside .block h4 {
  font-weight: 700;
  font-size: 13px;
  color: #263248;
  margin-bottom: 15px;
}
aside div.post-list-block.block {
  background: #d5e8ea;
  border-radius: 15px;
  border-bottom: none !important;
  padding: 15px;
}
aside .view-all {
  color: #7e8aa2;
  font-weight: normal;
}

aside .child-pages-block ul li:before {
  left: 30px;
}

aside .events-list-block ul li:before {
  content: "";
  display: none;
}

.post-list-block li p {
  font-style: italic;
}

.events-list-block ul li {
  clear: both;
}

.events-list-block ul li,
.events-list-block ul li a {
  color: #c6542c;
}

.events-list-block .date {
  display: block;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  background: #c6542c;
  color: #fff;
  width: 45px;
  height: 45px;
  float: left;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  padding: 5px;
  text-align: center;
  margin-right: 10px;
}

.events-list-block .date span {
  display: block;
}

.list-pages {
  float: right;
  list-style-type: none;
  padding: 0;
  width: 28%;
}
.list-pages li {
  background-color: #2C6194;
  padding: 0.5em 1em;
  border-bottom: 1px solid #FFF;
}
.list-pages li a {
  color: #FFF;
}

.newsletter-articles div {
  margin: 10px 0;
  padding: 15px;
  min-height: 180px;
  background: #e0e0e0;
}
.newsletter-articles div:first-child {
  margin-top: 0;
}
.newsletter-articles img {
  float: left;
  height: 150px;
  margin: 0 15px 15px 0;
}

.newsletter-articles,
.newsletter-article {
  width: 70%;
}
.newsletter-articles img,
.newsletter-article img {
  max-width: 100%;
  height: auto;
}

aside .call-out-list-block {
  background: #d47d07;
  color: #fff;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  padding: 15px;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
}

aside .call-out-list-block h4 {
  color: #fff;
}

aside .call-out-list-block a {
  color: #fff;
}

aside .call-out-list-block ul li:before {
  color: #fff;
}

/*footer {
    margin-top: 30px;
    background-color: $navy4;
    color: $white;
    padding-top: 20px;
    float: left;
    width: 100%;

    h2 {
        @extend h4;
        color: $white;
        font-weight: normal;
        font-size: 16px;
        margin-bottom: 15px;
    }

    ul {
        padding: 0;
        list-style: none;

        li {
            margin-bottom: 10px;

            a {
                color: $lightbluegrey !important;
            }
        }
    }

    form {
        margin: 0;
        padding: 0;
    }

    // contact form
    .wpcf7 {
        br {
            display: none;
        }

        label {
            margin-bottom: 2px;
            font-weight: normal;
        }

        span.wpcf7-not-valid-tip {
            border: 2px solid #f7e700;
            margin: 0 0 1em;
            padding: 0.2em 1em;
            color: #FFF;
        }

        input[type='text'],
        input[type='email'],
        input[type='submit'],
        textarea {
            border: none;
            width: 100%;
            display: block;
            background-color: $white;
            border-radius: 8px;
            -webkit-border-radius: 8px;
            -moz-border-radius: 8px;
            -ms-border-radius: 8px;
            padding: 5px 10px;
            margin-bottom: 7px;
            color: #000;
        }

        input[type='submit'] {
            width: 100px;
            background-color: $orange3;
            color: $white;
            text-align: center;
            display: block;
            margin-top: 10px;
        }
    }

    .location {
        color: $lightbluegrey;
    }
}*/
/*.copyright {
    background-color: $lightbluegrey;
    padding: 10px 0;
    display: block;
    margin-top: 20px;
    color: $navy4;
}*/
.inner-photo-highlight {
  display: block;
  text-align: center;
  margin: 90px auto 0 auto;
  background: url(img/inner-photo-highlight.jpg) center no-repeat;
  background-size: cover;
  height: 200px;
}

.breadcrumb-new {
  background-color: #fff;
  float: left;
  width: 100%;
  padding: 30px 0;
}

.breadcrumb {
  background: none;
  margin-bottom: 0;
  float: right;
  display: block;
  max-width: 336px;
}
.breadcrumb li,
.breadcrumb a {
  color: #2e3a52;
}

.block ul li a {
  color: #000;
  word-wrap: break-word;
}

.content-inner {
  display: block;
}
.content-inner h3, .content-inner .search_blog .title, .search_blog .content-inner .title {
  font-size: 22px;
  margin-bottom: 20px;
  font-weight: normal;
}
.content-inner p {
  padding-bottom: 15px;
}
.content-inner p a {
  color: #1177cd;
  text-decoration: underline;
}
.content-inner p a:hover {
  text-decoration: none;
}
.content-inner img {
  margin-bottom: 20px;
}
.content-inner blockquote {
  margin-left: 30px;
  border-left: solid 5px #fca61d;
  font-size: 14px;
  background-color: #f5f5f5;
  padding: 15px;
  margin-bottom: 20px;
}

.carousels {
  display: block;
  margin: 30px 0;
}
.carousels h4 {
  text-align: left;
  border-bottom: solid 2px #b3b3b3;
}
.carousels h4 span {
  margin-top: -20px;
  padding: 10px;
  background-color: #fff;
  float: left;
}
.carousels li {
  margin: 0 22px 0 0;
  max-height: 205px;
}

.category-slider {
  display: block;
  clear: both;
  position: relative;
  margin-top: 30px;
  padding-left: 2px;
}
.category-slider .bx-wrapper .bx-viewport {
  height: 210px !important;
}
.category-slider > ul {
  list-style: none;
  display: block;
  margin: 0;
  padding: 0 !important;
}
.category-slider > ul > li {
  float: left;
  display: block;
  margin: 0;
  padding: 0;
  color: #1177cd;
  text-align: center;
  font-size: 20px;
}
.category-slider .prev,
.category-slider .next {
  top: 60px;
  z-index: 9999;
  opacity: 0.8;
  font-size: 20px;
  color: #fff;
  float: left;
  width: 50px;
  height: 50px;
  text-align: center;
  position: absolute;
  background-color: #d2d2d2;
}
.category-slider .prev:hover,
.category-slider .next:hover {
  background-color: #7d7d7d;
  opacity: 0.9;
}
.category-slider .prev i,
.category-slider .next i {
  margin-top: 10px;
  font-size: 30px;
}
.category-slider .next {
  float: right;
  right: 0;
}

.slide a {
  display: block;
  margin: 10px 0;
  padding: 0;
  color: #1177cd;
  text-align: left;
  font-weight: 600;
  font-size: 15px;
}

.slide_new a {
  display: block;
  margin: 10px 0;
  padding: 0;
  color: #1177cd;
  text-align: left;
  font-weight: 600;
  font-size: 15px;
}

.inner {
  display: block;
}
.inner li {
  margin-bottom: 10px;
}
.inner li:before,
.inner a {
  color: #1177cd;
}

.img-thumbnail {
  float: left;
  margin-right: 15px;
  border: none;
  padding: 0;
  width: 28%;
}

.img-crop {
  height: 165px;
  overflow: hidden;
  width: 100%;
}

.ie8 .brand {
  width: 62%;
  float: left;
}

.ie8 .sub-nav-section {
  width: 34%;
  float: left;
}

.inner-photo-highlight.hight_none {
  background: url(img/inner-photo-highlight.jpg) center no-repeat !important;
  background-size: cover !important;
}

#tiles {
  list-style-type: none;
  position: relative;
  margin: 0;
  padding: 0;
}
#tiles li {
  width: 350px;
  background-color: #fff;
  border: 1px solid #dedede;
  border-bottom: 2px solid #dedede;
  display: none;
  cursor: pointer;
}
#tiles li .inactive {
  visibility: hidden;
  opacity: 0;
}
#tiles li .padding {
  padding: 20px;
}
#tiles li h2 {
  font-size: 20px;
  font-weight: 700;
}
#tiles li p {
  color: #666;
  font-size: 13px;
  line-height: 20px;
  font-weight: 200;
}
#tiles li img {
  display: block;
  margin-bottom: 0;
}
#tiles p {
  border-top: 1px solid #efeeee;
  padding-top: 15px;
}
#tiles a {
  color: #000;
}
#tiles .meta {
  border-bottom: 1px solid #efeeee;
  padding-bottom: 10px;
  margin-bottom: 3px;
  color: #747474;
}
#tiles .read-more {
  text-align: right;
  display: block;
}

.pagination {
  bottom: -30px;
  right: 0;
  text-align: center;
  float: right;
}
.pagination a {
  color: #000;
  padding: 0 10px;
}
.pagination a:hover {
  color: #1177cd;
}
.pagination .current {
  color: #fff;
  background: #1177cd;
  padding: 0 5px;
}
.pagination .first,
.pagination .last {
  padding: 0 5px;
  font-size: 15px;
}
.pagination .pages,
.pagination .current,
.pagination .page,
.pagination .nextpostslink {
  border: 0;
}

.members-welcome {
  padding: 0 0 25px 0;
}
.members-welcome h3, .members-welcome .search_blog .title, .search_blog .members-welcome .title {
  font-size: 26px;
}
.members-welcome p {
  font-size: 16px;
  text-align: right;
}

.member-links {
  border-left: 1px solid #e4e4e4;
  padding-bottom: 20px;
}

.member-links li:before {
  content: "";
  display: none;
}

.member-links li a {
  font-size: 16px;
  padding: 15px 0 15px 15px;
  border-bottom: 1px solid #e4e4e4;
  display: block;
}

.logged-in .events-list-block li a {
  font-size: 18px;
  color: #d47d07;
}

.logged-in .events-list-block li .time {
  font-style: italic;
  color: #d47d07;
  font-weight: normal;
  font-size: 18px;
}

.logged-in .news ul li .img-wrap,
.news ul li .img-wrap {
  width: 50px;
  height: auto;
  border: 3px solid #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  -ms-box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

.news ul li .read_more {
  float: right;
}

.logged-in .events-list-block ul {
  padding: 0;
}

.logged-in .events-list-block ul li {
  margin-bottom: 40px;
}

.logged-in .events-list-block h4 {
  margin-bottom: 25px;
  font-weight: 700;
}

.spotlight h4 {
  margin-bottom: 25px;
}

.spotlight ul {
  list-style: none;
  padding: 0;
}

.spotlight ul li {
  margin-bottom: 25px;
}

.spotlight ul li a {
  color: #000;
}

.view-more {
  text-align: right;
  float: right;
  color: #6c8aa2 !important;
  font-style: italic;
  font-size: 14px !important;
}

.menu-footer-menu-container .menu {
  padding-left: 0;
}

.menu-footer-menu-container .menu li {
  list-style: none;
}

.sidebar .link-list-block:last-child {
  background: #d47d07;
  color: #fff;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  padding: 15px;
  margin: 15px 0;
}

.sidebar .link-list-block:last-child h4 {
  color: #fff;
}

.sidebar .link-list-block:last-child ul li:before {
  color: #fff;
  position: absolute;
  left: 35px;
}

.sidebar .link-list-block:last-child ul li a {
  color: #fff;
}

.sidebar .link-list-block:last-child .view-all {
  color: #fff;
}

.inner_page .wpcf7-form {
  width: 350px;
}

.inner_page .wpcf7-form .wpcf7-form-control-wrap {
  display: block;
}

.inner_page .wpcf7-form .wpcf7-form-control-wrap input[type=email],
.inner_page .wpcf7-form .wpcf7-form-control-wrap input[type=text],
.inner_page .wpcf7-form .wpcf7-form-control-wrap textarea {
  width: 100%;
}

.news .big_thumb {
  width: 130px !important;
}

.events-list-block ul {
  padding-left: 0;
}

.events-list-block h4 {
  margin-bottom: 25px;
}

.blog ul li:before {
  top: 8px;
}

.sidebar aside {
  font-weight: 700;
  font-size: 13px;
  color: #263248;
}

.sidebar aside ul {
  margin: 20px 0;
}

.sidebar aside ul li {
  line-height: 17px;
  padding-left: 20px;
}

.sidebar aside ul li a {
  font-size: 12px;
  line-height: 17px;
  font-family: "Open Sans", Arial, Verdana, sans-serif;
  font-weight: normal;
}

.events-list-block ul li a {
  float: right;
  width: 72%;
}

.events-list-block ul li p {
  float: right;
  width: 72%;
}

#spotlight ul li {
  padding-left: 0;
}

.events-list-block .view-all {
  font-weight: normal;
}

.link-list-block .view-all {
  font-weight: normal;
}

.events-list-block ul li {
  list-style: none;
}

#accordion .title-overlay {
  height: auto;
  min-height: 60px;
  margin-top: 0;
  position: absolute !important;
  bottom: 0;
}

.link-list-block h4 {
  color: #c6542c;
  margin-bottom: 15px;
  font-weight: bold;
}

.search_blog {
  border-bottom: 1px solid #ccc;
  padding: 15px 0;
}
.search_blog:last-child {
  border-bottom: 0;
}
.search_blog .read-more {
  text-transform: uppercase;
}

.search-pagination {
  font-size: 20px;
  margin-top: 1em;
  margin-bottom: 1rem;
}

.container_slider {
  width: 1000px;
  margin: 0 auto;
}

.featured_link {
  color: #333;
}

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

@media only screen and (max-width: 991px) and (min-width: 961px) {
  #mobile-nav-label {
    display: none !important;
  }

  #menu-main-menu > li {
    font-size: 13px;
  }
}
@media only screen and (max-width: 960px) {
  body {
    background-position: center 64px;
  }

  .navbar ul.nav li a {
    padding: 0 10px;
  }

  header {
    height: 65px;
  }

  #mobile-nav-button {
    height: 65px;
    width: 65px;
    line-height: 65px;
  }

  #mobile-nav-label {
    line-height: 65px;
  }

  .brand img {
    width: 450px;
  }

  .flexslider {
    margin: 0 -15px;
  }

  #accordion .title-overlay {
    width: 13%;
  }

  .blog-news-section,
.call-out-section {
    margin: 0;
    padding-top: 30px;
  }

  .call-out-section .col-xs-4 {
    padding: 0 8px;
  }

  .col-sm-clear {
    clear: left;
  }

  .call-out-section {
    padding-top: 30px;
  }

  #accordion li a {
    height: 400px;
    overflow: hidden;
  }

  #accordion li img {
    width: 100%;
    height: auto;
  }

  .brand img {
    width: 100%;
  }

  #mobile-nav form input[type=text] {
    height: 35px;
    width: 90%;
    padding: 0 5px;
    color: #000;
    display: block;
    margin: 0 auto;
  }

  .flexslider .gallery li {
    height: 100%;
    width: 100%;
  }

  .menu-top-right-menu-container .menu {
    padding-left: 0;
  }

  #mobile-nav form.search {
    text-align: center;
  }

  .members-welcome p {
    text-align: left;
  }

  #mobile-nav .search-form input[type=submit] {
    top: 33px;
    right: 30px;
  }

  .flexslider .gallery {
    width: 100%;
    float: left;
  }

  .flexslider {
    width: 100%;
    float: left;
    margin: 0 !important;
  }

  #accordion li a .video_lightbox_anchor_image {
    max-height: 474px !important;
  }

  .img-responsive {
    margin-bottom: 15px;
  }

  .carousels li {
    margin: 0 35px;
    max-height: 205px;
    width: 235px !important;
  }

  .container_slider {
    width: 100%;
    margin: 0 auto;
  }

  .list-pages {
    float: none;
    margin-bottom: 15px;
    width: auto;
  }

  .newsletter-articles,
.newsletter-article {
    width: auto;
  }
}
@media only screen and (max-width: 767px) {
  #mobile-nav-label {
    line-height: 37px;
  }

  header .brand img {
    width: auto;
    height: 40px;
    margin: 8px auto 0;
    display: block;
  }

  .flexslider {
    margin: 0 -15px 0 -15px;
  }

  #mobile-nav-button {
    height: 45px;
    width: 45px;
    line-height: 45px;
  }

  .call-out-section {
    margin: 0 -15px 0 -15px;
  }
  .call-out-section h3, .call-out-section .search_blog .title, .search_blog .call-out-section .title {
    text-align: center;
    font-size: 16px;
    display: block;
  }
  .call-out-section h3 i, .call-out-section .search_blog .title i, .search_blog .call-out-section .title i {
    display: block;
    text-align: center;
    font-size: 30px;
    margin-right: 0 !important;
  }
  .call-out-section p {
    display: none;
  }
  .call-out-section .img-wrap {
    display: none;
  }
  .call-out-section .teal {
    border-top: 3px solid #26858b;
    padding: 10px 0 15px 0;
    border-right: 1px solid #fff;
  }
  .call-out-section .teal a {
    color: #26858b;
    text-decoration: none;
    font-weight: bold;
  }
  .call-out-section .green {
    border-top: 3px solid #6c9e1f;
    padding: 10px 0 15px 0;
    border-right: 1px solid #fff;
    border-left: 1px solid #fff;
  }
  .call-out-section .green a {
    color: #6c9e1f;
    text-decoration: none;
    font-weight: bold;
  }
  .call-out-section .orange {
    border-top: 3px solid #c46a08;
    padding: 10px 0 15px 0;
    border-left: 1px solid #fff;
  }
  .call-out-section .orange a {
    color: #c46a08;
    text-decoration: none;
    font-weight: bold;
  }

  .blog-news-section {
    margin: 0 -15px;
  }
  .blog-news-section .news {
    margin-bottom: 20px;
    border-bottom: 1px solid #b3b3b3;
  }

  #accordion {
    margin-bottom: 5px;
  }

  .news h3, .news .search_blog .title, .search_blog .news .title {
    color: #263248;
  }

  .news ul li p {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    padding-bottom: 0;
  }

  #mobile-nav form {
    position: relative;
  }

  #mobile-nav form input[type=search] {
    border: none;
    padding: 4px 0 4px 8px;
    display: block;
    width: 80%;
    margin: 15px auto;
  }

  #mobile-nav .fa-search {
    position: absolute;
    top: 5px;
    right: 11%;
    font-size: 15px;
    color: #999;
  }

  #mobile-nav .dropdown-menu,
.sub-menu {
    display: block;
    background: none;
    position: relative;
  }

  .pagination {
    width: 100%;
  }
}
.inner_page {
  width: 100%;
  float: left;
}
.inner_page .content-inner {
  height: auto !important;
}

@-moz-document url-prefix() {
  .flexslider {
    float: left;
    width: 100%;
  }
}
@-moz-document url-prefix() {
  .flexslider ul#accordion {
    margin-top: 0;
  }

  .events-list-block ul li {
    display: inline-block;
  }
}
@media screen and (min-width: 480px) and (max-width: 767px) {
  .flexslider {
    margin: 5px 0 0 0;
  }
  .flexslider ul#accordion {
    max-height: 250px;
  }

  .flex-viewport {
    max-height: 235px;
  }

  .video_lightbox_anchor_image {
    max-height: 289px;
  }

  #accordion .title-overlay {
    bottom: 10px;
  }

  .img-responsive {
    margin-bottom: 7px;
  }

  .content-inner {
    height: auto !important;
  }

  #mobile-nav form input[type=text],
#mobile-nav form input[type=search] {
    height: 30px;
    width: 90%;
    padding: 0 5px;
    color: #000;
    display: block;
    margin: 0 auto;
  }

  #mobile-nav .search-form input[type=submit] {
    right: 20px;
    top: 5px;
  }

  footer h4 {
    margin: 10px 0 !important;
  }

  .inner-photo-highlight {
    background-size: 100%;
    margin: 0 auto;
  }

  body {
    background-image: none;
  }

  .inner-photo-highlight {
    height: auto;
  }

  footer input[type=text],
footer input[type=email],
footer input[type=submit],
footer textarea {
    color: #999;
  }

  footer input[type=submit] {
    color: #fff;
  }

  .events-list-block ul li a {
    width: 75%;
    float: left;
    text-align: left;
  }
  .events-list-block ul li p {
    width: 75%;
    float: left;
    text-align: left;
  }

  .sidebar aside ul li {
    display: inline-block;
  }
}
@media screen and (min-width: 240px) and (max-width: 479px) {
  .flexslider {
    margin: 5px 0 0 0;
  }
  .flexslider ul#accordion {
    max-height: 250px;
  }

  .flex-viewport {
    max-height: 235px;
  }

  .video_lightbox_anchor_image {
    max-height: 186px;
  }

  #accordion .title-overlay {
    bottom: 10px;
  }

  .img-responsive {
    margin-bottom: 10px;
  }

  .content-inner {
    height: auto !important;
  }

  #mobile-nav form input[type=text],
#mobile-nav form input[type=search] {
    height: 30px;
    width: 90%;
    padding: 0 5px;
    color: #000;
    display: block;
    margin: 0 auto;
  }

  #mobile-nav .search-form input[type=submit] {
    right: 13px;
    top: 6px;
  }

  footer h4 {
    margin: 10px 0 !important;
  }

  .inner-photo-highlight {
    background-size: 100%;
    margin: 0 auto;
  }

  body {
    background-image: none;
  }

  .inner-photo-highlight {
    height: auto;
  }

  footer input[type=text],
footer input[type=email],
footer input[type=submit],
footer textarea {
    color: #999;
  }

  footer input[type=submit] {
    color: #fff;
  }

  .events-list-block ul li a {
    width: 78%;
    float: left;
    text-align: left;
  }

  .events-list-block ul li p {
    width: 78%;
    float: left;
    text-align: left;
  }
}
.post-list-block ul li,
.events-list-block ul li {
  padding-left: 0 !important;
}

html body div#site-wrapper div#site-canvas div.container div.row div.sidebar.col-xs-12.hidden-sm.col-md-3 aside div.post-list-block.block ul li a strong {
  font-weight: normal;
}

html body div#site-wrapper div#site-canvas div.container div.row div.sidebar.col-xs-12.hidden-sm.col-md-3 aside div.child-pages-block.block ul li.page_item:before {
  left: 20px;
}

aside div.post-list-block.block ul {
  margin-left: 15px;
}

aside div.post-list-block ul li:before {
  left: 30px;
}

.past-aals-events h4 {
  margin-top: 2px;
  margin-bottom: 5px;
}
.past-aals-events p {
  padding-top: 5px;
  padding-bottom: 0;
}

.tml {
  margin: 0 auto;
  width: 500px;
}
.tml .tml-checkbox + .tml-label,
.tml .tml-label {
  display: flex;
}

.news-item {
  width: 45%;
  margin-right: 5%;
  margin-bottom: 5%;
  float: left;
}

@media only screen and (max-width: 568px) {
  .news-item {
    width: 100%;
  }
}
@media only screen and (max-width: 479px) {
  .pagination .pages {
    display: none;
  }
}
@media (min-width: 361px) and (max-width: 767px) {
  .vision-tabs-vertical_arrow {
    left: 27% !important;
  }

  .vision-tabs-vertical dd {
    width: 68%;
  }
}
@media (min-width: 320px) and (max-width: 360px) {
  .vision-tabs-vertical_arrow {
    left: 27% !important;
  }

  .vision-tabs-vertical dd {
    width: 68%;
  }
}
@media (min-width: 768px) and (max-width: 800px) {
  .vision-tabs-vertical_arrow {
    left: 19.8% !important;
  }

  .vision-tabs-vertical dd {
    width: 77%;
  }
}
.page-container {
  padding: 30px 0;
  min-height: 200px;
  float: left;
  width: 100%;
}

.main-content {
  padding-bottom: 20px;
}

.main-container {
  padding-top: 30px;
  min-height: 535px;
}

.vision-tabs-vertical_arrow {
  height: 34px;
}

.tml-messages li::before {
  display: none;
}

.panel {
  border: unset;
  box-shadow: unset;
}
.panel .panel-heading {
  background-color: #fff;
  background-image: linear-gradient(to bottom, #fff, #EFEFEF);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#EFEFEF));
  background-image: -webkit-linear-gradient(top, #fff, #EFEFEF);
  background-image: -moz-linear-gradient(top, #fff, #EFEFEF);
  background-image: -webkit-linear-gradient(top, #fff, #EFEFEF);
  background-image: -o-linear-gradient(top, #fff, #EFEFEF);
  border: 1px solid #e9e9e9;
  border-radius: 5px;
  padding: 10px 20px 10px 45px;
  position: relative;
}
.panel .panel-title > a {
  color: #88bbc8;
  display: block;
  font-size: 13px;
  width: 100%;
}
.panel .panel-title > a::before {
  content: "";
  font-family: FontAwesome;
  font-size: 14px;
  left: 15px;
  position: absolute;
  top: 12px;
}
.panel .panel-title > a.collapsed {
  color: initial;
}
.panel .panel-title > a.collapsed::before {
  content: "";
}
.panel .panel-title > a:hover {
  text-decoration: unset;
}
@media (min-width: 961px) {
  .panel {
    max-width: 80%;
  }
  .panel .panel-heading {
    margin-right: 1rem;
  }
}

.panel-group .panel .panel-collapse .panel-body {
  border: unset;
}

.nav-tabs {
  border: 0;
}
.nav-tabs > li {
  border-bottom: 1px solid #ededed;
  font-size: 13px;
  font-weight: 700;
  border-bottom: 1px solid #ededed;
}
.nav-tabs > li > a {
  border: none;
  color: #333;
  padding: 2rem 1rem;
}
.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
  background-color: #f8f8f8;
  border: none;
  color: #88bbc8;
}
.nav-tabs + .tab-content {
  padding: 3rem 2rem 4rem;
  width: 100%;
}
.nav-tabs.vertical {
  background: #f8f8f8;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  vertical-align: top;
}
.nav-tabs.vertical > li {
  flex: 1;
  text-align: center;
  padding-left: 0;
}
.nav-tabs.vertical > li::before {
  display: none;
}
.nav-tabs.vertical > li.active::after {
  bottom: -1px;
  color: #fff;
  content: "";
  filter: drop-shadow(0px -1px 1px #c3c3c3);
  font-family: FontAwesome;
  font-size: 5rem;
  left: 32%;
  position: absolute;
}
.nav-tabs.vertical + .tab-content {
  display: inline-block;
  box-shadow: 0 3px 8px #c3c3c3;
}
@media (min-width: 961px) {
  .nav-tabs.vertical {
    box-shadow: -3px 3px 8px -3px #c3c3c3;
    display: inline-flex;
    flex-direction: column;
    flex-wrap: nowrap;
    max-width: 25%;
    padding-top: 1rem;
  }
  .nav-tabs.vertical > li {
    text-align: left;
  }
  .nav-tabs.vertical > li.active::after {
    content: "";
    filter: drop-shadow(-2px 0px 1px #c3c3c3);
    left: unset;
    right: -1px;
    top: 20px;
  }
  .nav-tabs.vertical > li > a {
    padding: 1.75rem 2.5rem;
  }
  .nav-tabs.vertical + .tab-content {
    width: 75%;
  }
}

/*# sourceMappingURL=style.css.map */
