/*!* Bootstrap Grid v5.1.3 (https://getbootstrap.com/)
* Copyright 2011-2021 The Bootstrap Authors
* Copyright 2011-2021 Twitter, Inc.
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)*/
:root {
  --bs-blue:#0d6efd;
  --bs-indigo:#6610f2;
  --bs-purple:#6f42c1;
  --bs-pink:#d63384;
  --bs-red:#dc3545;
  --bs-orange:#fd7e14;
  --bs-yellow:#ffc107;
  --bs-green:#198754;
  --bs-teal:#20c997;
  --bs-cyan:#0dcaf0;
  --bs-white:#fff;
  --bs-gray:#6c757d;
  --bs-gray-dark:#343a40;
  --bs-gray-100:#f8f9fa;
  --bs-gray-200:#e9ecef;
  --bs-gray-300:#dee2e6;
  --bs-gray-400:#ced4da;
  --bs-gray-500:#adb5bd;
  --bs-gray-600:#6c757d;
  --bs-gray-700:#495057;
  --bs-gray-800:#343a40;
  --bs-gray-900:#212529;
  --bs-primary:#0d6efd;
  --bs-secondary:#6c757d;
  --bs-success:#198754;
  --bs-info:#0dcaf0;
  --bs-warning:#ffc107;
  --bs-danger:#dc3545;
  --bs-light:#f8f9fa;
  --bs-dark:#212529;
  --bs-primary-rgb:13,110,253;
  --bs-secondary-rgb:108,117,125;
  --bs-success-rgb:25,135,84;
  --bs-info-rgb:13,202,240;
  --bs-warning-rgb:255,193,7;
  --bs-danger-rgb:220,53,69;
  --bs-light-rgb:248,249,250;
  --bs-dark-rgb:33,37,41;
  --bs-white-rgb:255,255,255;
  --bs-black-rgb:0,0,0;
  --bs-body-color-rgb:33,37,41;
  --bs-body-bg-rgb:255,255,255;
  --bs-font-sans-serif:system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
  --bs-font-monospace:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;
  --bs-gradient:linear-gradient(180deg,hsla(0,0%,100%,.15),hsla(0,0%,100%,0));
  --bs-body-font-family:var(--bs-font-sans-serif);
  --bs-body-font-size:1rem;
  --bs-body-font-weight:400;
  --bs-body-line-height:1.5;
  --bs-body-color:#212529;
  --bs-body-bg:#fff
}
.container,.container-fluid,.container-lg,.container-md,.container-sm,.container-xl,.container-xxl{
margin-left:auto;
  margin-right: auto;
  padding-left: var(--bs-gutter-x, 0.75rem);
  padding-right: var(--bs-gutter-x, 0.75rem);
  width: 100%;
}
@media (min-width: 576px) {
  .container, .container-sm {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container, .container-md, .container-sm {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container, .container-lg, .container-md, .container-sm {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 1400px;
  }
}
.row {
  --bs-gutter-x:1.5rem;
  --bs-gutter-y:0;
  display: flex;
  flex-wrap: wrap;
  margin-left: calc(var(--bs-gutter-x)*-.5);
  margin-right: calc(var(--bs-gutter-x)*-.5);
  margin-top: calc(var(--bs-gutter-y)*-1);
}
.row > * {
  box-sizing: border-box;
  flex-shrink: 0;
  margin-top: var(--bs-gutter-y);
  max-width: 100%;
  padding-left: calc(var(--bs-gutter-x)*.5);
  padding-right: calc(var(--bs-gutter-x)*.5);
  width: 100%;
}
.col {
  flex: 1 0;
}
.row-cols-auto > * {
  flex: none;
  width: auto;
}
.row-cols-1 > * {
  flex: none;
  width: 100%;
}
.row-cols-2 > * {
  flex: none;
  width: 50%;
}
.row-cols-3 > * {
  flex: none;
  width: 33.3333333333%;
}
.row-cols-4 > * {
  flex: none;
  width: 25%;
}
.row-cols-5 > * {
  flex: none;
  width: 20%;
}
.row-cols-6 > * {
  flex: none;
  width: 16.6666666667%;
}
.col-auto {
  flex: none;
  width: auto;
}
.col-1 {
  flex: none;
  width: 8.33333333%;
}
.col-2 {
  flex: none;
  width: 16.66666667%;
}
.col-3 {
  flex: none;
  width: 25%;
}
.col-4 {
  flex: none;
  width: 33.33333333%;
}
.col-5 {
  flex: none;
  width: 41.66666667%;
}
.col-6 {
  flex: none;
  width: 50%;
}
.col-7 {
  flex: none;
  width: 58.33333333%;
}
.col-8 {
  flex: none;
  width: 66.66666667%;
}
.col-9 {
  flex: none;
  width: 75%;
}
.col-10 {
  flex: none;
  width: 83.33333333%;
}
.col-11 {
  flex: none;
  width: 91.66666667%;
}
.col-12 {
  flex: none;
  width: 100%;
}
.offset-1 {
  margin-left: 8.33333333%;
}
.offset-2 {
  margin-left: 16.66666667%;
}
.offset-3 {
  margin-left: 25%;
}
.offset-4 {
  margin-left: 33.33333333%;
}
.offset-5 {
  margin-left: 41.66666667%;
}
.offset-6 {
  margin-left: 50%;
}
.offset-7 {
  margin-left: 58.33333333%;
}
.offset-8 {
  margin-left: 66.66666667%;
}
.offset-9 {
  margin-left: 75%;
}
.offset-10 {
  margin-left: 83.33333333%;
}
.offset-11 {
  margin-left: 91.66666667%;
}
.g-0, .gx-0 {
  --bs-gutter-x:0
}
.g-0,.gy-0{
--bs-gutter-y:0
}
.g-1,.gx-1{
--bs-gutter-x:0.25rem
}
.g-1,.gy-1{
--bs-gutter-y:0.25rem
}
.g-2,.gx-2{
--bs-gutter-x:0.5rem
}
.g-2,.gy-2{
--bs-gutter-y:0.5rem
}
.g-3,.gx-3{
--bs-gutter-x:1rem
}
.g-3,.gy-3{
--bs-gutter-y:1rem
}
.g-4,.gx-4{
--bs-gutter-x:1.5rem
}
.g-4,.gy-4{
--bs-gutter-y:1.5rem
}
.g-5,.gx-5{
--bs-gutter-x:3rem
}
.g-5,.gy-5{
--bs-gutter-y:3rem
}
@media(min-width:576px){
.col-sm{
flex:1 0
}
.row-cols-sm-auto>*{
flex:none;
width:auto
}
.row-cols-sm-1>*{
flex:none;
width:100%
}
.row-cols-sm-2>*{
flex:none;
width:50%
}
.row-cols-sm-3>*{
flex:none;
width:33.3333333333%
}
.row-cols-sm-4>*{
flex:none;
width:25%
}
.row-cols-sm-5>*{
flex:none;
width:20%
}
.row-cols-sm-6>*{
flex:none;
width:16.6666666667%
}
.col-sm-auto{
flex:none;
width:auto
}
.col-sm-1{
flex:none;
width:8.33333333%
}
.col-sm-2{
flex:none;
width:16.66666667%
}
.col-sm-3{
flex:none;
width:25%
}
.col-sm-4{
flex:none;
width:33.33333333%
}
.col-sm-5{
flex:none;
width:41.66666667%
}
.col-sm-6{
flex:none;
width:50%
}
.col-sm-7{
flex:none;
width:58.33333333%
}
.col-sm-8{
flex:none;
width:66.66666667%
}
.col-sm-9{
flex:none;
width:75%
}
.col-sm-10{
flex:none;
width:83.33333333%
}
.col-sm-11{
flex:none;
width:91.66666667%
}
.col-sm-12{
flex:none;
width:100%
}
.offset-sm-0{
margin-left:0
}
.offset-sm-1{
margin-left:8.33333333%
}
.offset-sm-2{
margin-left:16.66666667%
}
.offset-sm-3{
margin-left:25%
}
.offset-sm-4{
margin-left:33.33333333%
}
.offset-sm-5{
margin-left:41.66666667%
}
.offset-sm-6{
margin-left:50%
}
.offset-sm-7{
margin-left:58.33333333%
}
.offset-sm-8{
margin-left:66.66666667%
}
.offset-sm-9{
margin-left:75%
}
.offset-sm-10{
margin-left:83.33333333%
}
.offset-sm-11{
margin-left:91.66666667%
}
.g-sm-0,.gx-sm-0{
--bs-gutter-x:0
}
.g-sm-0,.gy-sm-0{
--bs-gutter-y:0
}
.g-sm-1,.gx-sm-1{
--bs-gutter-x:0.25rem
}
.g-sm-1,.gy-sm-1{
--bs-gutter-y:0.25rem
}
.g-sm-2,.gx-sm-2{
--bs-gutter-x:0.5rem
}
.g-sm-2,.gy-sm-2{
--bs-gutter-y:0.5rem
}
.g-sm-3,.gx-sm-3{
--bs-gutter-x:1rem
}
.g-sm-3,.gy-sm-3{
--bs-gutter-y:1rem
}
.g-sm-4,.gx-sm-4{
--bs-gutter-x:1.5rem
}
.g-sm-4,.gy-sm-4{
--bs-gutter-y:1.5rem
}
.g-sm-5,.gx-sm-5{
--bs-gutter-x:3rem
}
.g-sm-5,.gy-sm-5{
--bs-gutter-y:3rem
}

}
@media(min-width:768px){
.col-md{
flex:1 0
}
.row-cols-md-auto>*{
flex:none;
width:auto
}
.row-cols-md-1>*{
flex:none;
width:100%
}
.row-cols-md-2>*{
flex:none;
width:50%
}
.row-cols-md-3>*{
flex:none;
width:33.3333333333%
}
.row-cols-md-4>*{
flex:none;
width:25%
}
.row-cols-md-5>*{
flex:none;
width:20%
}
.row-cols-md-6>*{
flex:none;
width:16.6666666667%
}
.col-md-auto{
flex:none;
width:auto
}
.col-md-1{
flex:none;
width:8.33333333%
}
.col-md-2{
flex:none;
width:16.66666667%
}
.col-md-3{
flex:none;
width:25%
}
.col-md-4{
flex:none;
width:33.33333333%
}
.col-md-5{
flex:none;
width:41.66666667%
}
.col-md-6{
flex:none;
width:50%
}
.col-md-7{
flex:none;
width:58.33333333%
}
.col-md-8{
flex:none;
width:66.66666667%
}
.col-md-9{
flex:none;
width:75%
}
.col-md-10{
flex:none;
width:83.33333333%
}
.col-md-11{
flex:none;
width:91.66666667%
}
.col-md-12{
flex:none;
width:100%
}
.offset-md-0{
margin-left:0
}
.offset-md-1{
margin-left:8.33333333%
}
.offset-md-2{
margin-left:16.66666667%
}
.offset-md-3{
margin-left:25%
}
.offset-md-4{
margin-left:33.33333333%
}
.offset-md-5{
margin-left:41.66666667%
}
.offset-md-6{
margin-left:50%
}
.offset-md-7{
margin-left:58.33333333%
}
.offset-md-8{
margin-left:66.66666667%
}
.offset-md-9{
margin-left:75%
}
.offset-md-10{
margin-left:83.33333333%
}
.offset-md-11{
margin-left:91.66666667%
}
.g-md-0,.gx-md-0{
--bs-gutter-x:0
}
.g-md-0,.gy-md-0{
--bs-gutter-y:0
}
.g-md-1,.gx-md-1{
--bs-gutter-x:0.25rem
}
.g-md-1,.gy-md-1{
--bs-gutter-y:0.25rem
}
.g-md-2,.gx-md-2{
--bs-gutter-x:0.5rem
}
.g-md-2,.gy-md-2{
--bs-gutter-y:0.5rem
}
.g-md-3,.gx-md-3{
--bs-gutter-x:1rem
}
.g-md-3,.gy-md-3{
--bs-gutter-y:1rem
}
.g-md-4,.gx-md-4{
--bs-gutter-x:1.5rem
}
.g-md-4,.gy-md-4{
--bs-gutter-y:1.5rem
}
.g-md-5,.gx-md-5{
--bs-gutter-x:3rem
}
.g-md-5,.gy-md-5{
--bs-gutter-y:3rem
}

}
@media(min-width:992px){
.col-lg{
flex:1 0
}
.row-cols-lg-auto>*{
flex:none;
width:auto
}
.row-cols-lg-1>*{
flex:none;
width:100%
}
.row-cols-lg-2>*{
flex:none;
width:50%
}
.row-cols-lg-3>*{
flex:none;
width:33.3333333333%
}
.row-cols-lg-4>*{
flex:none;
width:25%
}
.row-cols-lg-5>*{
flex:none;
width:20%
}
.row-cols-lg-6>*{
flex:none;
width:16.6666666667%
}
.col-lg-auto{
flex:none;
width:auto
}
.col-lg-1{
flex:none;
width:8.33333333%
}
.col-lg-2{
flex:none;
width:16.66666667%
}
.col-lg-3{
flex:none;
width:25%
}
.col-lg-4{
flex:none;
width:33.33333333%
}
.col-lg-5{
flex:none;
width:41.66666667%
}
.col-lg-6{
flex:none;
width:50%
}
.col-lg-7{
flex:none;
width:58.33333333%
}
.col-lg-8{
flex:none;
width:66.66666667%
}
.col-lg-9{
flex:none;
width:75%
}
.col-lg-10{
flex:none;
width:83.33333333%
}
.col-lg-11{
flex:none;
width:91.66666667%
}
.col-lg-12{
flex:none;
width:100%
}
.offset-lg-0{
margin-left:0
}
.offset-lg-1{
margin-left:8.33333333%
}
.offset-lg-2{
margin-left:16.66666667%
}
.offset-lg-3{
margin-left:25%
}
.offset-lg-4{
margin-left:33.33333333%
}
.offset-lg-5{
margin-left:41.66666667%
}
.offset-lg-6{
margin-left:50%
}
.offset-lg-7{
margin-left:58.33333333%
}
.offset-lg-8{
margin-left:66.66666667%
}
.offset-lg-9{
margin-left:75%
}
.offset-lg-10{
margin-left:83.33333333%
}
.offset-lg-11{
margin-left:91.66666667%
}
.g-lg-0,.gx-lg-0{
--bs-gutter-x:0
}
.g-lg-0,.gy-lg-0{
--bs-gutter-y:0
}
.g-lg-1,.gx-lg-1{
--bs-gutter-x:0.25rem
}
.g-lg-1,.gy-lg-1{
--bs-gutter-y:0.25rem
}
.g-lg-2,.gx-lg-2{
--bs-gutter-x:0.5rem
}
.g-lg-2,.gy-lg-2{
--bs-gutter-y:0.5rem
}
.g-lg-3,.gx-lg-3{
--bs-gutter-x:1rem
}
.g-lg-3,.gy-lg-3{
--bs-gutter-y:1rem
}
.g-lg-4,.gx-lg-4{
--bs-gutter-x:1.5rem
}
.g-lg-4,.gy-lg-4{
--bs-gutter-y:1.5rem
}
.g-lg-5,.gx-lg-5{
--bs-gutter-x:3rem
}
.g-lg-5,.gy-lg-5{
--bs-gutter-y:3rem
}

}
@media(min-width:1200px){
.col-xl{
flex:1 0
}
.row-cols-xl-auto>*{
flex:none;
width:auto
}
.row-cols-xl-1>*{
flex:none;
width:100%
}
.row-cols-xl-2>*{
flex:none;
width:50%
}
.row-cols-xl-3>*{
flex:none;
width:33.3333333333%
}
.row-cols-xl-4>*{
flex:none;
width:25%
}
.row-cols-xl-5>*{
flex:none;
width:20%
}
.row-cols-xl-6>*{
flex:none;
width:16.6666666667%
}
.col-xl-auto{
flex:none;
width:auto
}
.col-xl-1{
flex:none;
width:8.33333333%
}
.col-xl-2{
flex:none;
width:16.66666667%
}
.col-xl-3{
flex:none;
width:25%
}
.col-xl-4{
flex:none;
width:33.33333333%
}
.col-xl-5{
flex:none;
width:41.66666667%
}
.col-xl-6{
flex:none;
width:50%
}
.col-xl-7{
flex:none;
width:58.33333333%
}
.col-xl-8{
flex:none;
width:66.66666667%
}
.col-xl-9{
flex:none;
width:75%
}
.col-xl-10{
flex:none;
width:83.33333333%
}
.col-xl-11{
flex:none;
width:91.66666667%
}
.col-xl-12{
flex:none;
width:100%
}
.offset-xl-0{
margin-left:0
}
.offset-xl-1{
margin-left:8.33333333%
}
.offset-xl-2{
margin-left:16.66666667%
}
.offset-xl-3{
margin-left:25%
}
.offset-xl-4{
margin-left:33.33333333%
}
.offset-xl-5{
margin-left:41.66666667%
}
.offset-xl-6{
margin-left:50%
}
.offset-xl-7{
margin-left:58.33333333%
}
.offset-xl-8{
margin-left:66.66666667%
}
.offset-xl-9{
margin-left:75%
}
.offset-xl-10{
margin-left:83.33333333%
}
.offset-xl-11{
margin-left:91.66666667%
}
.g-xl-0,.gx-xl-0{
--bs-gutter-x:0
}
.g-xl-0,.gy-xl-0{
--bs-gutter-y:0
}
.g-xl-1,.gx-xl-1{
--bs-gutter-x:0.25rem
}
.g-xl-1,.gy-xl-1{
--bs-gutter-y:0.25rem
}
.g-xl-2,.gx-xl-2{
--bs-gutter-x:0.5rem
}
.g-xl-2,.gy-xl-2{
--bs-gutter-y:0.5rem
}
.g-xl-3,.gx-xl-3{
--bs-gutter-x:1rem
}
.g-xl-3,.gy-xl-3{
--bs-gutter-y:1rem
}
.g-xl-4,.gx-xl-4{
--bs-gutter-x:1.5rem
}
.g-xl-4,.gy-xl-4{
--bs-gutter-y:1.5rem
}
.g-xl-5,.gx-xl-5{
--bs-gutter-x:3rem
}
.g-xl-5,.gy-xl-5{
--bs-gutter-y:3rem
}

}
@media(min-width:1400px){
.col-xxl{
flex:1 0
}
.row-cols-xxl-auto>*{
flex:none;
width:auto
}
.row-cols-xxl-1>*{
flex:none;
width:100%
}
.row-cols-xxl-2>*{
flex:none;
width:50%
}
.row-cols-xxl-3>*{
flex:none;
width:33.3333333333%
}
.row-cols-xxl-4>*{
flex:none;
width:25%
}
.row-cols-xxl-5>*{
flex:none;
width:20%
}
.row-cols-xxl-6>*{
flex:none;
width:16.6666666667%
}
.col-xxl-auto{
flex:none;
width:auto
}
.col-xxl-1{
flex:none;
width:8.33333333%
}
.col-xxl-2{
flex:none;
width:16.66666667%
}
.col-xxl-3{
flex:none;
width:25%
}
.col-xxl-4{
flex:none;
width:33.33333333%
}
.col-xxl-5{
flex:none;
width:41.66666667%
}
.col-xxl-6{
flex:none;
width:50%
}
.col-xxl-7{
flex:none;
width:58.33333333%
}
.col-xxl-8{
flex:none;
width:66.66666667%
}
.col-xxl-9{
flex:none;
width:75%
}
.col-xxl-10{
flex:none;
width:83.33333333%
}
.col-xxl-11{
flex:none;
width:91.66666667%
}
.col-xxl-12{
flex:none;
width:100%
}
.offset-xxl-0{
margin-left:0
}
.offset-xxl-1{
margin-left:8.33333333%
}
.offset-xxl-2{
margin-left:16.66666667%
}
.offset-xxl-3{
margin-left:25%
}
.offset-xxl-4{
margin-left:33.33333333%
}
.offset-xxl-5{
margin-left:41.66666667%
}
.offset-xxl-6{
margin-left:50%
}
.offset-xxl-7{
margin-left:58.33333333%
}
.offset-xxl-8{
margin-left:66.66666667%
}
.offset-xxl-9{
margin-left:75%
}
.offset-xxl-10{
margin-left:83.33333333%
}
.offset-xxl-11{
margin-left:91.66666667%
}
.g-xxl-0,.gx-xxl-0{
--bs-gutter-x:0
}
.g-xxl-0,.gy-xxl-0{
--bs-gutter-y:0
}
.g-xxl-1,.gx-xxl-1{
--bs-gutter-x:0.25rem
}
.g-xxl-1,.gy-xxl-1{
--bs-gutter-y:0.25rem
}
.g-xxl-2,.gx-xxl-2{
--bs-gutter-x:0.5rem
}
.g-xxl-2,.gy-xxl-2{
--bs-gutter-y:0.5rem
}
.g-xxl-3,.gx-xxl-3{
--bs-gutter-x:1rem
}
.g-xxl-3,.gy-xxl-3{
--bs-gutter-y:1rem
}
.g-xxl-4,.gx-xxl-4{
--bs-gutter-x:1.5rem
}
.g-xxl-4,.gy-xxl-4{
--bs-gutter-y:1.5rem
}
.g-xxl-5,.gx-xxl-5{
--bs-gutter-x:3rem
}
.g-xxl-5,.gy-xxl-5{
--bs-gutter-y:3rem
}

}
@media(min-width:576px){
.d-sm-inline{
display:inline!important
}
.d-sm-inline-block{
display:inline-block!important
}
.d-sm-block{
display:block!important
}
.d-sm-grid{
display:grid!important
}
.d-sm-table{
display:table!important
}
.d-sm-table-row{
display:table-row!important
}
.d-sm-table-cell{
display:table-cell!important
}
.d-sm-flex{
display:flex!important
}
.d-sm-inline-flex{
display:inline-flex!important
}
.d-sm-none{
display:none!important
}
.flex-sm-fill{
flex:auto!important
}
.flex-sm-row{
flex-direction:row!important
}
.flex-sm-column{
flex-direction:column!important
}
.flex-sm-row-reverse{
flex-direction:row-reverse!important
}
.flex-sm-column-reverse{
flex-direction:column-reverse!important
}
.flex-sm-grow-0{
flex-grow:0!important
}
.flex-sm-grow-1{
flex-grow:1!important
}
.flex-sm-shrink-0{
flex-shrink:0!important
}
.flex-sm-shrink-1{
flex-shrink:1!important
}
.flex-sm-wrap{
flex-wrap:wrap!important
}
.flex-sm-nowrap{
flex-wrap:nowrap!important
}
.flex-sm-wrap-reverse{
flex-wrap:wrap-reverse!important
}
.justify-content-sm-start{
justify-content:flex-start!important
}
.justify-content-sm-end{
justify-content:flex-end!important
}
.justify-content-sm-center{
justify-content:center!important
}
.justify-content-sm-between{
justify-content:space-between!important
}
.justify-content-sm-around{
justify-content:space-around!important
}
.justify-content-sm-evenly{
justify-content:space-evenly!important
}
.align-items-sm-start{
align-items:flex-start!important
}
.align-items-sm-end{
align-items:flex-end!important
}
.align-items-sm-center{
align-items:center!important
}
.align-items-sm-baseline{
align-items:baseline!important
}
.align-items-sm-stretch{
align-items:stretch!important
}
.align-content-sm-start{
align-content:flex-start!important
}
.align-content-sm-end{
align-content:flex-end!important
}
.align-content-sm-center{
align-content:center!important
}
.align-content-sm-between{
align-content:space-between!important
}
.align-content-sm-around{
align-content:space-around!important
}
.align-content-sm-stretch{
align-content:stretch!important
}
.align-self-sm-auto{
align-self:auto!important
}
.align-self-sm-start{
align-self:flex-start!important
}
.align-self-sm-end{
align-self:flex-end!important
}
.align-self-sm-center{
align-self:center!important
}
.align-self-sm-baseline{
align-self:baseline!important
}
.align-self-sm-stretch{
align-self:stretch!important
}
.order-sm-first{
order:-1!important
}
.order-sm-0{
order:0!important
}
.order-sm-1{
order:1!important
}
.order-sm-2{
order:2!important
}
.order-sm-3{
order:3!important
}
.order-sm-4{
order:4!important
}
.order-sm-5{
order:5!important
}
.order-sm-last{
order:6!important
}
.m-sm-0{
margin:0!important
}
.m-sm-1{
margin:.25rem!important
}
.m-sm-2{
margin:.5rem!important
}
.m-sm-3{
margin:1rem!important
}
.m-sm-4{
margin:1.5rem!important
}
.m-sm-5{
margin:3rem!important
}
.m-sm-auto{
margin:auto!important
}
.mx-sm-0{
margin-left:0!important;
margin-right:0!important
}
.mx-sm-1{
margin-left:.25rem!important;
margin-right:.25rem!important
}
.mx-sm-2{
margin-left:.5rem!important;
margin-right:.5rem!important
}
.mx-sm-3{
margin-left:1rem!important;
margin-right:1rem!important
}
.mx-sm-4{
margin-left:1.5rem!important;
margin-right:1.5rem!important
}
.mx-sm-5{
margin-left:3rem!important;
margin-right:3rem!important
}
.mx-sm-auto{
margin-left:auto!important;
margin-right:auto!important
}
.my-sm-0{
margin-bottom:0!important;
margin-top:0!important
}
.my-sm-1{
margin-bottom:.25rem!important;
margin-top:.25rem!important
}
.my-sm-2{
margin-bottom:.5rem!important;
margin-top:.5rem!important
}
.my-sm-3{
margin-bottom:1rem!important;
margin-top:1rem!important
}
.my-sm-4{
margin-bottom:1.5rem!important;
margin-top:1.5rem!important
}
.my-sm-5{
margin-bottom:3rem!important;
margin-top:3rem!important
}
.my-sm-auto{
margin-bottom:auto!important;
margin-top:auto!important
}
.mt-sm-0{
margin-top:0!important
}
.mt-sm-1{
margin-top:.25rem!important
}
.mt-sm-2{
margin-top:.5rem!important
}
.mt-sm-3{
margin-top:1rem!important
}
.mt-sm-4{
margin-top:1.5rem!important
}
.mt-sm-5{
margin-top:3rem!important
}
.mt-sm-auto{
margin-top:auto!important
}
.me-sm-0{
margin-right:0!important
}
.me-sm-1{
margin-right:.25rem!important
}
.me-sm-2{
margin-right:.5rem!important
}
.me-sm-3{
margin-right:1rem!important
}
.me-sm-4{
margin-right:1.5rem!important
}
.me-sm-5{
margin-right:3rem!important
}
.me-sm-auto{
margin-right:auto!important
}
.mb-sm-0{
margin-bottom:0!important
}
.mb-sm-1{
margin-bottom:.25rem!important
}
.mb-sm-2{
margin-bottom:.5rem!important
}
.mb-sm-3{
margin-bottom:1rem!important
}
.mb-sm-4{
margin-bottom:1.5rem!important
}
.mb-sm-5{
margin-bottom:3rem!important
}
.mb-sm-auto{
margin-bottom:auto!important
}
.ms-sm-0{
margin-left:0!important
}
.ms-sm-1{
margin-left:.25rem!important
}
.ms-sm-2{
margin-left:.5rem!important
}
.ms-sm-3{
margin-left:1rem!important
}
.ms-sm-4{
margin-left:1.5rem!important
}
.ms-sm-5{
margin-left:3rem!important
}
.ms-sm-auto{
margin-left:auto!important
}
.p-sm-0{
padding:0!important
}
.p-sm-1{
padding:.25rem!important
}
.p-sm-2{
padding:.5rem!important
}
.p-sm-3{
padding:1rem!important
}
.p-sm-4{
padding:1.5rem!important
}
.p-sm-5{
padding:3rem!important
}
.px-sm-0{
padding-left:0!important;
padding-right:0!important
}
.px-sm-1{
padding-left:.25rem!important;
padding-right:.25rem!important
}
.px-sm-2{
padding-left:.5rem!important;
padding-right:.5rem!important
}
.px-sm-3{
padding-left:1rem!important;
padding-right:1rem!important
}
.px-sm-4{
padding-left:1.5rem!important;
padding-right:1.5rem!important
}
.px-sm-5{
padding-left:3rem!important;
padding-right:3rem!important
}
.py-sm-0{
padding-bottom:0!important;
padding-top:0!important
}
.py-sm-1{
padding-bottom:.25rem!important;
padding-top:.25rem!important
}
.py-sm-2{
padding-bottom:.5rem!important;
padding-top:.5rem!important
}
.py-sm-3{
padding-bottom:1rem!important;
padding-top:1rem!important
}
.py-sm-4{
padding-bottom:1.5rem!important;
padding-top:1.5rem!important
}
.py-sm-5{
padding-bottom:3rem!important;
padding-top:3rem!important
}
.pt-sm-0{
padding-top:0!important
}
.pt-sm-1{
padding-top:.25rem!important
}
.pt-sm-2{
padding-top:.5rem!important
}
.pt-sm-3{
padding-top:1rem!important
}
.pt-sm-4{
padding-top:1.5rem!important
}
.pt-sm-5{
padding-top:3rem!important
}
.pe-sm-0{
padding-right:0!important
}
.pe-sm-1{
padding-right:.25rem!important
}
.pe-sm-2{
padding-right:.5rem!important
}
.pe-sm-3{
padding-right:1rem!important
}
.pe-sm-4{
padding-right:1.5rem!important
}
.pe-sm-5{
padding-right:3rem!important
}
.pb-sm-0{
padding-bottom:0!important
}
.pb-sm-1{
padding-bottom:.25rem!important
}
.pb-sm-2{
padding-bottom:.5rem!important
}
.pb-sm-3{
padding-bottom:1rem!important
}
.pb-sm-4{
padding-bottom:1.5rem!important
}
.pb-sm-5{
padding-bottom:3rem!important
}
.ps-sm-0{
padding-left:0!important
}
.ps-sm-1{
padding-left:.25rem!important
}
.ps-sm-2{
padding-left:.5rem!important
}
.ps-sm-3{
padding-left:1rem!important
}
.ps-sm-4{
padding-left:1.5rem!important
}
.ps-sm-5{
padding-left:3rem!important
}

}
@media(min-width:768px){
.d-md-inline{
display:inline!important
}
.d-md-inline-block{
display:inline-block!important
}
.d-md-block{
display:block!important
}
.d-md-grid{
display:grid!important
}
.d-md-table{
display:table!important
}
.d-md-table-row{
display:table-row!important
}
.d-md-table-cell{
display:table-cell!important
}
.d-md-flex{
display:flex!important
}
.d-md-inline-flex{
display:inline-flex!important
}
.d-md-none{
display:none!important
}
.flex-md-fill{
flex:auto!important
}
.flex-md-row{
flex-direction:row!important
}
.flex-md-column{
flex-direction:column!important
}
.flex-md-row-reverse{
flex-direction:row-reverse!important
}
.flex-md-column-reverse{
flex-direction:column-reverse!important
}
.flex-md-grow-0{
flex-grow:0!important
}
.flex-md-grow-1{
flex-grow:1!important
}
.flex-md-shrink-0{
flex-shrink:0!important
}
.flex-md-shrink-1{
flex-shrink:1!important
}
.flex-md-wrap{
flex-wrap:wrap!important
}
.flex-md-nowrap{
flex-wrap:nowrap!important
}
.flex-md-wrap-reverse{
flex-wrap:wrap-reverse!important
}
.justify-content-md-start{
justify-content:flex-start!important
}
.justify-content-md-end{
justify-content:flex-end!important
}
.justify-content-md-center{
justify-content:center!important
}
.justify-content-md-between{
justify-content:space-between!important
}
.justify-content-md-around{
justify-content:space-around!important
}
.justify-content-md-evenly{
justify-content:space-evenly!important
}
.align-items-md-start{
align-items:flex-start!important
}
.align-items-md-end{
align-items:flex-end!important
}
.align-items-md-center{
align-items:center!important
}
.align-items-md-baseline{
align-items:baseline!important
}
.align-items-md-stretch{
align-items:stretch!important
}
.align-content-md-start{
align-content:flex-start!important
}
.align-content-md-end{
align-content:flex-end!important
}
.align-content-md-center{
align-content:center!important
}
.align-content-md-between{
align-content:space-between!important
}
.align-content-md-around{
align-content:space-around!important
}
.align-content-md-stretch{
align-content:stretch!important
}
.align-self-md-auto{
align-self:auto!important
}
.align-self-md-start{
align-self:flex-start!important
}
.align-self-md-end{
align-self:flex-end!important
}
.align-self-md-center{
align-self:center!important
}
.align-self-md-baseline{
align-self:baseline!important
}
.align-self-md-stretch{
align-self:stretch!important
}
.order-md-first{
order:-1!important
}
.order-md-0{
order:0!important
}
.order-md-1{
order:1!important
}
.order-md-2{
order:2!important
}
.order-md-3{
order:3!important
}
.order-md-4{
order:4!important
}
.order-md-5{
order:5!important
}
.order-md-last{
order:6!important
}
.m-md-0{
margin:0!important
}
.m-md-1{
margin:.25rem!important
}
.m-md-2{
margin:.5rem!important
}
.m-md-3{
margin:1rem!important
}
.m-md-4{
margin:1.5rem!important
}
.m-md-5{
margin:3rem!important
}
.m-md-auto{
margin:auto!important
}
.mx-md-0{
margin-left:0!important;
margin-right:0!important
}
.mx-md-1{
margin-left:.25rem!important;
margin-right:.25rem!important
}
.mx-md-2{
margin-left:.5rem!important;
margin-right:.5rem!important
}
.mx-md-3{
margin-left:1rem!important;
margin-right:1rem!important
}
.mx-md-4{
margin-left:1.5rem!important;
margin-right:1.5rem!important
}
.mx-md-5{
margin-left:3rem!important;
margin-right:3rem!important
}
.mx-md-auto{
margin-left:auto!important;
margin-right:auto!important
}
.my-md-0{
margin-bottom:0!important;
margin-top:0!important
}
.my-md-1{
margin-bottom:.25rem!important;
margin-top:.25rem!important
}
.my-md-2{
margin-bottom:.5rem!important;
margin-top:.5rem!important
}
.my-md-3{
margin-bottom:1rem!important;
margin-top:1rem!important
}
.my-md-4{
margin-bottom:1.5rem!important;
margin-top:1.5rem!important
}
.my-md-5{
margin-bottom:3rem!important;
margin-top:3rem!important
}
.my-md-auto{
margin-bottom:auto!important;
margin-top:auto!important
}
.mt-md-0{
margin-top:0!important
}
.mt-md-1{
margin-top:.25rem!important
}
.mt-md-2{
margin-top:.5rem!important
}
.mt-md-3{
margin-top:1rem!important
}
.mt-md-4{
margin-top:1.5rem!important
}
.mt-md-5{
margin-top:3rem!important
}
.mt-md-auto{
margin-top:auto!important
}
.me-md-0{
margin-right:0!important
}
.me-md-1{
margin-right:.25rem!important
}
.me-md-2{
margin-right:.5rem!important
}
.me-md-3{
margin-right:1rem!important
}
.me-md-4{
margin-right:1.5rem!important
}
.me-md-5{
margin-right:3rem!important
}
.me-md-auto{
margin-right:auto!important
}
.mb-md-0{
margin-bottom:0!important
}
.mb-md-1{
margin-bottom:.25rem!important
}
.mb-md-2{
margin-bottom:.5rem!important
}
.mb-md-3{
margin-bottom:1rem!important
}
.mb-md-4{
margin-bottom:1.5rem!important
}
.mb-md-5{
margin-bottom:3rem!important
}
.mb-md-auto{
margin-bottom:auto!important
}
.ms-md-0{
margin-left:0!important
}
.ms-md-1{
margin-left:.25rem!important
}
.ms-md-2{
margin-left:.5rem!important
}
.ms-md-3{
margin-left:1rem!important
}
.ms-md-4{
margin-left:1.5rem!important
}
.ms-md-5{
margin-left:3rem!important
}
.ms-md-auto{
margin-left:auto!important
}
.p-md-0{
padding:0!important
}
.p-md-1{
padding:.25rem!important
}
.p-md-2{
padding:.5rem!important
}
.p-md-3{
padding:1rem!important
}
.p-md-4{
padding:1.5rem!important
}
.p-md-5{
padding:3rem!important
}
.px-md-0{
padding-left:0!important;
padding-right:0!important
}
.px-md-1{
padding-left:.25rem!important;
padding-right:.25rem!important
}
.px-md-2{
padding-left:.5rem!important;
padding-right:.5rem!important
}
.px-md-3{
padding-left:1rem!important;
padding-right:1rem!important
}
.px-md-4{
padding-left:1.5rem!important;
padding-right:1.5rem!important
}
.px-md-5{
padding-left:3rem!important;
padding-right:3rem!important
}
.py-md-0{
padding-bottom:0!important;
padding-top:0!important
}
.py-md-1{
padding-bottom:.25rem!important;
padding-top:.25rem!important
}
.py-md-2{
padding-bottom:.5rem!important;
padding-top:.5rem!important
}
.py-md-3{
padding-bottom:1rem!important;
padding-top:1rem!important
}
.py-md-4{
padding-bottom:1.5rem!important;
padding-top:1.5rem!important
}
.py-md-5{
padding-bottom:3rem!important;
padding-top:3rem!important
}
.pt-md-0{
padding-top:0!important
}
.pt-md-1{
padding-top:.25rem!important
}
.pt-md-2{
padding-top:.5rem!important
}
.pt-md-3{
padding-top:1rem!important
}
.pt-md-4{
padding-top:1.5rem!important
}
.pt-md-5{
padding-top:3rem!important
}
.pe-md-0{
padding-right:0!important
}
.pe-md-1{
padding-right:.25rem!important
}
.pe-md-2{
padding-right:.5rem!important
}
.pe-md-3{
padding-right:1rem!important
}
.pe-md-4{
padding-right:1.5rem!important
}
.pe-md-5{
padding-right:3rem!important
}
.pb-md-0{
padding-bottom:0!important
}
.pb-md-1{
padding-bottom:.25rem!important
}
.pb-md-2{
padding-bottom:.5rem!important
}
.pb-md-3{
padding-bottom:1rem!important
}
.pb-md-4{
padding-bottom:1.5rem!important
}
.pb-md-5{
padding-bottom:3rem!important
}
.ps-md-0{
padding-left:0!important
}
.ps-md-1{
padding-left:.25rem!important
}
.ps-md-2{
padding-left:.5rem!important
}
.ps-md-3{
padding-left:1rem!important
}
.ps-md-4{
padding-left:1.5rem!important
}
.ps-md-5{
padding-left:3rem!important
}

}
@media(min-width:992px){
.d-lg-inline{
display:inline!important
}
.d-lg-inline-block{
display:inline-block!important
}
.d-lg-block{
display:block!important
}
.d-lg-grid{
display:grid!important
}
.d-lg-table{
display:table!important
}
.d-lg-table-row{
display:table-row!important
}
.d-lg-table-cell{
display:table-cell!important
}
.d-lg-flex{
display:flex!important
}
.d-lg-inline-flex{
display:inline-flex!important
}
.d-lg-none{
display:none!important
}
.flex-lg-fill{
flex:auto!important
}
.flex-lg-row{
flex-direction:row!important
}
.flex-lg-column{
flex-direction:column!important
}
.flex-lg-row-reverse{
flex-direction:row-reverse!important
}
.flex-lg-column-reverse{
flex-direction:column-reverse!important
}
.flex-lg-grow-0{
flex-grow:0!important
}
.flex-lg-grow-1{
flex-grow:1!important
}
.flex-lg-shrink-0{
flex-shrink:0!important
}
.flex-lg-shrink-1{
flex-shrink:1!important
}
.flex-lg-wrap{
flex-wrap:wrap!important
}
.flex-lg-nowrap{
flex-wrap:nowrap!important
}
.flex-lg-wrap-reverse{
flex-wrap:wrap-reverse!important
}
.justify-content-lg-start{
justify-content:flex-start!important
}
.justify-content-lg-end{
justify-content:flex-end!important
}
.justify-content-lg-center{
justify-content:center!important
}
.justify-content-lg-between{
justify-content:space-between!important
}
.justify-content-lg-around{
justify-content:space-around!important
}
.justify-content-lg-evenly{
justify-content:space-evenly!important
}
.align-items-lg-start{
align-items:flex-start!important
}
.align-items-lg-end{
align-items:flex-end!important
}
.align-items-lg-center{
align-items:center!important
}
.align-items-lg-baseline{
align-items:baseline!important
}
.align-items-lg-stretch{
align-items:stretch!important
}
.align-content-lg-start{
align-content:flex-start!important
}
.align-content-lg-end{
align-content:flex-end!important
}
.align-content-lg-center{
align-content:center!important
}
.align-content-lg-between{
align-content:space-between!important
}
.align-content-lg-around{
align-content:space-around!important
}
.align-content-lg-stretch{
align-content:stretch!important
}
.align-self-lg-auto{
align-self:auto!important
}
.align-self-lg-start{
align-self:flex-start!important
}
.align-self-lg-end{
align-self:flex-end!important
}
.align-self-lg-center{
align-self:center!important
}
.align-self-lg-baseline{
align-self:baseline!important
}
.align-self-lg-stretch{
align-self:stretch!important
}
.order-lg-first{
order:-1!important
}
.order-lg-0{
order:0!important
}
.order-lg-1{
order:1!important
}
.order-lg-2{
order:2!important
}
.order-lg-3{
order:3!important
}
.order-lg-4{
order:4!important
}
.order-lg-5{
order:5!important
}
.order-lg-last{
order:6!important
}
.m-lg-0{
margin:0!important
}
.m-lg-1{
margin:.25rem!important
}
.m-lg-2{
margin:.5rem!important
}
.m-lg-3{
margin:1rem!important
}
.m-lg-4{
margin:1.5rem!important
}
.m-lg-5{
margin:3rem!important
}
.m-lg-auto{
margin:auto!important
}
.mx-lg-0{
margin-left:0!important;
margin-right:0!important
}
.mx-lg-1{
margin-left:.25rem!important;
margin-right:.25rem!important
}
.mx-lg-2{
margin-left:.5rem!important;
margin-right:.5rem!important
}
.mx-lg-3{
margin-left:1rem!important;
margin-right:1rem!important
}
.mx-lg-4{
margin-left:1.5rem!important;
margin-right:1.5rem!important
}
.mx-lg-5{
margin-left:3rem!important;
margin-right:3rem!important
}
.mx-lg-auto{
margin-left:auto!important;
margin-right:auto!important
}
.my-lg-0{
margin-bottom:0!important;
margin-top:0!important
}
.my-lg-1{
margin-bottom:.25rem!important;
margin-top:.25rem!important
}
.my-lg-2{
margin-bottom:.5rem!important;
margin-top:.5rem!important
}
.my-lg-3{
margin-bottom:1rem!important;
margin-top:1rem!important
}
.my-lg-4{
margin-bottom:1.5rem!important;
margin-top:1.5rem!important
}
.my-lg-5{
margin-bottom:3rem!important;
margin-top:3rem!important
}
.my-lg-auto{
margin-bottom:auto!important;
margin-top:auto!important
}
.mt-lg-0{
margin-top:0!important
}
.mt-lg-1{
margin-top:.25rem!important
}
.mt-lg-2{
margin-top:.5rem!important
}
.mt-lg-3{
margin-top:1rem!important
}
.mt-lg-4{
margin-top:1.5rem!important
}
.mt-lg-5{
margin-top:3rem!important
}
.mt-lg-auto{
margin-top:auto!important
}
.me-lg-0{
margin-right:0!important
}
.me-lg-1{
margin-right:.25rem!important
}
.me-lg-2{
margin-right:.5rem!important
}
.me-lg-3{
margin-right:1rem!important
}
.me-lg-4{
margin-right:1.5rem!important
}
.me-lg-5{
margin-right:3rem!important
}
.me-lg-auto{
margin-right:auto!important
}
.mb-lg-0{
margin-bottom:0!important
}
.mb-lg-1{
margin-bottom:.25rem!important
}
.mb-lg-2{
margin-bottom:.5rem!important
}
.mb-lg-3{
margin-bottom:1rem!important
}
.mb-lg-4{
margin-bottom:1.5rem!important
}
.mb-lg-5{
margin-bottom:3rem!important
}
.mb-lg-auto{
margin-bottom:auto!important
}
.ms-lg-0{
margin-left:0!important
}
.ms-lg-1{
margin-left:.25rem!important
}
.ms-lg-2{
margin-left:.5rem!important
}
.ms-lg-3{
margin-left:1rem!important
}
.ms-lg-4{
margin-left:1.5rem!important
}
.ms-lg-5{
margin-left:3rem!important
}
.ms-lg-auto{
margin-left:auto!important
}
.p-lg-0{
padding:0!important
}
.p-lg-1{
padding:.25rem!important
}
.p-lg-2{
padding:.5rem!important
}
.p-lg-3{
padding:1rem!important
}
.p-lg-4{
padding:1.5rem!important
}
.p-lg-5{
padding:3rem!important
}
.px-lg-0{
padding-left:0!important;
padding-right:0!important
}
.px-lg-1{
padding-left:.25rem!important;
padding-right:.25rem!important
}
.px-lg-2{
padding-left:.5rem!important;
padding-right:.5rem!important
}
.px-lg-3{
padding-left:1rem!important;
padding-right:1rem!important
}
.px-lg-4{
padding-left:1.5rem!important;
padding-right:1.5rem!important
}
.px-lg-5{
padding-left:3rem!important;
padding-right:3rem!important
}
.py-lg-0{
padding-bottom:0!important;
padding-top:0!important
}
.py-lg-1{
padding-bottom:.25rem!important;
padding-top:.25rem!important
}
.py-lg-2{
padding-bottom:.5rem!important;
padding-top:.5rem!important
}
.py-lg-3{
padding-bottom:1rem!important;
padding-top:1rem!important
}
.py-lg-4{
padding-bottom:1.5rem!important;
padding-top:1.5rem!important
}
.py-lg-5{
padding-bottom:3rem!important;
padding-top:3rem!important
}
.pt-lg-0{
padding-top:0!important
}
.pt-lg-1{
padding-top:.25rem!important
}
.pt-lg-2{
padding-top:.5rem!important
}
.pt-lg-3{
padding-top:1rem!important
}
.pt-lg-4{
padding-top:1.5rem!important
}
.pt-lg-5{
padding-top:3rem!important
}
.pe-lg-0{
padding-right:0!important
}
.pe-lg-1{
padding-right:.25rem!important
}
.pe-lg-2{
padding-right:.5rem!important
}
.pe-lg-3{
padding-right:1rem!important
}
.pe-lg-4{
padding-right:1.5rem!important
}
.pe-lg-5{
padding-right:3rem!important
}
.pb-lg-0{
padding-bottom:0!important
}
.pb-lg-1{
padding-bottom:.25rem!important
}
.pb-lg-2{
padding-bottom:.5rem!important
}
.pb-lg-3{
padding-bottom:1rem!important
}
.pb-lg-4{
padding-bottom:1.5rem!important
}
.pb-lg-5{
padding-bottom:3rem!important
}
.ps-lg-0{
padding-left:0!important
}
.ps-lg-1{
padding-left:.25rem!important
}
.ps-lg-2{
padding-left:.5rem!important
}
.ps-lg-3{
padding-left:1rem!important
}
.ps-lg-4{
padding-left:1.5rem!important
}
.ps-lg-5{
padding-left:3rem!important
}

}
@media(min-width:1200px){
.d-xl-inline{
display:inline!important
}
.d-xl-inline-block{
display:inline-block!important
}
.d-xl-block{
display:block!important
}
.d-xl-grid{
display:grid!important
}
.d-xl-table{
display:table!important
}
.d-xl-table-row{
display:table-row!important
}
.d-xl-table-cell{
display:table-cell!important
}
.d-xl-flex{
display:flex!important
}
.d-xl-inline-flex{
display:inline-flex!important
}
.d-xl-none{
display:none!important
}
.flex-xl-fill{
flex:auto!important
}
.flex-xl-row{
flex-direction:row!important
}
.flex-xl-column{
flex-direction:column!important
}
.flex-xl-row-reverse{
flex-direction:row-reverse!important
}
.flex-xl-column-reverse{
flex-direction:column-reverse!important
}
.flex-xl-grow-0{
flex-grow:0!important
}
.flex-xl-grow-1{
flex-grow:1!important
}
.flex-xl-shrink-0{
flex-shrink:0!important
}
.flex-xl-shrink-1{
flex-shrink:1!important
}
.flex-xl-wrap{
flex-wrap:wrap!important
}
.flex-xl-nowrap{
flex-wrap:nowrap!important
}
.flex-xl-wrap-reverse{
flex-wrap:wrap-reverse!important
}
.justify-content-xl-start{
justify-content:flex-start!important
}
.justify-content-xl-end{
justify-content:flex-end!important
}
.justify-content-xl-center{
justify-content:center!important
}
.justify-content-xl-between{
justify-content:space-between!important
}
.justify-content-xl-around{
justify-content:space-around!important
}
.justify-content-xl-evenly{
justify-content:space-evenly!important
}
.align-items-xl-start{
align-items:flex-start!important
}
.align-items-xl-end{
align-items:flex-end!important
}
.align-items-xl-center{
align-items:center!important
}
.align-items-xl-baseline{
align-items:baseline!important
}
.align-items-xl-stretch{
align-items:stretch!important
}
.align-content-xl-start{
align-content:flex-start!important
}
.align-content-xl-end{
align-content:flex-end!important
}
.align-content-xl-center{
align-content:center!important
}
.align-content-xl-between{
align-content:space-between!important
}
.align-content-xl-around{
align-content:space-around!important
}
.align-content-xl-stretch{
align-content:stretch!important
}
.align-self-xl-auto{
align-self:auto!important
}
.align-self-xl-start{
align-self:flex-start!important
}
.align-self-xl-end{
align-self:flex-end!important
}
.align-self-xl-center{
align-self:center!important
}
.align-self-xl-baseline{
align-self:baseline!important
}
.align-self-xl-stretch{
align-self:stretch!important
}
.order-xl-first{
order:-1!important
}
.order-xl-0{
order:0!important
}
.order-xl-1{
order:1!important
}
.order-xl-2{
order:2!important
}
.order-xl-3{
order:3!important
}
.order-xl-4{
order:4!important
}
.order-xl-5{
order:5!important
}
.order-xl-last{
order:6!important
}
.m-xl-0{
margin:0!important
}
.m-xl-1{
margin:.25rem!important
}
.m-xl-2{
margin:.5rem!important
}
.m-xl-3{
margin:1rem!important
}
.m-xl-4{
margin:1.5rem!important
}
.m-xl-5{
margin:3rem!important
}
.m-xl-auto{
margin:auto!important
}
.mx-xl-0{
margin-left:0!important;
margin-right:0!important
}
.mx-xl-1{
margin-left:.25rem!important;
margin-right:.25rem!important
}
.mx-xl-2{
margin-left:.5rem!important;
margin-right:.5rem!important
}
.mx-xl-3{
margin-left:1rem!important;
margin-right:1rem!important
}
.mx-xl-4{
margin-left:1.5rem!important;
margin-right:1.5rem!important
}
.mx-xl-5{
margin-left:3rem!important;
margin-right:3rem!important
}
.mx-xl-auto{
margin-left:auto!important;
margin-right:auto!important
}
.my-xl-0{
margin-bottom:0!important;
margin-top:0!important
}
.my-xl-1{
margin-bottom:.25rem!important;
margin-top:.25rem!important
}
.my-xl-2{
margin-bottom:.5rem!important;
margin-top:.5rem!important
}
.my-xl-3{
margin-bottom:1rem!important;
margin-top:1rem!important
}
.my-xl-4{
margin-bottom:1.5rem!important;
margin-top:1.5rem!important
}
.my-xl-5{
margin-bottom:3rem!important;
margin-top:3rem!important
}
.my-xl-auto{
margin-bottom:auto!important;
margin-top:auto!important
}
.mt-xl-0{
margin-top:0!important
}
.mt-xl-1{
margin-top:.25rem!important
}
.mt-xl-2{
margin-top:.5rem!important
}
.mt-xl-3{
margin-top:1rem!important
}
.mt-xl-4{
margin-top:1.5rem!important
}
.mt-xl-5{
margin-top:3rem!important
}
.mt-xl-auto{
margin-top:auto!important
}
.me-xl-0{
margin-right:0!important
}
.me-xl-1{
margin-right:.25rem!important
}
.me-xl-2{
margin-right:.5rem!important
}
.me-xl-3{
margin-right:1rem!important
}
.me-xl-4{
margin-right:1.5rem!important
}
.me-xl-5{
margin-right:3rem!important
}
.me-xl-auto{
margin-right:auto!important
}
.mb-xl-0{
margin-bottom:0!important
}
.mb-xl-1{
margin-bottom:.25rem!important
}
.mb-xl-2{
margin-bottom:.5rem!important
}
.mb-xl-3{
margin-bottom:1rem!important
}
.mb-xl-4{
margin-bottom:1.5rem!important
}
.mb-xl-5{
margin-bottom:3rem!important
}
.mb-xl-auto{
margin-bottom:auto!important
}
.ms-xl-0{
margin-left:0!important
}
.ms-xl-1{
margin-left:.25rem!important
}
.ms-xl-2{
margin-left:.5rem!important
}
.ms-xl-3{
margin-left:1rem!important
}
.ms-xl-4{
margin-left:1.5rem!important
}
.ms-xl-5{
margin-left:3rem!important
}
.ms-xl-auto{
margin-left:auto!important
}
.p-xl-0{
padding:0!important
}
.p-xl-1{
padding:.25rem!important
}
.p-xl-2{
padding:.5rem!important
}
.p-xl-3{
padding:1rem!important
}
.p-xl-4{
padding:1.5rem!important
}
.p-xl-5{
padding:3rem!important
}
.px-xl-0{
padding-left:0!important;
padding-right:0!important
}
.px-xl-1{
padding-left:.25rem!important;
padding-right:.25rem!important
}
.px-xl-2{
padding-left:.5rem!important;
padding-right:.5rem!important
}
.px-xl-3{
padding-left:1rem!important;
padding-right:1rem!important
}
.px-xl-4{
padding-left:1.5rem!important;
padding-right:1.5rem!important
}
.px-xl-5{
padding-left:3rem!important;
padding-right:3rem!important
}
.py-xl-0{
padding-bottom:0!important;
padding-top:0!important
}
.py-xl-1{
padding-bottom:.25rem!important;
padding-top:.25rem!important
}
.py-xl-2{
padding-bottom:.5rem!important;
padding-top:.5rem!important
}
.py-xl-3{
padding-bottom:1rem!important;
padding-top:1rem!important
}
.py-xl-4{
padding-bottom:1.5rem!important;
padding-top:1.5rem!important
}
.py-xl-5{
padding-bottom:3rem!important;
padding-top:3rem!important
}
.pt-xl-0{
padding-top:0!important
}
.pt-xl-1{
padding-top:.25rem!important
}
.pt-xl-2{
padding-top:.5rem!important
}
.pt-xl-3{
padding-top:1rem!important
}
.pt-xl-4{
padding-top:1.5rem!important
}
.pt-xl-5{
padding-top:3rem!important
}
.pe-xl-0{
padding-right:0!important
}
.pe-xl-1{
padding-right:.25rem!important
}
.pe-xl-2{
padding-right:.5rem!important
}
.pe-xl-3{
padding-right:1rem!important
}
.pe-xl-4{
padding-right:1.5rem!important
}
.pe-xl-5{
padding-right:3rem!important
}
.pb-xl-0{
padding-bottom:0!important
}
.pb-xl-1{
padding-bottom:.25rem!important
}
.pb-xl-2{
padding-bottom:.5rem!important
}
.pb-xl-3{
padding-bottom:1rem!important
}
.pb-xl-4{
padding-bottom:1.5rem!important
}
.pb-xl-5{
padding-bottom:3rem!important
}
.ps-xl-0{
padding-left:0!important
}
.ps-xl-1{
padding-left:.25rem!important
}
.ps-xl-2{
padding-left:.5rem!important
}
.ps-xl-3{
padding-left:1rem!important
}
.ps-xl-4{
padding-left:1.5rem!important
}
.ps-xl-5{
padding-left:3rem!important
}

}
@media(min-width:1400px){
.d-xxl-inline{
display:inline!important
}
.d-xxl-inline-block{
display:inline-block!important
}
.d-xxl-block{
display:block!important
}
.d-xxl-grid{
display:grid!important
}
.d-xxl-table{
display:table!important
}
.d-xxl-table-row{
display:table-row!important
}
.d-xxl-table-cell{
display:table-cell!important
}
.d-xxl-flex{
display:flex!important
}
.d-xxl-inline-flex{
display:inline-flex!important
}
.d-xxl-none{
display:none!important
}
.flex-xxl-fill{
flex:auto!important
}
.flex-xxl-row{
flex-direction:row!important
}
.flex-xxl-column{
flex-direction:column!important
}
.flex-xxl-row-reverse{
flex-direction:row-reverse!important
}
.flex-xxl-column-reverse{
flex-direction:column-reverse!important
}
.flex-xxl-grow-0{
flex-grow:0!important
}
.flex-xxl-grow-1{
flex-grow:1!important
}
.flex-xxl-shrink-0{
flex-shrink:0!important
}
.flex-xxl-shrink-1{
flex-shrink:1!important
}
.flex-xxl-wrap{
flex-wrap:wrap!important
}
.flex-xxl-nowrap{
flex-wrap:nowrap!important
}
.flex-xxl-wrap-reverse{
flex-wrap:wrap-reverse!important
}
.justify-content-xxl-start{
justify-content:flex-start!important
}
.justify-content-xxl-end{
justify-content:flex-end!important
}
.justify-content-xxl-center{
justify-content:center!important
}
.justify-content-xxl-between{
justify-content:space-between!important
}
.justify-content-xxl-around{
justify-content:space-around!important
}
.justify-content-xxl-evenly{
justify-content:space-evenly!important
}
.align-items-xxl-start{
align-items:flex-start!important
}
.align-items-xxl-end{
align-items:flex-end!important
}
.align-items-xxl-center{
align-items:center!important
}
.align-items-xxl-baseline{
align-items:baseline!important
}
.align-items-xxl-stretch{
align-items:stretch!important
}
.align-content-xxl-start{
align-content:flex-start!important
}
.align-content-xxl-end{
align-content:flex-end!important
}
.align-content-xxl-center{
align-content:center!important
}
.align-content-xxl-between{
align-content:space-between!important
}
.align-content-xxl-around{
align-content:space-around!important
}
.align-content-xxl-stretch{
align-content:stretch!important
}
.align-self-xxl-auto{
align-self:auto!important
}
.align-self-xxl-start{
align-self:flex-start!important
}
.align-self-xxl-end{
align-self:flex-end!important
}
.align-self-xxl-center{
align-self:center!important
}
.align-self-xxl-baseline{
align-self:baseline!important
}
.align-self-xxl-stretch{
align-self:stretch!important
}
.order-xxl-first{
order:-1!important
}
.order-xxl-0{
order:0!important
}
.order-xxl-1{
order:1!important
}
.order-xxl-2{
order:2!important
}
.order-xxl-3{
order:3!important
}
.order-xxl-4{
order:4!important
}
.order-xxl-5{
order:5!important
}
.order-xxl-last{
order:6!important
}
.m-xxl-0{
margin:0!important
}
.m-xxl-1{
margin:.25rem!important
}
.m-xxl-2{
margin:.5rem!important
}
.m-xxl-3{
margin:1rem!important
}
.m-xxl-4{
margin:1.5rem!important
}
.m-xxl-5{
margin:3rem!important
}
.m-xxl-auto{
margin:auto!important
}
.mx-xxl-0{
margin-left:0!important;
margin-right:0!important
}
.mx-xxl-1{
margin-left:.25rem!important;
margin-right:.25rem!important
}
.mx-xxl-2{
margin-left:.5rem!important;
margin-right:.5rem!important
}
.mx-xxl-3{
margin-left:1rem!important;
margin-right:1rem!important
}
.mx-xxl-4{
margin-left:1.5rem!important;
margin-right:1.5rem!important
}
.mx-xxl-5{
margin-left:3rem!important;
margin-right:3rem!important
}
.mx-xxl-auto{
margin-left:auto!important;
margin-right:auto!important
}
.my-xxl-0{
margin-bottom:0!important;
margin-top:0!important
}
.my-xxl-1{
margin-bottom:.25rem!important;
margin-top:.25rem!important
}
.my-xxl-2{
margin-bottom:.5rem!important;
margin-top:.5rem!important
}
.my-xxl-3{
margin-bottom:1rem!important;
margin-top:1rem!important
}
.my-xxl-4{
margin-bottom:1.5rem!important;
margin-top:1.5rem!important
}
.my-xxl-5{
margin-bottom:3rem!important;
margin-top:3rem!important
}
.my-xxl-auto{
margin-bottom:auto!important;
margin-top:auto!important
}
.mt-xxl-0{
margin-top:0!important
}
.mt-xxl-1{
margin-top:.25rem!important
}
.mt-xxl-2{
margin-top:.5rem!important
}
.mt-xxl-3{
margin-top:1rem!important
}
.mt-xxl-4{
margin-top:1.5rem!important
}
.mt-xxl-5{
margin-top:3rem!important
}
.mt-xxl-auto{
margin-top:auto!important
}
.me-xxl-0{
margin-right:0!important
}
.me-xxl-1{
margin-right:.25rem!important
}
.me-xxl-2{
margin-right:.5rem!important
}
.me-xxl-3{
margin-right:1rem!important
}
.me-xxl-4{
margin-right:1.5rem!important
}
.me-xxl-5{
margin-right:3rem!important
}
.me-xxl-auto{
margin-right:auto!important
}
.mb-xxl-0{
margin-bottom:0!important
}
.mb-xxl-1{
margin-bottom:.25rem!important
}
.mb-xxl-2{
margin-bottom:.5rem!important
}
.mb-xxl-3{
margin-bottom:1rem!important
}
.mb-xxl-4{
margin-bottom:1.5rem!important
}
.mb-xxl-5{
margin-bottom:3rem!important
}
.mb-xxl-auto{
margin-bottom:auto!important
}
.ms-xxl-0{
margin-left:0!important
}
.ms-xxl-1{
margin-left:.25rem!important
}
.ms-xxl-2{
margin-left:.5rem!important
}
.ms-xxl-3{
margin-left:1rem!important
}
.ms-xxl-4{
margin-left:1.5rem!important
}
.ms-xxl-5{
margin-left:3rem!important
}
.ms-xxl-auto{
margin-left:auto!important
}
.p-xxl-0{
padding:0!important
}
.p-xxl-1{
padding:.25rem!important
}
.p-xxl-2{
padding:.5rem!important
}
.p-xxl-3{
padding:1rem!important
}
.p-xxl-4{
padding:1.5rem!important
}
.p-xxl-5{
padding:3rem!important
}
.px-xxl-0{
padding-left:0!important;
padding-right:0!important
}
.px-xxl-1{
padding-left:.25rem!important;
padding-right:.25rem!important
}
.px-xxl-2{
padding-left:.5rem!important;
padding-right:.5rem!important
}
.px-xxl-3{
padding-left:1rem!important;
padding-right:1rem!important
}
.px-xxl-4{
padding-left:1.5rem!important;
padding-right:1.5rem!important
}
.px-xxl-5{
padding-left:3rem!important;
padding-right:3rem!important
}
.py-xxl-0{
padding-bottom:0!important;
padding-top:0!important
}
.py-xxl-1{
padding-bottom:.25rem!important;
padding-top:.25rem!important
}
.py-xxl-2{
padding-bottom:.5rem!important;
padding-top:.5rem!important
}
.py-xxl-3{
padding-bottom:1rem!important;
padding-top:1rem!important
}
.py-xxl-4{
padding-bottom:1.5rem!important;
padding-top:1.5rem!important
}
.py-xxl-5{
padding-bottom:3rem!important;
padding-top:3rem!important
}
.pt-xxl-0{
padding-top:0!important
}
.pt-xxl-1{
padding-top:.25rem!important
}
.pt-xxl-2{
padding-top:.5rem!important
}
.pt-xxl-3{
padding-top:1rem!important
}
.pt-xxl-4{
padding-top:1.5rem!important
}
.pt-xxl-5{
padding-top:3rem!important
}
.pe-xxl-0{
padding-right:0!important
}
.pe-xxl-1{
padding-right:.25rem!important
}
.pe-xxl-2{
padding-right:.5rem!important
}
.pe-xxl-3{
padding-right:1rem!important
}
.pe-xxl-4{
padding-right:1.5rem!important
}
.pe-xxl-5{
padding-right:3rem!important
}
.pb-xxl-0{
padding-bottom:0!important
}
.pb-xxl-1{
padding-bottom:.25rem!important
}
.pb-xxl-2{
padding-bottom:.5rem!important
}
.pb-xxl-3{
padding-bottom:1rem!important
}
.pb-xxl-4{
padding-bottom:1.5rem!important
}
.pb-xxl-5{
padding-bottom:3rem!important
}
.ps-xxl-0{
padding-left:0!important
}
.ps-xxl-1{
padding-left:.25rem!important
}
.ps-xxl-2{
padding-left:.5rem!important
}
.ps-xxl-3{
padding-left:1rem!important
}
.ps-xxl-4{
padding-left:1.5rem!important
}
.ps-xxl-5{
padding-left:3rem!important
}

}
/*!* Bootstrap Utilities v5.1.3 (https://getbootstrap.com/)
* Copyright 2011-2021 The Bootstrap Authors
* Copyright 2011-2021 Twitter, Inc.
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)*/.clearfix:after{
clear:both;
  content: "";
  display: block;
}
.link-primary {
  color: #0d6efd;
}
.link-primary:focus, .link-primary:hover {
  color: #0a58ca;
}
.link-secondary {
  color: #6c757d;
}
.link-secondary:focus, .link-secondary:hover {
  color: #565e64;
}
.link-success {
  color: #198754;
}
.link-success:focus, .link-success:hover {
  color: #146c43;
}
.link-info {
  color: #0dcaf0;
}
.link-info:focus, .link-info:hover {
  color: #3dd5f3;
}
.link-warning {
  color: #ffc107;
}
.link-warning:focus, .link-warning:hover {
  color: #ffcd39;
}
.link-danger {
  color: #dc3545;
}
.link-danger:focus, .link-danger:hover {
  color: #b02a37;
}
.link-light {
  color: #f8f9fa;
}
.link-light:focus, .link-light:hover {
  color: #f9fafb;
}
.link-dark {
  color: #212529;
}
.link-dark:focus, .link-dark:hover {
  color: #1a1e21;
}
.ratio {
  position: relative;
  width: 100%;
}
.ratio:before {
  content: "";
  display: block;
  padding-top: var(--bs-aspect-ratio);
}
.ratio > * {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.ratio-1x1 {
  --bs-aspect-ratio:100%
}
.ratio-4x3{
--bs-aspect-ratio:75%
}
.ratio-16x9{
--bs-aspect-ratio:56.25%
}
.ratio-21x9{
--bs-aspect-ratio:42.8571428571%
}
.fixed-top{
top:0
}
.fixed-bottom,.fixed-top{
left:0;
  position: fixed;
  right: 0;
  z-index: 1030;
}
.fixed-bottom {
  bottom: 0;
}
.sticky-top {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 1020;
}
@media (min-width: 576px) {
  .sticky-sm-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
@media (min-width: 768px) {
  .sticky-md-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
@media (min-width: 992px) {
  .sticky-lg-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
@media (min-width: 1200px) {
  .sticky-xl-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
@media (min-width: 1400px) {
  .sticky-xxl-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
.hstack {
  align-items: center;
  flex-direction: row;
}
.hstack, .vstack {
  align-self: stretch;
  display: flex;
}
.vstack {
  flex: auto;
  flex-direction: column;
}
.visually-hidden, .visually-hidden-focusable:not(:focus):not(:focus-within) {
  clip: rect(0, 0, 0, 0) !important;
  border: 0 !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
}
.stretched-link:after {
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}
.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.vr {
  align-self: stretch;
  background-color: currentColor;
  display: inline-block;
  min-height: 1em;
  opacity: 0.25;
  width: 1px;
}
.align-baseline {
  vertical-align: baseline !important;
}
.align-top {
  vertical-align: top !important;
}
.align-middle {
  vertical-align: middle !important;
}
.align-bottom {
  vertical-align: bottom !important;
}
.align-text-bottom {
  vertical-align: text-bottom !important;
}
.align-text-top {
  vertical-align: text-top !important;
}
.float-start {
  float: left !important;
}
.float-end {
  float: right !important;
}
.float-none {
  float: none !important;
}
.opacity-0 {
  opacity: 0 !important;
}
.opacity-25 {
  opacity: 0.25 !important;
}
.opacity-50 {
  opacity: 0.5 !important;
}
.opacity-75 {
  opacity: 0.75 !important;
}
.opacity-100 {
  opacity: 1 !important;
}
.overflow-auto {
  overflow: auto !important;
}
.overflow-hidden {
  overflow: hidden !important;
}
.overflow-visible {
  overflow: visible !important;
}
.overflow-scroll {
  overflow: scroll !important;
}
.d-inline {
  display: inline !important;
}
.d-inline-block {
  display: inline-block !important;
}
.d-block {
  display: block !important;
}
.d-grid {
  display: grid !important;
}
.d-table {
  display: table !important;
}
.d-table-row {
  display: table-row !important;
}
.d-table-cell {
  display: table-cell !important;
}
.d-flex {
  display: flex !important;
}
.d-inline-flex {
  display: inline-flex !important;
}
.d-none {
  display: none !important;
}
.shadow {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}
.shadow-sm {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}
.shadow-lg {
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}
.shadow-none {
  box-shadow: none !important;
}
.position-static {
  position: static !important;
}
.position-relative {
  position: relative !important;
}
.position-absolute {
  position: absolute !important;
}
.position-fixed {
  position: fixed !important;
}
.position-sticky {
  position: -webkit-sticky !important;
  position: sticky !important;
}
.top-0 {
  top: 0 !important;
}
.top-50 {
  top: 50% !important;
}
.top-100 {
  top: 100% !important;
}
.bottom-0 {
  bottom: 0 !important;
}
.bottom-50 {
  bottom: 50% !important;
}
.bottom-100 {
  bottom: 100% !important;
}
.start-0 {
  left: 0 !important;
}
.start-50 {
  left: 50% !important;
}
.start-100 {
  left: 100% !important;
}
.end-0 {
  right: 0 !important;
}
.end-50 {
  right: 50% !important;
}
.end-100 {
  right: 100% !important;
}
.translate-middle {
  transform: translate(-50%, -50%) !important;
}
.translate-middle-x {
  transform: translateX(-50%) !important;
}
.translate-middle-y {
  transform: translateY(-50%) !important;
}
.border {
  border: 1px solid #dee2e6 !important;
}
.border-0 {
  border: 0 !important;
}
.border-top {
  border-top: 1px solid #dee2e6 !important;
}
.border-top-0 {
  border-top: 0 !important;
}
.border-end {
  border-right: 1px solid #dee2e6 !important;
}
.border-end-0 {
  border-right: 0 !important;
}
.border-bottom {
  border-bottom: 1px solid #dee2e6 !important;
}
.border-bottom-0 {
  border-bottom: 0 !important;
}
.border-start {
  border-left: 1px solid #dee2e6 !important;
}
.border-start-0 {
  border-left: 0 !important;
}
.border-primary {
  border-color: #0d6efd !important;
}
.border-secondary {
  border-color: #6c757d !important;
}
.border-success {
  border-color: #198754 !important;
}
.border-info {
  border-color: #0dcaf0 !important;
}
.border-warning {
  border-color: #ffc107 !important;
}
.border-danger {
  border-color: #dc3545 !important;
}
.border-light {
  border-color: #f8f9fa !important;
}
.border-dark {
  border-color: #212529 !important;
}
.border-white {
  border-color: #fff !important;
}
.border-1 {
  border-width: 1px !important;
}
.border-2 {
  border-width: 2px !important;
}
.border-3 {
  border-width: 3px !important;
}
.border-4 {
  border-width: 4px !important;
}
.border-5 {
  border-width: 5px !important;
}
.w-25 {
  width: 25% !important;
}
.w-50 {
  width: 50% !important;
}
.w-75 {
  width: 75% !important;
}
.w-100 {
  width: 100% !important;
}
.w-auto {
  width: auto !important;
}
.mw-100 {
  max-width: 100% !important;
}
.vw-100 {
  width: 100vw !important;
}
.min-vw-100 {
  min-width: 100vw !important;
}
.h-25 {
  height: 25% !important;
}
.h-50 {
  height: 50% !important;
}
.h-75 {
  height: 75% !important;
}
.h-100 {
  height: 100% !important;
}
.h-auto {
  height: auto !important;
}
.mh-100 {
  max-height: 100% !important;
}
.vh-100 {
  height: 100vh !important;
}
.min-vh-100 {
  min-height: 100vh !important;
}
.flex-fill {
  flex: auto !important;
}
.flex-row {
  flex-direction: row !important;
}
.flex-column {
  flex-direction: column !important;
}
.flex-row-reverse {
  flex-direction: row-reverse !important;
}
.flex-column-reverse {
  flex-direction: column-reverse !important;
}
.flex-grow-0 {
  flex-grow: 0 !important;
}
.flex-grow-1 {
  flex-grow: 1 !important;
}
.flex-shrink-0 {
  flex-shrink: 0 !important;
}
.flex-shrink-1 {
  flex-shrink: 1 !important;
}
.flex-wrap {
  flex-wrap: wrap !important;
}
.flex-nowrap {
  flex-wrap: nowrap !important;
}
.flex-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}
.gap-0 {
  gap: 0 !important;
}
.gap-1 {
  gap: 0.25rem !important;
}
.gap-2 {
  gap: 0.5rem !important;
}
.gap-3 {
  gap: 1rem !important;
}
.gap-4 {
  gap: 1.5rem !important;
}
.gap-5 {
  gap: 3rem !important;
}
.justify-content-start {
  justify-content: flex-start !important;
}
.justify-content-end {
  justify-content: flex-end !important;
}
.justify-content-center {
  justify-content: center !important;
}
.justify-content-between {
  justify-content: space-between !important;
}
.justify-content-around {
  justify-content: space-around !important;
}
.justify-content-evenly {
  justify-content: space-evenly !important;
}
.align-items-start {
  align-items: flex-start !important;
}
.align-items-end {
  align-items: flex-end !important;
}
.align-items-center {
  align-items: center !important;
}
.align-items-baseline {
  align-items: baseline !important;
}
.align-items-stretch {
  align-items: stretch !important;
}
.align-content-start {
  align-content: flex-start !important;
}
.align-content-end {
  align-content: flex-end !important;
}
.align-content-center {
  align-content: center !important;
}
.align-content-between {
  align-content: space-between !important;
}
.align-content-around {
  align-content: space-around !important;
}
.align-content-stretch {
  align-content: stretch !important;
}
.align-self-auto {
  align-self: auto !important;
}
.align-self-start {
  align-self: flex-start !important;
}
.align-self-end {
  align-self: flex-end !important;
}
.align-self-center {
  align-self: center !important;
}
.align-self-baseline {
  align-self: baseline !important;
}
.align-self-stretch {
  align-self: stretch !important;
}
.order-first {
  order: -1 !important;
}
.order-0 {
  order: 0 !important;
}
.order-1 {
  order: 1 !important;
}
.order-2 {
  order: 2 !important;
}
.order-3 {
  order: 3 !important;
}
.order-4 {
  order: 4 !important;
}
.order-5 {
  order: 5 !important;
}
.order-last {
  order: 6 !important;
}
.m-0 {
  margin: 0 !important;
}
.m-1 {
  margin: 0.25rem !important;
}
.m-2 {
  margin: 0.5rem !important;
}
.m-3 {
  margin: 1rem !important;
}
.m-4 {
  margin: 1.5rem !important;
}
.m-5 {
  margin: 3rem !important;
}
.m-auto {
  margin: auto !important;
}
.mx-0 {
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.mx-1 {
  margin-left: 0.25rem !important;
  margin-right: 0.25rem !important;
}
.mx-2 {
  margin-left: 0.5rem !important;
  margin-right: 0.5rem !important;
}
.mx-3 {
  margin-left: 1rem !important;
  margin-right: 1rem !important;
}
.mx-4 {
  margin-left: 1.5rem !important;
  margin-right: 1.5rem !important;
}
.mx-5 {
  margin-left: 3rem !important;
  margin-right: 3rem !important;
}
.mx-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}
.my-0 {
  margin-bottom: 0 !important;
  margin-top: 0 !important;
}
.my-1 {
  margin-bottom: 0.25rem !important;
  margin-top: 0.25rem !important;
}
.my-2 {
  margin-bottom: 0.5rem !important;
  margin-top: 0.5rem !important;
}
.my-3 {
  margin-bottom: 1rem !important;
  margin-top: 1rem !important;
}
.my-4 {
  margin-bottom: 1.5rem !important;
  margin-top: 1.5rem !important;
}
.my-5 {
  margin-bottom: 3rem !important;
  margin-top: 3rem !important;
}
.my-auto {
  margin-bottom: auto !important;
  margin-top: auto !important;
}
.mt-0 {
  margin-top: 0 !important;
}
.mt-1 {
  margin-top: 0.25rem !important;
}
.mt-2 {
  margin-top: 0.5rem !important;
}
.mt-3 {
  margin-top: 1rem !important;
}
.mt-4 {
  margin-top: 1.5rem !important;
}
.mt-5 {
  margin-top: 3rem !important;
}
.mt-auto {
  margin-top: auto !important;
}
.me-0 {
  margin-right: 0 !important;
}
.me-1 {
  margin-right: 0.25rem !important;
}
.me-2 {
  margin-right: 0.5rem !important;
}
.me-3 {
  margin-right: 1rem !important;
}
.me-4 {
  margin-right: 1.5rem !important;
}
.me-5 {
  margin-right: 3rem !important;
}
.me-auto {
  margin-right: auto !important;
}
.mb-0 {
  margin-bottom: 0 !important;
}
.mb-1 {
  margin-bottom: 0.25rem !important;
}
.mb-2 {
  margin-bottom: 0.5rem !important;
}
.mb-3 {
  margin-bottom: 1rem !important;
}
.mb-4 {
  margin-bottom: 1.5rem !important;
}
.mb-5 {
  margin-bottom: 3rem !important;
}
.mb-auto {
  margin-bottom: auto !important;
}
.ms-0 {
  margin-left: 0 !important;
}
.ms-1 {
  margin-left: 0.25rem !important;
}
.ms-2 {
  margin-left: 0.5rem !important;
}
.ms-3 {
  margin-left: 1rem !important;
}
.ms-4 {
  margin-left: 1.5rem !important;
}
.ms-5 {
  margin-left: 3rem !important;
}
.ms-auto {
  margin-left: auto !important;
}
.p-0 {
  padding: 0 !important;
}
.p-1 {
  padding: 0.25rem !important;
}
.p-2 {
  padding: 0.5rem !important;
}
.p-3 {
  padding: 1rem !important;
}
.p-4 {
  padding: 1.5rem !important;
}
.p-5 {
  padding: 3rem !important;
}
.px-0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.px-1 {
  padding-left: 0.25rem !important;
  padding-right: 0.25rem !important;
}
.px-2 {
  padding-left: 0.5rem !important;
  padding-right: 0.5rem !important;
}
.px-3 {
  padding-left: 1rem !important;
  padding-right: 1rem !important;
}
.px-4 {
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
}
.px-5 {
  padding-left: 3rem !important;
  padding-right: 3rem !important;
}
.py-0 {
  padding-bottom: 0 !important;
  padding-top: 0 !important;
}
.py-1 {
  padding-bottom: 0.25rem !important;
  padding-top: 0.25rem !important;
}
.py-2 {
  padding-bottom: 0.5rem !important;
  padding-top: 0.5rem !important;
}
.py-3 {
  padding-bottom: 1rem !important;
  padding-top: 1rem !important;
}
.py-4 {
  padding-bottom: 1.5rem !important;
  padding-top: 1.5rem !important;
}
.py-5 {
  padding-bottom: 3rem !important;
  padding-top: 3rem !important;
}
.pt-0 {
  padding-top: 0 !important;
}
.pt-1 {
  padding-top: 0.25rem !important;
}
.pt-2 {
  padding-top: 0.5rem !important;
}
.pt-3 {
  padding-top: 1rem !important;
}
.pt-4 {
  padding-top: 1.5rem !important;
}
.pt-5 {
  padding-top: 3rem !important;
}
.pe-0 {
  padding-right: 0 !important;
}
.pe-1 {
  padding-right: 0.25rem !important;
}
.pe-2 {
  padding-right: 0.5rem !important;
}
.pe-3 {
  padding-right: 1rem !important;
}
.pe-4 {
  padding-right: 1.5rem !important;
}
.pe-5 {
  padding-right: 3rem !important;
}
.pb-0 {
  padding-bottom: 0 !important;
}
.pb-1 {
  padding-bottom: 0.25rem !important;
}
.pb-2 {
  padding-bottom: 0.5rem !important;
}
.pb-3 {
  padding-bottom: 1rem !important;
}
.pb-4 {
  padding-bottom: 1.5rem !important;
}
.pb-5 {
  padding-bottom: 3rem !important;
}
.ps-0 {
  padding-left: 0 !important;
}
.ps-1 {
  padding-left: 0.25rem !important;
}
.ps-2 {
  padding-left: 0.5rem !important;
}
.ps-3 {
  padding-left: 1rem !important;
}
.ps-4 {
  padding-left: 1.5rem !important;
}
.ps-5 {
  padding-left: 3rem !important;
}
.font-monospace {
  font-family: var(--bs-font-monospace) !important;
}
.fs-1 {
  font-size: calc(1.375rem + 1.5vw) !important;
}
.fs-2 {
  font-size: calc(1.325rem + .9vw) !important;
}
.fs-3 {
  font-size: calc(1.3rem + .6vw) !important;
}
.fs-4 {
  font-size: calc(1.275rem + .3vw) !important;
}
.fs-5 {
  font-size: 1.25rem !important;
}
.fs-6 {
  font-size: 1rem !important;
}
.fst-italic {
  font-style: italic !important;
}
.fst-normal {
  font-style: normal !important;
}
.fw-light {
  font-weight: 300 !important;
}
.fw-lighter {
  font-weight: lighter !important;
}
.fw-normal {
  font-weight: 400 !important;
}
.fw-bold {
  font-weight: 700 !important;
}
.fw-bolder {
  font-weight: bolder !important;
}
.lh-1 {
  line-height: 1 !important;
}
.lh-sm {
  line-height: 1.25 !important;
}
.lh-base {
  line-height: 1.5 !important;
}
.lh-lg {
  line-height: 2 !important;
}
.text-start {
  text-align: left !important;
}
.text-end {
  text-align: right !important;
}
.text-center {
  text-align: center !important;
}
.text-decoration-none {
  text-decoration: none !important;
}
.text-decoration-underline {
  text-decoration: underline !important;
}
.text-decoration-line-through {
  text-decoration: line-through !important;
}
.text-lowercase {
  text-transform: lowercase !important;
}
.text-uppercase {
  text-transform: uppercase !important;
}
.text-capitalize {
  text-transform: capitalize !important;
}
.text-wrap {
  white-space: normal !important;
}
.text-nowrap {
  white-space: nowrap !important;
}
.text-break {
  word-wrap: break-word !important;
  word-break: break-word !important;
}
.text-primary {
  --bs-text-opacity:1;
  color: rgba(var(--bs-primary-rgb), var(--bs-text-opacity)) !important;
}
.text-secondary {
  --bs-text-opacity:1;
  color: rgba(var(--bs-secondary-rgb), var(--bs-text-opacity)) !important;
}
.text-success {
  --bs-text-opacity:1;
  color: rgba(var(--bs-success-rgb), var(--bs-text-opacity)) !important;
}
.text-info {
  --bs-text-opacity:1;
  color: rgba(var(--bs-info-rgb), var(--bs-text-opacity)) !important;
}
.text-warning {
  --bs-text-opacity:1;
  color: rgba(var(--bs-warning-rgb), var(--bs-text-opacity)) !important;
}
.text-danger {
  --bs-text-opacity:1;
  color: rgba(var(--bs-danger-rgb), var(--bs-text-opacity)) !important;
}
.text-light {
  --bs-text-opacity:1;
  color: rgba(var(--bs-light-rgb), var(--bs-text-opacity)) !important;
}
.text-dark {
  --bs-text-opacity:1;
  color: rgba(var(--bs-dark-rgb), var(--bs-text-opacity)) !important;
}
.text-black {
  --bs-text-opacity:1;
  color: rgba(var(--bs-black-rgb), var(--bs-text-opacity)) !important;
}
.text-white {
  --bs-text-opacity:1;
  color: rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important;
}
.text-body {
  --bs-text-opacity:1;
  color: rgba(var(--bs-body-color-rgb), var(--bs-text-opacity)) !important;
}
.text-muted {
  --bs-text-opacity:1;
  color: #6c757d !important;
}
.text-black-50 {
  --bs-text-opacity:1;
  color: rgba(0, 0, 0, 0.5) !important;
}
.text-white-50 {
  --bs-text-opacity:1;
  color: rgba(255, 255, 255, 0.5) !important;
}
.text-reset {
  --bs-text-opacity:1;
  color: inherit !important;
}
.text-opacity-25 {
  --bs-text-opacity:0.25
}
.text-opacity-50{
--bs-text-opacity:0.5
}
.text-opacity-75{
--bs-text-opacity:0.75
}
.text-opacity-100{
--bs-text-opacity:1
}
.bg-primary{
--bs-bg-opacity:1;
  background-color: rgba(var(--bs-primary-rgb), var(--bs-bg-opacity)) !important;
}
.bg-secondary {
  --bs-bg-opacity:1;
  background-color: rgba(var(--bs-secondary-rgb), var(--bs-bg-opacity)) !important;
}
.bg-success {
  --bs-bg-opacity:1;
  background-color: rgba(var(--bs-success-rgb), var(--bs-bg-opacity)) !important;
}
.bg-info {
  --bs-bg-opacity:1;
  background-color: rgba(var(--bs-info-rgb), var(--bs-bg-opacity)) !important;
}
.bg-warning {
  --bs-bg-opacity:1;
  background-color: rgba(var(--bs-warning-rgb), var(--bs-bg-opacity)) !important;
}
.bg-danger {
  --bs-bg-opacity:1;
  background-color: rgba(var(--bs-danger-rgb), var(--bs-bg-opacity)) !important;
}
.bg-light {
  --bs-bg-opacity:1;
  background-color: rgba(var(--bs-light-rgb), var(--bs-bg-opacity)) !important;
}
.bg-dark {
  --bs-bg-opacity:1;
  background-color: rgba(var(--bs-dark-rgb), var(--bs-bg-opacity)) !important;
}
.bg-black {
  --bs-bg-opacity:1;
  background-color: rgba(var(--bs-black-rgb), var(--bs-bg-opacity)) !important;
}
.bg-white {
  --bs-bg-opacity:1;
  background-color: rgba(var(--bs-white-rgb), var(--bs-bg-opacity)) !important;
}
.bg-body {
  --bs-bg-opacity:1;
  background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important;
}
.bg-transparent {
  --bs-bg-opacity:1;
  background-color: initial !important;
}
.bg-opacity-10 {
  --bs-bg-opacity:0.1
}
.bg-opacity-25{
--bs-bg-opacity:0.25
}
.bg-opacity-50{
--bs-bg-opacity:0.5
}
.bg-opacity-75{
--bs-bg-opacity:0.75
}
.bg-opacity-100{
--bs-bg-opacity:1
}
.bg-gradient{
background-image:var(--bs-gradient)!important
}
.user-select-all{
-webkit-user-select:all!important;
  -moz-user-select: all !important;
  user-select: all !important;
}
.user-select-auto {
  -webkit-user-select: auto !important;
  -moz-user-select: auto !important;
  -ms-user-select: auto !important;
  user-select: auto !important;
}
.user-select-none {
  -webkit-user-select: none !important;
  -moz-user-select: none !important;
  -ms-user-select: none !important;
  user-select: none !important;
}
.pe-none {
  pointer-events: none !important;
}
.pe-auto {
  pointer-events: auto !important;
}
.rounded {
  border-radius: 0.25rem !important;
}
.rounded-0 {
  border-radius: 0 !important;
}
.rounded-1 {
  border-radius: 0.2rem !important;
}
.rounded-2 {
  border-radius: 0.25rem !important;
}
.rounded-3 {
  border-radius: 0.3rem !important;
}
.rounded-circle {
  border-radius: 50% !important;
}
.rounded-pill {
  border-radius: 50rem !important;
}
.rounded-top {
  border-top-left-radius: 0.25rem !important;
}
.rounded-end, .rounded-top {
  border-top-right-radius: 0.25rem !important;
}
.rounded-bottom, .rounded-end {
  border-bottom-right-radius: 0.25rem !important;
}
.rounded-bottom, .rounded-start {
  border-bottom-left-radius: 0.25rem !important;
}
.rounded-start {
  border-top-left-radius: 0.25rem !important;
}
.visible {
  visibility: visible !important;
}
.invisible {
  visibility: hidden !important;
}
@media (min-width: 576px) {
  .float-sm-start {
    float: left !important;
  }
  .float-sm-end {
    float: right !important;
  }
  .float-sm-none {
    float: none !important;
  }
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-grid {
    display: grid !important;
  }
  .d-sm-table {
    display: table !important;
  }
  .d-sm-table-row {
    display: table-row !important;
  }
  .d-sm-table-cell {
    display: table-cell !important;
  }
  .d-sm-flex {
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: inline-flex !important;
  }
  .d-sm-none {
    display: none !important;
  }
  .flex-sm-fill {
    flex: auto !important;
  }
  .flex-sm-row {
    flex-direction: row !important;
  }
  .flex-sm-column {
    flex-direction: column !important;
  }
  .flex-sm-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-sm-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-sm-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-sm-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-sm-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-sm-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-sm-wrap {
    flex-wrap: wrap !important;
  }
  .flex-sm-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .gap-sm-0 {
    gap: 0 !important;
  }
  .gap-sm-1 {
    gap: 0.25rem !important;
  }
  .gap-sm-2 {
    gap: 0.5rem !important;
  }
  .gap-sm-3 {
    gap: 1rem !important;
  }
  .gap-sm-4 {
    gap: 1.5rem !important;
  }
  .gap-sm-5 {
    gap: 3rem !important;
  }
  .justify-content-sm-start {
    justify-content: flex-start !important;
  }
  .justify-content-sm-end {
    justify-content: flex-end !important;
  }
  .justify-content-sm-center {
    justify-content: center !important;
  }
  .justify-content-sm-between {
    justify-content: space-between !important;
  }
  .justify-content-sm-around {
    justify-content: space-around !important;
  }
  .justify-content-sm-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-sm-start {
    align-items: flex-start !important;
  }
  .align-items-sm-end {
    align-items: flex-end !important;
  }
  .align-items-sm-center {
    align-items: center !important;
  }
  .align-items-sm-baseline {
    align-items: baseline !important;
  }
  .align-items-sm-stretch {
    align-items: stretch !important;
  }
  .align-content-sm-start {
    align-content: flex-start !important;
  }
  .align-content-sm-end {
    align-content: flex-end !important;
  }
  .align-content-sm-center {
    align-content: center !important;
  }
  .align-content-sm-between {
    align-content: space-between !important;
  }
  .align-content-sm-around {
    align-content: space-around !important;
  }
  .align-content-sm-stretch {
    align-content: stretch !important;
  }
  .align-self-sm-auto {
    align-self: auto !important;
  }
  .align-self-sm-start {
    align-self: flex-start !important;
  }
  .align-self-sm-end {
    align-self: flex-end !important;
  }
  .align-self-sm-center {
    align-self: center !important;
  }
  .align-self-sm-baseline {
    align-self: baseline !important;
  }
  .align-self-sm-stretch {
    align-self: stretch !important;
  }
  .order-sm-first {
    order: -1 !important;
  }
  .order-sm-0 {
    order: 0 !important;
  }
  .order-sm-1 {
    order: 1 !important;
  }
  .order-sm-2 {
    order: 2 !important;
  }
  .order-sm-3 {
    order: 3 !important;
  }
  .order-sm-4 {
    order: 4 !important;
  }
  .order-sm-5 {
    order: 5 !important;
  }
  .order-sm-last {
    order: 6 !important;
  }
  .m-sm-0 {
    margin: 0 !important;
  }
  .m-sm-1 {
    margin: 0.25rem !important;
  }
  .m-sm-2 {
    margin: 0.5rem !important;
  }
  .m-sm-3 {
    margin: 1rem !important;
  }
  .m-sm-4 {
    margin: 1.5rem !important;
  }
  .m-sm-5 {
    margin: 3rem !important;
  }
  .m-sm-auto {
    margin: auto !important;
  }
  .mx-sm-0 {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .mx-sm-1 {
    margin-left: 0.25rem !important;
    margin-right: 0.25rem !important;
  }
  .mx-sm-2 {
    margin-left: 0.5rem !important;
    margin-right: 0.5rem !important;
  }
  .mx-sm-3 {
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
  .mx-sm-4 {
    margin-left: 1.5rem !important;
    margin-right: 1.5rem !important;
  }
  .mx-sm-5 {
    margin-left: 3rem !important;
    margin-right: 3rem !important;
  }
  .mx-sm-auto {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .my-sm-0 {
    margin-bottom: 0 !important;
    margin-top: 0 !important;
  }
  .my-sm-1 {
    margin-bottom: 0.25rem !important;
    margin-top: 0.25rem !important;
  }
  .my-sm-2 {
    margin-bottom: 0.5rem !important;
    margin-top: 0.5rem !important;
  }
  .my-sm-3 {
    margin-bottom: 1rem !important;
    margin-top: 1rem !important;
  }
  .my-sm-4 {
    margin-bottom: 1.5rem !important;
    margin-top: 1.5rem !important;
  }
  .my-sm-5 {
    margin-bottom: 3rem !important;
    margin-top: 3rem !important;
  }
  .my-sm-auto {
    margin-bottom: auto !important;
    margin-top: auto !important;
  }
  .mt-sm-0 {
    margin-top: 0 !important;
  }
  .mt-sm-1 {
    margin-top: 0.25rem !important;
  }
  .mt-sm-2 {
    margin-top: 0.5rem !important;
  }
  .mt-sm-3 {
    margin-top: 1rem !important;
  }
  .mt-sm-4 {
    margin-top: 1.5rem !important;
  }
  .mt-sm-5 {
    margin-top: 3rem !important;
  }
  .mt-sm-auto {
    margin-top: auto !important;
  }
  .me-sm-0 {
    margin-right: 0 !important;
  }
  .me-sm-1 {
    margin-right: 0.25rem !important;
  }
  .me-sm-2 {
    margin-right: 0.5rem !important;
  }
  .me-sm-3 {
    margin-right: 1rem !important;
  }
  .me-sm-4 {
    margin-right: 1.5rem !important;
  }
  .me-sm-5 {
    margin-right: 3rem !important;
  }
  .me-sm-auto {
    margin-right: auto !important;
  }
  .mb-sm-0 {
    margin-bottom: 0 !important;
  }
  .mb-sm-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-sm-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-sm-3 {
    margin-bottom: 1rem !important;
  }
  .mb-sm-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-sm-5 {
    margin-bottom: 3rem !important;
  }
  .mb-sm-auto {
    margin-bottom: auto !important;
  }
  .ms-sm-0 {
    margin-left: 0 !important;
  }
  .ms-sm-1 {
    margin-left: 0.25rem !important;
  }
  .ms-sm-2 {
    margin-left: 0.5rem !important;
  }
  .ms-sm-3 {
    margin-left: 1rem !important;
  }
  .ms-sm-4 {
    margin-left: 1.5rem !important;
  }
  .ms-sm-5 {
    margin-left: 3rem !important;
  }
  .ms-sm-auto {
    margin-left: auto !important;
  }
  .p-sm-0 {
    padding: 0 !important;
  }
  .p-sm-1 {
    padding: 0.25rem !important;
  }
  .p-sm-2 {
    padding: 0.5rem !important;
  }
  .p-sm-3 {
    padding: 1rem !important;
  }
  .p-sm-4 {
    padding: 1.5rem !important;
  }
  .p-sm-5 {
    padding: 3rem !important;
  }
  .px-sm-0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .px-sm-1 {
    padding-left: 0.25rem !important;
    padding-right: 0.25rem !important;
  }
  .px-sm-2 {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }
  .px-sm-3 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  .px-sm-4 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }
  .px-sm-5 {
    padding-left: 3rem !important;
    padding-right: 3rem !important;
  }
  .py-sm-0 {
    padding-bottom: 0 !important;
    padding-top: 0 !important;
  }
  .py-sm-1 {
    padding-bottom: 0.25rem !important;
    padding-top: 0.25rem !important;
  }
  .py-sm-2 {
    padding-bottom: 0.5rem !important;
    padding-top: 0.5rem !important;
  }
  .py-sm-3 {
    padding-bottom: 1rem !important;
    padding-top: 1rem !important;
  }
  .py-sm-4 {
    padding-bottom: 1.5rem !important;
    padding-top: 1.5rem !important;
  }
  .py-sm-5 {
    padding-bottom: 3rem !important;
    padding-top: 3rem !important;
  }
  .pt-sm-0 {
    padding-top: 0 !important;
  }
  .pt-sm-1 {
    padding-top: 0.25rem !important;
  }
  .pt-sm-2 {
    padding-top: 0.5rem !important;
  }
  .pt-sm-3 {
    padding-top: 1rem !important;
  }
  .pt-sm-4 {
    padding-top: 1.5rem !important;
  }
  .pt-sm-5 {
    padding-top: 3rem !important;
  }
  .pe-sm-0 {
    padding-right: 0 !important;
  }
  .pe-sm-1 {
    padding-right: 0.25rem !important;
  }
  .pe-sm-2 {
    padding-right: 0.5rem !important;
  }
  .pe-sm-3 {
    padding-right: 1rem !important;
  }
  .pe-sm-4 {
    padding-right: 1.5rem !important;
  }
  .pe-sm-5 {
    padding-right: 3rem !important;
  }
  .pb-sm-0 {
    padding-bottom: 0 !important;
  }
  .pb-sm-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-sm-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-sm-3 {
    padding-bottom: 1rem !important;
  }
  .pb-sm-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-sm-5 {
    padding-bottom: 3rem !important;
  }
  .ps-sm-0 {
    padding-left: 0 !important;
  }
  .ps-sm-1 {
    padding-left: 0.25rem !important;
  }
  .ps-sm-2 {
    padding-left: 0.5rem !important;
  }
  .ps-sm-3 {
    padding-left: 1rem !important;
  }
  .ps-sm-4 {
    padding-left: 1.5rem !important;
  }
  .ps-sm-5 {
    padding-left: 3rem !important;
  }
  .text-sm-start {
    text-align: left !important;
  }
  .text-sm-end {
    text-align: right !important;
  }
  .text-sm-center {
    text-align: center !important;
  }
}
@media (min-width: 768px) {
  .float-md-start {
    float: left !important;
  }
  .float-md-end {
    float: right !important;
  }
  .float-md-none {
    float: none !important;
  }
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-grid {
    display: grid !important;
  }
  .d-md-table {
    display: table !important;
  }
  .d-md-table-row {
    display: table-row !important;
  }
  .d-md-table-cell {
    display: table-cell !important;
  }
  .d-md-flex {
    display: flex !important;
  }
  .d-md-inline-flex {
    display: inline-flex !important;
  }
  .d-md-none {
    display: none !important;
  }
  .flex-md-fill {
    flex: auto !important;
  }
  .flex-md-row {
    flex-direction: row !important;
  }
  .flex-md-column {
    flex-direction: column !important;
  }
  .flex-md-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-md-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-md-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-md-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-md-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-md-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-md-wrap {
    flex-wrap: wrap !important;
  }
  .flex-md-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .gap-md-0 {
    gap: 0 !important;
  }
  .gap-md-1 {
    gap: 0.25rem !important;
  }
  .gap-md-2 {
    gap: 0.5rem !important;
  }
  .gap-md-3 {
    gap: 1rem !important;
  }
  .gap-md-4 {
    gap: 1.5rem !important;
  }
  .gap-md-5 {
    gap: 3rem !important;
  }
  .justify-content-md-start {
    justify-content: flex-start !important;
  }
  .justify-content-md-end {
    justify-content: flex-end !important;
  }
  .justify-content-md-center {
    justify-content: center !important;
  }
  .justify-content-md-between {
    justify-content: space-between !important;
  }
  .justify-content-md-around {
    justify-content: space-around !important;
  }
  .justify-content-md-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-md-start {
    align-items: flex-start !important;
  }
  .align-items-md-end {
    align-items: flex-end !important;
  }
  .align-items-md-center {
    align-items: center !important;
  }
  .align-items-md-baseline {
    align-items: baseline !important;
  }
  .align-items-md-stretch {
    align-items: stretch !important;
  }
  .align-content-md-start {
    align-content: flex-start !important;
  }
  .align-content-md-end {
    align-content: flex-end !important;
  }
  .align-content-md-center {
    align-content: center !important;
  }
  .align-content-md-between {
    align-content: space-between !important;
  }
  .align-content-md-around {
    align-content: space-around !important;
  }
  .align-content-md-stretch {
    align-content: stretch !important;
  }
  .align-self-md-auto {
    align-self: auto !important;
  }
  .align-self-md-start {
    align-self: flex-start !important;
  }
  .align-self-md-end {
    align-self: flex-end !important;
  }
  .align-self-md-center {
    align-self: center !important;
  }
  .align-self-md-baseline {
    align-self: baseline !important;
  }
  .align-self-md-stretch {
    align-self: stretch !important;
  }
  .order-md-first {
    order: -1 !important;
  }
  .order-md-0 {
    order: 0 !important;
  }
  .order-md-1 {
    order: 1 !important;
  }
  .order-md-2 {
    order: 2 !important;
  }
  .order-md-3 {
    order: 3 !important;
  }
  .order-md-4 {
    order: 4 !important;
  }
  .order-md-5 {
    order: 5 !important;
  }
  .order-md-last {
    order: 6 !important;
  }
  .m-md-0 {
    margin: 0 !important;
  }
  .m-md-1 {
    margin: 0.25rem !important;
  }
  .m-md-2 {
    margin: 0.5rem !important;
  }
  .m-md-3 {
    margin: 1rem !important;
  }
  .m-md-4 {
    margin: 1.5rem !important;
  }
  .m-md-5 {
    margin: 3rem !important;
  }
  .m-md-auto {
    margin: auto !important;
  }
  .mx-md-0 {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .mx-md-1 {
    margin-left: 0.25rem !important;
    margin-right: 0.25rem !important;
  }
  .mx-md-2 {
    margin-left: 0.5rem !important;
    margin-right: 0.5rem !important;
  }
  .mx-md-3 {
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
  .mx-md-4 {
    margin-left: 1.5rem !important;
    margin-right: 1.5rem !important;
  }
  .mx-md-5 {
    margin-left: 3rem !important;
    margin-right: 3rem !important;
  }
  .mx-md-auto {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .my-md-0 {
    margin-bottom: 0 !important;
    margin-top: 0 !important;
  }
  .my-md-1 {
    margin-bottom: 0.25rem !important;
    margin-top: 0.25rem !important;
  }
  .my-md-2 {
    margin-bottom: 0.5rem !important;
    margin-top: 0.5rem !important;
  }
  .my-md-3 {
    margin-bottom: 1rem !important;
    margin-top: 1rem !important;
  }
  .my-md-4 {
    margin-bottom: 1.5rem !important;
    margin-top: 1.5rem !important;
  }
  .my-md-5 {
    margin-bottom: 3rem !important;
    margin-top: 3rem !important;
  }
  .my-md-auto {
    margin-bottom: auto !important;
    margin-top: auto !important;
  }
  .mt-md-0 {
    margin-top: 0 !important;
  }
  .mt-md-1 {
    margin-top: 0.25rem !important;
  }
  .mt-md-2 {
    margin-top: 0.5rem !important;
  }
  .mt-md-3 {
    margin-top: 1rem !important;
  }
  .mt-md-4 {
    margin-top: 1.5rem !important;
  }
  .mt-md-5 {
    margin-top: 3rem !important;
  }
  .mt-md-auto {
    margin-top: auto !important;
  }
  .me-md-0 {
    margin-right: 0 !important;
  }
  .me-md-1 {
    margin-right: 0.25rem !important;
  }
  .me-md-2 {
    margin-right: 0.5rem !important;
  }
  .me-md-3 {
    margin-right: 1rem !important;
  }
  .me-md-4 {
    margin-right: 1.5rem !important;
  }
  .me-md-5 {
    margin-right: 3rem !important;
  }
  .me-md-auto {
    margin-right: auto !important;
  }
  .mb-md-0 {
    margin-bottom: 0 !important;
  }
  .mb-md-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-md-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-md-3 {
    margin-bottom: 1rem !important;
  }
  .mb-md-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-md-5 {
    margin-bottom: 3rem !important;
  }
  .mb-md-auto {
    margin-bottom: auto !important;
  }
  .ms-md-0 {
    margin-left: 0 !important;
  }
  .ms-md-1 {
    margin-left: 0.25rem !important;
  }
  .ms-md-2 {
    margin-left: 0.5rem !important;
  }
  .ms-md-3 {
    margin-left: 1rem !important;
  }
  .ms-md-4 {
    margin-left: 1.5rem !important;
  }
  .ms-md-5 {
    margin-left: 3rem !important;
  }
  .ms-md-auto {
    margin-left: auto !important;
  }
  .p-md-0 {
    padding: 0 !important;
  }
  .p-md-1 {
    padding: 0.25rem !important;
  }
  .p-md-2 {
    padding: 0.5rem !important;
  }
  .p-md-3 {
    padding: 1rem !important;
  }
  .p-md-4 {
    padding: 1.5rem !important;
  }
  .p-md-5 {
    padding: 3rem !important;
  }
  .px-md-0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .px-md-1 {
    padding-left: 0.25rem !important;
    padding-right: 0.25rem !important;
  }
  .px-md-2 {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }
  .px-md-3 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  .px-md-4 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }
  .px-md-5 {
    padding-left: 3rem !important;
    padding-right: 3rem !important;
  }
  .py-md-0 {
    padding-bottom: 0 !important;
    padding-top: 0 !important;
  }
  .py-md-1 {
    padding-bottom: 0.25rem !important;
    padding-top: 0.25rem !important;
  }
  .py-md-2 {
    padding-bottom: 0.5rem !important;
    padding-top: 0.5rem !important;
  }
  .py-md-3 {
    padding-bottom: 1rem !important;
    padding-top: 1rem !important;
  }
  .py-md-4 {
    padding-bottom: 1.5rem !important;
    padding-top: 1.5rem !important;
  }
  .py-md-5 {
    padding-bottom: 3rem !important;
    padding-top: 3rem !important;
  }
  .pt-md-0 {
    padding-top: 0 !important;
  }
  .pt-md-1 {
    padding-top: 0.25rem !important;
  }
  .pt-md-2 {
    padding-top: 0.5rem !important;
  }
  .pt-md-3 {
    padding-top: 1rem !important;
  }
  .pt-md-4 {
    padding-top: 1.5rem !important;
  }
  .pt-md-5 {
    padding-top: 3rem !important;
  }
  .pe-md-0 {
    padding-right: 0 !important;
  }
  .pe-md-1 {
    padding-right: 0.25rem !important;
  }
  .pe-md-2 {
    padding-right: 0.5rem !important;
  }
  .pe-md-3 {
    padding-right: 1rem !important;
  }
  .pe-md-4 {
    padding-right: 1.5rem !important;
  }
  .pe-md-5 {
    padding-right: 3rem !important;
  }
  .pb-md-0 {
    padding-bottom: 0 !important;
  }
  .pb-md-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-md-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-md-3 {
    padding-bottom: 1rem !important;
  }
  .pb-md-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-md-5 {
    padding-bottom: 3rem !important;
  }
  .ps-md-0 {
    padding-left: 0 !important;
  }
  .ps-md-1 {
    padding-left: 0.25rem !important;
  }
  .ps-md-2 {
    padding-left: 0.5rem !important;
  }
  .ps-md-3 {
    padding-left: 1rem !important;
  }
  .ps-md-4 {
    padding-left: 1.5rem !important;
  }
  .ps-md-5 {
    padding-left: 3rem !important;
  }
  .text-md-start {
    text-align: left !important;
  }
  .text-md-end {
    text-align: right !important;
  }
  .text-md-center {
    text-align: center !important;
  }
}
@media (min-width: 992px) {
  .float-lg-start {
    float: left !important;
  }
  .float-lg-end {
    float: right !important;
  }
  .float-lg-none {
    float: none !important;
  }
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-grid {
    display: grid !important;
  }
  .d-lg-table {
    display: table !important;
  }
  .d-lg-table-row {
    display: table-row !important;
  }
  .d-lg-table-cell {
    display: table-cell !important;
  }
  .d-lg-flex {
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: inline-flex !important;
  }
  .d-lg-none {
    display: none !important;
  }
  .flex-lg-fill {
    flex: auto !important;
  }
  .flex-lg-row {
    flex-direction: row !important;
  }
  .flex-lg-column {
    flex-direction: column !important;
  }
  .flex-lg-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-lg-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-lg-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-lg-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-lg-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-lg-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-lg-wrap {
    flex-wrap: wrap !important;
  }
  .flex-lg-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .gap-lg-0 {
    gap: 0 !important;
  }
  .gap-lg-1 {
    gap: 0.25rem !important;
  }
  .gap-lg-2 {
    gap: 0.5rem !important;
  }
  .gap-lg-3 {
    gap: 1rem !important;
  }
  .gap-lg-4 {
    gap: 1.5rem !important;
  }
  .gap-lg-5 {
    gap: 3rem !important;
  }
  .justify-content-lg-start {
    justify-content: flex-start !important;
  }
  .justify-content-lg-end {
    justify-content: flex-end !important;
  }
  .justify-content-lg-center {
    justify-content: center !important;
  }
  .justify-content-lg-between {
    justify-content: space-between !important;
  }
  .justify-content-lg-around {
    justify-content: space-around !important;
  }
  .justify-content-lg-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-lg-start {
    align-items: flex-start !important;
  }
  .align-items-lg-end {
    align-items: flex-end !important;
  }
  .align-items-lg-center {
    align-items: center !important;
  }
  .align-items-lg-baseline {
    align-items: baseline !important;
  }
  .align-items-lg-stretch {
    align-items: stretch !important;
  }
  .align-content-lg-start {
    align-content: flex-start !important;
  }
  .align-content-lg-end {
    align-content: flex-end !important;
  }
  .align-content-lg-center {
    align-content: center !important;
  }
  .align-content-lg-between {
    align-content: space-between !important;
  }
  .align-content-lg-around {
    align-content: space-around !important;
  }
  .align-content-lg-stretch {
    align-content: stretch !important;
  }
  .align-self-lg-auto {
    align-self: auto !important;
  }
  .align-self-lg-start {
    align-self: flex-start !important;
  }
  .align-self-lg-end {
    align-self: flex-end !important;
  }
  .align-self-lg-center {
    align-self: center !important;
  }
  .align-self-lg-baseline {
    align-self: baseline !important;
  }
  .align-self-lg-stretch {
    align-self: stretch !important;
  }
  .order-lg-first {
    order: -1 !important;
  }
  .order-lg-0 {
    order: 0 !important;
  }
  .order-lg-1 {
    order: 1 !important;
  }
  .order-lg-2 {
    order: 2 !important;
  }
  .order-lg-3 {
    order: 3 !important;
  }
  .order-lg-4 {
    order: 4 !important;
  }
  .order-lg-5 {
    order: 5 !important;
  }
  .order-lg-last {
    order: 6 !important;
  }
  .m-lg-0 {
    margin: 0 !important;
  }
  .m-lg-1 {
    margin: 0.25rem !important;
  }
  .m-lg-2 {
    margin: 0.5rem !important;
  }
  .m-lg-3 {
    margin: 1rem !important;
  }
  .m-lg-4 {
    margin: 1.5rem !important;
  }
  .m-lg-5 {
    margin: 3rem !important;
  }
  .m-lg-auto {
    margin: auto !important;
  }
  .mx-lg-0 {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .mx-lg-1 {
    margin-left: 0.25rem !important;
    margin-right: 0.25rem !important;
  }
  .mx-lg-2 {
    margin-left: 0.5rem !important;
    margin-right: 0.5rem !important;
  }
  .mx-lg-3 {
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
  .mx-lg-4 {
    margin-left: 1.5rem !important;
    margin-right: 1.5rem !important;
  }
  .mx-lg-5 {
    margin-left: 3rem !important;
    margin-right: 3rem !important;
  }
  .mx-lg-auto {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .my-lg-0 {
    margin-bottom: 0 !important;
    margin-top: 0 !important;
  }
  .my-lg-1 {
    margin-bottom: 0.25rem !important;
    margin-top: 0.25rem !important;
  }
  .my-lg-2 {
    margin-bottom: 0.5rem !important;
    margin-top: 0.5rem !important;
  }
  .my-lg-3 {
    margin-bottom: 1rem !important;
    margin-top: 1rem !important;
  }
  .my-lg-4 {
    margin-bottom: 1.5rem !important;
    margin-top: 1.5rem !important;
  }
  .my-lg-5 {
    margin-bottom: 3rem !important;
    margin-top: 3rem !important;
  }
  .my-lg-auto {
    margin-bottom: auto !important;
    margin-top: auto !important;
  }
  .mt-lg-0 {
    margin-top: 0 !important;
  }
  .mt-lg-1 {
    margin-top: 0.25rem !important;
  }
  .mt-lg-2 {
    margin-top: 0.5rem !important;
  }
  .mt-lg-3 {
    margin-top: 1rem !important;
  }
  .mt-lg-4 {
    margin-top: 1.5rem !important;
  }
  .mt-lg-5 {
    margin-top: 3rem !important;
  }
  .mt-lg-auto {
    margin-top: auto !important;
  }
  .me-lg-0 {
    margin-right: 0 !important;
  }
  .me-lg-1 {
    margin-right: 0.25rem !important;
  }
  .me-lg-2 {
    margin-right: 0.5rem !important;
  }
  .me-lg-3 {
    margin-right: 1rem !important;
  }
  .me-lg-4 {
    margin-right: 1.5rem !important;
  }
  .me-lg-5 {
    margin-right: 3rem !important;
  }
  .me-lg-auto {
    margin-right: auto !important;
  }
  .mb-lg-0 {
    margin-bottom: 0 !important;
  }
  .mb-lg-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-lg-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-lg-3 {
    margin-bottom: 1rem !important;
  }
  .mb-lg-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-lg-5 {
    margin-bottom: 3rem !important;
  }
  .mb-lg-auto {
    margin-bottom: auto !important;
  }
  .ms-lg-0 {
    margin-left: 0 !important;
  }
  .ms-lg-1 {
    margin-left: 0.25rem !important;
  }
  .ms-lg-2 {
    margin-left: 0.5rem !important;
  }
  .ms-lg-3 {
    margin-left: 1rem !important;
  }
  .ms-lg-4 {
    margin-left: 1.5rem !important;
  }
  .ms-lg-5 {
    margin-left: 3rem !important;
  }
  .ms-lg-auto {
    margin-left: auto !important;
  }
  .p-lg-0 {
    padding: 0 !important;
  }
  .p-lg-1 {
    padding: 0.25rem !important;
  }
  .p-lg-2 {
    padding: 0.5rem !important;
  }
  .p-lg-3 {
    padding: 1rem !important;
  }
  .p-lg-4 {
    padding: 1.5rem !important;
  }
  .p-lg-5 {
    padding: 3rem !important;
  }
  .px-lg-0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .px-lg-1 {
    padding-left: 0.25rem !important;
    padding-right: 0.25rem !important;
  }
  .px-lg-2 {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }
  .px-lg-3 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  .px-lg-4 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }
  .px-lg-5 {
    padding-left: 3rem !important;
    padding-right: 3rem !important;
  }
  .py-lg-0 {
    padding-bottom: 0 !important;
    padding-top: 0 !important;
  }
  .py-lg-1 {
    padding-bottom: 0.25rem !important;
    padding-top: 0.25rem !important;
  }
  .py-lg-2 {
    padding-bottom: 0.5rem !important;
    padding-top: 0.5rem !important;
  }
  .py-lg-3 {
    padding-bottom: 1rem !important;
    padding-top: 1rem !important;
  }
  .py-lg-4 {
    padding-bottom: 1.5rem !important;
    padding-top: 1.5rem !important;
  }
  .py-lg-5 {
    padding-bottom: 3rem !important;
    padding-top: 3rem !important;
  }
  .pt-lg-0 {
    padding-top: 0 !important;
  }
  .pt-lg-1 {
    padding-top: 0.25rem !important;
  }
  .pt-lg-2 {
    padding-top: 0.5rem !important;
  }
  .pt-lg-3 {
    padding-top: 1rem !important;
  }
  .pt-lg-4 {
    padding-top: 1.5rem !important;
  }
  .pt-lg-5 {
    padding-top: 3rem !important;
  }
  .pe-lg-0 {
    padding-right: 0 !important;
  }
  .pe-lg-1 {
    padding-right: 0.25rem !important;
  }
  .pe-lg-2 {
    padding-right: 0.5rem !important;
  }
  .pe-lg-3 {
    padding-right: 1rem !important;
  }
  .pe-lg-4 {
    padding-right: 1.5rem !important;
  }
  .pe-lg-5 {
    padding-right: 3rem !important;
  }
  .pb-lg-0 {
    padding-bottom: 0 !important;
  }
  .pb-lg-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-lg-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-lg-3 {
    padding-bottom: 1rem !important;
  }
  .pb-lg-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-lg-5 {
    padding-bottom: 3rem !important;
  }
  .ps-lg-0 {
    padding-left: 0 !important;
  }
  .ps-lg-1 {
    padding-left: 0.25rem !important;
  }
  .ps-lg-2 {
    padding-left: 0.5rem !important;
  }
  .ps-lg-3 {
    padding-left: 1rem !important;
  }
  .ps-lg-4 {
    padding-left: 1.5rem !important;
  }
  .ps-lg-5 {
    padding-left: 3rem !important;
  }
  .text-lg-start {
    text-align: left !important;
  }
  .text-lg-end {
    text-align: right !important;
  }
  .text-lg-center {
    text-align: center !important;
  }
}
@media (min-width: 1200px) {
  .float-xl-start {
    float: left !important;
  }
  .float-xl-end {
    float: right !important;
  }
  .float-xl-none {
    float: none !important;
  }
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-grid {
    display: grid !important;
  }
  .d-xl-table {
    display: table !important;
  }
  .d-xl-table-row {
    display: table-row !important;
  }
  .d-xl-table-cell {
    display: table-cell !important;
  }
  .d-xl-flex {
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: inline-flex !important;
  }
  .d-xl-none {
    display: none !important;
  }
  .flex-xl-fill {
    flex: auto !important;
  }
  .flex-xl-row {
    flex-direction: row !important;
  }
  .flex-xl-column {
    flex-direction: column !important;
  }
  .flex-xl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-xl-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-xl-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-xl-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-xl-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-xl-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-xl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .gap-xl-0 {
    gap: 0 !important;
  }
  .gap-xl-1 {
    gap: 0.25rem !important;
  }
  .gap-xl-2 {
    gap: 0.5rem !important;
  }
  .gap-xl-3 {
    gap: 1rem !important;
  }
  .gap-xl-4 {
    gap: 1.5rem !important;
  }
  .gap-xl-5 {
    gap: 3rem !important;
  }
  .justify-content-xl-start {
    justify-content: flex-start !important;
  }
  .justify-content-xl-end {
    justify-content: flex-end !important;
  }
  .justify-content-xl-center {
    justify-content: center !important;
  }
  .justify-content-xl-between {
    justify-content: space-between !important;
  }
  .justify-content-xl-around {
    justify-content: space-around !important;
  }
  .justify-content-xl-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-xl-start {
    align-items: flex-start !important;
  }
  .align-items-xl-end {
    align-items: flex-end !important;
  }
  .align-items-xl-center {
    align-items: center !important;
  }
  .align-items-xl-baseline {
    align-items: baseline !important;
  }
  .align-items-xl-stretch {
    align-items: stretch !important;
  }
  .align-content-xl-start {
    align-content: flex-start !important;
  }
  .align-content-xl-end {
    align-content: flex-end !important;
  }
  .align-content-xl-center {
    align-content: center !important;
  }
  .align-content-xl-between {
    align-content: space-between !important;
  }
  .align-content-xl-around {
    align-content: space-around !important;
  }
  .align-content-xl-stretch {
    align-content: stretch !important;
  }
  .align-self-xl-auto {
    align-self: auto !important;
  }
  .align-self-xl-start {
    align-self: flex-start !important;
  }
  .align-self-xl-end {
    align-self: flex-end !important;
  }
  .align-self-xl-center {
    align-self: center !important;
  }
  .align-self-xl-baseline {
    align-self: baseline !important;
  }
  .align-self-xl-stretch {
    align-self: stretch !important;
  }
  .order-xl-first {
    order: -1 !important;
  }
  .order-xl-0 {
    order: 0 !important;
  }
  .order-xl-1 {
    order: 1 !important;
  }
  .order-xl-2 {
    order: 2 !important;
  }
  .order-xl-3 {
    order: 3 !important;
  }
  .order-xl-4 {
    order: 4 !important;
  }
  .order-xl-5 {
    order: 5 !important;
  }
  .order-xl-last {
    order: 6 !important;
  }
  .m-xl-0 {
    margin: 0 !important;
  }
  .m-xl-1 {
    margin: 0.25rem !important;
  }
  .m-xl-2 {
    margin: 0.5rem !important;
  }
  .m-xl-3 {
    margin: 1rem !important;
  }
  .m-xl-4 {
    margin: 1.5rem !important;
  }
  .m-xl-5 {
    margin: 3rem !important;
  }
  .m-xl-auto {
    margin: auto !important;
  }
  .mx-xl-0 {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .mx-xl-1 {
    margin-left: 0.25rem !important;
    margin-right: 0.25rem !important;
  }
  .mx-xl-2 {
    margin-left: 0.5rem !important;
    margin-right: 0.5rem !important;
  }
  .mx-xl-3 {
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
  .mx-xl-4 {
    margin-left: 1.5rem !important;
    margin-right: 1.5rem !important;
  }
  .mx-xl-5 {
    margin-left: 3rem !important;
    margin-right: 3rem !important;
  }
  .mx-xl-auto {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .my-xl-0 {
    margin-bottom: 0 !important;
    margin-top: 0 !important;
  }
  .my-xl-1 {
    margin-bottom: 0.25rem !important;
    margin-top: 0.25rem !important;
  }
  .my-xl-2 {
    margin-bottom: 0.5rem !important;
    margin-top: 0.5rem !important;
  }
  .my-xl-3 {
    margin-bottom: 1rem !important;
    margin-top: 1rem !important;
  }
  .my-xl-4 {
    margin-bottom: 1.5rem !important;
    margin-top: 1.5rem !important;
  }
  .my-xl-5 {
    margin-bottom: 3rem !important;
    margin-top: 3rem !important;
  }
  .my-xl-auto {
    margin-bottom: auto !important;
    margin-top: auto !important;
  }
  .mt-xl-0 {
    margin-top: 0 !important;
  }
  .mt-xl-1 {
    margin-top: 0.25rem !important;
  }
  .mt-xl-2 {
    margin-top: 0.5rem !important;
  }
  .mt-xl-3 {
    margin-top: 1rem !important;
  }
  .mt-xl-4 {
    margin-top: 1.5rem !important;
  }
  .mt-xl-5 {
    margin-top: 3rem !important;
  }
  .mt-xl-auto {
    margin-top: auto !important;
  }
  .me-xl-0 {
    margin-right: 0 !important;
  }
  .me-xl-1 {
    margin-right: 0.25rem !important;
  }
  .me-xl-2 {
    margin-right: 0.5rem !important;
  }
  .me-xl-3 {
    margin-right: 1rem !important;
  }
  .me-xl-4 {
    margin-right: 1.5rem !important;
  }
  .me-xl-5 {
    margin-right: 3rem !important;
  }
  .me-xl-auto {
    margin-right: auto !important;
  }
  .mb-xl-0 {
    margin-bottom: 0 !important;
  }
  .mb-xl-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-xl-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-xl-3 {
    margin-bottom: 1rem !important;
  }
  .mb-xl-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-xl-5 {
    margin-bottom: 3rem !important;
  }
  .mb-xl-auto {
    margin-bottom: auto !important;
  }
  .ms-xl-0 {
    margin-left: 0 !important;
  }
  .ms-xl-1 {
    margin-left: 0.25rem !important;
  }
  .ms-xl-2 {
    margin-left: 0.5rem !important;
  }
  .ms-xl-3 {
    margin-left: 1rem !important;
  }
  .ms-xl-4 {
    margin-left: 1.5rem !important;
  }
  .ms-xl-5 {
    margin-left: 3rem !important;
  }
  .ms-xl-auto {
    margin-left: auto !important;
  }
  .p-xl-0 {
    padding: 0 !important;
  }
  .p-xl-1 {
    padding: 0.25rem !important;
  }
  .p-xl-2 {
    padding: 0.5rem !important;
  }
  .p-xl-3 {
    padding: 1rem !important;
  }
  .p-xl-4 {
    padding: 1.5rem !important;
  }
  .p-xl-5 {
    padding: 3rem !important;
  }
  .px-xl-0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .px-xl-1 {
    padding-left: 0.25rem !important;
    padding-right: 0.25rem !important;
  }
  .px-xl-2 {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }
  .px-xl-3 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  .px-xl-4 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }
  .px-xl-5 {
    padding-left: 3rem !important;
    padding-right: 3rem !important;
  }
  .py-xl-0 {
    padding-bottom: 0 !important;
    padding-top: 0 !important;
  }
  .py-xl-1 {
    padding-bottom: 0.25rem !important;
    padding-top: 0.25rem !important;
  }
  .py-xl-2 {
    padding-bottom: 0.5rem !important;
    padding-top: 0.5rem !important;
  }
  .py-xl-3 {
    padding-bottom: 1rem !important;
    padding-top: 1rem !important;
  }
  .py-xl-4 {
    padding-bottom: 1.5rem !important;
    padding-top: 1.5rem !important;
  }
  .py-xl-5 {
    padding-bottom: 3rem !important;
    padding-top: 3rem !important;
  }
  .pt-xl-0 {
    padding-top: 0 !important;
  }
  .pt-xl-1 {
    padding-top: 0.25rem !important;
  }
  .pt-xl-2 {
    padding-top: 0.5rem !important;
  }
  .pt-xl-3 {
    padding-top: 1rem !important;
  }
  .pt-xl-4 {
    padding-top: 1.5rem !important;
  }
  .pt-xl-5 {
    padding-top: 3rem !important;
  }
  .pe-xl-0 {
    padding-right: 0 !important;
  }
  .pe-xl-1 {
    padding-right: 0.25rem !important;
  }
  .pe-xl-2 {
    padding-right: 0.5rem !important;
  }
  .pe-xl-3 {
    padding-right: 1rem !important;
  }
  .pe-xl-4 {
    padding-right: 1.5rem !important;
  }
  .pe-xl-5 {
    padding-right: 3rem !important;
  }
  .pb-xl-0 {
    padding-bottom: 0 !important;
  }
  .pb-xl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-xl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-xl-3 {
    padding-bottom: 1rem !important;
  }
  .pb-xl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-xl-5 {
    padding-bottom: 3rem !important;
  }
  .ps-xl-0 {
    padding-left: 0 !important;
  }
  .ps-xl-1 {
    padding-left: 0.25rem !important;
  }
  .ps-xl-2 {
    padding-left: 0.5rem !important;
  }
  .ps-xl-3 {
    padding-left: 1rem !important;
  }
  .ps-xl-4 {
    padding-left: 1.5rem !important;
  }
  .ps-xl-5 {
    padding-left: 3rem !important;
  }
  .text-xl-start {
    text-align: left !important;
  }
  .text-xl-end {
    text-align: right !important;
  }
  .text-xl-center {
    text-align: center !important;
  }
}
@media (min-width: 1400px) {
  .float-xxl-start {
    float: left !important;
  }
  .float-xxl-end {
    float: right !important;
  }
  .float-xxl-none {
    float: none !important;
  }
  .d-xxl-inline {
    display: inline !important;
  }
  .d-xxl-inline-block {
    display: inline-block !important;
  }
  .d-xxl-block {
    display: block !important;
  }
  .d-xxl-grid {
    display: grid !important;
  }
  .d-xxl-table {
    display: table !important;
  }
  .d-xxl-table-row {
    display: table-row !important;
  }
  .d-xxl-table-cell {
    display: table-cell !important;
  }
  .d-xxl-flex {
    display: flex !important;
  }
  .d-xxl-inline-flex {
    display: inline-flex !important;
  }
  .d-xxl-none {
    display: none !important;
  }
  .flex-xxl-fill {
    flex: auto !important;
  }
  .flex-xxl-row {
    flex-direction: row !important;
  }
  .flex-xxl-column {
    flex-direction: column !important;
  }
  .flex-xxl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-xxl-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-xxl-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-xxl-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-xxl-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-xxl-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-xxl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xxl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xxl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .gap-xxl-0 {
    gap: 0 !important;
  }
  .gap-xxl-1 {
    gap: 0.25rem !important;
  }
  .gap-xxl-2 {
    gap: 0.5rem !important;
  }
  .gap-xxl-3 {
    gap: 1rem !important;
  }
  .gap-xxl-4 {
    gap: 1.5rem !important;
  }
  .gap-xxl-5 {
    gap: 3rem !important;
  }
  .justify-content-xxl-start {
    justify-content: flex-start !important;
  }
  .justify-content-xxl-end {
    justify-content: flex-end !important;
  }
  .justify-content-xxl-center {
    justify-content: center !important;
  }
  .justify-content-xxl-between {
    justify-content: space-between !important;
  }
  .justify-content-xxl-around {
    justify-content: space-around !important;
  }
  .justify-content-xxl-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-xxl-start {
    align-items: flex-start !important;
  }
  .align-items-xxl-end {
    align-items: flex-end !important;
  }
  .align-items-xxl-center {
    align-items: center !important;
  }
  .align-items-xxl-baseline {
    align-items: baseline !important;
  }
  .align-items-xxl-stretch {
    align-items: stretch !important;
  }
  .align-content-xxl-start {
    align-content: flex-start !important;
  }
  .align-content-xxl-end {
    align-content: flex-end !important;
  }
  .align-content-xxl-center {
    align-content: center !important;
  }
  .align-content-xxl-between {
    align-content: space-between !important;
  }
  .align-content-xxl-around {
    align-content: space-around !important;
  }
  .align-content-xxl-stretch {
    align-content: stretch !important;
  }
  .align-self-xxl-auto {
    align-self: auto !important;
  }
  .align-self-xxl-start {
    align-self: flex-start !important;
  }
  .align-self-xxl-end {
    align-self: flex-end !important;
  }
  .align-self-xxl-center {
    align-self: center !important;
  }
  .align-self-xxl-baseline {
    align-self: baseline !important;
  }
  .align-self-xxl-stretch {
    align-self: stretch !important;
  }
  .order-xxl-first {
    order: -1 !important;
  }
  .order-xxl-0 {
    order: 0 !important;
  }
  .order-xxl-1 {
    order: 1 !important;
  }
  .order-xxl-2 {
    order: 2 !important;
  }
  .order-xxl-3 {
    order: 3 !important;
  }
  .order-xxl-4 {
    order: 4 !important;
  }
  .order-xxl-5 {
    order: 5 !important;
  }
  .order-xxl-last {
    order: 6 !important;
  }
  .m-xxl-0 {
    margin: 0 !important;
  }
  .m-xxl-1 {
    margin: 0.25rem !important;
  }
  .m-xxl-2 {
    margin: 0.5rem !important;
  }
  .m-xxl-3 {
    margin: 1rem !important;
  }
  .m-xxl-4 {
    margin: 1.5rem !important;
  }
  .m-xxl-5 {
    margin: 3rem !important;
  }
  .m-xxl-auto {
    margin: auto !important;
  }
  .mx-xxl-0 {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .mx-xxl-1 {
    margin-left: 0.25rem !important;
    margin-right: 0.25rem !important;
  }
  .mx-xxl-2 {
    margin-left: 0.5rem !important;
    margin-right: 0.5rem !important;
  }
  .mx-xxl-3 {
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
  .mx-xxl-4 {
    margin-left: 1.5rem !important;
    margin-right: 1.5rem !important;
  }
  .mx-xxl-5 {
    margin-left: 3rem !important;
    margin-right: 3rem !important;
  }
  .mx-xxl-auto {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .my-xxl-0 {
    margin-bottom: 0 !important;
    margin-top: 0 !important;
  }
  .my-xxl-1 {
    margin-bottom: 0.25rem !important;
    margin-top: 0.25rem !important;
  }
  .my-xxl-2 {
    margin-bottom: 0.5rem !important;
    margin-top: 0.5rem !important;
  }
  .my-xxl-3 {
    margin-bottom: 1rem !important;
    margin-top: 1rem !important;
  }
  .my-xxl-4 {
    margin-bottom: 1.5rem !important;
    margin-top: 1.5rem !important;
  }
  .my-xxl-5 {
    margin-bottom: 3rem !important;
    margin-top: 3rem !important;
  }
  .my-xxl-auto {
    margin-bottom: auto !important;
    margin-top: auto !important;
  }
  .mt-xxl-0 {
    margin-top: 0 !important;
  }
  .mt-xxl-1 {
    margin-top: 0.25rem !important;
  }
  .mt-xxl-2 {
    margin-top: 0.5rem !important;
  }
  .mt-xxl-3 {
    margin-top: 1rem !important;
  }
  .mt-xxl-4 {
    margin-top: 1.5rem !important;
  }
  .mt-xxl-5 {
    margin-top: 3rem !important;
  }
  .mt-xxl-auto {
    margin-top: auto !important;
  }
  .me-xxl-0 {
    margin-right: 0 !important;
  }
  .me-xxl-1 {
    margin-right: 0.25rem !important;
  }
  .me-xxl-2 {
    margin-right: 0.5rem !important;
  }
  .me-xxl-3 {
    margin-right: 1rem !important;
  }
  .me-xxl-4 {
    margin-right: 1.5rem !important;
  }
  .me-xxl-5 {
    margin-right: 3rem !important;
  }
  .me-xxl-auto {
    margin-right: auto !important;
  }
  .mb-xxl-0 {
    margin-bottom: 0 !important;
  }
  .mb-xxl-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-xxl-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-xxl-3 {
    margin-bottom: 1rem !important;
  }
  .mb-xxl-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-xxl-5 {
    margin-bottom: 3rem !important;
  }
  .mb-xxl-auto {
    margin-bottom: auto !important;
  }
  .ms-xxl-0 {
    margin-left: 0 !important;
  }
  .ms-xxl-1 {
    margin-left: 0.25rem !important;
  }
  .ms-xxl-2 {
    margin-left: 0.5rem !important;
  }
  .ms-xxl-3 {
    margin-left: 1rem !important;
  }
  .ms-xxl-4 {
    margin-left: 1.5rem !important;
  }
  .ms-xxl-5 {
    margin-left: 3rem !important;
  }
  .ms-xxl-auto {
    margin-left: auto !important;
  }
  .p-xxl-0 {
    padding: 0 !important;
  }
  .p-xxl-1 {
    padding: 0.25rem !important;
  }
  .p-xxl-2 {
    padding: 0.5rem !important;
  }
  .p-xxl-3 {
    padding: 1rem !important;
  }
  .p-xxl-4 {
    padding: 1.5rem !important;
  }
  .p-xxl-5 {
    padding: 3rem !important;
  }
  .px-xxl-0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .px-xxl-1 {
    padding-left: 0.25rem !important;
    padding-right: 0.25rem !important;
  }
  .px-xxl-2 {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }
  .px-xxl-3 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  .px-xxl-4 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }
  .px-xxl-5 {
    padding-left: 3rem !important;
    padding-right: 3rem !important;
  }
  .py-xxl-0 {
    padding-bottom: 0 !important;
    padding-top: 0 !important;
  }
  .py-xxl-1 {
    padding-bottom: 0.25rem !important;
    padding-top: 0.25rem !important;
  }
  .py-xxl-2 {
    padding-bottom: 0.5rem !important;
    padding-top: 0.5rem !important;
  }
  .py-xxl-3 {
    padding-bottom: 1rem !important;
    padding-top: 1rem !important;
  }
  .py-xxl-4 {
    padding-bottom: 1.5rem !important;
    padding-top: 1.5rem !important;
  }
  .py-xxl-5 {
    padding-bottom: 3rem !important;
    padding-top: 3rem !important;
  }
  .pt-xxl-0 {
    padding-top: 0 !important;
  }
  .pt-xxl-1 {
    padding-top: 0.25rem !important;
  }
  .pt-xxl-2 {
    padding-top: 0.5rem !important;
  }
  .pt-xxl-3 {
    padding-top: 1rem !important;
  }
  .pt-xxl-4 {
    padding-top: 1.5rem !important;
  }
  .pt-xxl-5 {
    padding-top: 3rem !important;
  }
  .pe-xxl-0 {
    padding-right: 0 !important;
  }
  .pe-xxl-1 {
    padding-right: 0.25rem !important;
  }
  .pe-xxl-2 {
    padding-right: 0.5rem !important;
  }
  .pe-xxl-3 {
    padding-right: 1rem !important;
  }
  .pe-xxl-4 {
    padding-right: 1.5rem !important;
  }
  .pe-xxl-5 {
    padding-right: 3rem !important;
  }
  .pb-xxl-0 {
    padding-bottom: 0 !important;
  }
  .pb-xxl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-xxl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-xxl-3 {
    padding-bottom: 1rem !important;
  }
  .pb-xxl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-xxl-5 {
    padding-bottom: 3rem !important;
  }
  .ps-xxl-0 {
    padding-left: 0 !important;
  }
  .ps-xxl-1 {
    padding-left: 0.25rem !important;
  }
  .ps-xxl-2 {
    padding-left: 0.5rem !important;
  }
  .ps-xxl-3 {
    padding-left: 1rem !important;
  }
  .ps-xxl-4 {
    padding-left: 1.5rem !important;
  }
  .ps-xxl-5 {
    padding-left: 3rem !important;
  }
  .text-xxl-start {
    text-align: left !important;
  }
  .text-xxl-end {
    text-align: right !important;
  }
  .text-xxl-center {
    text-align: center !important;
  }
}
@media (min-width: 1200px) {
  .fs-1 {
    font-size: 2.5rem !important;
  }
  .fs-2 {
    font-size: 2rem !important;
  }
  .fs-3 {
    font-size: 1.75rem !important;
  }
  .fs-4 {
    font-size: 1.5rem !important;
  }
}
@media print {
  .d-print-inline {
    display: inline !important;
  }
  .d-print-inline-block {
    display: inline-block !important;
  }
  .d-print-block {
    display: block !important;
  }
  .d-print-grid {
    display: grid !important;
  }
  .d-print-table {
    display: table !important;
  }
  .d-print-table-row {
    display: table-row !important;
  }
  .d-print-table-cell {
    display: table-cell !important;
  }
  .d-print-flex {
    display: flex !important;
  }
  .d-print-inline-flex {
    display: inline-flex !important;
  }
  .d-print-none {
    display: none !important;
  }
}
.modal {
  display: none;
  height: 100%;
  left: 0;
  outline: 0;
  overflow-x: hidden;
  overflow-y: auto;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1055;
}
.modal-dialog {
  margin: 0.5rem;
  pointer-events: none;
  position: relative;
  width: auto;
}
.modal.fade .modal-dialog {
  transform: translateY(-50px);
  transition: transform 0.3s ease-out;
}
@media (prefers-reduced-motion: reduce) {
  .modal.fade .modal-dialog {
    transition: none;
  }
}
.modal.show .modal-dialog {
  transform: none;
}
.modal.modal-static .modal-dialog {
  transform: scale(1.02);
}
.modal-dialog-scrollable {
  height: calc(100% - 1rem);
}
.modal-dialog-scrollable .modal-content {
  max-height: 100%;
  overflow: hidden;
}
.modal-dialog-scrollable .modal-body {
  overflow-y: auto;
}
.modal-dialog-centered {
  align-items: center;
  display: flex;
  min-height: calc(100% - 1rem);
}
.modal-content {
  background-clip: padding-box;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
  display: flex;
  flex-direction: column;
  outline: 0;
  pointer-events: auto;
  position: relative;
  width: 100%;
}
.modal-backdrop {
  background-color: #000;
  height: 100vh;
  left: 0;
  position: fixed;
  top: 0;
  width: 100vw;
  z-index: 1050;
}
.modal-backdrop.fade {
  opacity: 0;
}
.modal-backdrop.show {
  opacity: 0.5;
}
.modal-header {
  align-items: center;
  border-bottom: 1px solid #dee2e6;
  border-top-left-radius: calc(.3rem - 1px);
  border-top-right-radius: calc(.3rem - 1px);
  display: flex;
  flex-shrink: 0;
  justify-content: space-between;
  padding: 1rem;
}
.modal-header .btn-close {
  margin: -0.5rem -0.5rem -0.5rem auto;
  padding: 0.5rem;
}
.modal-title {
  line-height: 1.5;
  margin-bottom: 0;
}
.modal-body {
  flex: auto;
  padding: 1rem;
  position: relative;
}
.modal-footer {
  align-items: center;
  border-bottom-left-radius: calc(.3rem - 1px);
  border-bottom-right-radius: calc(.3rem - 1px);
  border-top: 1px solid #dee2e6;
  display: flex;
  flex-shrink: 0;
  flex-wrap: wrap;
  justify-content: flex-end;
  padding: 0.75rem;
}
.modal-footer > * {
  margin: 0.25rem;
}
@media (min-width: 576px) {
  .modal-dialog {
    margin: auto;
    max-width: 500px;
  }
  .modal-dialog-scrollable {
    height: calc(100% - 3.5rem);
  }
  .modal-dialog-centered {
    min-height: calc(100% - 3.5rem);
  }
  .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .modal-lg, .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .modal-xl {
    max-width: 1140px;
  }
}
.modal-fullscreen {
  height: 100%;
  margin: 0;
  max-width: none;
  width: 100vw;
}
.modal-fullscreen .modal-content {
  border: 0;
  border-radius: 0;
  height: 100%;
}
.modal-fullscreen .modal-header {
  border-radius: 0;
}
.modal-fullscreen .modal-body {
  overflow-y: auto;
}
.modal-fullscreen .modal-footer {
  border-radius: 0;
}
@media (max-width: 575.98px) {
  .modal-fullscreen-sm-down {
    height: 100%;
    margin: 0;
    max-width: none;
    width: 100vw;
  }
  .modal-fullscreen-sm-down .modal-content {
    border: 0;
    border-radius: 0;
    height: 100%;
  }
  .modal-fullscreen-sm-down .modal-header {
    border-radius: 0;
  }
  .modal-fullscreen-sm-down .modal-body {
    overflow-y: auto;
  }
  .modal-fullscreen-sm-down .modal-footer {
    border-radius: 0;
  }
}
@media (max-width: 767.98px) {
  .modal-fullscreen-md-down {
    height: 100%;
    margin: 0;
    max-width: none;
    width: 100vw;
  }
  .modal-fullscreen-md-down .modal-content {
    border: 0;
    border-radius: 0;
    height: 100%;
  }
  .modal-fullscreen-md-down .modal-header {
    border-radius: 0;
  }
  .modal-fullscreen-md-down .modal-body {
    overflow-y: auto;
  }
  .modal-fullscreen-md-down .modal-footer {
    border-radius: 0;
  }
}
@media (max-width: 991.98px) {
  .modal-fullscreen-lg-down {
    height: 100%;
    margin: 0;
    max-width: none;
    width: 100vw;
  }
  .modal-fullscreen-lg-down .modal-content {
    border: 0;
    border-radius: 0;
    height: 100%;
  }
  .modal-fullscreen-lg-down .modal-header {
    border-radius: 0;
  }
  .modal-fullscreen-lg-down .modal-body {
    overflow-y: auto;
  }
  .modal-fullscreen-lg-down .modal-footer {
    border-radius: 0;
  }
}
@media (max-width: 1199.98px) {
  .modal-fullscreen-xl-down {
    height: 100%;
    margin: 0;
    max-width: none;
    width: 100vw;
  }
  .modal-fullscreen-xl-down .modal-content {
    border: 0;
    border-radius: 0;
    height: 100%;
  }
  .modal-fullscreen-xl-down .modal-header {
    border-radius: 0;
  }
  .modal-fullscreen-xl-down .modal-body {
    overflow-y: auto;
  }
  .modal-fullscreen-xl-down .modal-footer {
    border-radius: 0;
  }
}
@media (max-width: 1399.98px) {
  .modal-fullscreen-xxl-down {
    height: 100%;
    margin: 0;
    max-width: none;
    width: 100vw;
  }
  .modal-fullscreen-xxl-down .modal-content {
    border: 0;
    border-radius: 0;
    height: 100%;
  }
  .modal-fullscreen-xxl-down .modal-header {
    border-radius: 0;
  }
  .modal-fullscreen-xxl-down .modal-body {
    overflow-y: auto;
  }
  .modal-fullscreen-xxl-down .modal-footer {
    border-radius: 0;
  }
}
.content-is-vertically-aligned-center {
  display: flex;
  align-content: center;
}
.slick-slider {
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
  box-sizing: border-box;
  touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.slick-list, .slick-slider {
  display: block;
  position: relative;
}
.slick-list {
  margin: 0;
  overflow: hidden;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}
.slick-slider .slick-list, .slick-slider .slick-track {
  transform: translateZ(0);
}
.slick-track {
  display: block;
  left: 0;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  top: 0;
}
.slick-track:after, .slick-track:before {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}
.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  border: 1px solid transparent;
  display: block;
  height: auto;
}
.slick-arrow.slick-hidden {
  display: none;
}
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}
.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}
.slick-slider .slick-track, .slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}
.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir="rtl"] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
  display: none;
}

@charset "UTF-8";
/*
This file is used to contain all abstracts imports.
Files inside this folder can contain abstract settings, helpers or functions. They have no direct output.
*/
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}
* {
  box-sizing: border-box;
}
img {
  max-width: 100%;
  height: auto;
}
/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}
/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}
/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}
/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}
/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}
/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  text-decoration: underline dotted;
  /* 2 */
}
/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b, strong {
  font-weight: bolder;
}
/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code, kbd, samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}
/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}
/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}
/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button, input, optgroup, select, textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */
}
/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button, input {
  /* 1 */
  overflow: visible;
}
/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button, select {
  /* 1 */
  text-transform: none;
}
/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button, [type="button"], [type="reset"], [type="submit"] {
  -webkit-appearance: button;
}
/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner, [type="button"]::-moz-focus-inner, [type="reset"]::-moz-focus-inner, [type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}
/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring, [type="button"]:-moz-focusring, [type="reset"]:-moz-focusring, [type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}
/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}
/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */
}
/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}
/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}
/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type="checkbox"], [type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}
/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button, [type="number"]::-webkit-outer-spin-button {
  height: auto;
}
/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}
/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}
/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}
/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}
/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}
/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}
/*============================================================================
  Color Variables
==============================================================================*/
:root {
  --color--blue: #053ba6;
  --color--dark-blue: #0b3970;
  --color--light-grey: #F5F5F5;
  --color--black: #1A1A1A;
  --color--white: #FFFFFF;
  --color--transwhite: #FFFFFF33;
  --color--primary: var(--color--blue);
  --color--primary-hover: var(--color--dark-blue);
  --color--heading: var(--color--black);
  --color--link: var(--color--primary);
  --color--link-hover: var(--color--primary-hover);
  --color--button: var(--color--primary);
  /*--color--botton-hover  : #061F9F;*/
  --color--botton-hover: var(--color--dark-blue);
  --color--form-input: var(--color--black);
  --color--form-input-background: var(--color--white);
  --font-size-small: 0.875rem;
  --font-size-base: 1rem;
  --font-size-md: 1rem;
  --font-size-lg: 1.375rem;
  --font-size-xl: 1.750rem;
  --font-size-xxl: 2.125rem;
  --font-size-xxxl: 2.375rem;
  --breakpoint--small:  576px;
  --breakpoint--medium:  768px;
  --breakpoint--large:  992px;
  --breakpoint--xlarge: 1200px;
  --breakpoint--xxlarge: 1400px;
  --line-height--body: 1.5;
  --line-height--heading: 1.25;
  --font-family--body: "Helvetica-Now","Source Sans Pro", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-family--micro: "Helvetica-Now-Micro";
  --font-family--display: "Helvetica-Now-Display";
  --spacing: 0.75rem;
  --container-width: 100%;
}
/*============================================================================
  Breakpoint Variables
==============================================================================*/
/*============================================================================
  Device Varients
==============================================================================*/
@media (min-width: 576px) {
  :root {
    --container-width: 540px;
  }
}
@media (min-width: 768px) {
  :root {
    --font-size-lg: 1.625rem;
    --font-size-xl: 2.000rem;
    --font-size-xxl: 2.500rem;
    --font-size-xxxl: 2.625rem;
    --spacing: 1rem;
    --container-width: 720px;
  }
}
@media (min-width: 992px) {
  :root {
    --font-size-md: 1.250rem;
    --font-size-lg: 1.875rem;
    --font-size-xl: 2.500rem;
    --font-size-xxl: 3.125rem;
    --font-size-xxxl: 3.375rem;
    --container-width: 960px;
  }
}
@media (min-width: 1200px) {
  :root {
    --container-width: 1140px;
  }
}
@media (min-width: 1400px) {
  :root {
    --container-width: 1400px;
  }
}
/* Adds vendor prefix to specified property */
/* Creates an rgba background based on a HEX colour */
/* Creates a horizontal gradient background */
/* Creates a vertical gradient background */
/* Creates a radial gradient background */
/* Background Image Centering */
/* Absolute Positioning Layer */
/* Retina Images */
/* Pseudo Class */
/* Transform */
/*============================================================================
  Breakpoint Mixins
==============================================================================*/
.bold {
  font-weight: bold !important;
}
.italic {
  font-style: italic !important;
}
.relative {
  position: relative;
}
.block {
  padding: 2.2rem;
}
.hidden, .hide {
  display: none !important;
}
.background-shadow::before {
  content: "";
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.7);
}
.wp-block-group {
  position: relative;
}
.one-scroll-height {
  min-height: calc(95vh - 15rem);
  padding: 5vh 0;
}
.one-scroll-height > div {
  padding-top: 5vh;
  margin-top: 1.75em;
}
.color-overlay:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(0deg, black -100%, transparent 100%);
  z-index: -1;
}
.has-black-background-color.color-overlay:before {
  background: linear-gradient(0deg, var(--color--black) -100%, transparent 100%);
}
.has-light-grey-background-color.color-overlay:before {
  background: linear-gradient(0deg, var(--color--light-grey) -100%, transparent 100%);
}
.has-blue-background-color.color-overlay:before {
  background: linear-gradient(0deg, var(--color--blue) -100%, transparent 100%);
}
.has-white-background-color.color-overlay:before {
  background: linear-gradient(0deg, var(--color--white) -100%, transparent 100%);
}
video.video-background {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  z-index: -2;
}
video.video-background::-webkit-media-controls, video[autoplay][muted]::-webkit-media-controls, .no-controls video::-webkit-media-controls {
  display: none !important;
}
.video-banner video {
  position: relative;
  height: 15rem;
  width: 100%;
  object-fit: cover;
}
.has-slider-bg .gallery-slider, .gallery-slider.slider-background {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  object-fit: cover;
  z-index: -2;
}
.has-slider-bg .gallery-slider, .has-slider-bg .gallery-slider .carousel-gallery, .has-slider-bg .gallery-slider .slick-list, .has-slider-bg .gallery-slider .slick-track, .has-slider-bg .gallery-slider .slick-slider, .gallery-slider.slider-background, .gallery-slider.slider-background .carousel-gallery, .gallery-slider.slider-background .slick-list, .gallery-slider.slider-background .slick-track, .gallery-slider.slider-background .slick-slider {
  height: 100%;
  background: none;
}
.has-slider-bg .gallery-slider .carousel-gallery__slide img, .gallery-slider.slider-background .carousel-gallery__slide img {
  height: 100%;
  object-fit: cover;
}
.has-slider-bg .gallery-slider .slick-slider, .gallery-slider.slider-background .slick-slider {
  z-index: -2;
}
.has-slider-bg .gallery-slider .carousel-gallery--controls, .gallery-slider.slider-background .carousel-gallery--controls {
  /*
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: none;
    background: linear-gradient(0deg, #0005, transparent);
    */
  display: none;
}
.block--black {
  --color--heading: var(--color--white);
  color: var(--color--white);
  background-color: var(--color--black);
}
img.cover {
  object-fit: cover;
}
img.contain {
  object-fit: contain;
}
.stretched-link::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  content: "";
}
.bold {
  font-weight: bold;
}
.desktop-only {
  display: none !important;
}
.mobile-only {
  display: block !important;
}
@media (min-width: 768px) {
  .desktop-only {
    display: block !important;
  }
  .mobile-only {
    display: none !important;
  }
}
/*
This file is used to contain all base imports.
Files inside this folder can contain global styles used in the project.
*/
/*--------------------------------------------------------------
# Animations
--------------------------------------------------------------*/
.btn, .frm_button_submit, input[type="button"], input[type="reset"], input[type="submit"], .wp-block-button.is-style-fill .wp-block-button__link, .wp-block-button.is-style-outline .wp-block-button__link, input[type=text]:focus, input[type=email]:focus, input[type=password]:focus, input[type=search]:focus, input[type=number]:focus, input[type=tel]:focus, input[type=url]:focus, input[type=date]:focus, input[type=datetime-local]:focus, input[type=month]:focus, input[type=week]:focus, select:focus, textarea:focus, a, a:not([href]):not([tabindex]), a:not([href]):not([tabindex]):focus, a:not([href]):not([tabindex]):hover {
  -webkit-transition: all 0.1s ease-in-out;
  -moz-transition: all 0.1s ease-in-out;
  -ms-transition: all 0.1s ease-in-out;
  -o-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}
.lift-on-hover {
  transition: 0.3s all;
}
.lift-on-hover:hover {
  transform: translate(0, -3px);
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.3);
}
.lift-on-hover:active {
  transform: translate(0px, 0px);
  box-shadow: none;
}
body {
  color: var(--color--black);
  font-family: var(--font-family--body);
  font-size: 1rem;
  line-height: 1.5;
  font-feature-settings: "ss04";
  background-color: var(--color--white);
}
p {
  padding: 0;
  margin-top: 0;
  margin-bottom: 1.25em;
}
p:first-of-type {
  margin-top: 0;
}
p.less-space {
  margin-bottom: 0.75em;
}
b, strong {
  font-weight: bold;
}
h1, .h1, h2, .h2, h3, .h3, .footer-cta--heading, h4, .h4, .projects-carousel--heading, h5, .h5, h6, .details-list dt, .h6 {
  color: var(--color--heading);
  line-height: 1.1;
  margin-top: 0;
}
h1, .h1, h2, .h2, h3, .h3, .footer-cta--heading {
  font-weight: bold;
  margin-bottom: 0.25em;
}
h4, .h4, .projects-carousel--heading, h5, .h5, h6, .details-list dt, .h6 {
  font-weight: normal;
  margin-bottom: 1em;
}
h1, .h1 {
  font-size: var(--font-size-xxxl);
}
h2, .h2 {
  font-size: var(--font-size-xxl);
}
h3, .h3, .footer-cta--heading {
  font-size: var(--font-size-xl);
}
h4, .h4, .projects-carousel--heading {
  font-size: var(--font-size-lg);
}
h5, .h5 {
  font-size: var(--font-size-md);
}
h6, .details-list dt, .h6 {
  font-size: var(--font-size-base);
}
h6, .details-list dt, .h6 {
  text-transform: uppercase;
}
h1, .h1 {
  font-family: var(--font-family--display);
  font-weight: bold;
}
.h4 {
  font-weight: 200;
}
.h6 {
  font-family: var(--font-family--micro);
  font-weight: bold;
}
.editor-content h1, .editor-content h2, .editor-content h3, .editor-content h4, .editor-content h5, .editor-content h6, .editor-content .details-list dt, .details-list .editor-content dt {
  font-weight: inherit;
}
.editor-content .has-small-font-size {
  font-size: var(--font-size-base);
  line-height: 1.25;
}
.editor-content .has-regular-font-size {
  font-size: var(--font-size-base);
  line-height: 1.25;
}
.editor-content .has-normal-font-size {
  font-size: var(--font-size-base);
  line-height: 1.25;
}
.editor-content .has-medium-font-size {
  font-size: var(--font-size-md);
  line-height: 1.25;
}
.editor-content .has-medium-large-font-size {
  font-size: var(--font-size-lg);
  line-height: 1.25;
}
.editor-content .has-medium-large-light-font-size {
  font-size: var(--font-size-lg);
  line-height: 1.25;
}
.editor-content .has-large-font-size {
  font-size: var(--font-size-xl);
  line-height: 1.25;
}
.editor-content .has-extra-large-font-size {
  font-size: var(--font-size-xxl);
  line-height: 1.25;
}
.editor-content .has-allcap-subhead-font-size {
  font-size: var(--font-size-md);
  line-height: 1.25;
}
.editor-content .has-small-heading-font-size {
  font-size: var(--font-size-base);
}
.editor-content .has-regular-heading-font-size {
  font-size: var(--font-size-base);
}
.editor-content .has-normal-heading-font-size {
  font-size: var(--font-size-base);
}
.editor-content .has-medium-heading-font-size {
  font-size: var(--font-size-md);
}
.editor-content .has-medium-large-heading-font-size {
  font-size: var(--font-size-lg);
}
.editor-content .has-medium-large-light-heading-font-size {
  font-size: var(--font-size-lg);
}
.editor-content .has-large-heading-font-size {
  font-size: var(--font-size-xl);
}
.editor-content .has-extra-large-heading-font-size {
  font-size: var(--font-size-xxl);
}
.editor-content .has-allcap-subhead-heading-font-size {
  font-size: var(--font-size-md);
}
.editor-content .has-medium-large-light-font-size, .editor-styles-wrapper .has-medium-large-light-font-size {
  font-weight: 200;
}
.editor-content h1.has-regular-font-size, .editor-content h2.has-regular-font-size, .editor-content h3.has-regular-font-size, .editor-content h4.has-regular-font-size, .editor-content h5.has-regular-font-size, .editor-content h6.has-regular-font-size, .editor-content .has-allcap-subhead-font-size, .editor-styles-wrapper h1.has-regular-font-size, .editor-styles-wrapper h2.has-regular-font-size, .editor-styles-wrapper h3.has-regular-font-size, .editor-styles-wrapper h4.has-regular-font-size, .editor-styles-wrapper h5.has-regular-font-size, .editor-styles-wrapper h6.has-regular-font-size, .editor-styles-wrapper .has-allcap-subhead-font-size {
  font-family: var(--font-family--micro);
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 0.85em;
}
.editor-content h1.has-medium-large-light-font-size, .editor-content h1.has-medium-large-font-size h2.has-medium-large-light-font-size, .editor-content h2.has-medium-large-font-size h3.has-medium-large-light-font-size, .editor-content h3.has-medium-large-font-size h4.has-medium-large-light-font-size, .editor-content h4.has-medium-large-font-size h5.has-medium-large-light-font-size, .editor-content h5.has-medium-large-font-size h6.has-medium-large-light-font-size, .editor-content h6.has-medium-large-font-size, .editor-styles-wrapper h1.has-medium-large-light-font-size, .editor-styles-wrapper h1.has-medium-large-font-size h2.has-medium-large-light-font-size, .editor-styles-wrapper h2.has-medium-large-font-size h3.has-medium-large-light-font-size, .editor-styles-wrapper h3.has-medium-large-font-size h4.has-medium-large-light-font-size, .editor-styles-wrapper h4.has-medium-large-font-size h5.has-medium-large-light-font-size, .editor-styles-wrapper h5.has-medium-large-font-size h6.has-medium-large-light-font-size, .editor-styles-wrapper h6.has-medium-large-font-size {
  font-weight: 200;
}
.editor-styles-wrapper h1, .editor-styles-wrapper h2, .editor-styles-wrapper h3, .editor-styles-wrapper h4, .editor-styles-wrapper h5, .editor-styles-wrapper h6, .editor-styles-wrapper .details-list dt, .details-list .editor-styles-wrapper dt {
  font-weight: inherit;
}
.editor-styles-wrapper h1 {
  font-size: var(--font-size-xxxl);
}
.editor-styles-wrapper h2 {
  font-size: var(--font-size-xxl);
}
.editor-styles-wrapper h3 {
  font-size: var(--font-size-xl);
}
.editor-styles-wrapper h4 {
  font-size: var(--font-size-lg);
}
.editor-styles-wrapper h5 {
  font-size: var(--font-size-md);
}
.editor-styles-wrapper h6, .editor-styles-wrapper .details-list dt, .details-list .editor-styles-wrapper dt {
  font-size: var(--font-size-base);
}
.primary {
  color: var(--color--primary);
}
.has-black-color[class] {
  color: var(--color--black);
}
.has-light-grey-color[class] {
  color: var(--color--light-grey);
}
.has-blue-color[class] {
  color: var(--color--blue);
}
.has-white-color[class] {
  color: var(--color--white);
}
.has-transwhite-color[class] {
  color: var(--color--transwhite);
}
.has-background a, .has-background p, .has-background h1, .has-background h2, .has-background h3, .has-background h4, .has-background h5, .has-background h6, .has-background .details-list dt, .details-list .has-background dt {
  color: currentColor;
}
.has-background a:hover, .has-background a:focus {
  color: currentColor;
}
.has-black-background-color[class] {
  background-color: var(--color--black);
}
.has-light-grey-background-color[class] {
  background-color: var(--color--light-grey);
}
.has-blue-background-color[class] {
  background-color: var(--color--blue);
}
.has-white-background-color[class] {
  background-color: var(--color--white);
}
.has-transwhite-background-color[class] {
  background-color: var(--color--transwhite);
  color: inherit;
}
.has-video-bg[class], .has-slider-bg[class], .no-bg[class] {
  background: none !important;
}
.has-background:not(.has-text-color).has-black-background-color[class], .has-background:not(.has-text-color).has-blue-background-color[class], .has-background:not(.has-text-color).has-bg-overlap-end-gradient-background, .has-background:not(.has-text-color).has-bg-overlap-start-gradient-background {
  color: var(--color--white);
}
.has-background:not(.has-text-color).has-white-background-color[class], .has-background:not(.has-text-color).has-light-grey-background-color[class] {
  color: var(--color--black);
}
.dark-bg {
  color: var(--color--white);
}
.dark-bg a, .dark-bg p, .dark-bg h1, .dark-bg h2, .dark-bg h3, .dark-bg h4, .dark-bg h5, .dark-bg h6, .dark-bg .details-list dt, .details-list .dark-bg dt {
  color: currentColor;
}
.has-bg-overlap-start-gradient-background {
  background: linear-gradient(180deg, transparent 70px, var(--color--black) 70px);
}
.has-bg-overlap-end-gradient-background {
  background: linear-gradient(0deg, transparent 70px, var(--color--black) 70px);
}
.aligncenter {
  margin: auto;
}
.alignright {
  margin-left: auto;
}
.no-border {
  border: none !important;
}
.no-margin {
  margin: 0 !important;
}
.auto-margin {
  margin: auto !important;
}
.margin-y {
  margin-top: 1em;
  margin-bottom: 1em;
}
aside {
  height: 100%;
}
.detail-panel {
  background-color: var(--color--light-grey);
  padding: 1rem 2rem;
  position: sticky;
  top: 1.5rem;
  margin-bottom: 3rem;
  display: block;
}
.single-team .detail-panel {
  margin-bottom: 1.5rem;
}
.wp-block-quote p {
  font-size: var(--font-size-lg);
  font-weight: bold;
  line-height: 1.15;
}
.wp-block-quote p:before {
  display: inline-block;
  content: "“";
  padding: 0 5px;
}
.wp-block-quote p:after {
  display: inline-block;
  content: "”";
  padding: 0 5px;
}
.wp-block-quote cite {
  font-size: var(--font-size-md);
}
table thead td {
  font-weight: bold;
}
table tbody td {
  padding: 5px;
  border: 1px solid;
}
.wp-block-image figure {
  position: relative;
}
.wp-block-image figure figcaption {
  z-index: 1;
  position: absolute;
  bottom: 0;
  right: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 15%, rgba(0, 0, 0, 0.5) 85%, rgba(0, 0, 0, 0) 100%);
  color: white;
  padding: 12px 40px 7px;
  margin-bottom: 8px;
}
.pdf-download .wp-element-button {
  padding-top: 1.2em !important;
  border: none !important;
}
.pdf-download .wp-block-button__link:hover {
  background: #3d3d3d !important;
}
.pdf-download .wp-block-button__link:before {
  display: inline-block;
  content: url("data:image/svg+xml;base64, PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxMjAwIDEyMDAiPgogIDxwYXRoIGQ9Ik03MTMgMEgxNjF2MTIwMGg4NzhWMzI2em0xNSA4NyAyMjQgMjI0SDcyOFY4N3ptMjYwIDEwNjJIMjEyVjUxaDQ2NXYzMTFoMzExdjc4N3oiPjwvcGF0aD4KICA8cGF0aCBkPSJNNDA5IDcyNWgtMTV2NzBoLTUxVjU1N2g2NmM1NCAwIDkyIDMxIDkyIDg0cy0zOCA4NC05MiA4NHptLTE1LTEyMnY3N2gxNWMyNyAwIDQxLTE1IDQxLTM5cy0xNC0zOC00MS0zOGgtMTV6TTUzOSA1NTdoNTBjNjcgMCAxMjggNDMgMTI4IDExOSAwIDc1LTYwIDExOS0xMjkgMTE5aC00OVY1NTd6bTUxIDQ2djE0NmM0Mi0xIDc2LTI2IDc2LTczIDAtNDgtMzQtNzItNzYtNzN6TTc1NSA1NTdoMTE3djQ2aC02NnY0Nmg2MXY0NmgtNjF2MTAwaC01MVY1NTd6Ij48L3BhdGg+Cjwvc3ZnPg==");
  width: 2rem;
  filter: invert(1);
  vertical-align: middle;
  margin: -0.8rem 0.4rem -1rem -0.5rem;
}
.page-id-4225 main header {
  display: none;
}
.transparent-white {
  color: #000;
  background: #ffffffdd;
  padding: 2em 5vw;
  margin: 2vw 0 !important;
}
.page-id-4225 input[type=checkbox] {
  opacity: 0.75;
}
.page-id-4225 .frm_section_heading {
  grid-gap: 0 2%;
  display: grid;
  grid-auto-rows: -webkit-max-content;
  grid-auto-rows: max-content;
  grid-template-columns: repeat(12, 6.5%);
  row-gap: 1rem;
}
.page-id-4225 .frm_section_heading > h3 {
  font-size: 1.2rem;
  font-weight: bold;
  margin: 0;
}
.page-id-4225 input, .page-id-4225 select, .page-id-4225 textarea {
  padding: 1em 1em 0.75em !important;
  background: #ffffff55;
}
.page-id-4225 select {
  padding: 1em 1em 0.75em !important;
  background: #ffffff55 url(data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%2220%22%20height%3D%2220%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M5%206l5%205%205-5%202%201-7%207-7-7%202-1z%22%20fill%3D%22%23667085%22%2F%3E%3C%2Fsvg%3E) no-repeat right 5px top 55%;
}
.page-id-4225 .frm_opt_container, .page-id-4225 .form-field.total .value {
  background: #ffffff55;
  padding: 0.5em 1em 0.3em !important;
  border: 1px solid var(--color--form-input);
  line-height: 2;
  min-height: 3em;
}
.page-id-4225 .sub-label {
  font-size: 0.9em;
  margin-top: 0.3em;
  font-weight: bold;
}
.frm_checkbox label {
  cursor: pointer;
  width: 100%;
}
.page-id-4225 span.frm_required {
  color: #ff4747;
  position: absolute;
  margin: 0 0.1em;
}
.owwco-bg {
  background: url(https://rvanderson.com/wp-content/uploads/2023/11/OWWCO-bg-2.png) 40% 15% no-repeat;
  background-size: cover;
}
.page-id-4225 .frm_button_submit {
  padding: 1em 3em 0.75em 3em;
  min-width: 35%;
}
.page-id-4225 .frm_error {
  background: #ff4747;
  color: #fff;
  padding: 0.5em 0.5em 0.3em;
  text-align: center;
  transform: scale(0.9);
  border-radius: 5px;
  margin: -0.5em 0;
  font-size: 1.1rem;
}
.page-id-4225 .frm_description {
  padding: 0.5em 0 0;
  font-size: 0.9em;
  line-height: 1.2;
  font-style: italic;
}
select:invalid {
  color: gray;
}
.fa-instagram:before {
  display: inline-block;
  content: url("data:image/svg+xml;base64, PHN2ZyBmaWxsPSIjZmZmIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAzMiAzMiI+PHBhdGggZD0iTTEwIDBDNCAwIDAgNCAwIDEwdjEyYzAgNiA0IDEwIDEwIDEwaDEyYzYgMCAxMC00IDEwLTEwVjEwYzAtNi00LTEwLTEwLTEwWm0xMiAzcTYuOS4xIDcgN3YxMnEtLjEgNi45LTcgN0gxMHEtNi45LS4xLTctN1YxMHEuMS02LjkgNy03Wm0yLjUgMi41YTIgMiA5MCAxIDAgMCAzLjkgMiAyIDkwIDAgMCAwLTMuOU0xNiA3LjhhOC4yIDguMiA5MCAxIDAgMCAxNi40IDguMiA4LjIgOTAgMCAwIDAtMTYuNG0wIDIuOWE1LjMgNS4zIDkwIDEgMSAwIDEwLjYgNS4zIDUuMyA5MCAwIDEgMC0xMC42Ii8+PC9zdmc+");
  width: 22px;
  vertical-align: middle;
}
/*--------------------------------------------------------------
# Buttons
--------------------------------------------------------------*/
.btn, .frm_button_submit, input[type="button"], input[type="reset"], input[type="submit"], .wp-block-button.is-style-fill .wp-block-button__link, .wp-block-button.is-style-outline .wp-block-button__link {
  display: inline-block;
  border-radius: 0;
  border: 2px solid transparent;
  cursor: pointer;
  display: inline-block;
  font-weight: bold;
  font-size: 1rem;
  line-height: 1.375;
  padding: 1em 2em;
  margin: 1rem 0;
  width: auto;
  position: relative;
  text-decoration: none;
}
.btn::after, .frm_button_submit::after, input[type="button"]::after, input[type="reset"]::after, input[type="submit"]::after, .wp-block-button.is-style-fill .wp-block-button__link::after, .wp-block-button.is-style-outline .wp-block-button__link::after {
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
  content: "";
  position: absolute;
  padding-left: 10px;
  display: inline-block;
  vertical-align: middle;
  opacity: 0;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
  transition: 0.3s opacity;
  font-size: 0.7em;
}
.btn:hover::after, .frm_button_submit:hover::after, input[type="button"]:hover::after, input[type="reset"]:hover::after, input[type="submit"]:hover::after, .wp-block-button.is-style-fill .wp-block-button__link:hover::after, .wp-block-button.is-style-outline .wp-block-button__link:hover::after {
  opacity: 1;
}
.btn, .frm_button_submit {
  color: var(--color--white);
  background-color: var(--color--button);
}
.btn:hover, .frm_button_submit:hover, .btn:active, .frm_button_submit:active {
  background-color: var(--color--botton-hover);
  color: var(--color--white);
}
.btn:focus, .frm_button_submit:focus {
  outline: 2px solid white;
  outline-offset: -5px;
  background-color: var(--color--botton-hover);
  color: var(--color--white);
}
.is-style-arrow-button > a.wp-block-button__link {
  background: none;
  padding: 0;
}
/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
input[type=text], input[type=email], input[type=password], input[type=search], input[type=number], input[type=tel], input[type=url], input[type=date], input[type=datetime-local], input[type=month], input[type=week], select, textarea {
  background-color: --var --color--form-input-background;
  -webkit-border-radius: 0;
  -webkit-appearance: none;
  border-radius: 0;
  border: 1px solid var(--color--form-input);
  box-sizing: border-box;
  color: var(--color--form-input);
  font-size: 1rem;
  padding: 1em 1.125em;
  width: 100%;
}
input[type=text]:focus, input[type=email]:focus, input[type=password]:focus, input[type=search]:focus, input[type=number]:focus, input[type=tel]:focus, input[type=url]:focus, input[type=date]:focus, input[type=datetime-local]:focus, input[type=month]:focus, input[type=week]:focus, select:focus, textarea:focus {
  border: 1px solid var(--color--primary);
}
::placeholder {
  color: var(--color--form-input);
  opacity: 0.6;
}
.frm_form_fields .frm_fields_container {
  display: grid;
  grid-template-columns: repeat(12, 6.5%);
  grid-auto-rows: max-content;
  grid-gap: 0 2%;
  row-gap: 1.5rem;
}
.frm_first, .frm_form_field.frm_left_half, .frm_form_field.frm_left_third, .frm_form_field.frm_left_two_thirds, .frm_form_field.frm_left_fourth, .frm_form_field.frm_left_fifth, .frm_form_field.frm_left_inline, .frm_form_field.frm_first_half, .frm_form_field.frm_first_third, .frm_form_field.frm_first_two_thirds, .frm_form_field.frm_first_fourth, .frm_form_field.frm_first_fifth, .frm_form_field.frm_first_sixth, .frm_form_field.frm_first_seventh, .frm_form_field.frm_first_eighth, .frm_form_field.frm_first_inline, .frm_form_field.frm_first {
  grid-column-start: 1;
}
.frm_combo_inputs_container > *, .frm_grid_container > *, .frm_section_heading > *, .frm_fields_container .frm_form_field, .frm_fields_container > * {
  grid-column: span 12 / span 12;
}
.frm_half, .frm_form_field.frm_three_fifths, .frm_form_field.frm6, .frm_submit.frm6, .frm_form_field.frm_left_half, .frm_form_field.frm_right_half, .frm_form_field.frm_first_half, .frm_form_field.frm_last_half, .frm_form_field.frm_half, .frm_submit.frm_half {
  grid-column: span 6 / span 6;
}
.frm_forms fieldset {
  border: none;
  padding: 0;
}
.frm_button_submit {
  margin: 0;
}
.frm_verify {
  position: absolute;
  left: -3000px;
  display: block;
}
a, a:not([href]):not([tabindex]), a:not([href]):not([tabindex]):focus, a:not([href]):not([tabindex]):hover {
  color: var(--color--link);
  text-decoration: none;
}
a:active, a:focus, a:hover, a:not([href]):not([tabindex]):active, a:not([href]):not([tabindex]):focus, a:not([href]):not([tabindex]):hover, a:not([href]):not([tabindex]):focus:active, a:not([href]):not([tabindex]):focus:focus, a:not([href]):not([tabindex]):focus:hover, a:not([href]):not([tabindex]):hover:active, a:not([href]):not([tabindex]):hover:focus, a:not([href]):not([tabindex]):hover:hover {
  color: var(--color--link-hover);
  text-decoration: none;
}
.editor-content p a {
  text-decoration: underline;
}
.editor-content p a:active, .editor-content p a:focus, .editor-content p a:hover {
  text-decoration: underline;
}
.is-style-arrow-button > a.wp-block-button__link, .arrow-link, .wp-block-button.is-style-arrow-button .wp-block-button__link {
  font-weight: bold;
  padding-right: 2.5rem;
}
.is-style-arrow-button > a.wp-block-button__link::after, .arrow-link::after, .wp-block-button.is-style-arrow-button .wp-block-button__link::after {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
  content: "";
  padding-left: 1rem;
  transition: 0.3s all;
  position: absolute;
}
.is-style-arrow-button > a.wp-block-button__link:hover::after, .arrow-link:hover::after, .wp-block-button.is-style-arrow-button .wp-block-button__link:hover::after, .arrow-link-hover:hover .arrow-link::after, .arrow-link-hover:hover .wp-block-button.is-style-arrow-button .wp-block-button__link::after, .wp-block-button.is-style-arrow-button .arrow-link-hover:hover .wp-block-button__link::after {
  padding-left: 1.2rem;
}
.play-button, .editor-content .play-button {
  font-weight: bold;
  padding-right: 2.5rem;
  text-decoration: none;
}
.play-button svg, .editor-content .play-button svg {
  vertical-align: middle;
  height: 1.4em;
  margin: -0.2em 0 0 0.3em;
}
.filter-toggle {
  font-family: var(--font-family--micro);
  text-transform: uppercase;
  color: var(--color--black);
  display: inline-block;
  margin: 0 1rem;
  font-weight: bold;
}
.filter-toggle::after {
  content: "";
  font-family: "Font Awesome 5 Pro";
  display: inline-block;
  margin-left: 0.33em;
  font-size: 1.2em;
  vertical-align: middle;
  color: var(--color--primary);
  font-weight: 400;
  line-height: 1em;
  vertical-align: top;
}
.filter-toggle.active::after {
  content: "";
}
.dark-bg a {
  color: var(--color--white);
}
/*
This file is used to contain all component imports.
Files inside this folder should contain all styles relating to a reusable component.
*/
/*--------------------------------------------------------------
# Menu Toggle
--------------------------------------------------------------*/
.menu-toggle {
  display: block;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  cursor: pointer;
  color: var(--color--white);
  width: 22px;
  height: 18px;
  position: relative;
  background: none;
  border: none;
}
.menu-toggle .bottom-bar, .menu-toggle .middle-bar, .menu-toggle .top-bar {
  width: 22px;
  height: 2px;
  background-color: var(--color--white);
  -webkit-transition: -webkit-transform 0.1s 0s ease-in-out, top 0.1s 0.1s ease-in-out;
  -moz-transition: -moz-transform 0.1s 0s ease-in-out, top 0.1s 0.1s ease-in-out;
  -ms-transition: -ms-transform 0.1s 0s ease-in-out, top 0.1s 0.1s ease-in-out;
  -o-transition: -o-transform 0.1s 0s ease-in-out, top 0.1s 0.1s ease-in-out;
  transition: transform 0.1s 0s ease-in-out, top 0.1s 0.1s ease-in-out;
  -webkit-transform-origin: 50% 50%;
  -moz-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  -o-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  position: absolute;
  top: 0;
  right: 0;
}
.menu-toggle .middle-bar {
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity 0s 0.15s linear;
  -moz-transition: opacity 0s 0.15s linear;
  -ms-transition: opacity 0s 0.15s linear;
  -o-transition: opacity 0s 0.15s linear;
  transition: opacity 0s 0.15s linear;
  top: 7px;
}
.menu-toggle .bottom-bar {
  top: 14px;
}
@media (min-width: 1400px) {
  .menu-toggle {
    display: none;
  }
}
.menu-toggle[aria-expanded="true"] .top-bar {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 7px;
}
.menu-toggle[aria-expanded="true"] .middle-bar {
  opacity: 0;
  visibility: none;
}
.menu-toggle[aria-expanded="true"] .bottom-bar {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 7px;
}
.website-header {
  background: linear-gradient(45deg, var(--color--black) 50%, var(--color--primary) 50%) no-repeat;
  position: relative;
}
.website-header > .container {
  background: linear-gradient(45deg, var(--color--black) 50%, var(--color--primary) 50%) no-repeat;
  background-position: -2.4em;
}
.website-header > .container:has(.arch-logo) {
  background-position: -1.55em;
}
@media (min-width: 1400px) {
  .website-header .container {
    background-position: -3.9em;
  }
  .website-header .container:has(.arch-logo) {
    background-position: -2.45em;
  }
}
.header-logo {
  height: 100%;
  width: auto;
}
.header-logo img {
  display: block;
  margin: 0.5em 0;
  max-height: 2.5em;
  width: auto;
}
.header-logo .arch-logo img {
  transform: scale(1.15);
}
.header-nav {
  display: flex;
  align-items: center;
}
.header-nav ul {
  padding: 0;
  margin: 0;
}
.header-nav li {
  list-style: none;
}
.header-nav .menu-item a {
  color: var(--color--white);
  padding: 6px;
}
.header-nav .menu-item a:hover {
  color: var(--color--light-grey);
}
.menu-level-1 > .menu-item.current-menu-item::after {
  content: "";
  display: block;
  border-bottom: 2px solid var(--color--white);
}
.header-nav .menu-item button {
  cursor: pointer;
  color: var(--color--white);
  border: none;
  background: none;
  padding: 0;
  padding: 6px;
}
.nav-left {
  flex: 1;
  text-align: left;
}
.nav-right {
  flex: 1;
  text-align: right;
}
.menu-level-1 > li > a, .menu-level-1 > li > button {
  font-weight: bold;
}
.menu-level-2 > .menu-item > a:hover::after {
  padding-left: 3rem;
}
.menu-level-3 li {
  color: white;
}
.toggle-submenu > .icon {
  transition: 0.3s transform;
}
.toggle-submenu[aria-expanded="true"] > .icon {
  transform: rotateX(180deg);
}
.mobile-nav {
  position: absolute;
  top: 100%;
  left: 0;
  width: 80%;
  max-width: 500px;
  animation-name: slide-in-right;
  animation-duration: 0.5s;
  z-index: 999;
}
.mobile-nav .menu-level-2 {
  font-family: var(--font-family--micro);
}
.mobile-nav ul {
  padding-left: 1rem;
}
@media (min-width: 1400px) {
  .mobile-nav {
    display: none !important;
  }
}
@keyframes slide-in-right {
  0% {
    left: -100%;
  }
  100% {
    left: 0;
  }
}
.mobile-nav--top {
  background-color: var(--color--black);
  padding: 1rem 1.5rem;
}
.mobile-nav--bottom {
  background-color: var(--color--primary);
  padding: 1rem 1.5rem;
}
.mobile-nav-list .menu-item {
  margin: 1rem 0;
}
.desktop-nav-list {
  display: none;
}
.desktop-nav-list > li.menu-item {
  padding: 2.5rem 0.5rem;
}
.desktop-nav-list > li.menu-item:first-child {
  padding-left: 0;
}
.desktop-nav-list > li.menu-item:last-child {
  padding-right: 0;
}
.desktop-nav-list > li.menu-item:hover .nav-dropdown {
  display: block;
}
.desktop-nav-list .menu-level-1 > li:not(:first-child) {
  margin-left: 2rem;
}
.desktop-nav-list .menu-level-2 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  column-gap: 2rem;
  row-gap: 4rem;
  text-align: left;
}
.desktop-nav-list .no-grid .menu-level-2 {
  display: flex;
}
.desktop-nav-list .no-grid .menu-level-2 > .menu-item > a::after {
  display: none;
}
.desktop-nav-list .menu-level-2 > .menu-item > a {
  text-transform: uppercase;
}
.desktop-nav-list .menu-level-2 > .menu-item > a::after {
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
  content: "";
  padding-left: 2rem;
  transition: 0.3s all;
}
.desktop-nav-list .menu-level-2 > .menu-item > a:hover::after, .desktop-nav-list .menu-level-2 > .menu-item > a:focus::after {
  padding-left: 2.5rem;
}
@media (min-width: 1400px) {
  .desktop-nav-list {
    display: inline-block;
  }
}
.nav-dropdown {
  position: absolute;
  top: calc(100% - 5px);
  left: 0;
  width: 100%;
  background-color: var(--color--black);
  padding: 3.25rem 0 6.5rem;
  animation-name: slide-down;
  animation-duration: 0.5s;
  transform-origin: top;
  z-index: 999;
}
@keyframes slide-down {
  0% {
    transform: rotateX(-20deg);
  }
  100% {
    transform: rotateX(0);
  }
}
.desktop-nav-list > li {
  display: inline-block;
}
button#menu-toggle[aria-expanded="false"] + .mobile-nav {
  display: none;
}
.toggle-submenu[aria-expanded="false"] + .menu-level-2, .toggle-submenu[aria-expanded="false"] + .nav-dropdown {
  display: none;
}
.alert-bar {
  color: #fffd;
  background: #222c;
  text-align: center;
  position: absolute;
  width: 100%;
  padding: 0.85em 3rem 0.8em;
  line-height: 1.3em;
  z-index: 9;
  font-weight: 300;
  text-shadow: 1px 1px 3px #000;
  font-size: 0.9rem;
}
.alert-bar > div {
  text-align: left;
  display: inline-block;
  max-width: 1370px;
}
.footer-nav-list {
  padding-left: 0;
}
.footer-nav-list li {
  list-style: none;
}
@media (min-width: 768px) {
  .footer-nav-list li {
    display: inline-block;
  }
}
.footer-nav-list li a {
  text-align: center;
  padding: 0.875rem 0.5rem;
}
@media (min-width: 768px) {
  .footer-nav-list li:not(:last-child):after {
    display: inline-block;
    content: "|";
  }
}
.toggle-search {
  background: none;
  border: none;
  color: var(--color--white);
  margin-left: 2rem;
}
#search-bar {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  right: 0;
  background-color: var(--color--primary);
  padding: 1rem 4;
  display: flex;
  align-items: center;
  display: none;
}
#search-bar.open {
  display: flex;
}
@keyframes slide-open {
  0% {
    width: 25%;
  }
  100% {
    width: 100%;
  }
}
.search-field {
  display: flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--color--white);
  color: var(--color--white);
  animation-name: slide-open;
  animation-duration: 0.4s;
  margin-left: auto;
}
.search-field label {
  padding: 0.5rem 0.5rem 0.5rem 1rem;
}
.search-field input {
  color: var(--color--white);
  background: none;
  border: none;
}
.search-field input:focus {
  border: none;
}
.search-field input::placeholder {
  color: rgba(255, 255, 255, 0.8);
}
.search-field button {
  padding: 1rem;
  background: none;
  border: none;
  color: var(--color--white);
}
.breadcrumbs {
  --crumb--color: var(--color--primary);
}
.breadcrumbs {
  font-size: 0.9em;
  padding: 0;
  list-style: none;
}
.breadcrumbs > .crumb {
  display: inline-block;
}
.breadcrumbs a {
  font-weight: bold;
  color: var(--crumb--color);
}
.breadcrumbs > .crumb:not(:last-child)::after {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
  content: "";
  padding: 0 1rem;
  color: var(--crumb--color);
}
@media (min-width: 992px) {
  .breadcrumbs {
    font-size: 1em;
  }
  .breadcrumbs > .crumb:not(:last-child)::after {
    padding: 0 1.75rem;
  }
}
.banner-breadcrumbs {
  margin: 1.5rem 0 1rem;
}
@media (min-width: 992px) {
  .banner-breadcrumbs {
    margin: 3rem 0 1rem;
    min-height: 4rem;
  }
}
.page-banner {
  height: 100vw;
  min-height: 20em;
  max-height: calc(75vh - 100px);
  position: relative;
  color: var(--color--white);
  background-color: var(--color--black);
}
.page-banner .page-title {
  color: var(--color--white);
  margin-bottom: 1.2em;
}
.page-banner .breadcrumbs {
  --crumb--color: var(--color--white);
}
.page-banner__top, .page-banner__bottom {
  position: absolute;
  left: 0;
  width: 100%;
  text-shadow: 0 0 3rem rgba(0, 0, 0, 0.8);
}
.page-banner__top {
  top: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.48) 66%, rgba(0, 0, 0, 0.48) 66%, transparent);
}
.page-banner__bottom {
  bottom: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.4) 66%, rgba(0, 0, 0, 0.4) 66%, transparent);
  padding-top: 2rem;
}
.no-breadcrumbs .page-banner__bottom {
  min-height: 55%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.4) 80%, rgba(0, 0, 0, 0.4) 80%, transparent);
}
.banner-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
/*.archive .page-banner, .page-template-archive-projects .page-banner {
  max-height: 24rem;
}*/
@media (min-width: 768px) {
  .page-banner {
    height: 33vw;
  }
}
.split-banner {
  position: relative;
}
.split-banner .page-title {
  margin-bottom: 2.5rem;
}
.split-banner--image {
  width: 100%;
  height: 66vw;
  max-height: 50vh;
  bottom: 0;
  object-fit: cover;
  object-position: center;
}
.split-banner--copy {
  padding-bottom: 3rem;
}
@media (min-width: 992px) {
  .split-banner {
    min-height: 33vw;
  }
  .split-banner .page-title {
    margin-bottom: 1rem;
  }
  .split-banner--image {
    height: 100%;
    max-height: 33vw;
    position: absolute;
    right: 0;
    top: 0;
    width: 50vw;
  }
  .split-banner--copy {
    margin-right: 2rem;
  }
}
.no-image-banner {
  min-height: 12.5rem;
}
@media (min-width: 992px) {
  .no-image-banner {
    min-height: 17rem;
  }
}
.home-banner {
  position: relative;
}
.banner-carousel--slide {
  position: relative;
  height: calc(100vh - 7rem);
  max-height: 600px;
}
@media (min-width: 768px) {
  .banner-carousel--slide {
    max-height: 66vw;
  }
}
@media (min-width: 1400px) {
  .banner-carousel--slide {
    max-height: none;
  }
}
.banner-carousel--content {
  width: 100%;
  bottom: 0;
  position: absolute;
  padding-top: calc(var(--spacing) * 60 / 16);
  padding-bottom: calc(var(--spacing) * 160 / 16);
  text-shadow: 0 0 1rem rgba(0, 0, 0, 0.7);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.4) 75%, rgba(0, 0, 0, 0.4) 75%, transparent);
}
.banner-carousel--topic {
  text-transform: uppercase;
  font-family: var(--font-family--micro);
  font-weight: bold;
  margin-bottom: 1rem;
}
.banner-carousel--heading {
  margin: 0 0 calc(var(--spacing) * 32 / 16);
  font-family: var(--font-family--display);
  font-weight: bold;
}
.banner-carousel--controls {
  position: absolute;
  bottom: calc(var(--spacing) * 72 / 16);
}
.banner-carousel--controls button.prev-slide, .banner-carousel--controls button.next-slide {
  display: inline-block;
  background: none;
  border: none;
  color: currentColor;
  font-size: 1.375rem;
}
.banner-carousel--controls button.prev-slide {
  margin-right: calc(var(--spacing) * 64 / 16);
}
.image-caption {
  z-index: 1;
  position: absolute;
  bottom: 0;
  right: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 15%, rgba(0, 0, 0, 0.5) 85%, rgba(0, 0, 0, 0) 100%);
  color: white;
  padding: 12px 20px 7px;
}
.image-caption p {
  margin-bottom: 0;
}
.right-pop {
  position: fixed;
  right: 0;
  bottom: 100px;
  box-shadow: 1px 1px 2px 1px #0004, 0.3em 0.3em 1em #0003;
  border-radius: 0.5em 0 0 0.5em;
  z-index: 9;
  width: 200px;
  text-align: center;
  overflow: hidden;
}
.right-pop a:after {
  display: block;
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: -10px;
  box-shadow: 1px 1px 0 #fff2 inset, 0 0 60px #fff2 inset;
  border-radius: 0.4em 0 0 0.4em;
}
.right-pop h6, .right-pop .details-list dt, .details-list .right-pop dt, .right-pop .close {
  position: absolute;
  color: #fff;
  text-shadow: 1px 1px 1px #0003, 3px 3px 10px #0013;
}
.right-pop h6, .right-pop .details-list dt, .details-list .right-pop dt {
  top: 5px;
  left: 8px;
  width: 50px;
  height: 50px;
  font-weight: 600;
}
.right-pop .btn-close {
  position: absolute;
  top: 8px;
  right: 6px;
  background: none;
  border: none;
  font-size: 1.2rem;
  color: #fff;
  cursor: pointer;
  text-shadow: 1px 1px 1px #0004, 0px 0px 2px #0006;
  border-radius: 50%;
  width: 24px;
  height: 24px;
}
.right-pop .btn-close:hover {
  background-color: #8887;
}
.right-pop img {
  width: 200px;
  height: 200px;
  display: block;
}
.right-pop a:hover img {
  filter: invert(0.05) brightness(1.2);
}
.carousel-gallery {
  background-color: var(--color--black);
}
.carousel-gallery .slick-track {
  display: flex;
  height: 375px;
}
.carousel-gallery .slick-slide {
  height: inherit !important;
  display: flex;
  position: relative;
}
.carousel-gallery .slick-slide > div {
  width: 100%;
}
.carousel-gallery img {
  width: 100%;
  height: 100%;
}
.carousel-gallery .slick-slide figcaption {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  padding: 0.6em 3% 0.5em;
  font-size: 1.1em;
  background: #0008;
  text-shadow: 0.05em 0.05em 1.5em #000;
  color: #fff;
  line-height: 1.4;
}
.carousel-gallery--controls {
  padding: 1rem 0;
  background-color: var(--color--black);
}
.carousel-gallery--controls {
  display: flex;
  justify-content: center;
}
.carousel-gallery--arrow {
  margin: 0 1rem;
  color: var(--color--white);
  background: none;
  border: none;
}
@media (min-width: 768px) {
  .carousel-gallery .slick-track {
    height: 560px;
  }
}
@media (min-width: 1400px) {
  .carousel-gallery .slick-track {
    height: 650px;
  }
}
.slick-dots {
  padding: 0;
  margin: 0;
  list-style: none;
}
.slick-dots button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 20px;
  height: 20px;
  padding: 5px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
  position: relative;
}
.slick-dots button::before {
  content: "";
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
  font-size: 16px;
  color: var(--color--white);
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  text-align: center;
  -webkit-font-smoothing: antialiased;
}
.slick-dots li {
  display: inline-block;
  vertical-align: middle;
  margin: 0 0.5rem;
}
.slick-dots li.slick-active button::before {
  font-weight: 900;
}
.carousel-btn {
  background: none;
  border: none;
  color: inherit;
}
.projects-carousel--slide.slick-slide {
  transition: transform 0.2s;
}
.projects-carousel--slide.slick-slide:hover {
  transform: translateY(-0.3em);
}
.mosaic-grid {
  display: grid;
  gap: 0.625rem;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  grid-auto-rows: 240px;
}
.mosaic-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: var(--color--light-grey);
  height: 100%;
  width: 100%;
  transition: all 500ms;
  overflow: hidden;
  padding: 0;
  margin: 0;
}
.mosaic-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
@media screen and (min-width: 1000px) {
  .mosaic-card:nth-child(3), .mosaic-card:nth-child(4) {
    grid-row: span 2 / auto;
  }
  .mosaic-card:nth-child(1), .mosaic-card:nth-child(4), .mosaic-card:nth-child(6) {
    grid-column: span 2 / auto;
  }
}
@media screen and (min-width: 1000px) {
  .mosaic-card-tall {
    grid-row: span 2 / auto;
  }
  .mosaic-card-wide {
    grid-column: span 2 / auto;
  }
}
@media (min-width: 992px) {
  .mosaic-grid {
    grid-template-columns: repeat(auto-fit, minmax(23%, 1fr));
    grid-auto-rows: 280px;
  }
}
.details-list dt {
  margin-bottom: 0.15em;
  font-family: var(--font-family--micro);
  font-weight: bold;
}
.details-list dt:not(:first-child) {
  margin-top: 2rem;
}
.details-list dd {
  margin: 0;
  line-height: 1.5;
}
.icon-link {
  position: relative;
  margin: 2rem 0;
}
.icon-link--icon {
  width: 4.5rem;
  margin-bottom: 0.75rem;
}
.icon-link--title {
  font-size: var(--font-size-md);
  font-weight: 200;
  margin: 0.5em 0;
}
.icon-link--title .arrow-link, .icon-link--title .wp-block-button.is-style-arrow-button .wp-block-button__link, .wp-block-button.is-style-arrow-button .icon-link--title .wp-block-button__link {
  font-weight: inherit;
  color: var(--color--black);
}
.icon-link--title .arrow-link::after, .icon-link--title .wp-block-button.is-style-arrow-button .wp-block-button__link::after, .wp-block-button.is-style-arrow-button .icon-link--title .wp-block-button__link::after {
  font-size: 0.9em;
}
.footer-ctas {
  background-color: var(--color--primary);
  overflow: hidden;
}
.cta-block {
  position: relative;
  flex: 1;
}
.footer-cta {
  position: relative;
  z-index: 3;
  padding-top: calc(var(--spacing) * 80 / 16);
  padding-bottom: calc(var(--spacing) * 100 / 16);
}
.footer-cta--heading {
  margin-bottom: calc(var(--spacing) * 30 / 16);
}
.footer-cta--copy {
  line-height: 1.33;
  margin-bottom: calc(var(--spacing) * 30 / 16);
}
.footer-cta--background {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  max-width: none;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.cta-block--left, .cta-block--right {
  padding-left: 15px;
  padding-right: 15px;
}
@media (min-width: 768px) {
  .footer-ctas {
    display: flex;
  }
  .cta-block--left, .cta-block--right {
    width: calc(var(--container-width) / 2);
  }
  .cta-block--left {
    margin-left: auto;
    margin-right: 1rem;
    display: flex;
    justify-content: flex-start;
  }
  .cta-block--right {
    margin-right: auto;
    margin-left: 1rem;
    display: flex;
    justify-content: flex-end;
  }
  .footer-cta {
    max-width: 66%;
  }
}
.filter {
  display: inline-block;
  font-family: var(--font-family--micro);
}
.filter summary {
  display: inline-block;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  cursor: pointer;
  font-weight: bold;
}
.filter summary::after {
  content: "";
  font-family: "Font Awesome 5 Pro";
  font-weight: 800;
  display: inline-block;
  color: var(--color--primary);
  margin-left: 1rem;
  transition: 0.3s transform;
}
.filter[open] > summary::after {
  transform: rotateX(180deg);
}
.filter summary::-webkit-details-marker {
  display: none;
}
.filter .filter-links {
  list-style: none;
  margin: 0;
  padding: 0;
  box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.2);
  position: absolute;
  background-color: var(--color--black);
  z-index: 10;
  max-height: 20rem;
  overflow-y: auto;
}
.filter .filter-link {
  color: var(--color--black);
  padding: 0.5rem 1rem;
  display: block;
  color: var(--color--white);
}
.filter .filter-link.current, .filter .filter-link:hover, .filter .filter-link:focus {
  background-color: var(--color--primary);
}
.filter.filter-box {
  position: relative;
}
.filter.filter-box summary {
  text-transform: none;
  border: 1px solid var(--color--black);
  padding: 0.5em 1em;
}
.filter.filter-box summary::after {
  color: inherit;
}
.filter.filter-box .filter-links {
  min-width: 100%;
  padding: 0.5rem 1em;
}
.filter-bar {
  display: flex;
  margin: calc(var(--spacing) * 45 / 16) -1rem calc(var(--spacing) * 70 / 16);
  justify-content: space-between;
  flex-wrap: wrap;
}
.filter-boxed {
  font-family: var(--font-family--body);
  border: 1px solid var(--color--black);
}
.filter-boxed summary {
  font-weight: normal;
  text-transform: unset;
}
.pagination {
  display: flex;
  list-style: none;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.pagination li:not(.dots-item) {
  margin: 0 0.5rem;
  position: relative;
}
.pagination li.current::after {
  content: "";
  border-bottom: 2px solid var(--color--primary);
  display: block;
  position: absolute;
  bottom: 0;
  width: 100%;
}
.pagination .page-btn.next .svg-inline--fa {
  margin-left: 0.25rem;
}
.pagination .page-btn.prev .svg-inline--fa {
  margin-right: 0.25rem;
}
.pagination .page-btn.disabled button {
  border: none;
  background: none;
}
.pagination .page-number, .pagination .page-btn > button, .pagination .page-btn > a, .pagination .dots {
  display: inline-block;
  background: none;
  border: none;
  padding: 0.25rem;
}
.pagination .btn-text {
  display: none;
}
@media (min-width: 768px) {
  .pagination .btn-text {
    display: inline;
  }
}
.news-card {
  position: relative;
  background-color: var(--color--white);
  height: 100%;
}
.news-card--thumbnail-wrap {
  height: 160px;
}
.news-card--thumbnail {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}
.news-card--inner {
  padding: 1.25rem;
}
.news-card time {
  font-weight: bold;
  display: inline-block;
}
.news-card time::after {
  content: "";
  display: block;
  border-bottom: 2px solid var(--color--primary);
}
.news-card--heading {
  font-size: 1.375rem;
  font-weight: normal;
  margin: 1rem 0 1.25rem;
}
.news-card--heading a {
  color: inherit;
}
@media (min-width: 992px) {
  .news-card.is-large .news-card--thumbnail-wrap {
    height: 220px;
  }
}
.project-card {
  position: relative;
  width: 100%;
  transition: 0.3s all;
  background-color: var(--color--black);
  height: 100%;
}
.project-card:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(transparent 50%, #000) 50% 0;
  opacity: 0.2;
  transition: opacity 0.3s;
}
.project-card:hover:after {
  opacity: 0.4;
}
.project-card header {
  background-color: var(--color--black);
}
.project-card .project-card--heading {
  font-size: 1.625rem;
  font-weight: 200;
  margin: 1.6rem 1.9rem 1.4rem;
  padding-right: 2rem;
  z-index: 1;
  color: var(--color--white);
}
.projects-for-solution .project-card .project-card--heading {
  font-size: 1.55rem;
  margin: 1.4rem 1.6rem 1.3rem;
}
.project-card .project-card--heading::before {
  content: "";
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
  font-size: 1rem;
  position: absolute;
  right: 0;
  display: block;
  color: var(--color--white);
  line-height: 1.625rem;
  margin-right: 2rem;
}
.project-card a {
  color: var(--color--white);
}
.project-card--thumbnail {
  height: 20rem;
  width: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.team-card {
  position: relative;
  width: 100%;
  font-weight: bold;
}
.team-card a {
  color: var(--color--black);
}
.team-card h3 {
  font-size: 1.5rem;
  margin: 1em 0 0 0;
}
.team-card--photo {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  object-fit: cover;
  object-position: bottom center;
  display: block;
  filter: grayscale(100%);
  transition: 0.3s filter;
}
.team-card:hover .team-card--photo {
  filter: grayscale(0%);
}
.team-card--photo-wrap {
  padding-top: 82%;
  border-bottom: 3px solid var(--color--primary);
}
.team-card:hover .arrow-link::after, .team-card:hover .wp-block-button.is-style-arrow-button .wp-block-button__link::after, .wp-block-button.is-style-arrow-button .team-card:hover .wp-block-button__link::after {
  padding-left: 1.2rem;
}
.team-card--subrole {
  font-weight: 400;
  min-height: 1.5rem;
}
.team-card--link {
  margin-top: 0.66rem;
}
.scroll-top {
  display: block;
  position: fixed;
  right: 15px;
  bottom: 1rem;
  background-color: var(--color--white);
  border-radius: 50%;
  height: 2em;
  width: 2em;
  line-height: 2em;
  text-align: center;
  color: var(--color--black);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  z-index: 9999;
}
@media (min-width: 992px) {
  .scroll-top {
    display: none;
  }
}
.footer {
  padding-top: 5.75rem;
}
.footer .footer-logo {
  max-width: 140px;
}
.footer .footer-logo img {
  width: 100%;
}
.footer .footer-socialmedia a {
  padding: 0.875rem 0.5rem;
  font-size: var(--font-size-md);
}
.accordion-block h3 {
  font-size: var(--font-size-base);
  margin: 0;
}
.accordion-block .accordion-trigger {
  font-family: var(--font-family--micro);
  font-weight: bold;
  text-transform: uppercase;
  background: none;
  border: none;
  border-top: 1px solid #E0E0E0;
  border-bottom: 1px solid #E0E0E0;
  width: 100%;
  text-align: left;
  padding: 1rem 0 1rem 0.5rem;
  cursor: pointer;
  position: relative;
}
.accordion-block .accordion-trigger:hover {
  color: var(--color--primary);
}
.accordion-block .accordion-trigger::before {
  content: "";
  font-family: "Font Awesome 5 Pro";
  font-weight: 800;
  position: absolute;
  right: 0;
  transition: 0.3s transform;
}
.accordion-block .accordion-trigger[aria-expanded="true"]::before {
  transform: rotate(135deg);
}
.accordion-block .accordion-panel {
  padding: 1rem 0 0.5rem;
  animation-name: accordion-open;
  animation-duration: 0.5s;
}
@keyframes accordion-open {
  0% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
.background-image-group {
  position: relative;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.background-image-group::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  left: 0;
  background-color: rgba(0, 0, 0, 0.66);
}
.background-image-group .background-image-group--inner {
  position: relative;
  z-index: 3;
}
.background-image-group .background-image-group--background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.wp-block-button.is-style-fill .wp-block-button__link:not(.has-text-color) {
  color: var(--color--white);
}
.wp-block-button.is-style-fill .wp-block-button__link:not(.has-background) {
  background-color: var(--color--primary);
}
.wp-block-button.is-style-fill .wp-block-button__link:hover {
  background-color: var(--color--botton-hover);
}
.wp-block-button.is-style-outline .wp-block-button__link {
  border: 2px solid currentColor;
}
.wp-block-button.is-style-outline .wp-block-button__link:not(.has-text-color) {
  color: var(--color--black);
}
.wp-block-button.is-style-outline .wp-block-button__link:not(.has-background) {
  background-color: transparent;
}
.wp-block-button.is-style-arrow-button:not(:last-child) {
  margin-right: 1.5rem;
}
.wp-block-button.is-style-arrow-button .wp-block-button__link {
  background: none !important;
}
.wp-block-button.is-style-arrow-button .wp-block-button__link:not(.has-text-color) {
  color: var(--color--black);
}
.wp-block-button.is-style-text-only-button:not(:last-child) {
  margin-right: 1.5rem;
}
.wp-block-button.is-style-text-only-button .wp-block-button__link {
  padding: 2px;
  background: none;
  font-size: 1rem;
  font-family: var(--font-family--micro);
  font-weight: bold;
  text-transform: uppercase;
}
.wp-block-button.is-style-text-only-button .wp-block-button__link:not(.has-text-color) {
  color: var(--color--black);
}
.block-column.align-bottom, .is-layout-flex .block-column.align-bottom {
  margin-top: auto;
}
.block-column.align-middle, .is-layout-flex .block-column.align-middle {
  margin-top: auto;
  margin-bottom: auto;
}
:root {
  --image_gap: min(2.5vw, 1.5rem);
}
.single-arch_projects .editor-content > .wp-block-columns {
  gap: var(--image_gap);
}
.single-arch_projects .editor-content > .wp-block-columns :where(figure) {
  margin: 0 0 var(--image_gap);
}
.post-type-arch_projects :where(.editor-styles-wrapper) :where(.wp-block-columns.is-layout-flex) {
  gap: var(--image_gap);
}
.post-type-arch_projects figure {
  margin: 0 0 var(--image_gap);
}
.contact-modal .modal-dialog {
  max-width: 900px;
}
.contact-modal .modal-content {
  padding: calc(var(--spacing) * 34 / 16) 10%;
}
.contact-modal .btn-close {
  position: absolute;
  top: 1rem;
  right: 0.5rem;
  font-size: 1.5em;
  color: var(--color--primary);
  background-color: transparent;
  border: none;
}
.contact-modal-cta {
  background-color: var(--color--light-grey);
  text-align: center;
  padding: calc(var(--spacing) * 28 / 16) calc(var(--spacing) * 48 / 16) calc(var(--spacing) * 38 / 16);
  font-weight: bold;
  border-top: 2px solid var(--color--primary);
  margin: 0 15px;
}
.contact-modal-cta--heading {
  font-size: 1.5rem;
  line-height: 1;
}
.contact-modal--heading {
  margin-bottom: calc(var(--spacing) * 20 / 16);
}
.contact-modal--title {
  font-size: var(--font-size-xl);
  margin-bottom: 0;
}
.contact-modal--subtitle {
  font-size: var(--font-size-md);
}
.video-modal .modal-dialog {
  text-align: center;
  max-width: none;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 91vw;
  height: 51.2vw;
  max-height: 80vh;
}
.video-modal figure {
  margin: 0;
}
.video-modal .modal-content {
  background: none;
  border: none;
  border-radius: 0;
  padding: 0;
}
.video-modal .btn-close {
  position: absolute;
  color: #fff;
  border: none;
  border-radius: 50%;
  background: #053ba6;
  cursor: pointer;
  z-index: 9;
  font-size: calc(1vw + 1rem);
  top: -0.75em;
  right: -0.75em;
  line-height: 1.7em;
  width: 1.5em;
  height: 1.5em;
}
.video-modal .btn-close:hover {
  background: #0755f0;
}
.video-modal .wp-block-embed iframe {
  width: 93vw;
  height: 51.2vw;
  max-height: 80vh;
}
@media (min-width: 1400px) {
  .header-logo img {
    max-height: 4em;
  }
  .video-modal .modal-dialog {
    width: 133vh;
    height: 75vh;
    max-width: 80vw;
  }
  .video-modal .btn-close {
    font-size: 1.2rem;
  }
  .video-modal .wp-block-embed iframe {
    width: 133vh;
    height: 75vh;
    max-width: 80vw;
  }
}
.wp-block-embed.aligncenter {
  text-align: center;
}
.wp-block-embed.alignfull .wp-block-embed__wrapper {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56%;
}
.wp-block-embed.alignfull .wp-block-embed__wrapper iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.decorative-header {
  padding-bottom: 30px;
}
.decorative-header .decorative-header-title {
  padding-left: 20px;
}
@media (min-width: 768px) {
  .decorative-header .decorative-header-title {
    padding-left: calc((100vw - (768px - 6.5rem)) / 2 - 2rem);
  }
}
@media (min-width: 992px) {
  .decorative-header .decorative-header-title {
    padding-left: calc((100vw - (992px - 6rem)) / 2 - 2rem);
  }
}
@media (min-width: 1200px) {
  .decorative-header .decorative-header-title {
    padding-left: calc((100vw - (1200px - 8rem)) / 2 - 2rem);
  }
}
@media (min-width: 1400px) {
  .decorative-header .decorative-header-title {
    padding-left: calc((100vw - (1400px - 5rem)) / 2 - 2rem);
  }
}
.decorative-header .decorative-header-image img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  object-position: center;
}
@media (min-width: 768px) {
  .decorative-header .decorative-header-image img {
    object-position: left;
  }
}
.expertise-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 1.375rem;
  display: flex;
  flex-wrap: wrap;
}
.expertise-list--item {
  width: 100%;
  padding-right: 3rem;
  margin-bottom: 1.5em;
  line-height: 1.3;
}
.expertise-list--item .arrow-link, .expertise-list--item .wp-block-button.is-style-arrow-button .wp-block-button__link, .wp-block-button.is-style-arrow-button .expertise-list--item .wp-block-button__link {
  padding: 0;
}
.expertise-list--item a {
  display: inline-block;
}
@media (min-width: 576px) {
  .expertise-list--item {
    width: 50%;
  }
}
@media (min-width: 768px) {
  .expertise-list--item {
    width: 33%;
  }
}
@media (min-width: 992px) {
  .cols-4 .expertise-list--item, .cols-5 .expertise-list--item {
    width: 25%;
  }
}
@media (min-width: 1400px) {
  .cols-5 .expertise-list--item {
    width: 20%;
  }
}
.is-style-checkmarks {
  list-style: none;
  position: relative;
  padding-left: 2em;
}
.is-style-checkmarks li {
  margin-bottom: 0.9em;
}
.is-style-checkmarks li::before {
  content: "";
  font-family: "Font Awesome 5 Pro";
  font-weight: 800;
  display: inline-block;
  margin-right: 0.75em;
  color: var(--color--primary);
  position: absolute;
  left: 0;
}
.logo-carousel-block {
  position: relative;
}
.logo-carousel-block .carousel-arrow {
  background: transparent;
  border: none;
}
.logo-carousel--image {
  max-height: 4.5rem;
  filter: saturate(0);
  transition: 0.5s filter;
  margin: 0.5rem 1rem;
}
.logo-carousel--image:hover {
  filter: saturate(1);
}
.logo-carousel {
  padding: 0 30px;
}
.logo-carousel--btn-left, .logo-carousel--btn-right {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}
.logo-carousel--btn-left {
  left: 0;
}
.logo-carousel--btn-right {
  right: 0;
}
/*
.logo-carousel::after {
  content: "";
  display: block;
  background: linear-gradient(270deg, white, transparent);
  width: 10%;
  right: 30px;
  height: 100%;
  top: 0;
  position: absolute;
}
  */
.project-mosaic-tile {
  width: 100%;
  height: 100%;
  position: relative;
}
.project-mosaic-tile--tile {
  display: block;
}
.project-mosaic-tile--link {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.85);
  width: 100%;
  height: 100%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  opacity: 0;
  transition: 0.3s opacity;
}
.project-mosaic-tile--link:focus, .project-mosaic-tile--link:hover {
  opacity: 1;
}
.project-mosaic-tile--text {
  color: white;
  font-size: 1.625rem;
  font-weight: 200;
}
.projects-carousel--header {
  margin: 0.5rem;
}
.projects-carousel--slide {
  position: relative;
  max-width: 100vw;
  width: 100%;
}
.projects-carousel--slide:not(.slick-active) {
  opacity: 0.4;
}
.projects-carousel--photo {
  height: 20rem;
  width: 100%;
  object-fit: cover;
}
.projects-carousel--slide-header {
  background-color: var(--color--black);
  color: var(--color--white);
  display: flex;
  flex-direction: column;
  padding: calc(var(--spacing) * 30 / 16) calc(var(--spacing) * 10 / 16);
}
.has-black-background-color .projects-carousel--slide-header {
  background-color: var(--color--transwhite);
}
.projects-carousel--controls {
  width: 100%;
  margin: 0 auto;
  max-width: 160px;
  text-align: center;
  position: relative;
  z-index: 9;
  font-size: 1.5rem;
}
.projects-carousel--controls .prev-slide {
  margin-right: calc(var(--spacing) * 25 / 16);
}
.projects-carousel--controls .next-slide {
  margin-left: calc(var(--spacing) * 25 / 16);
}
.projects-carousel--info {
  padding: calc(var(--spacing) * 20 / 16);
  flex: 1;
}
.projects-carousel--heading {
  margin: 0;
  margin-bottom: calc(var(--spacing) * 20 / 16);
  font-weight: bold !important;
}
.projects-carousel--heading a {
  color: var(--color--white);
}
@media (min-width: 576px) {
  .projects-carousel--header {
    display: flex;
    align-items: baseline;
  }
  .projects-carousel--header h2 {
    margin-right: 1.5rem;
  }
}
@media (min-width: 768px) {
  .projects-carousel--slide {
    margin-left: 0;
    margin-right: 0;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    max-width: var(--container-width);
  }
  .projects-carousel--photo {
    height: 28rem;
  }
  .projects-carousel--slide-header {
    flex-direction: row-reverse;
    align-items: center;
  }
  .projects-carousel--info {
    border-left: 1px solid var(--color--primary);
  }
}
@media (min-width: 992px) {
  .projects-carousel--slide {
    margin-left: calc(var(--spacing) * 20 / 16);
    margin-right: calc(var(--spacing) * 20 / 16);
  }
  .projects-carousel--controls {
    max-width: 360px;
  }
  .projects-carousel--controls .prev-slide {
    margin-right: calc(var(--spacing) * 50 / 16);
  }
  .projects-carousel--controls .next-slide {
    margin-left: calc(var(--spacing) * 50 / 16);
  }
}
.projects-carousel.specific .projects-carousel--slide {
  width: 450px;
  height: 550px;
  margin: 0;
}
.projects-carousel.specific .projects-carousel--info {
  border: none;
  padding: 0.3em 2.2em 0;
}
.projects-carousel.specific .projects-carousel--slide-header {
  padding: 0;
  min-height: 100px;
}
.projects-carousel.specific .arrow-link, .projects-carousel.specific .wp-block-button.is-style-arrow-button .wp-block-button__link, .wp-block-button.is-style-arrow-button .projects-carousel.specific .wp-block-button__link {
  display: none;
}
.projects-carousel.specific .projects-carousel--heading {
  margin: 0;
  font-size: 1.6rem;
}
.projects-carousel.specific .projects-carousel--slide {
  opacity: 1;
}
.projects-carousel.specific .projects-carousel--slide:hover .projects-carousel--slide-header {
  background-color: #fff4;
}
.projects-carousel.specific .slick-list {
  -webkit-mask-image: linear-gradient(to left, transparent, black, black, transparent);
  mask-image: linear-gradient(to left, transparent, black, black, transparent);
}
.projects-carousel.specific .slick-arrow {
  position: absolute;
  top: 0;
  bottom: 0;
  font-size: 0;
  line-height: 0;
  margin: auto;
  height: 3rem;
  width: 3rem;
  cursor: pointer;
  background-color: #000;
  z-index: 2;
  border-radius: 50%;
  border: none;
  opacity: 0.5;
}
.projects-carousel.specific .slick-arrow:before {
  content: "";
  display: inline-block;
  border: 4px solid #fffc;
  transform: rotateZ(45deg);
  border-width: 0.4rem 0.4rem 0 0;
  width: 1rem;
  height: 1rem;
}
.projects-carousel.specific .slick-arrow:hover {
  opacity: 0.7;
}
.projects-carousel.specific .slick-prev {
  left: 5%;
}
.projects-carousel.specific .slick-prev:before {
  margin-left: 0.5rem;
  border-width: 0 0 0.4rem 0.4rem;
}
.projects-carousel.specific .slick-next {
  right: 5%;
}
.projects-carousel.specific .slick-next:before {
  margin-left: -0.5rem;
  border-width: 0.4rem 0.4rem 0 0;
}
.has-black-background-color .projects-carousel.specific .slick-arrow {
  background-color: #fff;
}
.has-black-background-color .projects-carousel.specific .slick-arrow:before {
  border-color: #000c;
}
.quote-carousel {
  background-color: var(--color--black);
  position: relative;
}
.quote-carousel .slick-track {
  display: flex;
}
.quote-carousel--inner {
  position: relative;
  z-index: 3;
}
.quote-carousel--slide {
  position: relative;
  padding: calc(var(--spacing) * 100 / 16) 1rem calc(var(--spacing) * 160 / 16);
  text-align: center;
  height: inherit !important;
}
.quote-carousel--slide::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.7);
}
.quote-carousel--background {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  object-fit: cover;
}
.quote-carousel--controls {
  position: absolute;
  bottom: calc(var(--spacing) * 48 / 16);
}
.quote-carousel--controls {
  display: flex;
  justify-content: center;
  width: 100%;
}
.quote-carousel--arrow {
  margin: 0 1rem;
  color: var(--color--white);
  background: none;
  border: none;
}
.quote-carousel--quote {
  font-size: 1.25rem;
}
p.quote-carousel--author {
  font-size: 1.5rem;
  margin-top: 3.25rem;
  margin-bottom: 0;
  font-weight: bold;
}
@media (min-width: 768px) {
  .quote-carousel .slick-track {
    min-height: 580px;
  }
  .quote-carousel--quote {
    font-size: 1.75rem;
  }
  .quote-carousel--inner {
    max-width: 66%;
    margin: 0 auto;
  }
}
.solutions-list-block {
  display: grid;
  grid-template-columns: 1fr;
}
.solutions-list--heading {
  margin-right: 1rem;
}
.solution-tile {
  height: 18.75rem;
  background-color: var(--color--black);
  position: relative;
  display: flex;
  align-items: flex-end;
}
.solution-tile--overlay {
  padding: 1rem;
  z-index: 1;
}
img.solution-tile--image {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  object-fit: cover;
}
.solution-tile::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  height: 80%;
  width: 100%;
  background: linear-gradient(0, rgba(0, 0, 0, 0.6) 66%, transparent);
}
.solution-tile h3 {
  font-size: 1.625rem;
  font-weight: 200;
  margin-top: 1.5rem;
}
.solution-tile .arrow-link::after, .solution-tile .wp-block-button.is-style-arrow-button .wp-block-button__link::after, .wp-block-button.is-style-arrow-button .solution-tile .wp-block-button__link::after {
  font-size: 1rem;
  vertical-align: middle;
}
@media (min-width: 768px) {
  .solutions-list-block {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1400px) {
  .solutions-list-block {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
  .solution-tile {
    height: calc(var(--spacing) * 500 / 16);
  }
  .solution-tile::after {
    height: 60%;
  }
}
.tabbed-content-block {
  position: relative;
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.7);
  background-color: var(--color--primary);
}
.tabbed-content-block::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  position: absolute;
  top: 0;
  left: 0;
}
.tabbed-content--background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 1;
  transition: 0.8s opacity;
}
.tabbed-content--background[hidden] {
  display: block;
  opacity: 0;
}
.tabbed-content--overlay {
  position: relative;
  padding-top: calc(var(--spacing) * 70 / 16);
  z-index: 3;
}
.tabbed-content {
  display: flex;
}
.tabbed-content .panel-controls {
  display: none;
}
.tabbed-content .panels {
  width: 100%;
  padding-left: 8%;
  padding-right: 10%;
  border-left: 2px solid var(--color--primary);
  margin-left: 5%;
  padding-bottom: calc(var(--spacing) * 50 / 16);
}
.tabbed-content [role="tab"] {
  background: none;
  border: none;
  display: block;
  margin-left: auto;
  font-weight: bold;
  font-size: var(--font-size-xl);
  color: currentColor;
  margin-bottom: 0.5em;
}
.tabbed-content [role="tab"]:not([aria-selected="true"]) {
  opacity: 0.5;
}
.tabbed-content [role="tabpanel"][hidden] {
  display: block;
}
.tabbed-content [role="tabpanel"] {
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .tabbed-content--overlay {
    padding-top: calc(var(--spacing) * 100 / 16);
  }
  .tabbed-content {
    margin-top: calc(var(--spacing) * 25 / 16);
  }
  .tabbed-content .panels {
    display: grid;
    grid-template-columns: 1fr;
    margin: 0;
  }
  .tabbed-content .panels h3 {
    display: none;
  }
  .tabbed-content .panel-controls, .tabbed-content .panels {
    width: 50%;
    padding-left: 10%;
    padding-right: 0;
    margin-left: 0;
  }
  .tabbed-content .panel-controls {
    display: block;
    padding-right: 10%;
  }
  .tabbed-content [role="tabpanel"] {
    grid-row-start: 1;
    grid-column-start: 1;
    transition: 0.3s all;
    margin-bottom: 1rem;
  }
  .tabbed-content [role="tabpanel"][hidden] {
    display: block;
    visibility: hidden;
    opacity: 0;
  }
}
.text-and-gallery {
  position: relative;
}
.text-and-gallery--content {
  padding: calc(var(--spacing) * 60 / 16) 0;
}
.reversed .text-and-gallery--content {
  margin-right: 0;
}
.text-and-gallery--images {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: calc(50% - 5px) calc(50% - 5px);
  column-gap: 10px;
  row-gap: 10px;
  height: 40vw;
  min-height: 19.5rem;
}
.text-and-gallery--images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.text-and-gallery--image {
  background-color: var(--color--primary);
}
.text-and-gallery--image:nth-child(1) {
  grid-column: 1 / span 1;
}
.items-1 .text-and-gallery--image:nth-child(1) {
  grid-column: 1 / span 2;
  grid-row: 1 / span 2;
}
.items-2 .text-and-gallery--image:nth-child(1) {
  grid-row: 1 / span 2;
}
.text-and-gallery--image:nth-child(2) {
  grid-column: 2 / span 1;
  grid-row: 1 / span 2;
}
.text-and-gallery--image:nth-child(3) {
  grid-column: 1 / span 1;
  grid-row: 2 / span 1;
}
@media (min-width: 1400px) {
  .text-and-gallery--content {
    margin-right: 48px;
    min-height: 580px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .text-and-gallery--images {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
  }
  .reversed .text-and-gallery--content {
    margin-left: 40px;
  }
  .reversed .text-and-gallery--images {
    left: 0;
    right: unset;
  }
}
.timeline-segment {
  position: relative;
}
.timeline-segment::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  border-right: 2px solid var(--color--primary);
}
.timeline-column {
  width: 100%;
  padding: 1rem 1rem 1rem 1.5rem;
}
@media (min-width: 768px) {
  .timeline-segment {
    display: flex;
  }
  .timeline-segment::after {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    top: 0;
    height: 100%;
    transform: translateX(-50%);
    border-right: 2px solid var(--color--primary);
  }
  .timeline-column {
    width: 50%;
    padding: 2rem 0;
  }
  .timeline-column:first-child {
    margin-right: 6rem;
  }
  .timeline-column:last-child {
    margin-left: 6rem;
  }
}
.divider-line {
  display: block;
  max-width: 250px;
  height: 2px;
  background: var(--color--blue);
}
/*
This file is used to contain all component imports.
Files inside this folder can contain specific element styles and layout.
*/
.flat-list {
  padding: 0;
  margin: 0;
  list-style: none;
}
.flat-list li {
  display: inline-block;
}
.page-section {
  padding-top: calc(var(--spacing) * 100 / 16);
  padding-bottom: calc(var(--spacing) * 100 / 16);
}
.page--body {
  margin-top: calc(var(--spacing) * 80 / 16);
  margin-bottom: calc(var(--spacing) * 120 / 16);
}
.solution--icon {
  max-width: 110px;
  margin-bottom: 1rem;
}
.make-white {
  filter: brightness(0) invert(1);
}
.page-wrap {
  margin-top: calc(var(--spacing) * 50 / 16);
  margin-bottom: calc(var(--spacing) * 100 / 16);
}
.editor-content > *:not(.alignwide):not(.alignfull), .editor-content [class*=inner-container] {
  max-width: var(--container-width);
  margin-left: 0.75rem;
  margin-right: 0.75rem;
}
@media (min-width: 576px) {
  .editor-content > *:not(.alignwide):not(.alignfull), .editor-content [class*=inner-container] {
    margin-left: auto;
    margin-right: auto;
    max-width: calc(var(--container-width) - 1.5rem);
  }
}
@media (min-width: 992px) {
  .single-post .editor-content > *:not(.alignwide):not(.alignfull), .single-post .editor-content [class*=inner-container] {
    max-width: calc(var(--container-width) * 8 / 12 - 1.5rem);
  }
}
.editor-content .wp-block-group {
  padding: 1rem;
}
.editor-content .wp-block-group.force-full-width {
  padding-left: 0;
  padding-right: 0;
}
.editor-content .wp-block-group.force-full-width .wp-block-group__inner-container {
  margin: 0;
  max-width: none;
}
.related {
  padding: calc(var(--spacing) * 100 / 16) 0;
}
.grey-bg {
  background-color: var(--color--light-grey);
}
.team-member-list-block {
  padding-top: calc(var(--spacing) * 100 / 16);
  padding-bottom: calc(var(--spacing) * 100 / 16);
}
.solution-wrap {
  margin-top: calc(var(--spacing) * 76 / 16);
}
.article--title {
  margin: 0.5em 0;
}
.article--author {
  font-size: var(--font-size-md);
  line-height: 1.2;
}
.article--date {
  font-size: var(--font-size-md);
  font-weight: bold;
}
.article--thumbnail {
  margin-top: calc(var(--spacing) * 22 / 16);
}
.article--wrapper {
  margin: calc(var(--spacing) * 50 / 16);
}
.archive-wrap {
  margin-top: calc(var(--spacing) * 50 / 16);
  margin-bottom: calc(var(--spacing) * 100 / 16);
}
html {
  scroll-behavior: smooth;
}
/*============================================================================
  Header
==============================================================================*/
/*============================================================================
  Footer
==============================================================================*/
.detail-panel {
  padding: 1rem 2rem;
  background-color: var(--color--light-grey);
}
.profile--header {
  margin-bottom: 3rem;
  border-bottom: 1px solid var(--color--primary);
}
.profile--header h1 {
  margin: 0.3em 0;
}
.profile--header quote {
  display: block;
  font-size: 1.25rem;
  line-height: 1.3;
  margin-bottom: 1.5em;
}
.profile--photo {
  display: block;
  width: 100%;
}
.profile--social {
  font-size: 2rem;
  margin: 0.75rem 0;
}
@media (min-width: 992px) {
  .profile--header quote {
    font-size: 1.625rem;
  }
  .profile--social {
    font-size: 2.5rem;
  }
}
.project--body {
  margin-top: calc(var(--spacing) * 48 / 16);
  margin-bottom: calc(var(--spacing) * 100 / 16);
}
.project--overview {
  margin-bottom: calc(var(--spacing) * 48 / 16);
}
.project--brief {
  margin-top: calc(var(--spacing) * 32 / 16);
  margin-bottom: calc(var(--spacing) * 40 / 16);
  padding-bottom: calc(var(--spacing) * 17 / 16);
}
.project--thumbnail {
  margin-bottom: calc(var(--spacing) * 24 / 16);
}
.project--gallery {
  margin: calc(var(--spacing) * 80 / 16) 0 calc(var(--spacing) * 44 / 16);
}
.project--related {
  margin: calc(var(--spacing) * 36 / 16) 0;
}
.project--related .h6 {
  margin-bottom: 0;
}
.sr-only, .frm_forms legend, .focus-only {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.focus-only:focus {
  position: initial;
  width: auto;
  height: auto;
}
@media (prefers-reduced-motion) {
  * {
    transition-delay: 0s !important;
    transition-duration: 0s !important;
  }
}

/**
 * @license
 * MyFonts Webfont Build ID 4236127, 2021-12-07T21:05:01-0500
 * 
 * The fonts listed in this notice are subject to the End User License
 * Agreement(s) entered into by the website owner. All other parties are 
 * explicitly restricted from using the Licensed Webfonts(s).
 * 
 * Note: Imports were adjusted to only include fonts necessary for project



/* 
  REGULAR 
*/
@font-face {
  font-family: 'Helvetica-Now';
  src: url("https://rvanderson.com/wp-content/themes/rva/assets/fonts/./HelveticaNowTextRegular/font.woff2") format('woff2'),
       url("https://rvanderson.com/wp-content/themes/rva/assets/fonts/./HelveticaNowTextRegular/font.woff") format('woff');
  font-weight: normal;
  font-style: normal;
;font-display: swap;
}

@font-face {
  font-family: 'Helvetica-Now';
  src: url("https://rvanderson.com/wp-content/themes/rva/assets/fonts/./HelveticaNowTextBold/font.woff2") format('woff2'),
       url("https://rvanderson.com/wp-content/themes/rva/assets/fonts/./HelveticaNowTextBold/font.woff") format('woff');
  font-weight: bold;
  font-style: normal;
;font-display: swap;
}

@font-face {
  font-family: 'Helvetica-Now';
  src: url("https://rvanderson.com/wp-content/themes/rva/assets/fonts/./HelveticaNowTextLight/font.woff2") format('woff2'),
       url("https://rvanderson.com/wp-content/themes/rva/assets/fonts/./HelveticaNowTextLight/font.woff") format('woff');
  font-weight: 200;
  font-style: normal;
;font-display: swap;
}

@font-face {
  font-family: 'Helvetica-Now';
  src: url("https://rvanderson.com/wp-content/themes/rva/assets/fonts/./HelveticaNowTextIt/font.woff2") format('woff2'),
       url("https://rvanderson.com/wp-content/themes/rva/assets/fonts/./HelveticaNowTextIt/font.woff") format('woff');
  font-weight: normal;
  font-style: italic;
;font-display: swap;
}





/* 
  Micro
*/
@font-face {
  font-family: 'Helvetica-Now-Micro';
  src: url("https://rvanderson.com/wp-content/themes/rva/assets/fonts/./HelveticaNowMicroRegular/font.woff2") format('woff2'),
       url("https://rvanderson.com/wp-content/themes/rva/assets/fonts/./HelveticaNowMicroRegular/font.woff") format('woff');
  font-weight: normal;
  font-style: normal;
;font-display: swap;
}

@font-face {
  font-family: 'Helvetica-Now-Micro';
  src: url("https://rvanderson.com/wp-content/themes/rva/assets/fonts/./HelveticaNowMicroExtraBold/font.woff2") format('woff2'),
       url("https://rvanderson.com/wp-content/themes/rva/assets/fonts/./HelveticaNowMicroExtraBold/font.woff") format('woff');
  font-weight: bold;
  font-style: normal;
;font-display: swap;
}




/* 
  Display
*/
@font-face {
  font-family: 'Helvetica-Now-Display';
  src: url("https://rvanderson.com/wp-content/themes/rva/assets/fonts/./HelveticaNowDisplayRegular/font.woff2") format('woff2'),
       url("https://rvanderson.com/wp-content/themes/rva/assets/fonts/./HelveticaNowDisplayRegular/font.woff") format('woff');
  font-weight: normal;
  font-style: normal;
;font-display: swap;
}

@font-face {
  font-family: 'Helvetica-Now-Display';
  src: url("https://rvanderson.com/wp-content/themes/rva/assets/fonts/./HelveticaNowDisplayBd/font.woff2") format('woff2'),
       url("https://rvanderson.com/wp-content/themes/rva/assets/fonts/./HelveticaNowDisplayBd/font.woff") format('woff');
  font-weight: bold;
  font-style: normal;
;font-display: swap;
}
/*!
 * Font Awesome Pro 5.15.4 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license (Commercial License)
 */
.fa,
.fas,
.far,
.fal,
.fad,
.fab {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1; }

.fa-lg {
  font-size: 1.33333em;
  line-height: 0.75em;
  vertical-align: -.0667em; }

.fa-xs {
  font-size: .75em; }

.fa-sm {
  font-size: .875em; }

.fa-1x {
  font-size: 1em; }

.fa-2x {
  font-size: 2em; }

.fa-3x {
  font-size: 3em; }

.fa-4x {
  font-size: 4em; }

.fa-5x {
  font-size: 5em; }

.fa-6x {
  font-size: 6em; }

.fa-7x {
  font-size: 7em; }

.fa-8x {
  font-size: 8em; }

.fa-9x {
  font-size: 9em; }

.fa-10x {
  font-size: 10em; }

.fa-fw {
  text-align: center;
  width: 1.25em; }

.fa-ul {
  list-style-type: none;
  margin-left: 2.5em;
  padding-left: 0; }
  .fa-ul > li {
    position: relative; }

.fa-li {
  left: -2em;
  position: absolute;
  text-align: center;
  width: 2em;
  line-height: inherit; }

.fa-border {
  border: solid 0.08em #eee;
  border-radius: .1em;
  padding: .2em .25em .15em; }

.fa-pull-left {
  float: left; }

.fa-pull-right {
  float: right; }

.fa.fa-pull-left,
.fas.fa-pull-left,
.far.fa-pull-left,
.fal.fa-pull-left,
.fab.fa-pull-left {
  margin-right: .3em; }

.fa.fa-pull-right,
.fas.fa-pull-right,
.far.fa-pull-right,
.fal.fa-pull-right,
.fab.fa-pull-right {
  margin-left: .3em; }

.fa-spin {
  -webkit-animation: fa-spin 2s infinite linear;
          animation: fa-spin 2s infinite linear; }

.fa-pulse {
  -webkit-animation: fa-spin 1s infinite steps(8);
          animation: fa-spin 1s infinite steps(8); }

@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }

@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }

.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg); }

.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg); }

.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  -webkit-transform: rotate(270deg);
          transform: rotate(270deg); }

.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1); }

.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  -webkit-transform: scale(1, -1);
          transform: scale(1, -1); }

.fa-flip-both, .fa-flip-horizontal.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  -webkit-transform: scale(-1, -1);
          transform: scale(-1, -1); }

:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical,
:root .fa-flip-both {
  -webkit-filter: none;
          filter: none; }

.fa-stack {
  display: inline-block;
  height: 2em;
  line-height: 2em;
  position: relative;
  vertical-align: middle;
  width: 2.5em; }

.fa-stack-1x,
.fa-stack-2x {
  left: 0;
  position: absolute;
  text-align: center;
  width: 100%; }

.fa-stack-1x {
  line-height: inherit; }

.fa-stack-2x {
  font-size: 2em; }

.fa-inverse {
  color: #fff; }

/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
readers do not read off random characters that represent icons */
.fa-arrow-right:before {
  content: "\f061"; }

.fa-check:before {
  content: "\f00c"; }

.fa-check-square:before {
  content: "\f14a"; }

.fa-chevron-down:before {
  content: "\f078"; }

.fa-chevron-left:before {
  content: "\f053"; }

.fa-chevron-right:before {
  content: "\f054"; }

.fa-chevron-up:before {
  content: "\f077"; }

.fa-circle:before {
  content: "\f111"; }

.fa-facebook-f:before {
  content: "\f39e"; }

.fa-linkedin-in:before {
  content: "\f0e1"; }

.fa-plus:before {
  content: "\f067"; }

.fa-search:before {
  content: "\f002"; }

.fa-square:before {
  content: "\f0c8"; }

.fa-times:before {
  content: "\f00d"; }

.fa-twitter:before {
  content: "\f099"; }

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

.sr-only-focusable:active, .sr-only-focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto; }
@font-face {
  font-family: 'Font Awesome 5 Brands';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("https://rvanderson.com/wp-content/themes/rva/assets/fontawesome-subset/css/../webfonts/fa-brands-400.eot");
  src: url("https://rvanderson.com/wp-content/themes/rva/assets/fontawesome-subset/css/../webfonts/fa-brands-400.eot?#iefix") format("embedded-opentype"), url("https://rvanderson.com/wp-content/themes/rva/assets/fontawesome-subset/css/../webfonts/fa-brands-400.woff2") format("woff2"), url("https://rvanderson.com/wp-content/themes/rva/assets/fontawesome-subset/css/../webfonts/fa-brands-400.woff") format("woff"), url("https://rvanderson.com/wp-content/themes/rva/assets/fontawesome-subset/css/../webfonts/fa-brands-400.ttf") format("truetype"), url("https://rvanderson.com/wp-content/themes/rva/assets/fontawesome-subset/css/../webfonts/fa-brands-400.svg#fontawesome") format("svg"); }

.fab {
  font-family: 'Font Awesome 5 Brands';
  font-weight: 400; }
@font-face {
  font-family: 'Font Awesome 5 Pro';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("https://rvanderson.com/wp-content/themes/rva/assets/fontawesome-subset/css/../webfonts/fa-regular-400.eot");
  src: url("https://rvanderson.com/wp-content/themes/rva/assets/fontawesome-subset/css/../webfonts/fa-regular-400.eot?#iefix") format("embedded-opentype"), url("https://rvanderson.com/wp-content/themes/rva/assets/fontawesome-subset/css/../webfonts/fa-regular-400.woff2") format("woff2"), url("https://rvanderson.com/wp-content/themes/rva/assets/fontawesome-subset/css/../webfonts/fa-regular-400.woff") format("woff"), url("https://rvanderson.com/wp-content/themes/rva/assets/fontawesome-subset/css/../webfonts/fa-regular-400.ttf") format("truetype"), url("https://rvanderson.com/wp-content/themes/rva/assets/fontawesome-subset/css/../webfonts/fa-regular-400.svg#fontawesome") format("svg"); }

.far {
  font-family: 'Font Awesome 5 Pro';
  font-weight: 400; }
@font-face {
  font-family: 'Font Awesome 5 Pro';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("https://rvanderson.com/wp-content/themes/rva/assets/fontawesome-subset/css/../webfonts/fa-solid-900.eot");
  src: url("https://rvanderson.com/wp-content/themes/rva/assets/fontawesome-subset/css/../webfonts/fa-solid-900.eot?#iefix") format("embedded-opentype"), url("https://rvanderson.com/wp-content/themes/rva/assets/fontawesome-subset/css/../webfonts/fa-solid-900.woff2") format("woff2"), url("https://rvanderson.com/wp-content/themes/rva/assets/fontawesome-subset/css/../webfonts/fa-solid-900.woff") format("woff"), url("https://rvanderson.com/wp-content/themes/rva/assets/fontawesome-subset/css/../webfonts/fa-solid-900.ttf") format("truetype"), url("https://rvanderson.com/wp-content/themes/rva/assets/fontawesome-subset/css/../webfonts/fa-solid-900.svg#fontawesome") format("svg"); }

.fa,
.fas {
  font-family: 'Font Awesome 5 Pro';
  font-weight: 900; }
