.modal {
    display: none;
    position: fixed;
    z-index: 1001;
    left: 0;
    top: 100px;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
    border-radius: 15px;
  }
  #indicatorSelect, #countrySelect, #modalHeading{
    font-family: Nunito, sans-serif;
  }
  h1 {
    font-family: Nunito, sans-serif;
  }
  p {
    font-family: Nunito, sans-serif;
  }
  .modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    font-family: Nunito, sans-serif;
  }
  
  .close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
  }
  
  .close:hover,
  .close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
  }

  .responsive-svg {
    width: 100%;
    height: auto;
    display: block;
  }

  #preGraph, #primaryGraph, #lowerGraph, #upperGraph, #postGraph {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
  }

.legend-item text {
    font-size: 12px;
    font-family: 'Nunito, sans-serif';
    fill: #555;
    pointer-events: none; /* Disable interaction */
}

.legend-item {
    cursor: pointer;
    transition: fill-opacity 0.3s; /* Smooth transition for opacity changes */
    
  }

  .legend-item circle {
    transition: stroke 0.3s, stroke-width 0.3s; /* Smooth transition for the border */
  }
  
  .legend-item circle:hover {
    stroke: grey; /* Border color */
    stroke-width: 2px; /* Border width */
  }
  
  .legend-item.disabled {
    cursor: default; /* Disable pointer cursor for disabled items */
    fill-opacity: 0.3; /* Opacity when there is no data */
    pointer-events: none; /* Disable interaction */
  }
  
  .legend-item.active {
    fill-opacity: 1; /* Opacity when active */
  }
  
  .legend-item.inactive {
    fill-opacity: 0.3; /* Opacity when inactive */
  }
  
  .legend-item circle {
    fill-opacity: 1; /* Default fill-opacity */
    transition: fill-opacity 0.3s; /* Smooth transition for opacity changes */
  }
  
  .legend-item.disabled circle {
    fill: #555;
    fill-opacity: 0.3; /* Opacity when there is no data */
    pointer-events: none; /* Disable interaction */
  }
  
  .legend-item.active circle {
    fill-opacity: 1; /* Opacity when active */
  }
  
  .legend-item.inactive circle {
    fill-opacity: 0.3; /* Opacity when inactive */
  }


/* Style for the controls container */
.controls-container {
  display: flex;
  align-items: center;
  gap: 10px; /* Space between elements */
  margin-bottom: 20px; /* Space below the controls */
  position: sticky;
  top: 0px;
  background-color: white; /* Ensure the background is white */
  z-index: 1000; /* Ensure it stays on top of other elements */
  padding: 10px; /* Add some padding for better appearance */
  border-radius: 15px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Add a subtle shadow */
}











/* Style for the dropdown */
select {
  padding: 8px 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  background: #f9f9f9;
  font-size: 14px;
  color: #333;
  transition: all 0.3s ease;
}

select:focus {
  outline: none;
  border-color: #007bff;
  box-shadow: 0 0 4px rgba(0, 123, 255, 0.5);
}


@media (max-width: 600px) {
    .controls-container {
    flex-direction: column;
    justify-content: space-between;
    }
    
    select {
    width: 100%;
    flex: 1;
    }
    }
    
    


/* Toggle button styling */
.toggle-button {
  padding: 8px 12px;
  font-size: 14px;
  border: 1px solid #007bff;
  border-radius: 6px;
  background-color: white;
  color: #007bff;
  cursor: pointer;
  transition: all 0.3s ease;
}

.toggle-button.active {
  background-color: #007bff;
  color: white;
  border-color: #0056b3;
}

.toggle-button:hover {
  background-color: #0056b3;
  color: white;
}

/* Ensure the entire body takes the full height of the viewport */
html, body {
  height: 100%;
  margin: 0;
  font-family: Arial, sans-serif;
}
body {
    font-family: 'Roboto', sans-serif;
    font-size: 1em;
    margin-left: auto;
    margin-right: auto;
}
/* Overall container for graphs */
.graph-container {
  display: flex;
  justify-content: center;  /* Center the graphs horizontally */
  align-items: center;      /* Center the graphs vertically */
  flex-wrap: wrap;          /* Allow wrapping if there are multiple graphs */
  gap: 20px;                /* Space between graphs */
  height: 100%;             /* Full viewport height */
  padding: 20px;            /* Padding around the container */
  box-sizing: border-box;   /* Ensure padding doesn't affect height/width */
}

/* Individual graph SVG style */
svg {
  width: 100%;              /* Let the SVG take full width of its container */
  max-width: 100%;         /* Limit the width to 700px or any desired max width */
  height: auto;             /* Maintain aspect ratio */
  border: 1px solid #ddd;  /* Add a subtle border for styling */
  border-radius: 15px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);  /* Soft shadow */
}

/* Ensure the container for each graph has a specific width */
.graph-wrapper {
  width: 100%;
  max-width: 100%;  /* Set a max-width to avoid very large graphs */
}

.acerlogo {
    border-radius: 0;
    border: 0;
}










select.selectpicker { display:none; /* Prevent FOUC */}
.grid > div {
    border-style: solid;
    font-family: 'Poppins', sans-serif;
    border-width: thin;
    border-color: rgb(0, 0, 0);
   
}
.grid {
    display: grid;
    grid-template-rows: repeat(16, 60px);
    grid-template-columns: 50px repeat(7, minmax(50px, 150px));
    margin: auto;
    font-size: .8em;
}

#education {
    grid-row: 2/7;
    writing-mode: vertical-lr; 
    transform: rotate(180deg);
}
#social {
    grid-row: 7/12;
    writing-mode: vertical-lr; 
    transform: rotate(180deg);
}
#economic {
    grid-row: 12/17;
    writing-mode: vertical-lr; 
    transform: rotate(180deg);
}
#participation {
    grid-row: 2/5
}
#learning {
    grid-row: 5/6
}
#oos {
    grid-row: 6/7
}
#childlabour {
    grid-row: 7/8
}
#safety {
    grid-row: 8/10
}
#marriage {
    grid-row: 10/12
}
#investment {
    grid-row: 12/13
}
#access{
    grid-row: 13/15;
}
#employment{
    grid-row: 15/17;
}






body {
    background-repeat: no-repeat;
    background-position: left;
    background-size: 110%;
}

.header {
    margin-top: 120px;
}
.headRow {
    display: flex;
    background-color: #3B3B3D;
    color: white;
    text-align: center;
    justify-content: center;
    align-items: center;
}



.education {
    background-color: #4CB967;
    fill: #4CB967;
}
.social {
    background-color: #4B71B7;
    fill: #4B71B7;
}
.economic {
    background-color: #F6871F;
    fill: #F6871F;
}
.participation, .learning, .oos {
    fill: #4CB967;
}
.childlabour, .safety, .marriage {
    fill: #4B71B7;
}
.investment, .access, .employment {
    fill: #F6871F;
}
.square {
    background-color: #ffffff;
    fill: #ffffff;
}
.na {
    background: #7e7e7e;
    display: flex;
    color: white;
    text-align: center;
    justify-content: center;
    align-items: center;
}
.hollow{
    fill: #ffffff;
}

.filter {
    display: none;
}
a {
    fill: #007bff;
}
a:hover {
    color: lightgray;
    fill: lightgray;
}
#gridLegend, #gridLegend2{
    width: 100%;
    height: 40px;
    padding-left: 8px;
    font-size: .6em;
}
footer.bg-dark {
    margin-top: 0px;
}
.navbar > .container,
.navbar > .container-fluid {
    justify-content: flex-start;
}
.navbar .h2 {
    position: relative;
    top: 4px;
}
.navbar .navbar-brand {
    margin-right: 10px!important;
}
/* svg:not(:root) {
    width:100%;
    height: 100%;
} */
body > footer > div > div > div.col-12.col-md-2 > a > svg {
    width: 97px;
    height: 32px;
}
#dropdown-nav > div > div > a.navbar-brand.position-relative.ml-3.ml-sm-0.mr-lg-4.mr-xl-6 > svg {
    width: 97px;
    height: 32px;
}
.filter-option-inner-inner {
    color: #333333;
    font-size: 0.875em;
}

/* overrides bootstrap rounded buttons */
.btn {
    border-radius: 0;
    color: #fff;
    background-color: #333333;
    border-color: #333333;
}

/*  style for map*/
#content .info {
    height: 20px;
}
#svg {
    width: 100%;
    height: 100%;
}
#content .land {
    fill: #808080;
    stroke: black;
    stroke-width: .1;
}
#content .notDev {
    fill: #ece7f2;
    fill: #704c4c;
}
#content .dfatDev {
    fill: #a6bddb;

}
circle .dfatDev {
    stroke: none;
}
a.cntInfo:link {
    color: black;
}
a.cntInfo:visited {
    color: gray;
}
a.cntInfo:hover {
    color: blue;
}

.filterDiv {
    float: left;
    background-color: #2196F3;
    color: #ffffff;
    width: 100px;
    line-height: 100px;
    text-align: center;
    margin: 2px;
    display: none; /* Hidden by default */
}
/* dropdown menu hide */
.hide {
    display: none;
}
.show {
display: block;
}


/* The container <div> - needed to position the dropdown content */
.dropdown {
    position: relative;
    display: inline-block;
}
#myDropdown{
    width: 170px;
}
/* Dropdown Content (Hidden by Default) */
.dropdown-content {
    display: none;
    position: absolute;
    min-width: 150px;
}
.dropdown-content2 {
    display: none;
    position: absolute;
    min-width: 200px;
}
.dropdown-content3 {
    display: none;
    position: absolute;
    min-width: 200px;
}

  /* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
.show {
    display:block;
}
.btnCountry, .btnOutcomes, .btnRowFilter, .selectpicker {
    background-color: rgb(0, 0, 0);
}
/* svg circle {
    fill-opacity: 0;
    animation: fillcircle .5s forwards;
}
@keyframes fillcircle {
    to {
        fill-opacity: 1;
    }
} */
.dropdown-content, .dropdown-content2 , .dropdown-content3, .selectpicker {
    z-index: 100;
}
.bootstrap-select>.dropdown-toggle {
    background-color: transparent;

    border-color: #333333;
    border-width: 1px;
    font-size: small;
}

.circle {
    border-radius: 50%;
    width: 1rem;
    aspect-ratio: 1/1;
    display: inline-block;
}
.labels {
    /* font-size: .5em; */
    cursor: default;
    pointer-events: none;
}

.circleHtml {
    border-radius: 50%;
    width: 1rem;
    aspect-ratio: 1/1;
    /* display: inline-block; */
}
svg circle.included:hover {
        fill: #1d89bb;
        cursor: pointer;
        stroke:  rgb(0, 0, 0);
}
.tip {
    cursor: pointer;
    /* pointer-events: none; */
}
.nodes {
    pointer-events: none;
}

#tooltip {
    /* width: fit-content; */
    pointer-events: none;
    position: relative;
    color: #fff;
    border-radius: 4px;
    font-size: 14px;
    line-height: 1.4;
    background-color: #333;
}

.close {
    font-size: 2rem;
}
.tippy-box {
    font-size: .8em;
    background-color:#333333;
    color: white;
}

/* from shorthand style sheet */

.DeviceDetect--isBot .DisplayContainerHeight {
    height: 600px!important;
    overflow: hidden
}

.DeviceDetect--isBot .DisplayContainerHeight--minHeight {
    min-height: 600px!important
}

@media (orientation: landscape) {
    .DeviceDetect--isBot .DisplayContainerHeight--landscapeOnly {
        height:600px!important
    }
}

@media (orientation: portrait) {
    .DeviceDetect--isBot .DisplayContainerHeight--portraitOnly {
        height:600px!important
    }
}

.DeviceDetect--isBot .DisplayContainerHeight--height150 {
    min-height: 150vh
}

.DeviceDetect--isBot .DisplayContainerHeight--heightHalf {
    height: 300px!important;
    overflow: hidden
}

.DeviceDetect--isBot .DisplayContainerHeight--minHeightHalf {
    min-height: 300px!important
}

.DeviceDetect--isBot .DisplayContainerHeight--heightThird {
    height: 200px!important;
    overflow: hidden
}

.DeviceDetect--isBot .DisplayContainerHeight--minHeightThird {
    min-height: 200px!important
}

.DisplayContainerHeight {
    height: 100vh;
    overflow: hidden
}

.DisplayContainerHeight--minHeight {
    min-height: 100vh
}

@media (orientation: landscape) {
    .DisplayContainerHeight--landscapeOnly {
        height:100vh
    }
}

@media (orientation: portrait) {
    .DisplayContainerHeight--portraitOnly {
        height:100vh
    }
}

.DisplayContainerHeight--height150 {
    min-height: 150vh
}

.DisplayContainerHeight--heightHalf {
    height: 50vh;
    overflow: hidden
}

.DisplayContainerHeight--minHeightHalf {
    min-height: 50vh;
    height: auto
}

.DisplayContainerHeight--heightThird {
    height: 33.3333333333vh;
    overflow: hidden
}

.DisplayContainerHeight--minHeightThird {
    min-height: 33.3333333333vh;
    height: auto
}

.DisplayContainerHeight--heightHalf.DisplayContainerHeight--flex,.DisplayContainerHeight--heightThird.DisplayContainerHeight--flex,.DisplayContainerHeight.DisplayContainerHeight--flex {
    height: auto;
    overflow: unset
}

.DisplayContainerHeight--flex .DisplayContainerHeight img {
    height: 100vh
}

.DisplayContainerHeight--flex .DisplayContainerHeight video {
    height: 100vh
}

.DisplayContainerHeight--flex .DisplayContainerHeight .AnimatedImage {
    height: 100vh
}

[data-lazyload-item] img,[data-lazyload-item]>div {
    opacity: 0;
    transition: 1s ease-out opacity
}

.Lazyload--isLoaded [data-lazyload-item] img,.Lazyload--isLoaded [data-lazyload-item]>div {
    opacity: 1
}

.Lazyload__loading {
    transition: opacity .1s ease-out;
    transition-delay: 1s;
    opacity: 1
}

.Lazyload--isLoaded .Lazyload__loading {
    opacity: 0
}

.DeviceDetect--isiOS .Lazyload__spinner {
    display: none
}

.ObjectFit--cover {
    -o-object-fit: cover;
    object-fit: cover
}

.ObjectFit--contain {
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: top;
    object-position: top
}

.__FauxObjectFit__ {
    position: absolute;
    inset: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center
}

.ObjectFit--hasFauxImg {
    visibility: hidden
}

@media (max-width: 899.98px) {
    .Theme-BackgroundScrollmationSection .MediaRenderer__fixedCaption--div {
        z-index:110;
        position: absolute;
        top: 50px;
        padding-top: 3px;
        bottom: 45px;
        right: 2px;
        min-height: auto!important;
        pointer-events: none
    }

    .Theme-BackgroundScrollmationSection .MediaRenderer__fixedCaption--inner {
        position: sticky;
        top: 96vh;
        pointer-events: auto
    }

    .Theme-BackgroundScrollmationSection .MediaRenderer__fixedCaption--inner-editor {
        position: sticky;
        top: 86vh;
        pointer-events: auto
    }

    .body-focus-mode .Theme-BackgroundScrollmationSection .MediaRenderer__fixedCaption--inner-editor {
        top: 86vh
    }

    .Theme-BackgroundScrollmationSection .MediaRenderer__fixedCaption--icon {
        display: block;
        right: 1em;
        bottom: 30px
    }

    .Theme-BackgroundScrollmationSection .MediaRenderer__fixedCaption--icon:focus-visible:focus-within .ico-info {
        outline: 2px solid #12bf9c
    }
}

@media (max-width: 899.98px) {
    .Theme-BackgroundScrollmationSection .Theme-OverlayedCaption {
        max-width:0;
        overflow: hidden
    }
}

@media (min-width: 900px) {
    .Theme-BackgroundScrollmationSection .Theme-OverlayedCaption {
        opacity:0;
        will-change: opacity
    }

    .Theme-BackgroundScrollmationSection .Theme-OverlayedCaption p:not(:empty) {
        padding-top: 1em;
        padding-bottom: 1em
    }
}

@media (min-width: 900px) {
    .Theme-BackgroundScrollmationSection.Theme-BodyTextColumn-Left .Theme-OverlayedCaption {
        left:auto!important;
        max-width: 30%;
        right: 0
    }

    .focus-mode .Theme-BackgroundScrollmationSection.Theme-BodyTextColumn-Left .Theme-OverlayedCaption {
        right: 225px
    }
}

@media (max-width: 1399.98px) {
    .Theme-BackgroundScrollmationSection.Theme-BodyTextColumn-Center .MediaRenderer__fixedCaption--div {
        z-index:110;
        position: absolute;
        top: 50px;
        padding-top: 3px;
        bottom: 45px;
        right: 2px;
        min-height: auto!important;
        pointer-events: none
    }

    .Theme-BackgroundScrollmationSection.Theme-BodyTextColumn-Center .MediaRenderer__fixedCaption--inner {
        position: sticky;
        top: 96vh;
        pointer-events: auto
    }

    .Theme-BackgroundScrollmationSection.Theme-BodyTextColumn-Center .MediaRenderer__fixedCaption--inner-editor {
        position: sticky;
        top: 86vh;
        pointer-events: auto
    }

    .body-focus-mode .Theme-BackgroundScrollmationSection.Theme-BodyTextColumn-Center .MediaRenderer__fixedCaption--inner-editor {
        top: 86vh
    }

    .Theme-BackgroundScrollmationSection.Theme-BodyTextColumn-Center .MediaRenderer__fixedCaption--icon {
        display: block;
        right: 1em;
        bottom: 30px
    }

    .Theme-BackgroundScrollmationSection.Theme-BodyTextColumn-Center .MediaRenderer__fixedCaption--icon:focus-visible:focus-within .ico-info {
        outline: 2px solid #12bf9c
    }
}

@media (max-width: 1749.98px) {
    .Theme-BackgroundScrollmationSection.Theme-BodyTextColumn-Center .Theme-OverlayedCaption {
        max-width:0;
        overflow: hidden
    }
}

@media (min-width: 1400px) {
    .Theme-BackgroundScrollmationSection.Theme-BodyTextColumn-Center .Theme-OverlayedCaption {
        left:auto!important;
        max-width: 25%;
        right: 0
    }

    .focus-mode .Theme-BackgroundScrollmationSection.Theme-BodyTextColumn-Center .Theme-OverlayedCaption {
        right: 225px
    }
}

@media (min-width: 900px) {
    .Theme-BackgroundScrollmationSection.Theme-BodyTextColumn-Right .Theme-OverlayedCaption {
        right:auto;
        max-width: 30%
    }
}

.Theme-BackgroundScrollmationSection .BackgroundScrollmationItem__caption {
    display: none;
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    padding: 1rem;
    color: #fff;
    background-color: #22222280
}

.Theme-BackgroundScrollmationSection .Scrollmation-portrait--Caption-outer {
    width: 320px;
    right: 1em;
    bottom: 0;
    position: absolute;
    max-height: 50vh;
    display: flex;
    justify-content: flex-end;
    font-size: 13px;
    z-index: 12;
    color: #fff;
    background-color: #222222e6;
    backdrop-filter: blur(5px);
    border-radius: 10px;
    box-shadow: 0 5px 10px -4px #00000080
}

.Theme-BackgroundScrollmationSection .MediaRenderer__Scrollmation-portrait--Caption {
    width: 100%;
    display: flex;
    flex-direction: column
}

.Theme-BackgroundScrollmationSection .Scrollmation-portrait-caption-header {
    display: flex;
    align-items: center;
    padding: 20px 20px 15px;
    color: #fff;
    justify-content: space-between
}

.Theme-BackgroundScrollmationSection .Scrollmation-portrait-caption-header h2 {
    font-size: 14px;
    font-weight: 600;
    margin: 0;
    font-family: system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Open Sans,Helvetica Neue,sans-serif!important
}

.Theme-BackgroundScrollmationSection .Scrollmation-portrait-caption-header .btn-close {
    background: 0 0;
    border: none;
    position: absolute;
    right: 8px;
    top: 8px;
    opacity: .6;
    cursor: pointer
}

.Theme-BackgroundScrollmationSection .Scrollmation-portrait-caption-header .btn-close:focus-visible,.Theme-BackgroundScrollmationSection .Scrollmation-portrait-caption-header .btn-close:hover {
    opacity: 1
}

.Theme-BackgroundScrollmationSection .Scrollmation-portrait-caption-header .ico-close {
    display: block;
    fill: #fff;
    width: 16px
}

.Theme-BackgroundScrollmationSection .Scrollmation-portrait-captions {
    overflow: hidden;
    overflow-y: auto;
    list-style: none;
    padding: 0 20px;
    margin: 0
}

.Theme-BackgroundScrollmationSection .Scrollmation-portrait-caption {
    font-family: inherit;
    padding-bottom: 15px;
    display: flex
}

.Theme-BackgroundScrollmationSection .Scrollmation-portrait-caption+.Scrollmation-portrait-caption {
    border-top: 1px solid rgba(255,255,255,.1);
    padding-top: 15px
}

.Theme-BackgroundScrollmationSection .Scrollmation-portrait-caption .InlineMedia--image__inner {
    max-width: 28%;
    margin-right: 15px
}

.Theme-BackgroundScrollmationSection .Scrollmation-portrait-caption .InlineMedia--image__inner picture {
    position: sticky;
    top: 0
}

.Theme-BackgroundScrollmationSection .Scrollmation-portrait-caption .InlineMedia--image__inner img {
    display: block;
    width: 100%
}

.Theme-BackgroundScrollmationSection .Scrollmation-portrait-caption small {
    font-family: system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Open Sans,Helvetica Neue,sans-serif!important;
    display: block;
    text-transform: uppercase;
    opacity: .7;
    line-height: 1;
    margin-bottom: .5em;
    font-size: 10px;
    font-weight: 500
}

.Theme-BackgroundScrollmationSection .Scrollmation-portrait-caption p {
    font-family: system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Open Sans,Helvetica Neue,sans-serif!important;
    line-height: 1.4!important;
    font-weight: 400!important;
    font-size: 12px!important
}

.Theme-BackgroundScrollmationSection .Scrollmation-portrait-caption p:last-child {
    margin: 0
}

.BackgroundScrollmationColumn {
    position: absolute!important;
    inset: 0
}

.BackgroundScrollmation {
    z-index: 5;
    top: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden
}

.BackgroundScrollmationItem {
    position: absolute!important;
    inset: 0;
    display: none;
    opacity: 0;
    transition: opacity 1ms linear
}

.BackgroundScrollmation--fadeFast .BackgroundScrollmationItem {
    transition: opacity .2s ease-in-out
}

.BackgroundScrollmation--fadeSlow .BackgroundScrollmationItem {
    transition: opacity .7s ease-in-out
}

.BackgroundScrollmationItem--isPrimed {
    display: block
}

.BackgroundScrollmationItem--isActive {
    opacity: 1
}

@media (min-width: 900px) {
    .BackgroundScrollmationItem--isActive .Theme-OverlayedCaption {
        opacity:1
    }
}

.BackgroundScrollmationItem img,.BackgroundScrollmationItem__image {
    clip-path: inset(-.5px);
    display: block;
    width: 100%;
    height: 100%
}

.BackgroundScrollmation[data-attach=before] {
    position: absolute;
    top: 0;
    left: 0
}

.BackgroundScrollmation[data-attach=during] {
    position: fixed;
    top: 0;
    left: 0
}

.BackgroundScrollmation[data-attach=after] {
    height: 100vh;
    position: absolute;
    left: 0;
    top: unset;
    bottom: 0
}

.MediaRenderer__textBlocks {
    margin-top: -100vh
}

sh-background-transition .Theme-OverlayedCaption {
    display: none
}

sh-background-transition>:first-child {
    z-index: 1
}

.MediaRenderer__textBlocksInner_slowest {
    min-height: 200vh
}

.MediaRenderer__textBlocksInner_slowest:first-child {
    min-height: 205vh
}

.DeviceDetect--isEdge .MediaRenderer__textBlocksInner_slowest:first-child,.DeviceDetect--isIE .MediaRenderer__textBlocksInner_slowest:first-child {
    margin-top: 0
}

.MediaRenderer__textBlocksInner_slowest:last-child {
    min-height: 280vh
}

.MediaRenderer__textBlocksInner_slowest:first-child>div {
    padding-top: 200vh
}

.MediaRenderer__textBlocksInner_slowest>div {
    min-height: 200vh;
    background: 0 0;
    z-index: 0;
    padding-top: 270vh;
    padding-bottom: 40vh
}

.MediaRenderer__textBlocksInner {
    min-height: 105vh
}

.MediaRenderer__textBlocksInner:first-child {
    min-height: 45vh
}

.DeviceDetect--isEdge .MediaRenderer__textBlocksInner:first-child,.DeviceDetect--isIE .MediaRenderer__textBlocksInner:first-child {
    margin-top: 0
}

.MediaRenderer__textBlocksInner:last-child {
    min-height: 160vh
}

.MediaRenderer__textBlocksInner:first-child>div {
    padding-top: 80vh
}

.MediaRenderer__textBlocksInner>div {
    min-height: 100vh;
    background: 0 0;
    z-index: 0;
    padding-top: 170vh;
    padding-bottom: 40vh
}

.MediaRenderer__textBlocksInner_fastest {
    min-height: 100vh
}

.MediaRenderer__textBlocksInner_fastest:first-child {
    min-height: 40vh
}

.DeviceDetect--isEdge .MediaRenderer__textBlocksInner_fastest:first-child,.DeviceDetect--isIE .MediaRenderer__textBlocksInner_fastest:first-child {
    margin-top: 0
}

.MediaRenderer__textBlocksInner_fastest:last-child {
    min-height: 130vh
}

.MediaRenderer__textBlocksInner_fastest:first-child>div {
    padding-top: 150vh
}

.MediaRenderer__textBlocksInner_fastest>div {
    min-height: 150vh;
    background: 0 0;
    z-index: 0;
    padding-top: 150vh;
    padding-bottom: 40vh
}

.MediaRenderer__fixedCaption {
    position: fixed!important;
    right: 0;
    bottom: 0;
    left: 0
}

.MediaRenderer__fixedCaption.MediaRenderer__captionDisplay {
    transition: .2s ease-in-out opacity
}

.MediaRenderer__fixedCaption.MediaRenderer__captionDisplay * {
    transition: inherit
}

.MediaRenderer__fixedCaption--icon {
    display: none;
    background: 0 0;
    border: none;
    z-index: 101;
    opacity: .8;
    padding: 0;
    cursor: pointer
}

.MediaRenderer__fixedCaption--icon:focus-visible,.MediaRenderer__fixedCaption--icon:hover {
    opacity: 1
}

.MediaRenderer__fixedCaption--icon .ico-info {
    background-color: #00000080;
    display: block;
    fill: #fff;
    width: 30px;
    border-radius: 50%;
    box-shadow: 0 0 10px #00000080
}

.InstantImage__img {
    opacity: 1;
    transition: opacity 1s ease-out;
    filter: blur(10px)
}

.InstantImage--isLoaded .InstantImage__img {
    opacity: 0
}

[data-instant-image-container] picture {
    position: absolute
}

.BackgroundVideo__fallback {
    position: absolute;
    top: 0;
    height: 100%
}

.BackgroundVideo__sticky {
    top: 0;
    width: 100%;
    height: 100%;
    max-height: 100vh;
    overflow: hidden
}

@media (orientation: portrait) {
    .SplitLayout .BackgroundVideo__sticky {
        height:50vh
    }
}

.SplitLayout--media .BackgroundVideo__sticky.StickyPolyfillElement--bottom,.SplitLayout--media .BackgroundVideo__sticky.StickyPolyfillElement--top {
    width: 100%;
    overflow: hidden
}

.SplitLayout--media .BackgroundVideo__sticky.StickyPolyfillElement--stick {
    width: 50%;
    overflow: hidden
}

.CardCanvas {
    top: 110px;
    margin: 60px 0 30px
}

.CardCanvas.StickyPolyfillElement--stick {
    top: 50px
}

.CardCanvas__itemHeightReference {
    position: absolute;
    top: 0;
    height: calc(100vh - 60px - 4rem);
    width: 3px
}

.CardCanvasItem {
    position: absolute!important;
    top: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 1ms linear
}

.CardCanvasItem img,.CardCanvasItem picture {
    background-color: transparent!important;
    display: block
}

.CardCanvasItem--isPrimed {
    z-index: 10
}

.CardCanvasItem--isActive {
    z-index: 20;
    opacity: 1
}

.CardCanvasItem__image {
    width: 100%;
    text-align: center
}

.CardCanvasItem__image img {
    display: block;
    -o-object-fit: contain;
    object-fit: contain;
    margin: 0 auto;
    width: 100%
}

.DeviceDetect--isIE .CardCanvasItem__image img {
    width: auto;
    height: auto;
    max-width: 100%;
    margin: 0 auto
}

.CardCanvasItem__caption {
    margin: 0 auto;
    text-align: center
}

@media (max-width: 899.98px) {
    .CardCanvas--tworowContainer .CardCanvas__canvasColumn {
        position:absolute;
        inset: 0;
        max-width: 100%
    }

    .CardCanvas--tworowContainer .CardCanvas {
        height: 35vh!important;
        top: 40px;
        margin-top: 0
    }

    .CardCanvas--tworowContainer .CardCanvas__itemHeightReference {
        height: 100%;
        width: 100%
    }

    .CardCanvas--tworowContainer .CardCanvasItem,.CardCanvas--tworowContainer .CardCanvasItem__image,.CardCanvas--tworowContainer .Lazyload,.CardCanvas--tworowContainer .Lazyload__loading {
        height: 100%
    }

    .CardCanvas--tworowContainer .CardCanvasItem img,.CardCanvas--tworowContainer .CardCanvasItem__image img,.CardCanvas--tworowContainer .Lazyload img,.CardCanvas--tworowContainer .Lazyload__loading img {
        -o-object-fit: scale-down;
        object-fit: scale-down
    }

    .CardCanvas--tworowContainer .CardCanvasItem {
        padding: 4px
    }

    .CardCanvas--tworowContainer .CardCanvasItem__caption {
        position: absolute;
        right: 0;
        bottom: 4px;
        left: 0;
        font-size: 16px
    }

    .CardCanvas--tworowContainer .CardCanvas__smallItemCaption {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0
    }
}

@media (min-width: 900px) {
    .shorthand-shadow-article:not(.DeviceDetect--isEdge):not(.DeviceDetect--isIE) .CardCanvasItem__image img {
        max-width:750px;
        max-height: 75vh!important
    }
}

.Core--rootElement,.Core--rootElement * {
    position: relative;
    box-sizing: border-box
}

sub,sup {
    text-decoration: inherit
}

.Core--clearfix {
    overflow: auto
}

.Core--invisible {
    visibility: hidden;
    position: absolute
}

.Core--pointerEventsNone {
    pointer-events: none
}

@media (min-width: 900px) {
    .Core--md-srOnly {
        display:none
    }
}

.Display--none {
    display: none!important
}

.Display--inline {
    display: inline!important
}

.Display--inline-block {
    display: inline-block!important
}

.Display--block {
    display: block!important
}

.Display--table {
    display: table!important
}

.Display--table-row {
    display: table-row!important
}

.Display--table-cell {
    display: table-cell!important
}

.Display--flex {
    display: flex!important
}

.Display--inline-flex {
    display: inline-flex!important
}

@media (min-width: 620px) {
    .Display--sm-none {
        display:none!important
    }

    .Display--sm-inline {
        display: inline!important
    }

    .Display--sm-inline-block {
        display: inline-block!important
    }

    .Display--sm-block {
        display: block!important
    }

    .Display--sm-table {
        display: table!important
    }

    .Display--sm-table-row {
        display: table-row!important
    }

    .Display--sm-table-cell {
        display: table-cell!important
    }

    .Display--sm-flex {
        display: flex!important
    }

    .Display--sm-inline-flex {
        display: inline-flex!important
    }
}

@media (min-width: 900px) {
    .Display--md-none {
        display:none!important
    }

    .Display--md-inline {
        display: inline!important
    }

    .Display--md-inline-block {
        display: inline-block!important
    }

    .Display--md-block {
        display: block!important
    }

    .Display--md-table {
        display: table!important
    }

    .Display--md-table-row {
        display: table-row!important
    }

    .Display--md-table-cell {
        display: table-cell!important
    }

    .Display--md-flex {
        display: flex!important
    }

    .Display--md-inline-flex {
        display: inline-flex!important
    }
}

@media (min-width: 1100px) {
    .Display--lg-none {
        display:none!important
    }

    .Display--lg-inline {
        display: inline!important
    }

    .Display--lg-inline-block {
        display: inline-block!important
    }

    .Display--lg-block {
        display: block!important
    }

    .Display--lg-table {
        display: table!important
    }

    .Display--lg-table-row {
        display: table-row!important
    }

    .Display--lg-table-cell {
        display: table-cell!important
    }

    .Display--lg-flex {
        display: flex!important
    }

    .Display--lg-inline-flex {
        display: inline-flex!important
    }
}

@media (min-width: 1400px) {
    .Display--xl-none {
        display:none!important
    }

    .Display--xl-inline {
        display: inline!important
    }

    .Display--xl-inline-block {
        display: inline-block!important
    }

    .Display--xl-block {
        display: block!important
    }

    .Display--xl-table {
        display: table!important
    }

    .Display--xl-table-row {
        display: table-row!important
    }

    .Display--xl-table-cell {
        display: table-cell!important
    }

    .Display--xl-flex {
        display: flex!important
    }

    .Display--xl-inline-flex {
        display: inline-flex!important
    }
}

@media (min-width: 1750px) {
    .Display--xxl-none {
        display:none!important
    }

    .Display--xxl-inline {
        display: inline!important
    }

    .Display--xxl-inline-block {
        display: inline-block!important
    }

    .Display--xxl-block {
        display: block!important
    }

    .Display--xxl-table {
        display: table!important
    }

    .Display--xxl-table-row {
        display: table-row!important
    }

    .Display--xxl-table-cell {
        display: table-cell!important
    }

    .Display--xxl-flex {
        display: flex!important
    }

    .Display--xxl-inline-flex {
        display: inline-flex!important
    }
}

@media (min-width: 2000px) {
    .Display--xxxl-none {
        display:none!important
    }

    .Display--xxxl-inline {
        display: inline!important
    }

    .Display--xxxl-inline-block {
        display: inline-block!important
    }

    .Display--xxxl-block {
        display: block!important
    }

    .Display--xxxl-table {
        display: table!important
    }

    .Display--xxxl-table-row {
        display: table-row!important
    }

    .Display--xxxl-table-cell {
        display: table-cell!important
    }

    .Display--xxxl-flex {
        display: flex!important
    }

    .Display--xxxl-inline-flex {
        display: inline-flex!important
    }
}

@media (min-width: 2600px) {
    .Display--xxxxl-none {
        display:none!important
    }

    .Display--xxxxl-inline {
        display: inline!important
    }

    .Display--xxxxl-inline-block {
        display: inline-block!important
    }

    .Display--xxxxl-block {
        display: block!important
    }

    .Display--xxxxl-table {
        display: table!important
    }

    .Display--xxxxl-table-row {
        display: table-row!important
    }

    .Display--xxxxl-table-cell {
        display: table-cell!important
    }

    .Display--xxxxl-flex {
        display: flex!important
    }

    .Display--xxxxl-inline-flex {
        display: inline-flex!important
    }
}

@media (min-width: 3200px) {
    .Display--4k-none {
        display:none!important
    }

    .Display--4k-inline {
        display: inline!important
    }

    .Display--4k-inline-block {
        display: inline-block!important
    }

    .Display--4k-block {
        display: block!important
    }

    .Display--4k-table {
        display: table!important
    }

    .Display--4k-table-row {
        display: table-row!important
    }

    .Display--4k-table-cell {
        display: table-cell!important
    }

    .Display--4k-flex {
        display: flex!important
    }

    .Display--4k-inline-flex {
        display: inline-flex!important
    }
}

@media (min-width: 4000px) {
    .Display--4kplus-none {
        display:none!important
    }

    .Display--4kplus-inline {
        display: inline!important
    }

    .Display--4kplus-inline-block {
        display: inline-block!important
    }

    .Display--4kplus-block {
        display: block!important
    }

    .Display--4kplus-table {
        display: table!important
    }

    .Display--4kplus-table-row {
        display: table-row!important
    }

    .Display--4kplus-table-cell {
        display: table-cell!important
    }

    .Display--4kplus-flex {
        display: flex!important
    }

    .Display--4kplus-inline-flex {
        display: inline-flex!important
    }
}

@media print {
    .Display--print-none {
        display: none!important
    }

    .Display--print-inline {
        display: inline!important
    }

    .Display--print-inline-block {
        display: inline-block!important
    }

    .Display--print-block {
        display: block!important
    }

    .Display--print-table {
        display: table!important
    }

    .Display--print-table-row {
        display: table-row!important
    }

    .Display--print-table-cell {
        display: table-cell!important
    }

    .Display--print-flex {
        display: flex!important
    }

    .Display--print-inline-flex {
        display: inline-flex!important
    }
}

.shorthand-embed-article .FullSize {
    height: 100%
}

.shorthand-embed-article .DisplayContainerHeight {
    height: 100vh
}

.shorthand-embed-article .FullSize--basic {
    height: 100%
}

@keyframes footnoteAppearUp {
    0% {
        opacity: 0;
        transform: translate(-50%) translateY(5%)
    }

    to {
        opacity: 1;
        transform: translate(-50%) translateY(0)
    }
}

@keyframes footnoteAppearDown {
    0% {
        opacity: 0;
        transform: translate(-50%) translateY(-5%)
    }

    to {
        opacity: 1;
        transform: translate(-50%) translateY(0)
    }
}

.Theme-Story .Theme-Layer-BodyText-Highlight {
    background-color: #12bf9c33;
    position: relative;
    display: inline;
    border-radius: 5px;
    padding-left: 5px
}

.Theme-Story .Theme-Layer-BodyText-Highlight:hover {
    background-color: #12bf9c80
}

.Theme-Story .Theme-Layer-BodyText-Highlight .Theme-Layer-BodyText-Highlight--Icon {
    margin: 0 5px 6px;
    top: -1px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    line-height: 1;
    font-weight: 700;
    color: #fff;
    font-family: sans-serif;
    background-color: #000;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.Theme-Story .Theme-Layer-BodyText-Highlight .Theme-Layer-BodyText-Highlight--Icon:after {
    content: "i"
}

.Theme-Story .Theme-Footnote {
    z-index: 1000;
    position: fixed;
    height: auto;
    overflow: visible;
    display: none;
    opacity: 1;
    width: -moz-max-content;
    width: max-content;
    white-space: normal;
    background-color: #fffffff2;
    color: #222;
    font-size: .8em;
    font-family: sans-serif;
    line-height: 1.5;
    border-radius: 4px;
    left: 50%;
    transform: translate(-50%);
    transition: opacity .2s;
    max-width: 300px;
    box-shadow: 0 3px 10px 6px #0000001a,0 0 0 1px #0000001a
}

.Theme-Story .Theme-Footnote p {
    padding: 15px;
    margin: 0;
    font-family: inherit;
    line-height: 1.5;
    max-height: 30vh;
    overflow: hidden;
    overflow-y: auto
}

.Theme-Story .Theme-Footnote p:only-child:empty:after {
    display: block;
    padding: 15px;
    content: "Annotation is empty";
    opacity: .6;
    font-style: italic
}

.Theme-Story .Theme-Footnote:after {
    content: "";
    display: block;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 5px 0 5px;
    border-color: rgba(255,255,255,.95) transparent transparent transparent;
    z-index: 1
}

.Theme-Story .Theme-Footnote:before {
    content: "";
    position: absolute;
    top: 100%;
    height: 5px;
    width: 100%;
    z-index: -1;
    left: 0
}

.Theme-Story .Theme-Footnote.Theme-Position-Bottom {
    animation: footnoteAppearUp .15s ease-out
}

.Theme-Story .Theme-Footnote.Theme-Position-Bottom:after {
    top: 100%
}

.Theme-Story .Theme-Footnote.Theme-Position-Top {
    animation: footnoteAppearDown .15s ease-out
}

.Theme-Story .Theme-Footnote.Theme-Position-Top:after {
    top: unset;
    bottom: 100%;
    border-width: 0 5px 5px 5px;
    border-color: transparent transparent rgba(255,255,255,.95) transparent
}

.Theme-Story .Theme-Footnote.Theme-Position-Top:before {
    bottom: 100%;
    top: unset
}

.Theme-Story .Theme-Footnote a {
    color: #222;
    text-decoration: underline
}

@media (min-width: 500px) {
    .Theme-Story .Theme-Footnote {
        max-width:400px
    }
}

@media (min-width: 620px) {
    .Theme-Story .Theme-Footnote {
        max-width:450px
    }
}

@media (min-width: 1100px) {
    .Theme-Story .Theme-Footnote {
        max-width:550px
    }
}

@media (min-width: 1400px) {
    .Theme-Story .Theme-Footnote {
        max-width:550px
    }
}

@media (min-width: 1750px) {
    .Theme-Story .Theme-Footnote {
        max-width:680px
    }
}

.Theme-Section-Dark .Theme-Layer-BodyText-Highlight {
    background-color: #12bf9c33
}

.Theme-Section-Dark .Theme-Layer-BodyText-Highlight:hover {
    background-color: #12bf9c80
}

.Theme-Section-Dark .Theme-Layer-BodyText-Highlight .Theme-Layer-BodyText-Highlight--Icon {
    background-color: #fff;
    color: #000
}

.FullSize {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%
}

.FullSize--fixedChild {
    overflow: hidden
}

:not(.DeviceDetect--isiOS) .FullSize--fixedChild {
    clip: rect(0,auto,auto,0)
}

:not(.DeviceDetect--isiOS) .FullSize--fixedChild.Theme-Layer-background-viewport-cyclops {
    clip-path: inset(-.5px)
}

:not(.DeviceDetect--isiOS) .FullSize--fixedChild[data-background-animation] {
    clip-path: inset(-.5px)
}

:not(.DeviceDetect--isiOS) .FullSize--fixedChild.Theme-Layer-background-viewport-video {
    clip-path: inset(-.5px)
}

:not(.DeviceDetect--isIE):not(.DeviceDetect--isEdge) .FullSize--fixedChild.InstantImage {
    clip-path: inset(-.5px)
}

:not(.DeviceDetect--isAndroid):not(.DeviceDetect--isIE):not(.DeviceDetect--isEdge) .FullSize--fixedChild .Theme-BackgroundImage {
    clip-path: inset(-.5px)
}

.DeviceDetect--isiOS .FullSize--fixedChild {
    clip-path: inset(-.5px)
}

.DeviceDetect--isIE .FullSize--fixedChild {
    z-index: auto
}

picture.FullSize--fixedChild {
    position: absolute
}

@supports not (background: -webkit-named-image(i)) {
    .FullSize--fixedChild .FullSize__fixedChild {
        z-index:1;
        position: fixed!important;
        top: 0;
        transform: translateZ(0);
        backface-visibility: hidden
    }
}

@media all and (-ms-high-contrast:none),(-ms-high-contrast:active) {
    .FullSize--fixedChild .FullSize__fixedChild {
        z-index: 1;
        position: fixed!important;
        top: 0;
        transform: translateZ(0);
        backface-visibility: hidden
    }
}

@supports (background: -webkit-named-image(i)) {
    div.FullSize__fixedChild,img.FullSize__fixedChild,picture.FullSize__fixedChild,sh-model.FullSize__fixedChild {
        z-index:1;
        position: fixed!important;
        top: 0;
        transform: translateZ(0);
        backface-visibility: hidden
    }

    .FullSize--fixedChild video.FullSize__fixedChild--Safari {
        z-index: 1;
        position: fixed!important;
        top: 0;
        transform: translateZ(0);
        backface-visibility: hidden
    }
}

.FullSize--basic {
    display: block;
    width: 100%;
    height: 100%
}

.FullSize--fullWidth {
    display: block;
    width: 100%
}

.FullSize--fullHeight {
    display: block;
    height: 100%
}

.DeviceDetect--isIE .FullSize__fixedChild+picture {
    z-index: 0
}

.Theme-Section-HasOverlay .GridSection--Full.GridSection--gutters-None {
    padding-bottom: 40px
}

.GridSection-container.Layer--one {
    z-index: initial
}

.GridSection-container.Layer--one .Layout {
    z-index: 100
}

.GridSection--Full {
    width: 100%
}

.GridSection--Full .Layout {
    max-width: 100%!important
}

.GridSection--Full .GridSection__rowContainer {
    margin: auto
}

.GridSection-title:not(:empty) {
    margin: 0 auto 20px
}

@media (min-width: 900px) {
    .GridSection__rowContainer:first-of-type .GridItem {
        padding-top:0
    }
}

@media (min-width: 900px) {
    .GridSection__rowContainer:last-of-type .GridItem {
        padding-bottom:0
    }
}

.GridSection--gutters-None .GridSection__rowContainer+.GridSection__rowContainer .GridItem--inner {
    border-top: none
}

.GridSection__row--1 .Grid_image {
    display: flex;
    flex-direction: column;
    justify-content: center
}

.GridSection__row {
    display: flex;
    margin: 0 auto;
    flex-wrap: wrap
}

@media (min-width: 900px) {
    .GridSection__row {
        flex-wrap:nowrap
    }
}

.GridItem {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    flex: 1
}

@media (min-width: 900px) {
    .GridItem {
        width:1%
    }
}

@media (min-width: 900px) {
    .GridItem:only-child .GridItem--inner {
        align-items:center
    }

    .GridItem:only-child .GridItem--inner.GridItem--media-left {
        flex-direction: row
    }

    .GridItem:only-child .GridItem--inner.GridItem--media-right {
        flex-direction: row-reverse
    }

    .GridItem:only-child .InnerText {
        justify-content: center;
        width: 50%
    }

    .GridItem:only-child .Grid_image:not(.Grid_imageAdd) {
        width: 50%
    }

    .GridItem:only-child .Grid_image:not(.Grid_imageAdd) .InlineMedia--image__inner:not(.crop-circle)+.Theme-Caption {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0
    }
}

@media (min-width: 900px) {
    .GridItem:first-of-type {
        padding-left:0
    }
}

@media (min-width: 900px) {
    .GridItem:last-of-type {
        padding-right:0
    }
}

@media (min-width: 900px) {
    .GridSection--gutters-Small .GridItem:first-of-type {
        padding-left:0
    }
}

@media (min-width: 900px) {
    .GridSection--gutters-Small .GridItem:last-of-type {
        padding-right:0
    }
}

.GridSection--gutters-None .GridItem {
    padding: 0
}

@media (min-width: 900px) {
    .GridSection--gutters-None .GridItem+.GridItem {
        margin-left:-1px
    }

    .GridSection--gutters-None .GridItem+.GridItem .GridItem--inner {
        border-left-color: transparent
    }
}

.GridItem:not(:only-child) .InlineMedia+.InnerText .Theme-Layer-BodyText--inner:not(:empty) {
    padding-top: .5em
}

.GridItem .InnerText {
    display: flex;
    flex: 1;
    flex-direction: column;
    width: 100%;
    padding: 0
}

.GridItem .Theme-Layer-BodyText--inner:not(:empty) {
    padding: 1em 1em 1.2em
}

.GridItem .Grid_image {
    margin: 0;
    border: none;
    width: 100%
}

.GridItem .Grid_image .Theme-Layer-ResponsiveMedia {
    width: 100%
}

.GridItem .Grid_image img {
    display: block;
    width: 100%
}

.GridItem--inner {
    display: flex;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(170,170,170,.3)
}

.GridItem--inner.GridItem--media-left,.GridItem--inner.GridItem--media-right {
    flex-direction: column
}

@media screen and (min-width: 900px) {
    .GridItem--inner.GridItem--media-right {
        flex-direction:column-reverse
    }
}

.DeviceDetect--isIE .GridSection__row:not(.GridSection__row--1) .GridItem--inner.GridItem--media-left {
    display: block
}

.DeviceDetect--isIE .GridItem .InnerText .InlineMedia img {
    max-height: 50vh
}

.Header {
    height: 100%;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    align-content: center
}

.isAnimated {
    clip-path: inset(-.5px)
}

.DeviceDetect--isIE .isAnimated .Theme-Layer-TextBlock.Layer--one {
    z-index: 102
}

.Header__socialIcons a {
    font-size: 0;
    color: transparent
}

@media (min-width: 900px) {
    .Header .Navigation {
        flex-grow:1
    }

    .Header__socialIcons {
        flex-grow: 0
    }
}

@media (max-width: 1099.98px) {
    .Header__socialIcons {
        position:absolute;
        right: 60px;
        top: 0
    }
}

.HideOffscreen__media {
    display: none!important
}

.HideOffscreen__media--onscreen {
    display: block!important
}

.HideOffscreen__media--offscreen {
    display: none!important
}

.InlineMedia {
    margin: 1rem auto
}

.InlineMedia--image img {
    width: 100%;
    height: auto
}

.DeviceDetect--isiOS .InlineMedia .plyr--setup {
    max-width: 100%
}

.InlineMedia--embed,.MediaSection--embed {
    min-height: auto!important
}

.InlineMedia--embed *,.MediaSection--embed * {
    margin-left: auto!important;
    margin-right: auto!important
}

.InlineMedia--embed .twitter-tweet:not(.twitter-tweet-rendered),.MediaSection--embed .twitter-tweet:not(.twitter-tweet-rendered) {
    display: block;
    text-align: left;
    color: #657786;
    width: 100%;
    margin: 10px auto;
    max-width: 550px;
    border: 1px solid #ccd6dd;
    background-color: #fff;
    border-radius: 15px;
    font-family: system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Ubuntu,Helvetica Neue,sans-serif;
    padding: 15px 18px;
    font-size: 15px;
    line-height: 1.3
}

.InlineMedia--embed .twitter-tweet:not(.twitter-tweet-rendered) p,.MediaSection--embed .twitter-tweet:not(.twitter-tweet-rendered) p {
    color: #000!important;
    font-family: inherit;
    display: block;
    font-size: 19px;
    margin: 0 0 10px!important;
    padding-bottom: 10px;
    line-height: inherit;
    border-bottom: 1px solid rgba(204,214,221,.5)
}

.InlineMedia--embed .twitter-tweet:not(.twitter-tweet-rendered) a,.MediaSection--embed .twitter-tweet:not(.twitter-tweet-rendered) a {
    color: inherit;
    display: initial
}

.iframely-widget-container {
    text-align: center
}

.InlineMedia--embed {
    min-height: auto!important
}

@media (orientation: portrait) {
    .InlineMedia--embed {
        margin-left:-5px;
        width: calc(100% + 10px)
    }
}

.Theme-Layer-ResponsiveMedia .InlineMedia--embed {
    margin: 0
}

.RichEmbed--soundcloud div {
    max-height: 126px
}

@media (orientation: portrait) {
    .RichEmbed--pinterest {
        margin-left:-20px;
        width: calc(100% + 40px)
    }
}

@media (orientation: portrait) {
    .RichEmbed--tiktok {
        margin-left:-10px;
        width: calc(100% + 20px)
    }
}

.crop-square picture {
    display: block;
    position: relative;
    width: 100%;
    padding-top: 100%;
    margin: 0
}

.crop-square picture img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    transform: translate(-50%,-50%);
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.crop-circle {
    padding: 1rem
}

.crop-circle picture {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    padding-top: 100%;
    margin: 0;
    border-radius: 50%
}

.crop-circle picture img {
    position: absolute;
    border-radius: 50%;
    overflow: hidden;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.crop-portrait picture {
    display: block;
    position: relative;
    width: 100%;
    padding-top: 133%;
    margin: 0
}

.crop-portrait picture img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    transform: translate(-50%,-50%);
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.crop-landscape picture {
    display: block;
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    margin: 0
}

.crop-landscape picture img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    transform: translate(-50%,-50%);
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

/* .InlineElement--Table {
    text-align: left;
    -webkit-appearance: none;
    overflow-x: auto
} */

.InlineElement--Table table {
    min-width: 100%;
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    vertical-align: top;
    table-layout: fixed
}

.InlineElement--Table td,.InlineElement--Table th {
    vertical-align: inherit;
    text-align: inherit;
    border: 1px solid;
    border-color: inherit;
    height: 2.5em
}

.InlineElement--Table td p,.InlineElement--Table th p {
    font-family: inherit;
    margin: 0;
    padding: 0
}

.InlineElement--Table td p+p,.InlineElement--Table th p+p {
    margin-top: .5em
}

.InlineElement--Table .hasCustomFont td,.InlineElement--Table .hasCustomFont th {
    font-family: inherit
}

/* .InlineElement--Table::-webkit-scrollbar {
    -webkit-appearance: none
} */

.InlineElement--Table::-webkit-scrollbar:vertical {
    width: 11px
}

.InlineElement--Table::-webkit-scrollbar:horizontal {
    height: 11px
}

.InlineElement--Table::-webkit-scrollbar-thumb {
    border-radius: 8px;
    border: 2px solid #fff;
    background-color: #00000080
}

.InlineElement--Table::-webkit-scrollbar-track {
    background-color: #fff;
    border-radius: 8px
}

.Layer--two.Layer--overlay {
    z-index: 101;
    pointer-events: none
}

.Layer--two.Layer--overlay .Theme-OverlayedCaption {
    pointer-events: auto
}

.Layer--one {
    z-index: 100
}

.Layer--two {
    z-index: 90
}

.Layer--three {
    z-index: 80
}

.Layer--four {
    z-index: 70
}

.Layer--five {
    z-index: 60
}

.Layer--six {
    z-index: 50
}

.Layer--seven {
    z-index: 40
}

.Layer--eight {
    z-index: 30
}

.Layer--nine {
    z-index: 20
}

.Layer--ten {
    z-index: 10
}

html {
    box-sizing: border-box;
    -ms-overflow-style: scrollbar
}

*,:after,:before {
    box-sizing: inherit
}

.Layout {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto
}

@media (min-width: 620px) {
    .Layout {
        max-width:900px
    }
}

@media (min-width: 900px) {
    .Layout {
        max-width:1050px
    }
}

@media (min-width: 1100px) {
    .Layout {
        max-width:1060px
    }
}

@media (min-width: 1400px) {
    .Layout {
        max-width:1360px
    }
}

@media (min-width: 1750px) {
    .Layout {
        max-width:1560px
    }
}

@media (min-width: 2000px) {
    .Layout {
        max-width:1760px
    }
}

@media (min-width: 2600px) {
    .Layout {
        max-width:2200px
    }
}

@media (min-width: 3200px) {
    .Layout {
        max-width:2400px
    }
}

@media (min-width: 4000px) {
    .Layout {
        max-width:3400px
    }
}

.Layout--fluid {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto
}

.Layout__row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px
}

.no-gutters {
    margin-right: 0;
    margin-left: 0
}

.no-gutters>.Layout__col,.no-gutters>[class*=col-] {
    padding-right: 0;
    padding-left: 0
}

.Layout__col-1,.Layout__col-10,.Layout__col-11,.Layout__col-12,.Layout__col-2,.Layout__col-3,.Layout__col-4,.Layout__col-4k,.Layout__col-4k-1,.Layout__col-4k-10,.Layout__col-4k-11,.Layout__col-4k-12,.Layout__col-4k-2,.Layout__col-4k-3,.Layout__col-4k-4,.Layout__col-4k-5,.Layout__col-4k-6,.Layout__col-4k-7,.Layout__col-4k-8,.Layout__col-4k-9,.Layout__col-4k-auto,.Layout__col-4kplus,.Layout__col-4kplus-1,.Layout__col-4kplus-10,.Layout__col-4kplus-11,.Layout__col-4kplus-12,.Layout__col-4kplus-2,.Layout__col-4kplus-3,.Layout__col-4kplus-4,.Layout__col-4kplus-5,.Layout__col-4kplus-6,.Layout__col-4kplus-7,.Layout__col-4kplus-8,.Layout__col-4kplus-9,.Layout__col-4kplus-auto,.Layout__col-5,.Layout__col-6,.Layout__col-7,.Layout__col-8,.Layout__col-9,.Layout__col-auto,.Layout__col-lg,.Layout__col-lg-1,.Layout__col-lg-10,.Layout__col-lg-11,.Layout__col-lg-12,.Layout__col-lg-2,.Layout__col-lg-3,.Layout__col-lg-4,.Layout__col-lg-5,.Layout__col-lg-6,.Layout__col-lg-7,.Layout__col-lg-8,.Layout__col-lg-9,.Layout__col-lg-auto,.Layout__col-md,.Layout__col-md-1,.Layout__col-md-10,.Layout__col-md-11,.Layout__col-md-12,.Layout__col-md-2,.Layout__col-md-3,.Layout__col-md-4,.Layout__col-md-5,.Layout__col-md-6,.Layout__col-md-7,.Layout__col-md-8,.Layout__col-md-9,.Layout__col-md-auto,.Layout__col-sm,.Layout__col-sm-1,.Layout__col-sm-10,.Layout__col-sm-11,.Layout__col-sm-12,.Layout__col-sm-2,.Layout__col-sm-3,.Layout__col-sm-4,.Layout__col-sm-5,.Layout__col-sm-6,.Layout__col-sm-7,.Layout__col-sm-8,.Layout__col-sm-9,.Layout__col-sm-auto,.Layout__col-xl,.Layout__col-xl-1,.Layout__col-xl-10,.Layout__col-xl-11,.Layout__col-xl-12,.Layout__col-xl-2,.Layout__col-xl-3,.Layout__col-xl-4,.Layout__col-xl-5,.Layout__col-xl-6,.Layout__col-xl-7,.Layout__col-xl-8,.Layout__col-xl-9,.Layout__col-xl-auto,.Layout__col-xxl,.Layout__col-xxl-1,.Layout__col-xxl-10,.Layout__col-xxl-11,.Layout__col-xxl-12,.Layout__col-xxl-2,.Layout__col-xxl-3,.Layout__col-xxl-4,.Layout__col-xxl-5,.Layout__col-xxl-6,.Layout__col-xxl-7,.Layout__col-xxl-8,.Layout__col-xxl-9,.Layout__col-xxl-auto,.Layout__col-xxxl,.Layout__col-xxxl-1,.Layout__col-xxxl-10,.Layout__col-xxxl-11,.Layout__col-xxxl-12,.Layout__col-xxxl-2,.Layout__col-xxxl-3,.Layout__col-xxxl-4,.Layout__col-xxxl-5,.Layout__col-xxxl-6,.Layout__col-xxxl-7,.Layout__col-xxxl-8,.Layout__col-xxxl-9,.Layout__col-xxxl-auto,.Layout__col-xxxxl,.Layout__col-xxxxl-1,.Layout__col-xxxxl-10,.Layout__col-xxxxl-11,.Layout__col-xxxxl-12,.Layout__col-xxxxl-2,.Layout__col-xxxxl-3,.Layout__col-xxxxl-4,.Layout__col-xxxxl-5,.Layout__col-xxxxl-6,.Layout__col-xxxxl-7,.Layout__col-xxxxl-8,.Layout__col-xxxxl-9,.Layout__col-xxxxl-auto,.col {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px
}

.Layout__col {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%
}

.Layout__col-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%
}

.Layout__col-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%
}

.Layout__col-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%
}

.Layout__col-3 {
    flex: 0 0 25%;
    max-width: 25%
}

.Layout__col-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%
}

.Layout__col-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%
}

.Layout__col-6 {
    flex: 0 0 50%;
    max-width: 50%
}

.Layout__col-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%
}

.Layout__col-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%
}

.Layout__col-9 {
    flex: 0 0 75%;
    max-width: 75%
}

.Layout__col-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%
}

.Layout__col-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%
}

.Layout__col-12 {
    flex: 0 0 100%;
    max-width: 100%
}

.order-first {
    order: -1
}

.order-last {
    order: 13
}

.Layout__order-0 {
    order: 0
}

.Layout__order-1 {
    order: 1
}

.Layout__order-2 {
    order: 2
}

.Layout__order-3 {
    order: 3
}

.Layout__order-4 {
    order: 4
}

.Layout__order-5 {
    order: 5
}

.Layout__order-6 {
    order: 6
}

.Layout__order-7 {
    order: 7
}

.Layout__order-8 {
    order: 8
}

.Layout__order-9 {
    order: 9
}

.Layout__order-10 {
    order: 10
}

.Layout__order-11 {
    order: 11
}

.Layout__order-12 {
    order: 12
}

.Layout__offset-1 {
    margin-left: 8.3333333333%
}

.Layout__offset-2 {
    margin-left: 16.6666666667%
}

.Layout__offset-3 {
    margin-left: 25%
}

.Layout__offset-4 {
    margin-left: 33.3333333333%
}

.Layout__offset-5 {
    margin-left: 41.6666666667%
}

.Layout__offset-6 {
    margin-left: 50%
}

.Layout__offset-7 {
    margin-left: 58.3333333333%
}

.Layout__offset-8 {
    margin-left: 66.6666666667%
}

.Layout__offset-9 {
    margin-left: 75%
}

.Layout__offset-10 {
    margin-left: 83.3333333333%
}

.Layout__offset-11 {
    margin-left: 91.6666666667%
}

@media (min-width: 620px) {
    .Layout__col-sm {
        flex-basis:0;
        flex-grow: 1;
        max-width: 100%
    }

    .Layout__col-sm-auto {
        flex: 0 0 auto;
        width: auto;
        max-width: 100%
    }

    .Layout__col-sm-1 {
        flex: 0 0 8.3333333333%;
        max-width: 8.3333333333%
    }

    .Layout__col-sm-2 {
        flex: 0 0 16.6666666667%;
        max-width: 16.6666666667%
    }

    .Layout__col-sm-3 {
        flex: 0 0 25%;
        max-width: 25%
    }

    .Layout__col-sm-4 {
        flex: 0 0 33.3333333333%;
        max-width: 33.3333333333%
    }

    .Layout__col-sm-5 {
        flex: 0 0 41.6666666667%;
        max-width: 41.6666666667%
    }

    .Layout__col-sm-6 {
        flex: 0 0 50%;
        max-width: 50%
    }

    .Layout__col-sm-7 {
        flex: 0 0 58.3333333333%;
        max-width: 58.3333333333%
    }

    .Layout__col-sm-8 {
        flex: 0 0 66.6666666667%;
        max-width: 66.6666666667%
    }

    .Layout__col-sm-9 {
        flex: 0 0 75%;
        max-width: 75%
    }

    .Layout__col-sm-10 {
        flex: 0 0 83.3333333333%;
        max-width: 83.3333333333%
    }

    .Layout__col-sm-11 {
        flex: 0 0 91.6666666667%;
        max-width: 91.6666666667%
    }

    .Layout__col-sm-12 {
        flex: 0 0 100%;
        max-width: 100%
    }

    .order-sm-first {
        order: -1
    }

    .order-sm-last {
        order: 13
    }

    .Layout__order-sm-0 {
        order: 0
    }

    .Layout__order-sm-1 {
        order: 1
    }

    .Layout__order-sm-2 {
        order: 2
    }

    .Layout__order-sm-3 {
        order: 3
    }

    .Layout__order-sm-4 {
        order: 4
    }

    .Layout__order-sm-5 {
        order: 5
    }

    .Layout__order-sm-6 {
        order: 6
    }

    .Layout__order-sm-7 {
        order: 7
    }

    .Layout__order-sm-8 {
        order: 8
    }

    .Layout__order-sm-9 {
        order: 9
    }

    .Layout__order-sm-10 {
        order: 10
    }

    .Layout__order-sm-11 {
        order: 11
    }

    .Layout__order-sm-12 {
        order: 12
    }

    .Layout__offset-sm-0 {
        margin-left: 0
    }

    .Layout__offset-sm-1 {
        margin-left: 8.3333333333%
    }

    .Layout__offset-sm-2 {
        margin-left: 16.6666666667%
    }

    .Layout__offset-sm-3 {
        margin-left: 25%
    }

    .Layout__offset-sm-4 {
        margin-left: 33.3333333333%
    }

    .Layout__offset-sm-5 {
        margin-left: 41.6666666667%
    }

    .Layout__offset-sm-6 {
        margin-left: 50%
    }

    .Layout__offset-sm-7 {
        margin-left: 58.3333333333%
    }

    .Layout__offset-sm-8 {
        margin-left: 66.6666666667%
    }

    .Layout__offset-sm-9 {
        margin-left: 75%
    }

    .Layout__offset-sm-10 {
        margin-left: 83.3333333333%
    }

    .Layout__offset-sm-11 {
        margin-left: 91.6666666667%
    }
}

@media (min-width: 900px) {
    .Layout__col-md {
        flex-basis:0;
        flex-grow: 1;
        max-width: 100%
    }

    .Layout__col-md-auto {
        flex: 0 0 auto;
        width: auto;
        max-width: 100%
    }

    .Layout__col-md-1 {
        flex: 0 0 8.3333333333%;
        max-width: 8.3333333333%
    }

    .Layout__col-md-2 {
        flex: 0 0 16.6666666667%;
        max-width: 16.6666666667%
    }

    .Layout__col-md-3 {
        flex: 0 0 25%;
        max-width: 25%
    }

    .Layout__col-md-4 {
        flex: 0 0 33.3333333333%;
        max-width: 33.3333333333%
    }

    .Layout__col-md-5 {
        flex: 0 0 41.6666666667%;
        max-width: 41.6666666667%
    }

    .Layout__col-md-6 {
        flex: 0 0 50%;
        max-width: 50%
    }

    .Layout__col-md-7 {
        flex: 0 0 58.3333333333%;
        max-width: 58.3333333333%
    }

    .Layout__col-md-8 {
        flex: 0 0 66.6666666667%;
        max-width: 66.6666666667%
    }

    .Layout__col-md-9 {
        flex: 0 0 75%;
        max-width: 75%
    }

    .Layout__col-md-10 {
        flex: 0 0 83.3333333333%;
        max-width: 83.3333333333%
    }

    .Layout__col-md-11 {
        flex: 0 0 91.6666666667%;
        max-width: 91.6666666667%
    }

    .Layout__col-md-12 {
        flex: 0 0 100%;
        max-width: 100%
    }

    .order-md-first {
        order: -1
    }

    .order-md-last {
        order: 13
    }

    .Layout__order-md-0 {
        order: 0
    }

    .Layout__order-md-1 {
        order: 1
    }

    .Layout__order-md-2 {
        order: 2
    }

    .Layout__order-md-3 {
        order: 3
    }

    .Layout__order-md-4 {
        order: 4
    }

    .Layout__order-md-5 {
        order: 5
    }

    .Layout__order-md-6 {
        order: 6
    }

    .Layout__order-md-7 {
        order: 7
    }

    .Layout__order-md-8 {
        order: 8
    }

    .Layout__order-md-9 {
        order: 9
    }

    .Layout__order-md-10 {
        order: 10
    }

    .Layout__order-md-11 {
        order: 11
    }

    .Layout__order-md-12 {
        order: 12
    }

    .Layout__offset-md-0 {
        margin-left: 0
    }

    .Layout__offset-md-1 {
        margin-left: 8.3333333333%
    }

    .Layout__offset-md-2 {
        margin-left: 16.6666666667%
    }

    .Layout__offset-md-3 {
        margin-left: 25%
    }

    .Layout__offset-md-4 {
        margin-left: 33.3333333333%
    }

    .Layout__offset-md-5 {
        margin-left: 41.6666666667%
    }

    .Layout__offset-md-6 {
        margin-left: 50%
    }

    .Layout__offset-md-7 {
        margin-left: 58.3333333333%
    }

    .Layout__offset-md-8 {
        margin-left: 66.6666666667%
    }

    .Layout__offset-md-9 {
        margin-left: 75%
    }

    .Layout__offset-md-10 {
        margin-left: 83.3333333333%
    }

    .Layout__offset-md-11 {
        margin-left: 91.6666666667%
    }
}

@media (min-width: 1100px) {
    .Layout__col-lg {
        flex-basis:0;
        flex-grow: 1;
        max-width: 100%
    }

    .Layout__col-lg-auto {
        flex: 0 0 auto;
        width: auto;
        max-width: 100%
    }

    .Layout__col-lg-1 {
        flex: 0 0 8.3333333333%;
        max-width: 8.3333333333%
    }

    .Layout__col-lg-2 {
        flex: 0 0 16.6666666667%;
        max-width: 16.6666666667%
    }

    .Layout__col-lg-3 {
        flex: 0 0 25%;
        max-width: 25%
    }

    .Layout__col-lg-4 {
        flex: 0 0 33.3333333333%;
        max-width: 33.3333333333%
    }

    .Layout__col-lg-5 {
        flex: 0 0 41.6666666667%;
        max-width: 41.6666666667%
    }

    .Layout__col-lg-6 {
        flex: 0 0 50%;
        max-width: 50%
    }

    .Layout__col-lg-7 {
        flex: 0 0 58.3333333333%;
        max-width: 58.3333333333%
    }

    .Layout__col-lg-8 {
        flex: 0 0 66.6666666667%;
        max-width: 66.6666666667%
    }

    .Layout__col-lg-9 {
        flex: 0 0 75%;
        max-width: 75%
    }

    .Layout__col-lg-10 {
        flex: 0 0 83.3333333333%;
        max-width: 83.3333333333%
    }

    .Layout__col-lg-11 {
        flex: 0 0 91.6666666667%;
        max-width: 91.6666666667%
    }

    .Layout__col-lg-12 {
        flex: 0 0 100%;
        max-width: 100%
    }

    .order-lg-first {
        order: -1
    }

    .order-lg-last {
        order: 13
    }

    .Layout__order-lg-0 {
        order: 0
    }

    .Layout__order-lg-1 {
        order: 1
    }

    .Layout__order-lg-2 {
        order: 2
    }

    .Layout__order-lg-3 {
        order: 3
    }

    .Layout__order-lg-4 {
        order: 4
    }

    .Layout__order-lg-5 {
        order: 5
    }

    .Layout__order-lg-6 {
        order: 6
    }

    .Layout__order-lg-7 {
        order: 7
    }

    .Layout__order-lg-8 {
        order: 8
    }

    .Layout__order-lg-9 {
        order: 9
    }

    .Layout__order-lg-10 {
        order: 10
    }

    .Layout__order-lg-11 {
        order: 11
    }

    .Layout__order-lg-12 {
        order: 12
    }

    .Layout__offset-lg-0 {
        margin-left: 0
    }

    .Layout__offset-lg-1 {
        margin-left: 8.3333333333%
    }

    .Layout__offset-lg-2 {
        margin-left: 16.6666666667%
    }

    .Layout__offset-lg-3 {
        margin-left: 25%
    }

    .Layout__offset-lg-4 {
        margin-left: 33.3333333333%
    }

    .Layout__offset-lg-5 {
        margin-left: 41.6666666667%
    }

    .Layout__offset-lg-6 {
        margin-left: 50%
    }

    .Layout__offset-lg-7 {
        margin-left: 58.3333333333%
    }

    .Layout__offset-lg-8 {
        margin-left: 66.6666666667%
    }

    .Layout__offset-lg-9 {
        margin-left: 75%
    }

    .Layout__offset-lg-10 {
        margin-left: 83.3333333333%
    }

    .Layout__offset-lg-11 {
        margin-left: 91.6666666667%
    }
}

@media (min-width: 1400px) {
    .Layout__col-xl {
        flex-basis:0;
        flex-grow: 1;
        max-width: 100%
    }

    .Layout__col-xl-auto {
        flex: 0 0 auto;
        width: auto;
        max-width: 100%
    }

    .Layout__col-xl-1 {
        flex: 0 0 8.3333333333%;
        max-width: 8.3333333333%
    }

    .Layout__col-xl-2 {
        flex: 0 0 16.6666666667%;
        max-width: 16.6666666667%
    }

    .Layout__col-xl-3 {
        flex: 0 0 25%;
        max-width: 25%
    }

    .Layout__col-xl-4 {
        flex: 0 0 33.3333333333%;
        max-width: 33.3333333333%
    }

    .Layout__col-xl-5 {
        flex: 0 0 41.6666666667%;
        max-width: 41.6666666667%
    }

    .Layout__col-xl-6 {
        flex: 0 0 50%;
        max-width: 50%
    }

    .Layout__col-xl-7 {
        flex: 0 0 58.3333333333%;
        max-width: 58.3333333333%
    }

    .Layout__col-xl-8 {
        flex: 0 0 66.6666666667%;
        max-width: 66.6666666667%
    }

    .Layout__col-xl-9 {
        flex: 0 0 75%;
        max-width: 75%
    }

    .Layout__col-xl-10 {
        flex: 0 0 83.3333333333%;
        max-width: 83.3333333333%
    }

    .Layout__col-xl-11 {
        flex: 0 0 91.6666666667%;
        max-width: 91.6666666667%
    }

    .Layout__col-xl-12 {
        flex: 0 0 100%;
        max-width: 100%
    }

    .order-xl-first {
        order: -1
    }

    .order-xl-last {
        order: 13
    }

    .Layout__order-xl-0 {
        order: 0
    }

    .Layout__order-xl-1 {
        order: 1
    }

    .Layout__order-xl-2 {
        order: 2
    }

    .Layout__order-xl-3 {
        order: 3
    }

    .Layout__order-xl-4 {
        order: 4
    }

    .Layout__order-xl-5 {
        order: 5
    }

    .Layout__order-xl-6 {
        order: 6
    }

    .Layout__order-xl-7 {
        order: 7
    }

    .Layout__order-xl-8 {
        order: 8
    }

    .Layout__order-xl-9 {
        order: 9
    }

    .Layout__order-xl-10 {
        order: 10
    }

    .Layout__order-xl-11 {
        order: 11
    }

    .Layout__order-xl-12 {
        order: 12
    }

    .Layout__offset-xl-0 {
        margin-left: 0
    }

    .Layout__offset-xl-1 {
        margin-left: 8.3333333333%
    }

    .Layout__offset-xl-2 {
        margin-left: 16.6666666667%
    }

    .Layout__offset-xl-3 {
        margin-left: 25%
    }

    .Layout__offset-xl-4 {
        margin-left: 33.3333333333%
    }

    .Layout__offset-xl-5 {
        margin-left: 41.6666666667%
    }

    .Layout__offset-xl-6 {
        margin-left: 50%
    }

    .Layout__offset-xl-7 {
        margin-left: 58.3333333333%
    }

    .Layout__offset-xl-8 {
        margin-left: 66.6666666667%
    }

    .Layout__offset-xl-9 {
        margin-left: 75%
    }

    .Layout__offset-xl-10 {
        margin-left: 83.3333333333%
    }

    .Layout__offset-xl-11 {
        margin-left: 91.6666666667%
    }
}

@media (min-width: 1750px) {
    .Layout__col-xxl {
        flex-basis:0;
        flex-grow: 1;
        max-width: 100%
    }

    .Layout__col-xxl-auto {
        flex: 0 0 auto;
        width: auto;
        max-width: 100%
    }

    .Layout__col-xxl-1 {
        flex: 0 0 8.3333333333%;
        max-width: 8.3333333333%
    }

    .Layout__col-xxl-2 {
        flex: 0 0 16.6666666667%;
        max-width: 16.6666666667%
    }

    .Layout__col-xxl-3 {
        flex: 0 0 25%;
        max-width: 25%
    }

    .Layout__col-xxl-4 {
        flex: 0 0 33.3333333333%;
        max-width: 33.3333333333%
    }

    .Layout__col-xxl-5 {
        flex: 0 0 41.6666666667%;
        max-width: 41.6666666667%
    }

    .Layout__col-xxl-6 {
        flex: 0 0 50%;
        max-width: 50%
    }

    .Layout__col-xxl-7 {
        flex: 0 0 58.3333333333%;
        max-width: 58.3333333333%
    }

    .Layout__col-xxl-8 {
        flex: 0 0 66.6666666667%;
        max-width: 66.6666666667%
    }

    .Layout__col-xxl-9 {
        flex: 0 0 75%;
        max-width: 75%
    }

    .Layout__col-xxl-10 {
        flex: 0 0 83.3333333333%;
        max-width: 83.3333333333%
    }

    .Layout__col-xxl-11 {
        flex: 0 0 91.6666666667%;
        max-width: 91.6666666667%
    }

    .Layout__col-xxl-12 {
        flex: 0 0 100%;
        max-width: 100%
    }

    .order-xxl-first {
        order: -1
    }

    .order-xxl-last {
        order: 13
    }

    .Layout__order-xxl-0 {
        order: 0
    }

    .Layout__order-xxl-1 {
        order: 1
    }

    .Layout__order-xxl-2 {
        order: 2
    }

    .Layout__order-xxl-3 {
        order: 3
    }

    .Layout__order-xxl-4 {
        order: 4
    }

    .Layout__order-xxl-5 {
        order: 5
    }

    .Layout__order-xxl-6 {
        order: 6
    }

    .Layout__order-xxl-7 {
        order: 7
    }

    .Layout__order-xxl-8 {
        order: 8
    }

    .Layout__order-xxl-9 {
        order: 9
    }

    .Layout__order-xxl-10 {
        order: 10
    }

    .Layout__order-xxl-11 {
        order: 11
    }

    .Layout__order-xxl-12 {
        order: 12
    }

    .Layout__offset-xxl-0 {
        margin-left: 0
    }

    .Layout__offset-xxl-1 {
        margin-left: 8.3333333333%
    }

    .Layout__offset-xxl-2 {
        margin-left: 16.6666666667%
    }

    .Layout__offset-xxl-3 {
        margin-left: 25%
    }

    .Layout__offset-xxl-4 {
        margin-left: 33.3333333333%
    }

    .Layout__offset-xxl-5 {
        margin-left: 41.6666666667%
    }

    .Layout__offset-xxl-6 {
        margin-left: 50%
    }

    .Layout__offset-xxl-7 {
        margin-left: 58.3333333333%
    }

    .Layout__offset-xxl-8 {
        margin-left: 66.6666666667%
    }

    .Layout__offset-xxl-9 {
        margin-left: 75%
    }

    .Layout__offset-xxl-10 {
        margin-left: 83.3333333333%
    }

    .Layout__offset-xxl-11 {
        margin-left: 91.6666666667%
    }
}

@media (min-width: 2000px) {
    .Layout__col-xxxl {
        flex-basis:0;
        flex-grow: 1;
        max-width: 100%
    }

    .Layout__col-xxxl-auto {
        flex: 0 0 auto;
        width: auto;
        max-width: 100%
    }

    .Layout__col-xxxl-1 {
        flex: 0 0 8.3333333333%;
        max-width: 8.3333333333%
    }

    .Layout__col-xxxl-2 {
        flex: 0 0 16.6666666667%;
        max-width: 16.6666666667%
    }

    .Layout__col-xxxl-3 {
        flex: 0 0 25%;
        max-width: 25%
    }

    .Layout__col-xxxl-4 {
        flex: 0 0 33.3333333333%;
        max-width: 33.3333333333%
    }

    .Layout__col-xxxl-5 {
        flex: 0 0 41.6666666667%;
        max-width: 41.6666666667%
    }

    .Layout__col-xxxl-6 {
        flex: 0 0 50%;
        max-width: 50%
    }

    .Layout__col-xxxl-7 {
        flex: 0 0 58.3333333333%;
        max-width: 58.3333333333%
    }

    .Layout__col-xxxl-8 {
        flex: 0 0 66.6666666667%;
        max-width: 66.6666666667%
    }

    .Layout__col-xxxl-9 {
        flex: 0 0 75%;
        max-width: 75%
    }

    .Layout__col-xxxl-10 {
        flex: 0 0 83.3333333333%;
        max-width: 83.3333333333%
    }

    .Layout__col-xxxl-11 {
        flex: 0 0 91.6666666667%;
        max-width: 91.6666666667%
    }

    .Layout__col-xxxl-12 {
        flex: 0 0 100%;
        max-width: 100%
    }

    .order-xxxl-first {
        order: -1
    }

    .order-xxxl-last {
        order: 13
    }

    .order-xxxl-0 {
        order: 0
    }

    .order-xxxl-1 {
        order: 1
    }

    .order-xxxl-2 {
        order: 2
    }

    .order-xxxl-3 {
        order: 3
    }

    .order-xxxl-4 {
        order: 4
    }

    .order-xxxl-5 {
        order: 5
    }

    .order-xxxl-6 {
        order: 6
    }

    .order-xxxl-7 {
        order: 7
    }

    .order-xxxl-8 {
        order: 8
    }

    .order-xxxl-9 {
        order: 9
    }

    .order-xxxl-10 {
        order: 10
    }

    .order-xxxl-11 {
        order: 11
    }

    .order-xxxl-12 {
        order: 12
    }

    .Layout__offset-xxxl-0 {
        margin-left: 0
    }

    .Layout__offset-xxxl-1 {
        margin-left: 8.3333333333%
    }

    .Layout__offset-xxxl-2 {
        margin-left: 16.6666666667%
    }

    .Layout__offset-xxxl-3 {
        margin-left: 25%
    }

    .Layout__offset-xxxl-4 {
        margin-left: 33.3333333333%
    }

    .Layout__offset-xxxl-5 {
        margin-left: 41.6666666667%
    }

    .Layout__offset-xxxl-6 {
        margin-left: 50%
    }

    .Layout__offset-xxxl-7 {
        margin-left: 58.3333333333%
    }

    .Layout__offset-xxxl-8 {
        margin-left: 66.6666666667%
    }

    .Layout__offset-xxxl-9 {
        margin-left: 75%
    }

    .Layout__offset-xxxl-10 {
        margin-left: 83.3333333333%
    }

    .Layout__offset-xxxl-11 {
        margin-left: 91.6666666667%
    }
}

@media (min-width: 2600px) {
    .Layout__col-xxxxl {
        flex-basis:0;
        flex-grow: 1;
        max-width: 100%
    }

    .Layout__col-xxxxl-auto {
        flex: 0 0 auto;
        width: auto;
        max-width: 100%
    }

    .Layout__col-xxxxl-1 {
        flex: 0 0 8.3333333333%;
        max-width: 8.3333333333%
    }

    .Layout__col-xxxxl-2 {
        flex: 0 0 16.6666666667%;
        max-width: 16.6666666667%
    }

    .Layout__col-xxxxl-3 {
        flex: 0 0 25%;
        max-width: 25%
    }

    .Layout__col-xxxxl-4 {
        flex: 0 0 33.3333333333%;
        max-width: 33.3333333333%
    }

    .Layout__col-xxxxl-5 {
        flex: 0 0 41.6666666667%;
        max-width: 41.6666666667%
    }

    .Layout__col-xxxxl-6 {
        flex: 0 0 50%;
        max-width: 50%
    }

    .Layout__col-xxxxl-7 {
        flex: 0 0 58.3333333333%;
        max-width: 58.3333333333%
    }

    .Layout__col-xxxxl-8 {
        flex: 0 0 66.6666666667%;
        max-width: 66.6666666667%
    }

    .Layout__col-xxxxl-9 {
        flex: 0 0 75%;
        max-width: 75%
    }

    .Layout__col-xxxxl-10 {
        flex: 0 0 83.3333333333%;
        max-width: 83.3333333333%
    }

    .Layout__col-xxxxl-11 {
        flex: 0 0 91.6666666667%;
        max-width: 91.6666666667%
    }

    .Layout__col-xxxxl-12 {
        flex: 0 0 100%;
        max-width: 100%
    }

    .order-xxxxl-first {
        order: -1
    }

    .order-xxxxl-last {
        order: 13
    }

    .order-xxxxl-0 {
        order: 0
    }

    .order-xxxxl-1 {
        order: 1
    }

    .order-xxxxl-2 {
        order: 2
    }

    .order-xxxxl-3 {
        order: 3
    }

    .order-xxxxl-4 {
        order: 4
    }

    .order-xxxxl-5 {
        order: 5
    }

    .order-xxxxl-6 {
        order: 6
    }

    .order-xxxxl-7 {
        order: 7
    }

    .order-xxxxl-8 {
        order: 8
    }

    .order-xxxxl-9 {
        order: 9
    }

    .order-xxxxl-10 {
        order: 10
    }

    .order-xxxxl-11 {
        order: 11
    }

    .order-xxxxl-12 {
        order: 12
    }

    .Layout__offset-xxxxl-0 {
        margin-left: 0
    }

    .Layout__offset-xxxxl-1 {
        margin-left: 8.3333333333%
    }

    .Layout__offset-xxxxl-2 {
        margin-left: 16.6666666667%
    }

    .Layout__offset-xxxxl-3 {
        margin-left: 25%
    }

    .Layout__offset-xxxxl-4 {
        margin-left: 33.3333333333%
    }

    .Layout__offset-xxxxl-5 {
        margin-left: 41.6666666667%
    }

    .Layout__offset-xxxxl-6 {
        margin-left: 50%
    }

    .Layout__offset-xxxxl-7 {
        margin-left: 58.3333333333%
    }

    .Layout__offset-xxxxl-8 {
        margin-left: 66.6666666667%
    }

    .Layout__offset-xxxxl-9 {
        margin-left: 75%
    }

    .Layout__offset-xxxxl-10 {
        margin-left: 83.3333333333%
    }

    .Layout__offset-xxxxl-11 {
        margin-left: 91.6666666667%
    }
}

@media (min-width: 3200px) {
    .Layout__col-4k {
        flex-basis:0;
        flex-grow: 1;
        max-width: 100%
    }

    .Layout__col-4k-auto {
        flex: 0 0 auto;
        width: auto;
        max-width: 100%
    }

    .Layout__col-4k-1 {
        flex: 0 0 8.3333333333%;
        max-width: 8.3333333333%
    }

    .Layout__col-4k-2 {
        flex: 0 0 16.6666666667%;
        max-width: 16.6666666667%
    }

    .Layout__col-4k-3 {
        flex: 0 0 25%;
        max-width: 25%
    }

    .Layout__col-4k-4 {
        flex: 0 0 33.3333333333%;
        max-width: 33.3333333333%
    }

    .Layout__col-4k-5 {
        flex: 0 0 41.6666666667%;
        max-width: 41.6666666667%
    }

    .Layout__col-4k-6 {
        flex: 0 0 50%;
        max-width: 50%
    }

    .Layout__col-4k-7 {
        flex: 0 0 58.3333333333%;
        max-width: 58.3333333333%
    }

    .Layout__col-4k-8 {
        flex: 0 0 66.6666666667%;
        max-width: 66.6666666667%
    }

    .Layout__col-4k-9 {
        flex: 0 0 75%;
        max-width: 75%
    }

    .Layout__col-4k-10 {
        flex: 0 0 83.3333333333%;
        max-width: 83.3333333333%
    }

    .Layout__col-4k-11 {
        flex: 0 0 91.6666666667%;
        max-width: 91.6666666667%
    }

    .Layout__col-4k-12 {
        flex: 0 0 100%;
        max-width: 100%
    }

    .Layout__order-4k-first {
        order: -1
    }

    .Layout__order-4k-last {
        order: 13
    }

    .Layout__order-4k-0 {
        order: 0
    }

    .Layout__order-4k-1 {
        order: 1
    }

    .Layout__order-4k-2 {
        order: 2
    }

    .Layout__order-4k-3 {
        order: 3
    }

    .Layout__order-4k-4 {
        order: 4
    }

    .Layout__order-4k-5 {
        order: 5
    }

    .Layout__order-4k-6 {
        order: 6
    }

    .Layout__order-4k-7 {
        order: 7
    }

    .Layout__order-4k-8 {
        order: 8
    }

    .Layout__order-4k-9 {
        order: 9
    }

    .Layout__order-4k-10 {
        order: 10
    }

    .Layout__order-4k-11 {
        order: 11
    }

    .Layout__order-4k-12 {
        order: 12
    }

    .Layout__offset-4k-0 {
        margin-left: 0
    }

    .Layout__offset-4k-1 {
        margin-left: 8.3333333333%
    }

    .Layout__offset-4k-2 {
        margin-left: 16.6666666667%
    }

    .Layout__offset-4k-3 {
        margin-left: 25%
    }

    .Layout__offset-4k-4 {
        margin-left: 33.3333333333%
    }

    .Layout__offset-4k-5 {
        margin-left: 41.6666666667%
    }

    .Layout__offset-4k-6 {
        margin-left: 50%
    }

    .Layout__offset-4k-7 {
        margin-left: 58.3333333333%
    }

    .Layout__offset-4k-8 {
        margin-left: 66.6666666667%
    }

    .Layout__offset-4k-9 {
        margin-left: 75%
    }

    .Layout__offset-4k-10 {
        margin-left: 83.3333333333%
    }

    .Layout__offset-4k-11 {
        margin-left: 91.6666666667%
    }
}

@media (min-width: 4000px) {
    .Layout__col-4kplus {
        flex-basis:0;
        flex-grow: 1;
        max-width: 100%
    }

    .Layout__col-4kplus-auto {
        flex: 0 0 auto;
        width: auto;
        max-width: 100%
    }

    .Layout__col-4kplus-1 {
        flex: 0 0 8.3333333333%;
        max-width: 8.3333333333%
    }

    .Layout__col-4kplus-2 {
        flex: 0 0 16.6666666667%;
        max-width: 16.6666666667%
    }

    .Layout__col-4kplus-3 {
        flex: 0 0 25%;
        max-width: 25%
    }

    .Layout__col-4kplus-4 {
        flex: 0 0 33.3333333333%;
        max-width: 33.3333333333%
    }

    .Layout__col-4kplus-5 {
        flex: 0 0 41.6666666667%;
        max-width: 41.6666666667%
    }

    .Layout__col-4kplus-6 {
        flex: 0 0 50%;
        max-width: 50%
    }

    .Layout__col-4kplus-7 {
        flex: 0 0 58.3333333333%;
        max-width: 58.3333333333%
    }

    .Layout__col-4kplus-8 {
        flex: 0 0 66.6666666667%;
        max-width: 66.6666666667%
    }

    .Layout__col-4kplus-9 {
        flex: 0 0 75%;
        max-width: 75%
    }

    .Layout__col-4kplus-10 {
        flex: 0 0 83.3333333333%;
        max-width: 83.3333333333%
    }

    .Layout__col-4kplus-11 {
        flex: 0 0 91.6666666667%;
        max-width: 91.6666666667%
    }

    .Layout__col-4kplus-12 {
        flex: 0 0 100%;
        max-width: 100%
    }

    .Layout__order-4kplus-first {
        order: -1
    }

    .Layout__order-4kplus-last {
        order: 13
    }

    .Layout__order-4kplus-0 {
        order: 0
    }

    .Layout__order-4kplus-1 {
        order: 1
    }

    .Layout__order-4kplus-2 {
        order: 2
    }

    .Layout__order-4kplus-3 {
        order: 3
    }

    .Layout__order-4kplus-4 {
        order: 4
    }

    .Layout__order-4kplus-5 {
        order: 5
    }

    .Layout__order-4kplus-6 {
        order: 6
    }

    .Layout__order-4kplus-7 {
        order: 7
    }

    .Layout__order-4kplus-8 {
        order: 8
    }

    .Layout__order-4kplus-9 {
        order: 9
    }

    .Layout__order-4kplus-10 {
        order: 10
    }

    .Layout__order-4kplus-11 {
        order: 11
    }

    .Layout__order-4kplus-12 {
        order: 12
    }

    .Layout__offset-4kplus-0 {
        margin-left: 0
    }

    .Layout__offset-4kplus-1 {
        margin-left: 8.3333333333%
    }

    .Layout__offset-4kplus-2 {
        margin-left: 16.6666666667%
    }

    .Layout__offset-4kplus-3 {
        margin-left: 25%
    }

    .Layout__offset-4kplus-4 {
        margin-left: 33.3333333333%
    }

    .Layout__offset-4kplus-5 {
        margin-left: 41.6666666667%
    }

    .Layout__offset-4kplus-6 {
        margin-left: 50%
    }

    .Layout__offset-4kplus-7 {
        margin-left: 58.3333333333%
    }

    .Layout__offset-4kplus-8 {
        margin-left: 66.6666666667%
    }

    .Layout__offset-4kplus-9 {
        margin-left: 75%
    }

    .Layout__offset-4kplus-10 {
        margin-left: 83.3333333333%
    }

    .Layout__offset-4kplus-11 {
        margin-left: 91.6666666667%
    }
}

.Display--none {
    display: none!important
}

.Display--inline {
    display: inline!important
}

.Display--inline-block {
    display: inline-block!important
}

.Display--block {
    display: block!important
}

.Display--table {
    display: table!important
}

.Display--table-row {
    display: table-row!important
}

.Display--table-cell {
    display: table-cell!important
}

.Display--flex {
    display: flex!important
}

.Display--inline-flex {
    display: inline-flex!important
}

@media (min-width: 620px) {
    .Display--sm-none {
        display:none!important
    }

    .Display--sm-inline {
        display: inline!important
    }

    .Display--sm-inline-block {
        display: inline-block!important
    }

    .Display--sm-block {
        display: block!important
    }

    .Display--sm-table {
        display: table!important
    }

    .Display--sm-table-row {
        display: table-row!important
    }

    .Display--sm-table-cell {
        display: table-cell!important
    }

    .Display--sm-flex {
        display: flex!important
    }

    .Display--sm-inline-flex {
        display: inline-flex!important
    }
}

@media (min-width: 900px) {
    .Display--md-none {
        display:none!important
    }

    .Display--md-inline {
        display: inline!important
    }

    .Display--md-inline-block {
        display: inline-block!important
    }

    .Display--md-block {
        display: block!important
    }

    .Display--md-table {
        display: table!important
    }

    .Display--md-table-row {
        display: table-row!important
    }

    .Display--md-table-cell {
        display: table-cell!important
    }

    .Display--md-flex {
        display: flex!important
    }

    .Display--md-inline-flex {
        display: inline-flex!important
    }
}

@media (min-width: 1100px) {
    .Display--lg-none {
        display:none!important
    }

    .Display--lg-inline {
        display: inline!important
    }

    .Display--lg-inline-block {
        display: inline-block!important
    }

    .Display--lg-block {
        display: block!important
    }

    .Display--lg-table {
        display: table!important
    }

    .Display--lg-table-row {
        display: table-row!important
    }

    .Display--lg-table-cell {
        display: table-cell!important
    }

    .Display--lg-flex {
        display: flex!important
    }

    .Display--lg-inline-flex {
        display: inline-flex!important
    }
}

@media (min-width: 1400px) {
    .Display--xl-none {
        display:none!important
    }

    .Display--xl-inline {
        display: inline!important
    }

    .Display--xl-inline-block {
        display: inline-block!important
    }

    .Display--xl-block {
        display: block!important
    }

    .Display--xl-table {
        display: table!important
    }

    .Display--xl-table-row {
        display: table-row!important
    }

    .Display--xl-table-cell {
        display: table-cell!important
    }

    .Display--xl-flex {
        display: flex!important
    }

    .Display--xl-inline-flex {
        display: inline-flex!important
    }
}

@media (min-width: 1750px) {
    .Display--xxl-none {
        display:none!important
    }

    .Display--xxl-inline {
        display: inline!important
    }

    .Display--xxl-inline-block {
        display: inline-block!important
    }

    .Display--xxl-block {
        display: block!important
    }

    .Display--xxl-table {
        display: table!important
    }

    .Display--xxl-table-row {
        display: table-row!important
    }

    .Display--xxl-table-cell {
        display: table-cell!important
    }

    .Display--xxl-flex {
        display: flex!important
    }

    .Display--xxl-inline-flex {
        display: inline-flex!important
    }
}

@media (min-width: 2000px) {
    .Display--xxxl-none {
        display:none!important
    }

    .Display--xxxl-inline {
        display: inline!important
    }

    .Display--xxxl-inline-block {
        display: inline-block!important
    }

    .Display--xxxl-block {
        display: block!important
    }

    .Display--xxxl-table {
        display: table!important
    }

    .Display--xxxl-table-row {
        display: table-row!important
    }

    .Display--xxxl-table-cell {
        display: table-cell!important
    }

    .Display--xxxl-flex {
        display: flex!important
    }

    .Display--xxxl-inline-flex {
        display: inline-flex!important
    }
}

@media (min-width: 2600px) {
    .Display--xxxxl-none {
        display:none!important
    }

    .Display--xxxxl-inline {
        display: inline!important
    }

    .Display--xxxxl-inline-block {
        display: inline-block!important
    }

    .Display--xxxxl-block {
        display: block!important
    }

    .Display--xxxxl-table {
        display: table!important
    }

    .Display--xxxxl-table-row {
        display: table-row!important
    }

    .Display--xxxxl-table-cell {
        display: table-cell!important
    }

    .Display--xxxxl-flex {
        display: flex!important
    }

    .Display--xxxxl-inline-flex {
        display: inline-flex!important
    }
}

@media (min-width: 3200px) {
    .Display--4k-none {
        display:none!important
    }

    .Display--4k-inline {
        display: inline!important
    }

    .Display--4k-inline-block {
        display: inline-block!important
    }

    .Display--4k-block {
        display: block!important
    }

    .Display--4k-table {
        display: table!important
    }

    .Display--4k-table-row {
        display: table-row!important
    }

    .Display--4k-table-cell {
        display: table-cell!important
    }

    .Display--4k-flex {
        display: flex!important
    }

    .Display--4k-inline-flex {
        display: inline-flex!important
    }
}

@media (min-width: 4000px) {
    .Display--4kplus-none {
        display:none!important
    }

    .Display--4kplus-inline {
        display: inline!important
    }

    .Display--4kplus-inline-block {
        display: inline-block!important
    }

    .Display--4kplus-block {
        display: block!important
    }

    .Display--4kplus-table {
        display: table!important
    }

    .Display--4kplus-table-row {
        display: table-row!important
    }

    .Display--4kplus-table-cell {
        display: table-cell!important
    }

    .Display--4kplus-flex {
        display: flex!important
    }

    .Display--4kplus-inline-flex {
        display: inline-flex!important
    }
}

@media print {
    .Display--print-none {
        display: none!important
    }

    .Display--print-inline {
        display: inline!important
    }

    .Display--print-inline-block {
        display: inline-block!important
    }

    .Display--print-block {
        display: block!important
    }

    .Display--print-table {
        display: table!important
    }

    .Display--print-table-row {
        display: table-row!important
    }

    .Display--print-table-cell {
        display: table-cell!important
    }

    .Display--print-flex {
        display: flex!important
    }

    .Display--print-inline-flex {
        display: inline-flex!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-wrap {
    flex-wrap: wrap!important
}

.flex-nowrap {
    flex-wrap: nowrap!important
}

.flex-wrap-reverse {
    flex-wrap: wrap-reverse!important
}

.flex-fill {
    flex: 1 1 auto!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
}

.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
}

.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
}

@media (min-width: 620px) {
    .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-wrap {
        flex-wrap: wrap!important
    }

    .flex-sm-nowrap {
        flex-wrap: nowrap!important
    }

    .flex-sm-wrap-reverse {
        flex-wrap: wrap-reverse!important
    }

    .flex-sm-fill {
        flex: 1 1 auto!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
    }

    .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
    }

    .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
    }
}

@media (min-width: 900px) {
    .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-wrap {
        flex-wrap: wrap!important
    }

    .flex-md-nowrap {
        flex-wrap: nowrap!important
    }

    .flex-md-wrap-reverse {
        flex-wrap: wrap-reverse!important
    }

    .flex-md-fill {
        flex: 1 1 auto!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
    }

    .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
    }

    .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
    }
}

@media (min-width: 1100px) {
    .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-wrap {
        flex-wrap: wrap!important
    }

    .flex-lg-nowrap {
        flex-wrap: nowrap!important
    }

    .flex-lg-wrap-reverse {
        flex-wrap: wrap-reverse!important
    }

    .flex-lg-fill {
        flex: 1 1 auto!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
    }

    .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
    }

    .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
    }
}

@media (min-width: 1400px) {
    .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-wrap {
        flex-wrap: wrap!important
    }

    .flex-xl-nowrap {
        flex-wrap: nowrap!important
    }

    .flex-xl-wrap-reverse {
        flex-wrap: wrap-reverse!important
    }

    .flex-xl-fill {
        flex: 1 1 auto!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
    }

    .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
    }

    .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
    }
}

@media (min-width: 1750px) {
    .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-wrap {
        flex-wrap: wrap!important
    }

    .flex-xxl-nowrap {
        flex-wrap: nowrap!important
    }

    .flex-xxl-wrap-reverse {
        flex-wrap: wrap-reverse!important
    }

    .flex-xxl-fill {
        flex: 1 1 auto!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
    }

    .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
    }

    .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
    }
}

@media (min-width: 2000px) {
    .flex-xxxl-row {
        flex-direction:row!important
    }

    .flex-xxxl-column {
        flex-direction: column!important
    }

    .flex-xxxl-row-reverse {
        flex-direction: row-reverse!important
    }

    .flex-xxxl-column-reverse {
        flex-direction: column-reverse!important
    }

    .flex-xxxl-wrap {
        flex-wrap: wrap!important
    }

    .flex-xxxl-nowrap {
        flex-wrap: nowrap!important
    }

    .flex-xxxl-wrap-reverse {
        flex-wrap: wrap-reverse!important
    }

    .flex-xxxl-fill {
        flex: 1 1 auto!important
    }

    .flex-xxxl-grow-0 {
        flex-grow: 0!important
    }

    .flex-xxxl-grow-1 {
        flex-grow: 1!important
    }

    .flex-xxxl-shrink-0 {
        flex-shrink: 0!important
    }

    .flex-xxxl-shrink-1 {
        flex-shrink: 1!important
    }

    .justify-content-xxxl-start {
        justify-content: flex-start!important
    }

    .justify-content-xxxl-end {
        justify-content: flex-end!important
    }

    .justify-content-xxxl-center {
        justify-content: center!important
    }

    .justify-content-xxxl-between {
        justify-content: space-between!important
    }

    .justify-content-xxxl-around {
        justify-content: space-around!important
    }

    .align-items-xxxl-start {
        align-items: flex-start!important
    }

    .align-items-xxxl-end {
        align-items: flex-end!important
    }

    .align-items-xxxl-center {
        align-items: center!important
    }

    .align-items-xxxl-baseline {
        align-items: baseline!important
    }

    .align-items-xxxl-stretch {
        align-items: stretch!important
    }

    .align-content-xxxl-start {
        align-content: flex-start!important
    }

    .align-content-xxxl-end {
        align-content: flex-end!important
    }

    .align-content-xxxl-center {
        align-content: center!important
    }

    .align-content-xxxl-between {
        align-content: space-between!important
    }

    .align-content-xxxl-around {
        align-content: space-around!important
    }

    .align-content-xxxl-stretch {
        align-content: stretch!important
    }

    .align-self-xxxl-auto {
        align-self: auto!important
    }

    .align-self-xxxl-start {
        align-self: flex-start!important
    }

    .align-self-xxxl-end {
        align-self: flex-end!important
    }

    .align-self-xxxl-center {
        align-self: center!important
    }

    .align-self-xxxl-baseline {
        align-self: baseline!important
    }

    .align-self-xxxl-stretch {
        align-self: stretch!important
    }
}

@media (min-width: 2600px) {
    .flex-xxxxl-row {
        flex-direction:row!important
    }

    .flex-xxxxl-column {
        flex-direction: column!important
    }

    .flex-xxxxl-row-reverse {
        flex-direction: row-reverse!important
    }

    .flex-xxxxl-column-reverse {
        flex-direction: column-reverse!important
    }

    .flex-xxxxl-wrap {
        flex-wrap: wrap!important
    }

    .flex-xxxxl-nowrap {
        flex-wrap: nowrap!important
    }

    .flex-xxxxl-wrap-reverse {
        flex-wrap: wrap-reverse!important
    }

    .flex-xxxxl-fill {
        flex: 1 1 auto!important
    }

    .flex-xxxxl-grow-0 {
        flex-grow: 0!important
    }

    .flex-xxxxl-grow-1 {
        flex-grow: 1!important
    }

    .flex-xxxxl-shrink-0 {
        flex-shrink: 0!important
    }

    .flex-xxxxl-shrink-1 {
        flex-shrink: 1!important
    }

    .justify-content-xxxxl-start {
        justify-content: flex-start!important
    }

    .justify-content-xxxxl-end {
        justify-content: flex-end!important
    }

    .justify-content-xxxxl-center {
        justify-content: center!important
    }

    .justify-content-xxxxl-between {
        justify-content: space-between!important
    }

    .justify-content-xxxxl-around {
        justify-content: space-around!important
    }

    .align-items-xxxxl-start {
        align-items: flex-start!important
    }

    .align-items-xxxxl-end {
        align-items: flex-end!important
    }

    .align-items-xxxxl-center {
        align-items: center!important
    }

    .align-items-xxxxl-baseline {
        align-items: baseline!important
    }

    .align-items-xxxxl-stretch {
        align-items: stretch!important
    }

    .align-content-xxxxl-start {
        align-content: flex-start!important
    }

    .align-content-xxxxl-end {
        align-content: flex-end!important
    }

    .align-content-xxxxl-center {
        align-content: center!important
    }

    .align-content-xxxxl-between {
        align-content: space-between!important
    }

    .align-content-xxxxl-around {
        align-content: space-around!important
    }

    .align-content-xxxxl-stretch {
        align-content: stretch!important
    }

    .align-self-xxxxl-auto {
        align-self: auto!important
    }

    .align-self-xxxxl-start {
        align-self: flex-start!important
    }

    .align-self-xxxxl-end {
        align-self: flex-end!important
    }

    .align-self-xxxxl-center {
        align-self: center!important
    }

    .align-self-xxxxl-baseline {
        align-self: baseline!important
    }

    .align-self-xxxxl-stretch {
        align-self: stretch!important
    }
}

@media (min-width: 3200px) {
    .flex-4k-row {
        flex-direction:row!important
    }

    .flex-4k-column {
        flex-direction: column!important
    }

    .flex-4k-row-reverse {
        flex-direction: row-reverse!important
    }

    .flex-4k-column-reverse {
        flex-direction: column-reverse!important
    }

    .flex-4k-wrap {
        flex-wrap: wrap!important
    }

    .flex-4k-nowrap {
        flex-wrap: nowrap!important
    }

    .flex-4k-wrap-reverse {
        flex-wrap: wrap-reverse!important
    }

    .flex-4k-fill {
        flex: 1 1 auto!important
    }

    .flex-4k-grow-0 {
        flex-grow: 0!important
    }

    .flex-4k-grow-1 {
        flex-grow: 1!important
    }

    .flex-4k-shrink-0 {
        flex-shrink: 0!important
    }

    .flex-4k-shrink-1 {
        flex-shrink: 1!important
    }

    .justify-content-4k-start {
        justify-content: flex-start!important
    }

    .justify-content-4k-end {
        justify-content: flex-end!important
    }

    .justify-content-4k-center {
        justify-content: center!important
    }

    .justify-content-4k-between {
        justify-content: space-between!important
    }

    .justify-content-4k-around {
        justify-content: space-around!important
    }

    .align-items-4k-start {
        align-items: flex-start!important
    }

    .align-items-4k-end {
        align-items: flex-end!important
    }

    .align-items-4k-center {
        align-items: center!important
    }

    .align-items-4k-baseline {
        align-items: baseline!important
    }

    .align-items-4k-stretch {
        align-items: stretch!important
    }

    .align-content-4k-start {
        align-content: flex-start!important
    }

    .align-content-4k-end {
        align-content: flex-end!important
    }

    .align-content-4k-center {
        align-content: center!important
    }

    .align-content-4k-between {
        align-content: space-between!important
    }

    .align-content-4k-around {
        align-content: space-around!important
    }

    .align-content-4k-stretch {
        align-content: stretch!important
    }

    .align-self-4k-auto {
        align-self: auto!important
    }

    .align-self-4k-start {
        align-self: flex-start!important
    }

    .align-self-4k-end {
        align-self: flex-end!important
    }

    .align-self-4k-center {
        align-self: center!important
    }

    .align-self-4k-baseline {
        align-self: baseline!important
    }

    .align-self-4k-stretch {
        align-self: stretch!important
    }
}

@media (min-width: 4000px) {
    .flex-4kplus-row {
        flex-direction:row!important
    }

    .flex-4kplus-column {
        flex-direction: column!important
    }

    .flex-4kplus-row-reverse {
        flex-direction: row-reverse!important
    }

    .flex-4kplus-column-reverse {
        flex-direction: column-reverse!important
    }

    .flex-4kplus-wrap {
        flex-wrap: wrap!important
    }

    .flex-4kplus-nowrap {
        flex-wrap: nowrap!important
    }

    .flex-4kplus-wrap-reverse {
        flex-wrap: wrap-reverse!important
    }

    .flex-4kplus-fill {
        flex: 1 1 auto!important
    }

    .flex-4kplus-grow-0 {
        flex-grow: 0!important
    }

    .flex-4kplus-grow-1 {
        flex-grow: 1!important
    }

    .flex-4kplus-shrink-0 {
        flex-shrink: 0!important
    }

    .flex-4kplus-shrink-1 {
        flex-shrink: 1!important
    }

    .justify-content-4kplus-start {
        justify-content: flex-start!important
    }

    .justify-content-4kplus-end {
        justify-content: flex-end!important
    }

    .justify-content-4kplus-center {
        justify-content: center!important
    }

    .justify-content-4kplus-between {
        justify-content: space-between!important
    }

    .justify-content-4kplus-around {
        justify-content: space-around!important
    }

    .align-items-4kplus-start {
        align-items: flex-start!important
    }

    .align-items-4kplus-end {
        align-items: flex-end!important
    }

    .align-items-4kplus-center {
        align-items: center!important
    }

    .align-items-4kplus-baseline {
        align-items: baseline!important
    }

    .align-items-4kplus-stretch {
        align-items: stretch!important
    }

    .align-content-4kplus-start {
        align-content: flex-start!important
    }

    .align-content-4kplus-end {
        align-content: flex-end!important
    }

    .align-content-4kplus-center {
        align-content: center!important
    }

    .align-content-4kplus-between {
        align-content: space-between!important
    }

    .align-content-4kplus-around {
        align-content: space-around!important
    }

    .align-content-4kplus-stretch {
        align-content: stretch!important
    }

    .align-self-4kplus-auto {
        align-self: auto!important
    }

    .align-self-4kplus-start {
        align-self: flex-start!important
    }

    .align-self-4kplus-end {
        align-self: flex-end!important
    }

    .align-self-4kplus-center {
        align-self: center!important
    }

    .align-self-4kplus-baseline {
        align-self: baseline!important
    }

    .align-self-4kplus-stretch {
        align-self: stretch!important
    }
}

.m-0 {
    margin: 0!important
}

.mt-0,.my-0 {
    margin-top: 0!important
}

.mr-0,.mx-0 {
    margin-right: 0!important
}

.mb-0,.my-0 {
    margin-bottom: 0!important
}

.ml-0,.mx-0 {
    margin-left: 0!important
}

.m-1 {
    margin: .25rem!important
}

.mt-1,.my-1 {
    margin-top: .25rem!important
}

.mr-1,.mx-1 {
    margin-right: .25rem!important
}

.mb-1,.my-1 {
    margin-bottom: .25rem!important
}

.ml-1,.mx-1 {
    margin-left: .25rem!important
}

.m-2 {
    margin: .5rem!important
}

.mt-2,.my-2 {
    margin-top: .5rem!important
}

.mr-2,.mx-2 {
    margin-right: .5rem!important
}

.mb-2,.my-2 {
    margin-bottom: .5rem!important
}

.ml-2,.mx-2 {
    margin-left: .5rem!important
}

.m-3 {
    margin: 1rem!important
}

.mt-3,.my-3 {
    margin-top: 1rem!important
}

.mr-3,.mx-3 {
    margin-right: 1rem!important
}

.mb-3,.my-3 {
    margin-bottom: 1rem!important
}

.ml-3,.mx-3 {
    margin-left: 1rem!important
}

.m-4 {
    margin: 1.5rem!important
}

.mt-4,.my-4 {
    margin-top: 1.5rem!important
}

.mr-4,.mx-4 {
    margin-right: 1.5rem!important
}

.mb-4,.my-4 {
    margin-bottom: 1.5rem!important
}

.ml-4,.mx-4 {
    margin-left: 1.5rem!important
}

.m-5 {
    margin: 3rem!important
}

.mt-5,.my-5 {
    margin-top: 3rem!important
}

.mr-5,.mx-5 {
    margin-right: 3rem!important
}

.mb-5,.my-5 {
    margin-bottom: 3rem!important
}

.ml-5,.mx-5 {
    margin-left: 3rem!important
}

.p-0 {
    padding: 0!important
}

.pt-0,.py-0 {
    padding-top: 0!important
}

.pr-0,.px-0 {
    padding-right: 0!important
}

.pb-0,.py-0 {
    padding-bottom: 0!important
}

.pl-0,.px-0 {
    padding-left: 0!important
}

.p-1 {
    padding: .25rem!important
}

.pt-1,.py-1 {
    padding-top: .25rem!important
}

.pr-1,.px-1 {
    padding-right: .25rem!important
}

.pb-1,.py-1 {
    padding-bottom: .25rem!important
}

.pl-1,.px-1 {
    padding-left: .25rem!important
}

.p-2 {
    padding: .5rem!important
}

.pt-2,.py-2 {
    padding-top: .5rem!important
}

.pr-2,.px-2 {
    padding-right: .5rem!important
}

.pb-2,.py-2 {
    padding-bottom: .5rem!important
}

.pl-2,.px-2 {
    padding-left: .5rem!important
}

.p-3 {
    padding: 1rem!important
}

.pt-3,.py-3 {
    padding-top: 1rem!important
}

.pr-3,.px-3 {
    padding-right: 1rem!important
}

.pb-3,.py-3 {
    padding-bottom: 1rem!important
}

.pl-3,.px-3 {
    padding-left: 1rem!important
}

.p-4 {
    padding: 1.5rem!important
}

.pt-4,.py-4 {
    padding-top: 1.5rem!important
}

.pr-4,.px-4 {
    padding-right: 1.5rem!important
}

.pb-4,.py-4 {
    padding-bottom: 1.5rem!important
}

.pl-4,.px-4 {
    padding-left: 1.5rem!important
}

.p-5 {
    padding: 3rem!important
}

.pt-5,.py-5 {
    padding-top: 3rem!important
}

.pr-5,.px-5 {
    padding-right: 3rem!important
}

.pb-5,.py-5 {
    padding-bottom: 3rem!important
}

.pl-5,.px-5 {
    padding-left: 3rem!important
}

.m-n1 {
    margin: -.25rem!important
}

.mt-n1,.my-n1 {
    margin-top: -.25rem!important
}

.mr-n1,.mx-n1 {
    margin-right: -.25rem!important
}

.mb-n1,.my-n1 {
    margin-bottom: -.25rem!important
}

.ml-n1,.mx-n1 {
    margin-left: -.25rem!important
}

.m-n2 {
    margin: -.5rem!important
}

.mt-n2,.my-n2 {
    margin-top: -.5rem!important
}

.mr-n2,.mx-n2 {
    margin-right: -.5rem!important
}

.mb-n2,.my-n2 {
    margin-bottom: -.5rem!important
}

.ml-n2,.mx-n2 {
    margin-left: -.5rem!important
}

.m-n3 {
    margin: -1rem!important
}

.mt-n3,.my-n3 {
    margin-top: -1rem!important
}

.mr-n3,.mx-n3 {
    margin-right: -1rem!important
}

.mb-n3,.my-n3 {
    margin-bottom: -1rem!important
}

.ml-n3,.mx-n3 {
    margin-left: -1rem!important
}

.m-n4 {
    margin: -1.5rem!important
}

.mt-n4,.my-n4 {
    margin-top: -1.5rem!important
}

.mr-n4,.mx-n4 {
    margin-right: -1.5rem!important
}

.mb-n4,.my-n4 {
    margin-bottom: -1.5rem!important
}

.ml-n4,.mx-n4 {
    margin-left: -1.5rem!important
}

.m-n5 {
    margin: -3rem!important
}

.mt-n5,.my-n5 {
    margin-top: -3rem!important
}

.mr-n5,.mx-n5 {
    margin-right: -3rem!important
}

.mb-n5,.my-n5 {
    margin-bottom: -3rem!important
}

.ml-n5,.mx-n5 {
    margin-left: -3rem!important
}

.m-auto {
    margin: auto!important
}

.mt-auto,.my-auto {
    margin-top: auto!important
}

.mr-auto,.mx-auto {
    margin-right: auto!important
}

.mb-auto,.my-auto {
    margin-bottom: auto!important
}

.ml-auto,.mx-auto {
    margin-left: auto!important
}

@media (min-width: 620px) {
    .m-sm-0 {
        margin:0!important
    }

    .mt-sm-0,.my-sm-0 {
        margin-top: 0!important
    }

    .mr-sm-0,.mx-sm-0 {
        margin-right: 0!important
    }

    .mb-sm-0,.my-sm-0 {
        margin-bottom: 0!important
    }

    .ml-sm-0,.mx-sm-0 {
        margin-left: 0!important
    }

    .m-sm-1 {
        margin: .25rem!important
    }

    .mt-sm-1,.my-sm-1 {
        margin-top: .25rem!important
    }

    .mr-sm-1,.mx-sm-1 {
        margin-right: .25rem!important
    }

    .mb-sm-1,.my-sm-1 {
        margin-bottom: .25rem!important
    }

    .ml-sm-1,.mx-sm-1 {
        margin-left: .25rem!important
    }

    .m-sm-2 {
        margin: .5rem!important
    }

    .mt-sm-2,.my-sm-2 {
        margin-top: .5rem!important
    }

    .mr-sm-2,.mx-sm-2 {
        margin-right: .5rem!important
    }

    .mb-sm-2,.my-sm-2 {
        margin-bottom: .5rem!important
    }

    .ml-sm-2,.mx-sm-2 {
        margin-left: .5rem!important
    }

    .m-sm-3 {
        margin: 1rem!important
    }

    .mt-sm-3,.my-sm-3 {
        margin-top: 1rem!important
    }

    .mr-sm-3,.mx-sm-3 {
        margin-right: 1rem!important
    }

    .mb-sm-3,.my-sm-3 {
        margin-bottom: 1rem!important
    }

    .ml-sm-3,.mx-sm-3 {
        margin-left: 1rem!important
    }

    .m-sm-4 {
        margin: 1.5rem!important
    }

    .mt-sm-4,.my-sm-4 {
        margin-top: 1.5rem!important
    }

    .mr-sm-4,.mx-sm-4 {
        margin-right: 1.5rem!important
    }

    .mb-sm-4,.my-sm-4 {
        margin-bottom: 1.5rem!important
    }

    .ml-sm-4,.mx-sm-4 {
        margin-left: 1.5rem!important
    }

    .m-sm-5 {
        margin: 3rem!important
    }

    .mt-sm-5,.my-sm-5 {
        margin-top: 3rem!important
    }

    .mr-sm-5,.mx-sm-5 {
        margin-right: 3rem!important
    }

    .mb-sm-5,.my-sm-5 {
        margin-bottom: 3rem!important
    }

    .ml-sm-5,.mx-sm-5 {
        margin-left: 3rem!important
    }

    .p-sm-0 {
        padding: 0!important
    }

    .pt-sm-0,.py-sm-0 {
        padding-top: 0!important
    }

    .pr-sm-0,.px-sm-0 {
        padding-right: 0!important
    }

    .pb-sm-0,.py-sm-0 {
        padding-bottom: 0!important
    }

    .pl-sm-0,.px-sm-0 {
        padding-left: 0!important
    }

    .p-sm-1 {
        padding: .25rem!important
    }

    .pt-sm-1,.py-sm-1 {
        padding-top: .25rem!important
    }

    .pr-sm-1,.px-sm-1 {
        padding-right: .25rem!important
    }

    .pb-sm-1,.py-sm-1 {
        padding-bottom: .25rem!important
    }

    .pl-sm-1,.px-sm-1 {
        padding-left: .25rem!important
    }

    .p-sm-2 {
        padding: .5rem!important
    }

    .pt-sm-2,.py-sm-2 {
        padding-top: .5rem!important
    }

    .pr-sm-2,.px-sm-2 {
        padding-right: .5rem!important
    }

    .pb-sm-2,.py-sm-2 {
        padding-bottom: .5rem!important
    }

    .pl-sm-2,.px-sm-2 {
        padding-left: .5rem!important
    }

    .p-sm-3 {
        padding: 1rem!important
    }

    .pt-sm-3,.py-sm-3 {
        padding-top: 1rem!important
    }

    .pr-sm-3,.px-sm-3 {
        padding-right: 1rem!important
    }

    .pb-sm-3,.py-sm-3 {
        padding-bottom: 1rem!important
    }

    .pl-sm-3,.px-sm-3 {
        padding-left: 1rem!important
    }

    .p-sm-4 {
        padding: 1.5rem!important
    }

    .pt-sm-4,.py-sm-4 {
        padding-top: 1.5rem!important
    }

    .pr-sm-4,.px-sm-4 {
        padding-right: 1.5rem!important
    }

    .pb-sm-4,.py-sm-4 {
        padding-bottom: 1.5rem!important
    }

    .pl-sm-4,.px-sm-4 {
        padding-left: 1.5rem!important
    }

    .p-sm-5 {
        padding: 3rem!important
    }

    .pt-sm-5,.py-sm-5 {
        padding-top: 3rem!important
    }

    .pr-sm-5,.px-sm-5 {
        padding-right: 3rem!important
    }

    .pb-sm-5,.py-sm-5 {
        padding-bottom: 3rem!important
    }

    .pl-sm-5,.px-sm-5 {
        padding-left: 3rem!important
    }

    .m-sm-n1 {
        margin: -.25rem!important
    }

    .mt-sm-n1,.my-sm-n1 {
        margin-top: -.25rem!important
    }

    .mr-sm-n1,.mx-sm-n1 {
        margin-right: -.25rem!important
    }

    .mb-sm-n1,.my-sm-n1 {
        margin-bottom: -.25rem!important
    }

    .ml-sm-n1,.mx-sm-n1 {
        margin-left: -.25rem!important
    }

    .m-sm-n2 {
        margin: -.5rem!important
    }

    .mt-sm-n2,.my-sm-n2 {
        margin-top: -.5rem!important
    }

    .mr-sm-n2,.mx-sm-n2 {
        margin-right: -.5rem!important
    }

    .mb-sm-n2,.my-sm-n2 {
        margin-bottom: -.5rem!important
    }

    .ml-sm-n2,.mx-sm-n2 {
        margin-left: -.5rem!important
    }

    .m-sm-n3 {
        margin: -1rem!important
    }

    .mt-sm-n3,.my-sm-n3 {
        margin-top: -1rem!important
    }

    .mr-sm-n3,.mx-sm-n3 {
        margin-right: -1rem!important
    }

    .mb-sm-n3,.my-sm-n3 {
        margin-bottom: -1rem!important
    }

    .ml-sm-n3,.mx-sm-n3 {
        margin-left: -1rem!important
    }

    .m-sm-n4 {
        margin: -1.5rem!important
    }

    .mt-sm-n4,.my-sm-n4 {
        margin-top: -1.5rem!important
    }

    .mr-sm-n4,.mx-sm-n4 {
        margin-right: -1.5rem!important
    }

    .mb-sm-n4,.my-sm-n4 {
        margin-bottom: -1.5rem!important
    }

    .ml-sm-n4,.mx-sm-n4 {
        margin-left: -1.5rem!important
    }

    .m-sm-n5 {
        margin: -3rem!important
    }

    .mt-sm-n5,.my-sm-n5 {
        margin-top: -3rem!important
    }

    .mr-sm-n5,.mx-sm-n5 {
        margin-right: -3rem!important
    }

    .mb-sm-n5,.my-sm-n5 {
        margin-bottom: -3rem!important
    }

    .ml-sm-n5,.mx-sm-n5 {
        margin-left: -3rem!important
    }

    .m-sm-auto {
        margin: auto!important
    }

    .mt-sm-auto,.my-sm-auto {
        margin-top: auto!important
    }

    .mr-sm-auto,.mx-sm-auto {
        margin-right: auto!important
    }

    .mb-sm-auto,.my-sm-auto {
        margin-bottom: auto!important
    }

    .ml-sm-auto,.mx-sm-auto {
        margin-left: auto!important
    }
}

@media (min-width: 900px) {
    .m-md-0 {
        margin:0!important
    }

    .mt-md-0,.my-md-0 {
        margin-top: 0!important
    }

    .mr-md-0,.mx-md-0 {
        margin-right: 0!important
    }

    .mb-md-0,.my-md-0 {
        margin-bottom: 0!important
    }

    .ml-md-0,.mx-md-0 {
        margin-left: 0!important
    }

    .m-md-1 {
        margin: .25rem!important
    }

    .mt-md-1,.my-md-1 {
        margin-top: .25rem!important
    }

    .mr-md-1,.mx-md-1 {
        margin-right: .25rem!important
    }

    .mb-md-1,.my-md-1 {
        margin-bottom: .25rem!important
    }

    .ml-md-1,.mx-md-1 {
        margin-left: .25rem!important
    }

    .m-md-2 {
        margin: .5rem!important
    }

    .mt-md-2,.my-md-2 {
        margin-top: .5rem!important
    }

    .mr-md-2,.mx-md-2 {
        margin-right: .5rem!important
    }

    .mb-md-2,.my-md-2 {
        margin-bottom: .5rem!important
    }

    .ml-md-2,.mx-md-2 {
        margin-left: .5rem!important
    }

    .m-md-3 {
        margin: 1rem!important
    }

    .mt-md-3,.my-md-3 {
        margin-top: 1rem!important
    }

    .mr-md-3,.mx-md-3 {
        margin-right: 1rem!important
    }

    .mb-md-3,.my-md-3 {
        margin-bottom: 1rem!important
    }

    .ml-md-3,.mx-md-3 {
        margin-left: 1rem!important
    }

    .m-md-4 {
        margin: 1.5rem!important
    }

    .mt-md-4,.my-md-4 {
        margin-top: 1.5rem!important
    }

    .mr-md-4,.mx-md-4 {
        margin-right: 1.5rem!important
    }

    .mb-md-4,.my-md-4 {
        margin-bottom: 1.5rem!important
    }

    .ml-md-4,.mx-md-4 {
        margin-left: 1.5rem!important
    }

    .m-md-5 {
        margin: 3rem!important
    }

    .mt-md-5,.my-md-5 {
        margin-top: 3rem!important
    }

    .mr-md-5,.mx-md-5 {
        margin-right: 3rem!important
    }

    .mb-md-5,.my-md-5 {
        margin-bottom: 3rem!important
    }

    .ml-md-5,.mx-md-5 {
        margin-left: 3rem!important
    }

    .p-md-0 {
        padding: 0!important
    }

    .pt-md-0,.py-md-0 {
        padding-top: 0!important
    }

    .pr-md-0,.px-md-0 {
        padding-right: 0!important
    }

    .pb-md-0,.py-md-0 {
        padding-bottom: 0!important
    }

    .pl-md-0,.px-md-0 {
        padding-left: 0!important
    }

    .p-md-1 {
        padding: .25rem!important
    }

    .pt-md-1,.py-md-1 {
        padding-top: .25rem!important
    }

    .pr-md-1,.px-md-1 {
        padding-right: .25rem!important
    }

    .pb-md-1,.py-md-1 {
        padding-bottom: .25rem!important
    }

    .pl-md-1,.px-md-1 {
        padding-left: .25rem!important
    }

    .p-md-2 {
        padding: .5rem!important
    }

    .pt-md-2,.py-md-2 {
        padding-top: .5rem!important
    }

    .pr-md-2,.px-md-2 {
        padding-right: .5rem!important
    }

    .pb-md-2,.py-md-2 {
        padding-bottom: .5rem!important
    }

    .pl-md-2,.px-md-2 {
        padding-left: .5rem!important
    }

    .p-md-3 {
        padding: 1rem!important
    }

    .pt-md-3,.py-md-3 {
        padding-top: 1rem!important
    }

    .pr-md-3,.px-md-3 {
        padding-right: 1rem!important
    }

    .pb-md-3,.py-md-3 {
        padding-bottom: 1rem!important
    }

    .pl-md-3,.px-md-3 {
        padding-left: 1rem!important
    }

    .p-md-4 {
        padding: 1.5rem!important
    }

    .pt-md-4,.py-md-4 {
        padding-top: 1.5rem!important
    }

    .pr-md-4,.px-md-4 {
        padding-right: 1.5rem!important
    }

    .pb-md-4,.py-md-4 {
        padding-bottom: 1.5rem!important
    }

    .pl-md-4,.px-md-4 {
        padding-left: 1.5rem!important
    }

    .p-md-5 {
        padding: 3rem!important
    }

    .pt-md-5,.py-md-5 {
        padding-top: 3rem!important
    }

    .pr-md-5,.px-md-5 {
        padding-right: 3rem!important
    }

    .pb-md-5,.py-md-5 {
        padding-bottom: 3rem!important
    }

    .pl-md-5,.px-md-5 {
        padding-left: 3rem!important
    }

    .m-md-n1 {
        margin: -.25rem!important
    }

    .mt-md-n1,.my-md-n1 {
        margin-top: -.25rem!important
    }

    .mr-md-n1,.mx-md-n1 {
        margin-right: -.25rem!important
    }

    .mb-md-n1,.my-md-n1 {
        margin-bottom: -.25rem!important
    }

    .ml-md-n1,.mx-md-n1 {
        margin-left: -.25rem!important
    }

    .m-md-n2 {
        margin: -.5rem!important
    }

    .mt-md-n2,.my-md-n2 {
        margin-top: -.5rem!important
    }

    .mr-md-n2,.mx-md-n2 {
        margin-right: -.5rem!important
    }

    .mb-md-n2,.my-md-n2 {
        margin-bottom: -.5rem!important
    }

    .ml-md-n2,.mx-md-n2 {
        margin-left: -.5rem!important
    }

    .m-md-n3 {
        margin: -1rem!important
    }

    .mt-md-n3,.my-md-n3 {
        margin-top: -1rem!important
    }

    .mr-md-n3,.mx-md-n3 {
        margin-right: -1rem!important
    }

    .mb-md-n3,.my-md-n3 {
        margin-bottom: -1rem!important
    }

    .ml-md-n3,.mx-md-n3 {
        margin-left: -1rem!important
    }

    .m-md-n4 {
        margin: -1.5rem!important
    }

    .mt-md-n4,.my-md-n4 {
        margin-top: -1.5rem!important
    }

    .mr-md-n4,.mx-md-n4 {
        margin-right: -1.5rem!important
    }

    .mb-md-n4,.my-md-n4 {
        margin-bottom: -1.5rem!important
    }

    .ml-md-n4,.mx-md-n4 {
        margin-left: -1.5rem!important
    }

    .m-md-n5 {
        margin: -3rem!important
    }

    .mt-md-n5,.my-md-n5 {
        margin-top: -3rem!important
    }

    .mr-md-n5,.mx-md-n5 {
        margin-right: -3rem!important
    }

    .mb-md-n5,.my-md-n5 {
        margin-bottom: -3rem!important
    }

    .ml-md-n5,.mx-md-n5 {
        margin-left: -3rem!important
    }

    .m-md-auto {
        margin: auto!important
    }

    .mt-md-auto,.my-md-auto {
        margin-top: auto!important
    }

    .mr-md-auto,.mx-md-auto {
        margin-right: auto!important
    }

    .mb-md-auto,.my-md-auto {
        margin-bottom: auto!important
    }

    .ml-md-auto,.mx-md-auto {
        margin-left: auto!important
    }
}

@media (min-width: 1100px) {
    .m-lg-0 {
        margin:0!important
    }

    .mt-lg-0,.my-lg-0 {
        margin-top: 0!important
    }

    .mr-lg-0,.mx-lg-0 {
        margin-right: 0!important
    }

    .mb-lg-0,.my-lg-0 {
        margin-bottom: 0!important
    }

    .ml-lg-0,.mx-lg-0 {
        margin-left: 0!important
    }

    .m-lg-1 {
        margin: .25rem!important
    }

    .mt-lg-1,.my-lg-1 {
        margin-top: .25rem!important
    }

    .mr-lg-1,.mx-lg-1 {
        margin-right: .25rem!important
    }

    .mb-lg-1,.my-lg-1 {
        margin-bottom: .25rem!important
    }

    .ml-lg-1,.mx-lg-1 {
        margin-left: .25rem!important
    }

    .m-lg-2 {
        margin: .5rem!important
    }

    .mt-lg-2,.my-lg-2 {
        margin-top: .5rem!important
    }

    .mr-lg-2,.mx-lg-2 {
        margin-right: .5rem!important
    }

    .mb-lg-2,.my-lg-2 {
        margin-bottom: .5rem!important
    }

    .ml-lg-2,.mx-lg-2 {
        margin-left: .5rem!important
    }

    .m-lg-3 {
        margin: 1rem!important
    }

    .mt-lg-3,.my-lg-3 {
        margin-top: 1rem!important
    }

    .mr-lg-3,.mx-lg-3 {
        margin-right: 1rem!important
    }

    .mb-lg-3,.my-lg-3 {
        margin-bottom: 1rem!important
    }

    .ml-lg-3,.mx-lg-3 {
        margin-left: 1rem!important
    }

    .m-lg-4 {
        margin: 1.5rem!important
    }

    .mt-lg-4,.my-lg-4 {
        margin-top: 1.5rem!important
    }

    .mr-lg-4,.mx-lg-4 {
        margin-right: 1.5rem!important
    }

    .mb-lg-4,.my-lg-4 {
        margin-bottom: 1.5rem!important
    }

    .ml-lg-4,.mx-lg-4 {
        margin-left: 1.5rem!important
    }

    .m-lg-5 {
        margin: 3rem!important
    }

    .mt-lg-5,.my-lg-5 {
        margin-top: 3rem!important
    }

    .mr-lg-5,.mx-lg-5 {
        margin-right: 3rem!important
    }

    .mb-lg-5,.my-lg-5 {
        margin-bottom: 3rem!important
    }

    .ml-lg-5,.mx-lg-5 {
        margin-left: 3rem!important
    }

    .p-lg-0 {
        padding: 0!important
    }

    .pt-lg-0,.py-lg-0 {
        padding-top: 0!important
    }

    .pr-lg-0,.px-lg-0 {
        padding-right: 0!important
    }

    .pb-lg-0,.py-lg-0 {
        padding-bottom: 0!important
    }

    .pl-lg-0,.px-lg-0 {
        padding-left: 0!important
    }

    .p-lg-1 {
        padding: .25rem!important
    }

    .pt-lg-1,.py-lg-1 {
        padding-top: .25rem!important
    }

    .pr-lg-1,.px-lg-1 {
        padding-right: .25rem!important
    }

    .pb-lg-1,.py-lg-1 {
        padding-bottom: .25rem!important
    }

    .pl-lg-1,.px-lg-1 {
        padding-left: .25rem!important
    }

    .p-lg-2 {
        padding: .5rem!important
    }

    .pt-lg-2,.py-lg-2 {
        padding-top: .5rem!important
    }

    .pr-lg-2,.px-lg-2 {
        padding-right: .5rem!important
    }

    .pb-lg-2,.py-lg-2 {
        padding-bottom: .5rem!important
    }

    .pl-lg-2,.px-lg-2 {
        padding-left: .5rem!important
    }

    .p-lg-3 {
        padding: 1rem!important
    }

    .pt-lg-3,.py-lg-3 {
        padding-top: 1rem!important
    }

    .pr-lg-3,.px-lg-3 {
        padding-right: 1rem!important
    }

    .pb-lg-3,.py-lg-3 {
        padding-bottom: 1rem!important
    }

    .pl-lg-3,.px-lg-3 {
        padding-left: 1rem!important
    }

    .p-lg-4 {
        padding: 1.5rem!important
    }

    .pt-lg-4,.py-lg-4 {
        padding-top: 1.5rem!important
    }

    .pr-lg-4,.px-lg-4 {
        padding-right: 1.5rem!important
    }

    .pb-lg-4,.py-lg-4 {
        padding-bottom: 1.5rem!important
    }

    .pl-lg-4,.px-lg-4 {
        padding-left: 1.5rem!important
    }

    .p-lg-5 {
        padding: 3rem!important
    }

    .pt-lg-5,.py-lg-5 {
        padding-top: 3rem!important
    }

    .pr-lg-5,.px-lg-5 {
        padding-right: 3rem!important
    }

    .pb-lg-5,.py-lg-5 {
        padding-bottom: 3rem!important
    }

    .pl-lg-5,.px-lg-5 {
        padding-left: 3rem!important
    }

    .m-lg-n1 {
        margin: -.25rem!important
    }

    .mt-lg-n1,.my-lg-n1 {
        margin-top: -.25rem!important
    }

    .mr-lg-n1,.mx-lg-n1 {
        margin-right: -.25rem!important
    }

    .mb-lg-n1,.my-lg-n1 {
        margin-bottom: -.25rem!important
    }

    .ml-lg-n1,.mx-lg-n1 {
        margin-left: -.25rem!important
    }

    .m-lg-n2 {
        margin: -.5rem!important
    }

    .mt-lg-n2,.my-lg-n2 {
        margin-top: -.5rem!important
    }

    .mr-lg-n2,.mx-lg-n2 {
        margin-right: -.5rem!important
    }

    .mb-lg-n2,.my-lg-n2 {
        margin-bottom: -.5rem!important
    }

    .ml-lg-n2,.mx-lg-n2 {
        margin-left: -.5rem!important
    }

    .m-lg-n3 {
        margin: -1rem!important
    }

    .mt-lg-n3,.my-lg-n3 {
        margin-top: -1rem!important
    }

    .mr-lg-n3,.mx-lg-n3 {
        margin-right: -1rem!important
    }

    .mb-lg-n3,.my-lg-n3 {
        margin-bottom: -1rem!important
    }

    .ml-lg-n3,.mx-lg-n3 {
        margin-left: -1rem!important
    }

    .m-lg-n4 {
        margin: -1.5rem!important
    }

    .mt-lg-n4,.my-lg-n4 {
        margin-top: -1.5rem!important
    }

    .mr-lg-n4,.mx-lg-n4 {
        margin-right: -1.5rem!important
    }

    .mb-lg-n4,.my-lg-n4 {
        margin-bottom: -1.5rem!important
    }

    .ml-lg-n4,.mx-lg-n4 {
        margin-left: -1.5rem!important
    }

    .m-lg-n5 {
        margin: -3rem!important
    }

    .mt-lg-n5,.my-lg-n5 {
        margin-top: -3rem!important
    }

    .mr-lg-n5,.mx-lg-n5 {
        margin-right: -3rem!important
    }

    .mb-lg-n5,.my-lg-n5 {
        margin-bottom: -3rem!important
    }

    .ml-lg-n5,.mx-lg-n5 {
        margin-left: -3rem!important
    }

    .m-lg-auto {
        margin: auto!important
    }

    .mt-lg-auto,.my-lg-auto {
        margin-top: auto!important
    }

    .mr-lg-auto,.mx-lg-auto {
        margin-right: auto!important
    }

    .mb-lg-auto,.my-lg-auto {
        margin-bottom: auto!important
    }

    .ml-lg-auto,.mx-lg-auto {
        margin-left: auto!important
    }
}

@media (min-width: 1400px) {
    .m-xl-0 {
        margin:0!important
    }

    .mt-xl-0,.my-xl-0 {
        margin-top: 0!important
    }

    .mr-xl-0,.mx-xl-0 {
        margin-right: 0!important
    }

    .mb-xl-0,.my-xl-0 {
        margin-bottom: 0!important
    }

    .ml-xl-0,.mx-xl-0 {
        margin-left: 0!important
    }

    .m-xl-1 {
        margin: .25rem!important
    }

    .mt-xl-1,.my-xl-1 {
        margin-top: .25rem!important
    }

    .mr-xl-1,.mx-xl-1 {
        margin-right: .25rem!important
    }

    .mb-xl-1,.my-xl-1 {
        margin-bottom: .25rem!important
    }

    .ml-xl-1,.mx-xl-1 {
        margin-left: .25rem!important
    }

    .m-xl-2 {
        margin: .5rem!important
    }

    .mt-xl-2,.my-xl-2 {
        margin-top: .5rem!important
    }

    .mr-xl-2,.mx-xl-2 {
        margin-right: .5rem!important
    }

    .mb-xl-2,.my-xl-2 {
        margin-bottom: .5rem!important
    }

    .ml-xl-2,.mx-xl-2 {
        margin-left: .5rem!important
    }

    .m-xl-3 {
        margin: 1rem!important
    }

    .mt-xl-3,.my-xl-3 {
        margin-top: 1rem!important
    }

    .mr-xl-3,.mx-xl-3 {
        margin-right: 1rem!important
    }

    .mb-xl-3,.my-xl-3 {
        margin-bottom: 1rem!important
    }

    .ml-xl-3,.mx-xl-3 {
        margin-left: 1rem!important
    }

    .m-xl-4 {
        margin: 1.5rem!important
    }

    .mt-xl-4,.my-xl-4 {
        margin-top: 1.5rem!important
    }

    .mr-xl-4,.mx-xl-4 {
        margin-right: 1.5rem!important
    }

    .mb-xl-4,.my-xl-4 {
        margin-bottom: 1.5rem!important
    }

    .ml-xl-4,.mx-xl-4 {
        margin-left: 1.5rem!important
    }

    .m-xl-5 {
        margin: 3rem!important
    }

    .mt-xl-5,.my-xl-5 {
        margin-top: 3rem!important
    }

    .mr-xl-5,.mx-xl-5 {
        margin-right: 3rem!important
    }

    .mb-xl-5,.my-xl-5 {
        margin-bottom: 3rem!important
    }

    .ml-xl-5,.mx-xl-5 {
        margin-left: 3rem!important
    }

    .p-xl-0 {
        padding: 0!important
    }

    .pt-xl-0,.py-xl-0 {
        padding-top: 0!important
    }

    .pr-xl-0,.px-xl-0 {
        padding-right: 0!important
    }

    .pb-xl-0,.py-xl-0 {
        padding-bottom: 0!important
    }

    .pl-xl-0,.px-xl-0 {
        padding-left: 0!important
    }

    .p-xl-1 {
        padding: .25rem!important
    }

    .pt-xl-1,.py-xl-1 {
        padding-top: .25rem!important
    }

    .pr-xl-1,.px-xl-1 {
        padding-right: .25rem!important
    }

    .pb-xl-1,.py-xl-1 {
        padding-bottom: .25rem!important
    }

    .pl-xl-1,.px-xl-1 {
        padding-left: .25rem!important
    }

    .p-xl-2 {
        padding: .5rem!important
    }

    .pt-xl-2,.py-xl-2 {
        padding-top: .5rem!important
    }

    .pr-xl-2,.px-xl-2 {
        padding-right: .5rem!important
    }

    .pb-xl-2,.py-xl-2 {
        padding-bottom: .5rem!important
    }

    .pl-xl-2,.px-xl-2 {
        padding-left: .5rem!important
    }

    .p-xl-3 {
        padding: 1rem!important
    }

    .pt-xl-3,.py-xl-3 {
        padding-top: 1rem!important
    }

    .pr-xl-3,.px-xl-3 {
        padding-right: 1rem!important
    }

    .pb-xl-3,.py-xl-3 {
        padding-bottom: 1rem!important
    }

    .pl-xl-3,.px-xl-3 {
        padding-left: 1rem!important
    }

    .p-xl-4 {
        padding: 1.5rem!important
    }

    .pt-xl-4,.py-xl-4 {
        padding-top: 1.5rem!important
    }

    .pr-xl-4,.px-xl-4 {
        padding-right: 1.5rem!important
    }

    .pb-xl-4,.py-xl-4 {
        padding-bottom: 1.5rem!important
    }

    .pl-xl-4,.px-xl-4 {
        padding-left: 1.5rem!important
    }

    .p-xl-5 {
        padding: 3rem!important
    }

    .pt-xl-5,.py-xl-5 {
        padding-top: 3rem!important
    }

    .pr-xl-5,.px-xl-5 {
        padding-right: 3rem!important
    }

    .pb-xl-5,.py-xl-5 {
        padding-bottom: 3rem!important
    }

    .pl-xl-5,.px-xl-5 {
        padding-left: 3rem!important
    }

    .m-xl-n1 {
        margin: -.25rem!important
    }

    .mt-xl-n1,.my-xl-n1 {
        margin-top: -.25rem!important
    }

    .mr-xl-n1,.mx-xl-n1 {
        margin-right: -.25rem!important
    }

    .mb-xl-n1,.my-xl-n1 {
        margin-bottom: -.25rem!important
    }

    .ml-xl-n1,.mx-xl-n1 {
        margin-left: -.25rem!important
    }

    .m-xl-n2 {
        margin: -.5rem!important
    }

    .mt-xl-n2,.my-xl-n2 {
        margin-top: -.5rem!important
    }

    .mr-xl-n2,.mx-xl-n2 {
        margin-right: -.5rem!important
    }

    .mb-xl-n2,.my-xl-n2 {
        margin-bottom: -.5rem!important
    }

    .ml-xl-n2,.mx-xl-n2 {
        margin-left: -.5rem!important
    }

    .m-xl-n3 {
        margin: -1rem!important
    }

    .mt-xl-n3,.my-xl-n3 {
        margin-top: -1rem!important
    }

    .mr-xl-n3,.mx-xl-n3 {
        margin-right: -1rem!important
    }

    .mb-xl-n3,.my-xl-n3 {
        margin-bottom: -1rem!important
    }

    .ml-xl-n3,.mx-xl-n3 {
        margin-left: -1rem!important
    }

    .m-xl-n4 {
        margin: -1.5rem!important
    }

    .mt-xl-n4,.my-xl-n4 {
        margin-top: -1.5rem!important
    }

    .mr-xl-n4,.mx-xl-n4 {
        margin-right: -1.5rem!important
    }

    .mb-xl-n4,.my-xl-n4 {
        margin-bottom: -1.5rem!important
    }

    .ml-xl-n4,.mx-xl-n4 {
        margin-left: -1.5rem!important
    }

    .m-xl-n5 {
        margin: -3rem!important
    }

    .mt-xl-n5,.my-xl-n5 {
        margin-top: -3rem!important
    }

    .mr-xl-n5,.mx-xl-n5 {
        margin-right: -3rem!important
    }

    .mb-xl-n5,.my-xl-n5 {
        margin-bottom: -3rem!important
    }

    .ml-xl-n5,.mx-xl-n5 {
        margin-left: -3rem!important
    }

    .m-xl-auto {
        margin: auto!important
    }

    .mt-xl-auto,.my-xl-auto {
        margin-top: auto!important
    }

    .mr-xl-auto,.mx-xl-auto {
        margin-right: auto!important
    }

    .mb-xl-auto,.my-xl-auto {
        margin-bottom: auto!important
    }

    .ml-xl-auto,.mx-xl-auto {
        margin-left: auto!important
    }
}

@media (min-width: 1750px) {
    .m-xxl-0 {
        margin:0!important
    }

    .mt-xxl-0,.my-xxl-0 {
        margin-top: 0!important
    }

    .mr-xxl-0,.mx-xxl-0 {
        margin-right: 0!important
    }

    .mb-xxl-0,.my-xxl-0 {
        margin-bottom: 0!important
    }

    .ml-xxl-0,.mx-xxl-0 {
        margin-left: 0!important
    }

    .m-xxl-1 {
        margin: .25rem!important
    }

    .mt-xxl-1,.my-xxl-1 {
        margin-top: .25rem!important
    }

    .mr-xxl-1,.mx-xxl-1 {
        margin-right: .25rem!important
    }

    .mb-xxl-1,.my-xxl-1 {
        margin-bottom: .25rem!important
    }

    .ml-xxl-1,.mx-xxl-1 {
        margin-left: .25rem!important
    }

    .m-xxl-2 {
        margin: .5rem!important
    }

    .mt-xxl-2,.my-xxl-2 {
        margin-top: .5rem!important
    }

    .mr-xxl-2,.mx-xxl-2 {
        margin-right: .5rem!important
    }

    .mb-xxl-2,.my-xxl-2 {
        margin-bottom: .5rem!important
    }

    .ml-xxl-2,.mx-xxl-2 {
        margin-left: .5rem!important
    }

    .m-xxl-3 {
        margin: 1rem!important
    }

    .mt-xxl-3,.my-xxl-3 {
        margin-top: 1rem!important
    }

    .mr-xxl-3,.mx-xxl-3 {
        margin-right: 1rem!important
    }

    .mb-xxl-3,.my-xxl-3 {
        margin-bottom: 1rem!important
    }

    .ml-xxl-3,.mx-xxl-3 {
        margin-left: 1rem!important
    }

    .m-xxl-4 {
        margin: 1.5rem!important
    }

    .mt-xxl-4,.my-xxl-4 {
        margin-top: 1.5rem!important
    }

    .mr-xxl-4,.mx-xxl-4 {
        margin-right: 1.5rem!important
    }

    .mb-xxl-4,.my-xxl-4 {
        margin-bottom: 1.5rem!important
    }

    .ml-xxl-4,.mx-xxl-4 {
        margin-left: 1.5rem!important
    }

    .m-xxl-5 {
        margin: 3rem!important
    }

    .mt-xxl-5,.my-xxl-5 {
        margin-top: 3rem!important
    }

    .mr-xxl-5,.mx-xxl-5 {
        margin-right: 3rem!important
    }

    .mb-xxl-5,.my-xxl-5 {
        margin-bottom: 3rem!important
    }

    .ml-xxl-5,.mx-xxl-5 {
        margin-left: 3rem!important
    }

    .p-xxl-0 {
        padding: 0!important
    }

    .pt-xxl-0,.py-xxl-0 {
        padding-top: 0!important
    }

    .pr-xxl-0,.px-xxl-0 {
        padding-right: 0!important
    }

    .pb-xxl-0,.py-xxl-0 {
        padding-bottom: 0!important
    }

    .pl-xxl-0,.px-xxl-0 {
        padding-left: 0!important
    }

    .p-xxl-1 {
        padding: .25rem!important
    }

    .pt-xxl-1,.py-xxl-1 {
        padding-top: .25rem!important
    }

    .pr-xxl-1,.px-xxl-1 {
        padding-right: .25rem!important
    }

    .pb-xxl-1,.py-xxl-1 {
        padding-bottom: .25rem!important
    }

    .pl-xxl-1,.px-xxl-1 {
        padding-left: .25rem!important
    }

    .p-xxl-2 {
        padding: .5rem!important
    }

    .pt-xxl-2,.py-xxl-2 {
        padding-top: .5rem!important
    }

    .pr-xxl-2,.px-xxl-2 {
        padding-right: .5rem!important
    }

    .pb-xxl-2,.py-xxl-2 {
        padding-bottom: .5rem!important
    }

    .pl-xxl-2,.px-xxl-2 {
        padding-left: .5rem!important
    }

    .p-xxl-3 {
        padding: 1rem!important
    }

    .pt-xxl-3,.py-xxl-3 {
        padding-top: 1rem!important
    }

    .pr-xxl-3,.px-xxl-3 {
        padding-right: 1rem!important
    }

    .pb-xxl-3,.py-xxl-3 {
        padding-bottom: 1rem!important
    }

    .pl-xxl-3,.px-xxl-3 {
        padding-left: 1rem!important
    }

    .p-xxl-4 {
        padding: 1.5rem!important
    }

    .pt-xxl-4,.py-xxl-4 {
        padding-top: 1.5rem!important
    }

    .pr-xxl-4,.px-xxl-4 {
        padding-right: 1.5rem!important
    }

    .pb-xxl-4,.py-xxl-4 {
        padding-bottom: 1.5rem!important
    }

    .pl-xxl-4,.px-xxl-4 {
        padding-left: 1.5rem!important
    }

    .p-xxl-5 {
        padding: 3rem!important
    }

    .pt-xxl-5,.py-xxl-5 {
        padding-top: 3rem!important
    }

    .pr-xxl-5,.px-xxl-5 {
        padding-right: 3rem!important
    }

    .pb-xxl-5,.py-xxl-5 {
        padding-bottom: 3rem!important
    }

    .pl-xxl-5,.px-xxl-5 {
        padding-left: 3rem!important
    }

    .m-xxl-n1 {
        margin: -.25rem!important
    }

    .mt-xxl-n1,.my-xxl-n1 {
        margin-top: -.25rem!important
    }

    .mr-xxl-n1,.mx-xxl-n1 {
        margin-right: -.25rem!important
    }

    .mb-xxl-n1,.my-xxl-n1 {
        margin-bottom: -.25rem!important
    }

    .ml-xxl-n1,.mx-xxl-n1 {
        margin-left: -.25rem!important
    }

    .m-xxl-n2 {
        margin: -.5rem!important
    }

    .mt-xxl-n2,.my-xxl-n2 {
        margin-top: -.5rem!important
    }

    .mr-xxl-n2,.mx-xxl-n2 {
        margin-right: -.5rem!important
    }

    .mb-xxl-n2,.my-xxl-n2 {
        margin-bottom: -.5rem!important
    }

    .ml-xxl-n2,.mx-xxl-n2 {
        margin-left: -.5rem!important
    }

    .m-xxl-n3 {
        margin: -1rem!important
    }

    .mt-xxl-n3,.my-xxl-n3 {
        margin-top: -1rem!important
    }

    .mr-xxl-n3,.mx-xxl-n3 {
        margin-right: -1rem!important
    }

    .mb-xxl-n3,.my-xxl-n3 {
        margin-bottom: -1rem!important
    }

    .ml-xxl-n3,.mx-xxl-n3 {
        margin-left: -1rem!important
    }

    .m-xxl-n4 {
        margin: -1.5rem!important
    }

    .mt-xxl-n4,.my-xxl-n4 {
        margin-top: -1.5rem!important
    }

    .mr-xxl-n4,.mx-xxl-n4 {
        margin-right: -1.5rem!important
    }

    .mb-xxl-n4,.my-xxl-n4 {
        margin-bottom: -1.5rem!important
    }

    .ml-xxl-n4,.mx-xxl-n4 {
        margin-left: -1.5rem!important
    }

    .m-xxl-n5 {
        margin: -3rem!important
    }

    .mt-xxl-n5,.my-xxl-n5 {
        margin-top: -3rem!important
    }

    .mr-xxl-n5,.mx-xxl-n5 {
        margin-right: -3rem!important
    }

    .mb-xxl-n5,.my-xxl-n5 {
        margin-bottom: -3rem!important
    }

    .ml-xxl-n5,.mx-xxl-n5 {
        margin-left: -3rem!important
    }

    .m-xxl-auto {
        margin: auto!important
    }

    .mt-xxl-auto,.my-xxl-auto {
        margin-top: auto!important
    }

    .mr-xxl-auto,.mx-xxl-auto {
        margin-right: auto!important
    }

    .mb-xxl-auto,.my-xxl-auto {
        margin-bottom: auto!important
    }

    .ml-xxl-auto,.mx-xxl-auto {
        margin-left: auto!important
    }
}

@media (min-width: 2000px) {
    .m-xxxl-0 {
        margin:0!important
    }

    .mt-xxxl-0,.my-xxxl-0 {
        margin-top: 0!important
    }

    .mr-xxxl-0,.mx-xxxl-0 {
        margin-right: 0!important
    }

    .mb-xxxl-0,.my-xxxl-0 {
        margin-bottom: 0!important
    }

    .ml-xxxl-0,.mx-xxxl-0 {
        margin-left: 0!important
    }

    .m-xxxl-1 {
        margin: .25rem!important
    }

    .mt-xxxl-1,.my-xxxl-1 {
        margin-top: .25rem!important
    }

    .mr-xxxl-1,.mx-xxxl-1 {
        margin-right: .25rem!important
    }

    .mb-xxxl-1,.my-xxxl-1 {
        margin-bottom: .25rem!important
    }

    .ml-xxxl-1,.mx-xxxl-1 {
        margin-left: .25rem!important
    }

    .m-xxxl-2 {
        margin: .5rem!important
    }

    .mt-xxxl-2,.my-xxxl-2 {
        margin-top: .5rem!important
    }

    .mr-xxxl-2,.mx-xxxl-2 {
        margin-right: .5rem!important
    }

    .mb-xxxl-2,.my-xxxl-2 {
        margin-bottom: .5rem!important
    }

    .ml-xxxl-2,.mx-xxxl-2 {
        margin-left: .5rem!important
    }

    .m-xxxl-3 {
        margin: 1rem!important
    }

    .mt-xxxl-3,.my-xxxl-3 {
        margin-top: 1rem!important
    }

    .mr-xxxl-3,.mx-xxxl-3 {
        margin-right: 1rem!important
    }

    .mb-xxxl-3,.my-xxxl-3 {
        margin-bottom: 1rem!important
    }

    .ml-xxxl-3,.mx-xxxl-3 {
        margin-left: 1rem!important
    }

    .m-xxxl-4 {
        margin: 1.5rem!important
    }

    .mt-xxxl-4,.my-xxxl-4 {
        margin-top: 1.5rem!important
    }

    .mr-xxxl-4,.mx-xxxl-4 {
        margin-right: 1.5rem!important
    }

    .mb-xxxl-4,.my-xxxl-4 {
        margin-bottom: 1.5rem!important
    }

    .ml-xxxl-4,.mx-xxxl-4 {
        margin-left: 1.5rem!important
    }

    .m-xxxl-5 {
        margin: 3rem!important
    }

    .mt-xxxl-5,.my-xxxl-5 {
        margin-top: 3rem!important
    }

    .mr-xxxl-5,.mx-xxxl-5 {
        margin-right: 3rem!important
    }

    .mb-xxxl-5,.my-xxxl-5 {
        margin-bottom: 3rem!important
    }

    .ml-xxxl-5,.mx-xxxl-5 {
        margin-left: 3rem!important
    }

    .p-xxxl-0 {
        padding: 0!important
    }

    .pt-xxxl-0,.py-xxxl-0 {
        padding-top: 0!important
    }

    .pr-xxxl-0,.px-xxxl-0 {
        padding-right: 0!important
    }

    .pb-xxxl-0,.py-xxxl-0 {
        padding-bottom: 0!important
    }

    .pl-xxxl-0,.px-xxxl-0 {
        padding-left: 0!important
    }

    .p-xxxl-1 {
        padding: .25rem!important
    }

    .pt-xxxl-1,.py-xxxl-1 {
        padding-top: .25rem!important
    }

    .pr-xxxl-1,.px-xxxl-1 {
        padding-right: .25rem!important
    }

    .pb-xxxl-1,.py-xxxl-1 {
        padding-bottom: .25rem!important
    }

    .pl-xxxl-1,.px-xxxl-1 {
        padding-left: .25rem!important
    }

    .p-xxxl-2 {
        padding: .5rem!important
    }

    .pt-xxxl-2,.py-xxxl-2 {
        padding-top: .5rem!important
    }

    .pr-xxxl-2,.px-xxxl-2 {
        padding-right: .5rem!important
    }

    .pb-xxxl-2,.py-xxxl-2 {
        padding-bottom: .5rem!important
    }

    .pl-xxxl-2,.px-xxxl-2 {
        padding-left: .5rem!important
    }

    .p-xxxl-3 {
        padding: 1rem!important
    }

    .pt-xxxl-3,.py-xxxl-3 {
        padding-top: 1rem!important
    }

    .pr-xxxl-3,.px-xxxl-3 {
        padding-right: 1rem!important
    }

    .pb-xxxl-3,.py-xxxl-3 {
        padding-bottom: 1rem!important
    }

    .pl-xxxl-3,.px-xxxl-3 {
        padding-left: 1rem!important
    }

    .p-xxxl-4 {
        padding: 1.5rem!important
    }

    .pt-xxxl-4,.py-xxxl-4 {
        padding-top: 1.5rem!important
    }

    .pr-xxxl-4,.px-xxxl-4 {
        padding-right: 1.5rem!important
    }

    .pb-xxxl-4,.py-xxxl-4 {
        padding-bottom: 1.5rem!important
    }

    .pl-xxxl-4,.px-xxxl-4 {
        padding-left: 1.5rem!important
    }

    .p-xxxl-5 {
        padding: 3rem!important
    }

    .pt-xxxl-5,.py-xxxl-5 {
        padding-top: 3rem!important
    }

    .pr-xxxl-5,.px-xxxl-5 {
        padding-right: 3rem!important
    }

    .pb-xxxl-5,.py-xxxl-5 {
        padding-bottom: 3rem!important
    }

    .pl-xxxl-5,.px-xxxl-5 {
        padding-left: 3rem!important
    }

    .m-xxxl-n1 {
        margin: -.25rem!important
    }

    .mt-xxxl-n1,.my-xxxl-n1 {
        margin-top: -.25rem!important
    }

    .mr-xxxl-n1,.mx-xxxl-n1 {
        margin-right: -.25rem!important
    }

    .mb-xxxl-n1,.my-xxxl-n1 {
        margin-bottom: -.25rem!important
    }

    .ml-xxxl-n1,.mx-xxxl-n1 {
        margin-left: -.25rem!important
    }

    .m-xxxl-n2 {
        margin: -.5rem!important
    }

    .mt-xxxl-n2,.my-xxxl-n2 {
        margin-top: -.5rem!important
    }

    .mr-xxxl-n2,.mx-xxxl-n2 {
        margin-right: -.5rem!important
    }

    .mb-xxxl-n2,.my-xxxl-n2 {
        margin-bottom: -.5rem!important
    }

    .ml-xxxl-n2,.mx-xxxl-n2 {
        margin-left: -.5rem!important
    }

    .m-xxxl-n3 {
        margin: -1rem!important
    }

    .mt-xxxl-n3,.my-xxxl-n3 {
        margin-top: -1rem!important
    }

    .mr-xxxl-n3,.mx-xxxl-n3 {
        margin-right: -1rem!important
    }

    .mb-xxxl-n3,.my-xxxl-n3 {
        margin-bottom: -1rem!important
    }

    .ml-xxxl-n3,.mx-xxxl-n3 {
        margin-left: -1rem!important
    }

    .m-xxxl-n4 {
        margin: -1.5rem!important
    }

    .mt-xxxl-n4,.my-xxxl-n4 {
        margin-top: -1.5rem!important
    }

    .mr-xxxl-n4,.mx-xxxl-n4 {
        margin-right: -1.5rem!important
    }

    .mb-xxxl-n4,.my-xxxl-n4 {
        margin-bottom: -1.5rem!important
    }

    .ml-xxxl-n4,.mx-xxxl-n4 {
        margin-left: -1.5rem!important
    }

    .m-xxxl-n5 {
        margin: -3rem!important
    }

    .mt-xxxl-n5,.my-xxxl-n5 {
        margin-top: -3rem!important
    }

    .mr-xxxl-n5,.mx-xxxl-n5 {
        margin-right: -3rem!important
    }

    .mb-xxxl-n5,.my-xxxl-n5 {
        margin-bottom: -3rem!important
    }

    .ml-xxxl-n5,.mx-xxxl-n5 {
        margin-left: -3rem!important
    }

    .m-xxxl-auto {
        margin: auto!important
    }

    .mt-xxxl-auto,.my-xxxl-auto {
        margin-top: auto!important
    }

    .mr-xxxl-auto,.mx-xxxl-auto {
        margin-right: auto!important
    }

    .mb-xxxl-auto,.my-xxxl-auto {
        margin-bottom: auto!important
    }

    .ml-xxxl-auto,.mx-xxxl-auto {
        margin-left: auto!important
    }
}

@media (min-width: 2600px) {
    .m-xxxxl-0 {
        margin:0!important
    }

    .mt-xxxxl-0,.my-xxxxl-0 {
        margin-top: 0!important
    }

    .mr-xxxxl-0,.mx-xxxxl-0 {
        margin-right: 0!important
    }

    .mb-xxxxl-0,.my-xxxxl-0 {
        margin-bottom: 0!important
    }

    .ml-xxxxl-0,.mx-xxxxl-0 {
        margin-left: 0!important
    }

    .m-xxxxl-1 {
        margin: .25rem!important
    }

    .mt-xxxxl-1,.my-xxxxl-1 {
        margin-top: .25rem!important
    }

    .mr-xxxxl-1,.mx-xxxxl-1 {
        margin-right: .25rem!important
    }

    .mb-xxxxl-1,.my-xxxxl-1 {
        margin-bottom: .25rem!important
    }

    .ml-xxxxl-1,.mx-xxxxl-1 {
        margin-left: .25rem!important
    }

    .m-xxxxl-2 {
        margin: .5rem!important
    }

    .mt-xxxxl-2,.my-xxxxl-2 {
        margin-top: .5rem!important
    }

    .mr-xxxxl-2,.mx-xxxxl-2 {
        margin-right: .5rem!important
    }

    .mb-xxxxl-2,.my-xxxxl-2 {
        margin-bottom: .5rem!important
    }

    .ml-xxxxl-2,.mx-xxxxl-2 {
        margin-left: .5rem!important
    }

    .m-xxxxl-3 {
        margin: 1rem!important
    }

    .mt-xxxxl-3,.my-xxxxl-3 {
        margin-top: 1rem!important
    }

    .mr-xxxxl-3,.mx-xxxxl-3 {
        margin-right: 1rem!important
    }

    .mb-xxxxl-3,.my-xxxxl-3 {
        margin-bottom: 1rem!important
    }

    .ml-xxxxl-3,.mx-xxxxl-3 {
        margin-left: 1rem!important
    }

    .m-xxxxl-4 {
        margin: 1.5rem!important
    }

    .mt-xxxxl-4,.my-xxxxl-4 {
        margin-top: 1.5rem!important
    }

    .mr-xxxxl-4,.mx-xxxxl-4 {
        margin-right: 1.5rem!important
    }

    .mb-xxxxl-4,.my-xxxxl-4 {
        margin-bottom: 1.5rem!important
    }

    .ml-xxxxl-4,.mx-xxxxl-4 {
        margin-left: 1.5rem!important
    }

    .m-xxxxl-5 {
        margin: 3rem!important
    }

    .mt-xxxxl-5,.my-xxxxl-5 {
        margin-top: 3rem!important
    }

    .mr-xxxxl-5,.mx-xxxxl-5 {
        margin-right: 3rem!important
    }

    .mb-xxxxl-5,.my-xxxxl-5 {
        margin-bottom: 3rem!important
    }

    .ml-xxxxl-5,.mx-xxxxl-5 {
        margin-left: 3rem!important
    }

    .p-xxxxl-0 {
        padding: 0!important
    }

    .pt-xxxxl-0,.py-xxxxl-0 {
        padding-top: 0!important
    }

    .pr-xxxxl-0,.px-xxxxl-0 {
        padding-right: 0!important
    }

    .pb-xxxxl-0,.py-xxxxl-0 {
        padding-bottom: 0!important
    }

    .pl-xxxxl-0,.px-xxxxl-0 {
        padding-left: 0!important
    }

    .p-xxxxl-1 {
        padding: .25rem!important
    }

    .pt-xxxxl-1,.py-xxxxl-1 {
        padding-top: .25rem!important
    }

    .pr-xxxxl-1,.px-xxxxl-1 {
        padding-right: .25rem!important
    }

    .pb-xxxxl-1,.py-xxxxl-1 {
        padding-bottom: .25rem!important
    }

    .pl-xxxxl-1,.px-xxxxl-1 {
        padding-left: .25rem!important
    }

    .p-xxxxl-2 {
        padding: .5rem!important
    }

    .pt-xxxxl-2,.py-xxxxl-2 {
        padding-top: .5rem!important
    }

    .pr-xxxxl-2,.px-xxxxl-2 {
        padding-right: .5rem!important
    }

    .pb-xxxxl-2,.py-xxxxl-2 {
        padding-bottom: .5rem!important
    }

    .pl-xxxxl-2,.px-xxxxl-2 {
        padding-left: .5rem!important
    }

    .p-xxxxl-3 {
        padding: 1rem!important
    }

    .pt-xxxxl-3,.py-xxxxl-3 {
        padding-top: 1rem!important
    }

    .pr-xxxxl-3,.px-xxxxl-3 {
        padding-right: 1rem!important
    }

    .pb-xxxxl-3,.py-xxxxl-3 {
        padding-bottom: 1rem!important
    }

    .pl-xxxxl-3,.px-xxxxl-3 {
        padding-left: 1rem!important
    }

    .p-xxxxl-4 {
        padding: 1.5rem!important
    }

    .pt-xxxxl-4,.py-xxxxl-4 {
        padding-top: 1.5rem!important
    }

    .pr-xxxxl-4,.px-xxxxl-4 {
        padding-right: 1.5rem!important
    }

    .pb-xxxxl-4,.py-xxxxl-4 {
        padding-bottom: 1.5rem!important
    }

    .pl-xxxxl-4,.px-xxxxl-4 {
        padding-left: 1.5rem!important
    }

    .p-xxxxl-5 {
        padding: 3rem!important
    }

    .pt-xxxxl-5,.py-xxxxl-5 {
        padding-top: 3rem!important
    }

    .pr-xxxxl-5,.px-xxxxl-5 {
        padding-right: 3rem!important
    }

    .pb-xxxxl-5,.py-xxxxl-5 {
        padding-bottom: 3rem!important
    }

    .pl-xxxxl-5,.px-xxxxl-5 {
        padding-left: 3rem!important
    }

    .m-xxxxl-n1 {
        margin: -.25rem!important
    }

    .mt-xxxxl-n1,.my-xxxxl-n1 {
        margin-top: -.25rem!important
    }

    .mr-xxxxl-n1,.mx-xxxxl-n1 {
        margin-right: -.25rem!important
    }

    .mb-xxxxl-n1,.my-xxxxl-n1 {
        margin-bottom: -.25rem!important
    }

    .ml-xxxxl-n1,.mx-xxxxl-n1 {
        margin-left: -.25rem!important
    }

    .m-xxxxl-n2 {
        margin: -.5rem!important
    }

    .mt-xxxxl-n2,.my-xxxxl-n2 {
        margin-top: -.5rem!important
    }

    .mr-xxxxl-n2,.mx-xxxxl-n2 {
        margin-right: -.5rem!important
    }

    .mb-xxxxl-n2,.my-xxxxl-n2 {
        margin-bottom: -.5rem!important
    }

    .ml-xxxxl-n2,.mx-xxxxl-n2 {
        margin-left: -.5rem!important
    }

    .m-xxxxl-n3 {
        margin: -1rem!important
    }

    .mt-xxxxl-n3,.my-xxxxl-n3 {
        margin-top: -1rem!important
    }

    .mr-xxxxl-n3,.mx-xxxxl-n3 {
        margin-right: -1rem!important
    }

    .mb-xxxxl-n3,.my-xxxxl-n3 {
        margin-bottom: -1rem!important
    }

    .ml-xxxxl-n3,.mx-xxxxl-n3 {
        margin-left: -1rem!important
    }

    .m-xxxxl-n4 {
        margin: -1.5rem!important
    }

    .mt-xxxxl-n4,.my-xxxxl-n4 {
        margin-top: -1.5rem!important
    }

    .mr-xxxxl-n4,.mx-xxxxl-n4 {
        margin-right: -1.5rem!important
    }

    .mb-xxxxl-n4,.my-xxxxl-n4 {
        margin-bottom: -1.5rem!important
    }

    .ml-xxxxl-n4,.mx-xxxxl-n4 {
        margin-left: -1.5rem!important
    }

    .m-xxxxl-n5 {
        margin: -3rem!important
    }

    .mt-xxxxl-n5,.my-xxxxl-n5 {
        margin-top: -3rem!important
    }

    .mr-xxxxl-n5,.mx-xxxxl-n5 {
        margin-right: -3rem!important
    }

    .mb-xxxxl-n5,.my-xxxxl-n5 {
        margin-bottom: -3rem!important
    }

    .ml-xxxxl-n5,.mx-xxxxl-n5 {
        margin-left: -3rem!important
    }

    .m-xxxxl-auto {
        margin: auto!important
    }

    .mt-xxxxl-auto,.my-xxxxl-auto {
        margin-top: auto!important
    }

    .mr-xxxxl-auto,.mx-xxxxl-auto {
        margin-right: auto!important
    }

    .mb-xxxxl-auto,.my-xxxxl-auto {
        margin-bottom: auto!important
    }

    .ml-xxxxl-auto,.mx-xxxxl-auto {
        margin-left: auto!important
    }
}

@media (min-width: 3200px) {
    .m-4k-0 {
        margin:0!important
    }

    .mt-4k-0,.my-4k-0 {
        margin-top: 0!important
    }

    .mr-4k-0,.mx-4k-0 {
        margin-right: 0!important
    }

    .mb-4k-0,.my-4k-0 {
        margin-bottom: 0!important
    }

    .ml-4k-0,.mx-4k-0 {
        margin-left: 0!important
    }

    .m-4k-1 {
        margin: .25rem!important
    }

    .mt-4k-1,.my-4k-1 {
        margin-top: .25rem!important
    }

    .mr-4k-1,.mx-4k-1 {
        margin-right: .25rem!important
    }

    .mb-4k-1,.my-4k-1 {
        margin-bottom: .25rem!important
    }

    .ml-4k-1,.mx-4k-1 {
        margin-left: .25rem!important
    }

    .m-4k-2 {
        margin: .5rem!important
    }

    .mt-4k-2,.my-4k-2 {
        margin-top: .5rem!important
    }

    .mr-4k-2,.mx-4k-2 {
        margin-right: .5rem!important
    }

    .mb-4k-2,.my-4k-2 {
        margin-bottom: .5rem!important
    }

    .ml-4k-2,.mx-4k-2 {
        margin-left: .5rem!important
    }

    .m-4k-3 {
        margin: 1rem!important
    }

    .mt-4k-3,.my-4k-3 {
        margin-top: 1rem!important
    }

    .mr-4k-3,.mx-4k-3 {
        margin-right: 1rem!important
    }

    .mb-4k-3,.my-4k-3 {
        margin-bottom: 1rem!important
    }

    .ml-4k-3,.mx-4k-3 {
        margin-left: 1rem!important
    }

    .m-4k-4 {
        margin: 1.5rem!important
    }

    .mt-4k-4,.my-4k-4 {
        margin-top: 1.5rem!important
    }

    .mr-4k-4,.mx-4k-4 {
        margin-right: 1.5rem!important
    }

    .mb-4k-4,.my-4k-4 {
        margin-bottom: 1.5rem!important
    }

    .ml-4k-4,.mx-4k-4 {
        margin-left: 1.5rem!important
    }

    .m-4k-5 {
        margin: 3rem!important
    }

    .mt-4k-5,.my-4k-5 {
        margin-top: 3rem!important
    }

    .mr-4k-5,.mx-4k-5 {
        margin-right: 3rem!important
    }

    .mb-4k-5,.my-4k-5 {
        margin-bottom: 3rem!important
    }

    .ml-4k-5,.mx-4k-5 {
        margin-left: 3rem!important
    }

    .p-4k-0 {
        padding: 0!important
    }

    .pt-4k-0,.py-4k-0 {
        padding-top: 0!important
    }

    .pr-4k-0,.px-4k-0 {
        padding-right: 0!important
    }

    .pb-4k-0,.py-4k-0 {
        padding-bottom: 0!important
    }

    .pl-4k-0,.px-4k-0 {
        padding-left: 0!important
    }

    .p-4k-1 {
        padding: .25rem!important
    }

    .pt-4k-1,.py-4k-1 {
        padding-top: .25rem!important
    }

    .pr-4k-1,.px-4k-1 {
        padding-right: .25rem!important
    }

    .pb-4k-1,.py-4k-1 {
        padding-bottom: .25rem!important
    }

    .pl-4k-1,.px-4k-1 {
        padding-left: .25rem!important
    }

    .p-4k-2 {
        padding: .5rem!important
    }

    .pt-4k-2,.py-4k-2 {
        padding-top: .5rem!important
    }

    .pr-4k-2,.px-4k-2 {
        padding-right: .5rem!important
    }

    .pb-4k-2,.py-4k-2 {
        padding-bottom: .5rem!important
    }

    .pl-4k-2,.px-4k-2 {
        padding-left: .5rem!important
    }

    .p-4k-3 {
        padding: 1rem!important
    }

    .pt-4k-3,.py-4k-3 {
        padding-top: 1rem!important
    }

    .pr-4k-3,.px-4k-3 {
        padding-right: 1rem!important
    }

    .pb-4k-3,.py-4k-3 {
        padding-bottom: 1rem!important
    }

    .pl-4k-3,.px-4k-3 {
        padding-left: 1rem!important
    }

    .p-4k-4 {
        padding: 1.5rem!important
    }

    .pt-4k-4,.py-4k-4 {
        padding-top: 1.5rem!important
    }

    .pr-4k-4,.px-4k-4 {
        padding-right: 1.5rem!important
    }

    .pb-4k-4,.py-4k-4 {
        padding-bottom: 1.5rem!important
    }

    .pl-4k-4,.px-4k-4 {
        padding-left: 1.5rem!important
    }

    .p-4k-5 {
        padding: 3rem!important
    }

    .pt-4k-5,.py-4k-5 {
        padding-top: 3rem!important
    }

    .pr-4k-5,.px-4k-5 {
        padding-right: 3rem!important
    }

    .pb-4k-5,.py-4k-5 {
        padding-bottom: 3rem!important
    }

    .pl-4k-5,.px-4k-5 {
        padding-left: 3rem!important
    }

    .m-4k-n1 {
        margin: -.25rem!important
    }

    .mt-4k-n1,.my-4k-n1 {
        margin-top: -.25rem!important
    }

    .mr-4k-n1,.mx-4k-n1 {
        margin-right: -.25rem!important
    }

    .mb-4k-n1,.my-4k-n1 {
        margin-bottom: -.25rem!important
    }

    .ml-4k-n1,.mx-4k-n1 {
        margin-left: -.25rem!important
    }

    .m-4k-n2 {
        margin: -.5rem!important
    }

    .mt-4k-n2,.my-4k-n2 {
        margin-top: -.5rem!important
    }

    .mr-4k-n2,.mx-4k-n2 {
        margin-right: -.5rem!important
    }

    .mb-4k-n2,.my-4k-n2 {
        margin-bottom: -.5rem!important
    }

    .ml-4k-n2,.mx-4k-n2 {
        margin-left: -.5rem!important
    }

    .m-4k-n3 {
        margin: -1rem!important
    }

    .mt-4k-n3,.my-4k-n3 {
        margin-top: -1rem!important
    }

    .mr-4k-n3,.mx-4k-n3 {
        margin-right: -1rem!important
    }

    .mb-4k-n3,.my-4k-n3 {
        margin-bottom: -1rem!important
    }

    .ml-4k-n3,.mx-4k-n3 {
        margin-left: -1rem!important
    }

    .m-4k-n4 {
        margin: -1.5rem!important
    }

    .mt-4k-n4,.my-4k-n4 {
        margin-top: -1.5rem!important
    }

    .mr-4k-n4,.mx-4k-n4 {
        margin-right: -1.5rem!important
    }

    .mb-4k-n4,.my-4k-n4 {
        margin-bottom: -1.5rem!important
    }

    .ml-4k-n4,.mx-4k-n4 {
        margin-left: -1.5rem!important
    }

    .m-4k-n5 {
        margin: -3rem!important
    }

    .mt-4k-n5,.my-4k-n5 {
        margin-top: -3rem!important
    }

    .mr-4k-n5,.mx-4k-n5 {
        margin-right: -3rem!important
    }

    .mb-4k-n5,.my-4k-n5 {
        margin-bottom: -3rem!important
    }

    .ml-4k-n5,.mx-4k-n5 {
        margin-left: -3rem!important
    }

    .m-4k-auto {
        margin: auto!important
    }

    .mt-4k-auto,.my-4k-auto {
        margin-top: auto!important
    }

    .mr-4k-auto,.mx-4k-auto {
        margin-right: auto!important
    }

    .mb-4k-auto,.my-4k-auto {
        margin-bottom: auto!important
    }

    .ml-4k-auto,.mx-4k-auto {
        margin-left: auto!important
    }
}

@media (min-width: 4000px) {
    .m-4kplus-0 {
        margin:0!important
    }

    .mt-4kplus-0,.my-4kplus-0 {
        margin-top: 0!important
    }

    .mr-4kplus-0,.mx-4kplus-0 {
        margin-right: 0!important
    }

    .mb-4kplus-0,.my-4kplus-0 {
        margin-bottom: 0!important
    }

    .ml-4kplus-0,.mx-4kplus-0 {
        margin-left: 0!important
    }

    .m-4kplus-1 {
        margin: .25rem!important
    }

    .mt-4kplus-1,.my-4kplus-1 {
        margin-top: .25rem!important
    }

    .mr-4kplus-1,.mx-4kplus-1 {
        margin-right: .25rem!important
    }

    .mb-4kplus-1,.my-4kplus-1 {
        margin-bottom: .25rem!important
    }

    .ml-4kplus-1,.mx-4kplus-1 {
        margin-left: .25rem!important
    }

    .m-4kplus-2 {
        margin: .5rem!important
    }

    .mt-4kplus-2,.my-4kplus-2 {
        margin-top: .5rem!important
    }

    .mr-4kplus-2,.mx-4kplus-2 {
        margin-right: .5rem!important
    }

    .mb-4kplus-2,.my-4kplus-2 {
        margin-bottom: .5rem!important
    }

    .ml-4kplus-2,.mx-4kplus-2 {
        margin-left: .5rem!important
    }

    .m-4kplus-3 {
        margin: 1rem!important
    }

    .mt-4kplus-3,.my-4kplus-3 {
        margin-top: 1rem!important
    }

    .mr-4kplus-3,.mx-4kplus-3 {
        margin-right: 1rem!important
    }

    .mb-4kplus-3,.my-4kplus-3 {
        margin-bottom: 1rem!important
    }

    .ml-4kplus-3,.mx-4kplus-3 {
        margin-left: 1rem!important
    }

    .m-4kplus-4 {
        margin: 1.5rem!important
    }

    .mt-4kplus-4,.my-4kplus-4 {
        margin-top: 1.5rem!important
    }

    .mr-4kplus-4,.mx-4kplus-4 {
        margin-right: 1.5rem!important
    }

    .mb-4kplus-4,.my-4kplus-4 {
        margin-bottom: 1.5rem!important
    }

    .ml-4kplus-4,.mx-4kplus-4 {
        margin-left: 1.5rem!important
    }

    .m-4kplus-5 {
        margin: 3rem!important
    }

    .mt-4kplus-5,.my-4kplus-5 {
        margin-top: 3rem!important
    }

    .mr-4kplus-5,.mx-4kplus-5 {
        margin-right: 3rem!important
    }

    .mb-4kplus-5,.my-4kplus-5 {
        margin-bottom: 3rem!important
    }

    .ml-4kplus-5,.mx-4kplus-5 {
        margin-left: 3rem!important
    }

    .p-4kplus-0 {
        padding: 0!important
    }

    .pt-4kplus-0,.py-4kplus-0 {
        padding-top: 0!important
    }

    .pr-4kplus-0,.px-4kplus-0 {
        padding-right: 0!important
    }

    .pb-4kplus-0,.py-4kplus-0 {
        padding-bottom: 0!important
    }

    .pl-4kplus-0,.px-4kplus-0 {
        padding-left: 0!important
    }

    .p-4kplus-1 {
        padding: .25rem!important
    }

    .pt-4kplus-1,.py-4kplus-1 {
        padding-top: .25rem!important
    }

    .pr-4kplus-1,.px-4kplus-1 {
        padding-right: .25rem!important
    }

    .pb-4kplus-1,.py-4kplus-1 {
        padding-bottom: .25rem!important
    }

    .pl-4kplus-1,.px-4kplus-1 {
        padding-left: .25rem!important
    }

    .p-4kplus-2 {
        padding: .5rem!important
    }

    .pt-4kplus-2,.py-4kplus-2 {
        padding-top: .5rem!important
    }

    .pr-4kplus-2,.px-4kplus-2 {
        padding-right: .5rem!important
    }

    .pb-4kplus-2,.py-4kplus-2 {
        padding-bottom: .5rem!important
    }

    .pl-4kplus-2,.px-4kplus-2 {
        padding-left: .5rem!important
    }

    .p-4kplus-3 {
        padding: 1rem!important
    }

    .pt-4kplus-3,.py-4kplus-3 {
        padding-top: 1rem!important
    }

    .pr-4kplus-3,.px-4kplus-3 {
        padding-right: 1rem!important
    }

    .pb-4kplus-3,.py-4kplus-3 {
        padding-bottom: 1rem!important
    }

    .pl-4kplus-3,.px-4kplus-3 {
        padding-left: 1rem!important
    }

    .p-4kplus-4 {
        padding: 1.5rem!important
    }

    .pt-4kplus-4,.py-4kplus-4 {
        padding-top: 1.5rem!important
    }

    .pr-4kplus-4,.px-4kplus-4 {
        padding-right: 1.5rem!important
    }

    .pb-4kplus-4,.py-4kplus-4 {
        padding-bottom: 1.5rem!important
    }

    .pl-4kplus-4,.px-4kplus-4 {
        padding-left: 1.5rem!important
    }

    .p-4kplus-5 {
        padding: 3rem!important
    }

    .pt-4kplus-5,.py-4kplus-5 {
        padding-top: 3rem!important
    }

    .pr-4kplus-5,.px-4kplus-5 {
        padding-right: 3rem!important
    }

    .pb-4kplus-5,.py-4kplus-5 {
        padding-bottom: 3rem!important
    }

    .pl-4kplus-5,.px-4kplus-5 {
        padding-left: 3rem!important
    }

    .m-4kplus-n1 {
        margin: -.25rem!important
    }

    .mt-4kplus-n1,.my-4kplus-n1 {
        margin-top: -.25rem!important
    }

    .mr-4kplus-n1,.mx-4kplus-n1 {
        margin-right: -.25rem!important
    }

    .mb-4kplus-n1,.my-4kplus-n1 {
        margin-bottom: -.25rem!important
    }

    .ml-4kplus-n1,.mx-4kplus-n1 {
        margin-left: -.25rem!important
    }

    .m-4kplus-n2 {
        margin: -.5rem!important
    }

    .mt-4kplus-n2,.my-4kplus-n2 {
        margin-top: -.5rem!important
    }

    .mr-4kplus-n2,.mx-4kplus-n2 {
        margin-right: -.5rem!important
    }

    .mb-4kplus-n2,.my-4kplus-n2 {
        margin-bottom: -.5rem!important
    }

    .ml-4kplus-n2,.mx-4kplus-n2 {
        margin-left: -.5rem!important
    }

    .m-4kplus-n3 {
        margin: -1rem!important
    }

    .mt-4kplus-n3,.my-4kplus-n3 {
        margin-top: -1rem!important
    }

    .mr-4kplus-n3,.mx-4kplus-n3 {
        margin-right: -1rem!important
    }

    .mb-4kplus-n3,.my-4kplus-n3 {
        margin-bottom: -1rem!important
    }

    .ml-4kplus-n3,.mx-4kplus-n3 {
        margin-left: -1rem!important
    }

    .m-4kplus-n4 {
        margin: -1.5rem!important
    }

    .mt-4kplus-n4,.my-4kplus-n4 {
        margin-top: -1.5rem!important
    }

    .mr-4kplus-n4,.mx-4kplus-n4 {
        margin-right: -1.5rem!important
    }

    .mb-4kplus-n4,.my-4kplus-n4 {
        margin-bottom: -1.5rem!important
    }

    .ml-4kplus-n4,.mx-4kplus-n4 {
        margin-left: -1.5rem!important
    }

    .m-4kplus-n5 {
        margin: -3rem!important
    }

    .mt-4kplus-n5,.my-4kplus-n5 {
        margin-top: -3rem!important
    }

    .mr-4kplus-n5,.mx-4kplus-n5 {
        margin-right: -3rem!important
    }

    .mb-4kplus-n5,.my-4kplus-n5 {
        margin-bottom: -3rem!important
    }

    .ml-4kplus-n5,.mx-4kplus-n5 {
        margin-left: -3rem!important
    }

    .m-4kplus-auto {
        margin: auto!important
    }

    .mt-4kplus-auto,.my-4kplus-auto {
        margin-top: auto!important
    }

    .mr-4kplus-auto,.mx-4kplus-auto {
        margin-right: auto!important
    }

    .mb-4kplus-auto,.my-4kplus-auto {
        margin-bottom: auto!important
    }

    .ml-4kplus-auto,.mx-4kplus-auto {
        margin-left: auto!important
    }
}

.Layout__row {
    direction: ltr
}

.Layout--equalHeights .Layout__row {
    display: flex
}

.Layout--equalHeights [class*=Layout__col-] {
    float: none
}

.Layout--flexboxUnsupported .Layout--equalHeights {
    display: table
}

.Layout--flexboxUnsupported .Layout--equalHeights .Layout__row {
    display: table-row
}

.Layout--flexboxUnsupported .Layout--equalHeights [class*=Layout__col-] {
    display: table-cell
}

.Layout__snap--xleft {
    position: absolute;
    left: 0;
    text-align: left
}

.Layout__snap--xcenter {
    position: absolute;
    left: 50%;
    transform: translate(-50%);
    text-align: center
}

.Layout__snap--xright {
    position: absolute;
    right: 0;
    text-align: right
}

.Layout__flex--xcenter {
    justify-content: center;
    text-align: center
}

.Layout__flex--xleft {
    justify-content: flex-start;
    text-align: left
}

.Layout__flex--xright {
    justify-content: flex-end;
    text-align: right
}

.Layout__snap--ytop {
    position: absolute;
    top: 0
}

.Layout__snap--ycenter {
    position: absolute;
    top: 50%;
    transform: translateY(-50%)
}

.Layout__snap--ybottom {
    position: absolute;
    bottom: 0
}

.Layout__flex--ycenter {
    align-items: center
}

.Layout__flex--ytop {
    align-items: flex-start
}

.Layout__flex--ybottom {
    align-items: flex-end
}

.Layout__snap--ycenter.Layout__snap--xcenter {
    left: 50%;
    transform: translate(-50%);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transform: translate(-50%,-50%);
    text-align: center
}

.Layout__col-xs-center {
    margin-right: auto;
    margin-left: auto
}

.Layout__col-xs-right {
    margin-right: 0;
    margin-left: auto
}

.Layout__col-xs-left {
    margin-right: auto;
    margin-left: 0
}

@media (min-width: 620px) {
    .Layout__col-sm-center {
        margin-right:auto;
        margin-left: auto
    }

    .Layout__col-sm-right {
        margin-right: 0;
        margin-left: auto
    }

    .Layout__col-sm-left {
        margin-right: auto;
        margin-left: 0
    }
}

@media (min-width: 900px) {
    .Layout__col-md-center {
        margin-right:auto;
        margin-left: auto
    }

    .Layout__col-md-right {
        margin-right: 0;
        margin-left: auto
    }

    .Layout__col-md-left {
        margin-right: auto;
        margin-left: 0
    }
}

@media (min-width: 1100px) {
    .Layout__col-lg-center {
        margin-right:auto;
        margin-left: auto
    }

    .Layout__col-lg-right {
        margin-right: 0;
        margin-left: auto
    }

    .Layout__col-lg-left {
        margin-right: auto;
        margin-left: 0
    }
}

@media (min-width: 1400px) {
    .Layout__col-xl-center {
        margin-right:auto;
        margin-left: auto
    }

    .Layout__col-xl-right {
        margin-right: 0;
        margin-left: auto
    }

    .Layout__col-xl-left {
        margin-right: auto;
        margin-left: 0
    }
}

@media (min-width: 1750px) {
    .Layout__col-xxl-center {
        margin-right:auto;
        margin-left: auto
    }

    .Layout__col-xxl-right {
        margin-right: 0;
        margin-left: auto
    }

    .Layout__col-xxl-left {
        margin-right: auto;
        margin-left: 0
    }
}

@media (min-width: 2000px) {
    .Layout__col-xxxl-center {
        margin-right:auto;
        margin-left: auto
    }

    .Layout__col-xxxl-right {
        margin-right: 0;
        margin-left: auto
    }

    .Layout__col-xxxl-left {
        margin-right: auto;
        margin-left: 0
    }
}

@media (min-width: 2600px) {
    .Layout__col-xxxxl-center {
        margin-right:auto;
        margin-left: auto
    }

    .Layout__col-xxxxl-right {
        margin-right: 0;
        margin-left: auto
    }

    .Layout__col-xxxxl-left {
        margin-right: auto;
        margin-left: 0
    }
}

@media (min-width: 3200px) {
    .Layout__col-4k-center {
        margin-right:auto;
        margin-left: auto
    }

    .Layout__col-4k-right {
        margin-right: 0;
        margin-left: auto
    }

    .Layout__col-4k-left {
        margin-right: auto;
        margin-left: 0
    }
}

@media (min-width: 4000px) {
    .Layout__col-4kplus-center {
        margin-right:auto;
        margin-left: auto
    }

    .Layout__col-4kplus-right {
        margin-right: 0;
        margin-left: auto
    }

    .Layout__col-4kplus-left {
        margin-right: auto;
        margin-left: 0
    }
}

@media (min-width: 620px) and (max-width:899px) {
    .Layout__offset-sm-0 {
        margin-left:auto;
        margin-right: auto
    }
}

.Levels--thePits {
    z-index: -30
}

.Levels--underground {
    z-index: -20
}

.Levels--basement {
    z-index: -10
}

.Levels--groundZero {
    z-index: 0
}

.Levels--one {
    z-index: 15
}

.Levels--two {
    z-index: 25
}

.Levels--three {
    z-index: 35
}

.Levels--four {
    z-index: 45
}

.Levels--five {
    z-index: 55
}

.Levels--six {
    z-index: 65
}

.Levels--seven {
    z-index: 75
}

.Levels--eight {
    z-index: 85
}

.Levels--nine {
    z-index: 95
}

.Levels--ten {
    z-index: 105
}

.Levels--god {
    z-index: 1000
}

.Levels--header {
    z-index: 200
}

.Levels--hamburger {
    z-index: 220
}

.Levels--mobileNav {
    z-index: 210
}

.Body--hasLightbox {
    -ms-overflow-style: none;
    overflow: hidden
}

.Body--hasLightbox .HeaderBarContainer,.Body--hasLightbox article {
    z-index: -1
}

.section-thumbnail-container .MediaGallery .Layout {
    min-width: 70%
}

.MediaGallery--Narrow {
    margin: 0 auto
}

@media (min-width: 620px) {
    .MediaGallery--Narrow .Layout {
        width:85%;
        min-width: 550px
    }
}

@media (min-width: 900px) {
    .MediaGallery--Narrow .Layout {
        width:70%
    }
}

@media (min-width: 1100px) {
    .MediaGallery--Narrow .Layout {
        max-width:900px;
        width: 50%;
        min-width: 600px
    }
}

.MediaGallery--Full,.MediaGallery--Wide {
    margin: 0 auto
}

.MediaGallery--Full .Layout {
    max-width: 100%
}

.MediaGallery__row {
    display: flex
}

@media (hover: none) and (pointer:coarse) {
    .MediaGallery__row:first-child:after {
        content:"";
        pointer-events: none;
        background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFAAAABQCAYAAACOEfKtAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA0hJREFUeNrsnLFrVEEQxufiKZp7QU1hKiHYiQZFLDQBsdPCi6KFCmrlf6aC2BljodhIvGhEJWotXCFWBsXLmSKYc4a3oIZ7vDe77433ZmfggxQXlvvdzre7b2ZfYzAYTAFAH3TEOOotaq/QeL0GAgRlsYaalBpsDJUogkczsCE4Xm8MLIJnoIUBNIBlBfnffskBm8oAbqHeo/ahim4v6HOfUUd94GsDuIE67vF/p1CLNgP94gjqKWrCAPJjBvXBFhG/oFR/ZauwX8y6M/O4AfSD12F8928G8F/P6zA+fxX10gD6ed5l1APUtK3CadouMSbMRdSC+3tX7ABnmWnb3rap3oo5hbmed5N7ItEMkOt5t1B37SQS7nnRAwz1vKg30lzPuxECTxtAH8+7FzpoU1HavoDiFTlvz9MIUNTztKWwhOdNapyB9MOfRT0S8LwuaicMr7H0qbWDOhPWawZwN+orqiXgeXtQOzIAJnUFSDGHeuZginmeJg8k7ztd9T4vJ5K6LyKrzgt/VbXPi2Ej/Rx1EtKa8N+ed0dqNdMQqy6du27mLUgNXOdFZFjQdmNTcLxE28OETekBrb3NABpAA2gALQygATSABtDCAOoHSAf+j6gTBpAfVLelbni6j7GkBaIUQHr8/g7+3Ayl3uQ3kJYkDWBOZBW9G24mHq47wCqfBebVbWn8FdSxugKkB6oHMiDSl6Naw0aA53Wg2FUCuqs2DcNrG6McCRXW6b5EKwNgF/zunnF6VaiF9jbktNKOahBAekFD1j2xQ57wOszPr2hdRNZK9rzt0a4zvLJXYW5/3hWotugtlsJlbVU4Pcnn3KYaDCDf885rgVdGCnM97zrqiT1M8PM8avS5D8qiGZC2HM+rtMWsbgC5nncB9RiUBjeFfXqS1cIrArAR4Hki/Xl1SeEZd2YuOmPngdcArnYGfoL0Mfxr5oIRBbwiM5BeSrPM9LxFiCjyZtWUeZ7MWXg+prQtG2A7trQt8yx8KWZ4IQCphnIN9RAiDyoq/QD+q996kL7R5yCk98iKBo11BvwLVaMWiS/AkJgAPdcqxK85fIfir+aMYhGJPgygAfz/ACUXEPK/viJ+63QS+SII8ac7X2uB2PotwACJk6iKUeximQAAAABJRU5ErkJggg==) center no-repeat;
        background-size: 70%;
        display: block;
        position: absolute;
        top: 9px;
        right: 5px;
        background-color: #0003;
        color: #fff;
        width: 20px;
        height: 20px;
        border-radius: 3px
    }
}

.MediaGallery__row--1 .MediaGallery__cell {
    height: 50vh;
    min-height: 300px
}

.MediaGallery--Narrow .MediaGallery__row--1 .MediaGallery__cell {
    height: 40vh
}

.MediaGallery--Full .MediaGallery__row--1 .MediaGallery__cell {
    height: 60vh
}

@media (orientation: portrait) {
    .MediaGallery .MediaGallery__row--1 .MediaGallery__cell {
        height:35vh;
        min-height: 0
    }
}

.MediaGallery__row--2 .MediaGallery__cell {
    height: 30vh;
    min-height: 200px
}

.MediaGallery--Narrow .MediaGallery__row--2 .MediaGallery__cell {
    height: 20vh
}

.MediaGallery--Full .MediaGallery__row--2 .MediaGallery__cell {
    height: 40vh
}

@media (orientation: portrait) {
    .MediaGallery .MediaGallery__row--2 .MediaGallery__cell {
        height:20vh;
        min-height: 0
    }
}

.MediaGallery__row--3 .MediaGallery__cell {
    height: 25vh;
    min-height: 140px
}

.MediaGallery--Narrow .MediaGallery__row--3 .MediaGallery__cell {
    height: 15vh
}

.MediaGallery--Full .MediaGallery__row--3 .MediaGallery__cell {
    height: 30vh
}

@media (orientation: portrait) {
    .MediaGallery .MediaGallery__row--3 .MediaGallery__cell {
        height:15vh;
        min-height: 0
    }
}

.MediaGallery__row--4 .MediaGallery__cell {
    height: 20vh;
    min-height: 100px
}

.MediaGallery--Narrow .MediaGallery__row--4 .MediaGallery__cell {
    height: 10vh
}

.MediaGallery--Full .MediaGallery__row--4 .MediaGallery__cell {
    height: 20vh
}

@media (orientation: portrait) {
    .MediaGallery .MediaGallery__row--4 .MediaGallery__cell {
        height:10vh;
        min-height: 0
    }
}

.MediaGallery__cell {
    width: 100%;
    flex-grow: 1;
    flex-shrink: 1;
    border: none;
    background: 0 0;
    display: block;
    padding: 0
}

.MediaGallery__cell:focus {
    outline: 2px solid #000
}

.section-thumbnail-container .MediaGallery__cell {
    min-height: 37vh
}

.MediaGallery__cell img,.MediaGallery__cell video {
    transition: transform .15s ease-in-out
}

.MediaGallery__cell.MediaGallery__cell--size1 {
    width: 25%
}

.MediaGallery__cell.MediaGallery__cell--size2 {
    width: 50%
}

.MediaGallery__cell.MediaGallery__cell--size3 {
    width: 100%
}

body:not(.body-editor) .MediaGallery__cell:focus,body:not(.body-editor) .MediaGallery__cell:hover {
    cursor: zoom-in
}

body:not(.body-editor) .MediaGallery__cell:focus img,body:not(.body-editor) .MediaGallery__cell:focus video,body:not(.body-editor) .MediaGallery__cell:hover img,body:not(.body-editor) .MediaGallery__cell:hover video {
    transform: scale(1.03)
}

.MediaGallery__cell:focus .Caption--hasOverlay,.MediaGallery__cell:hover .Caption--hasOverlay {
    bottom: 0;
    opacity: 1
}

.MediaGallery__cell .Caption--hasOverlay {
    position: absolute;
    bottom: -2em;
    opacity: 0;
    width: 100%;
    transition: .15s ease-in-out
}

.MediaGallery__cell .Caption--hasOverlay .Layout {
    max-width: 100%;
    min-width: 0;
    width: 100%
}

.MediaGallery__cell .Caption--hasOverlay p:not(:empty) {
    padding-left: 1em;
    padding-right: 1em;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden
}

.MediaGallery--lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    background: rgba(34,34,34,.95);
    backdrop-filter: blur(5px);
    transition: opacity .25s ease-out;
    transform: translateY(105%);
    opacity: 0;
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right)
}

.MediaGallery--lightbox.MediaGallery--lightbox--open {
    transform: translateY(0);
    opacity: 1
}

.MediaGallery--lightbox .MediaGallery--lightbox__inner {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 40px 30px
}

@media (min-width: 620px) {
    .MediaGallery--lightbox .MediaGallery--lightbox__inner {
        padding:4vw 4.5vw
    }
}

.MediaGallery--lightbox .MediaGallery--lightbox__counter {
    opacity: .01
}

.MediaGallery--lightbox .MediaGallery--lightbox__media {
    position: relative;
    width: 100%;
    height: 100%
}

.MediaGallery--lightbox .MediaGallery--lightbox__media .MediaGallery--lightbox__item {
    position: absolute;
    inset: 0;
    display: none;
    opacity: 0;
    transition: opacity .5s ease-out
}

.MediaGallery--lightbox .MediaGallery--lightbox__media .MediaGallery--lightbox__item.active {
    display: block;
    opacity: 1
}

.MediaGallery--lightbox .MediaGallery--lightbox__media .MediaGallery--lightbox__item video:focus {
    border: 1px solid #fff
}

.MediaGallery--lightbox .MediaGallery--lightbox__media .Lazyload__loading {
    display: none
}

.MediaGallery--lightbox .MediaGallery--lightbox__media .FullSize--fullHeight {
    position: relative
}

.MediaGallery--lightbox__controls button[data-action] {
    position: absolute;
    z-index: 1000;
    width: 50px;
    padding: 0;
    border: none;
    background-color: transparent;
    cursor: pointer;
    transition: .15s ease;
    -webkit-tap-highlight-color: transparent
}

@media (hover: hover) and (pointer:fine) {
    .MediaGallery--lightbox__controls button[data-action]:hover {
        opacity:.6
    }
}

.MediaGallery--lightbox__controls button[data-action]:focus {
    outline: 0;
    background: rgba(255,255,255,.2)
}

.MediaGallery--lightbox__controls .MediaGallery__iconLine {
    display: block;
    height: 2px;
    width: 80%;
    position: absolute;
    background-color: #fff;
    border-radius: 2px
}

.MediaGallery--lightbox__controls button[data-action=close] {
    top: 0;
    right: 0;
    width: 50px;
    height: 60px;
    z-index: 2
}

@media (hover: none) and (pointer:coarse) and (orientation:landscape) {
    .MediaGallery--lightbox__controls button[data-action=close] {
        top:20px
    }
}

.MediaGallery--lightbox__controls button[data-action=close] .MediaGallery__iconLine {
    width: 60%
}

.MediaGallery--lightbox__controls button[data-action=close] .MediaGallery__iconLine:first-child {
    transform: rotate(45deg);
    left: 4px
}

.MediaGallery--lightbox__controls button[data-action=close] .MediaGallery__iconLine:last-child {
    transform: rotate(-45deg);
    left: 4px
}

.MediaGallery--lightbox__controls button[data-action=previous] {
    z-index: 1;
    height: 100%;
    top: 0;
    left: 0
}

@media (hover: hover) and (pointer:fine) {
    .MediaGallery--lightbox__controls button[data-action=previous]:hover {
        margin-left:-5px
    }
}

.MediaGallery--lightbox__controls button[data-action=previous] .MediaGallery__iconLine {
    width: 18px
}

.MediaGallery--lightbox__controls button[data-action=previous] .MediaGallery__iconLine:first-child {
    transform: rotate(-45deg);
    margin-top: -12px;
    left: 15px
}

.MediaGallery--lightbox__controls button[data-action=previous] .MediaGallery__iconLine:last-child {
    transform: rotate(45deg);
    left: 15px
}

.MediaGallery--lightbox__controls button[data-action=next] {
    z-index: 1;
    height: 100%;
    top: 0;
    right: 0
}

@media (hover: hover) and (pointer:fine) {
    .MediaGallery--lightbox__controls button[data-action=next]:hover {
        margin-right:-5px
    }
}

.MediaGallery--lightbox__controls button[data-action=next] .MediaGallery__iconLine {
    width: 18px
}

.MediaGallery--lightbox__controls button[data-action=next] .MediaGallery__iconLine:first-child {
    margin-top: -12px;
    right: 15px;
    transform: rotate(45deg)
}

.MediaGallery--lightbox__controls button[data-action=next] .MediaGallery__iconLine:last-child {
    right: 15px;
    transform: rotate(-45deg)
}

.Navigation {
    text-align: center
}

.Navigation__itemList {
    margin: 0;
    padding: 0;
    list-style: none
}

@media (min-width: 1100px) {
    .Navigation {
        display:flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap
    }

    .Navigation__item {
        margin: 0 .5rem
    }
}

@media (max-width: 1099.98px) {
    .Navigation {
        z-index:210;
        position: fixed;
        top: 60px;
        right: -110%!important;
        bottom: 0;
        width: 100vw;
        transition: right .15s ease-in-out;
        overflow-y: scroll;
        background-color: #000c;
        opacity: 0
    }

    .Navigation--isActive {
        right: 0!important;
        opacity: 1
    }

    .Navigation__item {
        display: block;
        width: 100%;
        padding: 2vh 0;
        margin: 0;
        color: #fff;
        text-decoration: none;
        border-bottom: 1px solid rgba(255,255,255,.15)
    }

    .Navigation__item:hover {
        text-decoration: underline;
        background-color: #ffffff26
    }
}

.Navigation__hamburger {
    z-index: 220;
    height: 32px;
    width: 32px;
    cursor: pointer;
    transform: rotate(0);
    margin-top: -14.5454545455px
}

button.Navigation__hamburger {
    border: none;
    outline: 0;
    background-color: transparent
}

.Navigation__hamburger span {
    display: block;
    position: absolute;
    width: 100%;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    transform: rotate(0);
    transition: .15s ease-in-out
}

.Navigation__hamburger span:nth-child(1) {
    top: 5px
}

.Navigation__hamburger span:nth-child(2),.Navigation__hamburger span:nth-child(3) {
    top: 13px
}

.Navigation__hamburger span:nth-child(4) {
    top: 21px
}

.Navigation__hamburger--initializing {
    opacity: 0;
    pointer-events: none
}

.Navigation__hamburger[aria-expanded=true] span:nth-child(1) {
    top: 21px;
    width: 0;
    left: 50%
}

.Navigation__hamburger[aria-expanded=true] span:nth-child(2) {
    transform: rotate(45deg)
}

.Navigation__hamburger[aria-expanded=true] span:nth-child(3) {
    transform: rotate(-45deg)
}

.Navigation__hamburger[aria-expanded=true] span:nth-child(4) {
    top: 20px;
    width: 0;
    left: 50%
}

html {
    -webkit-text-size-adjust: 100%
}

body {
    margin: 0
}

hr {
    box-sizing: content-box
}

img {
    border-style: none
}

pre {
    font-family: monospace,monospace;
    font-size: .9em
}

sub,sup {
    vertical-align: baseline
}

canvas,video {
    display: block
}

.Overflow--clipped {
    clip-path: inset(-.5px)
}

.PositionSticky {
    position: -webkit-sticky;
    top: 0;
    /* position: sticky */
}

.StickyPolyfillElement--top {
    position: absolute;
    top: 0
}

.StickyPolyfillElement--stick {
    position: fixed;
    top: 0
}

.StickyPolyfillElement--bottom {
    position: absolute;
    top: auto!important;
    bottom: 0
}

.Theme-RelatedStoriesSection .Layer--one {
    z-index: initial
}

.Theme-RelatedStoriesSection .Layer--one .Layout {
    z-index: 100
}

.related-stories-list .Theme-Layer-BodyText {
    padding-top: 0;
    padding-bottom: 0
}

.related-stories-list ul {
    list-style: none;
    padding: 0;
    margin: 0 auto
}

.related-stories-list li {
    width: 100%;
    display: flex;
    justify-content: center
}

.related-stories-list-item {
    width: 100%;
    display: flex;
    justify-content: center;
    position: relative
}

.Theme-RelatedStories--List .related-story-card .related-story-text {
    width: 100%
}

@media (max-width: 1099.98px) {
    .Theme-RelatedStories--List .Theme-Layer-BodyText {
        padding:0
    }
}

.Theme-RelatedStories--Card .Theme-Layer-BodyText,.Theme-RelatedStories--Title .Theme-Layer-BodyText,.Theme-RelatedStories--TitleFullFirstRow .Theme-Layer-BodyText,.Theme-RelatedStories--TitleSplitFirstRow .Theme-Layer-BodyText,.Theme-RelatedStories--TitleTallFirstItem .Theme-Layer-BodyText,.Theme-RelatedStories--TitleTallWideFirstItem .Theme-Layer-BodyText,.Theme-RelatedStories--TitleWideFirstItem .Theme-Layer-BodyText {
    padding: 0
}

.Theme-RelatedStories--Title picture,.Theme-RelatedStories--TitleFullFirstRow picture,.Theme-RelatedStories--TitleSplitFirstRow picture,.Theme-RelatedStories--TitleTallFirstItem picture,.Theme-RelatedStories--TitleTallWideFirstItem picture,.Theme-RelatedStories--TitleWideFirstItem picture {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0
}

.Theme-RelatedStories--Title .crop-circle,.Theme-RelatedStories--Title .crop-landscape,.Theme-RelatedStories--Title .crop-portrait,.Theme-RelatedStories--Title .crop-square,.Theme-RelatedStories--TitleFullFirstRow .crop-circle,.Theme-RelatedStories--TitleFullFirstRow .crop-landscape,.Theme-RelatedStories--TitleFullFirstRow .crop-portrait,.Theme-RelatedStories--TitleFullFirstRow .crop-square,.Theme-RelatedStories--TitleSplitFirstRow .crop-circle,.Theme-RelatedStories--TitleSplitFirstRow .crop-landscape,.Theme-RelatedStories--TitleSplitFirstRow .crop-portrait,.Theme-RelatedStories--TitleSplitFirstRow .crop-square,.Theme-RelatedStories--TitleTallFirstItem .crop-circle,.Theme-RelatedStories--TitleTallFirstItem .crop-landscape,.Theme-RelatedStories--TitleTallFirstItem .crop-portrait,.Theme-RelatedStories--TitleTallFirstItem .crop-square,.Theme-RelatedStories--TitleTallWideFirstItem .crop-circle,.Theme-RelatedStories--TitleTallWideFirstItem .crop-landscape,.Theme-RelatedStories--TitleTallWideFirstItem .crop-portrait,.Theme-RelatedStories--TitleTallWideFirstItem .crop-square,.Theme-RelatedStories--TitleWideFirstItem .crop-circle,.Theme-RelatedStories--TitleWideFirstItem .crop-landscape,.Theme-RelatedStories--TitleWideFirstItem .crop-portrait,.Theme-RelatedStories--TitleWideFirstItem .crop-square {
    padding: 0
}

.Theme-RelatedStories--Title .crop-circle picture,.Theme-RelatedStories--Title .crop-landscape picture,.Theme-RelatedStories--Title .crop-portrait picture,.Theme-RelatedStories--Title .crop-square picture,.Theme-RelatedStories--TitleFullFirstRow .crop-circle picture,.Theme-RelatedStories--TitleFullFirstRow .crop-landscape picture,.Theme-RelatedStories--TitleFullFirstRow .crop-portrait picture,.Theme-RelatedStories--TitleFullFirstRow .crop-square picture,.Theme-RelatedStories--TitleSplitFirstRow .crop-circle picture,.Theme-RelatedStories--TitleSplitFirstRow .crop-landscape picture,.Theme-RelatedStories--TitleSplitFirstRow .crop-portrait picture,.Theme-RelatedStories--TitleSplitFirstRow .crop-square picture,.Theme-RelatedStories--TitleTallFirstItem .crop-circle picture,.Theme-RelatedStories--TitleTallFirstItem .crop-landscape picture,.Theme-RelatedStories--TitleTallFirstItem .crop-portrait picture,.Theme-RelatedStories--TitleTallFirstItem .crop-square picture,.Theme-RelatedStories--TitleTallWideFirstItem .crop-circle picture,.Theme-RelatedStories--TitleTallWideFirstItem .crop-landscape picture,.Theme-RelatedStories--TitleTallWideFirstItem .crop-portrait picture,.Theme-RelatedStories--TitleTallWideFirstItem .crop-square picture,.Theme-RelatedStories--TitleWideFirstItem .crop-circle picture,.Theme-RelatedStories--TitleWideFirstItem .crop-landscape picture,.Theme-RelatedStories--TitleWideFirstItem .crop-portrait picture,.Theme-RelatedStories--TitleWideFirstItem .crop-square picture {
    overflow: visible;
    padding: 0
}

.Theme-RelatedStories--Title .crop-circle img,.Theme-RelatedStories--Title .crop-landscape img,.Theme-RelatedStories--Title .crop-portrait img,.Theme-RelatedStories--Title .crop-square img,.Theme-RelatedStories--TitleFullFirstRow .crop-circle img,.Theme-RelatedStories--TitleFullFirstRow .crop-landscape img,.Theme-RelatedStories--TitleFullFirstRow .crop-portrait img,.Theme-RelatedStories--TitleFullFirstRow .crop-square img,.Theme-RelatedStories--TitleSplitFirstRow .crop-circle img,.Theme-RelatedStories--TitleSplitFirstRow .crop-landscape img,.Theme-RelatedStories--TitleSplitFirstRow .crop-portrait img,.Theme-RelatedStories--TitleSplitFirstRow .crop-square img,.Theme-RelatedStories--TitleTallFirstItem .crop-circle img,.Theme-RelatedStories--TitleTallFirstItem .crop-landscape img,.Theme-RelatedStories--TitleTallFirstItem .crop-portrait img,.Theme-RelatedStories--TitleTallFirstItem .crop-square img,.Theme-RelatedStories--TitleTallWideFirstItem .crop-circle img,.Theme-RelatedStories--TitleTallWideFirstItem .crop-landscape img,.Theme-RelatedStories--TitleTallWideFirstItem .crop-portrait img,.Theme-RelatedStories--TitleTallWideFirstItem .crop-square img,.Theme-RelatedStories--TitleWideFirstItem .crop-circle img,.Theme-RelatedStories--TitleWideFirstItem .crop-landscape img,.Theme-RelatedStories--TitleWideFirstItem .crop-portrait img,.Theme-RelatedStories--TitleWideFirstItem .crop-square img {
    overflow: visible;
    border-radius: 0;
    transform: none
}

.Theme-RelatedStoriesSection .Theme-RelatedStories--TitleSplitFirstRow .related-stories-list ul li {
    width: 33.333%;
    aspect-ratio: 16/9
}

.Theme-RelatedStoriesSection .Theme-RelatedStories--TitleSplitFirstRow .related-stories-list ul li:nth-of-type(1) {
    width: 50%
}

.Theme-RelatedStoriesSection .Theme-RelatedStories--TitleSplitFirstRow .related-stories-list ul li:nth-of-type(2) {
    width: 50%
}

@media screen and (max-width: 900px) {
    .Theme-RelatedStoriesSection .Theme-RelatedStories--TitleSplitFirstRow .related-stories-list ul {
        display:block
    }

    .Theme-RelatedStoriesSection .Theme-RelatedStories--TitleSplitFirstRow .related-stories-list ul li,.Theme-RelatedStoriesSection .Theme-RelatedStories--TitleSplitFirstRow .related-stories-list ul li:nth-of-type(1),.Theme-RelatedStoriesSection .Theme-RelatedStories--TitleSplitFirstRow .related-stories-list ul li:nth-of-type(2) {
        aspect-ratio: auto;
        width: 100%
    }
}

.Theme-RelatedStoriesSection .Theme-RelatedStories--TitleFullFirstRow .related-stories-list ul {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    max-width: 1400px;
    margin: auto
}

.Theme-RelatedStoriesSection .Theme-RelatedStories--TitleFullFirstRow .related-stories-list ul li {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16/9
}

.Theme-RelatedStoriesSection .Theme-RelatedStories--TitleFullFirstRow .related-stories-list ul li:nth-of-type(1) {
    grid-column-end: span 3
}

@media screen and (max-width: 900px) {
    .Theme-RelatedStoriesSection .Theme-RelatedStories--TitleFullFirstRow .related-stories-list ul {
        display:block
    }

    .Theme-RelatedStoriesSection .Theme-RelatedStories--TitleFullFirstRow .related-stories-list ul li,.Theme-RelatedStoriesSection .Theme-RelatedStories--TitleFullFirstRow .related-stories-list ul li:nth-of-type(1) {
        aspect-ratio: auto
    }
}

.Theme-RelatedStoriesSection .Theme-RelatedStories--TitleTallFirstItem .related-stories-list ul {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    max-width: 1400px;
    margin: auto
}

.Theme-RelatedStoriesSection .Theme-RelatedStories--TitleTallFirstItem .related-stories-list ul li {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16/9
}

.Theme-RelatedStoriesSection .Theme-RelatedStories--TitleTallFirstItem .related-stories-list ul li:nth-of-type(1) {
    grid-row-end: span 2;
    aspect-ratio: auto
}

@media screen and (max-width: 900px) {
    .Theme-RelatedStoriesSection .Theme-RelatedStories--TitleTallFirstItem .related-stories-list ul {
        display:block
    }

    .Theme-RelatedStoriesSection .Theme-RelatedStories--TitleTallFirstItem .related-stories-list ul li,.Theme-RelatedStoriesSection .Theme-RelatedStories--TitleTallFirstItem .related-stories-list ul li:nth-of-type(1) {
        aspect-ratio: auto
    }
}

.Theme-RelatedStoriesSection .Theme-RelatedStories--TitleWideFirstItem .related-stories-list ul {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    max-width: 1400px;
    margin: auto
}

.Theme-RelatedStoriesSection .Theme-RelatedStories--TitleWideFirstItem .related-stories-list ul li {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16/9
}

.Theme-RelatedStoriesSection .Theme-RelatedStories--TitleWideFirstItem .related-stories-list ul li:nth-of-type(1) {
    grid-column-end: span 2;
    aspect-ratio: auto
}

.Theme-RelatedStoriesSection .Theme-RelatedStories--TitleWideFirstItem .related-stories-list ul li:nth-of-type(2) {
    aspect-ratio: auto
}

@media screen and (max-width: 900px) {
    .Theme-RelatedStoriesSection .Theme-RelatedStories--TitleWideFirstItem .related-stories-list ul {
        display:block
    }

    .Theme-RelatedStoriesSection .Theme-RelatedStories--TitleWideFirstItem .related-stories-list ul li,.Theme-RelatedStoriesSection .Theme-RelatedStories--TitleWideFirstItem .related-stories-list ul li:nth-of-type(1) {
        aspect-ratio: auto
    }
}

.Theme-RelatedStoriesSection .Theme-RelatedStories--TitleTallWideFirstItem .related-stories-list ul {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    max-width: 1400px;
    margin: auto
}

.Theme-RelatedStoriesSection .Theme-RelatedStories--TitleTallWideFirstItem .related-stories-list ul li {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16/9
}

.Theme-RelatedStoriesSection .Theme-RelatedStories--TitleTallWideFirstItem .related-stories-list ul li:nth-of-type(1) {
    grid-row-end: span 2;
    grid-column-end: span 2;
    aspect-ratio: auto
}

@media screen and (max-width: 900px) {
    .Theme-RelatedStoriesSection .Theme-RelatedStories--TitleTallWideFirstItem .related-stories-list ul {
        display:block
    }

    .Theme-RelatedStoriesSection .Theme-RelatedStories--TitleTallWideFirstItem .related-stories-list ul li,.Theme-RelatedStoriesSection .Theme-RelatedStories--TitleTallWideFirstItem .related-stories-list ul li:nth-of-type(1) {
        aspect-ratio: auto
    }
}

.related-stories-site-map li {
    font-weight: 700
}

.related-stories-site-map ul ul {
    margin: 0;
    list-style-type: revert
}

.related-stories-site-map ul ul li {
    font-weight: 400;
    font-size: 90%
}

.related-stories-site-map ul ul ul li {
    font-style: italic
}

.related-story-card {
    display: flex;
    color: inherit;
    text-decoration: none
}

.related-story-card:hover {
    text-decoration: none;
    color: inherit
}

.related-story-card img {
    display: block;
    width: 100%;
    height: 100%
}

.related-story-image .crop-undefined {
    height: 100%
}

@media (orientation: portrait) {
    .Responsive--hide-portrait {
        display:none!important
    }
}

@media (orientation: landscape) {
    .Responsive--hide-landscape {
        display:none!important
    }
}

.SectionError {
    text-align: center;
    padding: 20px 30px;
    display: block;
    color: #fff
}

.SectionError .SectionError__text {
    color: #fff;
    margin: 0 auto;
    font-family: sans-serif;
    font-size: 18px;
    line-height: 1.2
}

.SectionError .SectionError__icon {
    display: block;
    margin: -10px auto 5px;
    width: 50px;
    height: 50px;
    background: transparent url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAKwAAACgBAMAAABj3ZqQAAAAGFBMVEX///////9MaXH///////////////////9oteHBAAAACHRSTlMJBAAtXIf/v8jtaFwAAAq+SURBVHgBjNc3m1zbdQTQey5delbRIL21Scb0ZCgvpaJ7qRwwCOWhny/3XPc0zFQ2ZlVH9e0+xxKhitpIkS7Kii0CLqMvEQcLsGo6GCN1TkM2cu39yz/+4aeCl4hDGu2yMLPJ7iowZqWxffezp//N7616iTiKjGRkLDNEKNtKzmTz2dP/57fkJeKAYdsr6EbXCOmVBfGdp8/zdslLxEFWKC4yPZsRiD0hzLunL/Kv9RJx9EwrFerYGaMrjMbeKT9++jJveIk4SsiOanQXArpMmf766av83EvEQfeKvXItRIXK2kxR+93Xtf/mJeIgoWVKF+TYlVGY+t7T13ntJeIglKCqKu2E2qvCq5vat+sl4hhLlZ0L0H1uMDIlf/10kz97iTjKXjRdVe1saxtRyVX2023+/iXioGYv3UbsTbrtlFrI9+9q37xAOICWscg+KeuKJKX59tNd1qdFjqmeozRYjVVstcLK/uy+9nefFo7ISnM4GyZXB80uXYYfPt3nnz4pxoGUGEzZGoZcZyW+/6z27SfFdihzpcCR4mKLZCm/fnqWn31KcMBuoKSwpkDTXO+e1/7LJ0Qvh6hKyNQshbrsBN94ep7XnxArPdIyJpyBbFc6rUvO+s5D7dv1ceF0HBR6tKhQtVSt+ny5d/mzjwtnDyhnplLSJao622S/e6z9+48K4qCJM0JXNlvlyKb0e0+Pef1RMasOBdnrDFJLSkbpzWG4yfqY2OqwWMEQ18JGaZbls/fV/u3HROwco6u09OxKqoEYuVvuzX4/IgoH9fUfpqSpqdD1rffWvjk/LNLWIbq5Vrp6nQuxtNjm10/vzU8/LJwdhwxSm5J2zQlW7Lvl3u33Q2LouQ9qyNRaI5fVSqRyd3Pv9/shYZQjRdOVSadroU6Yyd1y7/b7IVEVB0wZTqidNDbcL/duvx8SGA47uoTVaRu6epHN3XLv8u8fEFTaYyZpLnspijU00vvDcJc3HxBgOUCuvbKdqqYOVqW/+WDt25++X+yI9OBSjmJP2RTRfb/c+/z2/ULKdiDkOqNn7YGsbO3z5d7t971iTCtzMNKzUzspsTZ059VHat+8V2DDIau2LtolQkez4/ly7/Jn7xOdItcRNqRauIyY6n73sdp/fY+gru7lIJrpZncArq740dPH8vpR6LW5ZB+nfa69ky6MaG2svPpo7dvzUTRkDweDZs1GbNeScc79ch/z20chjUnnCHZszp7IzoQ+Lvdhvw9CSYmDVBWyndmcTXful/uYNw8iYwtyIIRsLGvqSHi23Me8/flzUcEiR1ujJ6lO0yh2ni33Mb99Ltgy6GGf6ErtNas7iOR2uW//66vc7te9qABxaAczzlSVSSSvblr/Yr7MD//m5tfPBLaednq0u9A4y5ZuyM1y/2FCNe303c1+70WB1HVsuoC5CEi7bvifd03Tkdy9/f71XuwVyZAcVTOstEtmMHZub+6fbZYre63tpvb1nchkrvNcrsyhjLQ7FGovbpf755CS9Lb27Z2waLHXPkoXinQvruy4W+6fpROE6e0ffnsrUp2yWkfFNLq6HWZPEnF/vbFS5K72729EgC6pI82KBCoXiLvl/ikWMyy3tW9uBFBsDmJFsCLpaqzj23dzqpl9ZK+4f6r+/GtBFd3iEElc5iLNXlLu8L+Y65zh4S3x26+FTsFIj4paUKygvvvwvkMG97X/9JXAotSOw8oVwQWmUa/ua9fUSkKvu9q3X4ns6G7h6BEMdqrsCvvX97W2Hc7m+d382ZdCz1Dn1UyPpKBsixhn7+2/TKUi+7zu//SvXwoWnapy5KxoBfCed+6/rAAr2fe1rxGsOEe02sNhSDMmJiOavnpWW6Cmx7MTEdF0yI6NrnFEulb2IqwGz2/u36/mc7rsh/dv4EwqV4pljmFnUkHoaq6HN+7ac0K6H/7W1RR6KDM7DiYFEXbJj57TaQuS57Vvdkm3q9UUOKKBVpeSfX77eW1STnXYj+/f7NNMa8dqMtZh7TQ9TRWSfva8FkbTmevh/kqqKJdCDmSYnp0S67hb7ue1RYr9jYfvz9Yhw07aLZseaXdXWkQz/PhBNmxcPHzmm6FWu9pYTUcOFKuKXNJfP9buHZOa+9rP95uaDKwULv9TrRn0xo0dQfg1Y1vX/kpa7JXVTu6xAkzO8UHneJForwtIoq5ODEz+fgCT48ieNySQGR22jqPmp0JTQz0WqgUlxzDvw5QZ90dYJBBEL2j6jFVLtiIA4eYlgfP8J0/mzdTBzmOi4/YxGZhl5K+QJhJ5/PZx+uoYG0lgBHGMfY4kVMDiFtQkq4XnY07I4u4YW0hgVLruvZwsOSgSKmOaaklH5OWcs++4/ToeQNz0wgVMgECQlIcGZTFESQbMTT+aqSQAdX78aMIlTKnmPTdDWmWgjXKw61xXiaRC6M10rFurNKQqE2CUGwEFOFAhcd/BSgkpTuQhv1AQRGIAQUPLTmBI0PsTEQqaj9Y97EMAwrZAVtJsOUz564r7CdWjTBCAq/cO+BQY5PK307hSzHKEk10PiwONhkHdYOwDCOZzdwR2wyBwFUM05/7EErwE01en8iuBxGG3hSADjGTe9N/ADJQN7mIfHRnImuegMQDLJ0JX/XjKtCQx9AeGr5jEEhQ0L0wLUNz1r0psy6k+dvq4ZH8hBKmWCBKNETXH9j23wkIFJ7BfAEgxlAVqRgYQQOc+z1gOdzb72CebAkNBLIGVXJLpJ1QzVlUJAe/6E7cQshOwUFtsDiCZ+xNYhQFVRB87/R0D84KtatiGgErF9dRXILDAnMA+gE3ISitp2UDYkOLnk9hFpRPYJ4WCssOjx6Hh8DCCGNHuJLZwk4pT2OljsmQopGglC4wB9tOpzQmqCPL+VH5l0OH0oyagZDO4jh96R3nC/mR+ZbBdS2QJZpbn1f6fem4hh8BkqFFgysh5N52hTyQ2iSy/7H7k/hzs51Pdjz9N5+jpVPdjN52lDye6H/fnYT/1ux9/mM7TQ7/78fOZ2Od+92M3nam/dbsf+3Ox/+p1P26mc/XY6X6sr7YTMXaWq073427Nx1CL3qwu97j7kWvztwVA1fqN/e24+7GaLQcMjsLwbvX7e9T9WBt/DkeBItHV6q8/6n7cr2IL5gu8iv3lx+7H+2kVC5YKzCr24cfux9UWluVssT74Y/djtzo9UJrnWMVOtz90P/brbt0AK8l17L+/735cT1tuy4wR2sA+ft/9uFrHRgIgwcbk8F33424DW5bFMGrDwPTxZfcj91seAglkNrC/vex+3EwbbiU7B1Rbbp9edj/ebWFHMkWRbGCneNH9uN/CJkoCO7ewn+bux5K/bO1WyDi23T78r/vx0xY2fIievIV94lv3Y7eJJWQ8UGxhp9tD92Pcby7BBhWwjf186H7cTJtuG4kKvI19PHQ/Nien27IMNuy2PSzdj+3T8pcQGMZ8v98+3CAabE9Oz/886Ndp20NBm9OXS+pp7n789cLY5w9BI++nC+uT3LieLq2HpPH24tinoVrupovrAy33l8d+HufY/tLLpd28AvYx29vXwNJ+egXsU83Y34fbR70W9o+vgXW7fg3sK33L3Hx3eezHseXVxanPg5pf4XmratTu0tjbyGbeX/imfVm6H28v/L9h6X7oza8XM/yffww+dD9q/Mul9Od62f2oiwkK+b8mBeaCsD1ZHAAAAABJRU5ErkJggg==) center no-repeat;
    background-size: 100% auto;
    opacity: .6
}

.SectionError .SectionError__heading {
    color: #fff;
    margin: 0 auto 5px;
    font-family: sans-serif;
    font-size: 30px;
    line-height: 1.2;
    font-weight: 700
}

.SectionError .SectionError__inner {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 90%;
    max-width: 800px
}

.SectionError__main {
    background-color: #292929;
    background-image: repeating-linear-gradient(-45deg,transparent,transparent 35px,rgba(255,255,255,.025) 35px,rgba(255,255,255,.025) 70px);
    animation: animatedBackground 2s linear infinite;
    background-size: 200% 100%
}

@keyframes animatedBackground {
    0% {
        background-position: 0 0
    }

    to {
        background-position: -100px 0
    }
}

.SectionError__notification {
    position: fixed;
    top: 80px;
    right: 0;
    margin-right: 20px;
    margin-left: 20px;
    background-color: #ec3f3fe6;
    border-radius: 3px;
    max-width: 600px;
    border: 4px solid rgba(255,255,255,.2)
}

.SectionError__notification .SectionError__icon {
    width: 30px;
    height: 30px
}

.SectionError__notification .SectionError__text {
    font-size: 16px
}

.Videoplayer--responsive .SectionError__main {
    position: absolute;
    inset: 0
}

.Header_socialIcons:focus-visible div {
    outline: 2px solid #12bf9c
}

.Header_socialIcons div {
    margin-right: -5px;
    margin-top: -1px
}

.InlineMedia--soundCloud {
    min-height: 1rem
}

.SoundCloudPlayer--initializing {
    background-color: #cccccc80;
    color: #222
}

.SoundCloudPlayer--initializing:before {
    content: "SoundCloud Player is loading...";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%)
}

.SplitLayout {
    display: flex;
    flex-direction: column;
    min-height: 100vh
}

@media (orientation: landscape) {
    .SplitLayout .FullSize--fullHeight {
        min-height:100vh
    }

    .SplitLayout [class*=Layer--].SplitLayout--media {
        height: initial
    }
}

@media (orientation: portrait) {
    .SplitLayout .FullSize--fullHeight {
        min-height:50vh
    }

    .DeviceDetect--isiOS10 .SplitLayout .FullSize--fullHeight.Layer--one {
        padding-top: 30vh!important;
        padding-bottom: 30vh!important
    }
}

.SplitLayout [class*=Layer--] {
    position: relative;
    height: 50%;
    width: 100%;
    overflow: hidden;
    min-height: auto
}

@media (orientation: portrait) {
    .SplitLayout.SplitLayout--columnReverse {
        flex-direction:column-reverse
    }

    .DeviceDetect--isiOS10 .SplitLayout .FullSize--scrollChild {
        height: 50vh;
        width: 100%
    }
}

@media (orientation: landscape) {
    .SplitLayout {
        flex-direction:row
    }

    .SplitLayout [class*=Layer--] {
        height: 100%;
        min-height: 100vh;
        width: 50%
    }

    .SplitLayout.SplitLayout--rowReverse {
        flex-direction: row-reverse
    }

    .DeviceDetect--isIE .SplitLayout [class*=Layer--] [class*=Layer--] {
        width: 100%
    }

    .DeviceDetect--isiOS .SplitLayout {
        height: 100%!important
    }

    .DeviceDetect--isiOS10 .SplitLayout .FullSize--fixedChild:not(.FullSize--scrollChild) {
        height: auto;
        clip: unset!important;
        clip-path: unset!important
    }

    .DeviceDetect--isiOS10 .SplitLayout .FullSize--fixedChild:not(.FullSize--scrollChild) picture {
        height: 1500vh
    }

    .DeviceDetect--isiOS10 .SplitLayout .FullSize--fixedChild:not(.FullSize--scrollChild) .Theme-Overlay {
        display: none!important
    }

    .DeviceDetect--isiOS10 .SplitLayout .FullSize--scrollChild video {
        height: 100vh
    }
}

.SplitLayout [class*=Layer--].SplitLayout--media {
    min-height: 50vh
}

@media (orientation: portrait) {
    .SplitLayout [class*=Layer--].SplitLayout--media[data-background-animation] {
        height:50vh
    }
}

.SplitLayout [class*=Layer--].SplitLayout--media.FullSize--fixedChild {
    overflow: hidden
}

.SplitLayout [class*=Layer--].SplitLayout--media.FullSize--fixedChild.Theme-Layer-background-viewport-cyclops {
    clip-path: inset(-.5px)
}

.DeviceDetect--isiOS .SplitLayout [class*=Layer--].SplitLayout--media.FullSize--fixedChild html:not(.DeviceDetect--isiOS10) {
    clip-path: inset(-.5px);
    overflow: unset
}

.DeviceDetect--isiOS10 .SplitLayout [class*=Layer--].SplitLayout--media.FullSize--scrollChild,.DeviceDetect--isiOS10 .SplitLayout [class*=Layer--].SplitLayout--media.FullSize--scrollChild .FullSize {
    padding-bottom: 0!important
}

.DeviceDetect--isFirefox .SplitLayout [class*=Layer--].SplitLayout--media picture {
    clip: rect(0,auto,auto,0)
}

.SplitLayout [class*=Layer--].SplitLayout--media .FullSize {
    inset: 0
}

.DeviceDetect--isiOS10 .SplitLayout [class*=Layer--].SplitLayout--media .FullSize {
    padding-bottom: 1500vh
}

@media (min-width: 900px) {
    .SplitLayout.Display--md-block {
        display:flex!important
    }
}

@media (orientation: portrait) {
    .Theme-TitleSection.SplitLayout--columnReverse .Theme-BackgroundImage img,.Theme-TitleSection.SplitLayout--columnReverse .Theme-BackgroundImage picture,.Theme-TitleSection.SplitLayout--columnReverse .Theme-BackgroundImage video,.Theme-TitleSection.SplitLayout--columnReverse .Theme-BackgroundModel img,.Theme-TitleSection.SplitLayout--columnReverse .Theme-BackgroundModel picture,.Theme-TitleSection.SplitLayout--columnReverse .Theme-BackgroundModel video,.Theme-TitleSection.SplitLayout--columnReverse .Theme-BackgroundVideo img,.Theme-TitleSection.SplitLayout--columnReverse .Theme-BackgroundVideo picture,.Theme-TitleSection.SplitLayout--columnReverse .Theme-BackgroundVideo video {
        top:auto;
        height: 50vh
    }
}

[data-stacked-content-fill] * {
    max-height: inherit
}

.Size__xxsmall {
    font-size: .75rem
}

.Size__xsmall {
    font-size: 1rem
}

.Size__small {
    font-size: 1.2rem
}

.Size__normal {
    font-size: 1.4rem
}

.Size__large {
    font-size: 2rem
}

.Size__xlarge {
    font-size: 3rem
}

.Size__xxlarge {
    font-size: 5rem
}

.TransitionIn--fade {
    opacity: 0;
    transition: opacity .9s cubic-bezier(.86,.01,1,1)
}

.TransitionIn--up {
    transform: translateY(5vh)
}

.TransitionIn--fadeIn {
    opacity: 1;
    transform: translateY(0)
}

.TransitionIn--fadeChildren>* {
    opacity: 0;
    transition: opacity .4s cubic-bezier(.55,.055,.675,.19);
    transition-delay: .3s
}

.TransitionIn--fadeChildren>.TransitionIn--fadeIn {
    opacity: 1
}

.video-icon-large {
    display: none;
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    padding: 10px;
    border: none;
    border-radius: 100%;
    box-shadow: 0 1px 1px #00000026;
    color: #fff;
    transition: all .3s ease;
    width: 50px;
    height: 50px;
    background: rgba(0,0,0,.4)
}

@media (min-width: 900px) {
    .video-icon-large {
        width:100px;
        height: 100px
    }
}

@media (min-width: 1750px) {
    .video-icon-large {
        width:150px;
        height: 150px
    }
}

.video-icon-large:active,.video-icon-large:focus,.video-icon-large:hover {
    cursor: pointer;
    background-color: #000c
}

.video-icon-large svg {
    display: block;
    fill: currentColor;
    position: absolute;
    top: 30%;
    left: 35%;
    width: 20px;
    height: 20px
}

@media (min-width: 900px) {
    .video-icon-large svg {
        top:25%;
        left: 30%
    }
}

@media (min-width: 1750px) {
    .video-icon-large svg {
        top:30%;
        left: 35%
    }
}

@media (min-width: 900px) {
    .video-icon-large svg {
        width:50px;
        height: 50px
    }
}

@media (min-width: 1750px) {
    .video-icon-large svg {
        width:60px;
        height: 60px
    }
}

.Videoplayer embed,.Videoplayer iframe,.Videoplayer object {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none
}

.Videoplayer video {
    background-color: #000;
    width: 100%;
    height: auto
}

.video-error .video-error-block,.video-stopped .video-play {
    display: block
}

.Videoplayer--responsive {
    position: relative;
    overflow: hidden;
    max-width: 100%;
    height: 0;
    padding-bottom: 56.25%
}

@media (max-aspect-ratio: 1/1) {
    .Videoplayer--portraitOnlyResponsive {
        position:relative;
        overflow: hidden;
        max-width: 100%;
        height: 0;
        padding-bottom: 56.25%
    }
}

.video-error-container {
    position: absolute;
    padding: inherit;
    top: 10px;
    right: 10px
}

.video-error-block {
    background: #000;
    opacity: .8;
    transition: all .3s ease;
    border-radius: 4px;
    padding: .3em .5em;
    display: flex;
    align-items: center;
    gap: .3em
}

.video-error-block span {
    color: #fff;
    font-size: .6em;
    font-family: proxima-nova,sans-serif;
    font-weight: 700
}

.video-error-block svg {
    fill: #fff;
    display: inline;
    vertical-align: middle;
    width: 24px;
    height: 24px
}

[data-lazyload-video] {
    opacity: 0
}

[data-videoplayer] {
    transition: opacity .25s ease-out
}

.PreviewFooter {
    background-color: #353535;
    border-top: 2px solid #12bf9c;
    bottom: -100px;
    color: #fff;
    display: block;
    font-family: proxima-nova,Helvetica,Arial,sans-serif;
    font-size: 14px;
    left: 0;
    position: sticky;
    z-index: -1
}

.PreviewFooter a {
    color: #fff;
    text-decoration: none
}

.PreviewFooter button:focus {
    outline: 0
}

.PreviewFooter input[type=email],.PreviewFooter input[type=text],.PreviewFooter textarea {
    -webkit-tap-highlight-color: transparent;
    -moz-appearance: none;
    appearance: none;
    background-color: #303030;
    border-radius: 4px;
    border: 1px solid #282828;
    box-shadow: inset 0 2px 1px #00000013;
    color: #fff;
    display: inline-block;
    font-family: proxima-nova,Helvetica,Arial,sans-serif;
    font-size: 1em;
    font-weight: 400;
    height: auto;
    line-height: 1.2;
    margin: 0;
    outline: 0;
    padding: 8px 8px 9px;
    resize: vertical;
    vertical-align: top;
    width: 100%
}

@media screen and (max-width: 926px) {
    .PreviewFooter input[type=email],.PreviewFooter input[type=text],.PreviewFooter textarea {
        font-size:16px;
        width: 100%
    }
}

.PreviewFooter input[type=email]:focus,.PreviewFooter input[type=text]:focus,.PreviewFooter textarea:focus {
    border-color: #12bf9c
}

.PreviewFooter label {
    color: #848484;
    display: block;
    font-family: proxima-nova,Helvetica,Arial,sans-serif;
    font-size: .75em;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 4px;
    margin-top: .5em;
    position: relative;
    text-transform: uppercase
}

.PreviewFooter p,.PreviewFooter span {
    display: block;
    font-variant-numeric: tabular-nums;
    line-height: 1;
    margin: 0
}

.PreviewFooter--upper {
    background-color: #353535;
    padding-bottom: .25em;
    padding-top: .25em
}

.PreviewFooter--upper-inner {
    margin-left: 15px;
    width: auto!important
}

@media (max-width: 926px) {
    .PreviewFooter--upper-inner {
        margin-left:0
    }
}

@media screen and (min-width: 1100px) {
    .PreviewFooter--upper-inner {
        min-width:350px
    }
}

@media screen and (max-width: 926px) {
    .PreviewFooter-logo {
        height:1.5em;
        width: 1.5em
    }
}

.PreviewFooter--logo-container {
    display: flex;
    margin-right: calc(.5em + .5vw);
    max-width: 2rem
}

.PreviewFooter--message {
    font: caption;
    font-size: .75em;
    line-height: 1.3!important;
    margin-top: 4px!important;
    opacity: .5
}

.PreviewFooter--content-mobileLandscape {
    display: none
}

.PreviewFooter--content:last-of-type {
    margin-right: 1em
}

@media (max-width: 926px) {
    .PreviewFooter--content:last-of-type {
        margin-right:1em
    }
}

.PreviewFooter--title {
    font-family: "PT Serif",serif;
    font-size: 1.25em;
    line-height: 1.1!important;
    margin-top: 0!important
}

@media (min-width: 927px) {
    .PreviewFooter--title--mobile {
        display:none
    }
}

.PreviewFooter--mobile-header {
    align-items: flex-start;
    -moz-column-gap: 1em;
    column-gap: 1em;
    display: none;
    flex-direction: row;
    flex-shrink: 0;
    justify-content: center;
    row-gap: 1em
}

.PreviewFooter--mobile-header h3 {
    align-items: center;
    flex-direction: row;
    justify-content: center;
    line-height: 1.3;
    margin-top: 0;
    max-width: 80%;
    text-align: center
}

.PreviewFooter--col-title {
    align-self: center;
    all: unset;
    font-size: 1em;
    font-weight: 700;
    line-height: 1.2;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0;
    width: 100%
}

@media (max-width: 926px) {
    .PreviewFooter--col-title {
        display:none
    }
}

.PreviewFooter--col-title-mobile {
    background-color: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
    font-family: inherit;
    font-weight: 700;
    padding: 0;
    align-items: center;
    font-size: .75em;
    justify-content: center;
    text-align: center
}

@media screen and (-ms-high-contrast:active) {
    .PreviewFooter--col-title-mobile {
        border: 2px solid currentcolor
    }
}

@media (min-width: 927px) {
    .PreviewFooter--col-title-mobile {
        display:none
    }
}

.dropdown-toggle:after {
    border: 4px solid;
    border-left: none;
    border-top: none;
    content: "";
    display: inline-block;
    height: 12px;
    margin-top: -8px;
    opacity: .7;
    transform: rotate(45deg);
    transition: all .15s ease;
    vertical-align: middle;
    width: 12px
}

@media screen and (max-width: 926px) {
    .dropdown-toggle:after {
        border:2px solid;
        border-left: none;
        border-top: none;
        content: "";
        display: inline-block;
        height: 6px;
        margin-left: 4px;
        margin-top: -4px;
        opacity: .7;
        transform: rotate(45deg);
        transition: all .15s ease;
        vertical-align: middle;
        width: 6px
    }
}

.PreviewFooter--mobile-close {
    cursor: pointer;
    position: absolute;
    right: 1em;
    width: 1em
}

.PreviewFooter--qr-code {
    flex: unset!important;
    height: 100%!important;
    margin-bottom: 1em
}

.PreviewFooter--share-btn {
    -webkit-tap-highlight-color: transparent;
    align-items: center;
    background-color: transparent;
    border-radius: 4px;
    border: 1px solid transparent;
    color: #fff;
    display: inline-block;
    flex: 0!important;
    font-family: proxima-nova,Helvetica,Arial,sans-serif;
    font-size: .75em;
    font-weight: 700;
    justify-content: center;
    letter-spacing: 0;
    line-height: 1;
    padding: 9px 20px;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    vertical-align: middle
}

.PreviewFooter--share-btn.share-btn-inactive {
    pointer-events: none
}

.PreviewFooter--share-btn.active.focus,.PreviewFooter--share-btn.active:focus,.PreviewFooter--share-btn.focus,.PreviewFooter--share-btn:active.focus,.PreviewFooter--share-btn:active:focus,.PreviewFooter--share-btn:focus {
    box-shadow: none;
    color: #fff;
    cursor: pointer;
    outline: 0
}

.PreviewFooter--btn-secondary,.PreviewFooter--btn-secondary:not(:disabled):not(.disabled) {
    background-color: transparent;
    border-color: #aaa6;
    color: #fff;
    margin-left: auto;
    margin-right: 0
}

.PreviewFooter--btn-secondary.active,.PreviewFooter--btn-secondary:active,.PreviewFooter--btn-secondary:focus,.PreviewFooter--btn-secondary:hover,.PreviewFooter--btn-secondary:not(:disabled):not(.disabled).active,.PreviewFooter--btn-secondary:not(:disabled):not(.disabled):active,.PreviewFooter--btn-secondary:not(:disabled):not(.disabled):focus,.PreviewFooter--btn-secondary:not(:disabled):not(.disabled):hover {
    background-color: #f9f9f9;
    border-color: #aaa;
    color: #292929
}

.PreviewFooter--btn-secondary.active:focus,.PreviewFooter--btn-secondary:active:focus,.PreviewFooter--btn-secondary:focus:focus,.PreviewFooter--btn-secondary:hover:focus,.PreviewFooter--btn-secondary:not(:disabled):not(.disabled).active:focus,.PreviewFooter--btn-secondary:not(:disabled):not(.disabled):active:focus,.PreviewFooter--btn-secondary:not(:disabled):not(.disabled):focus:focus,.PreviewFooter--btn-secondary:not(:disabled):not(.disabled):hover:focus {
    background-color: #f9f9f9;
    border-color: #aaa;
    box-shadow: none
}

.PreviewFooter--btn-secondary.share-btn-active,.PreviewFooter--btn-secondary:not(:disabled):not(.disabled).share-btn-active {
    background-color: #12bf9c;
    border-color: #12bf9c
}

.PreviewFooter--btn-secondary.share-btn-active.active,.PreviewFooter--btn-secondary.share-btn-active:active,.PreviewFooter--btn-secondary.share-btn-active:focus,.PreviewFooter--btn-secondary.share-btn-active:hover,.PreviewFooter--btn-secondary:not(:disabled):not(.disabled).share-btn-active.active,.PreviewFooter--btn-secondary:not(:disabled):not(.disabled).share-btn-active:active,.PreviewFooter--btn-secondary:not(:disabled):not(.disabled).share-btn-active:focus,.PreviewFooter--btn-secondary:not(:disabled):not(.disabled).share-btn-active:hover {
    color: #424242;
    border-color: #aaa6
}

.PreviewFooter--btn-secondary.share-btn-active.active:focus,.PreviewFooter--btn-secondary.share-btn-active:active:focus,.PreviewFooter--btn-secondary.share-btn-active:focus:focus,.PreviewFooter--btn-secondary.share-btn-active:hover:focus,.PreviewFooter--btn-secondary:not(:disabled):not(.disabled).share-btn-active.active:focus,.PreviewFooter--btn-secondary:not(:disabled):not(.disabled).share-btn-active:active:focus,.PreviewFooter--btn-secondary:not(:disabled):not(.disabled).share-btn-active:focus:focus,.PreviewFooter--btn-secondary:not(:disabled):not(.disabled).share-btn-active:hover:focus {
    color: #424242;
    border-color: #aaa6
}

.PreviewFooter--btn-secondary.disabled,.PreviewFooter--btn-secondary:disabled,.PreviewFooter--btn-secondary:not(:disabled):not(.disabled).disabled,.PreviewFooter--btn-secondary:not(:disabled):not(.disabled):disabled {
    background-color: #aaaaaa1a;
    color: #424242;
    opacity: .35
}

.PreviewFooter--btn-secondary.right,.PreviewFooter--btn-secondary:not(:disabled):not(.disabled).right {
    margin-left: auto;
    margin-right: 0
}

.mailtoForm {
    flex: 1
}

.PreviewFooter--button-group {
    align-items: center;
    -moz-column-gap: .5em;
    column-gap: .5em;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    row-gap: .5em
}

.PreviewFooter--customerlogo {
    align-self: center;
    margin-left: auto;
    margin-right: auto;
    max-width: 100px;
    width: 100%
}

.PreviewFooter--help-block,.PreviewFooter--help-block-success {
    background: #ec3f3f;
    border-radius: 4px;
    color: #fff;
    display: none;
    font-family: proxima-nova,Helvetica,Arial,sans-serif!important;
    font-size: .75em!important;
    font-weight: 600!important;
    margin-bottom: 8px;
    margin-top: 8px!important;
    padding: 8px 8px 5px;
    text-align: center
}

.PreviewFooter--help-block-success {
    background: #12bf9c;
    border-radius: 4px;
    margin-top: 1em!important
}

.PreviewFooter--chevron {
    display: block;
    width: 1em
}

.PreviewFooter--chevron-container {
    bottom: 0;
    cursor: pointer;
    height: 100%;
    position: absolute;
    right: 0;
    transition: all .15s ease
}

@media (max-width: 926px) {
    .PreviewFooter--chevron-container {
        display:none
    }
}

.PreviewFooter--chevron-container-mobile {
    display: none;
    margin-left: 6px;
    width: 1.25em
}

@media screen and (max-width: 926px) {
    .PreviewFooter--chevron-container-mobile {
        display:flex;
        margin-top: -.25em
    }
}

.PreviewFooter--close {
    align-items: flex-end;
    cursor: pointer;
    display: flex;
    margin-right: .5em;
    margin-top: .5em
}

@media (min-width: 1400px) {
    .PreviewFooter--close {
        margin-right:.75em;
        margin-top: .75em
    }
}

.PreviewFooter--close-container {
    bottom: 0;
    cursor: pointer;
    height: 100%;
    position: absolute;
    right: 0;
    transition: all .15s ease
}

@media (max-width: 926px) {
    .PreviewFooter--close-container {
        display:none
    }
}

.PreviewFooter--close-container-mobile {
    display: none;
    margin-left: 6px;
    width: 1.25em
}

@media screen and (max-width: 926px) {
    .PreviewFooter--close-container-mobile {
        display:flex;
        margin-top: -.25em
    }
}

.PreviewFooter--open-button {
    -webkit-tap-highlight-color: transparent;
    background-color: transparent;
    border: 1px solid transparent;
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    flex-shrink: 0;
    font-family: proxima-nova,Helvetica,Arial,sans-serif;
    justify-content: center;
    line-height: 1;
    margin-left: auto;
    margin-right: 0
}

.PreviewFooter--open-text {
    align-items: center!important;
    cursor: pointer;
    display: none;
    margin-bottom: auto!important;
    margin-right: 1em!important;
    margin-top: auto!important;
    font-size: .75em;
    font-weight: 700;
    line-height: 1.2
}

@media (max-width: 926px) {
    .PreviewFooter--open-text {
        display:block
    }
}

.PreviewFooter--open-text-icon {
    align-items: center;
    display: flex;
    margin-right: .5em
}

.PreviewFooter--open-text-icon-container {
    align-items: center;
    display: flex
}

.PreviewFooter--close-button {
    cursor: pointer;
    padding-right: 1em
}

@media screen and (min-width: 927px) {
    .PreviewFooter--grow {
        flex-basis:35%!important
    }
}

.PreviewFooter--row,.PreviewFooter--row-responsive {
    align-items: stretch;
    -moz-column-gap: 1em;
    column-gap: 1em;
    display: flex;
    flex-direction: row;
    justify-content: center;
    row-gap: 1em
}

@media screen and (max-width: 926px) {
    .PreviewFooter--row-responsive {
        align-items:center!important;
        -moz-column-gap: .5em;
        column-gap: .5em;
        flex-direction: column;
        flex-wrap: wrap;
        justify-content: center;
        row-gap: .5em
    }

    .PreviewFooter--row-responsive .Layout__col {
        flex-basis: auto;
        width: 100%
    }
}

.PreviewFooter--interactive-panels {
    margin-right: 0;
    width: 100%
}

.PreviewFooter--center {
    align-items: center
}

.PreviewFooter--space-between {
    justify-content: space-between
}

.PreviewFooter--center-horizontal {
    margin-bottom: auto;
    margin-top: auto;
    padding-bottom: 0;
    padding-top: 0
}

.DeviceDetect--isIE .PreviewFooter--center-horizontal {
    height: 1.5em
}

.PreviewFooter--seperator {
    margin: .5em
}

@media screen and (min-width: 927px) {
    #preview-qr {
        flex-basis:40%
    }
}

@media screen and (max-width: 926px) {
    #preview-qr {
        text-align:center
    }
}

@media screen and (min-width: 927px) {
    #preview-feedback {
        flex-basis:60%
    }
}

@media (max-width: 926px) and (min-aspect-ratio:13/9) and (hover:none),only screen and (min-device-height:360px) and (min-device-width:760px) and (orientation:landscape) and (-webkit-device-pixel-ratio:4) {
    .PreviewFooter--content-mobileLandscape {
        background:#ec3f3f;
        border-radius: 4px;
        color: #fff;
        display: block!important;
        font-family: proxima-nova,Helvetica,Arial,sans-serif!important;
        font-size: .75em!important;
        font-weight: 600!important;
        margin: auto auto 1.5em!important;
        padding: 8px 8px 5px;
        text-align: center;
        width: -moz-fit-content;
        width: fit-content
    }

    #preview-feedback .Layout__col,#preview-qr .Layout__col {
        display: none!important
    }

    .PreviewFooter--interactive-panels {
        margin-right: 0;
        width: 100%
    }
}

.DeviceDetect--isIE .PreviewFooter--open-button {
    display: none
}

.Prime3 {
    color: #fff!important;
    background-color: #141414!important
}

.Prime3>.Layout {
    align-items: baseline!important
}

.Prime3:is(div) {
    box-shadow: 0 13px 9px 5px #0000001a
}

.prime3FooterLower {
    color: #fff!important;
    background-color: #f2744d!important
}

.prime3-items {
    display: flex;
    justify-content: center
}

@media screen and (max-width: 767px) {
    .prime3-items {
        flex-direction:column;
        align-items: center;
        padding-bottom: .5em
    }
}

.prime3-items div {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: 0 1em;
    padding: .75em 0;
    font-size: 14px;
    font-family: -apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Open Sans,Helvetica Neue,sans-serif
}

@media screen and (max-width: 767px) {
    .prime3-items div {
        margin:.25em 0;
        padding: .25em 0;
        font-size: 11px
    }
}

.prime3-items a {
    color: #fff!important;
    text-decoration: none
}

.prime3-items a:hover {
    opacity: .9
}

.PromoFooter {
    background-color: #fff;
    border-top: 1px solid rgba(0,0,0,.1);
    color: #333;
    text-align: center;
    font-family: poppins,sans-serif;
    overflow: hidden
}

@media (min-width: 1500px) {
    .PromoFooter {
        display:flex;
        padding: 0 25px;
        align-items: center
    }

    .PromoFooter .Layout {
        flex: 1;
        max-width: none
    }
}

.PromoFooter .PromoFooter--inner {
    display: block;
    z-index: 1;
    padding: 23px 25px 25px;
    margin: 0 auto;
    font-size: 16px;
    max-width: 90%;
    min-width: 300px;
    color: inherit;
    text-decoration: none;
    transition: opacity .15s ease
}

@media (min-width: 620px) {
    .PromoFooter .PromoFooter--inner {
        font-size:17px
    }
}

@media (min-width: 900px) {
    .PromoFooter .PromoFooter--inner {
        font-size:18px
    }
}

@media (min-width: 1200px) {
    .PromoFooter .PromoFooter--inner {
        display:flex;
        align-items: center;
        justify-content: center;
        padding-top: 33px;
        padding-bottom: 35px;
        max-width: 100%
    }
}

@media (min-width: 1500px) {
    .PromoFooter .PromoFooter--inner {
        justify-content:flex-start
    }
}

.PromoFooter .PromoFooter--inner:focus,.PromoFooter .PromoFooter--inner:hover {
    opacity: .9
}

.PromoFooter .PromoFooter--inner .PromoFooter--logoContainer {
    display: block;
    width: 35px;
    height: 35px;
    font-size: 0;
    margin: 0 auto 5px
}

@media (min-width: 1200px) {
    .PromoFooter .PromoFooter--inner .PromoFooter--logoContainer {
        margin:0 10px 0 0
    }
}

.PromoFooter .PromoFooter--inner .PromoFooter--logoContainer .PromoFooter--logo {
    width: 100%;
    height: auto
}

.PromoFooter .PromoFooter--inner .PromoFooter--title {
    font-family: inherit;
    font-size: 1.5em;
    line-height: 1.15;
    margin: 0 auto;
    font-weight: 400
}

@media (min-width: 1200px) {
    .PromoFooter .PromoFooter--inner .PromoFooter--title {
        display:flex;
        align-items: center;
        justify-content: flex-end;
        font-size: 1.3em;
        width: auto;
        margin: 0 5px 0 0
    }
}

.PromoFooter .PromoFooter--inner .PromoFooter--title .show-large {
    display: none
}

@media (min-width: 1200px) {
    .PromoFooter .PromoFooter--inner .PromoFooter--title .show-large {
        display:initial
    }
}

.PromoFooter .PromoFooter--inner .PromoFooter--text {
    opacity: .7;
    font-size: 1.3em;
    line-height: 1.15;
    font-family: inherit;
    margin: .25em auto .35em
}

@media (min-width: 1200px) {
    .PromoFooter .PromoFooter--inner .PromoFooter--text {
        font-size:1.3em;
        text-align: left;
        width: auto;
        margin: 0 0 0 5px
    }
}

.PromoFooterTopLink {
    z-index: 1;
    display: inline-block;
    font-size: 11px;
    font-family: proxima-nova,sans-serif;
    padding: 12px 25px 15px;
    color: inherit;
    text-decoration: none;
    text-transform: uppercase;
    transition: opacity .15s ease;
    width: 100%;
    border-top: 1px solid rgba(0,0,0,.05)
}

.PromoFooterTopLink:before {
    border-style: solid;
    border-width: 1px 1px 0 0;
    content: "";
    display: block;
    height: 16px;
    left: 50%;
    position: relative;
    top: 8px;
    margin-bottom: 4px;
    transform: rotate(-45deg);
    width: 16px;
    margin-left: -8px;
    transition: top .15s ease
}

.PromoFooterTopLink:focus,.PromoFooterTopLink:hover {
    opacity: .8
}

.PromoFooterTopLink:focus:before,.PromoFooterTopLink:hover:before {
    top: 5px
}

@media (min-width: 1500px) {
    .PromoFooterTopLink {
        width:100px;
        align-items: center;
        border: none;
        border-left: 1px solid rgba(0,0,0,.05);
        padding: 0
    }
}

.Editor-StoryContainer .Navigation__button:focus-visible {
    outline: 2px solid #12bf9c
}

.Project-Footer,.Project-Header {
    max-width: none
}

.Project-Footer .ProjectNavigation__SocialIcons,.Project-Header .ProjectNavigation__SocialIcons {
    position: relative;
    display: flex;
    align-items: center;
    top: 0;
    height: 100%;
    margin-right: 0;
    margin-top: 0
}

.Project-Footer .Theme-Default-Logos,.Project-Header .Theme-Default-Logos {
    pointer-events: none
}

.Project-Footer .Theme-NavigationLink,.Project-Header .Theme-NavigationLink {
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.Project-Footer .Theme-NavigationLink a,.Project-Header .Theme-NavigationLink a {
    color: inherit;
    text-decoration: inherit
}

@media (max-width: 1399.98px) {
    .Project-Header .Theme-NavigationLink {
        text-align:left
    }

    .Project-Header .Theme-ProjectNavigation-subMenu {
        padding-left: 1em
    }

    .Project-Header .Theme-NavigationBarItem:hover {
        text-decoration: none
    }
}

@media (min-width: 1100px) {
    .Project-Header .Theme-NavigationBar {
        overflow:visible
    }

    .Project-Header .Theme-ProjectNavigation-subMenu {
        list-style: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        min-width: -moz-max-content;
        min-width: max-content;
        max-width: 300px;
        text-align: left
    }

    .Project-Header .Theme-ProjectNavigation-subMenu .Theme-NavigationBarItem {
        z-index: 1
    }

    .Project-Header .Theme-ProjectNavigation-subMenu .Theme-ProjectNavigation-subMenu .Theme-NavigationLink {
        font-weight: 400;
        opacity: .8
    }
}

.Project-Header~#Navigation__hamburgerToggle,.Project-Header~.Navigation__hamburger {
    display: none!important
}

@media (max-width: 1099.98px) {
    .Project-Header~.Theme-NavigationBar {
        display:none
    }
}

@media (min-width: 1100px) {
    .ProjectNavigation--A .Project-Header .Theme-NavigationBar {
        position:relative;
        background-color: transparent
    }
}

@media (min-width: 1100px) {
    .ProjectNavigation--B .Project-Header--center {
        position:fixed;
        left: 0;
        right: 0
    }

    .ProjectNavigation--B .Project-Header--center .Theme-Navigation-ItemList {
        margin: 0 auto
    }
}

.ProjectNavigation--C .Project-Header .Theme-Hamburger {
    display: initial!important;
    margin: 0 0 0 15px;
    right: auto;
    top: auto
}

.ProjectNavigation--C .Project-Header .Theme-Navigation-ItemList {
    flex-direction: column;
    align-items: flex-start
}

.ProjectNavigation--C .Project-Header .Theme-NavigationBar {
    position: fixed;
    right: -110%;
    bottom: 0;
    left: auto;
    padding-bottom: 40px;
    overflow: hidden;
    overflow-y: auto;
    max-width: 400px
}

.ProjectNavigation--C .Project-Header .hasMenu:after {
    display: none!important
}

.ProjectNavigation--C .Project-Header .Navigation__button {
    display: none
}

.ProjectNavigation--C .Project-Header .Navigation--isActive {
    right: 0;
    opacity: 1
}

.ProjectNavigation--C .Project-Header .Theme-NavigationBarItem {
    display: block;
    width: 100%;
    text-align: left
}

.ProjectNavigation--C .Project-Header .Theme-ProjectNavigation-subMenu {
    position: relative;
    top: auto;
    max-width: 100%;
    left: auto
}

.ProjectNavigation--D .Project-Header .Theme-NavigationBar {
    display: none
}

.Project-Header--left {
    display: flex;
    align-items: center;
    padding-left: 15px;
    min-width: 200px
}

.Project-Header--left .Theme-Logos:not(:empty) {
    margin-left: 0
}

.Project-Header--left .Theme-Logo {
    display: inline-flex
}

.Project-Header--right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-right: 15px
}

@media (min-width: 900px) {
    .Project-Header--right {
        min-width:200px
    }
}

.Project-Header--right .Theme-SocialIcons {
    position: relative;
    right: auto!important;
    transition: opacity .15s ease;
    top: auto;
    margin: 0
}

.Project-Header--right .Theme-Hamburger {
    background-color: transparent;
    position: relative;
    right: auto;
    margin: 0 0 0 15px;
    top: auto
}

.Project-FooterContainer {
    background-color: #fff;
    border-top: 1px solid rgba(0,0,0,.1)
}

.Project-Footer {
    display: flex;
    align-items: flex-start;
    justify-content: space-between
}

@media (max-width: 899.98px) {
    .Project-Footer {
        flex-direction:column;
        align-items: center;
        padding-left: 15px;
        padding-right: 15px
    }
}

.Project-Footer .Project-Navigation {
    position: relative;
    top: auto;
    display: flex;
    background-color: transparent;
    max-width: 100%;
    padding: 0;
    right: auto!important;
    transform: none;
    margin: 0;
    opacity: 1;
    justify-content: center;
    z-index: 20
}

.Project-Footer .Theme-Navigation-ItemList {
    display: flex;
    align-items: stretch;
    flex-wrap: nowrap;
    width: 100%
}

@media (max-width: 899.98px) {
    .Project-Footer .Theme-Navigation-ItemList {
        flex-direction:column;
        margin: 1em auto
    }
}

@media (min-width: 900px) {
    .Project-Footer .Theme-NavigationLink {
        text-align:left
    }
}

@media (min-width: 900px) {
    .Project-Footer .Theme-NavigationLink.hasMenu {
        text-align:left
    }
}

.Project-Footer .Theme-ActiveNavigationBarItem .Theme-NavigationLink,.Project-Footer .Theme-NavigationLink:hover {
    color: inherit
}

.Project-Footer .Theme-NavigationBarItem {
    height: auto
}

@media (min-width: 900px) {
    .Project-Footer .Theme-NavigationBarItem:not(.hasMenu) {
        align-self:stretch;
        min-height: 100%
    }
}

.Project-Footer .Theme-ProjectNavigation-subMenu {
    padding: 0;
    display: flex;
    flex-direction: column
}

.Project-Footer .Theme-ProjectNavigation-subMenu .Theme-NavigationLink {
    font-weight: 400;
    opacity: .8
}

.ProjectNavigation--D .Project-Footer {
    align-items: center
}

.ProjectNavigation--D .Project-Footer .Project-Navigation {
    display: none
}

.Project-Footer--left {
    padding-left: 15px
}

@media (min-width: 900px) {
    .Project-Footer--left {
        min-width:200px
    }
}

.Project-Footer--left .Theme-Logos:not(:empty) {
    margin-left: 0
}

.Project-Footer--center {
    flex: 1
}

.Project-Footer--right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    padding-right: 15px
}

@media (min-width: 900px) {
    .Project-Footer--right {
        min-width:200px
    }
}

@media (max-width: 1099.98px) {
    .Project-Footer--right:empty {
        display:none
    }
}

.Project-Footer--right .Theme-SocialIcons {
    position: relative;
    top: auto;
    margin: 0;
    height: 40px
}

.project-search-icon-span {
    height: 10px;
    width: 10px;
    color: #777;
    padding: 5px
}

.project-search-icon-svg {
    height: 20px
}

.project-search-button {
    position: relative;
    color: #777;
    background-color: transparent;
    border: none;
    height: 30px;
    right: 10;
    top: 0
}

.project-search-btn-tooltip {
    visibility: hidden;
    font-family: proxima-nova,sans-serif;
    letter-spacing: 0;
    display: block;
    pointer-events: none;
    position: absolute;
    color: #424242;
    background: #fff;
    padding: 3px 6px;
    white-space: nowrap;
    line-height: 1;
    font-size: .625rem;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 0 0 1px #0000001a,0 2px 5px #00000040;
    border-radius: 2px;
    text-rendering: optimizeLegibility;
    opacity: 0;
    transition: visibility 0s linear .15s,opacity .15s linear;
    top: -5px;
    right: 105%
}

.project-search-button:hover .project-search-btn-tooltip {
    visibility: visible;
    opacity: 1;
    transition-delay: 0s
}

.project-search-sideBar {
    position: fixed;
    left: auto;
    overflow: hidden;
    overflow-y: auto;
    width: 100%;
    top: 0;
    right: -600px;
    background: #f1f1f1;
    overflow-x: hidden;
    transition: right .5s;
    max-height: 100vh;
    z-index: 2000;
    backdrop-filter: blur(5px)
}

@media (max-width: 619px) {
    .project-search-sideBar {
        min-width:100%
    }
}

@media (min-width: 620px) and (max-width:1099px) {
    .project-search-sideBar {
        max-width:400px
    }
}

@media (max-width: 1099px) {
    .project-search-sideBar {
        max-width:400px
    }
}

@media (min-width: 900px) {
    .project-search-sideBar {
        max-width:400px
    }

    .project-search-sideBar .project-search-header {
        height: 50px
    }
}

@media (min-width: 1100px) {
    .project-search-sideBar {
        max-width:400px
    }

    .project-search-sideBar .project-search-header {
        height: 60px
    }
}

.project-search--isActive {
    right: 0
}

.project-search-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 50px;
    padding: 5px 20px;
    background-color: #777;
    position: sticky;
    top: 0;
    z-index: 2000
}

.project-search-header .project-search-close-button {
    border: none;
    background-color: transparent
}

.project-search-header .project-search-input-container {
    height: 30px;
    width: 300px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    background-color: #fff
}

.project-search-header .project-search-input-container:focus-within {
    outline: 2px solid #12bf9c
}

.project-search-header .project-search-input-container .project-search-icon-svg {
    height: 16px;
    fill: #fff;
    font-weight: 700
}

.project-search-header .project-search-input-container .project-search-x-svg {
    height: 100%
}

.project-search-header .project-search-input-container .project-search-delete-btn {
    background: 0 0;
    border: none;
    height: 20px;
    pointer-events: all;
    cursor: pointer
}

.project-search-header .project-search-input-container .project-search-enter-btn {
    background: #777;
    border-radius: 5px;
    border: none;
    height: 90%;
    pointer-events: all;
    cursor: pointer
}

.project-search-header .project-search-input {
    border: none;
    font-size: 16px;
    width: 90%;
    padding-left: 5px
}

.project-search-header .project-search-input:focus {
    outline: 0
}

.project-search-results {
    right: 20px
}

.project-card-image-div {
    height: 80px;
    width: 150px
}

.project-card-image-div img {
    border: 1px solid #e2e2e2;
    border-radius: .5rem;
    display: block;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    max-width: unset;
    width: 100%;
    height: 100%;
    background: #eee
}

.project-story-list-item {
    width: 100%;
    list-style-type: none;
    display: flex;
    margin-bottom: 25px
}

.project-story-list-item .project-story-text-container {
    padding-left: 10px;
    display: flex;
    flex-direction: column
}

.project-story-list-item .project-story-text-right-container {
    display: flex;
    flex-direction: column;
    min-height: 80px
}

.project-story-list-item .project-story-title {
    font-family: proxima-nova,sans-serif;
    font-size: 16px;
    font-weight: 700;
    width: 185px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis
}

.project-story-list-item .project-story-description {
    font-size: 16px
}

.project-story-list-item .project-match-snippet-container {
    font-size: 16px;
    color: #777;
    padding-top: 5px;
    margin-left: -160px
}

.project-story-list-item .project-match-snippet-container .search-input-highlight {
    font-weight: 700;
    font-style: italic;
    color: #12bf9c
}

.no-result-list--item span {
    display: block;
    color: #777
}

.no-result-list--item {
    font-family: proxima-nova,sans-serif;
    list-style: none;
    font-size: 18px
}

.no-result-list--item .no-results-heading {
    font-weight: 700;
    color: #000;
    padding-bottom: 15px
}

.no-result-list--item .search-options {
    right: -20px
}

.Theme-Scrollpoints-Highlight {
    border: 8px solid #12bf9c;
    background-size: contain
}

.Theme-Scrollpoints-Marker {
    background-color: #12bf9c;
    width: 30px
}

.Scrollpoints {
    padding-bottom: 20vh
}

.Scrollpoints__point {
    padding-top: 50vh;
    padding-bottom: 30vh
}

@media (orientation: portrait) {
    .Scrollpoints__point:first-child {
        padding-top:85vh
    }
}

.Scrollpoints__media {
    width: 100%;
    z-index: 0;
    min-height: 100vh
}

.Scrollpoints__media[data-attach=before] {
    position: absolute;
    top: 0;
    left: 0
}

.Scrollpoints__media[data-attach=during] {
    position: fixed;
    top: 0;
    left: 0
}

.Scrollpoints__media[data-attach=after] {
    height: 100vh;
    position: absolute;
    left: 0;
    bottom: 0
}

sh-model {
    display: block
}

html:not(.DeviceDetect--isIE):not(.DeviceDetect--isEdge) .isAnimated>div:not(.WebGLMissing) .AnimatedImage__fallback,html:not(.DeviceDetect--isIE):not(.DeviceDetect--isEdge) .isAnimated>div:not(.WebGLMissing) .AnimatedImage__fallbackOverlay {
    display: none
}

.isAnimated .WebGLMissing .AnimatedImage__instant {
    display: none
}

.DisplayContainerHeight--height150 .AnimatedImage__background,.DisplayContainerHeight--height150 .AnimatedImage__foreground,.DisplayContainerHeight--height150 .AnimatedImage__instant img {
    height: 100vh
}

.DisplayContainerHeight--height150 .FullSize--scrollChild .AnimatedImage__instant img {
    position: sticky
}

.Theme-BackgroundModel .AnimatedImage__instant {
    position: absolute;
    top: 0;
    z-index: 2
}

.AnimatedImage {
    transition: filter 1.3s ease-in
}

.InstantImage--isLoading .AnimatedImage {
    filter: blur(13px)
}

.InstantImage--isLoaded .AnimatedImage {
    filter: none
}


.InlineMedia a,.Theme-MediaSection .Theme-Layer-ResponsiveMedia-image>a {
    display: block;
    transition: opacity .15s ease
}

.Theme-LinkedMediaRenderer {
    display: block
}

.InlineMedia a:active,.InlineMedia a:focus,.InlineMedia a:hover,.Theme-LinkedMediaRenderer:active,.Theme-LinkedMediaRenderer:focus,.Theme-LinkedMediaRenderer:hover,.Theme-MediaSection .Theme-Layer-ResponsiveMedia-image>a:active,.Theme-MediaSection .Theme-Layer-ResponsiveMedia-image>a:focus,.Theme-MediaSection .Theme-Layer-ResponsiveMedia-image>a:hover {
    cursor: pointer;
    opacity: .9
}

.Theme-HeaderContainer {
    font-size: 18px
}

.Theme-HeaderContainer,.Theme-Story {
    font-family: "Roboto",sans-serif;
    color: #000;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.Theme-HeaderContainer ::-moz-selection {
    color: inherit;
    background-color: rgba(160,160,160,.55)
}

.Theme-Story ::-moz-selection {
    background-color: rgba(160,160,160,.55)
}

.Theme-HeaderContainer ::selection {
    color: inherit
}

.Theme-HeaderContainer ::selection,.Theme-Story ::selection {
    background-color: rgba(160,160,160,.55)
}

@media (min-width: 900px) {
    .Theme-HeaderContainer,.Theme-Story {
        font-size:18px
    }
}

@media (min-width: 1100px) {
    .Theme-HeaderContainer,.Theme-Story {
        font-size:20px
    }
}

.Theme-HeaderContainer b,.Theme-HeaderContainer strong,.Theme-Story b,.Theme-Story strong {
    font-weight: 700;
    color: inherit
}

.Theme-HeaderContainer p,.Theme-Story p {
    max-width: unset
}

.Theme-HeaderContainer p:empty,.Theme-Story p:empty {
    margin: 0
}

.Theme-HeaderContainer a:active,.Theme-HeaderContainer a:hover,.Theme-Story a:active,.Theme-Story a:hover {
    outline-width: 0
}

.Theme-HeaderContainer img,.Theme-Story img {
    border-style: none
}

:root {
    --header-height: 60px
}

.Layout {
    padding-left: 0;
    padding-right: 0
}

@media (min-width: 1100px) and (max-width:1399px) {
    .Layout {
        max-width:1240px
    }
}

@media (max-width: 1400px) {
    .Layout {
        width:auto
    }
}

.Layout__row {
    margin: 0
}

@media (max-width: 620px) {
    .Theme-Layer-BodyText {
        width:100%
    }
}

.Theme-Column {
    padding-left: 0;
    padding-right: 0
}

.Theme-Layer-BodyText p,.Theme-Story p {
    display: block;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-family: "Roboto",sans-serif;
    font-weight: 300;
    font-size: inherit
}

.Theme-Layer-TextBlock-Inner a:not(.Theme-Layer-BodyText-Button),.Theme-OverlayedCaption a,.Theme-Section-Dark .Theme-Caption a,.Theme-Section-Dark .Theme-Layer-BodyText a:not(.Theme-Layer-BodyText-Button):not(.related-story-card),.Theme-Section-Dark .Theme-Layer-TextBlock-Inner a:not(.Theme-Layer-BodyText-Button),.Theme-Section[class*=Theme-ForegroundColor] a:not(.Theme-Layer-BodyText-Button):not(.related-story-card) {
    text-decoration: none;
    border-bottom: 1px dotted
}

.Theme-Caption a,.Theme-Layer-BodyText a:not(.Theme-Layer-BodyText-Button):not(.related-story-card) {
    text-decoration: none;
    border-bottom: 1px dotted;
    color: #167eab
}

.Theme-OverlayedCaption a:hover,.Theme-Section[class*=Theme-ForegroundColor] a:hover:not(.Theme-Layer-BodyText-Button):not(.related-story-card) {
    border-bottom-style: solid
}

.Theme-Caption a:hover,.Theme-Layer-BodyText a:active:not(.Theme-Layer-BodyText-Button):not(.related-story-card),.Theme-Layer-BodyText a:hover:not(.Theme-Layer-BodyText-Button):not(.related-story-card),.Theme-Layer-TextBlock-Inner a:active:not(.Theme-Layer-BodyText-Button),.Theme-Layer-TextBlock-Inner a:hover:not(.Theme-Layer-BodyText-Button) {
    color: #105d7e;
    border-bottom-style: solid
}

.Theme-OverlayedCaption a:active,.Theme-Section[class*=Theme-ForegroundColor] a:active:not(.Theme-Layer-BodyText-Button):not(.related-story-card) {
    border-bottom-style: solid
}

.Theme-Caption a:active {
    color: #105d7e
}

.Theme-Caption a:active,.Theme-OverlayedCaption a:focus,.Theme-Section[class*=Theme-ForegroundColor] a:focus:not(.Theme-Layer-BodyText-Button):not(.related-story-card) {
    border-bottom-style: solid
}

.Theme-Caption a:focus,.Theme-Layer-BodyText a:focus:not(.Theme-Layer-BodyText-Button):not(.related-story-card),.Theme-Layer-TextBlock-Inner a:focus:not(.Theme-Layer-BodyText-Button) {
    color: #105d7e;
    border-bottom-style: solid
}

.Theme-Caption a:visited,.Theme-Layer-BodyText a:visited:not(.Theme-Layer-BodyText-Button):not(.related-story-card),.Theme-Layer-TextBlock-Inner a:visited:not(.Theme-Layer-BodyText-Button) {
    color: #167eab
}

.Theme-OverlayedCaption a:visited:hover,.Theme-Section[class*=Theme-ForegroundColor] a:visited:hover:not(.Theme-Layer-BodyText-Button):not(.related-story-card) {
    border-bottom-style: solid
}

.Theme-Caption a:visited:hover,.Theme-Layer-BodyText a:visited:active:not(.Theme-Layer-BodyText-Button):not(.related-story-card),.Theme-Layer-BodyText a:visited:hover:not(.Theme-Layer-BodyText-Button):not(.related-story-card),.Theme-Layer-TextBlock-Inner a:visited:active:not(.Theme-Layer-BodyText-Button),.Theme-Layer-TextBlock-Inner a:visited:hover:not(.Theme-Layer-BodyText-Button) {
    color: #105d7e;
    border-bottom-style: solid
}

.Theme-OverlayedCaption a:visited:active,.Theme-Section[class*=Theme-ForegroundColor] a:visited:active:not(.Theme-Layer-BodyText-Button):not(.related-story-card) {
    border-bottom-style: solid
}

.Theme-Caption a:visited:active {
    color: #105d7e;
    border-bottom-style: solid
}

.Theme-OverlayedCaption a:visited:focus,.Theme-Section[class*=Theme-ForegroundColor] a:visited:focus:not(.Theme-Layer-BodyText-Button):not(.related-story-card) {
    border-bottom-style: solid
}

.Theme-Caption a:visited:focus,.Theme-Layer-BodyText a:visited:focus:not(.Theme-Layer-BodyText-Button):not(.related-story-card),.Theme-Layer-TextBlock-Inner a:visited:focus:not(.Theme-Layer-BodyText-Button) {
    color: #105d7e;
    border-bottom-style: solid
}

.Theme-OverlayedCaption a,.Theme-Section-Dark .Theme-Caption a,.Theme-Section-Dark .Theme-Layer-BodyText a:not(.Theme-Layer-BodyText-Button):not(.related-story-card) {
    color: #f5f5f5
}

.Theme-OverlayedCaption a:active,.Theme-OverlayedCaption a:focus,.Theme-OverlayedCaption a:hover,.Theme-Section-Dark .Theme-Caption a:active,.Theme-Section-Dark .Theme-Caption a:focus,.Theme-Section-Dark .Theme-Caption a:hover,.Theme-Section-Dark .Theme-Layer-BodyText a:active:not(.Theme-Layer-BodyText-Button):not(.related-story-card),.Theme-Section-Dark .Theme-Layer-BodyText a:focus:not(.Theme-Layer-BodyText-Button):not(.related-story-card),.Theme-Section-Dark .Theme-Layer-BodyText a:hover:not(.Theme-Layer-BodyText-Button):not(.related-story-card),.Theme-Section-Dark .Theme-Layer-TextBlock-Inner a:active:not(.Theme-Layer-BodyText-Button),.Theme-Section-Dark .Theme-Layer-TextBlock-Inner a:focus:not(.Theme-Layer-BodyText-Button),.Theme-Section-Dark .Theme-Layer-TextBlock-Inner a:hover:not(.Theme-Layer-BodyText-Button) {
    color: #fff
}

.Theme-OverlayedCaption a:visited,.Theme-Section-Dark .Theme-Caption a:visited,.Theme-Section-Dark .Theme-Layer-BodyText a:visited:not(.Theme-Layer-BodyText-Button):not(.related-story-card),.Theme-Section-Dark .Theme-Layer-TextBlock-Inner a:visited:not(.Theme-Layer-BodyText-Button) {
    color: #f5f5f5
}

.Theme-OverlayedCaption a:visited:active,.Theme-OverlayedCaption a:visited:focus,.Theme-OverlayedCaption a:visited:hover,.Theme-Section-Dark .Theme-Caption a:visited:active,.Theme-Section-Dark .Theme-Caption a:visited:focus,.Theme-Section-Dark .Theme-Caption a:visited:hover,.Theme-Section-Dark .Theme-Layer-BodyText a:visited:active:not(.Theme-Layer-BodyText-Button):not(.related-story-card),.Theme-Section-Dark .Theme-Layer-BodyText a:visited:focus:not(.Theme-Layer-BodyText-Button):not(.related-story-card),.Theme-Section-Dark .Theme-Layer-BodyText a:visited:hover:not(.Theme-Layer-BodyText-Button):not(.related-story-card),.Theme-Section-Dark .Theme-Layer-TextBlock-Inner a:visited:active:not(.Theme-Layer-BodyText-Button),.Theme-Section-Dark .Theme-Layer-TextBlock-Inner a:visited:focus:not(.Theme-Layer-BodyText-Button),.Theme-Section-Dark .Theme-Layer-TextBlock-Inner a:visited:hover:not(.Theme-Layer-BodyText-Button) {
    color: #fff
}

.Theme-Section[class*=Theme-ForegroundColor] a:not(.Theme-Layer-BodyText-Button):not(.related-story-card) {
    color: inherit;
    border-bottom-color: inherit
}

.Theme-Section[class*=Theme-ForegroundColor] a:active:not(.Theme-Layer-BodyText-Button):not(.related-story-card),.Theme-Section[class*=Theme-ForegroundColor] a:focus:not(.Theme-Layer-BodyText-Button):not(.related-story-card),.Theme-Section[class*=Theme-ForegroundColor] a:hover:not(.Theme-Layer-BodyText-Button):not(.related-story-card),.Theme-Section[class*=Theme-ForegroundColor] a:visited:active:not(.Theme-Layer-BodyText-Button):not(.related-story-card),.Theme-Section[class*=Theme-ForegroundColor] a:visited:focus:not(.Theme-Layer-BodyText-Button):not(.related-story-card),.Theme-Section[class*=Theme-ForegroundColor] a:visited:hover:not(.Theme-Layer-BodyText-Button):not(.related-story-card) {
    color: inherit;
    border-bottom-color: inherit;
    opacity: .8
}

.Theme-Section[class*=Theme-ForegroundColor] a:visited:not(.Theme-Layer-BodyText-Button):not(.related-story-card) {
    color: inherit;
    border-bottom-color: inherit
}

.GalleryRenderer--initializing:after,.Theme-Lazyload-Spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 26px;
    height: 26px;
    margin-left: -13px;
    margin-top: -13px;
    border-radius: 50%;
    border: 4px solid #fff;
    border-bottom-color: transparent;
    animation: loading-spinner forwards 1s linear infinite;
    background: rgba(0,0,0,.5);
    box-shadow: 0 0 0 4px rgba(0,0,0,.5)
}

.Theme-Lazyload-Spinner {
    opacity: .25
}

.Theme-Story {
    display: block;
    background-color: #fff;
    font-size: 17px
}

@media (min-width: 620px) {
    .Theme-Story {
        font-size:18px
    }
}

@media (min-width: 900px) {
    .Theme-Story {
        font-size:18px
    }
}

@media (min-width: 1100px) {
    .Theme-Story {
        font-size:20px
    }
}

@media (min-width: 1400px) {
    .Theme-Story {
        font-size:20px
    }
}

@media (min-width: 1750px) {
    .Theme-Story {
        font-size:22px
    }
}

@media (min-width: 2000px) {
    .Theme-Story {
        font-size:22px
    }
}

.Theme-Story ::-moz-selection {
    background-color: #167eab;
    color: #fff
}

.Theme-Story ::selection {
    background-color: #167eab;
    color: #fff
}

.Theme-Story p {
    width: 100%;
    color: inherit
}

.Theme-Story sub,.Theme-Story sup {
    font-size: 70%
}

.Theme-Story sup {
    top: -.5em
}

.Theme-Story sub {
    bottom: -.25em
}

.Theme-Story hr {
    box-sizing: content-box
}

.Theme-Story canvas,.Theme-Story video {
    display: block
}

.Theme-Layer-BodyText-Heading-Large,.Theme-Layer-BodyText-Heading-Small,.Theme-Layer-BodyText-Heading-xl,.Theme-Layer-BodyText-Heading-xs {
    display: block;
    width: 100%
}

.Theme-Layer-BodyText-Heading-xl {
    color: #333;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    font-family: "Poppins",sans-serif;
    font-weight: 600;
    font-size: 200%;
    line-height: 1.1
}

@media (min-width: 620px) {
    .Theme-Layer-BodyText-Heading-xl {
        font-size:220%
    }
}

.Theme-Layer-BodyText-Heading-Large {
    color: #000;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    font-family: "Poppins",sans-serif;
    font-weight: 600;
    font-size: 200%;
    line-height: 1.2
}

@media (min-width: 620px) {
    .Theme-Layer-BodyText-Heading-Large {
        font-size:240%
    }
}

.Theme-Layer-BodyText-Heading-Small {
    color: #000;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    font-family: "Poppins",sans-serif;
    font-weight: 500;
    font-size: 160%;
    line-height: 1.2
}

@media (min-width: 620px) {
    .Theme-Layer-BodyText-Heading-Small {
        font-size:180%
    }
}

.Theme-Layer-BodyText-Heading-xs {
    color: #000;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    font-family: "Poppins",sans-serif;
    font-weight: 400;
    font-size: 120%;
    line-height: 1.2
}

@media (min-width: 620px) {
    .Theme-Layer-BodyText-Heading-xs {
        font-size:140%
    }
}

.Theme-Layer-BodyText-List-Alpha,.Theme-Layer-BodyText-List-Ordered,.Theme-Layer-BodyText-List-Roman,.Theme-Layer-BodyText-List-Unordered {
    padding-left: 1.2rem;
    list-style-position: outside;
    font-size: inherit;
    font-weight: 300;
    color: #000;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    font-family: "Roboto",sans-serif
}

.Theme-Layer-BodyText-List-Alpha {
    list-style-type: lower-alpha
}

.Theme-Layer-BodyText-List-Roman {
    list-style-type: lower-roman
}

.Theme-Layer-BodyText-List-Unordered {
    list-style-type: square
}

.Theme-Layer-BodyText-ListItem {
    line-height: 1.7;
    margin-bottom: .5rem;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit
}

.Theme-Layer-BodyText-Blockquote {
    background-color: transparent;
    display: block;
    padding-left: 0;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    padding-right: 0;
    border-top: 0 solid rgba(204,204,204,.3);
    border-bottom: 0 solid rgba(204,204,204,.3);
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    color: #167eab;
    font-family: "Roboto",sans-serif;
    font-weight: 400;
    font-style: italic;
    font-size: 140%;
    line-height: 1.2
}

@media (min-width: 620px) {
    .Theme-Layer-BodyText-Blockquote {
        font-size:160%
    }
}

.Theme-Layer-BodyText-Blockquote footer {
    padding: 0;
    background-color: transparent
}

.Theme-Caption cite,.Theme-Layer-BodyText-QuoteCite {
    display: block;
    margin: 1rem 0 .5rem;
    font-family: "Roboto",sans-serif;
    color: #777;
    line-height: 1.2;
    font-style: normal;
    font-weight: 400;
    font-size: 13.6px
}

@media (min-width: 620px) {
    .Theme-Caption cite,.Theme-Layer-BodyText-QuoteCite {
        font-size:14.4px
    }
}

@media (min-width: 900px) {
    .Theme-Caption cite,.Theme-Layer-BodyText-QuoteCite {
        font-size:14.4px
    }
}

@media (min-width: 1100px) {
    .Theme-Caption cite,.Theme-Layer-BodyText-QuoteCite {
        font-size:16px
    }
}

@media (min-width: 1400px) {
    .Theme-Caption cite,.Theme-Layer-BodyText-QuoteCite {
        font-size:16px
    }
}

@media (min-width: 1750px) {
    .Theme-Caption cite,.Theme-Layer-BodyText-QuoteCite {
        font-size:17.6px
    }
}

@media (min-width: 2000px) {
    .Theme-Caption cite,.Theme-Layer-BodyText-QuoteCite {
        font-size:17.6px
    }
}

.Theme-Layer-BodyText-Dropcap:first-letter {
    display: block;
    float: left;
    max-width: 100%;
    color: inherit;
    font-family: inherit;
    font-size: 5.7em;
    font-style: inherit;
    font-weight: inherit;
    line-height: .92;
    margin-right: .05em;
    margin-top: 0;
    margin-bottom: -.1em
}

@media (min-width: 620px) {
    .Theme-Layer-BodyText-Dropcap:first-letter {
        font-size:5.7em
    }
}

.Theme-Layer-BodyText-Dropcap:after {
    content: "";
    clear: both;
    display: table
}

.Theme-Layer-BodyText-Breakout {
    border: 0 solid #000;
    background: rgba(0,0,0,.05);
    padding: 25px
}

@media (min-width: 620px) {
    .Theme-Layer-BodyText-Breakout {
        padding:30px
    }
}

@media (min-width: 1100px) {
    .Theme-Layer-BodyText-Breakout {
        padding:40px
    }
}

.Theme-Story .Theme-Footnote a,.Theme-Story .Theme-Layer-BodyText-Breakout {
    color: inherit
}

.Theme-Section-Custom .Theme-Layer-BodyText-Breakout {
    border-color: inherit
}

.Theme-Layer-BodyText-Indent {
    border-left: 4px solid rgba(0,0,0,.1);
    padding-left: 25px
}

@media (min-width: 620px) {
    .Theme-Layer-BodyText-Indent {
        padding-left:30px
    }
}

@media (min-width: 1100px) {
    .Theme-Layer-BodyText-Indent {
        padding-left:40px
    }
}

.Theme-Story .Theme-Layer-BodyText-Highlight {
    background-color: rgba(22,126,171,.1)
}

.Theme-Story .Theme-Layer-BodyText-Highlight:hover {
    background-color: rgba(22,126,171,.2)
}

.Theme-Story .Theme-Layer-BodyText-Highlight:focus {
    background-color: rgba(22,126,171,.2);
    outline: #167eab auto 1px
}

.Theme-Story .Theme-Layer-BodyText-Highlight .Theme-Layer-BodyText-Highlight--Icon {
    background-color: #167eab
}

.Theme-Story .Theme-Footnote {
    font-family: "Roboto",sans-serif;
    font-size: 80%;
    line-height: 1.5;
    color: #222;
    background-color: rgba(255,255,255,.95);
    box-shadow: 0 3px 10px 6px rgba(0,0,0,.1),0 0 0 1px rgba(0,0,0,.1)
}

.Theme-Story .Theme-Footnote:after {
    border-color: rgba(255,255,255,.95) transparent transparent
}

.Theme-Story .Theme-Footnote:before {
    content: "";
    position: absolute;
    top: 100%;
    height: 20px;
    width: 100%;
    z-index: -1;
    left: 0
}

.Theme-Story .Theme-Footnote.Theme-Position-Top:after {
    border-color: transparent transparent rgba(255,255,255,.95)
}

.Theme-Overlay {
    z-index: 1;
    opacity: 0;
    transform: translateZ(0)
}

.Theme-Overlay.FullSize {
    top: -2px;
    bottom: -2px;
    height: auto;
    left: 0;
    right: 0;
    width: auto
}

.Theme-Layer-TextBlock-Inner {
    pointer-events: auto;
    font-family: "Poppins",sans-serif;
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
    font-size: 100%;
    width: 100%
}

@media (min-width: 750px) {
    .Theme-Layer-TextBlock-Inner {
        width:90%
    }
}

@media (orientation: landscape) and (max-width:900px) {
    .Theme-Layer-TextBlock-Inner {
        width:60%
    }
}

@media (min-width: 900px) {
    .Theme-Layer-TextBlock-Inner {
        max-width:750px
    }
}

@media (min-width: 1100px) {
    .Theme-Layer-TextBlock-Inner {
        max-width:850px
    }
}

@media (min-width: 1400px) {
    .Theme-Layer-TextBlock-Inner {
        max-width:1100px
    }
}

@media (min-width: 1750px) {
    .Theme-Layer-TextBlock-Inner {
        max-width:1250px
    }
}

@media (min-width: 2000px) {
    .Theme-Layer-TextBlock-Inner {
        max-width:1600px
    }
}

@media (min-width: 900px) {
    .Theme-Section:not(.Theme-Section-Layout--Half) .Layout__flex--xleft .Theme-Layer-TextBlock-Inner,.Theme-Section:not(.Theme-Section-Layout--Half) .Layout__flex--xright .Theme-Layer-TextBlock-Inner {
        width:60%
    }
}

.Theme-Layer-TextBlock-Inner a:not(.Theme-Layer-BodyText-Button) {
    color: #000
}

.Theme-Layer-TextBlock-Inner a:not(.Theme-Layer-BodyText-Button):active,.Theme-Layer-TextBlock-Inner a:not(.Theme-Layer-BodyText-Button):focus,.Theme-Layer-TextBlock-Inner a:not(.Theme-Layer-BodyText-Button):hover {
    color: #000
}

.Theme-Layer-TextBlock-Inner a:not(.Theme-Layer-BodyText-Button):visited {
    color: #000
}

.Theme-Layer-TextBlock-Inner .InlineElement,.Theme-Layer-TextBlock-Inner .InlineMedia,.Theme-Layer-TextBlock-Inner blockquote,.Theme-Layer-TextBlock-Inner h1,.Theme-Layer-TextBlock-Inner h2,.Theme-Layer-TextBlock-Inner h3,.Theme-Layer-TextBlock-Inner h4,.Theme-Layer-TextBlock-Inner p {
    padding-left: 25px;
    padding-right: 25px
}

@media (min-width: 620px) {
    .Theme-Layer-TextBlock-Inner .InlineElement,.Theme-Layer-TextBlock-Inner .InlineMedia,.Theme-Layer-TextBlock-Inner blockquote,.Theme-Layer-TextBlock-Inner h1,.Theme-Layer-TextBlock-Inner h2,.Theme-Layer-TextBlock-Inner h3,.Theme-Layer-TextBlock-Inner h4,.Theme-Layer-TextBlock-Inner p {
        padding-left:30px;
        padding-right: 30px
    }
}

@media (min-width: 1100px) {
    .Theme-Layer-TextBlock-Inner .InlineElement,.Theme-Layer-TextBlock-Inner .InlineMedia,.Theme-Layer-TextBlock-Inner blockquote,.Theme-Layer-TextBlock-Inner h1,.Theme-Layer-TextBlock-Inner h2,.Theme-Layer-TextBlock-Inner h3,.Theme-Layer-TextBlock-Inner h4,.Theme-Layer-TextBlock-Inner p {
        padding-left:40px;
        padding-right: 40px
    }
}

.Theme-Layer-TextBlock-Inner .Theme-Layer-BodyText-List-Ordered,.Theme-Layer-TextBlock-Inner .Theme-Layer-BodyText-List-Unordered {
    padding-left: calc(25px + 1.2rem);
    padding-right: calc(25px + 1.2rem)
}

@media (min-width: 620px) {
    .Theme-Layer-TextBlock-Inner .Theme-Layer-BodyText-List-Ordered,.Theme-Layer-TextBlock-Inner .Theme-Layer-BodyText-List-Unordered {
        padding-left:calc(30px + 1.2rem);
        padding-right: calc(30px + 1.2rem)
    }
}

@media (min-width: 1100px) {
    .Theme-Layer-TextBlock-Inner .Theme-Layer-BodyText-List-Ordered,.Theme-Layer-TextBlock-Inner .Theme-Layer-BodyText-List-Unordered {
        padding-left:calc(40px + 1.2rem);
        padding-right: calc(40px + 1.2rem)
    }
}

.Theme-Layer-TextBlock-Inner .Theme-Title {
    color: #000;
    font-weight: 400
}

.Theme-Layer-TextBlock-Inner .Theme-LeadIn,.Theme-Layer-TextBlock-Inner .Theme-StoryTitle,.Theme-Layer-TextBlock-Inner .Theme-Title {
    text-transform: none;
    display: block;
    margin: 0;
    padding-top: 0;
    padding-bottom: 0;
    line-height: 1.1;
    text-align: inherit
}

.Theme-Layer-TextBlock-Inner .Theme-SubTitle,.Theme-Layer-TextBlock-Inner .Theme-Text {
    color: #000;
    line-height: 1.1
}

.Theme-Layer-TextBlock-Inner .Theme-Byline,.Theme-Layer-TextBlock-Inner .Theme-SubTitle,.Theme-Layer-TextBlock-Inner .Theme-Text {
    text-transform: none;
    display: block;
    margin: 0;
    padding-top: 0;
    padding-bottom: 0;
    text-align: inherit
}

.Theme-Layer-TextBlock-Inner .Theme-Byline blockquote,.Theme-Layer-TextBlock-Inner .Theme-Byline h1,.Theme-Layer-TextBlock-Inner .Theme-Byline h2,.Theme-Layer-TextBlock-Inner .Theme-Byline h3,.Theme-Layer-TextBlock-Inner .Theme-Byline h4,.Theme-Layer-TextBlock-Inner .Theme-Byline li,.Theme-Layer-TextBlock-Inner .Theme-Byline p,.Theme-Layer-TextBlock-Inner .Theme-LeadIn blockquote,.Theme-Layer-TextBlock-Inner .Theme-LeadIn h1,.Theme-Layer-TextBlock-Inner .Theme-LeadIn h2,.Theme-Layer-TextBlock-Inner .Theme-LeadIn h3,.Theme-Layer-TextBlock-Inner .Theme-LeadIn h4,.Theme-Layer-TextBlock-Inner .Theme-LeadIn li,.Theme-Layer-TextBlock-Inner .Theme-LeadIn p,.Theme-Layer-TextBlock-Inner .Theme-StoryTitle blockquote,.Theme-Layer-TextBlock-Inner .Theme-StoryTitle h1,.Theme-Layer-TextBlock-Inner .Theme-StoryTitle h2,.Theme-Layer-TextBlock-Inner .Theme-StoryTitle h3,.Theme-Layer-TextBlock-Inner .Theme-StoryTitle h4,.Theme-Layer-TextBlock-Inner .Theme-StoryTitle li,.Theme-Layer-TextBlock-Inner .Theme-StoryTitle p,.Theme-Layer-TextBlock-Inner .Theme-SubTitle blockquote,.Theme-Layer-TextBlock-Inner .Theme-SubTitle h1,.Theme-Layer-TextBlock-Inner .Theme-SubTitle h2,.Theme-Layer-TextBlock-Inner .Theme-SubTitle h3,.Theme-Layer-TextBlock-Inner .Theme-SubTitle h4,.Theme-Layer-TextBlock-Inner .Theme-SubTitle li,.Theme-Layer-TextBlock-Inner .Theme-SubTitle p,.Theme-Layer-TextBlock-Inner .Theme-Text blockquote,.Theme-Layer-TextBlock-Inner .Theme-Text h1,.Theme-Layer-TextBlock-Inner .Theme-Text h2,.Theme-Layer-TextBlock-Inner .Theme-Text h3,.Theme-Layer-TextBlock-Inner .Theme-Text h4,.Theme-Layer-TextBlock-Inner .Theme-Text li,.Theme-Layer-TextBlock-Inner .Theme-Text p,.Theme-Layer-TextBlock-Inner .Theme-Title blockquote,.Theme-Layer-TextBlock-Inner .Theme-Title h1,.Theme-Layer-TextBlock-Inner .Theme-Title h2,.Theme-Layer-TextBlock-Inner .Theme-Title h3,.Theme-Layer-TextBlock-Inner .Theme-Title h4,.Theme-Layer-TextBlock-Inner .Theme-Title li,.Theme-Layer-TextBlock-Inner .Theme-Title p {
    color: inherit;
    font-weight: inherit
}

.GridItem .Theme-Layer-BodyText--inner .InlineMedia .Theme-Caption p,.Theme-Layer-TextBlock-Inner .Theme-Byline h1,.Theme-Layer-TextBlock-Inner .Theme-LeadIn h1,.Theme-Layer-TextBlock-Inner .Theme-StoryTitle h1,.Theme-Layer-TextBlock-Inner .Theme-SubTitle h1,.Theme-Layer-TextBlock-Inner .Theme-Text h1,.Theme-Layer-TextBlock-Inner .Theme-Title h1 {
    margin-top: 0;
    margin-bottom: 0
}

.Theme-Layer-TextBlock-Inner .Theme-Byline,.Theme-Layer-TextBlock-Inner .Theme-LeadIn,.Theme-Layer-TextBlock-Inner .Theme-StoryTitle,.Theme-Layer-TextBlock-Inner h1,.Theme-Layer-TextBlock-Inner p {
    color: #000;
    font-family: "Poppins",sans-serif;
    font-weight: 400
}

.Theme-Layer-TextBlock-Inner .Theme-Byline {
    color: #777;
    line-height: 1.2;
    font-size: .9em
}

.Theme-Layer-TextBlock-Inner .Theme-Byline p {
    font-family: inherit
}

.Theme-Layer-TextBlock-Inner .Theme-LeadIn,.Theme-Layer-TextBlock-Inner .Theme-SubTitle,.Theme-Layer-TextBlock-Inner .Theme-Text {
    margin-top: .5rem
}

@media (min-width: 1100px) {
    .Theme-Layer-TextBlock-Inner .Theme-LeadIn,.Theme-Layer-TextBlock-Inner .Theme-SubTitle,.Theme-Layer-TextBlock-Inner .Theme-Text {
        margin-top:1rem
    }
}

.Theme-Layer-TextBlock-Inner .Theme-LeadIn:first-child,.Theme-Layer-TextBlock-Inner .Theme-SubTitle:first-child,.Theme-Layer-TextBlock-Inner .Theme-Text:first-child {
    margin-top: 0
}

.Theme-Layer-TextBlock-Inner .Theme-Title,.Theme-Layer-TextBlock-Inner h2 {
    font-family: "Poppins",sans-serif
}

.Theme-Layer-TextBlock-Inner .Theme-SubTitle,.Theme-Layer-TextBlock-Inner .Theme-Text,.Theme-Layer-TextBlock-Inner h3,.Theme-Layer-TextBlock-Inner h4 {
    font-family: "Poppins",sans-serif;
    font-weight: 400
}

.InlineElement--Divider__container {
    display: flex;
    text-align: center;
    justify-content: center
}

.Theme-Layer-BodyText-Divider {
    display: inline-block;
    border: none;
    background-color: rgba(204,204,204,.75);
    height: 1px;
    margin: 2.1rem 0;
    overflow: hidden;
    width: 50%
}

.InlineElement--Button__container {
    font-family: "Poppins",sans-serif
}

.Theme-Layer-BodyText-Button {
    display: inline-block;
    border: none;
    color: #fff;
    font-family: inherit;
    font-weight: 700;
    line-height: 1.1;
    background: #167eab;
    font-size: 90%;
    text-transform: initial;
    padding: .7em 1.4em;
    border-radius: .35em;
    cursor: pointer;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    text-decoration: none
}

.Theme-Layer-BodyText-Button:active,.Theme-Layer-BodyText-Button:focus,.Theme-Layer-BodyText-Button:hover {
    opacity: .9;
    text-decoration: none
}

.InlineElement--Table {
    margin: 0;
    padding-bottom: 1.005rem;
    margin-bottom: .495rem
}

.Theme-Layer-BodyText-Table {
    margin-top: 1.5rem;
    border-color: rgba(51,51,51,.4);
    border-width: 1px
}

.Theme-Layer-BodyText-Table td,.Theme-Layer-BodyText-Table th {
    padding: .25em .5em
}

.Theme-Layer-BodyText-Table th {
    background-color: rgba(51,51,51,.1);
    font-family: inherit;
    font-size: 80%;
    font-weight: 700;
    text-transform: initial
}

.Theme-Layer-BodyText-Table th p {
    font-size: inherit
}

.Theme-Layer-BodyText-Table p {
    font-weight: inherit;
    line-height: 1.4;
    font-size: 80%
}

.InlineMedia {
    text-align: center
}

.InlineMedia img {
    width: auto;
    height: auto;
    max-width: 100%;
    margin: 0 auto;
    display: inline-block
}

.InlineMedia.media-size-110 img {
    width: calc(100% + 50px)!important;
    max-width: calc(100% + 50px)!important;
    transform: translate(-25px)
}

@media (min-width: 620px) {
    .InlineMedia.media-size-110 img {
        width:calc(100% + 60px)!important;
        max-width: calc(100% + 60px)!important;
        transform: translate(-30px)
    }
}

@media (min-width: 1100px) {
    .InlineMedia.media-size-110 img {
        width:calc(100% + 80px)!important;
        max-width: calc(100% + 80px)!important;
        transform: translate(-40px)
    }
}

.InlineMedia.media-size-100 img {
    width: 100%!important;
    max-width: 100%!important
}

.InlineMedia.media-size-90 img {
    width: 90%!important;
    max-width: 90%!important
}

.InlineMedia.media-size-80 img {
    width: 80%!important;
    max-width: 80%!important
}

.InlineMedia.media-size-70 img {
    width: 70%!important;
    max-width: 70%!important
}

.InlineMedia.media-size-60 img {
    width: 60%!important;
    max-width: 60%!important
}

.InlineMedia.media-size-50 img {
    width: 50%!important;
    max-width: 50%!important
}

.InlineMedia.media-size-40 img {
    width: 40%!important;
    max-width: 40%!important
}

.InlineMedia.media-size-30 img {
    width: 30%!important;
    max-width: 30%!important
}

.InlineMedia.media-size-20 img {
    width: 20%!important;
    max-width: 20%!important
}

.InlineMedia.media-size-10 img {
    width: 10%!important;
    max-width: 10%!important
}

.InlineMedia--image>a,.InlineMedia--image__inner>div a {
    border: none!important
}

.InlineMedia--image__inner {
    display: inline-block;
    font-size: 0;
    max-width: 100%
}

.InlineMedia--video video {
    width: 100%
}

.Theme-Layer-BodyText {
    word-wrap: break-word;
    font-family: "Roboto",sans-serif;
    padding-top: calc(48px - 1.5rem);
    padding-bottom: 48px;
    padding-left: 25px;
    padding-right: 25px
}

@media (max-width: 619px) {
    .Theme-Layer-BodyText {
        overflow:hidden
    }
}

@media (min-width: 620px) {
    .Theme-Layer-BodyText {
        padding-top:calc(60px - 1.5rem);
        padding-bottom: 60px;
        padding-left: 30px;
        padding-right: 30px
    }
}

@media (min-width: 900px) {
    .Theme-Layer-BodyText {
        padding-top:calc(72px - 1.5rem)
    }
}

@media (min-width: 1100px) {
    .Theme-Layer-BodyText {
        padding-left:40px;
        padding-right: 40px
    }
}

.Theme-Layer-BodyText .Theme-Overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1
}

.Theme-Layer-BodyText p,.Theme-Layer-BodyText-Blockquote,.Theme-Layer-BodyText-Heading-Large,.Theme-Layer-BodyText-Heading-Small,.Theme-Layer-BodyText-Heading-xl,.Theme-Layer-BodyText-Heading-xs,.Theme-Layer-BodyText-List-Alpha,.Theme-Layer-BodyText-List-Ordered,.Theme-Layer-BodyText-List-Roman,.Theme-Layer-BodyText-List-Unordered,.Theme-Layer-BodyText-QuoteCite {
    margin-left: auto;
    margin-right: auto;
    text-transform: initial
}

.Theme-ButtonSize-xsmall .Theme-Layer-BodyText-Button {
    font-size: 70%
}

.Theme-ButtonSize-small .Theme-Layer-BodyText-Button {
    font-size: 80%
}

.Theme-ButtonSize-medium .Theme-Layer-BodyText-Button {
    font-size: 90%
}

.Theme-ButtonSize-large .Theme-Layer-BodyText-Button {
    font-size: 100%
}

.Theme-ButtonSize-xlarge .Theme-Layer-BodyText-Button {
    font-size: 110%
}

.Theme-DividerSize-xlarge {
    width: 100%
}

.Theme-DividerSize-xlarge+.InlineElement--UI__container .BlockBar-Align {
    display: none
}

.Theme-DividerSize-large {
    width: 75%
}

.Theme-DividerSize-medium {
    width: 50%
}

.Theme-DividerSize-small {
    width: 25%
}

.Theme-DividerSize-xsmall {
    width: 10%
}

.Theme-Layer-BodyText-Spacer,.Theme-SpacerSize-10 {
    height: 40px
}

.Theme-SpacerSize-20 {
    height: 80px;
    height: 8vh
}

.Theme-SpacerSize-30 {
    height: 120px;
    height: 16vh
}

.Theme-SpacerSize-40 {
    height: 180px;
    height: 24vh
}

.Theme-SpacerSize-50 {
    height: 220px;
    height: 32vh
}

.Theme-SpacerSize-60 {
    height: 280px;
    height: 40vh
}

.Theme-SpacerSize-70 {
    height: 320px;
    height: 50vh
}

.Theme-SpacerSize-80 {
    height: 360px;
    height: 65vh
}

.Theme-SpacerSize-90 {
    height: 400px;
    height: 85vh
}

.Theme-SpacerSize-100 {
    height: 440px;
    height: 100vh
}

.Theme-Caption {
    padding-left: 0;
    padding-right: 0
}

.Theme-Caption .caption-editor-empty {
    font-family: "Roboto",sans-serif;
    font-size: .8em;
    font-weight: 400;
    line-height: 1.2;
    margin: 0
}

.Theme-Caption cite,.Theme-Caption p:not(:empty) {
    margin: 0;
    max-width: 100%
}

.Theme-Caption p:not(:empty) {
    color: #777;
    font-weight: 400;
    font-family: "Roboto",sans-serif;
    font-style: normal;
    line-height: 1.2;
    font-size: .8em;
    padding: .5em
}

.Theme-Caption [contenteditable=false],.Theme-Caption cite {
    padding: .5em
}

.Theme-Caption a {
    display: inline
}

.Theme-OverlayedCaption {
    pointer-events: auto;
    background-color: rgba(0,0,0,.6);
    z-index: 2
}

.Theme-CollectionSectionSection .Theme-OverlayedCaption,.Theme-GridSection .Theme-OverlayedCaption,.Theme-RelatedStoriesSection .Theme-OverlayedCaption,.Theme-TextOverMediaSection .Theme-OverlayedCaption,.Theme-TitleSection .Theme-OverlayedCaption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0
}

.Theme-OverlayedCaption p:not(:empty) {
    color: #fff;
    font-family: "Roboto",sans-serif;
    font-size: .8em;
    line-height: 1.2;
    margin: 0;
    padding: .5em 25px
}

.Theme-OverlayedCaption [contenteditable=false] {
    padding: .5em 25px
}

.DisplayContainerHeight--heightThird .Theme-OverlayedCaption [contenteditable=false],.DisplayContainerHeight--heightThird .Theme-OverlayedCaption p:not(:empty) {
    font-size: 12px
}

@media (min-width: 620px) {
    .Theme-OverlayedCaption [contenteditable=false],.Theme-OverlayedCaption p:not(:empty) {
        padding-left:30px;
        padding-right: 30px
    }
}

@media (min-width: 1100px) {
    .Theme-OverlayedCaption [contenteditable=false],.Theme-OverlayedCaption p:not(:empty) {
        padding-left:40px;
        padding-right: 40px
    }
}

.Theme-MediaSection .Theme-Caption [contenteditable=false],.Theme-MediaSection .Theme-Caption p:not(:empty) {
    padding-left: 25px;
    padding-right: 25px
}

@media (min-width: 620px) {
    .Theme-MediaSection .Theme-Caption [contenteditable=false],.Theme-MediaSection .Theme-Caption p:not(:empty) {
        padding-left:30px;
        padding-right: 30px
    }
}

@media (min-width: 1100px) {
    .Theme-MediaSection .Theme-Caption [contenteditable=false],.Theme-MediaSection .Theme-Caption p:not(:empty) {
        padding-left:40px;
        padding-right: 40px
    }
}

.Theme-ImageCaption,.Theme-InlineMediaCaption p {
    text-align: center
}

.h-align-right .Theme-InlineMediaCaption p {
    text-align: right;
    padding-right: 0
}

.h-align-left .Theme-InlineMediaCaption p {
    text-align: left;
    padding-left: 0
}

.Theme-ImageCaption p:not(:empty),.Theme-InlineMediaCaption p:not(:empty) {
    color: #777
}

.Theme-HeaderContainer {
    height: 40px;
    background: #fff;
    box-shadow: 0 2px 2px -2px rgba(0,0,0,.3)
}

@media (min-width: 900px) {
    .Theme-HeaderContainer {
        height:50px
    }
}

@media (min-width: 1100px) {
    .Theme-HeaderContainer {
        height:60px
    }
}

.Theme-HeaderContainer.Theme-Section-Custom {
    box-shadow: none
}

.Theme-HeaderContainer:not(.Project-HeaderContainer):not(.Theme-HeaderContainer--hidden) .Theme-Header {
    width: 100%;
    max-width: 100%;
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right)
}

.Theme-Logos {
    display: inline-flex;
    height: 24px
}

.Theme-Logos:not(:empty) {
    margin-left: 15px
}

@media (min-width: 900px) {
    .Theme-Logos {
        height:30px
    }
}

@media (min-width: 1100px) {
    .Theme-Logos {
        height:36px
    }
}

.Theme-Logo,.Theme-Logo img {
    height: 100%;
    vertical-align: top
}

.Theme-Logo {
    display: inline-block;
    min-width: auto;
    margin-right: calc(10px + .5vw);
    width: 100%
}

.body-editor .Theme-Logo {
    display: flex
}

.Theme-Logo a {
    display: block;
    height: 100%
}

.Theme-Logo img {
    max-height: 100%;
    max-width: none;
    width: auto;
    flex-shrink: 0
}

.Theme-Default-Logos {
    display: inline-flex;
    vertical-align: top;
    height: 100%
}

.Theme-Default-Logos .Theme-Logo,.Theme-SocialIcons {
    display: inline-flex
}

.Theme-Default-Logos .Theme-Logo a+a {
    margin-left: calc(10px + .5vw)
}

.Theme-SocialIcons {
    position: absolute;
    min-width: -moz-fit-content;
    min-width: fit-content;
    height: 32px;
    top: 50%;
    margin-top: -16px;
    justify-content: flex-end;
    text-align: right;
    right: 0;
    margin-right: 15px;
    border: none;
    background: 0 0
}

@media (min-width: 620px) {
    .Theme-SocialIcons.Display--sm-block {
        display:inline-flex!important
    }
}

@media (min-width: 1100px) {
    .Theme-SocialIcons {
        position:absolute
    }
}

@media (max-width: 1099px) {
    .Theme-Hamburger~.Theme-SocialIcons {
        right:45px;
        right: calc(45px + env(safe-area-inset-right))
    }
}

.Theme-SocialButton {
    display: inline-block;
    vertical-align: top;
    margin-left: 4px
}

.Theme-SocialButton a,.Theme-SocialButton span {
    display: block;
    border-radius: 4px;
    overflow: hidden;
    width: 32px;
    height: 32px
}

.Theme-SocialButton a:after,.Theme-SocialButton span:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0
}

.Theme-NavigationBar.Theme-NavigationBar-Sticky:before,.Theme-NavigationBar.Theme-Section-Custom:before,.Theme-NavigationBar.Theme-Section-Dark:before,.Theme-SocialButton img {
    display: none
}

.Theme-TwitterButton {
    background: #000
}

.Theme-TwitterButton:after {
    background: url("data:image/png;base64, iVBORw0KGgoAAAANSUhEUgAAAFEAAADCCAYAAAAxfS7bAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA4ZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDkuMS1jMDAxIDc5LmE4ZDQ3NTM0OSwgMjAyMy8wMy8yMy0xMzowNTo0NSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDoyZmEyYzAxYi05MWJmLTQ1OGEtYmNkZC1mNjQ1MzRmOGRlMzUiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6REQ1M0RFMDg4Q0JFMTFFRTlEMjNFM0RGMDJEQTQyODciIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6REQ1M0RFMDc4Q0JFMTFFRTlEMjNFM0RGMDJEQTQyODciIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIDI0LjYgKE1hY2ludG9zaCkiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDowNTUwNmViNS1kNjRiLTRhOWItYTBlMi03OGFlOWQ4OWQ2MDgiIHN0UmVmOmRvY3VtZW50SUQ9ImFkb2JlOmRvY2lkOnBob3Rvc2hvcDo4YmRjY2M1Yi1hMzUyLWExNGYtYmYyMy0wYzk3N2U2Yzg4ZGMiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz4Xsa0HAAAHc0lEQVR42uydjY2cSBCFdy4CQuAyYDPAGbAZsBmMIzCOAF8EOAPWEXAZ4AzGGYwz2IMVlk6jrmaqqOpumFcSWml2gOajf6qq33Sf3t/fn2Db7C8gAERABEQYIAIiIAIiDBATgHg6ncbpeN94XKejiP3gxLPMn2Xsi81h373HZPPDvyscI+e+2sdknaNM1+nIRNcTFKBRAtlEAtgSAAvxNYUFGZVAFoEB1kQ5qk3XFRYmX97e/wsyrJwzOAp/kTYhQZlLAmC9+dobCnV2FOjs+X7mAD8fbQCABXHvTuX6Gws3cPqWudkQtaE0BJhZAtSA6CrgKOzYMyOArv571LyfRkErzsi7PNjFcU5vALEP0Q9bFrYU+JtVAF9Q3SPQbDYXzhsn/E2VZu1xZUxcKmsXohP4m4MRwNps8AoQDVRMf9PrKgldGdPoyGI0vDiaaM6sOd5zmC+kM/dDjRzbd2Y0029JUvhcmSDRkJGD2yhFM82GWH4MFlIaRgojZ3T0xLaF0JXJgyU2AserkmiGrFEeNylsdsg48D9zEg6evq1NwZWJAtGTApNEM+Ud3wkOMBREl+txFUQzl6WmFrFcmWgQPUmKXlCDu1DJi+QgenzBWuA8R3NlUoCYEc06FyRxTfOQ3CPY5P10s9/Tn5ebj7OliVLnvE1/3oh/z9f7tFw3riUyZSlJ4jaxa2Dw5nwHFG40EzQqSQqiB8q44va02rnHXUP0+IKtIB5vHhaiB0oliGaKR4ZYcN0WIh4fHxaiB4okmmkfFqIHiiSJWx7a2V6xH47PvpxOp9zjuL86/tWJRJp7c7aZwtG1JG6XQrNOAeBakkESzVSP4idmDLGoJJrJHgEiNUNXc0VIhOPeHz3s8wrPiRBPIkmpj5qAWBWeS/o6on8NkqQIDfBu4bmkryMc9+EwECXCc0nmhpiGOO8eoseVaYUDkCSaKXYLcavw3JOk4Arsx11C1BKeEy6MRJLS7BGimvCcSFJIoplyNxC1heeeeWiuJCXNXw+EEp4TLowkmmmThmit1iK6CEkSt0wSYgjhuWe05wrs1ZIU1uovE7UW4cJIBPZ9MhA9rswQeOCSRDNVKhCDC889Lgw3mtmcpLB0ZfKI8Tg3iTtEg5iC8Jwrlveccw4OMRXhOUcsv3KOPBBQnqGLIzyPvNRMcuspKHctQZaa0RoRowrPYy81k7wro+Twc48L574nrG6MVesAERBhgAiIgAiIMEAEREAERBggAiIgAiIMEAEREAERBoiACIiACANEQAREGCACIiACIgwQAREQAREGiIAIiIAIA0RABERAhAEiIAIiIMIAERABERBhgAiIgAgDREAERECEASIgHgKixqpwH4s9JvDs5OJx1hBfFQrv3Rg7kHWOF/mx6fby1xTiz+n4qvAQ8wM0kQDO68nWWgA/TLhW4bxsqIaF3g23JspRxVjdeF7++XpTkLVllgdH4efFHkMtYFkSAOuYi5WfHQXyLbOcOcDPFmLbzIK4d5fCsvm3teu60kQrojZY7oabWQLUgOgq4Noyy63jga5GzToj+u9R834aF3HVrmblwS6OcyxWSO5D9MOWhS1X+ij1UfLm6Igar+4RaDabC/ONN4bNug7pUlm7EJ3A3xyMAJot6a99wZbZRHNi5DwruzKNpQtlMRpeHE00Z9actXM4L8R8TwQrx5bbRHvCDdFwZXa7v3OjFM3c2wzNfcFY23COzNGxFI6onVJ3kCTEQima8dWoJpQvGHNr4jMz4UD1bW0KrkzMTbIHpWimvOM7cbZ3CnATl+uxFpk0npi3iOXKxN7zvhIkHAYCVKjkRXIQKV+wFjjP0VyZFLZX+rNJWHYzQfQ8Hb+Ic+aNX3vPNefz/xZPMO1w8n5+0Bfm9OnbclDX+xQbYAwFxL/T8e3ms3Jl+vSVqKn/LFO40S3Gbml/tsDMbz5/9kCZQQ+OmujrCg6txflNKCk6j4TDVYNTUFJsmry3SlK0gni8iTkyp7D54ejQxLx4BpNiOeeJ0RUcXlrHbdYzqM/EOQ+rT3RBWevrvi195G0NbR+xT1wL8SRJ3DJG+VNRyv5wfPbF4QZtGeEPXROLlbiYm9Vuj5yA4ExxbpWkVI/i4mRLFHKPflsSzQRLTMTsE10AfxJ9Xb8SzXyNGs1Easbdig6nVZKk1EftE9s7ZugkfV1BTEPkR4PIEZ6XAtXY2UAglRREifC8VZKknI8Asdggeh+VoplizxC3Cs8LgcqhCiluCgFQQ2zUCKC0oXKPMaZJpcLzQSmaKfcEUVt4ngsyN8Wefj0QSnh+FkBphANaVIjWaq1eSZJSpgoxhPCcGu25Anu1X3FZq7+s1FqVQB1bWwmhrF2ZIfDAJYlmqlQgxhCeUy4MN5rZnKSwdGVCCM8lYvlSu8VYqBhCC89bQStoNZMUu/oNnYJY3neO+OVL51goOcec2v8eYaqBKo9ETPAcYo6lcEwMPS3wvkear4m61Ay3JlLawjeHCjYVgZTEWAIpLsSRmKFLQva7vFzRUlU39muZck1WKXs4w6p1gAiIh7H/BBgA78Z+eNHvc1QAAAAASUVORK5CYII=") center no-repeat;
    background-size: 18px auto;
    background-position-y: -19px
}

.Theme-FaceboookButton,.Theme-LIButton {
    background-color: #000
}

.Theme-FaceboookButton:after {
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACUAAADICAMAAABYmthtAAAAvVBMVEX////////7+/v////19fX////v7+/////////o6Oj////e3t7////W1tb////MzMz////ExMT///+6urr///+xsbH///+qqqr///+goKD///+SkpL///////+EhIT///95eXn///9ubm7///////9lZWX///9aWlr///9SUlL///9HR0f///8/Pz////83NzcvLy////8pKSn///////8hISH///8YGBj///8NDQ3///8GBgb///8AAAD///+MsSc4AAAAPXRSTlMAAQQECgoQEBQXGiEhKSkzMzs7RUVOT1VeX2dtcXh7foaHkZGZmqOlq62wuLjAwMjQ0NbW3d7l5+3y8/j4UtbH3wAAAT5JREFUeNrt01tPwkAQhuFFW6qCth5AFG2lhZYKrRxbQHf//88yISR00k32u/AGmff6yWQuZkQ915+UkpTWzPOMAK26zqQ0qttSmlVzLQGVSEC5ElEJoqwtoh4lonxIpZCaQaqUtHLUf+nscyvqm6KJJXRJWkuLmhStBaK+IJWdnfLDQyOqyvBYXyykuRRSIaR8SGF7dSB1D6kWpCxEbQWiFpDKIJVA6oO/gxUrVqz+kRIXNMFxHMdxf1+jcVlNI7xgWijSuDakNydAq25ypYzqrlBm5awUoGIFKE8hKkaUvUPUk0JUAKlPSM0htVG0zfCt193nVdQPRVNbe1KK1ha6HIpWQtsVVbleOeeu3qNDQ6qK6NirWCpzY0hFkAoghe3VhdQDpNqQshG1E4haQiqHVAypAX8HK1asWJ28+gW2AvIER0DSdAAAAABJRU5ErkJggg==) center no-repeat;
    background-size: 8px auto;
    background-position-y: -19px
}

.Theme-LIButton:after {
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFEAAADCCAMAAAAGo97pAAAAMFBMVEVHcEyTk5MAAAAAAAAAAAAAAAAAAAAAAAD///////////////////////////////8Fq/ZlAAAAEHRSTlMADCaZ7v9XdCaw8P9uVobXtqYwrAAAAfBJREFUeNrtmu2OgjAQRemHbcEW3v9t12YjcnWJ2eGuIZt7Ev8AczIzTCsaBiHOi7tB1PkQL53gScJ0WclcYScxOhi3xuhIKVLrzmgMdGPk53hGowchZXwitpGAjxuhHzhKEFLIId50IZG3s9tnEB/Ce5/8u4lIwD0SDn4rXB+JTh8L99s1k1+Wpst4YXAHjX0ZIDEdMa5CIB8wghCURuOmhYi3GlEIX51G4z6ZboyOYETSEWMM4bWhwW4Mvu+fPlyQaDVGP+yc8RYjxj1lmSxGHBLPMOKMYJLZZMQbmglGjEp0o8f8Tcb0UWM+S47qo/qoPqqP6qOMVqMD1oPAfoR+QQshhBBCCCGEEEKI//oGWxmna2csJGG9rlSKsF03NEYHp61xcqQUqXVXNI7HjTMaF77xjFUXEFLGZ8GiCZTtQBbOsl7WDFkL29W+VUxjdQMR/fn+UUpprbxreQPukXCwPEai824scMf9cf9o3TfjhbM7aOzLAJnaAWNdlypQf2OsmCMIQWk01kfJSLEap+sOizMa96l04+QIRqQdMS7j+HqHRrtxLt+Pcc9lW41TGXbOFIsR456ybDbjDF/wBCPOCCZZTUa8oRXTNxkxqhGMWFkhGNtfG1W1qlbVqtpQteH58ZxGVf0Pqqa+wYbnzs8XftCGq4E7GXQAAAAASUVORK5CYII=) center no-repeat;
    background-size: 20px auto;
    background-position-x: center;
    background-position-y: -24px;
    background-color: transparent;
    background-repeat: no-repeat
}

.Theme-Hamburger {
    right: 15px;
    right: calc(15px + env(safe-area-inset-right))
}

.Theme-Hamburger span {
    background: #000;
    height: 3px
}

.Theme-NavigationBar {
    top: 40px;
    background-color: rgba(255,255,255,.95);
    color: rgba(0,0,0,.6);
    width: 100%;
    max-width: none;
    overflow-y: auto;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px)
}

@media (max-width: 619px) {
    .Theme-NavigationBar {
        min-width:100%
    }
}

@media (min-width: 620px) and (max-width:1099px) {
    .Theme-NavigationBar {
        max-width:400px
    }
}

@media (max-width: 1099px) {
    .Theme-NavigationBar {
        padding-bottom:40px
    }
}

@media (min-width: 900px) {
    .Theme-NavigationBar {
        top:50px
    }
}

@media (min-width: 1100px) {
    .Theme-NavigationBar {
        top:100%;
        position: absolute;
        left: 0;
        right: 0;
        padding: 0 15px;
        display: block;
        -webkit-backdrop-filter: none;
        backdrop-filter: none;
        overflow: hidden
    }
}

@media (max-width: 1099px) {
    #Navigation__hamburgerToggle:checked~.Theme-NavigationBar {
        right:-15px
    }
}

@media (max-width: 619px) {
    #Navigation__hamburgerToggle:checked~.Theme-NavigationBar {
        left:-15px
    }
}

.Theme-NavigationBar.Theme-NavigationBar-Sticky,.Theme-NavigationBar.Theme-Section-Custom,.Theme-NavigationBar.Theme-Section-Dark {
    opacity: .95
}

.Theme-NavigationBar-Sticky {
    background: rgba(255,255,255,.95)
}

@media (min-width: 1100px) {
    .Theme-Navigation-ItemList {
        display:flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap
    }
}

.Theme-NavigationBarItem {
    padding: 0;
    text-decoration: none;
    border-bottom: none;
    border-top: 0 solid rgba(180,180,180,.4);
    color: inherit
}

.Theme-NavigationBarItem::after,.Theme-NavigationBarItem::before {
    display: none
}

@media (min-width: 1100px) {
    .Theme-NavigationBarItem {
        display:inline-block;
        border-top: none;
        margin: 0
    }
}

.Theme-NavigationLink {
    font-family: "Roboto",sans-serif;
    font-size: 17px;
    font-weight: 400;
    color: inherit;
    line-height: 1;
    text-decoration: none;
    display: block;
    padding: 15px;
    border: none
}

.Theme-NavigationLink:empty:before {
    content: "Untitled"
}

.Theme-ActiveNavigationBarItem .Theme-NavigationLink,.Theme-NavigationLink:hover {
    color: #000;
    text-decoration: none
}

@media (min-width: 1100px) {
    .Theme-NavigationLink {
        font-size:16px;
        padding: 8px 10px;
        margin: 0
    }
}

.Theme-Section-Custom .Theme-NavigationLink,.Theme-Section-Dark .Theme-NavigationLink {
    opacity: .6;
    color: inherit
}

.Theme-Section-Custom .Theme-ActiveNavigationBarItem .Theme-NavigationLink,.Theme-Section-Custom .Theme-NavigationLink:hover,.Theme-Section-Dark .Theme-ActiveNavigationBarItem .Theme-NavigationLink,.Theme-Section-Dark .Theme-NavigationLink:hover {
    color: inherit;
    opacity: 1
}

.Theme-HeaderContainer--hidden {
    height: 0
}

@media (max-width: 1099px) {
    .Theme-HeaderContainer--hidden {
        background:0 0!important;
        height: auto;
        width: auto;
        display: flex;
        right: 0;
        align-items: center;
        justify-content: flex-end;
        box-shadow: none;
        overflow: auto
    }
}

.body-editor .Theme-HeaderContainer--hidden {
    top: 0
}

.Theme-HeaderContainer--hidden .Theme-Logos {
    display: none
}

.Theme-HeaderContainer--hidden .Theme-SocialIcons {
    display: none!important
}

.Theme-HeaderContainer--hidden .Theme-Header {
    width: 100%;
    max-width: 100%;
    height: 0
}

@media (max-width: 1099px) {
    .Theme-HeaderContainer--hidden .Theme-Header {
        max-width:50px;
        height: auto;
        max-height: 50px;
        margin: 0;
        background-color: #fff;
        box-shadow: 0 2px 2px -2px rgba(0,0,0,.3)
    }

    .Theme-HeaderContainer--hidden .Theme-Hamburger {
        margin: 10px;
        position: relative;
        right: 0;
        top: auto;
        transform: none
    }
}

.Theme-HeaderContainer--hidden .Project-Header--center {
    top: 0
}

.Theme-HeaderContainer--hidden .Theme-NavigationBar {
    padding: 0
}

@media (max-width: 1099px) {
    .Theme-HeaderContainer--hidden .Theme-NavigationBar {
        top:0;
        border-top: 50px solid #fff
    }
}

@media (min-width: 1100px) {
    .Theme-HeaderContainer--hidden .Theme-NavigationBar {
        position:absolute;
        top: 100%;
        left: 0;
        right: 0;
        transform: none;
        margin: 0
    }
}

.Theme-HeaderContainer--hidden .Theme-NavigationBar:not(.Theme-Section-Custom) {
    background-color: rgba(255,255,255,.95)
}

@media (min-width: 1100px) {
    .Theme-HeaderContainer--hidden .Theme-NavigationLink {
        padding:8px 10px
    }
}

.Theme-HeaderContainer--hidden+.Theme-Story .Theme-TitleSection.DisplayContainerHeight--minHeight {
    min-height: 100vh;
    min-height: 100svh
}

.body-editor .Theme-HeaderContainer--hidden+.Theme-Story .Theme-TitleSection.DisplayContainerHeight--minHeight {
    min-height: calc(100vh - 60px)
}

@media (min-width: 1100px) {
    .Theme-HeaderContainer--hidden+.Theme-Story .Theme-Layer-CardCanvas[data-card-canvas] {
        margin-top:50px;
        top: 50px
    }
}

@media (max-width: 899px) {
    .Theme-HeaderContainer--hidden+.Theme-Story .Theme-Layer-CardCanvas[data-card-canvas] {
        top:0
    }
}

@media (max-width: 1099px) {
    body:not(.body-editor) .Theme-HeaderContainer--hidden.Theme-HeaderContainer--navigable+.Theme-Story {
        margin-top:-50px
    }
}

.Theme-TextOverMediaSection .InlineMedia img,.Theme-TitleSection .InlineMedia img {
    opacity: 1
}

.Theme-TextOverMediaSection .InlineMedia--video,.Theme-TextOverMediaSection .InlineMedia--youTube,.Theme-TextOverMediaSection .InlineMedia-Soundcloud,.Theme-TextOverMediaSection .RichEmbed--soundcloud,.Theme-TextOverMediaSection .RichEmbed--youtube,.Theme-TitleSection .InlineMedia--video,.Theme-TitleSection .InlineMedia--youTube,.Theme-TitleSection .InlineMedia-Soundcloud,.Theme-TitleSection .RichEmbed--soundcloud,.Theme-TitleSection .RichEmbed--youtube {
    margin: .5rem 0
}

.DisplayContainerHeight--flex {
    display: flex
}

.DisplayContainerHeight--flex .Layer--one {
    display: flex;
    flex-direction: column;
    flex: 1;
    width: 100%;
    padding: calc(4vh + 40px) 0
}

.CardCanvas--tworowContainer .CardCanvasItem__image img,.DisplayContainerHeight--flex .DisplayContainerHeight {
    height: 100%
}

.DisplayContainerHeight--minHeightHalf .Layer--one {
    padding: calc(2vh + 30px) 0
}

.DisplayContainerHeight--minHeightThird .Layer--one {
    padding: calc(2vh + 20px) 0
}

.DisplayContainerHeight--flex:not(.SplitLayout) {
    flex-direction: column
}

.Theme-Layer-TextBlock-Container {
    display: flex;
    flex: 1;
    height: 100%
}

.Theme-BackgroundMedia {
    pointer-events: none
}

.DeviceDetect--isEdge .Theme-TitleSection .DisplayContainerHeight--minHeight,.Theme-TitleSection.DisplayContainerHeight--minHeight {
    min-height: calc(100vh - 40px);
    min-height: calc(100svh - 40px)
}

@media (min-width: 900px) {
    .DeviceDetect--isEdge .Theme-TitleSection .DisplayContainerHeight--minHeight,.Theme-TitleSection.DisplayContainerHeight--minHeight {
        min-height:calc(100vh - 50px);
        min-height: calc(100svh - 50px)
    }
}

@media (min-width: 1100px) {
    .DeviceDetect--isEdge .Theme-TitleSection .DisplayContainerHeight--minHeight,.Theme-TitleSection.DisplayContainerHeight--minHeight {
        min-height:calc(100vh - 60px);
        min-height: calc(100svh - 60px)
    }
}

.body-editor .DeviceDetect--isEdge .Theme-TitleSection .DisplayContainerHeight--minHeight,.body-editor .Theme-TitleSection.DisplayContainerHeight--minHeight {
    min-height: calc(100vh - 95px)
}

@media (min-width: 900px) {
    .body-editor .DeviceDetect--isEdge .Theme-TitleSection .DisplayContainerHeight--minHeight,.body-editor .Theme-TitleSection.DisplayContainerHeight--minHeight {
        min-height:calc(100vh - 105px)
    }
}

@media (min-width: 1100px) {
    .body-editor .DeviceDetect--isEdge .Theme-TitleSection .DisplayContainerHeight--minHeight,.body-editor .Theme-TitleSection.DisplayContainerHeight--minHeight {
        min-height:calc(100vh - 115px)
    }
}

.Theme-TitleSection.DisplayContainerHeight--flex .Theme-Layer-TextBlock-Container~.Theme-Layer-TextBlock-Container {
    align-items: flex-start;
    flex: 0 0 auto;
    height: auto
}

.Theme-TitleSection.DisplayContainerHeight--flex .Theme-Layer-TextBlock-Container~.Theme-Layer-TextBlock-Container .Theme-Byline:not(:empty) {
    padding-top: 20px
}

@media (max-width: 899px) {
    .Theme-TextSection.Theme-Columns--2 .Theme-Column:first-child .Theme-Layer-BodyText {
        padding-bottom:0
    }

    .Theme-TextSection.Theme-Columns--2 .Theme-Column:last-child .Theme-Layer-BodyText {
        padding-top: 0
    }

    .Theme-TextSection.Theme-Columns--2 .Theme-Column:last-child .Theme-Layer-BodyText--inner p:first-child {
        margin-top: 0
    }
}

@media (max-width: 619px) {
    .Theme-TextSection.Theme-Columns--2 .Theme-Column {
        min-width:100%
    }
}

.Theme-BackgroundScrollmationSection {
    background-color: #000
}

@media (max-width: 900px) {
    .Theme-BackgroundScrollmationSection .Theme-Layer-BodyText {
        margin-top:70vh;
        margin-bottom: 70vh
    }
}

@media (min-width: 1100px) {
    .Theme-TwoColumnScrollmationSection .Theme-Layer-BodyText {
        padding-top:calc(72px - 1.5rem)
    }
}

.Theme-Layer-CardCanvas,.Theme-TwoColumnScrollmationSection .media-editor-container {
    padding: 40px 25px
}

@media (min-width: 620px) {
    .Theme-Layer-CardCanvas,.Theme-TwoColumnScrollmationSection .media-editor-container {
        padding:60px 25px
    }
}

@media (min-width: 900px) {
    .Theme-Layer-CardCanvas,.Theme-TwoColumnScrollmationSection .media-editor-container {
        padding:72px 40px 60px
    }
}

@media (min-width: 1100px) {
    .Theme-Layer-CardCanvas,.Theme-TwoColumnScrollmationSection .media-editor-container {
        padding-top:110px
    }
}

.Theme-TwoColumnScrollmationCaption {
    padding-top: 40px
}

@media (min-width: 620px) {
    .Theme-TwoColumnScrollmationCaption {
        padding-top:60px
    }
}

@media (min-width: 900px) {
    .Theme-TwoColumnScrollmationCaption {
        padding-top:72px
    }
}

@media (min-width: 1100px) {
    .Theme-TwoColumnScrollmationCaption {
        padding-top:110px
    }
}

.Theme-LinkedMediaRenderer {
    transition: opacity .15s ease
}

.Theme-Layer-CardCanvas[data-card-canvas] {
    padding-top: 0;
    padding-bottom: 0;
    margin-top: 78px;
    top: 78px
}

@media (max-width: 899px) {
    .Theme-Layer-CardCanvas[data-card-canvas] {
        height:35vh!important;
        top: 40px
    }
}

@media (min-width: 1100px) {
    .Theme-Layer-CardCanvas[data-card-canvas] {
        margin-top:76.8px;
        top: 106.8px
    }
}

.DeviceDetect--isEdge .Theme-Layer-CardCanvas[class*=StickyPolyfillElement] {
    margin-top: 0
}

@media (max-width: 899px) {
    .CardCanvas--tworowContainer .CardCanvas {
        padding:0;
        margin: 0;
        box-shadow: 0 1px 1px rgba(0,0,0,.1);
        -webkit-backdrop-filter: blur(3px);
        backdrop-filter: blur(3px)
    }

    .Theme-Section-Light .CardCanvas--tworowContainer .CardCanvas {
        background-color: rgba(255,255,255,.95)
    }

    .CardCanvas--tworowContainer .CardCanvas__textColumn {
        padding-top: calc(35vh + 10px)
    }
}

@media (max-width: 899px) and (max-aspect-ratio:6/8) {
    .CardCanvas--tworowContainer .CardCanvas__textColumn {
        padding-top:calc(35vh + 10px)
    }
}

@media (max-width: 899px) {
    .CardCanvas--tworowContainer .CardCanvas__canvasColumn {
        pointer-events:none
    }

    .CardCanvas--tworowContainer .CardCanvas__canvasColumn .Theme-Caption {
        pointer-events: auto
    }

    .CardCanvas--tworowContainer .CardCanvasItem__caption {
        right: 4px;
        bottom: 4px;
        left: 4px;
        max-width: initial
    }

    .CardCanvas--tworowContainer .CardCanvasItem {
        padding: 4px;
        pointer-events: initial
    }
}

.Theme-MediaSection .Theme-Layer-ResponsiveMedia-image {
    padding: 15px
}

@media (min-width: 620px) {
    .Theme-MediaSection .Theme-Layer-ResponsiveMedia-image {
        padding:25px
    }
}

@media (min-width: 900px) {
    .Theme-MediaSection .Theme-Layer-ResponsiveMedia-image {
        padding:30px
    }
}

@media (min-width: 1100px) {
    .Theme-MediaSection .Theme-Layer-ResponsiveMedia-image {
        padding:40px
    }
}

.Theme-Layer-Gallery-List a,.Theme-MediaSection .Theme-Layer-ResponsiveMedia-image .Theme-Item-Picture {
    display: block
}

.Theme-MediaSection .Theme-Layer-ResponsiveMedia-image img {
    max-width: 100%;
    height: auto
}

.Theme-MediaSection .Theme-Layer-ResponsiveMedia-image>a {
    border: none
}

.Theme-Layer-ResponsiveMedia-embed .RichEmbed--facebook,.Theme-Layer-ResponsiveMedia-embed .RichEmbed--instagram,.Theme-Layer-ResponsiveMedia-embed .RichEmbed--linkedin,.Theme-Layer-ResponsiveMedia-embed .RichEmbed--pinterest,.Theme-Layer-ResponsiveMedia-embed .RichEmbed--twitter,.Theme-Layer-responsive-media-embed .RichEmbed--facebook,.Theme-Layer-responsive-media-embed .RichEmbed--instagram,.Theme-Layer-responsive-media-embed .RichEmbed--linkedin,.Theme-Layer-responsive-media-embed .RichEmbed--pinterest,.Theme-Layer-responsive-media-embed .RichEmbed--twitter {
    padding: 15px 0
}

.Theme-Layer-ResponsiveMedia-embed .twitter-tweet,.Theme-Layer-responsive-media-embed .twitter-tweet {
    margin: 0 auto!important
}

.Theme-RevealSection .Theme-Layer-BodyText {
    border-radius: .5em;
    padding-top: 10px;
    padding-bottom: 10px;
    margin: 0 auto
}

@media (max-width: 1199px) {
    .Theme-RevealSection .Theme-Layer-BodyText {
        width:95%
    }
}

@media (min-width: 620px) {
    .Theme-RevealSection .Theme-Layer-BodyText {
        padding-top:10px;
        padding-bottom: 10px
    }
}

@media (min-width: 1100px) {
    .Theme-RevealSection .Theme-Layer-BodyText {
        padding-top:20px;
        padding-bottom: 20px
    }
}

.Theme-RevealSection .Theme-Layer-BodyText .Theme-Overlay,.Theme-ScrollpointsSection .Theme-Layer-BodyText .Theme-Overlay {
    border-radius: .5em
}

.Theme-ScrollpointsSection .Theme-Layer-BodyText {
    border-radius: .5em;
    padding-top: 10px;
    padding-bottom: 10px;
    margin: 0 auto
}

@media (max-width: 1199px) {
    .Theme-ScrollpointsSection .Theme-Layer-BodyText {
        width:95%
    }
}

@media (min-width: 620px) {
    .Theme-ScrollpointsSection .Theme-Layer-BodyText {
        padding-top:10px;
        padding-bottom: 10px
    }
}

@media (min-width: 1100px) {
    .Theme-ScrollpointsSection .Theme-Layer-BodyText {
        padding-top:20px;
        padding-bottom: 20px
    }
}

.Theme-ScrollpointsSection .Theme-Scrollpoints {
    background-color: #000;
    opacity: .5
}

.Theme-ScrollpointsSection .Theme-Scrollpoints-Highlight {
    background-size: contain;
    border: 4px solid #167eab;
    transition-duration: .8s
}

.Theme-ScrollpointsSection .Theme-Scrollpoints-Marker {
    border-width: 1px;
    border-color: #000
}

.MediaGallery {
    z-index: 91;
    padding: 15px
}

@media (min-width: 620px) {
    .MediaGallery {
        padding:25px
    }
}

@media (min-width: 900px) {
    .MediaGallery {
        padding:30px
    }
}

@media (min-width: 1100px) {
    .MediaGallery {
        padding:40px
    }

    .MediaGallery--Wide .Layout {
        padding-left: 40px;
        padding-right: 40px
    }
}

.MediaGallery__cell {
    margin: 2px
}

@media (min-width: 620px) {
    .MediaGallery--Full .MediaGallery__cell,.MediaGallery--Narrow .MediaGallery__cell,.MediaGallery--Wide .MediaGallery__cell {
        margin:4px
    }
}

.MediaGallery__cell:first-child {
    margin-left: 0
}

.MediaGallery__cell:last-child {
    margin-right: 0
}

body:not(.body-editor) .MediaGallery__cell .Theme-BackgroundMedia {
    overflow: hidden
}

.MediaGallery--lightbox .MediaGallery--lightbox__counter,.MediaGallery__cell .Theme-Overlay {
    display: none
}

.MediaGallery--lightbox {
    background: rgba(34,34,34,.95)
}

.MediaGallery--lightbox .Theme-Layer-ResponsiveMedia {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%
}

.MediaGallery--lightbox .Theme-Layer-ResponsiveMedia .Lazyload {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin: 0 auto
}

.MediaGallery--lightbox .Theme-Layer-ResponsiveMedia .FullSize {
    position: relative
}

.MediaGallery--lightbox .Theme-Layer-ResponsiveMedia img,.MediaGallery--lightbox .Theme-Layer-ResponsiveMedia video {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 70vh
}

.MediaGallery--lightbox .Theme-Layer-ResponsiveMedia>a {
    position: relative;
    border: 1px solid #fff
}

.MediaGallery--lightbox .Theme-BackgroundVideo .Theme-Item-Picture,.Theme-Section-HasOverlay.Theme-Section-Dark.Theme-BackgroundScrollmationSection.Theme-BodyTextColumn-Left:before,.Theme-Section-HasOverlay.Theme-Section-Dark.Theme-BackgroundScrollmationSection.Theme-BodyTextColumn-Right:before {
    display: none
}

.MediaGallery--lightbox .Theme-Caption {
    margin-top: .25em;
    overflow: auto;
    max-width: 100%;
    text-align: center;
    opacity: .6
}

.MediaGallery--lightbox .Theme-Caption p {
    color: #fff;
    font-size: .9em;
    line-height: 1.3
}

.MediaGallery--lightbox .Theme-Caption a {
    color: #f5f5f5
}

.MediaGallery--lightbox__controls button[data-action]:focus {
    background-color: transparent
}

.MediaGallery--lightbox__controls button[data-action]:focus-visible {
    background-color: rgba(255,255,255,.2)
}

.MediaGallery--lightbox__controls span {
    background-color: #fff
}

.Theme-MediaGallerySection.Theme-Section-Light+.Theme-MediaSection.Theme-Section-Light .Theme-Layer-ResponsiveMedia-image {
    padding-top: 0
}

.Theme-MediaGallerySection.Theme-Section-Light+.Theme-MediaGallerySection.Theme-Section-Light .MediaGallery {
    margin-top: 0
}

.Theme-MediaGallerySection.Theme-Section-Dark+.Theme-MediaSection.Theme-Section-Dark .Theme-Layer-ResponsiveMedia-image {
    padding-top: 0
}

.Theme-MediaGallerySection.Theme-Section-Dark+.Theme-MediaGallerySection.Theme-Section-Dark .MediaGallery {
    margin-top: 0
}

.GalleryRenderer--initializing {
    min-height: 30vh
}

.GalleryRenderer--initializing:after {
    content: "";
    opacity: .15
}

.Theme-CollectionSectionSection {
    min-height: auto
}

.body-editor:not(.body-focus-mode) .Theme-CollectionSectionSection {
    min-height: auto
}

.Theme-CollectionSectionSection .Theme-Layer-Gallery:not(:empty) {
    padding: 25px;
    padding-bottom: calc(25px + 45px)
}

@media (min-width: 620px) {
    .Theme-CollectionSectionSection .Theme-Layer-Gallery:not(:empty) {
        padding:30px;
        padding-bottom: calc(30px + 45px)
    }
}

@media (min-width: 900px) {
    .Theme-CollectionSectionSection .Theme-Layer-Gallery:not(:empty) {
        padding:40px;
        padding-bottom: calc(40px + 45px)
    }
}

.body-editor .Theme-CollectionSectionSection {
    min-height: 300px
}

.Theme-Layer-Gallery-Heading {
    color: #000;
    margin-top: 0;
    margin-bottom: 1.5rem;
    font-family: "Poppins",sans-serif;
    font-weight: 600;
    font-size: 200%;
    line-height: 1.2;
    text-align: center
}

@media (min-width: 620px) {
    .Theme-Layer-Gallery-Heading {
        font-size:240%
    }
}

.Theme-Layer-Gallery-Heading:empty {
    display: none
}

.Theme-Layer-Gallery-List {
    margin: 0 auto;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    justify-items: center;
    align-items: stretch
}

.Theme-Layer-Gallery-List a:active,.Theme-Layer-Gallery-List a:focus,.Theme-Layer-Gallery-List a:hover {
    text-decoration: none
}

.Theme-Layer-Gallery-List img {
    display: block;
    width: 100%;
    margin: 0 auto
}

.Theme-Layer-Gallery-Item {
    background-color: rgba(255,255,255,.6);
    border: 0 solid rgba(0,0,0,.2);
    transition: border .15s ease;
    margin: 10px;
    text-align: left;
    width: 100%;
    max-width: 400px;
    min-width: 240px
}

@media (min-width: 620px) {
    .Theme-Layer-Gallery-Item {
        margin:15px
    }
}

.Theme-Layer-Gallery-Item:only-of-type {
    width: 100%;
    max-width: 800px
}

.Theme-Layer-Gallery-Item:active,.Theme-Layer-Gallery-Item:focus,.Theme-Layer-Gallery-Item:hover {
    border: 0 solid rgba(0,0,0,.5);
    background-color: rgba(255,255,255,.8);
    outline: none
}

.Theme-Layer-Gallery-Item:focus-within {
    border: 0 solid rgba(0,0,0,.5);
    background-color: rgba(255,255,255,.8);
    outline: 2px solid
}

.Theme-Layer-Gallery-Item a {
    border: none!important;
    text-decoration: none;
    height: 100%;
    padding: 10px
}

@media (min-width: 620px) {
    .Theme-Layer-Gallery-Item a {
        padding:15px
    }
}

.Theme-Layer-Gallery-Item .Theme-Layer-Gallery-Item-Media {
    overflow: hidden
}

.Theme-Layer-Gallery-Item .Theme-Layer-Gallery-Item-Text {
    padding: 0
}

@media (min-width: 620px) {
    .Theme-Layer-Gallery-Item .Theme-Layer-Gallery-Item-Text {
        padding:0
    }
}

.Theme-Layer-Gallery-Item .Theme-Layer-Gallery-Item-Title {
    color: #000;
    margin: 15px 0 10px;
    font-family: "Poppins",sans-serif;
    font-weight: 700;
    font-size: 110%;
    line-height: 1.2
}

@media (min-width: 900px) {
    .Theme-Layer-Gallery-Item .Theme-Layer-Gallery-Item-Title {
        font-size:110%
    }
}

.Theme-Layer-Gallery-Item .Theme-Layer-Gallery-Item-Description:empty,.Theme-Layer-Gallery-Item .Theme-Layer-Gallery-Item-Title:empty {
    margin: 0
}

.Theme-Layer-Gallery-Item .Theme-Layer-Gallery-Item-Description {
    color: #000;
    margin-top: 0;
    margin-bottom: 10px;
    font-family: "Roboto",sans-serif;
    font-weight: 400;
    font-size: 90%;
    line-height: 1.2
}

@media (min-width: 900px) {
    .Theme-Layer-Gallery-Item .Theme-Layer-Gallery-Item-Description {
        font-size:90%
    }
}

.Theme-Collection--Default:not(:empty) .Layout {
    max-width: 100%
}

@media (min-width: 620px) {
    .Theme-Collection--List:not(:empty) .Layout {
        padding-left:30px;
        padding-right: 30px
    }
}

@media (min-width: 1100px) {
    .Theme-Collection--List:not(:empty) .Layout {
        padding-left:40px;
        padding-right: 40px
    }
}

.Theme-Collection--List:not(:empty) .Theme-Layer-Gallery-Heading {
    margin-bottom: .5em
}

.Theme-Collection--List:not(:empty) .Theme-Layer-Gallery-List {
    flex-direction: column;
    align-items: flex-start
}

.Theme-Collection--List:not(:empty) .Theme-Layer-Gallery-Item {
    text-align: left;
    max-width: 100%;
    width: 100%;
    border-top: 0 solid rgba(0,0,0,.2);
    border-bottom: 0 solid rgba(0,0,0,.2);
    border-left: none;
    border-right: none;
    margin: 0
}

.Theme-Collection--List:not(:empty) .Theme-Layer-Gallery-Item:not(:first-child) {
    border-top: none
}

.Theme-Collection--List:not(:empty) .Theme-Layer-Gallery-Item:active,.Theme-Collection--List:not(:empty) .Theme-Layer-Gallery-Item:focus,.Theme-Collection--List:not(:empty) .Theme-Layer-Gallery-Item:hover {
    background-color: rgba(255,255,255,.8);
    border-top: 0 solid rgba(0,0,0,.2);
    border-bottom: 0 solid rgba(0,0,0,.2)
}

.Theme-Collection--List:not(:empty) .Theme-Layer-Gallery-Item:active:not(:first-child),.Theme-Collection--List:not(:empty) .Theme-Layer-Gallery-Item:focus:not(:first-child),.Theme-Collection--List:not(:empty) .Theme-Layer-Gallery-Item:hover:not(:first-child),.Theme-Section-Dark .Theme-Collection--List:not(:empty) .Theme-Layer-Gallery-Item:active:not(:first-child),.Theme-Section-Dark .Theme-Collection--List:not(:empty) .Theme-Layer-Gallery-Item:focus:not(:first-child),.Theme-Section-Dark .Theme-Collection--List:not(:empty) .Theme-Layer-Gallery-Item:hover:not(:first-child) {
    border-top: none
}

.Theme-Collection--List:not(:empty) .Theme-Layer-Gallery-Item a {
    display: flex;
    align-items: center;
    padding: 10px
}

@media (min-width: 620px) {
    .Theme-Collection--List:not(:empty) .Theme-Layer-Gallery-Item a {
        padding:15px
    }
}

.Theme-Collection--List:not(:empty) .Theme-Layer-Gallery-Item .Theme-Layer-Gallery-Item-Media {
    overflow: hidden;
    margin-right: 10px;
    max-width: 30%
}

@media (min-width: 620px) {
    .Theme-Collection--List:not(:empty) .Theme-Layer-Gallery-Item .Theme-Layer-Gallery-Item-Media {
        margin-right:25px;
        max-width: 25%
    }
}

.Theme-Collection--List:not(:empty) .Theme-Layer-Gallery-Item .Theme-Layer-Gallery-Item-Text {
    flex: 1;
    padding: 0
}

@media (min-width: 620px) {
    .Theme-Collection--List:not(:empty) .Theme-Layer-Gallery-Item .Theme-Layer-Gallery-Item-Text {
        padding:0
    }
}

.Theme-Collection--List:not(:empty) .Theme-Layer-Gallery-Item .Theme-Layer-Gallery-Item-Title {
    margin-top: 0
}

.Theme-Collection--List:not(:empty) .Theme-Layer-Gallery-Item .Theme-Layer-Gallery-Item-Description {
    margin-bottom: 0
}

.Theme-Collection--Grid:not(:empty) .Layout {
    max-width: 100%
}

.Theme-Collection--Grid:not(:empty) .Theme-Layer-Gallery-Item {
    background-color: transparent;
    border: none;
    width: 100%;
    text-align: center;
    margin: 0
}

@media (min-width: 620px) {
    .Theme-Collection--Grid:not(:empty) .Theme-Layer-Gallery-Item {
        margin:0
    }
}

.Theme-Collection--Grid:not(:empty) .Theme-Layer-Gallery-Item:focus .Theme-Layer-Gallery-Item-Media,.Theme-Collection--Grid:not(:empty) .Theme-Layer-Gallery-Item:hover .Theme-Layer-Gallery-Item-Media {
    opacity: .3
}

.Theme-Collection--Grid:not(:empty) .Theme-Layer-Gallery-Item:focus img,.Theme-Collection--Grid:not(:empty) .Theme-Layer-Gallery-Item:hover img {
    transform: scale(1.05)
}

.Theme-Collection--Grid:not(:empty) .Theme-Layer-Gallery-Item a {
    background-color: #222;
    display: flex;
    align-items: center;
    padding: 10px
}

@media (min-width: 620px) {
    .Theme-Collection--Grid:not(:empty) .Theme-Layer-Gallery-Item a {
        padding:15px
    }
}

.Theme-Collection--Grid:not(:empty) .Theme-Layer-Gallery-Item .Theme-Layer-Gallery-Item-Text {
    margin: 6vh auto;
    padding: 0
}

@media (min-width: 620px) {
    .Theme-Collection--Grid:not(:empty) .Theme-Layer-Gallery-Item .Theme-Layer-Gallery-Item-Text {
        padding:0
    }
}

.Theme-Collection--Grid:not(:empty) .Theme-Layer-Gallery-Item .Theme-Layer-Gallery-Item-Description,.Theme-Collection--Grid:not(:empty) .Theme-Layer-Gallery-Item .Theme-Layer-Gallery-Item-Title {
    color: #fff
}

.Theme-Collection--Grid:not(:empty) .Theme-Layer-Gallery-Item .Theme-Layer-Gallery-Item-Title {
    margin-top: 0
}

.Theme-Collection--Grid:not(:empty) .Theme-Layer-Gallery-Item .Theme-Layer-Gallery-Item-Description {
    margin-bottom: 0
}

.Theme-Collection--Grid:not(:empty) .Theme-Layer-Gallery-Item .Theme-Layer-Gallery-Item-Media {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: .4;
    overflow: hidden;
    transition: opacity .15s ease-in-out
}

.Theme-Collection--Grid:not(:empty) .Theme-Layer-Gallery-Item img {
    -o-object-fit: cover;
    object-fit: cover;
    height: 100%;
    transition: transform .15s ease-in-out
}

.Theme-Collection--Grid:not(:empty).Theme-Collection--Small .Theme-Layer-Gallery-Item {
    border: none
}

@media (min-width: 620px) {
    .Theme-Collection--Grid:not(:empty).Theme-Collection--Small .Theme-Layer-Gallery-Item {
        width:50%
    }
}

@media (min-width: 900px) {
    .Theme-Collection--Grid:not(:empty).Theme-Collection--Small .Theme-Layer-Gallery-Item {
        width:25%;
        min-width: 25%
    }
}

@media (min-width: 620px) {
    .Theme-Collection--Grid:not(:empty).Theme-Collection--Small .Theme-Layer-Gallery-Item-Text {
        margin:7.5vh auto
    }
}

.Theme-Collection--Grid:not(:empty).Theme-Collection--Medium .Theme-Layer-Gallery-Item {
    border: none
}

@media (min-width: 620px) {
    .Theme-Collection--Grid:not(:empty).Theme-Collection--Medium .Theme-Layer-Gallery-Item {
        width:50%;
        max-width: 50%
    }

    .Theme-Collection--Grid:not(:empty).Theme-Collection--Medium .Theme-Layer-Gallery-Item-Text {
        margin: 10vh auto
    }
}

.Theme-Collection--Grid:not(:empty).Theme-Collection--Large .Theme-Layer-Gallery-Item {
    max-width: 100%;
    border: none
}

@media (min-width: 620px) {
    .Theme-Collection--Grid:not(:empty).Theme-Collection--Large .Theme-Layer-Gallery-Item-Text {
        margin:12vh auto
    }
}

.GridSection--Full.GridSection--gutters-None .GridSection-title:not(:empty),.GridSection--Wide .GridSection-title:not(:empty) {
    margin-left: 15px;
    margin-right: 15px
}

@media (min-width: 620px) {
    .GridSection--Full.GridSection--gutters-None .GridSection-title:not(:empty),.GridSection--Wide .GridSection-title:not(:empty) {
        margin-left:25px;
        margin-right: 25px
    }
}

@media (min-width: 900px) {
    .GridSection--Full.GridSection--gutters-None .GridSection-title:not(:empty),.GridSection--Wide .GridSection-title:not(:empty) {
        margin-left:30px;
        margin-right: 30px
    }
}

@media (min-width: 1100px) {
    .GridSection--Full.GridSection--gutters-None .GridSection-title:not(:empty),.GridSection--Wide .GridSection-title:not(:empty) {
        margin-left:40px;
        margin-right: 40px
    }
}

.GridSection-title:not(:empty) .Theme-Title {
    color: #000;
    margin-top: 0;
    margin-bottom: 0
}

.GridSection-title:not(:empty) h2 {
    font-family: "Poppins",sans-serif;
    font-weight: 600;
    line-height: 1.2
}

.GridSection-container {
    padding: 15px;
    padding-bottom: calc(15px + 45px)
}

@media (min-width: 620px) {
    .GridSection-container {
        padding:25px;
        padding-bottom: calc(25px + 45px)
    }
}

@media (min-width: 900px) {
    .GridSection-container {
        padding:40px;
        padding-bottom: calc(40px + 45px)
    }
}

.GridSection__rowContainer {
    margin-left: 15px;
    margin-right: 15px
}

@media (min-width: 620px) {
    .GridSection__rowContainer {
        margin-left:25px;
        margin-right: 25px
    }
}

@media (min-width: 900px) {
    .GridSection__rowContainer {
        margin-left:30px;
        margin-right: 30px
    }
}

@media (min-width: 1100px) {
    .GridSection__rowContainer {
        margin-left:40px;
        margin-right: 40px
    }
}

@media (max-width: 899px) {
    .GridSection__row {
        flex-direction:column;
        align-items: center
    }
}

.GridSection--Full.GridSection--gutters-None {
    padding: 0
}

.GridSection--Full.GridSection--gutters-None .GridSection-title:not(:empty) {
    padding-top: 15px
}

@media (min-width: 620px) {
    .GridSection--Full.GridSection--gutters-None .GridSection-title:not(:empty) {
        padding-top:25px
    }
}

@media (min-width: 900px) {
    .GridSection--Full.GridSection--gutters-None .GridSection-title:not(:empty) {
        padding-top:30px
    }
}

@media (min-width: 1100px) {
    .GridSection--Full.GridSection--gutters-None .GridSection-title:not(:empty) {
        padding-top:40px
    }
}

.GridSection--Full .GridSection__rowContainer {
    margin-left: 0;
    margin-right: 0
}

.GridItem {
    padding: 10px
}

@media (min-width: 1100px) {
    .GridItem {
        padding:15px
    }
}

@media (max-width: 899px) {
    .GridItem {
        width:100%;
        padding-left: 0;
        padding-right: 0
    }

    .GridItem+.GridItem {
        padding-top: 0
    }
}

@media (min-width: 900px) {
    .GridItem:only-child .Grid_image:not(.Grid_imageAdd) .InlineMedia--image__inner:not(.crop-circle)+.Theme-Caption,.GridItem:only-child .Grid_image:not(.Grid_imageAdd) .Theme-Caption {
        background-color:rgba(0,0,0,.6)
    }

    .GridItem:only-child .Grid_image:not(.Grid_imageAdd) .InlineMedia--image__inner:not(.crop-circle)+.Theme-Caption p:not(:empty),.GridItem:only-child .Grid_image:not(.Grid_imageAdd) .Theme-Caption p:not(:empty) {
        color: #fff
    }
}

.GridSection--gutters-Small .GridItem {
    padding: 5px
}

.GridItem .Theme-Layer-BodyText--inner {
    font-size: inherit
}

.GridItem .Theme-Layer-BodyText--inner .Theme-Layer-BodyText-Button,.GridItem .Theme-Layer-BodyText--inner .Theme-Layer-BodyText-Divider,.GridItem .Theme-Layer-BodyText--inner .Theme-Layer-BodyText-Heading-Large,.GridItem .Theme-Layer-BodyText--inner .Theme-Layer-BodyText-Heading-Small,.GridItem .Theme-Layer-BodyText--inner .Theme-Layer-BodyText-Heading-xl,.GridItem .Theme-Layer-BodyText--inner .Theme-Layer-BodyText-Heading-xs,.GridItem .Theme-Layer-BodyText--inner .Theme-Layer-BodyText-List-Alpha,.GridItem .Theme-Layer-BodyText--inner .Theme-Layer-BodyText-List-Ordered,.GridItem .Theme-Layer-BodyText--inner .Theme-Layer-BodyText-List-Roman,.GridItem .Theme-Layer-BodyText--inner .Theme-Layer-BodyText-List-Unordered,.GridItem .Theme-Layer-BodyText--inner>p {
    margin-top: .5em;
    margin-bottom: .5em
}

@media (min-width: 900px) {
    .GridSection__row--1 .GridItem .Theme-Layer-BodyText--inner:not(:empty) {
        padding-left:calc(1em + 10px);
        padding-right: calc(1em + 10px)
    }
}

@media (min-width: 1100px) {
    .GridSection__row--1 .GridItem .Theme-Layer-BodyText--inner:not(:empty) {
        padding-left:calc(1em + 15px);
        padding-right: calc(1em + 15px)
    }
}

.GridItem--inner {
    border-radius: 0;
    overflow: hidden
}

.Theme-Section-Light .GridItem--inner:not([class*=Theme-BackgroundColor]) {
    background-color: rgba(255,255,255,.9)
}

.Theme-Section-Dark .GridItem--inner:not([class*=Theme-BackgroundColor]) {
    background-color: rgba(0,0,0,.9)
}

.Grid_image img {
    border-top-right-radius: 0;
    border-top-left-radius: 0
}

.Theme-Footer {
    z-index: 100;
    height: 60px;
    background: #fff;
    border-top: 1px solid rgba(0,0,0,.1);
    padding: 10px 15px;
    direction: ltr
}

.Theme-Footer>.Layout {
    align-items: center;
    display: flex
}

.Theme-Footer a,.Theme-Footer a:active,.Theme-Footer a:focus,.Theme-Footer a:hover,.Theme-Footer a:visited,.Theme-Footer a:visited:active,.Theme-Footer a:visited:focus,.Theme-Footer a:visited:hover {
    border-bottom: none
}

.Theme-Footer .Layout__snap--xright {
    padding: 0
}

@media (max-width: 620px) {
    .Theme-Footer .Layout__snap--xright {
        width:auto;
        right: auto;
        left: 0
    }
}

.Theme-Footer .Theme-FooterTopLink {
    width: 60px;
    height: 40px;
    font-size: 11px;
    text-transform: uppercase;
    color: #000;
    text-decoration: none;
    font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif
}

@media (max-width: 620px) {
    .Theme-Footer .Theme-FooterTopLink {
        left:auto;
        top: auto;
        display: block;
        transform: initial;
        right: 0
    }
}

.Theme-Footer .Theme-FooterTopLink:before {
    border-style: solid;
    border-width: 1px 1px 0 0;
    content: "";
    display: block;
    height: 16px;
    left: 50%;
    position: relative;
    top: 8px;
    margin-bottom: 4px;
    transform: rotate(-45deg);
    width: 16px;
    margin-left: -8px
}

.Theme-Footer .Theme-FooterTopLink:hover {
    color: #000;
    opacity: .65;
    text-decoration: none
}

.Theme-Footer .Theme-CreatedWithShorthand {
    display: block;
    height: 40px;
    margin-top: -1px;
    width: auto;
    max-width: none
}

@media (min-width: 620px) {
    .Theme-Footer .Theme-CreatedWithShorthand {
        float:right
    }
}

.Theme-Footer .Theme-FooterLogo--container {
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;
    text-decoration: none;
    color: #222;
    transition: opacity .15s ease-in-out
}

.Theme-Footer .Theme-FooterLogo--container * {
    font-family: inherit
}

.Theme-Footer .Theme-FooterLogo--container:active,.Theme-Footer .Theme-FooterLogo--container:hover {
    opacity: .9
}

.Theme-Footer .Theme-FooterLogo {
    width: 35px;
    margin-right: 7px;
    font-size: 0
}

.Theme-Layer-BodyText--inner .Theme-TextSize-tiny {
    font-size: .5em;
    line-height: calc(1.7*.75)
}

.Theme-Layer-BodyText--inner .Theme-TextSize-smallest {
    font-size: .75em;
    line-height: calc(1.7*.9)
}

.Theme-Layer-BodyText--inner .Theme-TextSize-default {
    font-size: 1em;
    line-height: 1.7
}

.Theme-Layer-BodyText--inner .Theme-TextSize-xxxsmall {
    font-size: 140%;
    line-height: 1.2
}

.Theme-Layer-BodyText--inner .Theme-TextSize-xxsmall {
    font-size: 180%;
    line-height: 1.2
}

.Theme-Layer-BodyText--inner .Theme-TextSize-xsmall {
    font-size: 240%;
    line-height: 1.2
}

.Theme-Layer-BodyText--inner .Theme-TextSize-small {
    font-size: calc(240%*1.5);
    line-height: 1.15
}

.Theme-Layer-BodyText--inner .Theme-TextSize-normal {
    font-size: calc(240%*2);
    line-height: 1.1
}

.Theme-Layer-BodyText--inner .Theme-TextSize-large {
    font-size: calc(240%*2.5);
    line-height: 1
}

.Theme-Layer-BodyText--inner .Theme-TextSize-xlarge {
    font-size: calc(240%*3);
    line-height: 1
}

.Theme-Layer-BodyText--inner .Theme-TextSize-xxlarge {
    font-size: calc(240%*3.5);
    line-height: 1
}

.Theme-Layer-BodyText--inner .Theme-TextSize-xxxlarge {
    font-size: calc(240%*4);
    line-height: 1
}

.Theme-Layer-BodyText--inner .Theme-TextSize-xxxxlarge {
    font-size: calc(240%*4.5);
    line-height: 1
}

@media (max-width: 620px),(orientation:landscape) and (max-width:900px) {
    .Theme-Layer-BodyText--inner .Theme-TextSize-tiny {
        font-size:.5em;
        line-height: calc(1.7*.75)
    }

    .Theme-Layer-BodyText--inner .Theme-TextSize-smallest {
        font-size: .75em;
        line-height: calc(1.7*.9)
    }

    .Theme-Layer-BodyText--inner .Theme-TextSize-default {
        font-size: 1em;
        line-height: 1.7
    }

    .Theme-Layer-BodyText--inner .Theme-TextSize-xxxsmall {
        font-size: 120%;
        line-height: 1.2
    }

    .Theme-Layer-BodyText--inner .Theme-TextSize-xxsmall {
        font-size: 160%;
        line-height: 1.2
    }

    .Theme-Layer-BodyText--inner .Theme-TextSize-xsmall {
        font-size: 200%;
        line-height: 1.2
    }

    .Theme-Layer-BodyText--inner .Theme-TextSize-small {
        font-size: calc(200%*1.25);
        line-height: 1
    }

    .Theme-Layer-BodyText--inner .Theme-TextSize-normal {
        font-size: calc(200%*1.5);
        line-height: 1
    }

    .Theme-Layer-BodyText--inner .Theme-TextSize-large {
        font-size: calc(200%*1.75);
        line-height: 1
    }

    .Theme-Layer-BodyText--inner .Theme-TextSize-xlarge {
        font-size: calc(200%*2);
        line-height: 1
    }

    .Theme-Layer-BodyText--inner .Theme-TextSize-xxlarge {
        font-size: calc(200%*2.5);
        line-height: 1
    }

    .Theme-Layer-BodyText--inner .Theme-TextSize-xxxlarge {
        font-size: calc(200%*3);
        line-height: 1
    }

    .Theme-Layer-BodyText--inner .Theme-TextSize-xxxxlarge {
        font-size: calc(200%*3.5);
        line-height: 1
    }
}

.Theme-Layer-TextBlock-Inner .Theme-TextSize-xxxsmall {
    font-size: calc(1em + 1vmin)
}

.Theme-Layer-TextBlock-Inner .Theme-TextSize-xxsmall {
    font-size: calc(1em + 2vmin)
}

.Theme-Layer-TextBlock-Inner .Theme-TextSize-xsmall {
    font-size: calc(1em + 3.5vmin)
}

.Theme-Layer-TextBlock-Inner .Theme-TextSize-small {
    font-size: calc(1em + 5vmin)
}

.Theme-Layer-TextBlock-Inner .Theme-TextSize-normal {
    font-size: calc(1em + 6.5vmin)
}

.Theme-Layer-TextBlock-Inner .Theme-TextSize-large {
    font-size: calc(1em + 8vmin)
}

.Theme-Layer-TextBlock-Inner .Theme-TextSize-xlarge {
    font-size: calc(1em + 10vmin)
}

.Theme-Layer-TextBlock-Inner .Theme-TextSize-xxlarge {
    font-size: calc(1em + 12vmin)
}

.Theme-Layer-TextBlock-Inner .Theme-TextSize-xxxlarge {
    font-size: calc(1em + 13vmin)
}

.Theme-Layer-TextBlock-Inner .Theme-TextSize-xxxxlarge {
    font-size: calc(1em + 14vmin)
}

@media (max-width: 620px),(orientation:landscape) and (max-width:900px) {
    .Theme-Layer-TextBlock-Inner .Theme-TextSize-tiny {
        font-size:.5em;
        line-height: calc(1.7*.75)
    }

    .Theme-Layer-TextBlock-Inner .Theme-TextSize-smallest {
        font-size: .75em;
        line-height: calc(1.7*.9)
    }

    .Theme-Layer-TextBlock-Inner .Theme-TextSize-default {
        font-size: 1em;
        line-height: 1.7
    }

    .Theme-Layer-TextBlock-Inner .Theme-TextSize-xxxsmall {
        font-size: 1em;
        line-height: 1.2
    }

    .Theme-Layer-TextBlock-Inner .Theme-TextSize-xxsmall {
        font-size: 1.25em;
        line-height: 1.2
    }

    .Theme-Layer-TextBlock-Inner .Theme-TextSize-xsmall {
        font-size: 1.5em;
        line-height: 1.2
    }

    .Theme-Layer-TextBlock-Inner .Theme-TextSize-small {
        font-size: 1.75em;
        line-height: 1.1
    }

    .Theme-Layer-TextBlock-Inner .Theme-TextSize-normal {
        font-size: 2em;
        line-height: 1
    }

    .Theme-Layer-TextBlock-Inner .Theme-TextSize-large {
        font-size: 2.5em;
        line-height: 1
    }

    .Theme-Layer-TextBlock-Inner .Theme-TextSize-xlarge {
        font-size: 3em;
        line-height: 1
    }

    .Theme-Layer-TextBlock-Inner .Theme-TextSize-xxlarge {
        font-size: 3.6em;
        line-height: 1
    }

    .Theme-Layer-TextBlock-Inner .Theme-TextSize-xxxlarge {
        font-size: 4.75em;
        line-height: 1
    }

    .Theme-Layer-TextBlock-Inner .Theme-TextSize-xxxxlarge {
        font-size: 5.5em;
        line-height: 1
    }
}

@media (orientation: landscape) {
    .Theme-Section-Layout--Half .Theme-Layer-TextBlock-Inner {
        width:100%;
        margin: 0
    }
}

@media (min-width: 620px) and (orientation:landscape) {
    .Theme-Section-Layout--Half .Theme-Layer-TextBlock-Inner {
        max-width:450px
    }
}

@media (min-width: 900px) and (orientation:landscape) {
    .Theme-Section-Layout--Half .Theme-Layer-TextBlock-Inner {
        max-width:525px
    }
}

@media (min-width: 1100px) and (orientation:landscape) {
    .Theme-Section-Layout--Half .Theme-Layer-TextBlock-Inner {
        max-width:620px
    }
}

@media (min-width: 1400px) and (orientation:landscape) {
    .Theme-Section-Layout--Half .Theme-Layer-TextBlock-Inner {
        max-width:680px
    }
}

@media (min-width: 1750px) and (orientation:landscape) {
    .Theme-Section-Layout--Half .Theme-Layer-TextBlock-Inner {
        max-width:780px
    }
}

@media (min-width: 2000px) and (orientation:landscape) {
    .Theme-Section-Layout--Half .Theme-Layer-TextBlock-Inner {
        max-width:880px
    }
}

.Theme-Layer-TextBlock {
    pointer-events: none
}

.Theme-Section-Light,.Theme-Section-Light.Theme-BackgroundScrollmationSection .Theme-Layer-BodyText,.Theme-Section-Light.Theme-BackgroundScrollmationSection .Theme-Overlay,.Theme-Section-Light.Theme-RevealSection .Theme-Overlay,.Theme-Section-Light.Theme-ScrollpointsSection .Theme-Overlay,.Theme-Section-Light.Theme-TextOverMediaSection .Theme-Overlay,.Theme-Section-Light.Theme-TitleSection .Theme-Overlay {
    background-color: #fff
}

.Theme-Section-Dark {
    color: #fff
}

.Theme-Section-Dark,.Theme-Section-Dark.Theme-TextOverMediaSection .Theme-Overlay,.Theme-Section-Dark.Theme-TitleSection .Theme-Overlay {
    background-color: #000
}

.Theme-Section-Dark .Theme-Caption p,.Theme-Section-Dark .Theme-Layer-BodyText p,.Theme-Section-Dark .Theme-Layer-BodyText-Heading-Large,.Theme-Section-Dark .Theme-Layer-BodyText-Heading-Small,.Theme-Section-Dark .Theme-Layer-BodyText-Heading-xl,.Theme-Section-Dark .Theme-Layer-BodyText-Heading-xs,.Theme-Section-Dark .Theme-Layer-BodyText-List-Alpha,.Theme-Section-Dark .Theme-Layer-BodyText-List-Ordered,.Theme-Section-Dark .Theme-Layer-BodyText-List-Roman,.Theme-Section-Dark .Theme-Layer-BodyText-List-Unordered {
    color: #fff
}

.Theme-Section-Dark .Theme-Layer-BodyText-Blockquote {
    color: #f5f5f5
}

.Theme-Section-Dark .Theme-Layer-BodyText-QuoteCite {
    color: #fff
}

.Theme-Section-Dark .Theme-Layer-BodyText-Dropcap:first-letter,.Theme-Story .Theme-Section-Dark .Theme-Layer-BodyText-Breakout {
    color: inherit
}

.Theme-Section-Dark .Theme-Layer-BodyText-Breakout {
    color: inherit;
    background: rgba(255,255,255,.1);
    border-color: #fff
}

.Theme-Section-Dark .Theme-Layer-BodyText-Indent {
    border-left-color: rgba(255,255,255,.1)
}

.Theme-Section-Dark .Theme-Layer-BodyText-Button:not([class*=Theme-BackgroundColor]) {
    background: #167eab
}

.Theme-Section-Dark .Theme-Layer-BodyText-Button:not([class*=Theme-ForegroundColor]),.Theme-Section-Dark .Theme-Layer-TextBlock-Inner a:not(.Theme-Layer-BodyText-Button) {
    color: #fff
}

.Theme-Section-Dark .Theme-Layer-BodyText-Highlight {
    background-color: rgba(245,245,245,.2)
}

.Theme-Section-Dark .Theme-Layer-BodyText-Highlight:hover {
    background-color: rgba(245,245,245,.4)
}

.Theme-Section-Dark .Theme-Layer-BodyText-Highlight:focus {
    background-color: rgba(245,245,245,.4);
    outline: #f5f5f5 auto 1px
}

.Theme-Section-Dark .Theme-Layer-BodyText-Highlight .Theme-Layer-BodyText-Highlight--Icon {
    background-color: #f5f5f5
}

.Theme-Section-Dark .InlineElement--Table td,.Theme-Section-Dark .InlineElement--Table th {
    border-color: rgba(255,255,255,.4)
}

.Theme-Section-Dark .InlineElement--Table th {
    background-color: rgba(255,255,255,.1)
}

.Theme-Section-Dark .Theme-Layer-Gallery-Heading,.Theme-Section-Dark .Theme-Layer-TextBlock-Inner,.Theme-Section-Dark .Theme-Layer-TextBlock-Inner .Theme-Byline,.Theme-Section-Dark .Theme-Layer-TextBlock-Inner .Theme-LeadIn,.Theme-Section-Dark .Theme-Layer-TextBlock-Inner .Theme-StoryTitle,.Theme-Section-Dark .Theme-Layer-TextBlock-Inner .Theme-SubTitle,.Theme-Section-Dark .Theme-Layer-TextBlock-Inner .Theme-Text,.Theme-Section-Dark .Theme-Layer-TextBlock-Inner .Theme-Title,.Theme-Section-Dark .Theme-Layer-TextBlock-Inner h1,.Theme-Section-Dark .Theme-Layer-TextBlock-Inner h2,.Theme-Section-Dark .Theme-Layer-TextBlock-Inner h3,.Theme-Section-Dark .Theme-Layer-TextBlock-Inner h4,.Theme-Section-Dark .Theme-Layer-TextBlock-Inner p {
    color: #fff
}

.Theme-Section-Dark .Theme-Layer-TextBlock-Inner a:not(.Theme-Layer-BodyText-Button):active,.Theme-Section-Dark .Theme-Layer-TextBlock-Inner a:not(.Theme-Layer-BodyText-Button):focus,.Theme-Section-Dark .Theme-Layer-TextBlock-Inner a:not(.Theme-Layer-BodyText-Button):hover {
    color: #fff
}

.Theme-Section-Dark .Theme-Layer-TextBlock-Inner a:not(.Theme-Layer-BodyText-Button):visited {
    color: #fff
}

.Theme-Section-Dark .Theme-Layer-Gallery-Item {
    background-color: rgba(0,0,0,.6);
    border: 0 solid rgba(255,255,255,.2)
}

.Theme-Section-Dark .Theme-Layer-Gallery-Item:active,.Theme-Section-Dark .Theme-Layer-Gallery-Item:focus,.Theme-Section-Dark .Theme-Layer-Gallery-Item:hover {
    border: 0 solid rgba(255,255,255,.5);
    background-color: rgba(0,0,0,.8)
}

.Theme-Section-Dark .Theme-Layer-Gallery-Item-Description,.Theme-Section-Dark .Theme-Layer-Gallery-Item-Title {
    color: #fff
}

.Theme-Section-Dark .Theme-Collection--List:not(:empty) .Theme-Layer-Gallery-Item {
    background-color: rgba(0,0,0,.6);
    border-top: 0 solid rgba(255,255,255,.2);
    border-bottom: 0 solid rgba(255,255,255,.2)
}

.Theme-Section-Dark .Theme-Collection--List:not(:empty) .Theme-Layer-Gallery-Item:not(:first-child) {
    border-top: none
}

.Theme-Section-Dark .Theme-Collection--List:not(:empty) .Theme-Layer-Gallery-Item:active,.Theme-Section-Dark .Theme-Collection--List:not(:empty) .Theme-Layer-Gallery-Item:focus,.Theme-Section-Dark .Theme-Collection--List:not(:empty) .Theme-Layer-Gallery-Item:hover {
    background-color: rgba(0,0,0,.8);
    border-top: 0 solid rgba(255,255,255,.2);
    border-bottom: 0 solid rgba(255,255,255,.2)
}

.Theme-Section-Dark.Theme-GridSection .GridSection-title .Theme-Title {
    color: #fff
}

.Theme-Section-Dark.Theme-RevealSection .Theme-Overlay,.Theme-Section-Dark.Theme-ScrollpointsSection .Theme-Overlay {
    background-color: #000
}

@media (max-width: 899px) {
    .Theme-Section-Dark .CardCanvas--tworowContainer .CardCanvas {
        background-color:rgba(0,0,0,.95)
    }

    .Theme-Section-Dark.Theme-BackgroundScrollmationSection .Theme-Layer-BodyText {
        background: rgba(0,0,0,.7)
    }

    .Theme-Section-Dark.Theme-BackgroundScrollmationSection .Theme-Overlay {
        background-color: #000
    }
}

@media (min-width: 900px) {
    .Theme-Section-Dark.Theme-BackgroundScrollmationSection.Theme-BodyTextColumn-Center .Theme-Layer-BodyText {
        background:rgba(0,0,0,.7)
    }

    .Theme-Section-Dark.Theme-BackgroundScrollmationSection.Theme-BodyTextColumn-Center .Theme-Overlay {
        background-color: #000
    }

    .Theme-Section-Dark.Theme-BackgroundScrollmationSection.Theme-BodyTextColumn-Left .Theme-Layer-BodyText {
        height: 100%
    }

    .Theme-Section-Dark.Theme-BackgroundScrollmationSection.Theme-BodyTextColumn-Left:before {
        content: "";
        display: block;
        width: 70%;
        max-width: 1500px;
        z-index: 91;
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        background: linear-gradient(270deg,rgba(0,0,0,0) 0,rgba(0,0,0,0) 1%,rgba(0,0,0,.65) 30%,rgba(0,0,0,.8) 60%)
    }

    .Theme-Section-Dark.Theme-BackgroundScrollmationSection.Theme-BodyTextColumn-Left .Theme-Overlay {
        height: auto;
        right: auto;
        width: 140%;
        left: 0;
        background: linear-gradient(270deg,rgba(0,0,0,0) 0,rgba(0,0,0,0) 1%,rgba(0,0,0,.8) 30%,#000 60%);
        box-shadow: -300px 0 0 #000,-500px 0 0 #000
    }

    .body-editor .Theme-Section-Dark.Theme-BackgroundScrollmationSection.Theme-BodyTextColumn-Left .Theme-Overlay,.body-editor .Theme-Section-Dark.Theme-BackgroundScrollmationSection.Theme-BodyTextColumn-Right .Theme-Overlay {
        top: -2px;
        bottom: -2px
    }

    .Theme-Section-Dark.Theme-BackgroundScrollmationSection.Theme-BodyTextColumn-Right .Theme-Layer-BodyText {
        height: 100%
    }

    .Theme-Section-Dark.Theme-BackgroundScrollmationSection.Theme-BodyTextColumn-Right:before {
        content: "";
        display: block;
        width: 70%;
        max-width: 1500px;
        z-index: 91;
        position: absolute;
        top: 0;
        right: 0;
        left: auto;
        bottom: 0;
        background: linear-gradient(90deg,rgba(0,0,0,0) 0,rgba(0,0,0,0) 1%,rgba(0,0,0,.65) 30%,rgba(0,0,0,.8) 60%)
    }

    .Theme-Section-Dark.Theme-BackgroundScrollmationSection.Theme-BodyTextColumn-Right .Theme-Overlay {
        height: auto;
        left: auto;
        width: 140%;
        right: 0;
        background: linear-gradient(90deg,rgba(0,0,0,0) 0,rgba(0,0,0,0) 1%,rgba(0,0,0,.8) 30%,#000 60%);
        box-shadow: 300px 0 0 #000,500px 0 0 #000
    }
}

.Theme-Section-Custom:not([class*=Theme-BackgroundColor]):not(.Theme-NavigationBar) {
    background-color: #fff
}

.Theme-Section-HasOverlay .Theme-Layer-BodyText {
    background-color: transparent!important
}

.Theme-CustomHtmlSection,.Theme-Section-HasOverlay.Theme-Section-Dark.Theme-BackgroundScrollmationSection .Theme-Layer-BodyText {
    background-color: transparent
}

.Theme-Section[class*=Theme-ForegroundColor] .Theme-Caption p,.Theme-Section[class*=Theme-ForegroundColor] .Theme-Layer-BodyText-Blockquote,.Theme-Section[class*=Theme-ForegroundColor] .Theme-Layer-BodyText-Dropcap:first-letter,.Theme-Section[class*=Theme-ForegroundColor] .Theme-Layer-BodyText-Heading-Large,.Theme-Section[class*=Theme-ForegroundColor] .Theme-Layer-BodyText-Heading-Small,.Theme-Section[class*=Theme-ForegroundColor] .Theme-Layer-BodyText-Heading-xl,.Theme-Section[class*=Theme-ForegroundColor] .Theme-Layer-BodyText-Heading-xs,.Theme-Section[class*=Theme-ForegroundColor] .Theme-Layer-BodyText-List-Alpha,.Theme-Section[class*=Theme-ForegroundColor] .Theme-Layer-BodyText-List-Ordered,.Theme-Section[class*=Theme-ForegroundColor] .Theme-Layer-BodyText-List-Roman,.Theme-Section[class*=Theme-ForegroundColor] .Theme-Layer-BodyText-List-Unordered,.Theme-Section[class*=Theme-ForegroundColor] .Theme-Layer-BodyText-QuoteCite,.Theme-Section[class*=Theme-ForegroundColor] .Theme-Layer-Gallery-Heading,.Theme-Section[class*=Theme-ForegroundColor] .Theme-Layer-Gallery-Item .Theme-Layer-Gallery-Item-Description,.Theme-Section[class*=Theme-ForegroundColor] .Theme-Layer-Gallery-Item .Theme-Layer-Gallery-Item-Title,.Theme-Section[class*=Theme-ForegroundColor] .Theme-Layer-Gallery-Item a,.Theme-Section[class*=Theme-ForegroundColor] .Theme-Layer-TextBlock-Inner .Theme-Byline,.Theme-Section[class*=Theme-ForegroundColor] .Theme-Layer-TextBlock-Inner .Theme-LeadIn,.Theme-Section[class*=Theme-ForegroundColor] .Theme-Layer-TextBlock-Inner .Theme-StoryTitle,.Theme-Section[class*=Theme-ForegroundColor] .Theme-Layer-TextBlock-Inner .Theme-SubTitle,.Theme-Section[class*=Theme-ForegroundColor] .Theme-Layer-TextBlock-Inner .Theme-Text,.Theme-Section[class*=Theme-ForegroundColor] .Theme-Layer-TextBlock-Inner .Theme-Title,.Theme-Section[class*=Theme-ForegroundColor] .Theme-RelatedStoriesSection .related-story-description,.Theme-Section[class*=Theme-ForegroundColor] .Theme-RelatedStoriesSection .related-story-title {
    color: inherit
}

.Theme-Section a span[class*=Theme-ForegroundColor],.Theme-Section a:visited span[class*=Theme-ForegroundColor] {
    border-bottom: 1px dotted
}

.Theme-Section a:active span[class*=Theme-ForegroundColor],.Theme-Section a:focus span[class*=Theme-ForegroundColor],.Theme-Section a:hover span[class*=Theme-ForegroundColor],.Theme-Section a:visited:active span[class*=Theme-ForegroundColor],.Theme-Section a:visited:focus span[class*=Theme-ForegroundColor],.Theme-Section a:visited:hover span[class*=Theme-ForegroundColor] {
    border-bottom: 1px solid
}

.BlockHTML iframe,.InlineHTML iframe {
    border: none;
    max-width: 100%
}

.BlockHTML .instagram-media,.InlineHTML .instagram-media {
    margin: 0 auto!important
}

.InlineHTML img {
    max-width: 100%;
    max-height: 100%
}

.h-align-left {
    text-align: left!important
}

.h-align-left.InlineElement {
    justify-content: flex-start
}

.h-align-center {
    text-align: center!important
}

.h-align-center.InlineElement {
    justify-content: center
}

.h-align-right {
    text-align: right!important
}

.h-align-right.InlineElement {
    justify-content: flex-end
}

@media (min-width: 900px) {
    .Theme-BodyTextColumn-Left .Theme-Layer-BackgroundCanvas .Theme-Lazyload-Spinner {
        left:75%
    }

    .Theme-BodyTextColumn-Right .Theme-Layer-BackgroundCanvas .Theme-Lazyload-Spinner {
        left: 25%
    }
}

@keyframes loading-spinner {
    0% {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(360deg)
    }
}

.Project-FooterContainer,.Project-HeaderContainer {
    background-color: #fff
}

.Project-FooterContainer .Layout,.Project-HeaderContainer .Layout {
    max-width: none
}

.Project-FooterContainer .Project-Header,.Project-HeaderContainer .Project-Header {
    background-color: transparent
}

.Project-Footer .Theme-NavigationBar,.Project-Header .Theme-NavigationBar {
    max-height: none;
    color: #000
}

.Project-Footer .Theme-NavigationBarItem,.Project-Header .Theme-NavigationBarItem {
    height: auto
}

.Project-Footer .Theme-NavigationLink,.Project-Header .Theme-NavigationLink {
    border: none
}

@media (min-width: 1100px) {
    .Project-Footer .Theme-NavigationLink:focus,.Project-Footer .Theme-NavigationLink:hover,.Project-Header .Theme-NavigationLink:focus,.Project-Header .Theme-NavigationLink:hover {
        color:inherit
    }

    .Project-Footer .Theme-NavigationLink:focus .menuCaret,.Project-Footer .Theme-NavigationLink:hover .menuCaret,.Project-Header .Theme-NavigationLink:focus .menuCaret,.Project-Header .Theme-NavigationLink:hover .menuCaret {
        opacity: 1
    }
}

.theme-base .Project-Footer .Theme-NavigationBar,.theme-base .Project-Footer .Theme-NavigationBar .Theme-NavigationLink,.theme-base .Project-Header .Theme-NavigationBar,.theme-base .Project-Header .Theme-NavigationBar .Theme-NavigationLink {
    color: inherit
}

@media (min-width: 1100px) {
    .DeviceDetect--isIE .Project-Header .Theme-ProjectNavigation-subMenu:hover,.DeviceDetect--isIE .Project-Header .hasMenu:hover+.Theme-ProjectNavigation-subMenu {
        display:block;
        min-width: 200px;
        height: auto;
        overflow: hidden;
        overflow-y: auto;
        padding: .25em .5em;
        opacity: .95;
        transition: opacity .15s ease-out
    }

    .DeviceDetect--isIE .Project-Header .Theme-NavigationBarItem:focus-within .Theme-ProjectNavigation-subMenu {
        display: block;
        min-width: 200px;
        height: auto;
        overflow: hidden;
        overflow-y: auto;
        padding: .25em .5em;
        opacity: .95;
        transition: opacity .15s ease-out
    }

    .DeviceDetect--isIE .Project-Header .Theme-ProjectNavigation-subMenu .Theme-NavigationBarItem {
        display: block
    }
}

.Project-Header {
    z-index: 1
}

.Project-Header~.Theme-NavigationBar {
    opacity: .95
}

.Project-Header~.Theme-NavigationBar:not([class*=Theme-BackgroundColor]) {
    background-color: #fff;
    color: inherit
}

.Project-Header~.Theme-NavigationBar .Theme-NavigationLink {
    font-weight: 400;
    color: inherit
}

@media (max-width: 1099px) {
    .ProjectNavigation--A .Project-Header .Theme-NavigationBar:not([class*=Theme-BackgroundColor]) {
        background-color:#fff
    }
}

.ProjectNavigation--B {
    box-shadow: none
}

@media (min-width: 1100px) {
    .ProjectNavigation--B .Project-Header--center {
        top:60px
    }
}

.ProjectNavigation--B .Theme-NavigationBar {
    opacity: .95
}

.ProjectNavigation--B .Theme-NavigationBar:not([class*=Theme-BackgroundColor]),.ProjectNavigation--C .Project-Header .Theme-NavigationBar:not([class*=Theme-BackgroundColor]) {
    background-color: #fff
}

.ProjectNavigation--C .Project-Header .Theme-NavigationBar {
    padding: 1em;
    top: 40px
}

@media (min-width: 900px) {
    .ProjectNavigation--C .Project-Header .Theme-NavigationBar {
        top:50px
    }
}

@media (min-width: 1100px) {
    .ProjectNavigation--C .Project-Header .Theme-NavigationBar {
        top:60px
    }
}

.ProjectNavigation--C .Project-Header .Theme-ProjectNavigation-subMenu:before,.ProjectNavigation--C .Project-Header .menuCaret {
    display: none
}

.ProjectNavigation--C .Project-Header .Theme-ProjectNavigation-subMenu {
    background-color: transparent;
    margin: 0;
    display: block!important;
    padding: 0 0 0 1em;
    max-width: 100%
}

.ProjectNavigation--C .Project-Header .Theme-ProjectNavigation-subMenu .Theme-NavigationLink {
    font-weight: 400
}

.ProjectNavigation--C .Project-Header .Theme-NavigationBarItem {
    display: block
}

.ProjectNavigation--C .Project-Header .Theme-NavigationLink,.Theme-MediaSection video {
    width: 100%
}

.ProjectNavigation--C .Project-Header--center {
    z-index: 1
}

@media (min-width: 1100px) {
    .Project-HeaderContainer:not(.ProjectNavigation--C) .Theme-NavigationBarItem {
        display:flex;
        align-items: center;
        min-width: 0
    }

    .Project-HeaderContainer:not(.ProjectNavigation--C) .Theme-NavigationBarItem.isOpen {
        z-index: 1
    }

    .Project-HeaderContainer:not(.ProjectNavigation--C) .Theme-NavigationBarItem.isOpen:before {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        top: -10px;
        bottom: -10px
    }

    .Project-HeaderContainer:not(.ProjectNavigation--C) .Theme-NavigationBarItem.isOpen>.Theme-ProjectNavigation-subMenu {
        height: auto;
        overflow: hidden;
        overflow-y: auto;
        padding: .25em .5em;
        opacity: .95;
        transition: opacity .15s ease-out
    }

    .Project-HeaderContainer:not(.ProjectNavigation--C) .Theme-NavigationBarItem.isOpen>.Theme-ProjectNavigation-subMenu .Theme-ProjectNavigation-subItem {
        display: flex
    }

    .Project-HeaderContainer:not(.ProjectNavigation--C) .Theme-NavigationBarItem.isOpen .menuCaret {
        opacity: 1
    }
}

.Project-HeaderContainer:not(.ProjectNavigation--C) .Navigation__button {
    background: 0 0;
    border: none;
    margin-left: -8px;
    padding: 2px;
    cursor: pointer;
    color: inherit
}

.Project-HeaderContainer:not(.ProjectNavigation--C) .Navigation__button:focus-visible .menuCaret,.Project-HeaderContainer:not(.ProjectNavigation--C) .Navigation__button:hover .menuCaret {
    opacity: 1
}

@media (max-width: 1099px) {
    .Project-HeaderContainer:not(.ProjectNavigation--C) .Navigation__button {
        display:none
    }
}

@media (min-width: 1100px) {
    .Project-HeaderContainer:not(.ProjectNavigation--C) .menuCaret {
        display:flex;
        align-items: center;
        justify-content: center;
        opacity: .7;
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 5px 4px 0;
        border-color: inherit;
        border-right-color: transparent;
        border-left-color: transparent;
        border-bottom-color: transparent
    }

    .Project-HeaderContainer:not(.ProjectNavigation--C) .Theme-ProjectNavigation-subMenu {
        opacity: 0;
        display: flex;
        box-shadow: 0 5px 10px rgba(0,0,0,.3);
        border-radius: 3px;
        max-height: 50vh;
        height: 0;
        padding: 0;
        transition: opacity .15s ease-out;
        margin: 0
    }

    .Project-HeaderContainer:not(.ProjectNavigation--C) .Theme-ProjectNavigation-subMenu:not([class*=Theme-BackgroundColor]) {
        background-color: #fff
    }

    .Project-HeaderContainer:not(.ProjectNavigation--C) .Theme-ProjectNavigation-subMenu .Theme-ProjectNavigation-subItem {
        display: none
    }
}

.Project-HeaderContainer:not(.ProjectNavigation--C) .Theme-ProjectNavigation-subMenu .Theme-NavigationLink {
    font-weight: 400;
    width: 100%
}

@media (min-width: 1100px) {
    .Project-HeaderContainer:not(.ProjectNavigation--C) .Theme-ProjectNavigation-subMenu .Theme-NavigationLink {
        padding-top:.5em;
        padding-bottom: .5em
    }
}

.Project-Footer {
    padding: 30px 0
}

.Theme-Layer-SiteGallery-Item.Theme-Layer-Gallery-Item--active {
    display: none
}

.Theme-RelatedStoriesSection .Theme-RelatedStories:not(:empty) {
    padding: 25px;
    padding-bottom: calc(25px + 45px)
}

@media (min-width: 620px) {
    .Theme-RelatedStoriesSection .Theme-RelatedStories:not(:empty) {
        padding:30px;
        padding-bottom: calc(30px + 45px)
    }
}

@media (min-width: 900px) {
    .Theme-RelatedStoriesSection .Theme-RelatedStories:not(:empty) {
        padding:40px;
        padding-bottom: calc(40px + 45px)
    }
}

.Theme-RelatedStoriesSection .related-stories-list ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap
}

.Theme-RelatedStoriesSection .related-story-card {
    width: 100%;
    text-align: left
}

.Theme-RelatedStoriesSection .related-story-image-img-container {
    height: 100%
}

.Theme-RelatedStoriesSection .related-story-image-img-container img {
    width: 100%;
    height: 100%
}

.Theme-RelatedStoriesSection .related-story-title {
    margin: 0 0 10px;
    font-family: "Poppins",sans-serif;
    font-weight: 700;
    font-size: 110%;
    line-height: 1.2
}

@media (min-width: 900px) {
    .Theme-RelatedStoriesSection .related-story-title {
        font-size:110%
    }
}

.RelatedStories-title,.Theme-Section-Light .Theme-RelatedStoriesSection .related-story-description,.Theme-Section-Light .Theme-RelatedStoriesSection .related-story-title {
    color: #000
}

.Theme-RelatedStoriesSection .related-story-description {
    margin-top: 0;
    margin-bottom: 0;
    font-family: "Roboto",sans-serif;
    font-weight: 400;
    font-size: 90%;
    line-height: 1.2
}

@media (min-width: 900px) {
    .Theme-RelatedStoriesSection .related-story-description {
        font-size:90%
    }
}

[class*=Theme-ForegroundColor] .RelatedStories-title {
    color: inherit
}

.RelatedStories-title:not(:empty) {
    margin-left: 15px;
    margin-right: 15px;
    margin-bottom: 20px
}

@media (min-width: 620px) {
    .RelatedStories-title:not(:empty) {
        margin-left:25px;
        margin-right: 25px
    }
}

@media (min-width: 900px) {
    .RelatedStories-title:not(:empty) {
        margin-left:30px;
        margin-right: 30px
    }
}

@media (min-width: 1100px) {
    .RelatedStories-title:not(:empty) {
        margin-left:40px;
        margin-right: 40px
    }
}

.RelatedStories-title:not(:empty) h2 {
    font-family: "Poppins",sans-serif;
    font-weight: 600;
    line-height: 1.2;
    margin: 0
}

.Theme-RelatedStories--List .related-stories-list li,.Theme-RelatedStories--List .related-stories-list ul {
    display: block
}

.Theme-RelatedStories--List .related-story-card {
    border: 0 solid rgba(0,0,0,.2);
    transition: border .15s ease;
    margin-top: 10px;
    margin-bottom: 10px
}

@media (min-width: 620px) {
    .Theme-RelatedStories--List .related-story-card {
        margin-top:15px;
        margin-bottom: 15px
    }
}

.Theme-Section-Light .Theme-RelatedStories--List .related-story-card {
    background-color: rgba(255,255,255,.8)
}

.Theme-Section-Light .Theme-RelatedStories--List .related-story-card:active,.Theme-Section-Light .Theme-RelatedStories--List .related-story-card:focus,.Theme-Section-Light .Theme-RelatedStories--List .related-story-card:hover {
    background-color: rgba(255,255,255,.8)
}

.Theme-Section-Light .Theme-RelatedStories--List .related-story-card:focus-within {
    background-color: rgba(255,255,255,.8)
}

.Theme-RelatedStories--List .related-story-card:active,.Theme-RelatedStories--List .related-story-card:focus,.Theme-RelatedStories--List .related-story-card:hover {
    border: 0 solid rgba(0,0,0,.5);
    outline: none
}

.Theme-RelatedStories--List .related-story-card:focus-within {
    border: 0 solid rgba(0,0,0,.5);
    outline: 2px solid
}

.Theme-RelatedStories--List .related-story-card .related-story-image:not(:empty) {
    width: 33%;
    min-width: 33%;
    max-width: 33%;
    flex: 1
}

@media (min-width: 620px) {
    .Theme-RelatedStories--List .related-story-card .related-story-image:not(:empty) {
        width:25%;
        max-width: 25%;
        min-width: 150px
    }
}

.Theme-RelatedStories--List .related-story-card .related-story-image:not(:empty) picture {
    height: 100%;
    width: 100%;
    display: block
}

.Theme-RelatedStories--List .related-story-card .related-story-image:not(:empty) img,.Theme-RelatedStories--List .related-story-card .related-story-image:not(:empty) video {
    -o-object-fit: cover;
    object-fit: cover;
    position: absolute
}

.Theme-RelatedStories--List .related-story-card .related-story-text {
    padding: 1.5em;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.Theme-RelatedStories--List .related-story-card .related-story-title {
    margin-top: 0
}

.Theme-RelatedStories--List .related-story-card .related-story-description {
    margin-bottom: 0
}

.Theme-RelatedStories--Card .related-stories-list .Theme-Layer-BodyText,.Theme-RelatedStories--Title .related-stories-list .Theme-Layer-BodyText {
    padding: 0
}

.Theme-RelatedStories--Card .related-stories-list {
    flex: auto;
    max-width: 100%
}

.Theme-RelatedStories--Card .related-stories-list ul {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center
}

.Theme-RelatedStories--Card .related-stories-list ul>li {
    width: 100%;
    min-width: 240px
}

.Theme-RelatedStories--Card .related-stories-list ul>li:not(:only-child) {
    max-width: 400px
}

.Theme-RelatedStories--Card .related-stories-list ul>li:only-child {
    max-width: 800px
}

.Theme-RelatedStories--Card .related-story-card {
    background-color: rgba(255,255,255,.8);
    border: 0 solid rgba(0,0,0,.2);
    transition: border .15s ease;
    flex-direction: column;
    margin: 10px;
    padding: 10px
}

@media (min-width: 620px) {
    .Theme-RelatedStories--Card .related-story-card {
        padding:15px
    }
}

@media (min-width: 1400px) {
    .Theme-RelatedStories--Card .related-story-card {
        margin:15px
    }
}

.Theme-RelatedStories--Card .related-story-text {
    font-size: inherit;
    padding: 1em
}

.Theme-RelatedStories--Title .Layout {
    max-width: 100%
}

.Theme-RelatedStories--Title .related-stories-list {
    flex: auto;
    max-width: 100%
}

.Theme-RelatedStories--Title .related-story-card {
    border: none;
    text-align: center;
    background-color: #222;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2em;
    margin: 5px;
    border-width: 0
}

.Theme-RelatedStories--Title .related-story-card:focus .related-story-image img,.Theme-RelatedStories--Title .related-story-card:focus .related-story-image video,.Theme-RelatedStories--Title .related-story-card:hover .related-story-image img,.Theme-RelatedStories--Title .related-story-card:hover .related-story-image video {
    opacity: .3;
    transform: scale(1.05)
}

.Theme-RelatedStories--Title .related-story-card .related-story-text {
    margin: 6vh auto;
    padding: 0
}

@media (min-width: 620px) {
    .Theme-RelatedStories--Title .related-story-card .related-story-text {
        padding:0
    }
}

.Theme-RelatedStories--Title .related-story-card .related-story-description,.Theme-RelatedStories--Title .related-story-card .related-story-title {
    color: #fff
}

.Theme-RelatedStories--Title .related-story-card .related-story-title {
    margin-top: 0
}

.Theme-RelatedStories--Title .related-story-card .related-story-description {
    margin-bottom: 0
}

.Theme-RelatedStories--Title .related-story-card .related-story-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden
}

.Theme-RelatedStories--Title .related-story-card .related-story-image img,.Theme-RelatedStories--Title .related-story-card .related-story-image video {
    opacity: .4;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    -o-object-fit: cover;
    object-fit: cover;
    height: 100%;
    transition: opacity .15s ease-in-out,transform .15s ease-in-out
}

@media (min-width: 620px) {
    .Theme-RelatedStories--Small .related-stories-list li:not(:only-child) {
        width:50%
    }
}

@media (min-width: 900px) {
    .Theme-RelatedStories--Small .related-stories-list li:not(:only-child) {
        width:25%;
        min-width: 25%
    }
}

@media (min-width: 620px) {
    .Theme-RelatedStories--Small .related-story-text {
        margin:7.5vh auto
    }
}

.Theme-RelatedStories--Medium .related-stories-list li {
    border: none
}

@media (min-width: 620px) {
    .Theme-RelatedStories--Medium .related-stories-list li:not(:only-child) {
        width:50%;
        max-width: 50%
    }

    .Theme-RelatedStories--Medium .related-story-text {
        margin: 10vh auto
    }
}

.Theme-RelatedStories--Large .related-stories-list li {
    min-width: 100%
}

.Theme-RelatedStories--Large .related-stories-list li:only-child {
    min-height: 60vh
}

.Theme-RelatedStories--Large .related-story-card {
    margin-left: 0;
    margin-right: 0;
    min-height: 35vh
}

@media (min-width: 620px) {
    .Theme-RelatedStories--Large .related-story-card .related-story-text {
        margin:12vh auto
    }
}

.Theme-RelatedStoriesSiteMap .Theme-Layer-BodyText-ListItem .related-story-card {
    border: none;
    display: block
}

.Theme-RelatedStoriesSiteMap .Theme-Layer-BodyText-ListItem .related-story-card:focus,.Theme-RelatedStoriesSiteMap .Theme-Layer-BodyText-ListItem .related-story-card:hover {
    border: none
}

.Theme-Section-Dark .RelatedStories-title,.Theme-Section-Dark .related-story-description,.Theme-Section-Dark .related-story-title {
    color: #fff
}

.Theme-Section-Dark .Theme-RelatedStories--Card .related-story-card,.Theme-Section-Dark .Theme-RelatedStories--List .related-story-card {
    background-color: transparent;
    border: 0 solid rgba(255,255,255,.2)
}

.Theme-Section-Dark .Theme-RelatedStories--Card .related-story-card:active,.Theme-Section-Dark .Theme-RelatedStories--Card .related-story-card:focus,.Theme-Section-Dark .Theme-RelatedStories--Card .related-story-card:hover,.Theme-Section-Dark .Theme-RelatedStories--List .related-story-card:active,.Theme-Section-Dark .Theme-RelatedStories--List .related-story-card:focus,.Theme-Section-Dark .Theme-RelatedStories--List .related-story-card:hover {
    border: 0 solid rgba(255,255,255,.5);
    background-color: transparent
}

.Project-Footer .Theme-Default-Logos,.Project-Header .Theme-Default-Logos {
    pointer-events: all
}

.body-project-editor .section-media-portal-container {
    display: none
}

.custom-ad {
    text-align: center;
    padding: 15px 0;
    background-color: rgba(0,0,0,.035)
}

.custom-ad div {
    margin: 0 auto
}

.custom-ad .custom-ad-label {
    font-size: 11px;
    text-transform: uppercase;
    color: rgba(80,80,80,.5);
    margin-bottom: 5px;
    margin-top: -8px
}

.sh-text-xs {
    font-size: 12px
}

.sh-text-sm {
    font-size: 14px
}

.sh-text-md {
    font-size: 80%
}

.sh-text-lg {
    font-size: 120%
}

.sh-text-xl {
    font-size: 150%
}

[dir=rtl] {
    direction: rtl
}

[dir=rtl] .Theme-SocialIcons {
    right: auto;
    margin-right: 0;
    left: 0;
    margin-left: 15px
}

@media (max-width: 1099px) {
    [dir=rtl] .Theme-Hamburger~.Theme-SocialIcons {
        left:45px;
        left: calc(45px + env(safe-area-inset-left))
    }
}

[dir=rtl] .Theme-Hamburger {
    right: auto;
    left: 15px;
    left: calc(15px + env(safe-area-inset-left))
}

@media (max-width: 1099px) {
    [dir=rtl] .Theme-NavigationBar {
        right:auto!important;
        left: -110%!important;
        transition: left .15s ease-in-out
    }

    [dir=rtl] .Navigation--isActive {
        right: auto!important;
        left: 0!important
    }
}

[dir=rtl] .Layout__flex--xright {
    justify-content: flex-start
}

[dir=rtl] .Layout__flex--xleft {
    justify-content: flex-end
}

.body-editor .Theme-HeaderContainer,.body-editor .Theme-Story {
    opacity: 1
}

.body-editor .Theme-Layer-BodyText--inner h2,.body-editor .Theme-Layer-BodyText--inner h3,.body-editor .Theme-Layer-BodyText--inner h4,.body-editor .Theme-Layer-BodyText--inner p {
    min-height: 1em
}

.body-editor .RichEmbed--typeform {
    pointer-events: none
}

.body-editor .Theme-Layer-responsive-media-embed .Theme-Caption p {
    text-align: left
}

.InstantImage__img {
    filter: blur(15px)
}

.Theme-TextSection .Layout__row.DisplayContainerHeight--minHeight {
    min-height: 0
}

.GridItem .btn-swap {
    z-index: 203
}

.body-editor .Theme-Layer-TextBlock-Inner .NodeContent {
    padding-left: 0;
    padding-right: 0
}

.StickyPolyfillElement--stick:not(.Theme-HeaderContainer--hidden)+.Theme-Story,.StickyPolyfillElement--top:not(.Theme-HeaderContainer--hidden)+.Theme-Story {
    top: 40px
}

@media (min-width: 620px) {
    .StickyPolyfillElement--stick:not(.Theme-HeaderContainer--hidden)+.Theme-Story,.StickyPolyfillElement--top:not(.Theme-HeaderContainer--hidden)+.Theme-Story {
        top:50px
    }
}

@media (min-width: 900px) {
    .StickyPolyfillElement--stick:not(.Theme-HeaderContainer--hidden)+.Theme-Story,.StickyPolyfillElement--top:not(.Theme-HeaderContainer--hidden)+.Theme-Story {
        top:60px
    }
}

.Theme-360Video-Link,.video_360_ios_link {
    overflow: hidden;
    display: block
}

.Theme-360Video-Button,.video-btn {
    position: absolute;
    display: inline-block;
    width: 225px;
    top: 50%;
    z-index: 1;
    left: 50%;
    background: rgba(0,0,0,.6) url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAK4AAACCCAMAAADovAORAAAAMFBMVEVHcEz///////////////////////////////////////////////////////////9EPuwCAAAAEHRSTlMABBswQVhuf4ygsdzt9P/Kk8jKaQAAA4lJREFUeNrVnItO6zAMhvPn2tyc93/bU7ohj2WHDpEK+9NUlSHhD+NcGrKYJeB4XQvOwpw54L13F8c45xe5w9UxGMw/ZP4SJ2ldE4PBr/9yODHC+hjnUe2Bu+EPwkHcSTvb/trSdnDcMvGDcOBvOO8O7I2fKcPM4G73obX7bLnU2jotpvdWR85bijF4//kb4GcFBetjHo3+hN5Gjt7aNxsEXO709/TszBv4QVIYHoZ51VO4QZIY1jCzdiJppKlqObeF5FHM/xhEenxRiBT5ZpLKZmYCycWb52mOHSSXAfNEJMmE5/nMIMkU6Khcrt5HbCHZZDyObJ6k42CYRNKJUFALTLGs60g83WnoFxivoXSZqGF2M89zZM8X5ucguEbyaU5FS5vbWiQNBKW6G2kg6tJNvLyggaxT1w4duvawha+kgeHuugsG9NDpcvwy3cSd99W6Ji6aLiVNutd34IGDrNE1yFp0WViVrrFZgy6Di9YB0kpdsC+MK5fo4oJiuOGH7OyyKwtL1p0JQ5WuQajrVxryUl083gGxrp7wloW6M3ZrtIZyuS5YWLrul/XjpqMYcL+40uUXA8PCgnTx3V4J40eXXAxzEYfRBWUX58phqKhdJnXBxTD3Eb4qyS54EiFRdy7mUMX0DOcbpX1VNEz4oWRUA+/+UzBMsKz07LKsEl1+htdQDCwrN7uYtnUI1mVhmzsJ1YV5xuZGjMgHdwZbk77oxCBVIgW6LKtCl9dtdOgiDiItuggse5luWqSLMDpdrItV/1eDLyx7XXaX6CaWvY64THdsLHu1biAdhMMWXpWu0aLrzIGrpIHu7+sChTQwnKqdTgW7KvTtI9t06SbSQFSqG0gDwdyAFl1oGiecup39isaJjGMEVviplEDyCeYTuE7icXdXHW2tWsNsJJ10S6yW5x9vGPnVMMAtTcHnaKL5gq0kmW5ZFQbS05vME7bKTy4erlFD5TIYJJVhXuAayaRZ8wrfSSLdmde4KtcWhoHcs2aqNd8QmqzUbuaE2OTIZmvO8aV1Aa51w7snFLpUamu997/wbK3VEu0hMoFvvF1IuYxa2ye9t/7BKrMb7aDWMUreomejdzzxfMcA1rn7UYBbzqWMnXrQ3qTujN1rF9tiDN5Z4DnIy+hYcEbnCvCLU1P5coBrxBbEwFt1cgKujbEiPAwX27Ux5reXBMR0uz7GOThroPP3Vsf4B0mV16HO1UJAAAAAAElFTkSuQmCC) 12px 12px no-repeat;
    background-size: 20px auto;
    padding: 12px 0 12px 38px;
    letter-spacing: 0;
    border-radius: 4px;
    text-transform: uppercase;
    font-weight: 700;
    color: #fff;
    transform: translate(-50%,-50%);
    text-align: left;
    font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
    font-size: 14px;
    line-height: 1;
    box-shadow: 0 0 0 1000px rgba(0,0,0,.1)
}

.twitter-tweet {
    margin: 0 auto
}

@media (min-width: 900px) {
    .Theme-Layer-BodyText-List-Ordered+.Core--md-srOnly+.Theme-Layer-BodyText-List-Ordered,.Theme-Layer-BodyText-List-Unordered+.Core--md-srOnly+.Theme-Layer-BodyText-List-Unordered {
        margin-top:-.75rem
    }

    .CardCanvasItem__image img {
        max-width: 100%;
        max-height: 75vh!important
    }
}

.nav-item-promo~.nav-item-promo,.shorthand_story-template-default:before,figure[class*=h-align-] .Theme-Lazyload-Spinner,figure[class*=media-size-] .Theme-Lazyload-Spinner {
    display: none
}

.Videoplayer--responsive {
    background-color: #000
}

.Videoplayer--responsive embed,.Videoplayer--responsive iframe,.Videoplayer--responsive object {
    max-height: calc(100vh - 40px);
    top: 50%;
    transform: translateY(-50%)
}

@media (min-width: 620px) {
    .Videoplayer--responsive embed,.Videoplayer--responsive iframe,.Videoplayer--responsive object {
        max-height:calc(100vh - 50px)
    }
}

@media (min-width: 1100px) {
    .Videoplayer--responsive embed,.Videoplayer--responsive iframe,.Videoplayer--responsive object {
        max-height:calc(100vh - 94px)
    }
}

.CardCanvasItem>a:after,.Theme-Layer-BodyText .InlineMedia--image>a:after,.Theme-Layer-BodyText .InlineMedia--image__inner a:after,.Theme-Layer-ResponsiveMedia-image>a:after {
    content: "";
    position: absolute;
    background: rgba(0,0,0,.35) url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADYAAAA2CAMAAAC7m5rvAAAADFBMVEX////////////////1pQ5zAAAABHRSTlMB/I1CoQ5N8QAAAM5JREFUeNrN1kEKwzAQQ9Fauv+duzCJalwy83EX1c7gZ0LGEXn9IpaNzZgRUhp33FfjM2Iqjqk4pCTglq1tp2wEztlG3L6pMz9Hbe6BKWpzqpi/Pzliceghw9x4JTnHF+sPYC5cMsfNVaLW5doZu8oZN3FRwDmL9FnvQ90P0aNbo7rPRhkduKJggfM6B9Bnts/7jDuPxKTPEqE+C8N9lvNZn+lScfrDPktYnyWozxLYZzPmfbaOGzif9ZnZj0cUcFGtMJUwlYgpMuWiz07zBirwBIVbSDEiAAAAAElFTkSuQmCC) 6px center no-repeat;
    background-size: 18px auto;
    color: transparent;
    border-radius: 5px;
    top: 5px;
    right: 5px;
    z-index: 1;
    width: 30px;
    height: 30px;
    line-height: 30px;
    overflow: hidden;
    font-size: 11px;
    text-align: left;
    text-transform: uppercase;
    font-weight: 700;
    font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
    transition: width .15s ease,color .15s ease .15s
}

@media (hover: none) and (pointer:coarse) {
    .CardCanvasItem>a:after,.Theme-Layer-BodyText .InlineMedia--image>a:after,.Theme-Layer-BodyText .InlineMedia--image__inner a:after,.Theme-Layer-ResponsiveMedia-image>a:after {
        content:"Visit link";
        color: #fff;
        width: 96px;
        padding-left: 29px;
        background-color: rgba(0,0,0,.75)
    }
}

.CardCanvasItem>a:hover:after,.Theme-Layer-BodyText .InlineMedia--image>a:hover:after,.Theme-Layer-BodyText .InlineMedia--image__inner a:hover:after,.Theme-Layer-ResponsiveMedia-image>a:hover:after {
    content: "Visit link";
    color: #fff;
    width: 96px;
    padding-left: 29px;
    background-color: rgba(0,0,0,.75)
}

@media (min-width: 900px) {
    .DisplayContainerHeight--flex.Display--md-block {
        display:flex!important
    }
}

.Theme-TextOverMediaSection .InlineMedia .Lazyload__loading,.Theme-TitleSection .InlineMedia .Lazyload__loading {
    opacity: 0!important
}

body:not(.body-editor) .Theme-Layer-BodyText-QuoteCite:empty {
    display: none
}

.Theme-Section-Layout--Full .Theme-BackgroundImage .FullSize--fixedChild {
    clip-path: none;
    -webkit-clip-path: none
}

.shorthand_story-template-default .overflow-container {
    overflow: initial
}

@media (max-width: 960px) {
    .shorthand_story-template-default #main-sidebar {
        padding:1.5em
    }

    .shorthand_story-template-default #main {
        padding: 0
    }
}

.DeviceDetect--isiOS .Theme-TextOverMediaSection .Theme-Overlay,.DeviceDetect--isiOS .Theme-TitleSection .Theme-Overlay {
    pointer-events: none
}

.DeviceDetect--isiOS .FullSize--fixedChild {
    clip: initial
}

.InlineMedia .Lazyload__loading {
    opacity: 0
}

@media (orientation: landscape) {
    .InlineMedia--embed {
        width:100%
    }
}

.shorthand-embed-article,.shorthand-embed-body,.shorthandLoader-Container {
    min-height: 100vh!important
}

.shorthand-embed-article .FullSize,.shorthand-embed-article .FullSize--basic {
    height: 100%
}

.shorthand-embed-article .Theme-Overlay.FullSize {
    min-height: 100%
}

.shorthand-embed-article .FullSize--fixedChild .Theme-Overlay.FullSize,.shorthand-embed-article .FullSize--fullHeight .Theme-Overlay.FullSize {
    min-height: 100.5%
}

.shorthand-embed-article .Theme-Section {
    width: 100%;
    float: none
}

.shorthand-embed-article .DisplayContainerHeight--flex {
    height: auto
}

.shorthand-embed-article .DisplayContainerHeight--flex [class*=Layout__snap--y] {
    position: relative
}

#global-wrapper,#td-outer-wrap,.shorthand-embed-body {
    overflow: initial
}

.shorthand-embed-body article {
    overflow: initial!important;
    padding: 0
}

.shorthand-embed-body .Theme-Navigation-ItemList:empty {
    display: none
}

.td-post-content .Theme-TitleSection .Theme-Item-InstantImage {
    display: none
}

.Theme-Layer-TextBlock-Inner .Theme-TextSize-tiny {
    font-size: .5em;
    line-height: calc(1.7*.75)
}

.Theme-Layer-TextBlock-Inner .Theme-TextSize-smallest {
    font-size: .75em;
    line-height: calc(1.7*.9)
}

.Theme-Layer-TextBlock-Inner .Theme-TextSize-default {
    font-size: 1em;
    line-height: 1.7
}

.Theme-Layer-TextBlock-Inner .Theme-TextSize-xxxsmall {
    font-size: 140%;
    line-height: 1.2
}

.Theme-Layer-TextBlock-Inner .Theme-TextSize-xxsmall {
    font-size: 180%;
    line-height: 1.2
}

.Theme-Layer-TextBlock-Inner .Theme-TextSize-xsmall {
    font-size: 240%;
    line-height: 1.2
}

.Theme-Layer-TextBlock-Inner .Theme-TextSize-small {
    font-size: calc(240%*1.5);
    line-height: 1.15
}

.Theme-Layer-TextBlock-Inner .Theme-TextSize-normal {
    font-size: calc(240%*2);
    line-height: 1.1
}

.Theme-Layer-TextBlock-Inner .Theme-TextSize-large {
    font-size: calc(240%*2.5);
    line-height: 1
}

.Theme-Layer-TextBlock-Inner .Theme-TextSize-xlarge {
    font-size: calc(240%*3);
    line-height: 1
}

.Theme-Layer-TextBlock-Inner .Theme-TextSize-xxlarge {
    font-size: calc(240%*3.5);
    line-height: 1
}

.Theme-Layer-TextBlock-Inner .Theme-TextSize-xxxlarge {
    font-size: calc(240%*4);
    line-height: 1
}

.Theme-Layer-TextBlock-Inner .Theme-TextSize-xxxxlarge {
    font-size: calc(240%*4.5);
    line-height: 1
}

@media (max-width: 620px),(orientation:landscape) and (max-width:900px) {
    .Theme-Layer-TextBlock-Inner .Theme-TextSize-tiny {
        font-size:.5em;
        line-height: calc(1.7*.75)
    }

    .Theme-Layer-TextBlock-Inner .Theme-TextSize-smallest {
        font-size: .75em;
        line-height: calc(1.7*.9)
    }

    .Theme-Layer-TextBlock-Inner .Theme-TextSize-default {
        font-size: 1em;
        line-height: 1.7
    }

    .Theme-Layer-TextBlock-Inner .Theme-TextSize-xxxsmall {
        font-size: 120%;
        line-height: 1.2
    }

    .Theme-Layer-TextBlock-Inner .Theme-TextSize-xxsmall {
        font-size: 160%;
        line-height: 1.2
    }

    .Theme-Layer-TextBlock-Inner .Theme-TextSize-xsmall {
        font-size: 200%;
        line-height: 1.2
    }

    .Theme-Layer-TextBlock-Inner .Theme-TextSize-small {
        font-size: calc(200%*1.25);
        line-height: 1
    }

    .Theme-Layer-TextBlock-Inner .Theme-TextSize-normal {
        font-size: calc(200%*1.5);
        line-height: 1
    }

    .Theme-Layer-TextBlock-Inner .Theme-TextSize-large {
        font-size: calc(200%*1.75);
        line-height: 1
    }

    .Theme-Layer-TextBlock-Inner .Theme-TextSize-xlarge {
        font-size: calc(200%*2);
        line-height: 1
    }

    .Theme-Layer-TextBlock-Inner .Theme-TextSize-xxlarge {
        font-size: calc(200%*2.5);
        line-height: 1
    }

    .Theme-Layer-TextBlock-Inner .Theme-TextSize-xxxlarge {
        font-size: calc(200%*3);
        line-height: 1
    }

    .Theme-Layer-TextBlock-Inner .Theme-TextSize-xxxxlarge {
        font-size: calc(200%*3.5);
        line-height: 1
    }
}

.Theme-ForegroundColor-0 {
    color: #5e1c65
}

.text-edit-colour-value .text-edit-colour-swatch.Theme-BackgroundColor-0,.text-edit-colour-value .text-edit-colour-swatch.Theme-ForegroundColor-0,.text-edit-dropdown-colour.Theme-BackgroundColor-0,.text-edit-dropdown-colour.Theme-ForegroundColor-0 {
    background: #5e1c65
}

.Theme-BackgroundColor-0 {
    background-color: #5e1c65
}

.Theme-ForegroundColor-1 {
    color: #830192
}

.text-edit-colour-value .text-edit-colour-swatch.Theme-BackgroundColor-1,.text-edit-colour-value .text-edit-colour-swatch.Theme-ForegroundColor-1,.text-edit-dropdown-colour.Theme-BackgroundColor-1,.text-edit-dropdown-colour.Theme-ForegroundColor-1 {
    background: #830192
}

.Theme-BackgroundColor-1 {
    background-color: #830192
}

.Theme-ForegroundColor-2 {
    color: #cb55e2
}

.text-edit-colour-value .text-edit-colour-swatch.Theme-BackgroundColor-2,.text-edit-colour-value .text-edit-colour-swatch.Theme-ForegroundColor-2,.text-edit-dropdown-colour.Theme-BackgroundColor-2,.text-edit-dropdown-colour.Theme-ForegroundColor-2 {
    background: #cb55e2
}

.Theme-BackgroundColor-2 {
    background-color: #cb55e2
}

.Theme-ForegroundColor-3 {
    color: #e4a2f1
}

.text-edit-colour-value .text-edit-colour-swatch.Theme-BackgroundColor-3,.text-edit-colour-value .text-edit-colour-swatch.Theme-ForegroundColor-3,.text-edit-dropdown-colour.Theme-BackgroundColor-3,.text-edit-dropdown-colour.Theme-ForegroundColor-3 {
    background: #e4a2f1
}

.Theme-BackgroundColor-3 {
    background-color: #e4a2f1
}

.Theme-ForegroundColor-4 {
    color: #f4e3f8
}

.text-edit-colour-value .text-edit-colour-swatch.Theme-BackgroundColor-4,.text-edit-colour-value .text-edit-colour-swatch.Theme-ForegroundColor-4,.text-edit-dropdown-colour.Theme-BackgroundColor-4,.text-edit-dropdown-colour.Theme-ForegroundColor-4 {
    background: #f4e3f8
}

.Theme-BackgroundColor-4 {
    background-color: #f4e3f8
}

.Theme-ForegroundColor-5 {
    color: #190a70
}

.text-edit-colour-value .text-edit-colour-swatch.Theme-BackgroundColor-5,.text-edit-colour-value .text-edit-colour-swatch.Theme-ForegroundColor-5,.text-edit-dropdown-colour.Theme-BackgroundColor-5,.text-edit-dropdown-colour.Theme-ForegroundColor-5 {
    background: #190a70
}

.Theme-BackgroundColor-5 {
    background-color: #190a70
}

.Theme-ForegroundColor-6 {
    color: #0e16cf
}

.text-edit-colour-value .text-edit-colour-swatch.Theme-BackgroundColor-6,.text-edit-colour-value .text-edit-colour-swatch.Theme-ForegroundColor-6,.text-edit-dropdown-colour.Theme-BackgroundColor-6,.text-edit-dropdown-colour.Theme-ForegroundColor-6 {
    background: #0e16cf
}

.Theme-BackgroundColor-6 {
    background-color: #0e16cf
}

.Theme-ForegroundColor-7 {
    color: #06f
}

.text-edit-colour-value .text-edit-colour-swatch.Theme-BackgroundColor-7,.text-edit-colour-value .text-edit-colour-swatch.Theme-ForegroundColor-7,.text-edit-dropdown-colour.Theme-BackgroundColor-7,.text-edit-dropdown-colour.Theme-ForegroundColor-7 {
    background: #06f
}

.Theme-BackgroundColor-7 {
    background-color: #06f
}

.Theme-ForegroundColor-8 {
    color: #82b4ff
}

.text-edit-colour-value .text-edit-colour-swatch.Theme-BackgroundColor-8,.text-edit-colour-value .text-edit-colour-swatch.Theme-ForegroundColor-8,.text-edit-dropdown-colour.Theme-BackgroundColor-8,.text-edit-dropdown-colour.Theme-ForegroundColor-8 {
    background: #82b4ff
}

.Theme-BackgroundColor-8 {
    background-color: #82b4ff
}

.Theme-ForegroundColor-9 {
    color: #ddeaff
}

.text-edit-colour-value .text-edit-colour-swatch.Theme-BackgroundColor-9,.text-edit-colour-value .text-edit-colour-swatch.Theme-ForegroundColor-9,.text-edit-dropdown-colour.Theme-BackgroundColor-9,.text-edit-dropdown-colour.Theme-ForegroundColor-9 {
    background: #ddeaff
}

.Theme-BackgroundColor-9 {
    background-color: #ddeaff
}

.Theme-ForegroundColor-10 {
    color: #167eab
}

.text-edit-colour-value .text-edit-colour-swatch.Theme-BackgroundColor-10,.text-edit-colour-value .text-edit-colour-swatch.Theme-ForegroundColor-10,.text-edit-dropdown-colour.Theme-BackgroundColor-10,.text-edit-dropdown-colour.Theme-ForegroundColor-10 {
    background: #167eab
}

.Theme-BackgroundColor-10 {
    background-color: #167eab
}

.Theme-ForegroundColor-11 {
    color: #00bae2
}

.text-edit-colour-value .text-edit-colour-swatch.Theme-BackgroundColor-11,.text-edit-colour-value .text-edit-colour-swatch.Theme-ForegroundColor-11,.text-edit-dropdown-colour.Theme-BackgroundColor-11,.text-edit-dropdown-colour.Theme-ForegroundColor-11 {
    background: #00bae2
}

.Theme-BackgroundColor-11 {
    background-color: #00bae2
}

.Theme-ForegroundColor-12 {
    color: #97e7f9
}

.text-edit-colour-value .text-edit-colour-swatch.Theme-BackgroundColor-12,.text-edit-colour-value .text-edit-colour-swatch.Theme-ForegroundColor-12,.text-edit-dropdown-colour.Theme-BackgroundColor-12,.text-edit-dropdown-colour.Theme-ForegroundColor-12 {
    background: #97e7f9
}

.Theme-BackgroundColor-12 {
    background-color: #97e7f9
}

.Theme-ForegroundColor-13 {
    color: #ddf9ff
}

.text-edit-colour-value .text-edit-colour-swatch.Theme-BackgroundColor-13,.text-edit-colour-value .text-edit-colour-swatch.Theme-ForegroundColor-13,.text-edit-dropdown-colour.Theme-BackgroundColor-13,.text-edit-dropdown-colour.Theme-ForegroundColor-13 {
    background: #ddf9ff
}

.Theme-BackgroundColor-13 {
    background-color: #ddf9ff
}

.Theme-ForegroundColor-14 {
    color: #d65308
}

.text-edit-colour-value .text-edit-colour-swatch.Theme-BackgroundColor-14,.text-edit-colour-value .text-edit-colour-swatch.Theme-ForegroundColor-14,.text-edit-dropdown-colour.Theme-BackgroundColor-14,.text-edit-dropdown-colour.Theme-ForegroundColor-14 {
    background: #d65308
}

.Theme-BackgroundColor-14 {
    background-color: #d65308
}

.Theme-ForegroundColor-15 {
    color: #f09001
}

.text-edit-colour-value .text-edit-colour-swatch.Theme-BackgroundColor-15,.text-edit-colour-value .text-edit-colour-swatch.Theme-ForegroundColor-15,.text-edit-dropdown-colour.Theme-BackgroundColor-15,.text-edit-dropdown-colour.Theme-ForegroundColor-15 {
    background: #f09001
}

.Theme-BackgroundColor-15 {
    background-color: #f09001
}

.Theme-ForegroundColor-16 {
    color: #ffb800
}

.text-edit-colour-value .text-edit-colour-swatch.Theme-BackgroundColor-16,.text-edit-colour-value .text-edit-colour-swatch.Theme-ForegroundColor-16,.text-edit-dropdown-colour.Theme-BackgroundColor-16,.text-edit-dropdown-colour.Theme-ForegroundColor-16 {
    background: #ffb800
}

.Theme-BackgroundColor-16 {
    background-color: #ffb800
}

.Theme-ForegroundColor-17 {
    color: #fff2d6
}

.text-edit-colour-value .text-edit-colour-swatch.Theme-BackgroundColor-17,.text-edit-colour-value .text-edit-colour-swatch.Theme-ForegroundColor-17,.text-edit-dropdown-colour.Theme-BackgroundColor-17,.text-edit-dropdown-colour.Theme-ForegroundColor-17 {
    background: #fff2d6
}

.Theme-BackgroundColor-17 {
    background-color: #fff2d6
}

.Theme-ForegroundColor-18 {
    color: #a1004e
}

.text-edit-colour-value .text-edit-colour-swatch.Theme-BackgroundColor-18,.text-edit-colour-value .text-edit-colour-swatch.Theme-ForegroundColor-18,.text-edit-dropdown-colour.Theme-BackgroundColor-18,.text-edit-dropdown-colour.Theme-ForegroundColor-18 {
    background: #a1004e
}

.Theme-BackgroundColor-18 {
    background-color: #a1004e
}

.Theme-ForegroundColor-19 {
    color: #e52481
}

.text-edit-colour-value .text-edit-colour-swatch.Theme-BackgroundColor-19,.text-edit-colour-value .text-edit-colour-swatch.Theme-ForegroundColor-19,.text-edit-dropdown-colour.Theme-BackgroundColor-19,.text-edit-dropdown-colour.Theme-ForegroundColor-19 {
    background: #e52481
}

.Theme-BackgroundColor-19 {
    background-color: #e52481
}

.Theme-ForegroundColor-20 {
    color: #fa89bf
}

.text-edit-colour-value .text-edit-colour-swatch.Theme-BackgroundColor-20,.text-edit-colour-value .text-edit-colour-swatch.Theme-ForegroundColor-20,.text-edit-dropdown-colour.Theme-BackgroundColor-20,.text-edit-dropdown-colour.Theme-ForegroundColor-20 {
    background: #fa89bf
}

.Theme-BackgroundColor-20 {
    background-color: #fa89bf
}

.Theme-ForegroundColor-21 {
    color: #ffe7f2
}

.text-edit-colour-value .text-edit-colour-swatch.Theme-BackgroundColor-21,.text-edit-colour-value .text-edit-colour-swatch.Theme-ForegroundColor-21,.text-edit-dropdown-colour.Theme-BackgroundColor-21,.text-edit-dropdown-colour.Theme-ForegroundColor-21 {
    background: #ffe7f2
}

.Theme-BackgroundColor-21 {
    background-color: #ffe7f2
}

.Theme-ForegroundColor-22 {
    color: #337813
}

.text-edit-colour-value .text-edit-colour-swatch.Theme-BackgroundColor-22,.text-edit-colour-value .text-edit-colour-swatch.Theme-ForegroundColor-22,.text-edit-dropdown-colour.Theme-BackgroundColor-22,.text-edit-dropdown-colour.Theme-ForegroundColor-22 {
    background: #337813
}

.Theme-BackgroundColor-22 {
    background-color: #337813
}

.Theme-ForegroundColor-23 {
    color: #78d231
}

.text-edit-colour-value .text-edit-colour-swatch.Theme-BackgroundColor-23,.text-edit-colour-value .text-edit-colour-swatch.Theme-ForegroundColor-23,.text-edit-dropdown-colour.Theme-BackgroundColor-23,.text-edit-dropdown-colour.Theme-ForegroundColor-23 {
    background: #78d231
}

.Theme-BackgroundColor-23 {
    background-color: #78d231
}

.Theme-ForegroundColor-24 {
    color: #bfed5c
}

.text-edit-colour-value .text-edit-colour-swatch.Theme-BackgroundColor-24,.text-edit-colour-value .text-edit-colour-swatch.Theme-ForegroundColor-24,.text-edit-dropdown-colour.Theme-BackgroundColor-24,.text-edit-dropdown-colour.Theme-ForegroundColor-24 {
    background: #bfed5c
}

.Theme-BackgroundColor-24 {
    background-color: #bfed5c
}

.Theme-ForegroundColor-25 {
    color: #e4ffaa
}

.text-edit-colour-value .text-edit-colour-swatch.Theme-BackgroundColor-25,.text-edit-colour-value .text-edit-colour-swatch.Theme-ForegroundColor-25,.text-edit-dropdown-colour.Theme-BackgroundColor-25,.text-edit-dropdown-colour.Theme-ForegroundColor-25 {
    background: #e4ffaa
}

.Theme-BackgroundColor-25 {
    background-color: #e4ffaa
}

.Theme-ForegroundColor-26 {
    color: #2f2f2f
}

.text-edit-colour-value .text-edit-colour-swatch.Theme-BackgroundColor-26,.text-edit-colour-value .text-edit-colour-swatch.Theme-ForegroundColor-26,.text-edit-dropdown-colour.Theme-BackgroundColor-26,.text-edit-dropdown-colour.Theme-ForegroundColor-26 {
    background: #2f2f2f
}

.Theme-BackgroundColor-26 {
    background-color: #2f2f2f
}

.Theme-ForegroundColor-27 {
    color: #707070
}

.text-edit-colour-value .text-edit-colour-swatch.Theme-BackgroundColor-27,.text-edit-colour-value .text-edit-colour-swatch.Theme-ForegroundColor-27,.text-edit-dropdown-colour.Theme-BackgroundColor-27,.text-edit-dropdown-colour.Theme-ForegroundColor-27 {
    background: #707070
}

.Theme-BackgroundColor-27 {
    background-color: #707070
}

.Theme-ForegroundColor-28 {
    color: #f5f5f5
}

.text-edit-colour-value .text-edit-colour-swatch.Theme-BackgroundColor-28,.text-edit-colour-value .text-edit-colour-swatch.Theme-ForegroundColor-28,.text-edit-dropdown-colour.Theme-BackgroundColor-28,.text-edit-dropdown-colour.Theme-ForegroundColor-28 {
    background: #f5f5f5
}

.Theme-BackgroundColor-28 {
    background-color: #f5f5f5
}

.Theme-ForegroundColor-29 {
    color: #fff
}

.text-edit-colour-value .text-edit-colour-swatch.Theme-BackgroundColor-29,.text-edit-colour-value .text-edit-colour-swatch.Theme-ForegroundColor-29,.text-edit-dropdown-colour.Theme-BackgroundColor-29,.text-edit-dropdown-colour.Theme-ForegroundColor-29 {
    background: #fff
}

.Theme-BackgroundColor-29 {
    background-color: #fff
}

.Theme-ForegroundColor-30 {
    color: #000
}

.text-edit-colour-value .text-edit-colour-swatch.Theme-BackgroundColor-30,.text-edit-colour-value .text-edit-colour-swatch.Theme-ForegroundColor-30,.text-edit-dropdown-colour.Theme-BackgroundColor-30,.text-edit-dropdown-colour.Theme-ForegroundColor-30 {
    background: #000
}

.Theme-BackgroundColor-30 {
    background-color: #000
}

.Theme-ForegroundColorCustom-fN8onU {
    color: rgba(255,255,255,1);
}

.Theme-BackgroundColorCustom-fN8onU {
    background-color: rgba(255,255,255,1);
}

.Theme-ForegroundColorCustom-grrnJp {
    color: rgba(42,39,101,1);
}

.Theme-BackgroundColorCustom-grrnJp {
    background-color: rgba(42,39,101,1);
}

.Theme-ForegroundColorCustom-Ap0eUB {
    color: rgb(0, 0, 0);
}

.Theme-BackgroundColorCustom-Ap0eUB {
    background-color: rgb(0, 0, 0);
}

.Theme-ForegroundColorCustom-sPIhxu {
    color: rgb(70, 120, 134);
}

.Theme-BackgroundColorCustom-sPIhxu {
    background-color: rgb(70, 120, 134);
}

.Theme-ForegroundColorCustom-oY2Q0K {
    color: rgb(43, 87, 154);
}

.Theme-BackgroundColorCustom-oY2Q0K {
    background-color: rgb(43, 87, 154);
}

.Theme-ForegroundColorCustom-iPH28i {
    color: rgba(202,36,50,1);
}

.Theme-BackgroundColorCustom-iPH28i {
    background-color: rgba(202,36,50,1);
}

.Theme-ForegroundColorCustom-dwfHfY {
    color: rgb(0, 0, 102);
}

.Theme-BackgroundColorCustom-dwfHfY {
    background-color: rgb(0, 0, 102);
}

.Theme-ForegroundColorCustom-Ayk9Uu {
    color: rgb(54, 95, 145);
}

.Theme-BackgroundColorCustom-Ayk9Uu {
    background-color: rgb(54, 95, 145);
}

.Theme-ForegroundColorCustom-k9oibD {
    color: rgb(0, 0, 255);
}

.Theme-BackgroundColorCustom-k9oibD {
    background-color: rgb(0, 0, 255);
}

.Theme-ForegroundColorCustom-DyXeEM {
    color: rgb(79, 129, 189);
}

.Theme-BackgroundColorCustom-DyXeEM {
    background-color: rgb(79, 129, 189);
}

.Theme-ForegroundColorCustom-kebXxw {
    color: rgba(255,255,255,1);
}

.Theme-BackgroundColorCustom-kebXxw {
    background-color: rgba(255,255,255,1);
}

@media (min-width: 700px) {
    .Theme-HeaderContainer {
        height:85px
    }
}

@media (min-width: 1100px) {
    .Theme-HeaderContainer {
        height:100px
    }
}

@media (min-width: 700px) {
    .Theme-Logos {
        height:45px
    }
}

@media (min-width: 1100px) {
    .Theme-Logos {
        height:60px
    }
}

.Theme-Logos {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.Theme-Logo {
    width: auto;
}

@media (min-width: 900px) {
    .Theme-Logos .Display--md-block {
        display:flex!important;
    }
}