/*
** TLC Primary Care CSS - Ver 1.01
** -------------------------------
*/

/*
** General
*/

html,
body {
  font-family: 'futura-pt', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  color: #45555f;
  background-color: #223642;
}

#body-inner {
  background-color: #fff;
}

@media (min-width: 992px) {
  #body-inner {
    padding-top: 0 !important;
  }
}

html.drawer-open body {
  overflow: hidden;
}

.page-overlay {
  z-index: 1;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  visibility: hidden;
  cursor: pointer;
  -webkit-transition: opacity 300ms cubic-bezier(0.19, 1, 0.22, 1), visibility 300ms cubic-bezier(0.19, 1, 0.22, 1);
  transition: opacity 300ms cubic-bezier(0.19, 1, 0.22, 1), visibility 300ms cubic-bezier(0.19, 1, 0.22, 1);
  will-change: opacity, visibility;
  background-color: rgba(34, 54, 66, 0.7);
}

html.drawer-open .page-overlay,
body.network-menu-open .page-overlay,
body.service-finder-open .page-overlay {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  visibility: visible;
}

hr {
  margin-top: 2.5em;
  margin-bottom: 2.5em;
  border-color: #f0efed;
}

hr.hr-sm {
  margin-top: 1.25em;
  margin-bottom: 1.25em;
}

.block {
  display: block;
}

.prepend {
  margin-right: 0.938em;
}

.prepend-sm {
  margin-right: 0.625em;
}

.append {
  margin-left: 0.938em;
}

.append-sm {
  margin-left: 0.625em;
}

.custom-container {
  max-width: 1500px;
  margin: 0 auto;
}

.relative {
  position: relative;
}

.margin-top-auto {
  margin-top: auto;
}

.caption-min-height {
  min-height: 117px;
}

/* Flex */

.flex-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.flex-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}


@media (min-width: 768px) {
  .flex-row-reverse-sm {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

.no-wrap {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

@media (min-width: 768px) {
  .no-wrap-sm {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}

.justify-between {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.justify-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.justify-start {
  -webkit-box-pack: start;
    -ms-flex-pack: start;
      justify-content: start;
}

.items-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
              -ms-grid-row-align: center;
          align-items: center;
}

.items-stretch {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
              -ms-grid-row-align: stretch;
          align-items: stretch;
}

.items-baseline {
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
              -ms-grid-row-align: baseline;
          align-items: baseline;
}

.items-end {
	-webkit-box-align: end;
	    -ms-flex-align: end;
	            -ms-grid-row-align: flex-end;
	        align-items: flex-end
}

.flex-grow {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

@media (min-width: 992px) {
  .flex-grow-md {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
}

.flex-basis-100p,
.flex-basis-50p-xs,
.flex-basis-25p-sm,
.flex-basis-35p-sm,
.flex-basis-40p-sm,
.flex-basis-50p-sm,
.flex-basis-60p-sm,
.flex-basis-65p-sm,
.flex-basis-75p-sm,
.flex-basis-25p-md,
.flex-basis-35p-md,
.flex-basis-40p-md,
.flex-basis-60p-md,
.flex-basis-65p-md,
.flex-basis-75p-md,
.flex-basis-100p-md,
.flex-basis-25p-lg,
.flex-basis-50p-lg,
.flex-basis-75p-lg {
  width: 100%;
}

@media (min-width: 481px) {
  .flex-basis-50p-xs {
    width: 50%;
  }
}

@media (min-width: 768px) {
  .flex-basis-25p-sm {
    width: 25%;
  }
  .flex-basis-35p-sm {
    width: 35%;
  }
  .flex-basis-40p-sm {
    width: 40%;
  }
  .flex-basis-50p-sm {
    width: 50%;
  }
  .flex-basis-60p-sm {
    width: 60%;
  }
  .flex-basis-65p-sm {
    width: 65%;
  }
  .flex-basis-75p-sm {
    width: 75%;
  }
}

@media (min-width: 992px) {
  .flex-basis-25p-md {
    width: 25%;
  }
  .flex-basis-35p-md {
    width: 35%;
  }
  .flex-basis-40p-md {
    width: 40%;
  }
  .flex-basis-60p-md {
    width: 60%;
  }
  .flex-basis-65p-md {
    width: 65%;
  }
  .flex-basis-75p-md {
    width: 75%;
  }
  .flex-basis-100p-md {
    width: 100%;
  }
}

@media (min-width: 1200px) {
  .flex-basis-25p-lg {
    width: 25%;
  }
  .flex-basis-50p-lg {
    width: 50%;
  }
  .flex-basis-75p-lg {
    width: 75%;
  }
}

/* Columns */

.column-2 {
  -webkit-columns: 2;
     -moz-columns: 2;
          columns: 2;
}

.column-2-xs {
  -webkit-column-count: 1;
     -moz-column-count: 1;
          column-count: 1;
  -webkit-column-gap: 1.876em;
     -moz-column-gap: 1.876em;
          column-gap: 1.876em;
}

@media (min-width: 481px) {
  .column-2-xs {
    -webkit-column-count: 2;
       -moz-column-count: 2;
            column-count: 2;
  }
}

ul.column-2,
ul.column-2-xs {
  margin-left: -17px;
  list-style-position: inside;
}

ul.list-unstyled.column-2,
ul.list-unstyled.column-2-xs {
  margin-left: 0;
  list-style-position: initial;
}

/*
** Lists
*/

.list-inline.list-stripped {
  margin-bottom: 0;
}

.list-inline.list-stripped>li {
  padding: 0;
}

/* Featured List */

.featured-list {
  margin: 1.876em 0;
}

.featured-list li {
  margin-bottom: 0.625em;
}

.featured-list.more-space li {
  margin-bottom: 1.25em;
}

.featured-list.first-element {
  margin-bottom: 0;
}

.featured-list.last-element {
  margin-bottom: 0;
}

.featured-list li:last-child {
  margin-bottom: 0;
}

/* Contact List */
.contact-list li .color-grey > a {
  color: #45555f!important;
}

.contact-list li .color-white > a {
  color: #fff!important;
}

.contact-list li .weight-thin > a {
  font-weight: 400!important;
}


/*
** Icons
*/

.icon {
  min-width: 1em;
  font-size: inherit;
  text-align: center;
  vertical-align: middle;
}

.icon-lg {
  font-size: 1.5em;
}

/*
** Typography
*/

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  font-weight: 500;
  line-height: 1.2;
  color: #223642;
}

h1,
.h1 {
  margin: 0.938em 0 0.469em;
  font-size: 2em;
}

h2,
.h2 {
  margin: 1.072em 0 0.536em;
  font-size: 1.75em;
}

h3,
.h3 {
  margin: 1.25em 0 0.625em;
  font-size: 1.5em;
}

h4,
.h4 {
  margin: 1.25em 0 0.75em;
  font-size: 1.25em;
}

h5,
.h5 {
  margin: 1.389em 0 0.833em;
  font-size: 1.125em;
}

h6,
.h6 {
  margin: 1.563em 0 0.938em;
  font-size: 1em;
}

.h1 .small,
.h1 small,
.h2 .small,
.h2 small,
.h3 .small,
.h3 small,
.h4 .small,
.h4 small,
.h5 .small,
.h5 small,
.h6 .small,
.h6 small,
h1 .small,
h1 small,
h2 .small,
h2 small,
h3 .small,
h3 small,
h4 .small,
h4 small,
h5 .small,
h5 small,
h6 .small,
h6 small {
  display: block;
  margin-top: 10px;
  margin-top: 10px;
  margin-top: 10px;
  margin-top: 0.625rem;
  font-weight: 500;
}

p {
  margin-bottom: 0.938em;
}

b,
strong {
  font-weight: 700;
}

address {
  margin-bottom: 0.625em;
  line-height: 1.4;
}

legend {
  margin: 1.25em 0 0.75em;
  border-bottom: 0;
  font-size: 1.25em;
  font-weight: 500;
  color: #223642;
}

blockquote {
  margin: 1.876em 0;
}

.word-break-all {
  word-break: break-all;
}

.white-space-nowrap {
  white-space: nowrap;
}

/*
** Links & Buttons
*/

a {
  font-weight: 500;
  color: #223642;
}

a:hover,
a:active,
a:focus {
  text-decoration: none;
}

a:hover,
a:active,
a:focus,
button:hover,
button:active,
button:focus,
.btn.active.focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn:active:focus,
.btn:focus {
  outline: 0;
}

a.color-white-transparent:hover,
a.color-white-transparent:active,
a.color-white-transparent:focus {
  color: #fff;
}

.btn {
  padding: 0.938em 1.875em;
  border-width: 0.125em;
  border-radius: 0.125em;
  -webkit-transition: all 150ms ease-in-out;
  transition: all 150ms ease-in-out;
  font-size: 1em;
  font-weight: 500;
  line-height: 1.4;
}

.btn.active,
.btn:active {
  box-shadow: none;
}

.btn-xs,
.btn-sm {
  font-size: 0.875em;
  font-weight: 500;
  padding-right: 0.625em;
  padding-left: 0.625em; 
}

.btn-xs {
  padding-top: 0.3em;
  padding-bottom: 0.3em; 
}

.btn-sm {
  padding-top: 0.625em;
  padding-bottom: 0.625em;
}

.btn-default {
  background-color: #fff;
}

.btn-default:hover,
.btn-default:active,
.btn-default:focus,
.btn-default.active.focus,
.btn-default.active:focus,
.btn-default.active:hover,
.btn-default:active.focus,
.btn-default:active:focus,
.btn-default:active:hover,
.open>.btn-default.dropdown-toggle.focus,
.open>.btn-default.dropdown-toggle:focus,
.open>.btn-default.dropdown-toggle:hover {
  color: #fff;
}

.btn-primary {
  color: #fff;
}

.btn-primary:hover,
.btn-primary:active,
.btn-primary:focus {
  color: #223642;
}

.btn-primary.invert {
  border-color: #223642;
  color: #fff;
  background-color: #223642;
}

.btn-primary.invert:hover,
.btn-primary.invert:active,
.btn-primary.invert:focus {
  border-color: #223642;
  background-color: #223642;
}

.btn-outline {
  background-color: transparent;
}

.btn-outline:hover,
.btn-outline:active,
.btn-outline:focus {
  background-color: transparent;
}

.btn-link {
  color: #223642;
}

.btn-link.invert {
  color: #fff;
}

.btn-link:hover,
.btn-link:active,
.btn-link:focus {
  text-decoration: none;
}

.btn-left {
  padding-left: 0;
}

.btn-right {
  padding-right: 0;
}

.btn>.icon {
  vertical-align: middle;
}

span>.icon-chevron-down,
span>.icon-chevron-up,
.btn>.icon-chevron-down,
.btn>.icon-chevron-up {
  vertical-align: baseline;
}

.btn-link>.icon+span {
  margin-left: 0.938em;
  display: inline-block;
  vertical-align: middle;
}

/* Button Groups */

.btn-group>.btn {
  float: none;
}

.btn-group-stacked {}

@media (min-width: 425px) {
  .btn-group-inline-sm {}
  .btn-group-inline-sm>.btn {
    display: inline-block;
    width: auto;
    vertical-align: middle;
    margin-top: 0;
  }
}

.btn-group.open .dropdown-toggle {
  box-shadow: none;
}

.dropdown-menu {
  right: 0;
  margin: -0.125em 0 0;
  border: 0;
  border-radius: 0;
  border-bottom-right-radius: 0.125em;
  border-bottom-left-radius: 0.125em;
  padding: 0;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  font-size: 1em;
  color: #fff;
}

.dropdown-menu>li {
  border-top: 1px solid rgba(0,0,0,0.1);
}

.dropdown-menu>li>a {
  padding: 0.938em;
  font-weight: 500;
  line-height: 1.4;
  color: #fff;
  white-space: normal;
}

.dropdown-menu>li>a:hover,
.dropdown-menu>li>a:active,
.dropdown-menu>li>a:focus {
  color: #223642;
  background-color: transparent;
}

a[aria-expanded='true'] .icon-chevron-down:before,
div[aria-expanded='true'] .icon-chevron-down:before,
button[aria-expanded='true'] .icon-chevron-down:before {
  content: '\f077';
}

a[aria-expanded='true'] .icon-caret-down:before,
div[aria-expanded='true'] .icon-caret-down:before,
button[aria-expanded='true'] .icon-caret-down:before {
  content: '\f0d8';
}

abbr[data-original-title],
abbr[title] {
  border-bottom: 1px dotted currentColor;
  text-decoration: none;
}

/*
** Nav
*/

.nav>li>a:hover,
.nav>li>a:active,
.nav>li>a:focus {
  background-color: transparent;
}

/* Header General */

header .nav .nav>li>a,
header .nav .nav>li>div>a {
  font-size: 0.875em;
}

/* Main Nav */

#main-nav .nav>li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  padding: 1.875em 0;
}

#main-nav .nav>li+li {
  border-left: 1px solid #f0efed;
}

#main-nav .nav>li>a {
  -ms-flex-item-align: center;
      align-self: center;
  margin: 0 0.625em;
  border-bottom: 5px solid transparent;
  padding: 1.25em 0;
  text-align: center;
}

@media (min-width: 1200px) {
  #main-nav .nav>li>a {
    margin: 0 1.25em;
  }
}

#main-nav .nav .nav {
  z-index: 1;
  position: absolute;
  min-width: 180px;
  top: 100%;
  left: 0;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  visibility: hidden;
  border-top: 4px solid transparent;
  padding: 0.625em;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
  -webkit-transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out;
  background-color: #45555f;
}

#main-nav .nav>li:last-child>.nav {
  left: auto;
  right: 0;
}

#main-nav .nav>li:hover>.nav,
#main-nav .nav>li:active>.nav,
#main-nav .nav>li:focus>.nav {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  visibility: visible;
}

#main-nav .nav .nav>li {
  display: block;
  padding: 0;
  background-color: #45555f;
}

#main-nav .nav .nav>li.active,
#main-nav .nav .nav>li:hover,
#main-nav .nav .nav>li:active,
#main-nav .nav .nav>li:focus {
  background-color: #223642;
}

#main-nav .nav .nav>li+li {
  border-left: none;
}

#main-nav .nav .nav>li>a {
  margin: 0;
  border-bottom: 0;
  padding: 0.938em;
  text-align: left;
  color: #fff;
}

/* Drawer Nav */

#drawer-nav .nav>li {
  background-color: #45555f;
}

#drawer-nav .nav>li {
  border-bottom: 2px solid rgba(34, 54, 66, 0.5);
}

#drawer-nav .nav>li.open,
#drawer-nav .nav>li.active,
#drawer-nav .nav>li:hover,
#drawer-nav .nav>li:active,
#drawer-nav .nav>li:focus {
  background-color: #223642;
}

#drawer-nav .nav>li>a,
#drawer-nav .nav>li>div>a {
  padding: 0.938em;
  color: #fff;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
}

#drawer-nav .nav .open>a,
#drawer-nav .nav .open>a:focus,
#drawer-nav .nav .open>a:hover {
  border-color: transparent;
  background-color: transparent;
}

#drawer-nav .nav .nav {
  padding: 0 0 0.938em 0.938em;
}

#drawer-nav .nav .nav,
#drawer-nav .nav .nav>li {
  background-color: #223642;
}

#drawer-nav .nav .nav>li.active,
#drawer-nav .nav .nav>li:hover,
#drawer-nav .nav .nav>li:active,
#drawer-nav .nav .nav>li:focus {
  background-color: #45555f;
}

/*
** Inputs
*/

/* General Inputs */

.form-group {
  margin-bottom: 1.25em;
}

label {
  margin-bottom: 0.625em;
  font-size: 1em;
  font-weight: 500;
  line-height: 1.4;
}

label>span {
  display: inline-block;
}

label>span.prepend {
  margin-right: 0.312em;
}

label>span.append {
  margin-left: 0.312em;
}

.form-control,
.input-group>.input-group-addon {
  border: 0.125em solid #f0efed;
  border-radius: 0.125em;
  box-shadow: none;
  font-size: 1em;
  line-height: 1;
  height: 38px;
  color: #45555f;
  background-color: #fff;
}

.form-control::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: rgba(69, 85, 95, 0.6);
}

.form-control::-moz-placeholder {
  /* Firefox 19+ */
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  color: rgba(69, 85, 95, 0.6);
}

.form-control:-ms-input-placeholder {
  /* IE 10+ */
  color: rgba(69, 85, 95, 0.6);
}

.form-control:-moz-placeholder {
  /* Firefox 18- */
  color: rgba(69, 85, 95, 0.6);
}

.form-control:focus {
  outline: none;
  box-shadow: none;
}

/* Inverted Inputs */

form.invert .form-control,
form.invert .input-group>.input-group-addon {
  border-color: #fff;
}

/* Basic Inputs */

form.basic .form-control,
form.basic .input-group>.input-group-addon {
  border-color: transparent;
  background-color: transparent;
}

/* Inverted & Basic Inputs */

form.basic.invert .form-control,
form.basic.invert .input-group>.input-group-addon {
  color: #fff;
}

form.basic.invert .form-control::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: rgba(255, 255, 255, 0.8);
}

form.basic.invert .form-control::-moz-placeholder {
  /* Firefox 19+ */
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  color: rgba(255, 255, 255, 0.8);
}

form.basic.invert .form-control:-ms-input-placeholder {
  /* IE 10+ */
  color: rgba(255, 255, 255, 0.8);
}

form.basic.invert .form-control:-moz-placeholder {
  /* Firefox 18- */
  color: rgba(255, 255, 255, 0.8);
}

/* Form Inline */

.form-inline .form-group+.form-group {
  margin-left: 1.25em;
  border-left: 0.125em solid #223642;
  padding-left: 1.25em;
}

.form-inline .form-group label {
  margin-right: 1.25em;
}

/* Form Inline Inverted */

.form-inline.invert .form-group+.form-group {
  border-color: #fff;
}

/* Input Sizing */

select.input-sm {
  height: 38px;
  line-height: 38px;
}

/* Form Dialog */

.alert {
  border-width: 0.125em;
  border-radius: 0.125em;
}

.alert-info {
  box-shadow: none;
  background-color: #f0efed;
  border: none;
  color: #45555f;
}

.alert-success {
  color: #fff;
  border-color: #439539;
  background-color: #439539;
}
.alert-success a {
  color: #fff;
  text-decoration: underline !important;
}
.alert-success a:hover {
  color: #223642;
}
.has-error .form-control,
.has-error .form-control:focus {
  box-shadow: none;
  border-color: #c41230;
}

.help-block {
  margin: 0;
  border-radius: 0.125em;
  padding: 0.625em 1.25em;
  color: #45555f;
  background-color: #f0efed;
}

.form-control+.help-block {
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}

/*
** Images & Thumbnails
*/

.bg-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.aspect-16-9,
.aspect-16-9-sm-max {
  padding-top: 56.25%;
}

@media (min-width: 992px) {
  .aspect-16-9-sm-max {
    padding-top: 0;
  }
}

/* Thumbnails */

.thumbnail {
  margin-bottom: 0;
  border: none;
  border-radius: 0.125em;
  padding: 0;
  line-height: 1.4;
  background-color: transparent;
}

.thumbnail .link-image {
  overflow: hidden;
}

.thumbnail .caption {
  padding: 0.938em;
  color: currentColor;
}

.thumbnail .caption .caption-title {
  color: currentColor;
}

/* Thumbnail Horizontal */

.thumbnail-horizontal {
  margin: 3.75em 0;
}

.thumbnail-horizontal+.thumbnail-horizontal {
  margin-top: 3.75em;
  border-top: 1px solid #f0efed;
  padding-top: 3.75em;
}

.thumbnail-horizontal .caption {
  padding: 0;
  padding-top: 1.875em;
}

@media (min-width: 992px) {
  .thumbnail-horizontal .caption {
    padding-top: 0;
    padding-left: 3.75em;
  }
}

.thumbnail-horizontal .caption>div>*:last-child {
  margin-bottom: 0;
}

/* Thumbnail Overrides */

.thumbnail-list.bg-navy .thumbnail .caption {
  color: #45555f;
  background-color: #fff;
}

.thumbnail-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  margin: 0 -0.5em;
}

.thumbnail-grid>.thumbnail-grid-item {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 0;
          flex: 0 1 0;
  margin: 0 0 2em 0;
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
}

.thumbnail-grid>.thumbnail-grid-item>.thumbnail {
  margin: 0 0.5em;
  height: 100%;
  border: 1px solid #f0efed;
}

.thumbnail-grid .thumbnail>img {
  width: 100%;
}

@media (min-width: 425px) {
  .thumbnail-grid>.thumbnail-grid-item {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
  }
}

@media (min-width: 768px) {
  .thumbnail-grid>.thumbnail-grid-item {
    -ms-flex-preferred-size: 33.333333%;
        flex-basis: 33.333333%;
  }
}

/*
** Well
*/

.well {
  margin: 1.25em 0;
  border: none;
  border-radius: 0.125em;
  padding: 1.25em;
  box-shadow: none;
  background-color: #f0efed;
}

/*
** Panels & Accordions
*/

/* Panel Group */

.panel-group {
  margin-bottom: 1.875em;
}

.panel-group .panel {
  border: none;
  border-bottom: 0.125em solid #f0efed;
  border-radius: 0;
  box-shadow: none;
}

.panel-group .panel+.panel {
  margin-top: 0;
}

/* Panel Default */

.panel-group .panel>.panel-heading {
  border-bottom: none;
  border-radius: 0;
  padding: 0;
  color: #223642;
  background-color: #fff;
}

.panel-group .panel .panel-title {
  margin: 0;
}

.panel-group .panel .panel-title>a {
  padding: 1.25em 0;
  cursor: pointer;
}

.panel-group .panel-body {
  margin-bottom: 1.25em;
  border-left: 0.25em solid transparent;
  padding: 0 1.25em;
}

.panel-group .panel-heading+.panel-collapse>.list-group,
.panel-group .panel-heading+.panel-collapse>.panel-body,
.panel-default>.panel-heading+.panel-collapse>.panel-body {
  border-top: 0;
}

.panel-body>*:last-child {
  margin-bottom: 0;
}

[data-toggle='collapse'] {
  cursor: pointer;
}

.panel-body .col-sm-6 > h4:first-child {
  margin-top:0;
}

/**
 * Panel default
 */

.panel,
.panel>.panel-heading {
  border-radius: 0;
}

.panel-default {
  box-shadow: none;
}

.panel-default>.panel-heading {
  background-color: #fff;
  border-bottom: none;
}

.panel-heading[data-toggle='collapse'] a {
  color: currentColor;
}

.panel-heading[data-toggle='collapse']:hover {
  background-color: #439539;
  color: white;
}

/**
 * Labels
 */

.label {
  border-radius: 0.125em;
}

.label-default {
  background-color: #45555f;
}

.label-lg {
  font-size: 1em;
  padding: 0.6em;
}

/*
** Form Tabs
*/

/* Form Wizard */

.form-wizard-steps {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  margin: 2.5em 0;
  border-bottom: none;
}

@media (min-width: 768px) {
  .form-wizard-steps {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

@media (min-width: 768px) {
  .form-wizard-steps>li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 1%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    border-bottom: 5px solid #f0efed;
  }
}

.form-wizard-steps>li>a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.625em;
  color: #45555f;
  background-color: #f0efed;
  border-radius: 0;
}

.form-wizard-steps>li {
  opacity: 0.5;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  cursor: not-allowed;
}

.form-wizard-steps>li.active,
.form-wizard-steps>li.valid,
.form-wizard-steps>li.invalid {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  cursor: pointer;
  color: #223642;
  background-color: #e6e6e6;
}

.form-wizard-steps>li.active {
  border-bottom-color: #45555f;
}

.form-wizard-steps>li.invalid .step-number {
  background-color: #c41230;
  color: white;
}

@media (min-width: 768px) {
  .form-wizard-steps>li>a {
    height: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
  }
}

.form-wizard-steps .step-number {
  display: inline-block;
  width: 1.624em;
  line-height: 1.624em;
  margin-right: 0.625em;
  border-radius: 100%;
  text-align: center;
}

.form-wizard-steps .step-number {
  background-color: #45555f;
  color: white;
}

@media (min-width: 768px) {
  .form-wizard-steps .step-number {
    margin-right: 0;
    margin-bottom: 0.625em;
  }
}

.form-wizard-controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.form-wizard-controls>.form-wizard-prev {
  -ms-flex-item-align: start;
      align-self: flex-start;
}

.form-wizard-controls>.form-wizard-next {
  -ms-flex-item-align: end;
      align-self: flex-end;
}

/*
** Breadcrumb
*/

.breadcrumb {
  margin-bottom: 0;
  border-radius: 0;
  padding: 0.325em;
}

.breadcrumb>li {
  padding: 0.625em;
}

.breadcrumb>li+li:before {
  display: none;
}

.breadcrumb>li:after {
  content: '|';
  display: inline-block;
  padding-left: 1.25em;
  vertical-align: middle;
}

.breadcrumb>li:last-child:after {
  display: none;
}

.breadcrumb>li>a {
  line-height: 0;
}

.breadcrumb>li>a,
.breadcrumb>li>span {
  display: inline-block;
  vertical-align: middle;
}

/**
 * Articles
 */

.article-image {
  margin-bottom: 2em;
}

@media (min-width: 768px) {
  .article-image {
    float: left;
    width: 60%;
    margin-right: 2em;
  }
}

/*
** CTA
*/

.cta-small {
  padding: 1.875em 0;
}

.cta-large {
  padding: 3.75em 0;
}

/* CTA Fancy */

@media (min-width: 481px) {
  .cta-fancy {
    height: 400px;
  }
}

.cta-fancy .bg-primary-transparent {
  background-position: right center;
  background-repeat: no-repeat;
  background-color: #45555f;
}

@media (min-width: 481px) {
  .cta-fancy .bg-primary-transparent {
    background-color: transparent;
    background-image: -webkit-linear-gradient( left, #45555f 45%, rgba(255, 255, 255, 0) 75%);
    background-image: linear-gradient( to right, #45555f 45%, rgba(255, 255, 255, 0) 75%);
  }

  .cta-fancy.style-block .bg-primary-transparent {
    background-image: -webkit-linear-gradient( left, #45555f 65%, rgba(255, 255, 255, 0) 65%);
    background-image: linear-gradient( to right, #45555f 65%, rgba(255, 255, 255, 0) 65%);
  }
}

@media (min-width: 768px) {
  .cta-fancy.style-block .bg-primary-transparent {
    background-image: -webkit-linear-gradient( left, #45555f 55%, rgba(255, 255, 255, 0) 55%);
    background-image: linear-gradient( to right, #45555f 55%, rgba(255, 255, 255, 0) 55%);
  }
}

@media (min-width: 992px) {
  .cta-fancy .bg-primary-transparent {
    background-image: -webkit-linear-gradient( left, #45555f 30%, rgba(255, 255, 255, 0) 60%);
    background-image: linear-gradient( to right, #45555f 30%, rgba(255, 255, 255, 0) 60%);
  }
  
  .cta-fancy.style-block .bg-primary-transparent {
    background-image: -webkit-linear-gradient( left, #45555f 400px, rgba(255, 255, 255, 0) 400px);
    background-image: linear-gradient( to right, #45555f 400px, rgba(255, 255, 255, 0) 400px);
  }
}

@media (max-width: 480px) {
  .cta-fancy .flex-column {
    -webkit-box-align: center;
        -ms-flex-align: center;
                -ms-grid-row-align: center;
            align-items: center;
  }
  .cta-fancy .cta-inner {
    padding: 2em 0;
    text-align: center;
  }
}

.cta-fancy .caption {
  max-width: 100%;
}

@media (min-width: 481px) {
  .cta-fancy .caption {
    width: 65%;
    max-width: 400px;
  }
}

/* CTA Thumbnails */

.cta-thumbnails .inner-wrapper {
  position: relative;
}

@media (min-width: 1400px) {
  .cta-thumbnails .inner-wrapper {
    padding: 0;
  }
}

.cta-thumbnails .swiper-container {
  padding: 0;
}

.cta-thumbnails .swiper-slide {
  height: auto;
}

.cta-thumbnails .swiper-slide .caption {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.cta-thumbnails .swiper-slide .caption > *:first-child {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.cta-thumbnails .swiper-button {
  z-index: 0;
  position: absolute;
  width: 2.5em;
  top: 0;
  bottom: 0;
  cursor: pointer;
  background-color: transparent;
}

.cta-thumbnails .swiper-button.swiper-button-disabled {
  display: none;
}

.cta-thumbnails.bg-navy .swiper-button {
  color: #fff;
  background-color: transparent;
}

.cta-thumbnails .swiper-button.prev {
  left: 0;
}

.cta-thumbnails .swiper-button.next {
  right: 0;
}

.cta-thumbnails .swiper-button>.icon {
  position: absolute;
  top: 50%;
  opacity: 0.5;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  visibility: visible;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 300ms cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 300ms cubic-bezier(0.19, 1, 0.22, 1);
  text-align: center;
}

.cta-thumbnails .swiper-button.prev>.icon {
  left: 0;
}

.cta-thumbnails .swiper-button.next>.icon {
  right: 0;
}

@media (min-width: 1400px) {
  .cta-thumbnails .swiper-button>.icon {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    visibility: hidden;
  }
  .cta-thumbnails:hover .swiper-button>.icon {
    opacity: 0.5;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
    visibility: visible;
  }
  .cta-thumbnails .swiper-button.prev>.icon {
    left: 50%;
  }
  .cta-thumbnails .swiper-button.next>.icon {
    right: 50%;
  }
  .cta-thumbnails:hover .swiper-button.prev>.icon {
    left: 0;
  }
  .cta-thumbnails:hover .swiper-button.next>.icon {
    right: 0;
  }
}

.cta-thumbnails .swiper-button:hover>.icon,
.cta-thumbnails .swiper-button:active>.icon,
.cta-thumbnails .swiper-button:focus>.icon {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

/*
** Layout
*/

.first-element {
  margin-top: 0;
}

.last-element {
  margin-bottom: 0;
}

.height-100p {
  height: 100%;
}

@media (min-width: 992px) {
  .height-100p-md {
    height: 100%;
  }
}

.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
}

/*
** Colours
*/

.color-white {
  color: #fff;
}

.color-white-transparent {
  color: rgba(255, 255, 255, 0.7);
}

.color-navy {
  color: #223642;
}

.color-grey {
  color: #45555f;
}

.color-current {
  color: currentColor;
}

/* Backgrounds */

.bg-white {
  background-color: #fff;
}

.bg-navy {
  background-color: #223642;
}

.bg-light-navy {
  background-color: #45555f;
}

.bg-pattern,
.bg-pattern-gradient {
  background-image: url('../images/tlc-bg-pattern.svg');
  background-position: center;
  background-size: 140px;
}

@media (min-width: 768px) {
  .bg-pattern-gradient {
    background-image: -webkit-linear-gradient( top, rgba(34, 54, 66, 0) 0%, rgba(34, 54, 66, 0.99) 99%, rgba(34, 54, 66, 1) 100%), url('../images/tlc-bg-pattern.svg');
    background-image: linear-gradient( to bottom, rgba(34, 54, 66, 0) 0%, rgba(34, 54, 66, 0.99) 99%, rgba(34, 54, 66, 1) 100%), url('../images/tlc-bg-pattern.svg');
    background-position: bottom, center;
    background-repeat: repeat-x, repeat;
    background-size: 100%, 140px;
  }
}

/*
** Font Sizes
*/

.size-default {
  font-size: 1em;
}

.size-md {
  font-size: 1.5em;
}

.size-lg {
  font-size: 2em;
}

/*
** Font Weights
*/

.weight-thin {
  font-weight: 400;
}

.weight-medium {
  font-weight: 500;
}

.weight-heavy {
  font-weight: 700;
}

/*
** Header
*/

#main-header {
  z-index: 100;
  position: relative;
}

@media (max-width: 991px) {
  #main-header {
    z-index: 100;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
  }
}

/* Header Before */

@media (min-width: 768px) {
  #header-before {
    min-height: 52px;
  }
}

#header-utilities {
  padding-top: 0.3125rem;
  padding-bottom: 0.3125rem;
}

#header-utilities ul {
  margin-right: -0.625em;
}

#header-utilities #search-form {
  border-right: 0.125em solid #f0efed;
}

/* Header Main */

@media (max-width: 991px) {
  #main-logo a {
    height: 6em;

    padding: 0.938em;
    padding-left: 0;
  }

  #main-logo a .img-responsive {
    width: auto;
    height: 100%;
    max-height: 100%;
  }
}

@media (max-width: 767px) {
  #main-logo a {
    height: 4em;
  }
}
@media (min-width: 992px) {
  #header-main {
    border-bottom: 0;
  }
  #main-logo a {
    max-width: 250px;
    padding: 1.25em;
    padding-left: 0;
  }
  .site-warralily-gardens #main-logo a {
    max-width: 350px;
  }
}

#drawer-toggle {
  padding: 0.938em;
}

/* Header Drawer */

html.drawer-open #drawer-toggle .icon-bars:before {
  content: '\f00d';
}

#header-drawer {
  z-index: 99;
  position: fixed;
  overflow: auto;
  width: 80%;
  max-width: 400px;
  min-width: 250px;
  top: 0;
  bottom: 0;
  left: 0;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  -webkit-transition: -webkit-transform 300ms cubic-bezier(0.19, 1, 0.22, 1);
  transition: -webkit-transform 300ms cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 300ms cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 300ms cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 300ms cubic-bezier(0.19, 1, 0.22, 1);
  will-change: transform;
  background-color: #45555f;
}

html.drawer-open #header-drawer {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
}

#header-drawer .form-inline .form-group:last-child {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  #header-drawer .form-inline .input-group .input-group-addon,
  #header-drawer .form-inline .input-group .input-group-btn {
    width: 1%;
  }
}

#header-drawer .drawer-row {
  border-bottom: 2px solid #fff;
  padding: 0.938em;
}


/*
** Footer
*/

footer {
  padding: 1.875em 0;
}

#footer-main-left,
#footer-main-right {
  height: 100%;
}

@media (min-width: 768px) {
  footer {
    padding: 3.75em 0;
  }
  #footer-main-right {
    border-left: 1px solid #f0efed;
    padding-left: 1.875em;
  }
  #footer-main-left {
    padding-right: 1.875em;
  }
}

/*
** Main Content
*/

#main-content {
  margin: 2.5em 0;
}

/*
** Content
*/

/*@media (min-width: 768px) {
  #content {
    padding-right: 1.876em;
  }
}

@media (min-width: 1200px) {
  #content {
    padding-right: 2.5em;
  }
}*/

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

#content > ul > li + li {
  margin-top: 0.625em;
}

/*
** Sidebar
*/

#sidebar {
  margin-top: 2.5em;
  border-top: 4px solid #45555f;
  padding-top: 2.5em;
}

@media (min-width: 768px) {
  #sidebar {
    margin-top: 0;
    border-top: none;
    padding-top: 0;
    padding-left: 1.876em;
  }
}

/* Sidebar Module */

.sidebar-module+.sidebar-module {
  margin-top: 2.5em;
  border-top: 1px solid #f0efed;
  padding-top: 2.5em;
}

/*
** Hero
*/

@media (min-width: 992px) {
  #hero {
    display: block !important;
  }
}

#hero .swiper-container {
  z-index: 0;
}

#hero .inner-wrapper {
  z-index: 1;
  position: relative;
}

#hero .swiper-caption {
  padding: 0.938em;
  font-size: 0.875em;
  background-color: white;
}

@media (min-width: 768px) {
  #hero .swiper-caption {
    font-size: 1em;
    z-index: 1;
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    margin-left: auto;
    margin-right: auto;
    padding: 1.25em;
    background-color: rgba(255, 255, 255, 0.9);
  }
  #hero .swiper-caption.bigger {
    font-size: 1.3em;
  }
  #hero .swiper-caption.massive {
    font-size: 1.6em;
  }
}

/**
 * Swiper
 */

/* Swiper Pagination */

.swiper-pagination {
  position: static;
  margin: 0 auto;
  padding: 0.625em;
}

.swiper-pagination-bullet {
  width: 0.625em;
  height: 0.625em;
  margin: 0.625em;
  opacity: 0.6;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
  vertical-align: middle;
  box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.1);
  background-color: currentColor;
}

.swiper-pagination-bullet-active {
  width: 0.75em;
  height: 0.75em;
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  border-color: currentColor;
  background-color: currentColor;
}

/* Inverted Pagination */

.swiper-pagination.invert .swiper-pagination-bullet {
  background-color: rgba(255, 255, 255, 0.8);
}

.swiper-pagination.invert .swiper-pagination-bullet-active {
  background-color: #fff;
}

/* Hero */

#hero .swiper-pagination {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
}

@media (min-width: 768px) {
  #hero .swiper-pagination {
    padding: 1.25em;
  }
}

#hero .swiper-pagination-bullet {
  margin: 0 5px;
  background-color: rgba(255, 255, 255, 0.9);
}

#hero .swiper-pagination-bullet-active {
  background-color: #fff;
}

/* Banner Fancy */

.banner-fancy {
  background-color: #45555f;
}

@media (min-width: 481px) {
  .banner-fancy {
    background-color: transparent;
  }

  .banner-fancy .swiper-container-autoheight {
    height: 400px;
  }

  .banner-fancy .swiper-container-autoheight .swiper-wrapper {
    height: 100% !important;
  }

  .banner-fancy .swiper-container-autoheight .swiper-slide {
    height: 100%;
  }
}

.banner-fancy .swiper-pagination {
  padding: 0 2em 4em;
}

@media (min-width: 481px) {
  .banner-fancy .swiper-pagination {
    position: absolute;
    right: auto;
    bottom: 0;
    width: auto;
    padding: 2em;
    background-color: transparent;
  }
}


/**
 * Team Member Bio
 */

#content .team-member-bio.flex-wrap {
  margin: -0.938em;
}

#content .team-member-bio.flex-wrap > div {
  padding: 0.938em;
}

.team-member-bio img {
  background-color: #fafafa;
}

/* Team Member Locations */

.team-member-locations > h2 {
  padding: 0.938em;
  color: #fff;
  background-color: #223642;
}

.team-member-locations > .flex-wrap {
  padding-top: 1px;
  padding-left: 1px;
}

.team-member-locations > .flex-wrap > div {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  border: 1px solid #eee;
  padding: 1.876em 0.938em;
  margin-top: -1px;
  margin-left: -1px;
}

.team-member-locations .featured-list {
  margin-top: 0;
}


/**
 * Gallery
 */

.gallery {
  margin-bottom: 32px;
  margin-bottom: 32px;
  margin-bottom: 32px;
  margin-bottom: 2rem;
}

.gallery .offset-25p {
  margin-left: -25%;
}

@media (min-width: 482px) {
  .gallery .offset-33p-xs {
    margin-left: -33%;
  }
}

@media (min-width: 769px) {
  .gallery .offset-37p-sm {
    margin-left: -37%;
  }
}

@media (min-width: 993px) {
  .gallery .offset-40p-md {
    margin-left: -40%;
  }
}

.gallery-thumbnails .swiper-slide {
  cursor: pointer;
}

.gallery-thumbnails .swiper-slide > img {
  opacity: 0.7;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
  border-width: 4px;
  border-style: solid;
  border-color: transparent;
  -webkit-transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}

.gallery-thumbnails .swiper-slide-active > img {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  border-color: currentColor;
}

/* Swiper Return */

.gallery-thumbnails .swiper-return {
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border: none;
  padding: 0.625em;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  visibility: hidden;
  -webkit-transition: color 150ms ease-in-out, opacity 300ms ease-in-out, visibility 300ms ease-in-out;
  transition: color 150ms ease-in-out, opacity 300ms ease-in-out, visibility 300ms ease-in-out;
  color: rgba(255, 255, 255, 0.7);
  background-color: transparent;
}

.gallery-thumbnails .swiper-return:hover,
.gallery-thumbnails .swiper-return:active,
.gallery-thumbnails .swiper-return:focus {
  color: #fff;
}

.gallery-thumbnails .swiper-return.visible {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  visibility: visible;
}

.gallery-thumbnails .swiper-return > span {
  display: block;
}

/**
 * Pagination
 */

.pagination>li>a,
.pagination>li>span {
  background-color: white;
  color: #223642;
  border-width: 0.125em;
}

.pagination>li:first-child>a,
.pagination>li:first-child>span {
  border-top-left-radius: 0.125em;
  border-bottom-left-radius: 0.125em;
}

.pagination>li:last-child>a,
.pagination>li:last-child>span {
  border-top-right-radius: 0.125em;
  border-bottom-right-radius: 0.125em;
}

.pagination>.active>a,
.pagination>.active>a:focus,
.pagination>.active>a:hover,
.pagination>.active>span,
.pagination>.active>span:focus,
.pagination>.active>span:hover {
  border-color: #223642;
  background-color: #223642;
  color: white;
}

/**
 * Content / Sections
 */

.content-section {
  padding: 15px;
}

.content-section+.content-section {
  margin-top: 30px;
}

@media (min-width: 768px) {
  .content-section {
    padding: 30px;
  }
}

.social-media-links {
  font-size: 2em;
}

.font-weight-bold {
  font-weight: bold;
}

.pa4 {
  padding: 32px;
  padding: 32px;
  padding: 32px;
  padding: 2rem;
}

.mt0 {
  margin-top: 0;
}

.mt2 {
  margin-top: 0.938em;
}

.mt4 {
  margin-top: 32px;
  margin-top: 32px;
  margin-top: 32px;
  margin-top: 2rem;
}

.mb4 {
  margin-bottom: 32px;
  margin-bottom: 32px;
  margin-bottom: 32px;
  margin-bottom: 2rem;
}

.ml1 {
  margin-left: 0.313em;
}

.ml2 {
  margin-left: 0.938em;
}

.mr2 {
  margin-right: 0.938em;
}

.inline-block {
  display: inline-block;
}

.v-mid {
  vertical-align: middle;
}

.nowrap {
  white-space: nowrap;
}

.label {
  font-weight: normal;
}

.labels-inline {
  margin-right: -0.313em;
  margin-left: -0.313em;
}

.labels-inline>.label {
  display: inline-block;
  vertical-align: middle;
  margin: 0.313em;
}

@supports (object-fit: cover) {
  .fit-centered {
    display: block;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    -o-object-position: center;
       object-position: center;
  }
}

/**
 * Lazysizes
 */

img.lazyload,
img.lazyloading {
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  -webkit-transition: opacity 400ms cubic-bezier(0.19, 1, 0.22, 1);
  transition: opacity 400ms cubic-bezier(0.19, 1, 0.22, 1);
  will-change: opacity;
}

img.lazyloaded {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}



/**
 * Helper Classes
 * --------------
 */

.child-clean > *:first-child {
  margin-top: 0 !important;
}

.child-clean > *:last-child {
  margin-bottom: 0 !important;
}

@media (max-width: 549px) {
  .hidden-custom-max-549 {
    display: none !important;
  }
}

@media (min-width: 550px) {
  .hidden-custom-min-550 {
    display: none !important;
  }
}


/**
 * Containers & Rows
 * -----------------
 */

.row.row-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.row.row-flex:before,
.row.row-flex:after {
  display: none;
}

.row.row-flex > *[class^="col-"],
.row.row-flex > *[class*=" col-"] {
  width: auto !important;
  min-height: auto;
  float: none;
}

.row.row-flex > .col-xs-3 {
  -ms-flex: 0 0 25%;
      flex: 0 0 25%;
  max-width: 25%;
}

.row.row-flex > .col-xs-4 {
  -ms-flex: 0 0 33.333333%;
      flex: 0 0 33.333333%;
  max-width: 33.333333%;
}

.row.row-flex > .col-xs-8 {
  -ms-flex: 0 0 66.666667%;
      flex: 0 0 66.666667%;
  max-width: 66.666667%;
}

.row.row-flex > .col-xs-9 {
  -ms-flex: 0 0 75%;
      flex: 0 0 75%;
  max-width: 75%;
}

.row.row-flex > .col-xs-12 {
  -ms-flex: 0 0 100%;
      flex: 0 0 100%;
  max-width: 100%;
}

@media (min-width: 768px) {
  .row.row-flex > .col-sm-2 {
    -ms-flex: 0 0 16.666667%;
        flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }

  .row.row-flex > .col-sm-3 {
    -ms-flex: 0 0 25%;
        flex: 0 0 25%;
    max-width: 25%;
  }

  .row.row-flex > .col-sm-5 {
    -ms-flex: 0 0 41.666667%;
        flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }

  .row.row-flex > .col-sm-7 {
    -ms-flex: 0 0 58.333333%;
        flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }

  .row.row-flex > .col-sm-8 {
    -ms-flex: 0 0 66.666667%;
        flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }

  .row.row-flex > .col-sm-9 {
    -ms-flex: 0 0 75%;
        flex: 0 0 75%;
    max-width: 75%;
  }

  .row.row-flex > .col-sm-10 {
    -ms-flex: 0 0 83.333333%;
        flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
}

@media (min-width: 992px) {
  .row.row-flex > .col-md-2 {
    -ms-flex: 0 0 16.666667%;
        flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }

  .row.row-flex > .col-md-4 {
    -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }

  .row.row-flex > .col-md-6 {
    -ms-flex: 0 0 50%;
        flex: 0 0 50%;
    max-width: 50%;
  }

  .row.row-flex > .col-md-8 {
    -ms-flex: 0 0 66.666667%;
        flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
}

.row.row-flex > .col-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}


/**
 * Typography
 * ----------
 */

.line-height-tight {
  line-height: 1.2 !important;
}


/**
 * Links & Buttons
 * ---------------
 */

.btn-wrap {
  white-space: normal !important;
}


/**
 * Lists
 * -----
 */

ul.list-item-spacing > li:not(:last-child),
ol.list-item-spacing > li:not(:last-child) {
  margin-bottom: 0.3125em;
}


/**
 * Forms - Inline
 * --------------
 */

/* Inline - Form Groups */
.form-inline .form-group > select + .btn {
  padding: 0.3751em 0.7501em;
}

/* Inline - Form Groups - No Wrap */
.form-inline .form-group.form-group-nowrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: nowrap;
	    flex-wrap: nowrap;
}

.form-inline .form-group.form-group-nowrap > *:not(:last-child) {
	margin-right: 5px;
}


/**
 * Sections
 * --------
 */

.section {
  padding: 1.875em 0;
}

/* Sections - Notification */
.section-notification {
  padding-bottom: 0.938em;
}

@media (min-width: 768px) {
  .section-notification {
    padding-bottom: 0;
  }
}

.section-notification .row-flex > .col-flex {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-bottom: 0.938em;
}

@media (min-width: 768px) {
  .section-notification .row-flex > .col-flex {
    padding-bottom: 1.875em;
  }
}

@media (min-width: 992px) {
  .section-notification .row-flex > .col-flex:first-child {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    padding-bottom: 0;
  }
}

@media (max-width: 549px) {
  .section-notification p {
    margin-bottom: 0;
  }
}

.section-notification .h3 {
  display: inline-block;
  margin: 0;
}

@media (max-width: 549px) {
  .section-notification .h3 {
    font-size: 1.25em;
  }
}

.section-notification img {
  -ms-flex-negative: 0;
        flex-shrink: 0;
}

.section-notification ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  height: 100%;
}

@media (min-width: 992px) {
  .section-notification ul {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

/* Sections - Notification - Primary */
@media (min-width: 550px) {
  .section-notification.area-primary {
    padding-bottom: 0;
  }

  .section-notification.area-primary .row-flex > .col-flex {
    padding-bottom: 1.875em;
  }

  .section-notification.area-primary .row-flex > .col-flex:first-child {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
        justify-content: flex-end;
    padding-bottom: 0;
  }
}

.section-notification.area-primary ul {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
      justify-content: center;
}

