html, body{
	height: 100%;
}



.site-container, .sticky-container{
	display: flex;
  min-height: 100vh;
  flex-direction: column;
}

.sticky-container{
	display: flex;
  min-height: 100%;
  flex-direction: column;
}


.site-content, .sticky-content {
	flex: 1 0 auto;
}


header, footer, .sticky-footer {
  flex: none; /* 2 */
}



body, body *{
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

body{
	font-family: 'GothamPro', sans-serif;
	font-weight: 300;
}

.footer-contact a{
	color: rgba(255,255,255,0.6);
}

.team-bios a{
    color: #4292CF;
}

.ocean-blue-light{
	color: #4ebef7;
}
.bg-ocean-blue-light {
  color: #4ebef7;
}

.ocean-blue{
	color: #4292CF;
}
.bg-ocean-blue, .hover-bg-ocean-blue:hover{
	background-color: #4292CF !important;
}

.contact-phone-link a, .quill-output a, .trix-content a, .faq-description a, .narrative-description a{
    color: #4292CF;
}

.ocean-purple{
	color: #48424e;
}
.bg-ocean-purple{
	background-color: #48424e;
}
.bg-black-03{
	background-color: rgba(0,0,0,0.03);
}

.search-form input[type="text"], .search-form label, .search-form button, .search-form select {
	font-size: 80%;
}
.search-form select{
	padding: 0.5rem;
	font-weight: 300;
}
.search-form input[type="text"], .search-form input[type="password"], .search-form textarea, .search-form select{
	padding: 0.5rem;
	border-radius: .25rem;
	border-width: 1px;
	border-style: solid;
	border-color: rgba(0,0,0,0.4);
	color: rgba(0,0,0,0.7);
	font-weight: 300;

}

.search-form select{
	padding: 0.3rem;
}

.search-form textarea{
	line-height: 1.3;
}

.search-form textarea{
	resize: none;
}


.search-form input[type="text"]:focus, .search-form input[type="password"]:focus, .search-form textarea:focus, .search-form select:focus{
	outline-color: rgba(0,0,0,0.65);
}






.contact-form input[type="text"], .contact-form label, .contact-form button, .contact-form select {
}
.contact-form select{
	padding: 0.5rem;
	font-weight: 300;
}
.contact-form input[type="text"], .contact-form input[type="password"], .contact-form textarea, .contact-form select{
	padding: 0.5rem;
	border-radius: .25rem;
	border-width: 1px;
	border-style: solid;
	border-color: rgba(0,0,0,0.5);
	color: rgba(0,0,0,0.7);
	font-weight: 300;

}

.contact-form select{
	padding: 0.3rem;
}

.contact-form textarea{
	line-height: 1.3;
}

.contact-form textarea{
	resize: none;
}


.contact-form input[type="text"]:focus, .contact-form input[type="password"]:focus, .contact-form textarea:focus, .contact-form select:focus{
	outline-color: rgba(0,0,0,0.65);
}






	.hover-o-100:hover{
		opacity: 1;
	}
	/* .f7{
		font-size: .675rem;
	} */








.sidebar-inquiries a{
	color: white;
}

.w3-5{
	width: 6rem;
}














  .fadein-0{
        -webkit-animation: fadein 0.5s; 
       -moz-animation: fadein 0.5s; 
        -ms-animation: fadein 0.5s; 
         -o-animation: fadein 0.5s; 
            animation: fadein 0.5s;
  }

  .fadein-1{
        -webkit-animation: fadein 1s; 
       -moz-animation: fadein 1s; 
        -ms-animation: fadein 1s; 
         -o-animation: fadein 1s; 
            animation: fadein 1s;
  }


  .fadein-2{
        -webkit-animation: fadein 1.5s; 
       -moz-animation: fadein 1.5s; 
        -ms-animation: fadein 1.5s; 
         -o-animation: fadein 1.5s; 
            animation: fadein 1.5s;
  }


  .fadein-3{
        -webkit-animation: fadein 2s; 
       -moz-animation: fadein 2s; 
        -ms-animation: fadein 2s; 
         -o-animation: fadein 2s; 
            animation: fadein 2s;
  }

  .fadein-4{
        -webkit-animation: fadein 2.5s; 
       -moz-animation: fadein 2.5s; 
        -ms-animation: fadein 2.5s; 
         -o-animation: fadein 2.5s; 
            animation: fadein 2.5s;
  }


  .fadein-5{
        -webkit-animation: fadein 3s; 
       -moz-animation: fadein 3s; 
        -ms-animation: fadein 3s; 
         -o-animation: fadein 3s; 
            animation: fadein 3s;
  }

@keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}


@-moz-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}


@-webkit-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}


@-ms-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}


@-o-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}


.fade-in-image {
  opacity: 0;
  transition: opacity 1s ease-in-out;
}



.cover-gradient-overlay {
    background: linear-gradient(93deg, #000000, rgba(0,0,0,0));
    background-size: 400% 400%;

    -webkit-animation: AnimationName 12s ease infinite;
    -moz-animation: AnimationName 12s ease infinite;
    animation: AnimationName 12s ease infinite;
}

@-webkit-keyframes AnimationName {
    0%{background-position:0% 46%}
    50%{background-position:100% 55%}
    100%{background-position:0% 46%}
}
@-moz-keyframes AnimationName {
    0%{background-position:0% 46%}
    50%{background-position:100% 55%}
    100%{background-position:0% 46%}
}
@keyframes AnimationName {
    0%{background-position:0% 46%}
    50%{background-position:100% 55%}
    100%{background-position:0% 46%}
}


.w-15 {
  width: 15%;
}












.b--ccc {
  border-color: #ccc;
}

table.list-table tr:hover td {
  background-color: rgba(0, 0, 0, 0.01);
}


.list-table-container {
  overflow-x: auto;
}

table.list-table {
  width: 100%;
  text-align: left;
}


table.list-table thead tr th {
  /* position: relative; */
}

/* table.list-table .table-sort {
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
    } */



table.list-table {
  border-collapse: collapse;
  border: 0 none;
}

table.list-table thead tr {
  border: 0 none;
}

table.list-table tbody tr {
  /* border-top: 0.125rem solid #e5e5e5; */
  /* border-top: 0.125rem solid rgba(0,0,0,0.2); */
  border-top: 0.125rem solid #ccc;
  border-bottom: 0 none;
  border-left: 0 none;
  border-right: 0 none;
}

table.list-table tr.inactive td {
  opacity: 0.4;
}



.table-sort {
  cursor: pointer;
  white-space: nowrap;
  /* font: inherit;
      color: inherit;
      text-transform: inherit;
      letter-spacing: inherit;
      border: 0;
      background: inherit;
      display: block;
      width: 100%;
      text-align: inherit; */
  /* transition: color .3s; */
  /* margin: -.5rem -.75rem; */
  /* padding: .5rem .75rem */
}


.table-sort:hover {
  background: rgba(0, 0, 0, 0.03);
}

.table-sort.asc,
.table-sort.desc {
  background: rgba(0, 0, 0, 0.05);
}

.table-sort:after {
  content: "";
  display: inline-flex;
  width: 1rem;
  height: 1rem;
  vertical-align: middle;
  -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' width='16' height='16' fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'><path d='M5 7l3 -3l3 3'/><path d='M5 10l3 3l3 -3'/></svg>");
  mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' width='16' height='16' fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'><path d='M5 7l3 -3l3 3'/><path d='M5 10l3 3l3 -3'/></svg>");
  background: currentColor;
  margin-left: .25rem;
  margin-top: -.2rem;
  opacity: 0.5;
}

.table-sort.asc:after {
  -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' width='16' height='16'><path fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M5 10l3 -3l3 3'/></svg>");
  mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' width='16' height='16'><path fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M5 10l3 -3l3 3'/></svg>")
}

.table-sort.desc:after {
  -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' width='16' height='16'><path fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M5 7l3 3l3 -3'/></svg>");
  mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' width='16' height='16'><path fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M5 7l3 3l3 -3'/></svg>")
}























.trix-content {
  line-height: 1.5;
}

.trix-content * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.trix-content h1 {
  font-size: 1.2em;
  line-height: 1.2;
}

.trix-content blockquote {
  border: 0 solid #ccc;
  border-left-width: 0.3em;
  margin-left: 0.3em;
  padding-left: 0.6em;
}

.trix-content [dir=rtl] blockquote,
.trix-content blockquote[dir=rtl] {
  border-width: 0;
  border-right-width: 0.3em;
  margin-right: 0.3em;
  padding-right: 0.6em;
}

.trix-content li {
  margin-left: 1em;
}

.trix-content [dir=rtl] li {
  margin-right: 1em;
}

.trix-content pre {
  display: inline-block;
  width: 100%;
  vertical-align: top;
  font-family: monospace;
  font-size: 0.9em;
  padding: 0.5em;
  white-space: pre;
  background-color: #eee;
  overflow-x: auto;
}

.trix-content img {
  max-width: 100%;
  height: auto;
}

.trix-content .attachment {
  display: inline-block;
  position: relative;
  max-width: 100%;
}

.trix-content .attachment a {
  color: inherit;
  text-decoration: none;
}

.trix-content .attachment a:hover,
.trix-content .attachment a:visited:hover {
  color: inherit;
}

.trix-content .attachment__caption {
  text-align: center;
}

.trix-content .attachment__caption .attachment__name+.attachment__size::before {
  content: ' \2022 ';
}

.trix-content .attachment--preview {
  width: 100%;
  text-align: center;
}

.trix-content .attachment--preview .attachment__caption {
  color: #666;
  font-size: 0.9em;
  line-height: 1.2;
}

.trix-content .attachment--file {
  color: #333;
  line-height: 1;
  margin: 0 2px 2px 2px;
  padding: 0.4em 1em;
  border: 1px solid #bbb;
  border-radius: 5px;
}

.trix-content .attachment-gallery {
  display: flex;
  flex-wrap: wrap;
  position: relative;
}

.trix-content .attachment-gallery .attachment {
  flex: 1 0 33%;
  padding: 0 0.5em;
  max-width: 33%;
}

.trix-content .attachment-gallery.attachment-gallery--2 .attachment,
.trix-content .attachment-gallery.attachment-gallery--4 .attachment {
  flex-basis: 50%;
  max-width: 50%;
}





.slick-loading {
  background: url('/images/lib/slick-ajax-loader.gif') center center no-repeat;
}




.lh-copy a:not([class]){
  color: #4292CF;
}