/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}
.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}
.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before,
.slick-track:after {
  display: table;
  content: '';
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}
.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}
[dir='rtl'] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
  display: none;
}

/*
 *  Copyright 2019 Adobe
 *
 *  Licensed under the Apache License, Version 2.0 (the "License");
 *  you may not use this file except in compliance with the License.
 *  You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 *  Unless required by applicable law or agreed to in writing, software
 *  distributed under the License is distributed on an "AS IS" BASIS,
 *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 *  See the License for the specific language governing permissions and
 *  limitations under the License.
 */
.cmp-accordion__header {
  margin: 0;
}
.cmp-accordion__button {
  display: block;
  width: 100%;
  text-align: left;
}
.cmp-accordion__panel--hidden {
  display: none;
}
.cmp-accordion__panel--expanded {
  display: block;
}

/*
 *  Copyright 2018 Adobe
 *
 *  Licensed under the Apache License, Version 2.0 (the "License");
 *  you may not use this file except in compliance with the License.
 *  You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 *  Unless required by applicable law or agreed to in writing, software
 *  distributed under the License is distributed on an "AS IS" BASIS,
 *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 *  See the License for the specific language governing permissions and
 *  limitations under the License.
 */
.cmp-tabs__tablist {
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  list-style: none;
}
.cmp-tabs__tab {
  box-sizing: border-box;
  border-bottom: 1px solid transparent;
  padding: .5rem 1rem;
  cursor: pointer;
}
.cmp-tabs__tab--active {
  border-color: inherit;
}
.cmp-tabs__tabpanel {
  display: none;
}
.cmp-tabs__tabpanel--active {
  display: block;
}

/*
 *  Copyright 2018 Adobe
 *
 *  Licensed under the Apache License, Version 2.0 (the "License");
 *  you may not use this file except in compliance with the License.
 *  You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 *  Unless required by applicable law or agreed to in writing, software
 *  distributed under the License is distributed on an "AS IS" BASIS,
 *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 *  See the License for the specific language governing permissions and
 *  limitations under the License.
 */
.cmp-tabs__tablist {
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  list-style: none;
}
.cmp-tabs__tab {
  box-sizing: border-box;
  border-bottom: 1px solid transparent;
  padding: .5rem 1rem;
  cursor: pointer;
}
.cmp-tabs__tab--active {
  border-color: inherit;
}
.cmp-tabs__tabpanel {
  display: none;
}
.cmp-tabs__tabpanel--active {
  display: block;
}

/*
 *  Copyright 2018 Adobe
 *
 *  Licensed under the Apache License, Version 2.0 (the "License");
 *  you may not use this file except in compliance with the License.
 *  You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 *  Unless required by applicable law or agreed to in writing, software
 *  distributed under the License is distributed on an "AS IS" BASIS,
 *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 *  See the License for the specific language governing permissions and
 *  limitations under the License.
 */
.cmp-carousel__content {
  position: relative;
}
.cmp-carousel__item {
  display: none;
}
.cmp-carousel__item--active {
  display: block;
}
.cmp-carousel__action {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.cmp-carousel__indicators {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style: none;
}
.cmp-carousel__indicator {
  position: relative;
  flex: 0 1 auto;
  width: 10px;
  height: 10px;
  margin: 0 7px;
  border-radius: 50%;
  font-size: 0;
  text-indent: -3000px;
  background-color: rgba(0, 0, 0, 0.5);
}
.cmp-carousel__indicator--active {
  background-color: rgba(0, 0, 0, 0.8);
}

/*
 *  Copyright 2017 Adobe
 *
 *  Licensed under the Apache License, Version 2.0 (the "License");
 *  you may not use this file except in compliance with the License.
 *  You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 *  Unless required by applicable law or agreed to in writing, software
 *  distributed under the License is distributed on an "AS IS" BASIS,
 *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 *  See the License for the specific language governing permissions and
 *  limitations under the License.
 */
/** @define image */
.cmp-image__image {
  width: 100%;
}

/*
 *  Copyright 2017 Adobe
 *
 *  Licensed under the Apache License, Version 2.0 (the "License");
 *  you may not use this file except in compliance with the License.
 *  You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 *  Unless required by applicable law or agreed to in writing, software
 *  distributed under the License is distributed on an "AS IS" BASIS,
 *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 *  See the License for the specific language governing permissions and
 *  limitations under the License.
 */
/** @define breadcrumb */
.cmp-breadcrumb {
  display: inline-block;
  list-style: none;
  padding: 0;
}
.cmp-breadcrumb__item {
  display: inline-block;
  vertical-align: top;
}

/*
 *  Copyright 2020 Adobe
 *
 *  Licensed under the Apache License, Version 2.0 (the "License");
 *  you may not use this file except in compliance with the License.
 *  You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 *  Unless required by applicable law or agreed to in writing, software
 *  distributed under the License is distributed on an "AS IS" BASIS,
 *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 *  See the License for the specific language governing permissions and
 *  limitations under the License.
 */
.cmp-pdfviewer__content {
  height: 500px;
}
.pdfviewer:not(.cq-Editable-dom) .cmp-pdfviewer__full-window-borderless {
  height: 100vh;
  position: fixed;
  width: 100vw;
  top: 0;
  left: 0;
  z-index: 9999;
}
.pdfviewer.cq-Editable-dom .cmp-pdfviewer__full-window-borderless {
  height: 500px;
}

/*
 *  Copyright 2018 Adobe Systems Incorporated
 *
 *  Licensed under the Apache License, Version 2.0 (the "License");
 *  you may not use this file except in compliance with the License.
 *  You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 *  Unless required by applicable law or agreed to in writing, software
 *  distributed under the License is distributed on an "AS IS" BASIS,
 *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 *  See the License for the specific language governing permissions and
 *  limitations under the License.
 */
/*
 * ADOBE CONFIDENTIAL
 *
 * Copyright 2015 Adobe Systems Incorporated
 * All Rights Reserved.
 *
 * NOTICE:  All information contained herein is, and remains
 * the property of Adobe Systems Incorporated and its suppliers,
 * if any.  The intellectual and technical concepts contained
 * herein are proprietary to Adobe Systems Incorporated and its
 * suppliers and may be covered by U.S. and Foreign Patents,
 * patents in process, and are protected by trade secret or copyright law.
 * Dissemination of this information or reproduction of this material
 * is strictly forbidden unless prior written permission is obtained
 * from Adobe Systems Incorporated.
 */
/* grid component */
.aem-Grid {
  display: block;
  width: 100%;
}
.aem-Grid::before,
.aem-Grid::after {
  display: table;
  content: " ";
}
.aem-Grid::after {
  clear: both;
}
/* placeholder for new components */
.aem-Grid-newComponent {
  clear: both;
  margin: 0;
}
/* column of a grid */
.aem-GridColumn {
  box-sizing: border-box;
  clear: both;
}
/* force showing hidden */
.aem-GridShowHidden > .aem-Grid > .aem-GridColumn {
  display: block !important;
}
/* Generates all the rules for the grid columns up to the given amount of column */
/* Generates all the rules for the grid column offset up to the given amount of column */
/* Generates all the rules for the grid and columns for the given break point and total of columns */
/* Generates all the rules for the grids and columns */
/* API function to be called to generate a grid config */
/* maximum amount of grid cells to be provided */
/* default breakpoint */
.aem-Grid.aem-Grid--1 > .aem-GridColumn.aem-GridColumn--default--1 {
  float: left;
  clear: none;
  width: 100%;
}
.aem-Grid.aem-Grid--1 > .aem-GridColumn.aem-GridColumn--offset--default--0 {
  margin-left: 0%;
}
.aem-Grid.aem-Grid--1 > .aem-GridColumn.aem-GridColumn--offset--default--1 {
  margin-left: 100%;
}
.aem-Grid.aem-Grid--2 > .aem-GridColumn.aem-GridColumn--default--1 {
  float: left;
  clear: none;
  width: 50%;
}
.aem-Grid.aem-Grid--2 > .aem-GridColumn.aem-GridColumn--default--2 {
  float: left;
  clear: none;
  width: 100%;
}
.aem-Grid.aem-Grid--2 > .aem-GridColumn.aem-GridColumn--offset--default--0 {
  margin-left: 0%;
}
.aem-Grid.aem-Grid--2 > .aem-GridColumn.aem-GridColumn--offset--default--1 {
  margin-left: 50%;
}
.aem-Grid.aem-Grid--2 > .aem-GridColumn.aem-GridColumn--offset--default--2 {
  margin-left: 100%;
}
.aem-Grid.aem-Grid--3 > .aem-GridColumn.aem-GridColumn--default--1 {
  float: left;
  clear: none;
  width: 33.33333333%;
}
.aem-Grid.aem-Grid--3 > .aem-GridColumn.aem-GridColumn--default--2 {
  float: left;
  clear: none;
  width: 66.66666667%;
}
.aem-Grid.aem-Grid--3 > .aem-GridColumn.aem-GridColumn--default--3 {
  float: left;
  clear: none;
  width: 100%;
}
.aem-Grid.aem-Grid--3 > .aem-GridColumn.aem-GridColumn--offset--default--0 {
  margin-left: 0%;
}
.aem-Grid.aem-Grid--3 > .aem-GridColumn.aem-GridColumn--offset--default--1 {
  margin-left: 33.33333333%;
}
.aem-Grid.aem-Grid--3 > .aem-GridColumn.aem-GridColumn--offset--default--2 {
  margin-left: 66.66666667%;
}
.aem-Grid.aem-Grid--3 > .aem-GridColumn.aem-GridColumn--offset--default--3 {
  margin-left: 100%;
}
.aem-Grid.aem-Grid--4 > .aem-GridColumn.aem-GridColumn--default--1 {
  float: left;
  clear: none;
  width: 25%;
}
.aem-Grid.aem-Grid--4 > .aem-GridColumn.aem-GridColumn--default--2 {
  float: left;
  clear: none;
  width: 50%;
}
.aem-Grid.aem-Grid--4 > .aem-GridColumn.aem-GridColumn--default--3 {
  float: left;
  clear: none;
  width: 75%;
}
.aem-Grid.aem-Grid--4 > .aem-GridColumn.aem-GridColumn--default--4 {
  float: left;
  clear: none;
  width: 100%;
}
.aem-Grid.aem-Grid--4 > .aem-GridColumn.aem-GridColumn--offset--default--0 {
  margin-left: 0%;
}
.aem-Grid.aem-Grid--4 > .aem-GridColumn.aem-GridColumn--offset--default--1 {
  margin-left: 25%;
}
.aem-Grid.aem-Grid--4 > .aem-GridColumn.aem-GridColumn--offset--default--2 {
  margin-left: 50%;
}
.aem-Grid.aem-Grid--4 > .aem-GridColumn.aem-GridColumn--offset--default--3 {
  margin-left: 75%;
}
.aem-Grid.aem-Grid--4 > .aem-GridColumn.aem-GridColumn--offset--default--4 {
  margin-left: 100%;
}
.aem-Grid.aem-Grid--5 > .aem-GridColumn.aem-GridColumn--default--1 {
  float: left;
  clear: none;
  width: 20%;
}
.aem-Grid.aem-Grid--5 > .aem-GridColumn.aem-GridColumn--default--2 {
  float: left;
  clear: none;
  width: 40%;
}
.aem-Grid.aem-Grid--5 > .aem-GridColumn.aem-GridColumn--default--3 {
  float: left;
  clear: none;
  width: 60%;
}
.aem-Grid.aem-Grid--5 > .aem-GridColumn.aem-GridColumn--default--4 {
  float: left;
  clear: none;
  width: 80%;
}
.aem-Grid.aem-Grid--5 > .aem-GridColumn.aem-GridColumn--default--5 {
  float: left;
  clear: none;
  width: 100%;
}
.aem-Grid.aem-Grid--5 > .aem-GridColumn.aem-GridColumn--offset--default--0 {
  margin-left: 0%;
}
.aem-Grid.aem-Grid--5 > .aem-GridColumn.aem-GridColumn--offset--default--1 {
  margin-left: 20%;
}
.aem-Grid.aem-Grid--5 > .aem-GridColumn.aem-GridColumn--offset--default--2 {
  margin-left: 40%;
}
.aem-Grid.aem-Grid--5 > .aem-GridColumn.aem-GridColumn--offset--default--3 {
  margin-left: 60%;
}
.aem-Grid.aem-Grid--5 > .aem-GridColumn.aem-GridColumn--offset--default--4 {
  margin-left: 80%;
}
.aem-Grid.aem-Grid--5 > .aem-GridColumn.aem-GridColumn--offset--default--5 {
  margin-left: 100%;
}
.aem-Grid.aem-Grid--6 > .aem-GridColumn.aem-GridColumn--default--1 {
  float: left;
  clear: none;
  width: 16.66666667%;
}
.aem-Grid.aem-Grid--6 > .aem-GridColumn.aem-GridColumn--default--2 {
  float: left;
  clear: none;
  width: 33.33333333%;
}
.aem-Grid.aem-Grid--6 > .aem-GridColumn.aem-GridColumn--default--3 {
  float: left;
  clear: none;
  width: 50%;
}
.aem-Grid.aem-Grid--6 > .aem-GridColumn.aem-GridColumn--default--4 {
  float: left;
  clear: none;
  width: 66.66666667%;
}
.aem-Grid.aem-Grid--6 > .aem-GridColumn.aem-GridColumn--default--5 {
  float: left;
  clear: none;
  width: 83.33333333%;
}
.aem-Grid.aem-Grid--6 > .aem-GridColumn.aem-GridColumn--default--6 {
  float: left;
  clear: none;
  width: 100%;
}
.aem-Grid.aem-Grid--6 > .aem-GridColumn.aem-GridColumn--offset--default--0 {
  margin-left: 0%;
}
.aem-Grid.aem-Grid--6 > .aem-GridColumn.aem-GridColumn--offset--default--1 {
  margin-left: 16.66666667%;
}
.aem-Grid.aem-Grid--6 > .aem-GridColumn.aem-GridColumn--offset--default--2 {
  margin-left: 33.33333333%;
}
.aem-Grid.aem-Grid--6 > .aem-GridColumn.aem-GridColumn--offset--default--3 {
  margin-left: 50%;
}
.aem-Grid.aem-Grid--6 > .aem-GridColumn.aem-GridColumn--offset--default--4 {
  margin-left: 66.66666667%;
}
.aem-Grid.aem-Grid--6 > .aem-GridColumn.aem-GridColumn--offset--default--5 {
  margin-left: 83.33333333%;
}
.aem-Grid.aem-Grid--6 > .aem-GridColumn.aem-GridColumn--offset--default--6 {
  margin-left: 100%;
}
.aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--default--1 {
  float: left;
  clear: none;
  width: 14.28571429%;
}
.aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--default--2 {
  float: left;
  clear: none;
  width: 28.57142857%;
}
.aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--default--3 {
  float: left;
  clear: none;
  width: 42.85714286%;
}
.aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--default--4 {
  float: left;
  clear: none;
  width: 57.14285714%;
}
.aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--default--5 {
  float: left;
  clear: none;
  width: 71.42857143%;
}
.aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--default--6 {
  float: left;
  clear: none;
  width: 85.71428571%;
}
.aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--default--7 {
  float: left;
  clear: none;
  width: 100%;
}
.aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--offset--default--0 {
  margin-left: 0%;
}
.aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--offset--default--1 {
  margin-left: 14.28571429%;
}
.aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--offset--default--2 {
  margin-left: 28.57142857%;
}
.aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--offset--default--3 {
  margin-left: 42.85714286%;
}
.aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--offset--default--4 {
  margin-left: 57.14285714%;
}
.aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--offset--default--5 {
  margin-left: 71.42857143%;
}
.aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--offset--default--6 {
  margin-left: 85.71428571%;
}
.aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--offset--default--7 {
  margin-left: 100%;
}
.aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--default--1 {
  float: left;
  clear: none;
  width: 12.5%;
}
.aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--default--2 {
  float: left;
  clear: none;
  width: 25%;
}
.aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--default--3 {
  float: left;
  clear: none;
  width: 37.5%;
}
.aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--default--4 {
  float: left;
  clear: none;
  width: 50%;
}
.aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--default--5 {
  float: left;
  clear: none;
  width: 62.5%;
}
.aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--default--6 {
  float: left;
  clear: none;
  width: 75%;
}
.aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--default--7 {
  float: left;
  clear: none;
  width: 87.5%;
}
.aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--default--8 {
  float: left;
  clear: none;
  width: 100%;
}
.aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--offset--default--0 {
  margin-left: 0%;
}
.aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--offset--default--1 {
  margin-left: 12.5%;
}
.aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--offset--default--2 {
  margin-left: 25%;
}
.aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--offset--default--3 {
  margin-left: 37.5%;
}
.aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--offset--default--4 {
  margin-left: 50%;
}
.aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--offset--default--5 {
  margin-left: 62.5%;
}
.aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--offset--default--6 {
  margin-left: 75%;
}
.aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--offset--default--7 {
  margin-left: 87.5%;
}
.aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--offset--default--8 {
  margin-left: 100%;
}
.aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--default--1 {
  float: left;
  clear: none;
  width: 11.11111111%;
}
.aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--default--2 {
  float: left;
  clear: none;
  width: 22.22222222%;
}
.aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--default--3 {
  float: left;
  clear: none;
  width: 33.33333333%;
}
.aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--default--4 {
  float: left;
  clear: none;
  width: 44.44444444%;
}
.aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--default--5 {
  float: left;
  clear: none;
  width: 55.55555556%;
}
.aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--default--6 {
  float: left;
  clear: none;
  width: 66.66666667%;
}
.aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--default--7 {
  float: left;
  clear: none;
  width: 77.77777778%;
}
.aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--default--8 {
  float: left;
  clear: none;
  width: 88.88888889%;
}
.aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--default--9 {
  float: left;
  clear: none;
  width: 100%;
}
.aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--offset--default--0 {
  margin-left: 0%;
}
.aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--offset--default--1 {
  margin-left: 11.11111111%;
}
.aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--offset--default--2 {
  margin-left: 22.22222222%;
}
.aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--offset--default--3 {
  margin-left: 33.33333333%;
}
.aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--offset--default--4 {
  margin-left: 44.44444444%;
}
.aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--offset--default--5 {
  margin-left: 55.55555556%;
}
.aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--offset--default--6 {
  margin-left: 66.66666667%;
}
.aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--offset--default--7 {
  margin-left: 77.77777778%;
}
.aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--offset--default--8 {
  margin-left: 88.88888889%;
}
.aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--offset--default--9 {
  margin-left: 100%;
}
.aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--default--1 {
  float: left;
  clear: none;
  width: 10%;
}
.aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--default--2 {
  float: left;
  clear: none;
  width: 20%;
}
.aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--default--3 {
  float: left;
  clear: none;
  width: 30%;
}
.aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--default--4 {
  float: left;
  clear: none;
  width: 40%;
}
.aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--default--5 {
  float: left;
  clear: none;
  width: 50%;
}
.aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--default--6 {
  float: left;
  clear: none;
  width: 60%;
}
.aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--default--7 {
  float: left;
  clear: none;
  width: 70%;
}
.aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--default--8 {
  float: left;
  clear: none;
  width: 80%;
}
.aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--default--9 {
  float: left;
  clear: none;
  width: 90%;
}
.aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--default--10 {
  float: left;
  clear: none;
  width: 100%;
}
.aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--offset--default--0 {
  margin-left: 0%;
}
.aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--offset--default--1 {
  margin-left: 10%;
}
.aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--offset--default--2 {
  margin-left: 20%;
}
.aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--offset--default--3 {
  margin-left: 30%;
}
.aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--offset--default--4 {
  margin-left: 40%;
}
.aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--offset--default--5 {
  margin-left: 50%;
}
.aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--offset--default--6 {
  margin-left: 60%;
}
.aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--offset--default--7 {
  margin-left: 70%;
}
.aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--offset--default--8 {
  margin-left: 80%;
}
.aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--offset--default--9 {
  margin-left: 90%;
}
.aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--offset--default--10 {
  margin-left: 100%;
}
.aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--default--1 {
  float: left;
  clear: none;
  width: 9.09090909%;
}
.aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--default--2 {
  float: left;
  clear: none;
  width: 18.18181818%;
}
.aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--default--3 {
  float: left;
  clear: none;
  width: 27.27272727%;
}
.aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--default--4 {
  float: left;
  clear: none;
  width: 36.36363636%;
}
.aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--default--5 {
  float: left;
  clear: none;
  width: 45.45454545%;
}
.aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--default--6 {
  float: left;
  clear: none;
  width: 54.54545455%;
}
.aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--default--7 {
  float: left;
  clear: none;
  width: 63.63636364%;
}
.aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--default--8 {
  float: left;
  clear: none;
  width: 72.72727273%;
}
.aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--default--9 {
  float: left;
  clear: none;
  width: 81.81818182%;
}
.aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--default--10 {
  float: left;
  clear: none;
  width: 90.90909091%;
}
.aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--default--11 {
  float: left;
  clear: none;
  width: 100%;
}
.aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--offset--default--0 {
  margin-left: 0%;
}
.aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--offset--default--1 {
  margin-left: 9.09090909%;
}
.aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--offset--default--2 {
  margin-left: 18.18181818%;
}
.aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--offset--default--3 {
  margin-left: 27.27272727%;
}
.aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--offset--default--4 {
  margin-left: 36.36363636%;
}
.aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--offset--default--5 {
  margin-left: 45.45454545%;
}
.aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--offset--default--6 {
  margin-left: 54.54545455%;
}
.aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--offset--default--7 {
  margin-left: 63.63636364%;
}
.aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--offset--default--8 {
  margin-left: 72.72727273%;
}
.aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--offset--default--9 {
  margin-left: 81.81818182%;
}
.aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--offset--default--10 {
  margin-left: 90.90909091%;
}
.aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--offset--default--11 {
  margin-left: 100%;
}
.aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--default--1 {
  float: left;
  clear: none;
  width: 8.33333333%;
}
.aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--default--2 {
  float: left;
  clear: none;
  width: 16.66666667%;
}
.aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--default--3 {
  float: left;
  clear: none;
  width: 25%;
}
.aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--default--4 {
  float: left;
  clear: none;
  width: 33.33333333%;
}
.aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--default--5 {
  float: left;
  clear: none;
  width: 41.66666667%;
}
.aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--default--6 {
  float: left;
  clear: none;
  width: 50%;
}
.aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--default--7 {
  float: left;
  clear: none;
  width: 58.33333333%;
}
.aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--default--8 {
  float: left;
  clear: none;
  width: 66.66666667%;
}
.aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--default--9 {
  float: left;
  clear: none;
  width: 75%;
}
.aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--default--10 {
  float: left;
  clear: none;
  width: 83.33333333%;
}
.aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--default--11 {
  float: left;
  clear: none;
  width: 91.66666667%;
}
.aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--default--12 {
  float: left;
  clear: none;
  width: 100%;
}
.aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--offset--default--0 {
  margin-left: 0%;
}
.aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--offset--default--1 {
  margin-left: 8.33333333%;
}
.aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--offset--default--2 {
  margin-left: 16.66666667%;
}
.aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--offset--default--3 {
  margin-left: 25%;
}
.aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--offset--default--4 {
  margin-left: 33.33333333%;
}
.aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--offset--default--5 {
  margin-left: 41.66666667%;
}
.aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--offset--default--6 {
  margin-left: 50%;
}
.aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--offset--default--7 {
  margin-left: 58.33333333%;
}
.aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--offset--default--8 {
  margin-left: 66.66666667%;
}
.aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--offset--default--9 {
  margin-left: 75%;
}
.aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--offset--default--10 {
  margin-left: 83.33333333%;
}
.aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--offset--default--11 {
  margin-left: 91.66666667%;
}
.aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--offset--default--12 {
  margin-left: 100%;
}
.aem-Grid.aem-Grid--default--1 > .aem-GridColumn.aem-GridColumn--default--1 {
  float: left;
  clear: none;
  width: 100%;
}
.aem-Grid.aem-Grid--default--1 > .aem-GridColumn.aem-GridColumn--offset--default--0 {
  margin-left: 0%;
}
.aem-Grid.aem-Grid--default--1 > .aem-GridColumn.aem-GridColumn--offset--default--1 {
  margin-left: 100%;
}
.aem-Grid.aem-Grid--default--2 > .aem-GridColumn.aem-GridColumn--default--1 {
  float: left;
  clear: none;
  width: 50%;
}
.aem-Grid.aem-Grid--default--2 > .aem-GridColumn.aem-GridColumn--default--2 {
  float: left;
  clear: none;
  width: 100%;
}
.aem-Grid.aem-Grid--default--2 > .aem-GridColumn.aem-GridColumn--offset--default--0 {
  margin-left: 0%;
}
.aem-Grid.aem-Grid--default--2 > .aem-GridColumn.aem-GridColumn--offset--default--1 {
  margin-left: 50%;
}
.aem-Grid.aem-Grid--default--2 > .aem-GridColumn.aem-GridColumn--offset--default--2 {
  margin-left: 100%;
}
.aem-Grid.aem-Grid--default--3 > .aem-GridColumn.aem-GridColumn--default--1 {
  float: left;
  clear: none;
  width: 33.33333333%;
}
.aem-Grid.aem-Grid--default--3 > .aem-GridColumn.aem-GridColumn--default--2 {
  float: left;
  clear: none;
  width: 66.66666667%;
}
.aem-Grid.aem-Grid--default--3 > .aem-GridColumn.aem-GridColumn--default--3 {
  float: left;
  clear: none;
  width: 100%;
}
.aem-Grid.aem-Grid--default--3 > .aem-GridColumn.aem-GridColumn--offset--default--0 {
  margin-left: 0%;
}
.aem-Grid.aem-Grid--default--3 > .aem-GridColumn.aem-GridColumn--offset--default--1 {
  margin-left: 33.33333333%;
}
.aem-Grid.aem-Grid--default--3 > .aem-GridColumn.aem-GridColumn--offset--default--2 {
  margin-left: 66.66666667%;
}
.aem-Grid.aem-Grid--default--3 > .aem-GridColumn.aem-GridColumn--offset--default--3 {
  margin-left: 100%;
}
.aem-Grid.aem-Grid--default--4 > .aem-GridColumn.aem-GridColumn--default--1 {
  float: left;
  clear: none;
  width: 25%;
}
.aem-Grid.aem-Grid--default--4 > .aem-GridColumn.aem-GridColumn--default--2 {
  float: left;
  clear: none;
  width: 50%;
}
.aem-Grid.aem-Grid--default--4 > .aem-GridColumn.aem-GridColumn--default--3 {
  float: left;
  clear: none;
  width: 75%;
}
.aem-Grid.aem-Grid--default--4 > .aem-GridColumn.aem-GridColumn--default--4 {
  float: left;
  clear: none;
  width: 100%;
}
.aem-Grid.aem-Grid--default--4 > .aem-GridColumn.aem-GridColumn--offset--default--0 {
  margin-left: 0%;
}
.aem-Grid.aem-Grid--default--4 > .aem-GridColumn.aem-GridColumn--offset--default--1 {
  margin-left: 25%;
}
.aem-Grid.aem-Grid--default--4 > .aem-GridColumn.aem-GridColumn--offset--default--2 {
  margin-left: 50%;
}
.aem-Grid.aem-Grid--default--4 > .aem-GridColumn.aem-GridColumn--offset--default--3 {
  margin-left: 75%;
}
.aem-Grid.aem-Grid--default--4 > .aem-GridColumn.aem-GridColumn--offset--default--4 {
  margin-left: 100%;
}
.aem-Grid.aem-Grid--default--5 > .aem-GridColumn.aem-GridColumn--default--1 {
  float: left;
  clear: none;
  width: 20%;
}
.aem-Grid.aem-Grid--default--5 > .aem-GridColumn.aem-GridColumn--default--2 {
  float: left;
  clear: none;
  width: 40%;
}
.aem-Grid.aem-Grid--default--5 > .aem-GridColumn.aem-GridColumn--default--3 {
  float: left;
  clear: none;
  width: 60%;
}
.aem-Grid.aem-Grid--default--5 > .aem-GridColumn.aem-GridColumn--default--4 {
  float: left;
  clear: none;
  width: 80%;
}
.aem-Grid.aem-Grid--default--5 > .aem-GridColumn.aem-GridColumn--default--5 {
  float: left;
  clear: none;
  width: 100%;
}
.aem-Grid.aem-Grid--default--5 > .aem-GridColumn.aem-GridColumn--offset--default--0 {
  margin-left: 0%;
}
.aem-Grid.aem-Grid--default--5 > .aem-GridColumn.aem-GridColumn--offset--default--1 {
  margin-left: 20%;
}
.aem-Grid.aem-Grid--default--5 > .aem-GridColumn.aem-GridColumn--offset--default--2 {
  margin-left: 40%;
}
.aem-Grid.aem-Grid--default--5 > .aem-GridColumn.aem-GridColumn--offset--default--3 {
  margin-left: 60%;
}
.aem-Grid.aem-Grid--default--5 > .aem-GridColumn.aem-GridColumn--offset--default--4 {
  margin-left: 80%;
}
.aem-Grid.aem-Grid--default--5 > .aem-GridColumn.aem-GridColumn--offset--default--5 {
  margin-left: 100%;
}
.aem-Grid.aem-Grid--default--6 > .aem-GridColumn.aem-GridColumn--default--1 {
  float: left;
  clear: none;
  width: 16.66666667%;
}
.aem-Grid.aem-Grid--default--6 > .aem-GridColumn.aem-GridColumn--default--2 {
  float: left;
  clear: none;
  width: 33.33333333%;
}
.aem-Grid.aem-Grid--default--6 > .aem-GridColumn.aem-GridColumn--default--3 {
  float: left;
  clear: none;
  width: 50%;
}
.aem-Grid.aem-Grid--default--6 > .aem-GridColumn.aem-GridColumn--default--4 {
  float: left;
  clear: none;
  width: 66.66666667%;
}
.aem-Grid.aem-Grid--default--6 > .aem-GridColumn.aem-GridColumn--default--5 {
  float: left;
  clear: none;
  width: 83.33333333%;
}
.aem-Grid.aem-Grid--default--6 > .aem-GridColumn.aem-GridColumn--default--6 {
  float: left;
  clear: none;
  width: 100%;
}
.aem-Grid.aem-Grid--default--6 > .aem-GridColumn.aem-GridColumn--offset--default--0 {
  margin-left: 0%;
}
.aem-Grid.aem-Grid--default--6 > .aem-GridColumn.aem-GridColumn--offset--default--1 {
  margin-left: 16.66666667%;
}
.aem-Grid.aem-Grid--default--6 > .aem-GridColumn.aem-GridColumn--offset--default--2 {
  margin-left: 33.33333333%;
}
.aem-Grid.aem-Grid--default--6 > .aem-GridColumn.aem-GridColumn--offset--default--3 {
  margin-left: 50%;
}
.aem-Grid.aem-Grid--default--6 > .aem-GridColumn.aem-GridColumn--offset--default--4 {
  margin-left: 66.66666667%;
}
.aem-Grid.aem-Grid--default--6 > .aem-GridColumn.aem-GridColumn--offset--default--5 {
  margin-left: 83.33333333%;
}
.aem-Grid.aem-Grid--default--6 > .aem-GridColumn.aem-GridColumn--offset--default--6 {
  margin-left: 100%;
}
.aem-Grid.aem-Grid--default--7 > .aem-GridColumn.aem-GridColumn--default--1 {
  float: left;
  clear: none;
  width: 14.28571429%;
}
.aem-Grid.aem-Grid--default--7 > .aem-GridColumn.aem-GridColumn--default--2 {
  float: left;
  clear: none;
  width: 28.57142857%;
}
.aem-Grid.aem-Grid--default--7 > .aem-GridColumn.aem-GridColumn--default--3 {
  float: left;
  clear: none;
  width: 42.85714286%;
}
.aem-Grid.aem-Grid--default--7 > .aem-GridColumn.aem-GridColumn--default--4 {
  float: left;
  clear: none;
  width: 57.14285714%;
}
.aem-Grid.aem-Grid--default--7 > .aem-GridColumn.aem-GridColumn--default--5 {
  float: left;
  clear: none;
  width: 71.42857143%;
}
.aem-Grid.aem-Grid--default--7 > .aem-GridColumn.aem-GridColumn--default--6 {
  float: left;
  clear: none;
  width: 85.71428571%;
}
.aem-Grid.aem-Grid--default--7 > .aem-GridColumn.aem-GridColumn--default--7 {
  float: left;
  clear: none;
  width: 100%;
}
.aem-Grid.aem-Grid--default--7 > .aem-GridColumn.aem-GridColumn--offset--default--0 {
  margin-left: 0%;
}
.aem-Grid.aem-Grid--default--7 > .aem-GridColumn.aem-GridColumn--offset--default--1 {
  margin-left: 14.28571429%;
}
.aem-Grid.aem-Grid--default--7 > .aem-GridColumn.aem-GridColumn--offset--default--2 {
  margin-left: 28.57142857%;
}
.aem-Grid.aem-Grid--default--7 > .aem-GridColumn.aem-GridColumn--offset--default--3 {
  margin-left: 42.85714286%;
}
.aem-Grid.aem-Grid--default--7 > .aem-GridColumn.aem-GridColumn--offset--default--4 {
  margin-left: 57.14285714%;
}
.aem-Grid.aem-Grid--default--7 > .aem-GridColumn.aem-GridColumn--offset--default--5 {
  margin-left: 71.42857143%;
}
.aem-Grid.aem-Grid--default--7 > .aem-GridColumn.aem-GridColumn--offset--default--6 {
  margin-left: 85.71428571%;
}
.aem-Grid.aem-Grid--default--7 > .aem-GridColumn.aem-GridColumn--offset--default--7 {
  margin-left: 100%;
}
.aem-Grid.aem-Grid--default--8 > .aem-GridColumn.aem-GridColumn--default--1 {
  float: left;
  clear: none;
  width: 12.5%;
}
.aem-Grid.aem-Grid--default--8 > .aem-GridColumn.aem-GridColumn--default--2 {
  float: left;
  clear: none;
  width: 25%;
}
.aem-Grid.aem-Grid--default--8 > .aem-GridColumn.aem-GridColumn--default--3 {
  float: left;
  clear: none;
  width: 37.5%;
}
.aem-Grid.aem-Grid--default--8 > .aem-GridColumn.aem-GridColumn--default--4 {
  float: left;
  clear: none;
  width: 50%;
}
.aem-Grid.aem-Grid--default--8 > .aem-GridColumn.aem-GridColumn--default--5 {
  float: left;
  clear: none;
  width: 62.5%;
}
.aem-Grid.aem-Grid--default--8 > .aem-GridColumn.aem-GridColumn--default--6 {
  float: left;
  clear: none;
  width: 75%;
}
.aem-Grid.aem-Grid--default--8 > .aem-GridColumn.aem-GridColumn--default--7 {
  float: left;
  clear: none;
  width: 87.5%;
}
.aem-Grid.aem-Grid--default--8 > .aem-GridColumn.aem-GridColumn--default--8 {
  float: left;
  clear: none;
  width: 100%;
}
.aem-Grid.aem-Grid--default--8 > .aem-GridColumn.aem-GridColumn--offset--default--0 {
  margin-left: 0%;
}
.aem-Grid.aem-Grid--default--8 > .aem-GridColumn.aem-GridColumn--offset--default--1 {
  margin-left: 12.5%;
}
.aem-Grid.aem-Grid--default--8 > .aem-GridColumn.aem-GridColumn--offset--default--2 {
  margin-left: 25%;
}
.aem-Grid.aem-Grid--default--8 > .aem-GridColumn.aem-GridColumn--offset--default--3 {
  margin-left: 37.5%;
}
.aem-Grid.aem-Grid--default--8 > .aem-GridColumn.aem-GridColumn--offset--default--4 {
  margin-left: 50%;
}
.aem-Grid.aem-Grid--default--8 > .aem-GridColumn.aem-GridColumn--offset--default--5 {
  margin-left: 62.5%;
}
.aem-Grid.aem-Grid--default--8 > .aem-GridColumn.aem-GridColumn--offset--default--6 {
  margin-left: 75%;
}
.aem-Grid.aem-Grid--default--8 > .aem-GridColumn.aem-GridColumn--offset--default--7 {
  margin-left: 87.5%;
}
.aem-Grid.aem-Grid--default--8 > .aem-GridColumn.aem-GridColumn--offset--default--8 {
  margin-left: 100%;
}
.aem-Grid.aem-Grid--default--9 > .aem-GridColumn.aem-GridColumn--default--1 {
  float: left;
  clear: none;
  width: 11.11111111%;
}
.aem-Grid.aem-Grid--default--9 > .aem-GridColumn.aem-GridColumn--default--2 {
  float: left;
  clear: none;
  width: 22.22222222%;
}
.aem-Grid.aem-Grid--default--9 > .aem-GridColumn.aem-GridColumn--default--3 {
  float: left;
  clear: none;
  width: 33.33333333%;
}
.aem-Grid.aem-Grid--default--9 > .aem-GridColumn.aem-GridColumn--default--4 {
  float: left;
  clear: none;
  width: 44.44444444%;
}
.aem-Grid.aem-Grid--default--9 > .aem-GridColumn.aem-GridColumn--default--5 {
  float: left;
  clear: none;
  width: 55.55555556%;
}
.aem-Grid.aem-Grid--default--9 > .aem-GridColumn.aem-GridColumn--default--6 {
  float: left;
  clear: none;
  width: 66.66666667%;
}
.aem-Grid.aem-Grid--default--9 > .aem-GridColumn.aem-GridColumn--default--7 {
  float: left;
  clear: none;
  width: 77.77777778%;
}
.aem-Grid.aem-Grid--default--9 > .aem-GridColumn.aem-GridColumn--default--8 {
  float: left;
  clear: none;
  width: 88.88888889%;
}
.aem-Grid.aem-Grid--default--9 > .aem-GridColumn.aem-GridColumn--default--9 {
  float: left;
  clear: none;
  width: 100%;
}
.aem-Grid.aem-Grid--default--9 > .aem-GridColumn.aem-GridColumn--offset--default--0 {
  margin-left: 0%;
}
.aem-Grid.aem-Grid--default--9 > .aem-GridColumn.aem-GridColumn--offset--default--1 {
  margin-left: 11.11111111%;
}
.aem-Grid.aem-Grid--default--9 > .aem-GridColumn.aem-GridColumn--offset--default--2 {
  margin-left: 22.22222222%;
}
.aem-Grid.aem-Grid--default--9 > .aem-GridColumn.aem-GridColumn--offset--default--3 {
  margin-left: 33.33333333%;
}
.aem-Grid.aem-Grid--default--9 > .aem-GridColumn.aem-GridColumn--offset--default--4 {
  margin-left: 44.44444444%;
}
.aem-Grid.aem-Grid--default--9 > .aem-GridColumn.aem-GridColumn--offset--default--5 {
  margin-left: 55.55555556%;
}
.aem-Grid.aem-Grid--default--9 > .aem-GridColumn.aem-GridColumn--offset--default--6 {
  margin-left: 66.66666667%;
}
.aem-Grid.aem-Grid--default--9 > .aem-GridColumn.aem-GridColumn--offset--default--7 {
  margin-left: 77.77777778%;
}
.aem-Grid.aem-Grid--default--9 > .aem-GridColumn.aem-GridColumn--offset--default--8 {
  margin-left: 88.88888889%;
}
.aem-Grid.aem-Grid--default--9 > .aem-GridColumn.aem-GridColumn--offset--default--9 {
  margin-left: 100%;
}
.aem-Grid.aem-Grid--default--10 > .aem-GridColumn.aem-GridColumn--default--1 {
  float: left;
  clear: none;
  width: 10%;
}
.aem-Grid.aem-Grid--default--10 > .aem-GridColumn.aem-GridColumn--default--2 {
  float: left;
  clear: none;
  width: 20%;
}
.aem-Grid.aem-Grid--default--10 > .aem-GridColumn.aem-GridColumn--default--3 {
  float: left;
  clear: none;
  width: 30%;
}
.aem-Grid.aem-Grid--default--10 > .aem-GridColumn.aem-GridColumn--default--4 {
  float: left;
  clear: none;
  width: 40%;
}
.aem-Grid.aem-Grid--default--10 > .aem-GridColumn.aem-GridColumn--default--5 {
  float: left;
  clear: none;
  width: 50%;
}
.aem-Grid.aem-Grid--default--10 > .aem-GridColumn.aem-GridColumn--default--6 {
  float: left;
  clear: none;
  width: 60%;
}
.aem-Grid.aem-Grid--default--10 > .aem-GridColumn.aem-GridColumn--default--7 {
  float: left;
  clear: none;
  width: 70%;
}
.aem-Grid.aem-Grid--default--10 > .aem-GridColumn.aem-GridColumn--default--8 {
  float: left;
  clear: none;
  width: 80%;
}
.aem-Grid.aem-Grid--default--10 > .aem-GridColumn.aem-GridColumn--default--9 {
  float: left;
  clear: none;
  width: 90%;
}
.aem-Grid.aem-Grid--default--10 > .aem-GridColumn.aem-GridColumn--default--10 {
  float: left;
  clear: none;
  width: 100%;
}
.aem-Grid.aem-Grid--default--10 > .aem-GridColumn.aem-GridColumn--offset--default--0 {
  margin-left: 0%;
}
.aem-Grid.aem-Grid--default--10 > .aem-GridColumn.aem-GridColumn--offset--default--1 {
  margin-left: 10%;
}
.aem-Grid.aem-Grid--default--10 > .aem-GridColumn.aem-GridColumn--offset--default--2 {
  margin-left: 20%;
}
.aem-Grid.aem-Grid--default--10 > .aem-GridColumn.aem-GridColumn--offset--default--3 {
  margin-left: 30%;
}
.aem-Grid.aem-Grid--default--10 > .aem-GridColumn.aem-GridColumn--offset--default--4 {
  margin-left: 40%;
}
.aem-Grid.aem-Grid--default--10 > .aem-GridColumn.aem-GridColumn--offset--default--5 {
  margin-left: 50%;
}
.aem-Grid.aem-Grid--default--10 > .aem-GridColumn.aem-GridColumn--offset--default--6 {
  margin-left: 60%;
}
.aem-Grid.aem-Grid--default--10 > .aem-GridColumn.aem-GridColumn--offset--default--7 {
  margin-left: 70%;
}
.aem-Grid.aem-Grid--default--10 > .aem-GridColumn.aem-GridColumn--offset--default--8 {
  margin-left: 80%;
}
.aem-Grid.aem-Grid--default--10 > .aem-GridColumn.aem-GridColumn--offset--default--9 {
  margin-left: 90%;
}
.aem-Grid.aem-Grid--default--10 > .aem-GridColumn.aem-GridColumn--offset--default--10 {
  margin-left: 100%;
}
.aem-Grid.aem-Grid--default--11 > .aem-GridColumn.aem-GridColumn--default--1 {
  float: left;
  clear: none;
  width: 9.09090909%;
}
.aem-Grid.aem-Grid--default--11 > .aem-GridColumn.aem-GridColumn--default--2 {
  float: left;
  clear: none;
  width: 18.18181818%;
}
.aem-Grid.aem-Grid--default--11 > .aem-GridColumn.aem-GridColumn--default--3 {
  float: left;
  clear: none;
  width: 27.27272727%;
}
.aem-Grid.aem-Grid--default--11 > .aem-GridColumn.aem-GridColumn--default--4 {
  float: left;
  clear: none;
  width: 36.36363636%;
}
.aem-Grid.aem-Grid--default--11 > .aem-GridColumn.aem-GridColumn--default--5 {
  float: left;
  clear: none;
  width: 45.45454545%;
}
.aem-Grid.aem-Grid--default--11 > .aem-GridColumn.aem-GridColumn--default--6 {
  float: left;
  clear: none;
  width: 54.54545455%;
}
.aem-Grid.aem-Grid--default--11 > .aem-GridColumn.aem-GridColumn--default--7 {
  float: left;
  clear: none;
  width: 63.63636364%;
}
.aem-Grid.aem-Grid--default--11 > .aem-GridColumn.aem-GridColumn--default--8 {
  float: left;
  clear: none;
  width: 72.72727273%;
}
.aem-Grid.aem-Grid--default--11 > .aem-GridColumn.aem-GridColumn--default--9 {
  float: left;
  clear: none;
  width: 81.81818182%;
}
.aem-Grid.aem-Grid--default--11 > .aem-GridColumn.aem-GridColumn--default--10 {
  float: left;
  clear: none;
  width: 90.90909091%;
}
.aem-Grid.aem-Grid--default--11 > .aem-GridColumn.aem-GridColumn--default--11 {
  float: left;
  clear: none;
  width: 100%;
}
.aem-Grid.aem-Grid--default--11 > .aem-GridColumn.aem-GridColumn--offset--default--0 {
  margin-left: 0%;
}
.aem-Grid.aem-Grid--default--11 > .aem-GridColumn.aem-GridColumn--offset--default--1 {
  margin-left: 9.09090909%;
}
.aem-Grid.aem-Grid--default--11 > .aem-GridColumn.aem-GridColumn--offset--default--2 {
  margin-left: 18.18181818%;
}
.aem-Grid.aem-Grid--default--11 > .aem-GridColumn.aem-GridColumn--offset--default--3 {
  margin-left: 27.27272727%;
}
.aem-Grid.aem-Grid--default--11 > .aem-GridColumn.aem-GridColumn--offset--default--4 {
  margin-left: 36.36363636%;
}
.aem-Grid.aem-Grid--default--11 > .aem-GridColumn.aem-GridColumn--offset--default--5 {
  margin-left: 45.45454545%;
}
.aem-Grid.aem-Grid--default--11 > .aem-GridColumn.aem-GridColumn--offset--default--6 {
  margin-left: 54.54545455%;
}
.aem-Grid.aem-Grid--default--11 > .aem-GridColumn.aem-GridColumn--offset--default--7 {
  margin-left: 63.63636364%;
}
.aem-Grid.aem-Grid--default--11 > .aem-GridColumn.aem-GridColumn--offset--default--8 {
  margin-left: 72.72727273%;
}
.aem-Grid.aem-Grid--default--11 > .aem-GridColumn.aem-GridColumn--offset--default--9 {
  margin-left: 81.81818182%;
}
.aem-Grid.aem-Grid--default--11 > .aem-GridColumn.aem-GridColumn--offset--default--10 {
  margin-left: 90.90909091%;
}
.aem-Grid.aem-Grid--default--11 > .aem-GridColumn.aem-GridColumn--offset--default--11 {
  margin-left: 100%;
}
.aem-Grid.aem-Grid--default--12 > .aem-GridColumn.aem-GridColumn--default--1 {
  float: left;
  clear: none;
  width: 8.33333333%;
}
.aem-Grid.aem-Grid--default--12 > .aem-GridColumn.aem-GridColumn--default--2 {
  float: left;
  clear: none;
  width: 16.66666667%;
}
.aem-Grid.aem-Grid--default--12 > .aem-GridColumn.aem-GridColumn--default--3 {
  float: left;
  clear: none;
  width: 25%;
}
.aem-Grid.aem-Grid--default--12 > .aem-GridColumn.aem-GridColumn--default--4 {
  float: left;
  clear: none;
  width: 33.33333333%;
}
.aem-Grid.aem-Grid--default--12 > .aem-GridColumn.aem-GridColumn--default--5 {
  float: left;
  clear: none;
  width: 41.66666667%;
}
.aem-Grid.aem-Grid--default--12 > .aem-GridColumn.aem-GridColumn--default--6 {
  float: left;
  clear: none;
  width: 50%;
}
.aem-Grid.aem-Grid--default--12 > .aem-GridColumn.aem-GridColumn--default--7 {
  float: left;
  clear: none;
  width: 58.33333333%;
}
.aem-Grid.aem-Grid--default--12 > .aem-GridColumn.aem-GridColumn--default--8 {
  float: left;
  clear: none;
  width: 66.66666667%;
}
.aem-Grid.aem-Grid--default--12 > .aem-GridColumn.aem-GridColumn--default--9 {
  float: left;
  clear: none;
  width: 75%;
}
.aem-Grid.aem-Grid--default--12 > .aem-GridColumn.aem-GridColumn--default--10 {
  float: left;
  clear: none;
  width: 83.33333333%;
}
.aem-Grid.aem-Grid--default--12 > .aem-GridColumn.aem-GridColumn--default--11 {
  float: left;
  clear: none;
  width: 91.66666667%;
}
.aem-Grid.aem-Grid--default--12 > .aem-GridColumn.aem-GridColumn--default--12 {
  float: left;
  clear: none;
  width: 100%;
}
.aem-Grid.aem-Grid--default--12 > .aem-GridColumn.aem-GridColumn--offset--default--0 {
  margin-left: 0%;
}
.aem-Grid.aem-Grid--default--12 > .aem-GridColumn.aem-GridColumn--offset--default--1 {
  margin-left: 8.33333333%;
}
.aem-Grid.aem-Grid--default--12 > .aem-GridColumn.aem-GridColumn--offset--default--2 {
  margin-left: 16.66666667%;
}
.aem-Grid.aem-Grid--default--12 > .aem-GridColumn.aem-GridColumn--offset--default--3 {
  margin-left: 25%;
}
.aem-Grid.aem-Grid--default--12 > .aem-GridColumn.aem-GridColumn--offset--default--4 {
  margin-left: 33.33333333%;
}
.aem-Grid.aem-Grid--default--12 > .aem-GridColumn.aem-GridColumn--offset--default--5 {
  margin-left: 41.66666667%;
}
.aem-Grid.aem-Grid--default--12 > .aem-GridColumn.aem-GridColumn--offset--default--6 {
  margin-left: 50%;
}
.aem-Grid.aem-Grid--default--12 > .aem-GridColumn.aem-GridColumn--offset--default--7 {
  margin-left: 58.33333333%;
}
.aem-Grid.aem-Grid--default--12 > .aem-GridColumn.aem-GridColumn--offset--default--8 {
  margin-left: 66.66666667%;
}
.aem-Grid.aem-Grid--default--12 > .aem-GridColumn.aem-GridColumn--offset--default--9 {
  margin-left: 75%;
}
.aem-Grid.aem-Grid--default--12 > .aem-GridColumn.aem-GridColumn--offset--default--10 {
  margin-left: 83.33333333%;
}
.aem-Grid.aem-Grid--default--12 > .aem-GridColumn.aem-GridColumn--offset--default--11 {
  margin-left: 91.66666667%;
}
.aem-Grid.aem-Grid--default--12 > .aem-GridColumn.aem-GridColumn--offset--default--12 {
  margin-left: 100%;
}
.aem-Grid > .aem-GridColumn.aem-GridColumn--default--newline {
  /* newline behavior */
  display: block;
  clear: both !important;
}
.aem-Grid > .aem-GridColumn.aem-GridColumn--default--none {
  /* none behavior */
  display: block;
  clear: none !important;
  float: left;
}
.aem-Grid > .aem-GridColumn.aem-GridColumn--default--hide {
  /* hide behavior */
  display: none;
}
/* phone breakpoint */
@media (max-width: 768px) {
  .aem-Grid.aem-Grid--1 > .aem-GridColumn.aem-GridColumn--phone--1 {
    float: left;
    clear: none;
    width: 100%;
  }
  .aem-Grid.aem-Grid--1 > .aem-GridColumn.aem-GridColumn--offset--phone--0 {
    margin-left: 0%;
  }
  .aem-Grid.aem-Grid--1 > .aem-GridColumn.aem-GridColumn--offset--phone--1 {
    margin-left: 100%;
  }
  .aem-Grid.aem-Grid--2 > .aem-GridColumn.aem-GridColumn--phone--1 {
    float: left;
    clear: none;
    width: 50%;
  }
  .aem-Grid.aem-Grid--2 > .aem-GridColumn.aem-GridColumn--phone--2 {
    float: left;
    clear: none;
    width: 100%;
  }
  .aem-Grid.aem-Grid--2 > .aem-GridColumn.aem-GridColumn--offset--phone--0 {
    margin-left: 0%;
  }
  .aem-Grid.aem-Grid--2 > .aem-GridColumn.aem-GridColumn--offset--phone--1 {
    margin-left: 50%;
  }
  .aem-Grid.aem-Grid--2 > .aem-GridColumn.aem-GridColumn--offset--phone--2 {
    margin-left: 100%;
  }
  .aem-Grid.aem-Grid--3 > .aem-GridColumn.aem-GridColumn--phone--1 {
    float: left;
    clear: none;
    width: 33.33333333%;
  }
  .aem-Grid.aem-Grid--3 > .aem-GridColumn.aem-GridColumn--phone--2 {
    float: left;
    clear: none;
    width: 66.66666667%;
  }
  .aem-Grid.aem-Grid--3 > .aem-GridColumn.aem-GridColumn--phone--3 {
    float: left;
    clear: none;
    width: 100%;
  }
  .aem-Grid.aem-Grid--3 > .aem-GridColumn.aem-GridColumn--offset--phone--0 {
    margin-left: 0%;
  }
  .aem-Grid.aem-Grid--3 > .aem-GridColumn.aem-GridColumn--offset--phone--1 {
    margin-left: 33.33333333%;
  }
  .aem-Grid.aem-Grid--3 > .aem-GridColumn.aem-GridColumn--offset--phone--2 {
    margin-left: 66.66666667%;
  }
  .aem-Grid.aem-Grid--3 > .aem-GridColumn.aem-GridColumn--offset--phone--3 {
    margin-left: 100%;
  }
  .aem-Grid.aem-Grid--4 > .aem-GridColumn.aem-GridColumn--phone--1 {
    float: left;
    clear: none;
    width: 25%;
  }
  .aem-Grid.aem-Grid--4 > .aem-GridColumn.aem-GridColumn--phone--2 {
    float: left;
    clear: none;
    width: 50%;
  }
  .aem-Grid.aem-Grid--4 > .aem-GridColumn.aem-GridColumn--phone--3 {
    float: left;
    clear: none;
    width: 75%;
  }
  .aem-Grid.aem-Grid--4 > .aem-GridColumn.aem-GridColumn--phone--4 {
    float: left;
    clear: none;
    width: 100%;
  }
  .aem-Grid.aem-Grid--4 > .aem-GridColumn.aem-GridColumn--offset--phone--0 {
    margin-left: 0%;
  }
  .aem-Grid.aem-Grid--4 > .aem-GridColumn.aem-GridColumn--offset--phone--1 {
    margin-left: 25%;
  }
  .aem-Grid.aem-Grid--4 > .aem-GridColumn.aem-GridColumn--offset--phone--2 {
    margin-left: 50%;
  }
  .aem-Grid.aem-Grid--4 > .aem-GridColumn.aem-GridColumn--offset--phone--3 {
    margin-left: 75%;
  }
  .aem-Grid.aem-Grid--4 > .aem-GridColumn.aem-GridColumn--offset--phone--4 {
    margin-left: 100%;
  }
  .aem-Grid.aem-Grid--5 > .aem-GridColumn.aem-GridColumn--phone--1 {
    float: left;
    clear: none;
    width: 20%;
  }
  .aem-Grid.aem-Grid--5 > .aem-GridColumn.aem-GridColumn--phone--2 {
    float: left;
    clear: none;
    width: 40%;
  }
  .aem-Grid.aem-Grid--5 > .aem-GridColumn.aem-GridColumn--phone--3 {
    float: left;
    clear: none;
    width: 60%;
  }
  .aem-Grid.aem-Grid--5 > .aem-GridColumn.aem-GridColumn--phone--4 {
    float: left;
    clear: none;
    width: 80%;
  }
  .aem-Grid.aem-Grid--5 > .aem-GridColumn.aem-GridColumn--phone--5 {
    float: left;
    clear: none;
    width: 100%;
  }
  .aem-Grid.aem-Grid--5 > .aem-GridColumn.aem-GridColumn--offset--phone--0 {
    margin-left: 0%;
  }
  .aem-Grid.aem-Grid--5 > .aem-GridColumn.aem-GridColumn--offset--phone--1 {
    margin-left: 20%;
  }
  .aem-Grid.aem-Grid--5 > .aem-GridColumn.aem-GridColumn--offset--phone--2 {
    margin-left: 40%;
  }
  .aem-Grid.aem-Grid--5 > .aem-GridColumn.aem-GridColumn--offset--phone--3 {
    margin-left: 60%;
  }
  .aem-Grid.aem-Grid--5 > .aem-GridColumn.aem-GridColumn--offset--phone--4 {
    margin-left: 80%;
  }
  .aem-Grid.aem-Grid--5 > .aem-GridColumn.aem-GridColumn--offset--phone--5 {
    margin-left: 100%;
  }
  .aem-Grid.aem-Grid--6 > .aem-GridColumn.aem-GridColumn--phone--1 {
    float: left;
    clear: none;
    width: 16.66666667%;
  }
  .aem-Grid.aem-Grid--6 > .aem-GridColumn.aem-GridColumn--phone--2 {
    float: left;
    clear: none;
    width: 33.33333333%;
  }
  .aem-Grid.aem-Grid--6 > .aem-GridColumn.aem-GridColumn--phone--3 {
    float: left;
    clear: none;
    width: 50%;
  }
  .aem-Grid.aem-Grid--6 > .aem-GridColumn.aem-GridColumn--phone--4 {
    float: left;
    clear: none;
    width: 66.66666667%;
  }
  .aem-Grid.aem-Grid--6 > .aem-GridColumn.aem-GridColumn--phone--5 {
    float: left;
    clear: none;
    width: 83.33333333%;
  }
  .aem-Grid.aem-Grid--6 > .aem-GridColumn.aem-GridColumn--phone--6 {
    float: left;
    clear: none;
    width: 100%;
  }
  .aem-Grid.aem-Grid--6 > .aem-GridColumn.aem-GridColumn--offset--phone--0 {
    margin-left: 0%;
  }
  .aem-Grid.aem-Grid--6 > .aem-GridColumn.aem-GridColumn--offset--phone--1 {
    margin-left: 16.66666667%;
  }
  .aem-Grid.aem-Grid--6 > .aem-GridColumn.aem-GridColumn--offset--phone--2 {
    margin-left: 33.33333333%;
  }
  .aem-Grid.aem-Grid--6 > .aem-GridColumn.aem-GridColumn--offset--phone--3 {
    margin-left: 50%;
  }
  .aem-Grid.aem-Grid--6 > .aem-GridColumn.aem-GridColumn--offset--phone--4 {
    margin-left: 66.66666667%;
  }
  .aem-Grid.aem-Grid--6 > .aem-GridColumn.aem-GridColumn--offset--phone--5 {
    margin-left: 83.33333333%;
  }
  .aem-Grid.aem-Grid--6 > .aem-GridColumn.aem-GridColumn--offset--phone--6 {
    margin-left: 100%;
  }
  .aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--phone--1 {
    float: left;
    clear: none;
    width: 14.28571429%;
  }
  .aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--phone--2 {
    float: left;
    clear: none;
    width: 28.57142857%;
  }
  .aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--phone--3 {
    float: left;
    clear: none;
    width: 42.85714286%;
  }
  .aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--phone--4 {
    float: left;
    clear: none;
    width: 57.14285714%;
  }
  .aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--phone--5 {
    float: left;
    clear: none;
    width: 71.42857143%;
  }
  .aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--phone--6 {
    float: left;
    clear: none;
    width: 85.71428571%;
  }
  .aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--phone--7 {
    float: left;
    clear: none;
    width: 100%;
  }
  .aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--offset--phone--0 {
    margin-left: 0%;
  }
  .aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--offset--phone--1 {
    margin-left: 14.28571429%;
  }
  .aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--offset--phone--2 {
    margin-left: 28.57142857%;
  }
  .aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--offset--phone--3 {
    margin-left: 42.85714286%;
  }
  .aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--offset--phone--4 {
    margin-left: 57.14285714%;
  }
  .aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--offset--phone--5 {
    margin-left: 71.42857143%;
  }
  .aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--offset--phone--6 {
    margin-left: 85.71428571%;
  }
  .aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--offset--phone--7 {
    margin-left: 100%;
  }
  .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--phone--1 {
    float: left;
    clear: none;
    width: 12.5%;
  }
  .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--phone--2 {
    float: left;
    clear: none;
    width: 25%;
  }
  .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--phone--3 {
    float: left;
    clear: none;
    width: 37.5%;
  }
  .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--phone--4 {
    float: left;
    clear: none;
    width: 50%;
  }
  .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--phone--5 {
    float: left;
    clear: none;
    width: 62.5%;
  }
  .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--phone--6 {
    float: left;
    clear: none;
    width: 75%;
  }
  .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--phone--7 {
    float: left;
    clear: none;
    width: 87.5%;
  }
  .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--phone--8 {
    float: left;
    clear: none;
    width: 100%;
  }
  .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--offset--phone--0 {
    margin-left: 0%;
  }
  .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--offset--phone--1 {
    margin-left: 12.5%;
  }
  .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--offset--phone--2 {
    margin-left: 25%;
  }
  .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--offset--phone--3 {
    margin-left: 37.5%;
  }
  .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--offset--phone--4 {
    margin-left: 50%;
  }
  .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--offset--phone--5 {
    margin-left: 62.5%;
  }
  .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--offset--phone--6 {
    margin-left: 75%;
  }
  .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--offset--phone--7 {
    margin-left: 87.5%;
  }
  .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--offset--phone--8 {
    margin-left: 100%;
  }
  .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--phone--1 {
    float: left;
    clear: none;
    width: 11.11111111%;
  }
  .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--phone--2 {
    float: left;
    clear: none;
    width: 22.22222222%;
  }
  .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--phone--3 {
    float: left;
    clear: none;
    width: 33.33333333%;
  }
  .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--phone--4 {
    float: left;
    clear: none;
    width: 44.44444444%;
  }
  .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--phone--5 {
    float: left;
    clear: none;
    width: 55.55555556%;
  }
  .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--phone--6 {
    float: left;
    clear: none;
    width: 66.66666667%;
  }
  .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--phone--7 {
    float: left;
    clear: none;
    width: 77.77777778%;
  }
  .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--phone--8 {
    float: left;
    clear: none;
    width: 88.88888889%;
  }
  .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--phone--9 {
    float: left;
    clear: none;
    width: 100%;
  }
  .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--offset--phone--0 {
    margin-left: 0%;
  }
  .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--offset--phone--1 {
    margin-left: 11.11111111%;
  }
  .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--offset--phone--2 {
    margin-left: 22.22222222%;
  }
  .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--offset--phone--3 {
    margin-left: 33.33333333%;
  }
  .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--offset--phone--4 {
    margin-left: 44.44444444%;
  }
  .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--offset--phone--5 {
    margin-left: 55.55555556%;
  }
  .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--offset--phone--6 {
    margin-left: 66.66666667%;
  }
  .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--offset--phone--7 {
    margin-left: 77.77777778%;
  }
  .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--offset--phone--8 {
    margin-left: 88.88888889%;
  }
  .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--offset--phone--9 {
    margin-left: 100%;
  }
  .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--phone--1 {
    float: left;
    clear: none;
    width: 10%;
  }
  .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--phone--2 {
    float: left;
    clear: none;
    width: 20%;
  }
  .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--phone--3 {
    float: left;
    clear: none;
    width: 30%;
  }
  .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--phone--4 {
    float: left;
    clear: none;
    width: 40%;
  }
  .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--phone--5 {
    float: left;
    clear: none;
    width: 50%;
  }
  .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--phone--6 {
    float: left;
    clear: none;
    width: 60%;
  }
  .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--phone--7 {
    float: left;
    clear: none;
    width: 70%;
  }
  .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--phone--8 {
    float: left;
    clear: none;
    width: 80%;
  }
  .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--phone--9 {
    float: left;
    clear: none;
    width: 90%;
  }
  .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--phone--10 {
    float: left;
    clear: none;
    width: 100%;
  }
  .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--offset--phone--0 {
    margin-left: 0%;
  }
  .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--offset--phone--1 {
    margin-left: 10%;
  }
  .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--offset--phone--2 {
    margin-left: 20%;
  }
  .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--offset--phone--3 {
    margin-left: 30%;
  }
  .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--offset--phone--4 {
    margin-left: 40%;
  }
  .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--offset--phone--5 {
    margin-left: 50%;
  }
  .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--offset--phone--6 {
    margin-left: 60%;
  }
  .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--offset--phone--7 {
    margin-left: 70%;
  }
  .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--offset--phone--8 {
    margin-left: 80%;
  }
  .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--offset--phone--9 {
    margin-left: 90%;
  }
  .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--offset--phone--10 {
    margin-left: 100%;
  }
  .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--phone--1 {
    float: left;
    clear: none;
    width: 9.09090909%;
  }
  .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--phone--2 {
    float: left;
    clear: none;
    width: 18.18181818%;
  }
  .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--phone--3 {
    float: left;
    clear: none;
    width: 27.27272727%;
  }
  .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--phone--4 {
    float: left;
    clear: none;
    width: 36.36363636%;
  }
  .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--phone--5 {
    float: left;
    clear: none;
    width: 45.45454545%;
  }
  .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--phone--6 {
    float: left;
    clear: none;
    width: 54.54545455%;
  }
  .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--phone--7 {
    float: left;
    clear: none;
    width: 63.63636364%;
  }
  .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--phone--8 {
    float: left;
    clear: none;
    width: 72.72727273%;
  }
  .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--phone--9 {
    float: left;
    clear: none;
    width: 81.81818182%;
  }
  .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--phone--10 {
    float: left;
    clear: none;
    width: 90.90909091%;
  }
  .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--phone--11 {
    float: left;
    clear: none;
    width: 100%;
  }
  .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--offset--phone--0 {
    margin-left: 0%;
  }
  .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--offset--phone--1 {
    margin-left: 9.09090909%;
  }
  .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--offset--phone--2 {
    margin-left: 18.18181818%;
  }
  .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--offset--phone--3 {
    margin-left: 27.27272727%;
  }
  .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--offset--phone--4 {
    margin-left: 36.36363636%;
  }
  .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--offset--phone--5 {
    margin-left: 45.45454545%;
  }
  .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--offset--phone--6 {
    margin-left: 54.54545455%;
  }
  .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--offset--phone--7 {
    margin-left: 63.63636364%;
  }
  .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--offset--phone--8 {
    margin-left: 72.72727273%;
  }
  .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--offset--phone--9 {
    margin-left: 81.81818182%;
  }
  .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--offset--phone--10 {
    margin-left: 90.90909091%;
  }
  .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--offset--phone--11 {
    margin-left: 100%;
  }
  .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--phone--1 {
    float: left;
    clear: none;
    width: 8.33333333%;
  }
  .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--phone--2 {
    float: left;
    clear: none;
    width: 16.66666667%;
  }
  .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--phone--3 {
    float: left;
    clear: none;
    width: 25%;
  }
  .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--phone--4 {
    float: left;
    clear: none;
    width: 33.33333333%;
  }
  .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--phone--5 {
    float: left;
    clear: none;
    width: 41.66666667%;
  }
  .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--phone--6 {
    float: left;
    clear: none;
    width: 50%;
  }
  .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--phone--7 {
    float: left;
    clear: none;
    width: 58.33333333%;
  }
  .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--phone--8 {
    float: left;
    clear: none;
    width: 66.66666667%;
  }
  .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--phone--9 {
    float: left;
    clear: none;
    width: 75%;
  }
  .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--phone--10 {
    float: left;
    clear: none;
    width: 83.33333333%;
  }
  .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--phone--11 {
    float: left;
    clear: none;
    width: 91.66666667%;
  }
  .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--phone--12 {
    float: left;
    clear: none;
    width: 100%;
  }
  .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--offset--phone--0 {
    margin-left: 0%;
  }
  .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--offset--phone--1 {
    margin-left: 8.33333333%;
  }
  .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--offset--phone--2 {
    margin-left: 16.66666667%;
  }
  .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--offset--phone--3 {
    margin-left: 25%;
  }
  .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--offset--phone--4 {
    margin-left: 33.33333333%;
  }
  .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--offset--phone--5 {
    margin-left: 41.66666667%;
  }
  .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--offset--phone--6 {
    margin-left: 50%;
  }
  .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--offset--phone--7 {
    margin-left: 58.33333333%;
  }
  .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--offset--phone--8 {
    margin-left: 66.66666667%;
  }
  .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--offset--phone--9 {
    margin-left: 75%;
  }
  .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--offset--phone--10 {
    margin-left: 83.33333333%;
  }
  .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--offset--phone--11 {
    margin-left: 91.66666667%;
  }
  .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--offset--phone--12 {
    margin-left: 100%;
  }
  .aem-Grid.aem-Grid--phone--1 > .aem-GridColumn.aem-GridColumn--phone--1 {
    float: left;
    clear: none;
    width: 100%;
  }
  .aem-Grid.aem-Grid--phone--1 > .aem-GridColumn.aem-GridColumn--offset--phone--0 {
    margin-left: 0%;
  }
  .aem-Grid.aem-Grid--phone--1 > .aem-GridColumn.aem-GridColumn--offset--phone--1 {
    margin-left: 100%;
  }
  .aem-Grid.aem-Grid--phone--2 > .aem-GridColumn.aem-GridColumn--phone--1 {
    float: left;
    clear: none;
    width: 50%;
  }
  .aem-Grid.aem-Grid--phone--2 > .aem-GridColumn.aem-GridColumn--phone--2 {
    float: left;
    clear: none;
    width: 100%;
  }
  .aem-Grid.aem-Grid--phone--2 > .aem-GridColumn.aem-GridColumn--offset--phone--0 {
    margin-left: 0%;
  }
  .aem-Grid.aem-Grid--phone--2 > .aem-GridColumn.aem-GridColumn--offset--phone--1 {
    margin-left: 50%;
  }
  .aem-Grid.aem-Grid--phone--2 > .aem-GridColumn.aem-GridColumn--offset--phone--2 {
    margin-left: 100%;
  }
  .aem-Grid.aem-Grid--phone--3 > .aem-GridColumn.aem-GridColumn--phone--1 {
    float: left;
    clear: none;
    width: 33.33333333%;
  }
  .aem-Grid.aem-Grid--phone--3 > .aem-GridColumn.aem-GridColumn--phone--2 {
    float: left;
    clear: none;
    width: 66.66666667%;
  }
  .aem-Grid.aem-Grid--phone--3 > .aem-GridColumn.aem-GridColumn--phone--3 {
    float: left;
    clear: none;
    width: 100%;
  }
  .aem-Grid.aem-Grid--phone--3 > .aem-GridColumn.aem-GridColumn--offset--phone--0 {
    margin-left: 0%;
  }
  .aem-Grid.aem-Grid--phone--3 > .aem-GridColumn.aem-GridColumn--offset--phone--1 {
    margin-left: 33.33333333%;
  }
  .aem-Grid.aem-Grid--phone--3 > .aem-GridColumn.aem-GridColumn--offset--phone--2 {
    margin-left: 66.66666667%;
  }
  .aem-Grid.aem-Grid--phone--3 > .aem-GridColumn.aem-GridColumn--offset--phone--3 {
    margin-left: 100%;
  }
  .aem-Grid.aem-Grid--phone--4 > .aem-GridColumn.aem-GridColumn--phone--1 {
    float: left;
    clear: none;
    width: 25%;
  }
  .aem-Grid.aem-Grid--phone--4 > .aem-GridColumn.aem-GridColumn--phone--2 {
    float: left;
    clear: none;
    width: 50%;
  }
  .aem-Grid.aem-Grid--phone--4 > .aem-GridColumn.aem-GridColumn--phone--3 {
    float: left;
    clear: none;
    width: 75%;
  }
  .aem-Grid.aem-Grid--phone--4 > .aem-GridColumn.aem-GridColumn--phone--4 {
    float: left;
    clear: none;
    width: 100%;
  }
  .aem-Grid.aem-Grid--phone--4 > .aem-GridColumn.aem-GridColumn--offset--phone--0 {
    margin-left: 0%;
  }
  .aem-Grid.aem-Grid--phone--4 > .aem-GridColumn.aem-GridColumn--offset--phone--1 {
    margin-left: 25%;
  }
  .aem-Grid.aem-Grid--phone--4 > .aem-GridColumn.aem-GridColumn--offset--phone--2 {
    margin-left: 50%;
  }
  .aem-Grid.aem-Grid--phone--4 > .aem-GridColumn.aem-GridColumn--offset--phone--3 {
    margin-left: 75%;
  }
  .aem-Grid.aem-Grid--phone--4 > .aem-GridColumn.aem-GridColumn--offset--phone--4 {
    margin-left: 100%;
  }
  .aem-Grid.aem-Grid--phone--5 > .aem-GridColumn.aem-GridColumn--phone--1 {
    float: left;
    clear: none;
    width: 20%;
  }
  .aem-Grid.aem-Grid--phone--5 > .aem-GridColumn.aem-GridColumn--phone--2 {
    float: left;
    clear: none;
    width: 40%;
  }
  .aem-Grid.aem-Grid--phone--5 > .aem-GridColumn.aem-GridColumn--phone--3 {
    float: left;
    clear: none;
    width: 60%;
  }
  .aem-Grid.aem-Grid--phone--5 > .aem-GridColumn.aem-GridColumn--phone--4 {
    float: left;
    clear: none;
    width: 80%;
  }
  .aem-Grid.aem-Grid--phone--5 > .aem-GridColumn.aem-GridColumn--phone--5 {
    float: left;
    clear: none;
    width: 100%;
  }
  .aem-Grid.aem-Grid--phone--5 > .aem-GridColumn.aem-GridColumn--offset--phone--0 {
    margin-left: 0%;
  }
  .aem-Grid.aem-Grid--phone--5 > .aem-GridColumn.aem-GridColumn--offset--phone--1 {
    margin-left: 20%;
  }
  .aem-Grid.aem-Grid--phone--5 > .aem-GridColumn.aem-GridColumn--offset--phone--2 {
    margin-left: 40%;
  }
  .aem-Grid.aem-Grid--phone--5 > .aem-GridColumn.aem-GridColumn--offset--phone--3 {
    margin-left: 60%;
  }
  .aem-Grid.aem-Grid--phone--5 > .aem-GridColumn.aem-GridColumn--offset--phone--4 {
    margin-left: 80%;
  }
  .aem-Grid.aem-Grid--phone--5 > .aem-GridColumn.aem-GridColumn--offset--phone--5 {
    margin-left: 100%;
  }
  .aem-Grid.aem-Grid--phone--6 > .aem-GridColumn.aem-GridColumn--phone--1 {
    float: left;
    clear: none;
    width: 16.66666667%;
  }
  .aem-Grid.aem-Grid--phone--6 > .aem-GridColumn.aem-GridColumn--phone--2 {
    float: left;
    clear: none;
    width: 33.33333333%;
  }
  .aem-Grid.aem-Grid--phone--6 > .aem-GridColumn.aem-GridColumn--phone--3 {
    float: left;
    clear: none;
    width: 50%;
  }
  .aem-Grid.aem-Grid--phone--6 > .aem-GridColumn.aem-GridColumn--phone--4 {
    float: left;
    clear: none;
    width: 66.66666667%;
  }
  .aem-Grid.aem-Grid--phone--6 > .aem-GridColumn.aem-GridColumn--phone--5 {
    float: left;
    clear: none;
    width: 83.33333333%;
  }
  .aem-Grid.aem-Grid--phone--6 > .aem-GridColumn.aem-GridColumn--phone--6 {
    float: left;
    clear: none;
    width: 100%;
  }
  .aem-Grid.aem-Grid--phone--6 > .aem-GridColumn.aem-GridColumn--offset--phone--0 {
    margin-left: 0%;
  }
  .aem-Grid.aem-Grid--phone--6 > .aem-GridColumn.aem-GridColumn--offset--phone--1 {
    margin-left: 16.66666667%;
  }
  .aem-Grid.aem-Grid--phone--6 > .aem-GridColumn.aem-GridColumn--offset--phone--2 {
    margin-left: 33.33333333%;
  }
  .aem-Grid.aem-Grid--phone--6 > .aem-GridColumn.aem-GridColumn--offset--phone--3 {
    margin-left: 50%;
  }
  .aem-Grid.aem-Grid--phone--6 > .aem-GridColumn.aem-GridColumn--offset--phone--4 {
    margin-left: 66.66666667%;
  }
  .aem-Grid.aem-Grid--phone--6 > .aem-GridColumn.aem-GridColumn--offset--phone--5 {
    margin-left: 83.33333333%;
  }
  .aem-Grid.aem-Grid--phone--6 > .aem-GridColumn.aem-GridColumn--offset--phone--6 {
    margin-left: 100%;
  }
  .aem-Grid.aem-Grid--phone--7 > .aem-GridColumn.aem-GridColumn--phone--1 {
    float: left;
    clear: none;
    width: 14.28571429%;
  }
  .aem-Grid.aem-Grid--phone--7 > .aem-GridColumn.aem-GridColumn--phone--2 {
    float: left;
    clear: none;
    width: 28.57142857%;
  }
  .aem-Grid.aem-Grid--phone--7 > .aem-GridColumn.aem-GridColumn--phone--3 {
    float: left;
    clear: none;
    width: 42.85714286%;
  }
  .aem-Grid.aem-Grid--phone--7 > .aem-GridColumn.aem-GridColumn--phone--4 {
    float: left;
    clear: none;
    width: 57.14285714%;
  }
  .aem-Grid.aem-Grid--phone--7 > .aem-GridColumn.aem-GridColumn--phone--5 {
    float: left;
    clear: none;
    width: 71.42857143%;
  }
  .aem-Grid.aem-Grid--phone--7 > .aem-GridColumn.aem-GridColumn--phone--6 {
    float: left;
    clear: none;
    width: 85.71428571%;
  }
  .aem-Grid.aem-Grid--phone--7 > .aem-GridColumn.aem-GridColumn--phone--7 {
    float: left;
    clear: none;
    width: 100%;
  }
  .aem-Grid.aem-Grid--phone--7 > .aem-GridColumn.aem-GridColumn--offset--phone--0 {
    margin-left: 0%;
  }
  .aem-Grid.aem-Grid--phone--7 > .aem-GridColumn.aem-GridColumn--offset--phone--1 {
    margin-left: 14.28571429%;
  }
  .aem-Grid.aem-Grid--phone--7 > .aem-GridColumn.aem-GridColumn--offset--phone--2 {
    margin-left: 28.57142857%;
  }
  .aem-Grid.aem-Grid--phone--7 > .aem-GridColumn.aem-GridColumn--offset--phone--3 {
    margin-left: 42.85714286%;
  }
  .aem-Grid.aem-Grid--phone--7 > .aem-GridColumn.aem-GridColumn--offset--phone--4 {
    margin-left: 57.14285714%;
  }
  .aem-Grid.aem-Grid--phone--7 > .aem-GridColumn.aem-GridColumn--offset--phone--5 {
    margin-left: 71.42857143%;
  }
  .aem-Grid.aem-Grid--phone--7 > .aem-GridColumn.aem-GridColumn--offset--phone--6 {
    margin-left: 85.71428571%;
  }
  .aem-Grid.aem-Grid--phone--7 > .aem-GridColumn.aem-GridColumn--offset--phone--7 {
    margin-left: 100%;
  }
  .aem-Grid.aem-Grid--phone--8 > .aem-GridColumn.aem-GridColumn--phone--1 {
    float: left;
    clear: none;
    width: 12.5%;
  }
  .aem-Grid.aem-Grid--phone--8 > .aem-GridColumn.aem-GridColumn--phone--2 {
    float: left;
    clear: none;
    width: 25%;
  }
  .aem-Grid.aem-Grid--phone--8 > .aem-GridColumn.aem-GridColumn--phone--3 {
    float: left;
    clear: none;
    width: 37.5%;
  }
  .aem-Grid.aem-Grid--phone--8 > .aem-GridColumn.aem-GridColumn--phone--4 {
    float: left;
    clear: none;
    width: 50%;
  }
  .aem-Grid.aem-Grid--phone--8 > .aem-GridColumn.aem-GridColumn--phone--5 {
    float: left;
    clear: none;
    width: 62.5%;
  }
  .aem-Grid.aem-Grid--phone--8 > .aem-GridColumn.aem-GridColumn--phone--6 {
    float: left;
    clear: none;
    width: 75%;
  }
  .aem-Grid.aem-Grid--phone--8 > .aem-GridColumn.aem-GridColumn--phone--7 {
    float: left;
    clear: none;
    width: 87.5%;
  }
  .aem-Grid.aem-Grid--phone--8 > .aem-GridColumn.aem-GridColumn--phone--8 {
    float: left;
    clear: none;
    width: 100%;
  }
  .aem-Grid.aem-Grid--phone--8 > .aem-GridColumn.aem-GridColumn--offset--phone--0 {
    margin-left: 0%;
  }
  .aem-Grid.aem-Grid--phone--8 > .aem-GridColumn.aem-GridColumn--offset--phone--1 {
    margin-left: 12.5%;
  }
  .aem-Grid.aem-Grid--phone--8 > .aem-GridColumn.aem-GridColumn--offset--phone--2 {
    margin-left: 25%;
  }
  .aem-Grid.aem-Grid--phone--8 > .aem-GridColumn.aem-GridColumn--offset--phone--3 {
    margin-left: 37.5%;
  }
  .aem-Grid.aem-Grid--phone--8 > .aem-GridColumn.aem-GridColumn--offset--phone--4 {
    margin-left: 50%;
  }
  .aem-Grid.aem-Grid--phone--8 > .aem-GridColumn.aem-GridColumn--offset--phone--5 {
    margin-left: 62.5%;
  }
  .aem-Grid.aem-Grid--phone--8 > .aem-GridColumn.aem-GridColumn--offset--phone--6 {
    margin-left: 75%;
  }
  .aem-Grid.aem-Grid--phone--8 > .aem-GridColumn.aem-GridColumn--offset--phone--7 {
    margin-left: 87.5%;
  }
  .aem-Grid.aem-Grid--phone--8 > .aem-GridColumn.aem-GridColumn--offset--phone--8 {
    margin-left: 100%;
  }
  .aem-Grid.aem-Grid--phone--9 > .aem-GridColumn.aem-GridColumn--phone--1 {
    float: left;
    clear: none;
    width: 11.11111111%;
  }
  .aem-Grid.aem-Grid--phone--9 > .aem-GridColumn.aem-GridColumn--phone--2 {
    float: left;
    clear: none;
    width: 22.22222222%;
  }
  .aem-Grid.aem-Grid--phone--9 > .aem-GridColumn.aem-GridColumn--phone--3 {
    float: left;
    clear: none;
    width: 33.33333333%;
  }
  .aem-Grid.aem-Grid--phone--9 > .aem-GridColumn.aem-GridColumn--phone--4 {
    float: left;
    clear: none;
    width: 44.44444444%;
  }
  .aem-Grid.aem-Grid--phone--9 > .aem-GridColumn.aem-GridColumn--phone--5 {
    float: left;
    clear: none;
    width: 55.55555556%;
  }
  .aem-Grid.aem-Grid--phone--9 > .aem-GridColumn.aem-GridColumn--phone--6 {
    float: left;
    clear: none;
    width: 66.66666667%;
  }
  .aem-Grid.aem-Grid--phone--9 > .aem-GridColumn.aem-GridColumn--phone--7 {
    float: left;
    clear: none;
    width: 77.77777778%;
  }
  .aem-Grid.aem-Grid--phone--9 > .aem-GridColumn.aem-GridColumn--phone--8 {
    float: left;
    clear: none;
    width: 88.88888889%;
  }
  .aem-Grid.aem-Grid--phone--9 > .aem-GridColumn.aem-GridColumn--phone--9 {
    float: left;
    clear: none;
    width: 100%;
  }
  .aem-Grid.aem-Grid--phone--9 > .aem-GridColumn.aem-GridColumn--offset--phone--0 {
    margin-left: 0%;
  }
  .aem-Grid.aem-Grid--phone--9 > .aem-GridColumn.aem-GridColumn--offset--phone--1 {
    margin-left: 11.11111111%;
  }
  .aem-Grid.aem-Grid--phone--9 > .aem-GridColumn.aem-GridColumn--offset--phone--2 {
    margin-left: 22.22222222%;
  }
  .aem-Grid.aem-Grid--phone--9 > .aem-GridColumn.aem-GridColumn--offset--phone--3 {
    margin-left: 33.33333333%;
  }
  .aem-Grid.aem-Grid--phone--9 > .aem-GridColumn.aem-GridColumn--offset--phone--4 {
    margin-left: 44.44444444%;
  }
  .aem-Grid.aem-Grid--phone--9 > .aem-GridColumn.aem-GridColumn--offset--phone--5 {
    margin-left: 55.55555556%;
  }
  .aem-Grid.aem-Grid--phone--9 > .aem-GridColumn.aem-GridColumn--offset--phone--6 {
    margin-left: 66.66666667%;
  }
  .aem-Grid.aem-Grid--phone--9 > .aem-GridColumn.aem-GridColumn--offset--phone--7 {
    margin-left: 77.77777778%;
  }
  .aem-Grid.aem-Grid--phone--9 > .aem-GridColumn.aem-GridColumn--offset--phone--8 {
    margin-left: 88.88888889%;
  }
  .aem-Grid.aem-Grid--phone--9 > .aem-GridColumn.aem-GridColumn--offset--phone--9 {
    margin-left: 100%;
  }
  .aem-Grid.aem-Grid--phone--10 > .aem-GridColumn.aem-GridColumn--phone--1 {
    float: left;
    clear: none;
    width: 10%;
  }
  .aem-Grid.aem-Grid--phone--10 > .aem-GridColumn.aem-GridColumn--phone--2 {
    float: left;
    clear: none;
    width: 20%;
  }
  .aem-Grid.aem-Grid--phone--10 > .aem-GridColumn.aem-GridColumn--phone--3 {
    float: left;
    clear: none;
    width: 30%;
  }
  .aem-Grid.aem-Grid--phone--10 > .aem-GridColumn.aem-GridColumn--phone--4 {
    float: left;
    clear: none;
    width: 40%;
  }
  .aem-Grid.aem-Grid--phone--10 > .aem-GridColumn.aem-GridColumn--phone--5 {
    float: left;
    clear: none;
    width: 50%;
  }
  .aem-Grid.aem-Grid--phone--10 > .aem-GridColumn.aem-GridColumn--phone--6 {
    float: left;
    clear: none;
    width: 60%;
  }
  .aem-Grid.aem-Grid--phone--10 > .aem-GridColumn.aem-GridColumn--phone--7 {
    float: left;
    clear: none;
    width: 70%;
  }
  .aem-Grid.aem-Grid--phone--10 > .aem-GridColumn.aem-GridColumn--phone--8 {
    float: left;
    clear: none;
    width: 80%;
  }
  .aem-Grid.aem-Grid--phone--10 > .aem-GridColumn.aem-GridColumn--phone--9 {
    float: left;
    clear: none;
    width: 90%;
  }
  .aem-Grid.aem-Grid--phone--10 > .aem-GridColumn.aem-GridColumn--phone--10 {
    float: left;
    clear: none;
    width: 100%;
  }
  .aem-Grid.aem-Grid--phone--10 > .aem-GridColumn.aem-GridColumn--offset--phone--0 {
    margin-left: 0%;
  }
  .aem-Grid.aem-Grid--phone--10 > .aem-GridColumn.aem-GridColumn--offset--phone--1 {
    margin-left: 10%;
  }
  .aem-Grid.aem-Grid--phone--10 > .aem-GridColumn.aem-GridColumn--offset--phone--2 {
    margin-left: 20%;
  }
  .aem-Grid.aem-Grid--phone--10 > .aem-GridColumn.aem-GridColumn--offset--phone--3 {
    margin-left: 30%;
  }
  .aem-Grid.aem-Grid--phone--10 > .aem-GridColumn.aem-GridColumn--offset--phone--4 {
    margin-left: 40%;
  }
  .aem-Grid.aem-Grid--phone--10 > .aem-GridColumn.aem-GridColumn--offset--phone--5 {
    margin-left: 50%;
  }
  .aem-Grid.aem-Grid--phone--10 > .aem-GridColumn.aem-GridColumn--offset--phone--6 {
    margin-left: 60%;
  }
  .aem-Grid.aem-Grid--phone--10 > .aem-GridColumn.aem-GridColumn--offset--phone--7 {
    margin-left: 70%;
  }
  .aem-Grid.aem-Grid--phone--10 > .aem-GridColumn.aem-GridColumn--offset--phone--8 {
    margin-left: 80%;
  }
  .aem-Grid.aem-Grid--phone--10 > .aem-GridColumn.aem-GridColumn--offset--phone--9 {
    margin-left: 90%;
  }
  .aem-Grid.aem-Grid--phone--10 > .aem-GridColumn.aem-GridColumn--offset--phone--10 {
    margin-left: 100%;
  }
  .aem-Grid.aem-Grid--phone--11 > .aem-GridColumn.aem-GridColumn--phone--1 {
    float: left;
    clear: none;
    width: 9.09090909%;
  }
  .aem-Grid.aem-Grid--phone--11 > .aem-GridColumn.aem-GridColumn--phone--2 {
    float: left;
    clear: none;
    width: 18.18181818%;
  }
  .aem-Grid.aem-Grid--phone--11 > .aem-GridColumn.aem-GridColumn--phone--3 {
    float: left;
    clear: none;
    width: 27.27272727%;
  }
  .aem-Grid.aem-Grid--phone--11 > .aem-GridColumn.aem-GridColumn--phone--4 {
    float: left;
    clear: none;
    width: 36.36363636%;
  }
  .aem-Grid.aem-Grid--phone--11 > .aem-GridColumn.aem-GridColumn--phone--5 {
    float: left;
    clear: none;
    width: 45.45454545%;
  }
  .aem-Grid.aem-Grid--phone--11 > .aem-GridColumn.aem-GridColumn--phone--6 {
    float: left;
    clear: none;
    width: 54.54545455%;
  }
  .aem-Grid.aem-Grid--phone--11 > .aem-GridColumn.aem-GridColumn--phone--7 {
    float: left;
    clear: none;
    width: 63.63636364%;
  }
  .aem-Grid.aem-Grid--phone--11 > .aem-GridColumn.aem-GridColumn--phone--8 {
    float: left;
    clear: none;
    width: 72.72727273%;
  }
  .aem-Grid.aem-Grid--phone--11 > .aem-GridColumn.aem-GridColumn--phone--9 {
    float: left;
    clear: none;
    width: 81.81818182%;
  }
  .aem-Grid.aem-Grid--phone--11 > .aem-GridColumn.aem-GridColumn--phone--10 {
    float: left;
    clear: none;
    width: 90.90909091%;
  }
  .aem-Grid.aem-Grid--phone--11 > .aem-GridColumn.aem-GridColumn--phone--11 {
    float: left;
    clear: none;
    width: 100%;
  }
  .aem-Grid.aem-Grid--phone--11 > .aem-GridColumn.aem-GridColumn--offset--phone--0 {
    margin-left: 0%;
  }
  .aem-Grid.aem-Grid--phone--11 > .aem-GridColumn.aem-GridColumn--offset--phone--1 {
    margin-left: 9.09090909%;
  }
  .aem-Grid.aem-Grid--phone--11 > .aem-GridColumn.aem-GridColumn--offset--phone--2 {
    margin-left: 18.18181818%;
  }
  .aem-Grid.aem-Grid--phone--11 > .aem-GridColumn.aem-GridColumn--offset--phone--3 {
    margin-left: 27.27272727%;
  }
  .aem-Grid.aem-Grid--phone--11 > .aem-GridColumn.aem-GridColumn--offset--phone--4 {
    margin-left: 36.36363636%;
  }
  .aem-Grid.aem-Grid--phone--11 > .aem-GridColumn.aem-GridColumn--offset--phone--5 {
    margin-left: 45.45454545%;
  }
  .aem-Grid.aem-Grid--phone--11 > .aem-GridColumn.aem-GridColumn--offset--phone--6 {
    margin-left: 54.54545455%;
  }
  .aem-Grid.aem-Grid--phone--11 > .aem-GridColumn.aem-GridColumn--offset--phone--7 {
    margin-left: 63.63636364%;
  }
  .aem-Grid.aem-Grid--phone--11 > .aem-GridColumn.aem-GridColumn--offset--phone--8 {
    margin-left: 72.72727273%;
  }
  .aem-Grid.aem-Grid--phone--11 > .aem-GridColumn.aem-GridColumn--offset--phone--9 {
    margin-left: 81.81818182%;
  }
  .aem-Grid.aem-Grid--phone--11 > .aem-GridColumn.aem-GridColumn--offset--phone--10 {
    margin-left: 90.90909091%;
  }
  .aem-Grid.aem-Grid--phone--11 > .aem-GridColumn.aem-GridColumn--offset--phone--11 {
    margin-left: 100%;
  }
  .aem-Grid.aem-Grid--phone--12 > .aem-GridColumn.aem-GridColumn--phone--1 {
    float: left;
    clear: none;
    width: 8.33333333%;
  }
  .aem-Grid.aem-Grid--phone--12 > .aem-GridColumn.aem-GridColumn--phone--2 {
    float: left;
    clear: none;
    width: 16.66666667%;
  }
  .aem-Grid.aem-Grid--phone--12 > .aem-GridColumn.aem-GridColumn--phone--3 {
    float: left;
    clear: none;
    width: 25%;
  }
  .aem-Grid.aem-Grid--phone--12 > .aem-GridColumn.aem-GridColumn--phone--4 {
    float: left;
    clear: none;
    width: 33.33333333%;
  }
  .aem-Grid.aem-Grid--phone--12 > .aem-GridColumn.aem-GridColumn--phone--5 {
    float: left;
    clear: none;
    width: 41.66666667%;
  }
  .aem-Grid.aem-Grid--phone--12 > .aem-GridColumn.aem-GridColumn--phone--6 {
    float: left;
    clear: none;
    width: 50%;
  }
  .aem-Grid.aem-Grid--phone--12 > .aem-GridColumn.aem-GridColumn--phone--7 {
    float: left;
    clear: none;
    width: 58.33333333%;
  }
  .aem-Grid.aem-Grid--phone--12 > .aem-GridColumn.aem-GridColumn--phone--8 {
    float: left;
    clear: none;
    width: 66.66666667%;
  }
  .aem-Grid.aem-Grid--phone--12 > .aem-GridColumn.aem-GridColumn--phone--9 {
    float: left;
    clear: none;
    width: 75%;
  }
  .aem-Grid.aem-Grid--phone--12 > .aem-GridColumn.aem-GridColumn--phone--10 {
    float: left;
    clear: none;
    width: 83.33333333%;
  }
  .aem-Grid.aem-Grid--phone--12 > .aem-GridColumn.aem-GridColumn--phone--11 {
    float: left;
    clear: none;
    width: 91.66666667%;
  }
  .aem-Grid.aem-Grid--phone--12 > .aem-GridColumn.aem-GridColumn--phone--12 {
    float: left;
    clear: none;
    width: 100%;
  }
  .aem-Grid.aem-Grid--phone--12 > .aem-GridColumn.aem-GridColumn--offset--phone--0 {
    margin-left: 0%;
  }
  .aem-Grid.aem-Grid--phone--12 > .aem-GridColumn.aem-GridColumn--offset--phone--1 {
    margin-left: 8.33333333%;
  }
  .aem-Grid.aem-Grid--phone--12 > .aem-GridColumn.aem-GridColumn--offset--phone--2 {
    margin-left: 16.66666667%;
  }
  .aem-Grid.aem-Grid--phone--12 > .aem-GridColumn.aem-GridColumn--offset--phone--3 {
    margin-left: 25%;
  }
  .aem-Grid.aem-Grid--phone--12 > .aem-GridColumn.aem-GridColumn--offset--phone--4 {
    margin-left: 33.33333333%;
  }
  .aem-Grid.aem-Grid--phone--12 > .aem-GridColumn.aem-GridColumn--offset--phone--5 {
    margin-left: 41.66666667%;
  }
  .aem-Grid.aem-Grid--phone--12 > .aem-GridColumn.aem-GridColumn--offset--phone--6 {
    margin-left: 50%;
  }
  .aem-Grid.aem-Grid--phone--12 > .aem-GridColumn.aem-GridColumn--offset--phone--7 {
    margin-left: 58.33333333%;
  }
  .aem-Grid.aem-Grid--phone--12 > .aem-GridColumn.aem-GridColumn--offset--phone--8 {
    margin-left: 66.66666667%;
  }
  .aem-Grid.aem-Grid--phone--12 > .aem-GridColumn.aem-GridColumn--offset--phone--9 {
    margin-left: 75%;
  }
  .aem-Grid.aem-Grid--phone--12 > .aem-GridColumn.aem-GridColumn--offset--phone--10 {
    margin-left: 83.33333333%;
  }
  .aem-Grid.aem-Grid--phone--12 > .aem-GridColumn.aem-GridColumn--offset--phone--11 {
    margin-left: 91.66666667%;
  }
  .aem-Grid.aem-Grid--phone--12 > .aem-GridColumn.aem-GridColumn--offset--phone--12 {
    margin-left: 100%;
  }
  .aem-Grid > .aem-GridColumn.aem-GridColumn--phone--newline {
    /* newline behavior */
    display: block;
    clear: both !important;
  }
  .aem-Grid > .aem-GridColumn.aem-GridColumn--phone--none {
    /* none behavior */
    display: block;
    clear: none !important;
    float: left;
  }
  .aem-Grid > .aem-GridColumn.aem-GridColumn--phone--hide {
    /* hide behavior */
    display: none;
  }
}
/* tablet breakpoint */
@media (min-width: 769px) and (max-width: 1200px) {
  .aem-Grid.aem-Grid--1 > .aem-GridColumn.aem-GridColumn--tablet--1 {
    float: left;
    clear: none;
    width: 100%;
  }
  .aem-Grid.aem-Grid--1 > .aem-GridColumn.aem-GridColumn--offset--tablet--0 {
    margin-left: 0%;
  }
  .aem-Grid.aem-Grid--1 > .aem-GridColumn.aem-GridColumn--offset--tablet--1 {
    margin-left: 100%;
  }
  .aem-Grid.aem-Grid--2 > .aem-GridColumn.aem-GridColumn--tablet--1 {
    float: left;
    clear: none;
    width: 50%;
  }
  .aem-Grid.aem-Grid--2 > .aem-GridColumn.aem-GridColumn--tablet--2 {
    float: left;
    clear: none;
    width: 100%;
  }
  .aem-Grid.aem-Grid--2 > .aem-GridColumn.aem-GridColumn--offset--tablet--0 {
    margin-left: 0%;
  }
  .aem-Grid.aem-Grid--2 > .aem-GridColumn.aem-GridColumn--offset--tablet--1 {
    margin-left: 50%;
  }
  .aem-Grid.aem-Grid--2 > .aem-GridColumn.aem-GridColumn--offset--tablet--2 {
    margin-left: 100%;
  }
  .aem-Grid.aem-Grid--3 > .aem-GridColumn.aem-GridColumn--tablet--1 {
    float: left;
    clear: none;
    width: 33.33333333%;
  }
  .aem-Grid.aem-Grid--3 > .aem-GridColumn.aem-GridColumn--tablet--2 {
    float: left;
    clear: none;
    width: 66.66666667%;
  }
  .aem-Grid.aem-Grid--3 > .aem-GridColumn.aem-GridColumn--tablet--3 {
    float: left;
    clear: none;
    width: 100%;
  }
  .aem-Grid.aem-Grid--3 > .aem-GridColumn.aem-GridColumn--offset--tablet--0 {
    margin-left: 0%;
  }
  .aem-Grid.aem-Grid--3 > .aem-GridColumn.aem-GridColumn--offset--tablet--1 {
    margin-left: 33.33333333%;
  }
  .aem-Grid.aem-Grid--3 > .aem-GridColumn.aem-GridColumn--offset--tablet--2 {
    margin-left: 66.66666667%;
  }
  .aem-Grid.aem-Grid--3 > .aem-GridColumn.aem-GridColumn--offset--tablet--3 {
    margin-left: 100%;
  }
  .aem-Grid.aem-Grid--4 > .aem-GridColumn.aem-GridColumn--tablet--1 {
    float: left;
    clear: none;
    width: 25%;
  }
  .aem-Grid.aem-Grid--4 > .aem-GridColumn.aem-GridColumn--tablet--2 {
    float: left;
    clear: none;
    width: 50%;
  }
  .aem-Grid.aem-Grid--4 > .aem-GridColumn.aem-GridColumn--tablet--3 {
    float: left;
    clear: none;
    width: 75%;
  }
  .aem-Grid.aem-Grid--4 > .aem-GridColumn.aem-GridColumn--tablet--4 {
    float: left;
    clear: none;
    width: 100%;
  }
  .aem-Grid.aem-Grid--4 > .aem-GridColumn.aem-GridColumn--offset--tablet--0 {
    margin-left: 0%;
  }
  .aem-Grid.aem-Grid--4 > .aem-GridColumn.aem-GridColumn--offset--tablet--1 {
    margin-left: 25%;
  }
  .aem-Grid.aem-Grid--4 > .aem-GridColumn.aem-GridColumn--offset--tablet--2 {
    margin-left: 50%;
  }
  .aem-Grid.aem-Grid--4 > .aem-GridColumn.aem-GridColumn--offset--tablet--3 {
    margin-left: 75%;
  }
  .aem-Grid.aem-Grid--4 > .aem-GridColumn.aem-GridColumn--offset--tablet--4 {
    margin-left: 100%;
  }
  .aem-Grid.aem-Grid--5 > .aem-GridColumn.aem-GridColumn--tablet--1 {
    float: left;
    clear: none;
    width: 20%;
  }
  .aem-Grid.aem-Grid--5 > .aem-GridColumn.aem-GridColumn--tablet--2 {
    float: left;
    clear: none;
    width: 40%;
  }
  .aem-Grid.aem-Grid--5 > .aem-GridColumn.aem-GridColumn--tablet--3 {
    float: left;
    clear: none;
    width: 60%;
  }
  .aem-Grid.aem-Grid--5 > .aem-GridColumn.aem-GridColumn--tablet--4 {
    float: left;
    clear: none;
    width: 80%;
  }
  .aem-Grid.aem-Grid--5 > .aem-GridColumn.aem-GridColumn--tablet--5 {
    float: left;
    clear: none;
    width: 100%;
  }
  .aem-Grid.aem-Grid--5 > .aem-GridColumn.aem-GridColumn--offset--tablet--0 {
    margin-left: 0%;
  }
  .aem-Grid.aem-Grid--5 > .aem-GridColumn.aem-GridColumn--offset--tablet--1 {
    margin-left: 20%;
  }
  .aem-Grid.aem-Grid--5 > .aem-GridColumn.aem-GridColumn--offset--tablet--2 {
    margin-left: 40%;
  }
  .aem-Grid.aem-Grid--5 > .aem-GridColumn.aem-GridColumn--offset--tablet--3 {
    margin-left: 60%;
  }
  .aem-Grid.aem-Grid--5 > .aem-GridColumn.aem-GridColumn--offset--tablet--4 {
    margin-left: 80%;
  }
  .aem-Grid.aem-Grid--5 > .aem-GridColumn.aem-GridColumn--offset--tablet--5 {
    margin-left: 100%;
  }
  .aem-Grid.aem-Grid--6 > .aem-GridColumn.aem-GridColumn--tablet--1 {
    float: left;
    clear: none;
    width: 16.66666667%;
  }
  .aem-Grid.aem-Grid--6 > .aem-GridColumn.aem-GridColumn--tablet--2 {
    float: left;
    clear: none;
    width: 33.33333333%;
  }
  .aem-Grid.aem-Grid--6 > .aem-GridColumn.aem-GridColumn--tablet--3 {
    float: left;
    clear: none;
    width: 50%;
  }
  .aem-Grid.aem-Grid--6 > .aem-GridColumn.aem-GridColumn--tablet--4 {
    float: left;
    clear: none;
    width: 66.66666667%;
  }
  .aem-Grid.aem-Grid--6 > .aem-GridColumn.aem-GridColumn--tablet--5 {
    float: left;
    clear: none;
    width: 83.33333333%;
  }
  .aem-Grid.aem-Grid--6 > .aem-GridColumn.aem-GridColumn--tablet--6 {
    float: left;
    clear: none;
    width: 100%;
  }
  .aem-Grid.aem-Grid--6 > .aem-GridColumn.aem-GridColumn--offset--tablet--0 {
    margin-left: 0%;
  }
  .aem-Grid.aem-Grid--6 > .aem-GridColumn.aem-GridColumn--offset--tablet--1 {
    margin-left: 16.66666667%;
  }
  .aem-Grid.aem-Grid--6 > .aem-GridColumn.aem-GridColumn--offset--tablet--2 {
    margin-left: 33.33333333%;
  }
  .aem-Grid.aem-Grid--6 > .aem-GridColumn.aem-GridColumn--offset--tablet--3 {
    margin-left: 50%;
  }
  .aem-Grid.aem-Grid--6 > .aem-GridColumn.aem-GridColumn--offset--tablet--4 {
    margin-left: 66.66666667%;
  }
  .aem-Grid.aem-Grid--6 > .aem-GridColumn.aem-GridColumn--offset--tablet--5 {
    margin-left: 83.33333333%;
  }
  .aem-Grid.aem-Grid--6 > .aem-GridColumn.aem-GridColumn--offset--tablet--6 {
    margin-left: 100%;
  }
  .aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--tablet--1 {
    float: left;
    clear: none;
    width: 14.28571429%;
  }
  .aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--tablet--2 {
    float: left;
    clear: none;
    width: 28.57142857%;
  }
  .aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--tablet--3 {
    float: left;
    clear: none;
    width: 42.85714286%;
  }
  .aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--tablet--4 {
    float: left;
    clear: none;
    width: 57.14285714%;
  }
  .aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--tablet--5 {
    float: left;
    clear: none;
    width: 71.42857143%;
  }
  .aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--tablet--6 {
    float: left;
    clear: none;
    width: 85.71428571%;
  }
  .aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--tablet--7 {
    float: left;
    clear: none;
    width: 100%;
  }
  .aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--offset--tablet--0 {
    margin-left: 0%;
  }
  .aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--offset--tablet--1 {
    margin-left: 14.28571429%;
  }
  .aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--offset--tablet--2 {
    margin-left: 28.57142857%;
  }
  .aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--offset--tablet--3 {
    margin-left: 42.85714286%;
  }
  .aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--offset--tablet--4 {
    margin-left: 57.14285714%;
  }
  .aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--offset--tablet--5 {
    margin-left: 71.42857143%;
  }
  .aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--offset--tablet--6 {
    margin-left: 85.71428571%;
  }
  .aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--offset--tablet--7 {
    margin-left: 100%;
  }
  .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--tablet--1 {
    float: left;
    clear: none;
    width: 12.5%;
  }
  .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--tablet--2 {
    float: left;
    clear: none;
    width: 25%;
  }
  .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--tablet--3 {
    float: left;
    clear: none;
    width: 37.5%;
  }
  .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--tablet--4 {
    float: left;
    clear: none;
    width: 50%;
  }
  .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--tablet--5 {
    float: left;
    clear: none;
    width: 62.5%;
  }
  .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--tablet--6 {
    float: left;
    clear: none;
    width: 75%;
  }
  .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--tablet--7 {
    float: left;
    clear: none;
    width: 87.5%;
  }
  .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--tablet--8 {
    float: left;
    clear: none;
    width: 100%;
  }
  .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--offset--tablet--0 {
    margin-left: 0%;
  }
  .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--offset--tablet--1 {
    margin-left: 12.5%;
  }
  .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--offset--tablet--2 {
    margin-left: 25%;
  }
  .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--offset--tablet--3 {
    margin-left: 37.5%;
  }
  .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--offset--tablet--4 {
    margin-left: 50%;
  }
  .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--offset--tablet--5 {
    margin-left: 62.5%;
  }
  .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--offset--tablet--6 {
    margin-left: 75%;
  }
  .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--offset--tablet--7 {
    margin-left: 87.5%;
  }
  .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--offset--tablet--8 {
    margin-left: 100%;
  }
  .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--tablet--1 {
    float: left;
    clear: none;
    width: 11.11111111%;
  }
  .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--tablet--2 {
    float: left;
    clear: none;
    width: 22.22222222%;
  }
  .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--tablet--3 {
    float: left;
    clear: none;
    width: 33.33333333%;
  }
  .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--tablet--4 {
    float: left;
    clear: none;
    width: 44.44444444%;
  }
  .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--tablet--5 {
    float: left;
    clear: none;
    width: 55.55555556%;
  }
  .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--tablet--6 {
    float: left;
    clear: none;
    width: 66.66666667%;
  }
  .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--tablet--7 {
    float: left;
    clear: none;
    width: 77.77777778%;
  }
  .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--tablet--8 {
    float: left;
    clear: none;
    width: 88.88888889%;
  }
  .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--tablet--9 {
    float: left;
    clear: none;
    width: 100%;
  }
  .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--offset--tablet--0 {
    margin-left: 0%;
  }
  .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--offset--tablet--1 {
    margin-left: 11.11111111%;
  }
  .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--offset--tablet--2 {
    margin-left: 22.22222222%;
  }
  .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--offset--tablet--3 {
    margin-left: 33.33333333%;
  }
  .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--offset--tablet--4 {
    margin-left: 44.44444444%;
  }
  .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--offset--tablet--5 {
    margin-left: 55.55555556%;
  }
  .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--offset--tablet--6 {
    margin-left: 66.66666667%;
  }
  .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--offset--tablet--7 {
    margin-left: 77.77777778%;
  }
  .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--offset--tablet--8 {
    margin-left: 88.88888889%;
  }
  .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--offset--tablet--9 {
    margin-left: 100%;
  }
  .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--tablet--1 {
    float: left;
    clear: none;
    width: 10%;
  }
  .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--tablet--2 {
    float: left;
    clear: none;
    width: 20%;
  }
  .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--tablet--3 {
    float: left;
    clear: none;
    width: 30%;
  }
  .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--tablet--4 {
    float: left;
    clear: none;
    width: 40%;
  }
  .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--tablet--5 {
    float: left;
    clear: none;
    width: 50%;
  }
  .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--tablet--6 {
    float: left;
    clear: none;
    width: 60%;
  }
  .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--tablet--7 {
    float: left;
    clear: none;
    width: 70%;
  }
  .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--tablet--8 {
    float: left;
    clear: none;
    width: 80%;
  }
  .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--tablet--9 {
    float: left;
    clear: none;
    width: 90%;
  }
  .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--tablet--10 {
    float: left;
    clear: none;
    width: 100%;
  }
  .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--offset--tablet--0 {
    margin-left: 0%;
  }
  .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--offset--tablet--1 {
    margin-left: 10%;
  }
  .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--offset--tablet--2 {
    margin-left: 20%;
  }
  .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--offset--tablet--3 {
    margin-left: 30%;
  }
  .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--offset--tablet--4 {
    margin-left: 40%;
  }
  .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--offset--tablet--5 {
    margin-left: 50%;
  }
  .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--offset--tablet--6 {
    margin-left: 60%;
  }
  .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--offset--tablet--7 {
    margin-left: 70%;
  }
  .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--offset--tablet--8 {
    margin-left: 80%;
  }
  .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--offset--tablet--9 {
    margin-left: 90%;
  }
  .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--offset--tablet--10 {
    margin-left: 100%;
  }
  .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--tablet--1 {
    float: left;
    clear: none;
    width: 9.09090909%;
  }
  .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--tablet--2 {
    float: left;
    clear: none;
    width: 18.18181818%;
  }
  .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--tablet--3 {
    float: left;
    clear: none;
    width: 27.27272727%;
  }
  .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--tablet--4 {
    float: left;
    clear: none;
    width: 36.36363636%;
  }
  .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--tablet--5 {
    float: left;
    clear: none;
    width: 45.45454545%;
  }
  .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--tablet--6 {
    float: left;
    clear: none;
    width: 54.54545455%;
  }
  .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--tablet--7 {
    float: left;
    clear: none;
    width: 63.63636364%;
  }
  .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--tablet--8 {
    float: left;
    clear: none;
    width: 72.72727273%;
  }
  .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--tablet--9 {
    float: left;
    clear: none;
    width: 81.81818182%;
  }
  .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--tablet--10 {
    float: left;
    clear: none;
    width: 90.90909091%;
  }
  .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--tablet--11 {
    float: left;
    clear: none;
    width: 100%;
  }
  .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--offset--tablet--0 {
    margin-left: 0%;
  }
  .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--offset--tablet--1 {
    margin-left: 9.09090909%;
  }
  .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--offset--tablet--2 {
    margin-left: 18.18181818%;
  }
  .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--offset--tablet--3 {
    margin-left: 27.27272727%;
  }
  .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--offset--tablet--4 {
    margin-left: 36.36363636%;
  }
  .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--offset--tablet--5 {
    margin-left: 45.45454545%;
  }
  .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--offset--tablet--6 {
    margin-left: 54.54545455%;
  }
  .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--offset--tablet--7 {
    margin-left: 63.63636364%;
  }
  .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--offset--tablet--8 {
    margin-left: 72.72727273%;
  }
  .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--offset--tablet--9 {
    margin-left: 81.81818182%;
  }
  .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--offset--tablet--10 {
    margin-left: 90.90909091%;
  }
  .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--offset--tablet--11 {
    margin-left: 100%;
  }
  .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--tablet--1 {
    float: left;
    clear: none;
    width: 8.33333333%;
  }
  .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--tablet--2 {
    float: left;
    clear: none;
    width: 16.66666667%;
  }
  .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--tablet--3 {
    float: left;
    clear: none;
    width: 25%;
  }
  .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--tablet--4 {
    float: left;
    clear: none;
    width: 33.33333333%;
  }
  .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--tablet--5 {
    float: left;
    clear: none;
    width: 41.66666667%;
  }
  .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--tablet--6 {
    float: left;
    clear: none;
    width: 50%;
  }
  .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--tablet--7 {
    float: left;
    clear: none;
    width: 58.33333333%;
  }
  .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--tablet--8 {
    float: left;
    clear: none;
    width: 66.66666667%;
  }
  .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--tablet--9 {
    float: left;
    clear: none;
    width: 75%;
  }
  .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--tablet--10 {
    float: left;
    clear: none;
    width: 83.33333333%;
  }
  .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--tablet--11 {
    float: left;
    clear: none;
    width: 91.66666667%;
  }
  .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--tablet--12 {
    float: left;
    clear: none;
    width: 100%;
  }
  .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--offset--tablet--0 {
    margin-left: 0%;
  }
  .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--offset--tablet--1 {
    margin-left: 8.33333333%;
  }
  .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--offset--tablet--2 {
    margin-left: 16.66666667%;
  }
  .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--offset--tablet--3 {
    margin-left: 25%;
  }
  .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--offset--tablet--4 {
    margin-left: 33.33333333%;
  }
  .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--offset--tablet--5 {
    margin-left: 41.66666667%;
  }
  .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--offset--tablet--6 {
    margin-left: 50%;
  }
  .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--offset--tablet--7 {
    margin-left: 58.33333333%;
  }
  .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--offset--tablet--8 {
    margin-left: 66.66666667%;
  }
  .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--offset--tablet--9 {
    margin-left: 75%;
  }
  .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--offset--tablet--10 {
    margin-left: 83.33333333%;
  }
  .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--offset--tablet--11 {
    margin-left: 91.66666667%;
  }
  .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--offset--tablet--12 {
    margin-left: 100%;
  }
  .aem-Grid.aem-Grid--tablet--1 > .aem-GridColumn.aem-GridColumn--tablet--1 {
    float: left;
    clear: none;
    width: 100%;
  }
  .aem-Grid.aem-Grid--tablet--1 > .aem-GridColumn.aem-GridColumn--offset--tablet--0 {
    margin-left: 0%;
  }
  .aem-Grid.aem-Grid--tablet--1 > .aem-GridColumn.aem-GridColumn--offset--tablet--1 {
    margin-left: 100%;
  }
  .aem-Grid.aem-Grid--tablet--2 > .aem-GridColumn.aem-GridColumn--tablet--1 {
    float: left;
    clear: none;
    width: 50%;
  }
  .aem-Grid.aem-Grid--tablet--2 > .aem-GridColumn.aem-GridColumn--tablet--2 {
    float: left;
    clear: none;
    width: 100%;
  }
  .aem-Grid.aem-Grid--tablet--2 > .aem-GridColumn.aem-GridColumn--offset--tablet--0 {
    margin-left: 0%;
  }
  .aem-Grid.aem-Grid--tablet--2 > .aem-GridColumn.aem-GridColumn--offset--tablet--1 {
    margin-left: 50%;
  }
  .aem-Grid.aem-Grid--tablet--2 > .aem-GridColumn.aem-GridColumn--offset--tablet--2 {
    margin-left: 100%;
  }
  .aem-Grid.aem-Grid--tablet--3 > .aem-GridColumn.aem-GridColumn--tablet--1 {
    float: left;
    clear: none;
    width: 33.33333333%;
  }
  .aem-Grid.aem-Grid--tablet--3 > .aem-GridColumn.aem-GridColumn--tablet--2 {
    float: left;
    clear: none;
    width: 66.66666667%;
  }
  .aem-Grid.aem-Grid--tablet--3 > .aem-GridColumn.aem-GridColumn--tablet--3 {
    float: left;
    clear: none;
    width: 100%;
  }
  .aem-Grid.aem-Grid--tablet--3 > .aem-GridColumn.aem-GridColumn--offset--tablet--0 {
    margin-left: 0%;
  }
  .aem-Grid.aem-Grid--tablet--3 > .aem-GridColumn.aem-GridColumn--offset--tablet--1 {
    margin-left: 33.33333333%;
  }
  .aem-Grid.aem-Grid--tablet--3 > .aem-GridColumn.aem-GridColumn--offset--tablet--2 {
    margin-left: 66.66666667%;
  }
  .aem-Grid.aem-Grid--tablet--3 > .aem-GridColumn.aem-GridColumn--offset--tablet--3 {
    margin-left: 100%;
  }
  .aem-Grid.aem-Grid--tablet--4 > .aem-GridColumn.aem-GridColumn--tablet--1 {
    float: left;
    clear: none;
    width: 25%;
  }
  .aem-Grid.aem-Grid--tablet--4 > .aem-GridColumn.aem-GridColumn--tablet--2 {
    float: left;
    clear: none;
    width: 50%;
  }
  .aem-Grid.aem-Grid--tablet--4 > .aem-GridColumn.aem-GridColumn--tablet--3 {
    float: left;
    clear: none;
    width: 75%;
  }
  .aem-Grid.aem-Grid--tablet--4 > .aem-GridColumn.aem-GridColumn--tablet--4 {
    float: left;
    clear: none;
    width: 100%;
  }
  .aem-Grid.aem-Grid--tablet--4 > .aem-GridColumn.aem-GridColumn--offset--tablet--0 {
    margin-left: 0%;
  }
  .aem-Grid.aem-Grid--tablet--4 > .aem-GridColumn.aem-GridColumn--offset--tablet--1 {
    margin-left: 25%;
  }
  .aem-Grid.aem-Grid--tablet--4 > .aem-GridColumn.aem-GridColumn--offset--tablet--2 {
    margin-left: 50%;
  }
  .aem-Grid.aem-Grid--tablet--4 > .aem-GridColumn.aem-GridColumn--offset--tablet--3 {
    margin-left: 75%;
  }
  .aem-Grid.aem-Grid--tablet--4 > .aem-GridColumn.aem-GridColumn--offset--tablet--4 {
    margin-left: 100%;
  }
  .aem-Grid.aem-Grid--tablet--5 > .aem-GridColumn.aem-GridColumn--tablet--1 {
    float: left;
    clear: none;
    width: 20%;
  }
  .aem-Grid.aem-Grid--tablet--5 > .aem-GridColumn.aem-GridColumn--tablet--2 {
    float: left;
    clear: none;
    width: 40%;
  }
  .aem-Grid.aem-Grid--tablet--5 > .aem-GridColumn.aem-GridColumn--tablet--3 {
    float: left;
    clear: none;
    width: 60%;
  }
  .aem-Grid.aem-Grid--tablet--5 > .aem-GridColumn.aem-GridColumn--tablet--4 {
    float: left;
    clear: none;
    width: 80%;
  }
  .aem-Grid.aem-Grid--tablet--5 > .aem-GridColumn.aem-GridColumn--tablet--5 {
    float: left;
    clear: none;
    width: 100%;
  }
  .aem-Grid.aem-Grid--tablet--5 > .aem-GridColumn.aem-GridColumn--offset--tablet--0 {
    margin-left: 0%;
  }
  .aem-Grid.aem-Grid--tablet--5 > .aem-GridColumn.aem-GridColumn--offset--tablet--1 {
    margin-left: 20%;
  }
  .aem-Grid.aem-Grid--tablet--5 > .aem-GridColumn.aem-GridColumn--offset--tablet--2 {
    margin-left: 40%;
  }
  .aem-Grid.aem-Grid--tablet--5 > .aem-GridColumn.aem-GridColumn--offset--tablet--3 {
    margin-left: 60%;
  }
  .aem-Grid.aem-Grid--tablet--5 > .aem-GridColumn.aem-GridColumn--offset--tablet--4 {
    margin-left: 80%;
  }
  .aem-Grid.aem-Grid--tablet--5 > .aem-GridColumn.aem-GridColumn--offset--tablet--5 {
    margin-left: 100%;
  }
  .aem-Grid.aem-Grid--tablet--6 > .aem-GridColumn.aem-GridColumn--tablet--1 {
    float: left;
    clear: none;
    width: 16.66666667%;
  }
  .aem-Grid.aem-Grid--tablet--6 > .aem-GridColumn.aem-GridColumn--tablet--2 {
    float: left;
    clear: none;
    width: 33.33333333%;
  }
  .aem-Grid.aem-Grid--tablet--6 > .aem-GridColumn.aem-GridColumn--tablet--3 {
    float: left;
    clear: none;
    width: 50%;
  }
  .aem-Grid.aem-Grid--tablet--6 > .aem-GridColumn.aem-GridColumn--tablet--4 {
    float: left;
    clear: none;
    width: 66.66666667%;
  }
  .aem-Grid.aem-Grid--tablet--6 > .aem-GridColumn.aem-GridColumn--tablet--5 {
    float: left;
    clear: none;
    width: 83.33333333%;
  }
  .aem-Grid.aem-Grid--tablet--6 > .aem-GridColumn.aem-GridColumn--tablet--6 {
    float: left;
    clear: none;
    width: 100%;
  }
  .aem-Grid.aem-Grid--tablet--6 > .aem-GridColumn.aem-GridColumn--offset--tablet--0 {
    margin-left: 0%;
  }
  .aem-Grid.aem-Grid--tablet--6 > .aem-GridColumn.aem-GridColumn--offset--tablet--1 {
    margin-left: 16.66666667%;
  }
  .aem-Grid.aem-Grid--tablet--6 > .aem-GridColumn.aem-GridColumn--offset--tablet--2 {
    margin-left: 33.33333333%;
  }
  .aem-Grid.aem-Grid--tablet--6 > .aem-GridColumn.aem-GridColumn--offset--tablet--3 {
    margin-left: 50%;
  }
  .aem-Grid.aem-Grid--tablet--6 > .aem-GridColumn.aem-GridColumn--offset--tablet--4 {
    margin-left: 66.66666667%;
  }
  .aem-Grid.aem-Grid--tablet--6 > .aem-GridColumn.aem-GridColumn--offset--tablet--5 {
    margin-left: 83.33333333%;
  }
  .aem-Grid.aem-Grid--tablet--6 > .aem-GridColumn.aem-GridColumn--offset--tablet--6 {
    margin-left: 100%;
  }
  .aem-Grid.aem-Grid--tablet--7 > .aem-GridColumn.aem-GridColumn--tablet--1 {
    float: left;
    clear: none;
    width: 14.28571429%;
  }
  .aem-Grid.aem-Grid--tablet--7 > .aem-GridColumn.aem-GridColumn--tablet--2 {
    float: left;
    clear: none;
    width: 28.57142857%;
  }
  .aem-Grid.aem-Grid--tablet--7 > .aem-GridColumn.aem-GridColumn--tablet--3 {
    float: left;
    clear: none;
    width: 42.85714286%;
  }
  .aem-Grid.aem-Grid--tablet--7 > .aem-GridColumn.aem-GridColumn--tablet--4 {
    float: left;
    clear: none;
    width: 57.14285714%;
  }
  .aem-Grid.aem-Grid--tablet--7 > .aem-GridColumn.aem-GridColumn--tablet--5 {
    float: left;
    clear: none;
    width: 71.42857143%;
  }
  .aem-Grid.aem-Grid--tablet--7 > .aem-GridColumn.aem-GridColumn--tablet--6 {
    float: left;
    clear: none;
    width: 85.71428571%;
  }
  .aem-Grid.aem-Grid--tablet--7 > .aem-GridColumn.aem-GridColumn--tablet--7 {
    float: left;
    clear: none;
    width: 100%;
  }
  .aem-Grid.aem-Grid--tablet--7 > .aem-GridColumn.aem-GridColumn--offset--tablet--0 {
    margin-left: 0%;
  }
  .aem-Grid.aem-Grid--tablet--7 > .aem-GridColumn.aem-GridColumn--offset--tablet--1 {
    margin-left: 14.28571429%;
  }
  .aem-Grid.aem-Grid--tablet--7 > .aem-GridColumn.aem-GridColumn--offset--tablet--2 {
    margin-left: 28.57142857%;
  }
  .aem-Grid.aem-Grid--tablet--7 > .aem-GridColumn.aem-GridColumn--offset--tablet--3 {
    margin-left: 42.85714286%;
  }
  .aem-Grid.aem-Grid--tablet--7 > .aem-GridColumn.aem-GridColumn--offset--tablet--4 {
    margin-left: 57.14285714%;
  }
  .aem-Grid.aem-Grid--tablet--7 > .aem-GridColumn.aem-GridColumn--offset--tablet--5 {
    margin-left: 71.42857143%;
  }
  .aem-Grid.aem-Grid--tablet--7 > .aem-GridColumn.aem-GridColumn--offset--tablet--6 {
    margin-left: 85.71428571%;
  }
  .aem-Grid.aem-Grid--tablet--7 > .aem-GridColumn.aem-GridColumn--offset--tablet--7 {
    margin-left: 100%;
  }
  .aem-Grid.aem-Grid--tablet--8 > .aem-GridColumn.aem-GridColumn--tablet--1 {
    float: left;
    clear: none;
    width: 12.5%;
  }
  .aem-Grid.aem-Grid--tablet--8 > .aem-GridColumn.aem-GridColumn--tablet--2 {
    float: left;
    clear: none;
    width: 25%;
  }
  .aem-Grid.aem-Grid--tablet--8 > .aem-GridColumn.aem-GridColumn--tablet--3 {
    float: left;
    clear: none;
    width: 37.5%;
  }
  .aem-Grid.aem-Grid--tablet--8 > .aem-GridColumn.aem-GridColumn--tablet--4 {
    float: left;
    clear: none;
    width: 50%;
  }
  .aem-Grid.aem-Grid--tablet--8 > .aem-GridColumn.aem-GridColumn--tablet--5 {
    float: left;
    clear: none;
    width: 62.5%;
  }
  .aem-Grid.aem-Grid--tablet--8 > .aem-GridColumn.aem-GridColumn--tablet--6 {
    float: left;
    clear: none;
    width: 75%;
  }
  .aem-Grid.aem-Grid--tablet--8 > .aem-GridColumn.aem-GridColumn--tablet--7 {
    float: left;
    clear: none;
    width: 87.5%;
  }
  .aem-Grid.aem-Grid--tablet--8 > .aem-GridColumn.aem-GridColumn--tablet--8 {
    float: left;
    clear: none;
    width: 100%;
  }
  .aem-Grid.aem-Grid--tablet--8 > .aem-GridColumn.aem-GridColumn--offset--tablet--0 {
    margin-left: 0%;
  }
  .aem-Grid.aem-Grid--tablet--8 > .aem-GridColumn.aem-GridColumn--offset--tablet--1 {
    margin-left: 12.5%;
  }
  .aem-Grid.aem-Grid--tablet--8 > .aem-GridColumn.aem-GridColumn--offset--tablet--2 {
    margin-left: 25%;
  }
  .aem-Grid.aem-Grid--tablet--8 > .aem-GridColumn.aem-GridColumn--offset--tablet--3 {
    margin-left: 37.5%;
  }
  .aem-Grid.aem-Grid--tablet--8 > .aem-GridColumn.aem-GridColumn--offset--tablet--4 {
    margin-left: 50%;
  }
  .aem-Grid.aem-Grid--tablet--8 > .aem-GridColumn.aem-GridColumn--offset--tablet--5 {
    margin-left: 62.5%;
  }
  .aem-Grid.aem-Grid--tablet--8 > .aem-GridColumn.aem-GridColumn--offset--tablet--6 {
    margin-left: 75%;
  }
  .aem-Grid.aem-Grid--tablet--8 > .aem-GridColumn.aem-GridColumn--offset--tablet--7 {
    margin-left: 87.5%;
  }
  .aem-Grid.aem-Grid--tablet--8 > .aem-GridColumn.aem-GridColumn--offset--tablet--8 {
    margin-left: 100%;
  }
  .aem-Grid.aem-Grid--tablet--9 > .aem-GridColumn.aem-GridColumn--tablet--1 {
    float: left;
    clear: none;
    width: 11.11111111%;
  }
  .aem-Grid.aem-Grid--tablet--9 > .aem-GridColumn.aem-GridColumn--tablet--2 {
    float: left;
    clear: none;
    width: 22.22222222%;
  }
  .aem-Grid.aem-Grid--tablet--9 > .aem-GridColumn.aem-GridColumn--tablet--3 {
    float: left;
    clear: none;
    width: 33.33333333%;
  }
  .aem-Grid.aem-Grid--tablet--9 > .aem-GridColumn.aem-GridColumn--tablet--4 {
    float: left;
    clear: none;
    width: 44.44444444%;
  }
  .aem-Grid.aem-Grid--tablet--9 > .aem-GridColumn.aem-GridColumn--tablet--5 {
    float: left;
    clear: none;
    width: 55.55555556%;
  }
  .aem-Grid.aem-Grid--tablet--9 > .aem-GridColumn.aem-GridColumn--tablet--6 {
    float: left;
    clear: none;
    width: 66.66666667%;
  }
  .aem-Grid.aem-Grid--tablet--9 > .aem-GridColumn.aem-GridColumn--tablet--7 {
    float: left;
    clear: none;
    width: 77.77777778%;
  }
  .aem-Grid.aem-Grid--tablet--9 > .aem-GridColumn.aem-GridColumn--tablet--8 {
    float: left;
    clear: none;
    width: 88.88888889%;
  }
  .aem-Grid.aem-Grid--tablet--9 > .aem-GridColumn.aem-GridColumn--tablet--9 {
    float: left;
    clear: none;
    width: 100%;
  }
  .aem-Grid.aem-Grid--tablet--9 > .aem-GridColumn.aem-GridColumn--offset--tablet--0 {
    margin-left: 0%;
  }
  .aem-Grid.aem-Grid--tablet--9 > .aem-GridColumn.aem-GridColumn--offset--tablet--1 {
    margin-left: 11.11111111%;
  }
  .aem-Grid.aem-Grid--tablet--9 > .aem-GridColumn.aem-GridColumn--offset--tablet--2 {
    margin-left: 22.22222222%;
  }
  .aem-Grid.aem-Grid--tablet--9 > .aem-GridColumn.aem-GridColumn--offset--tablet--3 {
    margin-left: 33.33333333%;
  }
  .aem-Grid.aem-Grid--tablet--9 > .aem-GridColumn.aem-GridColumn--offset--tablet--4 {
    margin-left: 44.44444444%;
  }
  .aem-Grid.aem-Grid--tablet--9 > .aem-GridColumn.aem-GridColumn--offset--tablet--5 {
    margin-left: 55.55555556%;
  }
  .aem-Grid.aem-Grid--tablet--9 > .aem-GridColumn.aem-GridColumn--offset--tablet--6 {
    margin-left: 66.66666667%;
  }
  .aem-Grid.aem-Grid--tablet--9 > .aem-GridColumn.aem-GridColumn--offset--tablet--7 {
    margin-left: 77.77777778%;
  }
  .aem-Grid.aem-Grid--tablet--9 > .aem-GridColumn.aem-GridColumn--offset--tablet--8 {
    margin-left: 88.88888889%;
  }
  .aem-Grid.aem-Grid--tablet--9 > .aem-GridColumn.aem-GridColumn--offset--tablet--9 {
    margin-left: 100%;
  }
  .aem-Grid.aem-Grid--tablet--10 > .aem-GridColumn.aem-GridColumn--tablet--1 {
    float: left;
    clear: none;
    width: 10%;
  }
  .aem-Grid.aem-Grid--tablet--10 > .aem-GridColumn.aem-GridColumn--tablet--2 {
    float: left;
    clear: none;
    width: 20%;
  }
  .aem-Grid.aem-Grid--tablet--10 > .aem-GridColumn.aem-GridColumn--tablet--3 {
    float: left;
    clear: none;
    width: 30%;
  }
  .aem-Grid.aem-Grid--tablet--10 > .aem-GridColumn.aem-GridColumn--tablet--4 {
    float: left;
    clear: none;
    width: 40%;
  }
  .aem-Grid.aem-Grid--tablet--10 > .aem-GridColumn.aem-GridColumn--tablet--5 {
    float: left;
    clear: none;
    width: 50%;
  }
  .aem-Grid.aem-Grid--tablet--10 > .aem-GridColumn.aem-GridColumn--tablet--6 {
    float: left;
    clear: none;
    width: 60%;
  }
  .aem-Grid.aem-Grid--tablet--10 > .aem-GridColumn.aem-GridColumn--tablet--7 {
    float: left;
    clear: none;
    width: 70%;
  }
  .aem-Grid.aem-Grid--tablet--10 > .aem-GridColumn.aem-GridColumn--tablet--8 {
    float: left;
    clear: none;
    width: 80%;
  }
  .aem-Grid.aem-Grid--tablet--10 > .aem-GridColumn.aem-GridColumn--tablet--9 {
    float: left;
    clear: none;
    width: 90%;
  }
  .aem-Grid.aem-Grid--tablet--10 > .aem-GridColumn.aem-GridColumn--tablet--10 {
    float: left;
    clear: none;
    width: 100%;
  }
  .aem-Grid.aem-Grid--tablet--10 > .aem-GridColumn.aem-GridColumn--offset--tablet--0 {
    margin-left: 0%;
  }
  .aem-Grid.aem-Grid--tablet--10 > .aem-GridColumn.aem-GridColumn--offset--tablet--1 {
    margin-left: 10%;
  }
  .aem-Grid.aem-Grid--tablet--10 > .aem-GridColumn.aem-GridColumn--offset--tablet--2 {
    margin-left: 20%;
  }
  .aem-Grid.aem-Grid--tablet--10 > .aem-GridColumn.aem-GridColumn--offset--tablet--3 {
    margin-left: 30%;
  }
  .aem-Grid.aem-Grid--tablet--10 > .aem-GridColumn.aem-GridColumn--offset--tablet--4 {
    margin-left: 40%;
  }
  .aem-Grid.aem-Grid--tablet--10 > .aem-GridColumn.aem-GridColumn--offset--tablet--5 {
    margin-left: 50%;
  }
  .aem-Grid.aem-Grid--tablet--10 > .aem-GridColumn.aem-GridColumn--offset--tablet--6 {
    margin-left: 60%;
  }
  .aem-Grid.aem-Grid--tablet--10 > .aem-GridColumn.aem-GridColumn--offset--tablet--7 {
    margin-left: 70%;
  }
  .aem-Grid.aem-Grid--tablet--10 > .aem-GridColumn.aem-GridColumn--offset--tablet--8 {
    margin-left: 80%;
  }
  .aem-Grid.aem-Grid--tablet--10 > .aem-GridColumn.aem-GridColumn--offset--tablet--9 {
    margin-left: 90%;
  }
  .aem-Grid.aem-Grid--tablet--10 > .aem-GridColumn.aem-GridColumn--offset--tablet--10 {
    margin-left: 100%;
  }
  .aem-Grid.aem-Grid--tablet--11 > .aem-GridColumn.aem-GridColumn--tablet--1 {
    float: left;
    clear: none;
    width: 9.09090909%;
  }
  .aem-Grid.aem-Grid--tablet--11 > .aem-GridColumn.aem-GridColumn--tablet--2 {
    float: left;
    clear: none;
    width: 18.18181818%;
  }
  .aem-Grid.aem-Grid--tablet--11 > .aem-GridColumn.aem-GridColumn--tablet--3 {
    float: left;
    clear: none;
    width: 27.27272727%;
  }
  .aem-Grid.aem-Grid--tablet--11 > .aem-GridColumn.aem-GridColumn--tablet--4 {
    float: left;
    clear: none;
    width: 36.36363636%;
  }
  .aem-Grid.aem-Grid--tablet--11 > .aem-GridColumn.aem-GridColumn--tablet--5 {
    float: left;
    clear: none;
    width: 45.45454545%;
  }
  .aem-Grid.aem-Grid--tablet--11 > .aem-GridColumn.aem-GridColumn--tablet--6 {
    float: left;
    clear: none;
    width: 54.54545455%;
  }
  .aem-Grid.aem-Grid--tablet--11 > .aem-GridColumn.aem-GridColumn--tablet--7 {
    float: left;
    clear: none;
    width: 63.63636364%;
  }
  .aem-Grid.aem-Grid--tablet--11 > .aem-GridColumn.aem-GridColumn--tablet--8 {
    float: left;
    clear: none;
    width: 72.72727273%;
  }
  .aem-Grid.aem-Grid--tablet--11 > .aem-GridColumn.aem-GridColumn--tablet--9 {
    float: left;
    clear: none;
    width: 81.81818182%;
  }
  .aem-Grid.aem-Grid--tablet--11 > .aem-GridColumn.aem-GridColumn--tablet--10 {
    float: left;
    clear: none;
    width: 90.90909091%;
  }
  .aem-Grid.aem-Grid--tablet--11 > .aem-GridColumn.aem-GridColumn--tablet--11 {
    float: left;
    clear: none;
    width: 100%;
  }
  .aem-Grid.aem-Grid--tablet--11 > .aem-GridColumn.aem-GridColumn--offset--tablet--0 {
    margin-left: 0%;
  }
  .aem-Grid.aem-Grid--tablet--11 > .aem-GridColumn.aem-GridColumn--offset--tablet--1 {
    margin-left: 9.09090909%;
  }
  .aem-Grid.aem-Grid--tablet--11 > .aem-GridColumn.aem-GridColumn--offset--tablet--2 {
    margin-left: 18.18181818%;
  }
  .aem-Grid.aem-Grid--tablet--11 > .aem-GridColumn.aem-GridColumn--offset--tablet--3 {
    margin-left: 27.27272727%;
  }
  .aem-Grid.aem-Grid--tablet--11 > .aem-GridColumn.aem-GridColumn--offset--tablet--4 {
    margin-left: 36.36363636%;
  }
  .aem-Grid.aem-Grid--tablet--11 > .aem-GridColumn.aem-GridColumn--offset--tablet--5 {
    margin-left: 45.45454545%;
  }
  .aem-Grid.aem-Grid--tablet--11 > .aem-GridColumn.aem-GridColumn--offset--tablet--6 {
    margin-left: 54.54545455%;
  }
  .aem-Grid.aem-Grid--tablet--11 > .aem-GridColumn.aem-GridColumn--offset--tablet--7 {
    margin-left: 63.63636364%;
  }
  .aem-Grid.aem-Grid--tablet--11 > .aem-GridColumn.aem-GridColumn--offset--tablet--8 {
    margin-left: 72.72727273%;
  }
  .aem-Grid.aem-Grid--tablet--11 > .aem-GridColumn.aem-GridColumn--offset--tablet--9 {
    margin-left: 81.81818182%;
  }
  .aem-Grid.aem-Grid--tablet--11 > .aem-GridColumn.aem-GridColumn--offset--tablet--10 {
    margin-left: 90.90909091%;
  }
  .aem-Grid.aem-Grid--tablet--11 > .aem-GridColumn.aem-GridColumn--offset--tablet--11 {
    margin-left: 100%;
  }
  .aem-Grid.aem-Grid--tablet--12 > .aem-GridColumn.aem-GridColumn--tablet--1 {
    float: left;
    clear: none;
    width: 8.33333333%;
  }
  .aem-Grid.aem-Grid--tablet--12 > .aem-GridColumn.aem-GridColumn--tablet--2 {
    float: left;
    clear: none;
    width: 16.66666667%;
  }
  .aem-Grid.aem-Grid--tablet--12 > .aem-GridColumn.aem-GridColumn--tablet--3 {
    float: left;
    clear: none;
    width: 25%;
  }
  .aem-Grid.aem-Grid--tablet--12 > .aem-GridColumn.aem-GridColumn--tablet--4 {
    float: left;
    clear: none;
    width: 33.33333333%;
  }
  .aem-Grid.aem-Grid--tablet--12 > .aem-GridColumn.aem-GridColumn--tablet--5 {
    float: left;
    clear: none;
    width: 41.66666667%;
  }
  .aem-Grid.aem-Grid--tablet--12 > .aem-GridColumn.aem-GridColumn--tablet--6 {
    float: left;
    clear: none;
    width: 50%;
  }
  .aem-Grid.aem-Grid--tablet--12 > .aem-GridColumn.aem-GridColumn--tablet--7 {
    float: left;
    clear: none;
    width: 58.33333333%;
  }
  .aem-Grid.aem-Grid--tablet--12 > .aem-GridColumn.aem-GridColumn--tablet--8 {
    float: left;
    clear: none;
    width: 66.66666667%;
  }
  .aem-Grid.aem-Grid--tablet--12 > .aem-GridColumn.aem-GridColumn--tablet--9 {
    float: left;
    clear: none;
    width: 75%;
  }
  .aem-Grid.aem-Grid--tablet--12 > .aem-GridColumn.aem-GridColumn--tablet--10 {
    float: left;
    clear: none;
    width: 83.33333333%;
  }
  .aem-Grid.aem-Grid--tablet--12 > .aem-GridColumn.aem-GridColumn--tablet--11 {
    float: left;
    clear: none;
    width: 91.66666667%;
  }
  .aem-Grid.aem-Grid--tablet--12 > .aem-GridColumn.aem-GridColumn--tablet--12 {
    float: left;
    clear: none;
    width: 100%;
  }
  .aem-Grid.aem-Grid--tablet--12 > .aem-GridColumn.aem-GridColumn--offset--tablet--0 {
    margin-left: 0%;
  }
  .aem-Grid.aem-Grid--tablet--12 > .aem-GridColumn.aem-GridColumn--offset--tablet--1 {
    margin-left: 8.33333333%;
  }
  .aem-Grid.aem-Grid--tablet--12 > .aem-GridColumn.aem-GridColumn--offset--tablet--2 {
    margin-left: 16.66666667%;
  }
  .aem-Grid.aem-Grid--tablet--12 > .aem-GridColumn.aem-GridColumn--offset--tablet--3 {
    margin-left: 25%;
  }
  .aem-Grid.aem-Grid--tablet--12 > .aem-GridColumn.aem-GridColumn--offset--tablet--4 {
    margin-left: 33.33333333%;
  }
  .aem-Grid.aem-Grid--tablet--12 > .aem-GridColumn.aem-GridColumn--offset--tablet--5 {
    margin-left: 41.66666667%;
  }
  .aem-Grid.aem-Grid--tablet--12 > .aem-GridColumn.aem-GridColumn--offset--tablet--6 {
    margin-left: 50%;
  }
  .aem-Grid.aem-Grid--tablet--12 > .aem-GridColumn.aem-GridColumn--offset--tablet--7 {
    margin-left: 58.33333333%;
  }
  .aem-Grid.aem-Grid--tablet--12 > .aem-GridColumn.aem-GridColumn--offset--tablet--8 {
    margin-left: 66.66666667%;
  }
  .aem-Grid.aem-Grid--tablet--12 > .aem-GridColumn.aem-GridColumn--offset--tablet--9 {
    margin-left: 75%;
  }
  .aem-Grid.aem-Grid--tablet--12 > .aem-GridColumn.aem-GridColumn--offset--tablet--10 {
    margin-left: 83.33333333%;
  }
  .aem-Grid.aem-Grid--tablet--12 > .aem-GridColumn.aem-GridColumn--offset--tablet--11 {
    margin-left: 91.66666667%;
  }
  .aem-Grid.aem-Grid--tablet--12 > .aem-GridColumn.aem-GridColumn--offset--tablet--12 {
    margin-left: 100%;
  }
  .aem-Grid > .aem-GridColumn.aem-GridColumn--tablet--newline {
    /* newline behavior */
    display: block;
    clear: both !important;
  }
  .aem-Grid > .aem-GridColumn.aem-GridColumn--tablet--none {
    /* none behavior */
    display: block;
    clear: none !important;
    float: left;
  }
  .aem-Grid > .aem-GridColumn.aem-GridColumn--tablet--hide {
    /* hide behavior */
    display: none;
  }
}
/* force showing hidden components in unhide mode */
.aem-GridShowHidden > .cmp-container > .aem-Grid > .aem-GridColumn {
  display: block !important;
}

.cmp-base {
  padding: 72px 0;
}
@media (max-width: 991px) {
  .cmp-base {
    padding: 64px 0;
  }
}
@media (max-width: 767px) {
  .cmp-base {
    padding: 48px 0;
  }
}
.cmp-base.padding-top--small {
  padding-top: 40px;
}
@media (max-width: 991px) {
  .cmp-base.padding-top--small {
    padding-top: 32px;
  }
}
@media (max-width: 767px) {
  .cmp-base.padding-top--small {
    padding-top: 24px;
  }
}
.cmp-base.padding-bottom--small {
  padding-bottom: 40px;
}
@media (max-width: 991px) {
  .cmp-base.padding-bottom--small {
    padding-bottom: 32px;
  }
}
@media (max-width: 767px) {
  .cmp-base.padding-bottom--small {
    padding-bottom: 24px;
  }
}
.cmp-base.padding-top--none {
  padding-top: 0;
}
@media (max-width: 991px) {
  .cmp-base.padding-top--none {
    padding-top: 0;
  }
}
@media (max-width: 767px) {
  .cmp-base.padding-top--none {
    padding-top: 0;
  }
}
.cmp-base.padding-bottom--none {
  padding-bottom: 0;
}
@media (max-width: 991px) {
  .cmp-base.padding-bottom--none {
    padding-bottom: 0;
  }
}
@media (max-width: 767px) {
  .cmp-base.padding-bottom--none {
    padding-bottom: 0;
  }
}
html:not(.aem-AuthorLayer-Edit) .inpagecontainer.hideInPageNav {
  display: none;
  margin: 0;
  padding: 0;
}
.aem-AuthorLayer-Edit .inpagecontainer.hideInPageNav {
  height: fit-content;
  width: 0;
  margin: 0;
  padding: 0;
}
.aem-AuthorLayer-Edit .inpagecontainer.hideInPageNav:after {
  content: "The In-page navigation container is hidden!";
  position: absolute;
  width: 100%;
  height: fit-content;
  background-color: lightgrey;
}
.aem-AuthorLayer-Edit .inpagecontainer.hideInPageNav .cmp-breadcrumb {
  margin: 0;
  padding: 0;
}

.cmp-webinar-container .wc-modal-container {
  scroll-behavior: smooth;
  transition: all 250ms ease-out;
  width: 100%;
  height: 0;
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  overflow-y: auto;
  background: linear-gradient(135deg, #000835, #000835);
}
.cmp-webinar-container .wc-modal-container .wc-modal-content {
  width: 100%;
  padding: 20px;
  background-color: #fff;
  margin: 2.5rem auto;
}
@media (min-width: 768px) {
  .cmp-webinar-container .wc-modal-container .wc-modal-content {
    max-width: 800px;
  }
}
@media (min-width: 576px) and (max-width: 768px) {
  .cmp-webinar-container .wc-modal-container .wc-modal-content {
    max-width: 500px;
  }
}
.cmp-webinar-container .wc-modal-container .wc-modal-content .wc-modal-header {
  display: flex;
  padding: 1.2rem;
  align-items: flex-start;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.cmp-webinar-container .wc-modal-container .wc-modal-content .wc-modal-header button.close {
  padding: 1.2rem;
  margin: -1rem -1rem -1rem auto;
  cursor: pointer;
  border: 0;
  background-color: white;
}
.cmp-webinar-container .wc-modal-container.active {
  height: 100%;
  opacity: 1;
}
body:has(div.wc-modal-container.active) {
  position: fixed;
}

.cmp-timeline-element {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 992px) {
  .cmp-timeline-element {
    flex-direction: column;
  }
}
.cmp-timeline-element .player-container {
  width: 770px;
  height: 444px;
}
@media (max-width: 992px) {
  .cmp-timeline-element .player-container {
    width: 610px;
    height: 352px;
  }
}
@media (max-width: 768px) {
  .cmp-timeline-element .player-container {
    width: 90%;
    aspect-ratio: 1.73;
    height: unset;
  }
}
.cmp-timeline-element .player-container .cover-image {
  position: relative;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
  background-color: transparent;
  background-position: center;
}
.cmp-timeline-element .player-container .cover-image .play-button,
.cmp-timeline-element .player-container .cover-image .bg-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.cmp-timeline-element .player-container .cover-image .play-button {
  color: #ebf3ff;
}
.cmp-timeline-element .player-container .cover-image .bg-play-button {
  width: 50px;
  height: 50px;
  background-color: #000835;
  border-radius: 50%;
  z-index: -1;
}
.cmp-timeline-element .text-ctr {
  max-width: 430px;
  margin-left: -32px;
  z-index: 2;
  color: #000835;
}
@media (max-width: 992px) {
  .cmp-timeline-element .text-ctr {
    margin-left: 0;
    margin-top: -24px;
    max-width: 482px;
  }
}
@media (max-width: 768px) {
  .cmp-timeline-element .text-ctr {
    margin-top: -16px;
    max-width: 80%;
  }
}
.cmp-timeline-element .text-ctr h3 {
  background-color: #3a8bff;
  margin: 0;
  line-height: 26px;
  font-size: 20px;
  padding: 24px 24px 16px 24px;
}
@media (max-width: 992px) and (min-width: 768px) {
  .cmp-timeline-element .text-ctr h3 {
    padding: 16px;
  }
}
.cmp-timeline-element .text-ctr .text-ctr-description {
  background-color: var(--description-bg-color);
  padding: 16px 24px 24px 24px;
}
@media (max-width: 992px) and (min-width: 768px) {
  .cmp-timeline-element .text-ctr .text-ctr-description {
    padding: 16px;
  }
}
.cmp-timeline-element .text-ctr .text-ctr-description p {
  font-size: 16px;
  margin-bottom: 8px !important;
}
.cmp-timeline-element .text-ctr .text-ctr-link {
  display: flex;
  align-items: center;
  color: var(--button-color);
}
.cmp-timeline-element .text-ctr .text-ctr-link a {
  color: var(--button-color);
  font-weight: 700;
  text-decoration: none;
  font-size: 18px;
  position: relative;
}
.cmp-timeline-element .text-ctr .text-ctr-link a::before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--button-color);
  transform: scaleX(0);
  transform-origin: top left;
  transition: transform 0.3s ease;
}
.cmp-timeline-element .text-ctr .text-ctr-link a:hover::before {
  transform: scaleX(1);
}

.cmp-timeline-element {
  --description-bg-color: #f2f2f2;
  --button-color: #0c66e1;
}
.cmp-timeline.color-sky .cmp-timeline-element {
  --description-bg-color: #c5d5f9;
  --button-color: #000835;
}

.cmp-timeline {
  margin: auto;
  font-family: 'Amadeus Neue', serif;
  padding: 72px 0;
  background-color: var(--background-color);
}
@media (max-width: 992px) and (min-width: 768px) {
  .cmp-timeline {
    padding: 64px 0;
  }
}
@media (max-width: 767px) {
  .cmp-timeline {
    padding: 48px 0;
  }
}
.cmp-timeline-title {
  color: var(--font-color);
  margin: 0 auto 16px;
  font-size: 32px;
  font-weight: 500;
  text-align: center;
}
.cmp-timeline-description {
  color: var(--font-color);
  text-align: center;
  max-width: 770px;
  font-size: 18px;
  margin: 0 auto 40px;
}
@media (max-width: 992px) {
  .cmp-timeline-description {
    margin: 0 auto 32px;
  }
}
@media (max-width: 768px) {
  .cmp-timeline-description {
    max-width: 90%;
  }
}
.cmp-timeline .cmp-carousel__content {
  max-width: 1170px;
  margin: auto;
}

.cmp-timeline .cmp-carousel__actions {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 32px;
  gap: 48px;
}
@media (max-width: 992px) and (min-width: 768px) {
  .cmp-timeline .cmp-carousel__actions {
    gap: 24px;
  }
}
@media (max-width: 767px) {
  .cmp-timeline .cmp-carousel__actions {
    margin-bottom: 24px;
  }
}
.cmp-timeline .cmp-carousel__actions .cmp-carousel__indicators {
  display: flex;
  align-items: center;
  pointer-events: none;
  gap: 32px;
}
@media (max-width: 992px) and (min-width: 768px) {
  .cmp-timeline .cmp-carousel__actions .cmp-carousel__indicators {
    gap: 24px;
  }
}
.cmp-timeline .cmp-carousel__actions .cmp-carousel__indicators li.cmp-carousel__indicator {
  background-color: #cccccc;
  margin: 0;
  height: 8px;
  width: 8px;
}
.cmp-timeline .cmp-carousel__actions .cmp-carousel__indicators li.cmp-carousel__indicator-small {
  width: 4px;
  height: 4px;
}
@media (max-width: 767px) {
  .cmp-timeline .cmp-carousel__actions .cmp-carousel__indicators li.cmp-carousel__indicator:not(.cmp-carousel__indicator--active) {
    display: none;
  }
}
.cmp-timeline .cmp-carousel__actions .cmp-carousel__indicators li.cmp-carousel__indicator--active {
  all: initial;
  font-weight: bolder;
  font-family: sans-serif;
  font-size: 22px;
  padding: 8px 16px;
  border-radius: 4px;
  color: var(--active-item-color);
  border: 4px solid var(--active-item-border-color);
}
.cmp-timeline .cmp-carousel__actions button.cmp-carousel__action {
  border: none;
  color: var(--font-color);
  font-size: 32px;
  background-color: var(--background-color);
  width: 48px;
  height: 48px;
}
.cmp-timeline .cmp-carousel__actions button.cmp-carousel__action:hover {
  background-color: var(--action-button-hover-bg-color);
  border: 1px solid var(--action-button-hover-bg-color);
  border-radius: 26px;
  color: #1a1a1a;
}
.cmp-timeline .cmp-carousel__actions button.cmp-carousel__action:focus {
  border: 2px solid var(--action-button-focus-border-color);
  border-radius: 26px;
  background-color: var(--action-button-hover-bg-color);
  color: #1a1a1a;
}

.cmp-timeline {
  --background-color: #ffffff;
  --font-color: #1a1a1a;
  --active-item-color: #0c66e1;
  --active-item-border-color: #0c66e1;
  --action-button-hover-bg-color: #f2f2f2;
  --action-button-focus-border-color: #0c66e1;
}
.cmp-timeline.color-sky {
  --background-color: #000835;
  --font-color: #ffffff;
  --active-item-color: #ffffff;
  --active-item-border-color: #3a8bff;
  --action-button-hover-bg-color: #c5d5f9;
  --action-button-focus-border-color: #61a2ff;
}

body.articlepage-webevo .flexContLinks.cmp-container p {
  padding-bottom: 10px;
}

.button {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  /*REMOVE this as it is better to define size at component level */
  width: fit-content;
  gap: 8px;
  background-clip: padding-box;
  text-decoration: none;
  border-radius: 8px;
  font-family: "Amadeus-Medium";
  font-weight: 500;
  line-height: 150%;
}
.button.primary {
  background-color: #0c66e1;
  color: #ffffff;
  border: 2px solid transparent;
}
.button.primary.outline {
  background-color: transparent;
  border-color: #0c66e1;
  color: #0c66e1;
}
.button.primary:hover {
  border-color: transparent;
  color: #ffffff;
  background-color: #0a2f62;
}
.button.primary:focus-visible {
  color: #ffffff;
  background-color: #0a2f62;
  border-color: transparent;
  outline: 2px solid #0a2f62;
}
.button.primary:active {
  outline: none;
  border-color: transparent;
  color: #ffffff;
  background-color: #000835;
}
.button.primary.ghost {
  color: #0c66e1;
  background-color: transparent;
  border-color: transparent;
  padding-left: 0;
  padding-right: 0;
}
.button.primary.ghost .button__label {
  position: relative;
}
.button.primary.ghost .button__label:after {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  width: 0;
  transition: width 400ms;
  height: 1px;
  background-color: #0c66e1;
}
.button.primary.ghost:hover {
  border-color: transparent;
  color: #0c66e1;
  background-color: transparent;
}
.button.primary.ghost:hover .button__label::after {
  width: 100%;
}
.button.primary.ghost:active {
  border-color: transparent;
  background-color: #ebf3ff;
  color: #000835;
}
.button.primary.ghost:focus-visible {
  outline: none;
  background-color: transparent;
  border-color: #0c66e1;
  color: #0c66e1;
}
.button__icon {
  font-size: 24px;
  margin-bottom: 0;
}
.button {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  /*REMOVE this as it is better to define size at component level */
  width: fit-content;
  gap: 8px;
  background-clip: padding-box;
  text-decoration: none;
  border-radius: 8px;
  font-family: "Amadeus-Medium";
  font-weight: 500;
  line-height: 150%;
}
.button.dark {
  background-color: #000835;
  color: #ffffff;
  border: 2px solid transparent;
}
.button.dark.outline {
  background-color: transparent;
  border-color: #000835;
  color: #000835;
}
.button.dark:hover {
  border-color: transparent;
  color: #ffffff;
  background-color: #0a2f62;
}
.button.dark:focus-visible {
  color: #ffffff;
  background-color: #0a2f62;
  border-color: transparent;
  outline: 2px solid #0a2f62;
}
.button.dark:active {
  outline: none;
  border-color: transparent;
  color: #ffffff;
  background-color: #104ea4;
}
.button.dark.ghost {
  color: #000835;
  background-color: transparent;
  border-color: transparent;
  padding-left: 0;
  padding-right: 0;
}
.button.dark.ghost .button__label {
  position: relative;
}
.button.dark.ghost .button__label:after {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  width: 0;
  transition: width 400ms;
  height: 1px;
  background-color: #000835;
}
.button.dark.ghost:hover {
  border-color: transparent;
  color: #000835;
  background-color: transparent;
}
.button.dark.ghost:hover .button__label::after {
  width: 100%;
}
.button.dark.ghost:active {
  border-color: transparent;
  background-color: #ebf3ff;
  color: #000835;
}
.button.dark.ghost:focus-visible {
  outline: none;
  background-color: transparent;
  border-color: #000835;
  color: #000835;
}
.button__icon {
  font-size: 24px;
  margin-bottom: 0;
}
.button {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  /*REMOVE this as it is better to define size at component level */
  width: fit-content;
  gap: 8px;
  background-clip: padding-box;
  text-decoration: none;
  border-radius: 8px;
  font-family: "Amadeus-Medium";
  font-weight: 500;
  line-height: 150%;
}
.button.inverse {
  background-color: #ebf3ff;
  color: #000835;
  border: 2px solid transparent;
}
.button.inverse.outline {
  background-color: transparent;
  border-color: #ebf3ff;
  color: #ebf3ff;
}
.button.inverse:hover {
  border-color: transparent;
  color: #ffffff;
  background-color: #9fc6ff;
}
.button.inverse:focus-visible {
  color: #ffffff;
  background-color: #9fc6ff;
  border-color: transparent;
  outline: 2px solid #9fc6ff;
}
.button.inverse:active {
  outline: none;
  border-color: transparent;
  color: #ffffff;
  background-color: #61a2ff;
}
.button.inverse.ghost {
  color: #ebf3ff;
  background-color: transparent;
  border-color: transparent;
  padding-left: 0;
  padding-right: 0;
}
.button.inverse.ghost .button__label {
  position: relative;
}
.button.inverse.ghost .button__label:after {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  width: 0;
  transition: width 400ms;
  height: 1px;
  background-color: #ebf3ff;
}
.button.inverse.ghost:hover {
  border-color: transparent;
  color: #ebf3ff;
  background-color: transparent;
}
.button.inverse.ghost:hover .button__label::after {
  width: 100%;
}
.button.inverse.ghost:active {
  border-color: transparent;
  background-color: #ebf3ff;
  color: #000835;
}
.button.inverse.ghost:focus-visible {
  outline: none;
  background-color: transparent;
  border-color: #9fc6ff;
  color: #ebf3ff;
}
.button__icon {
  font-size: 24px;
  margin-bottom: 0;
}
.button.big {
  padding: 16px;
  font-size: 22px;
}
.button.small {
  padding: 10px 16px;
  font-size: 18px;
}
.cmp-base {
  padding: 72px 0;
}
@media (max-width: 991px) {
  .cmp-base {
    padding: 64px 0;
  }
}
@media (max-width: 767px) {
  .cmp-base {
    padding: 48px 0;
  }
}
.cmp-base.padding-top--small {
  padding-top: 40px;
}
@media (max-width: 991px) {
  .cmp-base.padding-top--small {
    padding-top: 32px;
  }
}
@media (max-width: 767px) {
  .cmp-base.padding-top--small {
    padding-top: 24px;
  }
}
.cmp-base.padding-bottom--small {
  padding-bottom: 40px;
}
@media (max-width: 991px) {
  .cmp-base.padding-bottom--small {
    padding-bottom: 32px;
  }
}
@media (max-width: 767px) {
  .cmp-base.padding-bottom--small {
    padding-bottom: 24px;
  }
}
.cmp-base.padding-top--none {
  padding-top: 0;
}
@media (max-width: 991px) {
  .cmp-base.padding-top--none {
    padding-top: 0;
  }
}
@media (max-width: 767px) {
  .cmp-base.padding-top--none {
    padding-top: 0;
  }
}
.cmp-base.padding-bottom--none {
  padding-bottom: 0;
}
@media (max-width: 991px) {
  .cmp-base.padding-bottom--none {
    padding-bottom: 0;
  }
}
@media (max-width: 767px) {
  .cmp-base.padding-bottom--none {
    padding-bottom: 0;
  }
}
.testimonialcomponent {
  padding: 72px 0 !important;
  /* REMOVE when scss from ui.frontend will be split */
}
.testimonialcomponent .button {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  /*REMOVE this as it is better to define size at component level */
  width: fit-content;
  gap: 8px;
  background-clip: padding-box;
  text-decoration: none;
  border-radius: 8px;
  font-family: "Amadeus-Medium";
  font-weight: 500;
  line-height: 150%;
}
.testimonialcomponent .button.primary {
  background-color: #0c66e1;
  color: #ffffff;
  border: 2px solid transparent;
}
.testimonialcomponent .button.primary.outline {
  background-color: transparent;
  border-color: #0c66e1;
  color: #0c66e1;
}
.testimonialcomponent .button.primary:hover {
  border-color: transparent;
  color: #ffffff;
  background-color: #0a2f62;
}
.testimonialcomponent .button.primary:focus-visible {
  color: #ffffff;
  background-color: #0a2f62;
  border-color: transparent;
  outline: 2px solid #0a2f62;
}
.testimonialcomponent .button.primary:active {
  outline: none;
  border-color: transparent;
  color: #ffffff;
  background-color: #000835;
}
.testimonialcomponent .button.primary.ghost {
  color: #0c66e1;
  background-color: transparent;
  border-color: transparent;
  padding-left: 0;
  padding-right: 0;
}
.testimonialcomponent .button.primary.ghost .button__label {
  position: relative;
}
.testimonialcomponent .button.primary.ghost .button__label:after {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  width: 0;
  transition: width 400ms;
  height: 1px;
  background-color: #0c66e1;
}
.testimonialcomponent .button.primary.ghost:hover {
  border-color: transparent;
  color: #0c66e1;
  background-color: transparent;
}
.testimonialcomponent .button.primary.ghost:hover .button__label::after {
  width: 100%;
}
.testimonialcomponent .button.primary.ghost:active {
  border-color: transparent;
  background-color: #ebf3ff;
  color: #000835;
}
.testimonialcomponent .button.primary.ghost:focus-visible {
  outline: none;
  background-color: transparent;
  border-color: #0c66e1;
  color: #0c66e1;
}
.testimonialcomponent .button__icon {
  font-size: 24px;
  margin-bottom: 0;
}
.testimonialcomponent .button {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  /*REMOVE this as it is better to define size at component level */
  width: fit-content;
  gap: 8px;
  background-clip: padding-box;
  text-decoration: none;
  border-radius: 8px;
  font-family: "Amadeus-Medium";
  font-weight: 500;
  line-height: 150%;
}
.testimonialcomponent .button.dark {
  background-color: #000835;
  color: #ffffff;
  border: 2px solid transparent;
}
.testimonialcomponent .button.dark.outline {
  background-color: transparent;
  border-color: #000835;
  color: #000835;
}
.testimonialcomponent .button.dark:hover {
  border-color: transparent;
  color: #ffffff;
  background-color: #0a2f62;
}
.testimonialcomponent .button.dark:focus-visible {
  color: #ffffff;
  background-color: #0a2f62;
  border-color: transparent;
  outline: 2px solid #0a2f62;
}
.testimonialcomponent .button.dark:active {
  outline: none;
  border-color: transparent;
  color: #ffffff;
  background-color: #104ea4;
}
.testimonialcomponent .button.dark.ghost {
  color: #000835;
  background-color: transparent;
  border-color: transparent;
  padding-left: 0;
  padding-right: 0;
}
.testimonialcomponent .button.dark.ghost .button__label {
  position: relative;
}
.testimonialcomponent .button.dark.ghost .button__label:after {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  width: 0;
  transition: width 400ms;
  height: 1px;
  background-color: #000835;
}
.testimonialcomponent .button.dark.ghost:hover {
  border-color: transparent;
  color: #000835;
  background-color: transparent;
}
.testimonialcomponent .button.dark.ghost:hover .button__label::after {
  width: 100%;
}
.testimonialcomponent .button.dark.ghost:active {
  border-color: transparent;
  background-color: #ebf3ff;
  color: #000835;
}
.testimonialcomponent .button.dark.ghost:focus-visible {
  outline: none;
  background-color: transparent;
  border-color: #000835;
  color: #000835;
}
.testimonialcomponent .button__icon {
  font-size: 24px;
  margin-bottom: 0;
}
.testimonialcomponent .button {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  /*REMOVE this as it is better to define size at component level */
  width: fit-content;
  gap: 8px;
  background-clip: padding-box;
  text-decoration: none;
  border-radius: 8px;
  font-family: "Amadeus-Medium";
  font-weight: 500;
  line-height: 150%;
}
.testimonialcomponent .button.inverse {
  background-color: #ebf3ff;
  color: #000835;
  border: 2px solid transparent;
}
.testimonialcomponent .button.inverse.outline {
  background-color: transparent;
  border-color: #ebf3ff;
  color: #ebf3ff;
}
.testimonialcomponent .button.inverse:hover {
  border-color: transparent;
  color: #ffffff;
  background-color: #9fc6ff;
}
.testimonialcomponent .button.inverse:focus-visible {
  color: #ffffff;
  background-color: #9fc6ff;
  border-color: transparent;
  outline: 2px solid #9fc6ff;
}
.testimonialcomponent .button.inverse:active {
  outline: none;
  border-color: transparent;
  color: #ffffff;
  background-color: #61a2ff;
}
.testimonialcomponent .button.inverse.ghost {
  color: #ebf3ff;
  background-color: transparent;
  border-color: transparent;
  padding-left: 0;
  padding-right: 0;
}
.testimonialcomponent .button.inverse.ghost .button__label {
  position: relative;
}
.testimonialcomponent .button.inverse.ghost .button__label:after {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  width: 0;
  transition: width 400ms;
  height: 1px;
  background-color: #ebf3ff;
}
.testimonialcomponent .button.inverse.ghost:hover {
  border-color: transparent;
  color: #ebf3ff;
  background-color: transparent;
}
.testimonialcomponent .button.inverse.ghost:hover .button__label::after {
  width: 100%;
}
.testimonialcomponent .button.inverse.ghost:active {
  border-color: transparent;
  background-color: #ebf3ff;
  color: #000835;
}
.testimonialcomponent .button.inverse.ghost:focus-visible {
  outline: none;
  background-color: transparent;
  border-color: #9fc6ff;
  color: #ebf3ff;
}
.testimonialcomponent .button__icon {
  font-size: 24px;
  margin-bottom: 0;
}
.testimonialcomponent.color--sky {
  background-color: #c5d5f9 !important;
}
.testimonialcomponent.color--sky .header .testimonialTitle,
.testimonialcomponent.color--sky .header .label {
  color: #000835 !important;
}
.testimonialcomponent.color--sky .cmp-carousel__action,
.testimonialcomponent.color--sky .cmp-carousel__numerator {
  color: #000835 !important;
}
.testimonialcomponent.color--sky .companyTestimonial .h4 {
  color: #000835 !important;
}
.testimonialcomponent.color--sky .authorTestimonial {
  background-color: #000835 !important;
}
.testimonialcomponent.color--sky .moduleTestimonial {
  background-color: #000835 !important;
}
.testimonialcomponent.color--sky .moduleTestimonial p.h1,
.testimonialcomponent.color--sky .moduleTestimonial h4.h4 {
  color: #3a8bff !important;
}
.testimonialcomponent.color--violet {
  background-color: #e4c7ff !important;
}
.testimonialcomponent.color--violet .header .testimonialTitle,
.testimonialcomponent.color--violet .header .label {
  color: #26005a !important;
}
.testimonialcomponent.color--violet .cmp-carousel__action,
.testimonialcomponent.color--violet .cmp-carousel__numerator {
  color: #26005a !important;
}
.testimonialcomponent.color--violet .companyTestimonial .h4 {
  color: #26005a !important;
}
.testimonialcomponent.color--violet .authorTestimonial {
  background-color: #26005a !important;
}
.testimonialcomponent.color--violet .moduleTestimonial {
  background-color: #26005a !important;
}
.testimonialcomponent.color--violet .moduleTestimonial p.h1,
.testimonialcomponent.color--violet .moduleTestimonial h4.h4 {
  color: #b650ff !important;
}
.testimonialcomponent.color--forest {
  background-color: #c8ffc0 !important;
}
.testimonialcomponent.color--forest .header .testimonialTitle,
.testimonialcomponent.color--forest .header .label {
  color: #023a00 !important;
}
.testimonialcomponent.color--forest .cmp-carousel__action,
.testimonialcomponent.color--forest .cmp-carousel__numerator {
  color: #023a00 !important;
}
.testimonialcomponent.color--forest .companyTestimonial .h4 {
  color: #023a00 !important;
}
.testimonialcomponent.color--forest .authorTestimonial {
  background-color: #023a00 !important;
}
.testimonialcomponent.color--forest .moduleTestimonial {
  background-color: #023a00 !important;
}
.testimonialcomponent.color--forest .moduleTestimonial p.h1,
.testimonialcomponent.color--forest .moduleTestimonial h4.h4 {
  color: #92ff73 !important;
}
.testimonialcomponent.color--sky .slideTestimonial .button {
  text-align: center !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: fit-content !important;
  gap: 8px !important;
  background-clip: padding-box !important;
  text-decoration: none !important;
  border-radius: 8px !important;
  font-weight: 500 !important;
  line-height: 150% !important;
  background-color: #000835 !important;
  color: #ffffff !important;
  border: 2px solid transparent !important;
}
.testimonialcomponent.color--sky .slideTestimonial .button.outline {
  background-color: transparent !important;
  border-color: #000835 !important;
  color: #000835 !important;
}
.testimonialcomponent.color--sky .slideTestimonial .button:hover {
  border-color: transparent !important;
  color: #ffffff !important;
  background-color: #0a2f62 !important;
}
.testimonialcomponent.color--sky .slideTestimonial .button:focus-visible {
  color: #ffffff !important;
  background-color: #0a2f62 !important;
  border-color: transparent !important;
  outline: 2px solid #0a2f62 !important;
}
.testimonialcomponent.color--sky .slideTestimonial .button:active {
  outline: none !important;
  border-color: transparent !important;
  color: #ffffff !important;
  background-color: #104ea4 !important;
}
.testimonialcomponent.color--sky .slideTestimonial .button.ghost {
  color: #000835 !important;
  background-color: transparent !important;
  border-color: transparent !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.testimonialcomponent.color--sky .slideTestimonial .button.ghost .button__label {
  position: relative !important;
}
.testimonialcomponent.color--sky .slideTestimonial .button.ghost .button__label:after {
  position: absolute !important;
  content: '' !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 0 !important;
  transition: width 400ms !important;
  height: 1px !important;
  background-color: #000835 !important;
}
.testimonialcomponent.color--sky .slideTestimonial .button.ghost:hover {
  border-color: transparent !important;
  color: #000835 !important;
  background-color: transparent !important;
}
.testimonialcomponent.color--sky .slideTestimonial .button.ghost:hover .button__label::after {
  width: 100% !important;
}
.testimonialcomponent.color--sky .slideTestimonial .button.ghost:focus-visible {
  outline: none !important;
  background-color: transparent !important;
  border-color: #000835 !important;
  color: #000835 !important;
}
.testimonialcomponent.color--sky .slideTestimonial .button.ghost:active {
  border-color: transparent !important;
  background-color: #ebf3ff !important;
  color: #000835 !important;
}
.testimonialcomponent.color--sky .slideTestimonial .button__icon {
  font-size: 24px !important;
  margin-bottom: 0 !important;
}
.testimonialcomponent.color--violet .slideTestimonial .button {
  text-align: center !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: fit-content !important;
  gap: 8px !important;
  background-clip: padding-box !important;
  text-decoration: none !important;
  border-radius: 8px !important;
  font-weight: 500 !important;
  line-height: 150% !important;
  background-color: #26005a !important;
  color: #ffffff !important;
  border: 2px solid transparent !important;
}
.testimonialcomponent.color--violet .slideTestimonial .button.outline {
  background-color: transparent !important;
  border-color: #26005a !important;
  color: #26005a !important;
}
.testimonialcomponent.color--violet .slideTestimonial .button:hover {
  border-color: transparent !important;
  color: #ffffff !important;
  background-color: #461b64 !important;
}
.testimonialcomponent.color--violet .slideTestimonial .button:focus-visible {
  color: #ffffff !important;
  background-color: #461b64 !important;
  border-color: transparent !important;
  outline: 2px solid #461b64 !important;
}
.testimonialcomponent.color--violet .slideTestimonial .button:active {
  outline: none !important;
  border-color: transparent !important;
  color: #ffffff !important;
  background-color: #6d3099 !important;
}
.testimonialcomponent.color--violet .slideTestimonial .button.ghost {
  color: #26005a !important;
  background-color: transparent !important;
  border-color: transparent !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.testimonialcomponent.color--violet .slideTestimonial .button.ghost .button__label {
  position: relative !important;
}
.testimonialcomponent.color--violet .slideTestimonial .button.ghost .button__label:after {
  position: absolute !important;
  content: '' !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 0 !important;
  transition: width 400ms !important;
  height: 1px !important;
  background-color: #26005a !important;
}
.testimonialcomponent.color--violet .slideTestimonial .button.ghost:hover {
  border-color: transparent !important;
  color: #26005a !important;
  background-color: transparent !important;
}
.testimonialcomponent.color--violet .slideTestimonial .button.ghost:hover .button__label::after {
  width: 100% !important;
}
.testimonialcomponent.color--violet .slideTestimonial .button.ghost:focus-visible {
  outline: none !important;
  background-color: transparent !important;
  border-color: #26005a !important;
  color: #26005a !important;
}
.testimonialcomponent.color--violet .slideTestimonial .button.ghost:active {
  border-color: transparent !important;
  background-color: #f8eeff !important;
  color: #26005a !important;
}
.testimonialcomponent.color--violet .slideTestimonial .button__icon {
  font-size: 24px !important;
  margin-bottom: 0 !important;
}
.testimonialcomponent.color--forest .slideTestimonial .button {
  text-align: center !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: fit-content !important;
  gap: 8px !important;
  background-clip: padding-box !important;
  text-decoration: none !important;
  border-radius: 8px !important;
  font-weight: 500 !important;
  line-height: 150% !important;
  background-color: #023a00 !important;
  color: #ffffff !important;
  border: 2px solid transparent !important;
}
.testimonialcomponent.color--forest .slideTestimonial .button.outline {
  background-color: transparent !important;
  border-color: #023a00 !important;
  color: #023a00 !important;
}
.testimonialcomponent.color--forest .slideTestimonial .button:hover {
  border-color: transparent !important;
  color: #ffffff !important;
  background-color: #3a662e !important;
}
.testimonialcomponent.color--forest .slideTestimonial .button:focus-visible {
  color: #ffffff !important;
  background-color: #3a662e !important;
  border-color: transparent !important;
  outline: 2px solid #3a662e !important;
}
.testimonialcomponent.color--forest .slideTestimonial .button:active {
  outline: none !important;
  border-color: transparent !important;
  color: #ffffff !important;
  background-color: #569643 !important;
}
.testimonialcomponent.color--forest .slideTestimonial .button.ghost {
  color: #023a00 !important;
  background-color: transparent !important;
  border-color: transparent !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.testimonialcomponent.color--forest .slideTestimonial .button.ghost .button__label {
  position: relative !important;
}
.testimonialcomponent.color--forest .slideTestimonial .button.ghost .button__label:after {
  position: absolute !important;
  content: '' !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 0 !important;
  transition: width 400ms !important;
  height: 1px !important;
  background-color: #023a00 !important;
}
.testimonialcomponent.color--forest .slideTestimonial .button.ghost:hover {
  border-color: transparent !important;
  color: #023a00 !important;
  background-color: transparent !important;
}
.testimonialcomponent.color--forest .slideTestimonial .button.ghost:hover .button__label::after {
  width: 100% !important;
}
.testimonialcomponent.color--forest .slideTestimonial .button.ghost:focus-visible {
  outline: none !important;
  background-color: transparent !important;
  border-color: #023a00 !important;
  color: #023a00 !important;
}
.testimonialcomponent.color--forest .slideTestimonial .button.ghost:active {
  border-color: transparent !important;
  background-color: #f0ffec !important;
  color: #023a00 !important;
}
.testimonialcomponent.color--forest .slideTestimonial .button__icon {
  font-size: 24px !important;
  margin-bottom: 0 !important;
}
.testimonialcomponent.color--sky .moduleTestimonial .button {
  text-align: center !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: fit-content !important;
  gap: 8px !important;
  background-clip: padding-box !important;
  text-decoration: none !important;
  border-radius: 8px !important;
  font-weight: 500 !important;
  line-height: 150% !important;
  background-color: #ebf3ff !important;
  color: #000835 !important;
  border: 2px solid transparent !important;
}
.testimonialcomponent.color--sky .moduleTestimonial .button.outline {
  background-color: transparent !important;
  border-color: #ebf3ff !important;
  color: #ebf3ff !important;
}
.testimonialcomponent.color--sky .moduleTestimonial .button:hover {
  border-color: transparent !important;
  color: #000835 !important;
  background-color: #9fc6ff !important;
}
.testimonialcomponent.color--sky .moduleTestimonial .button:focus-visible {
  color: #000835 !important;
  background-color: #9fc6ff !important;
  border-color: transparent !important;
  outline: 2px solid #9fc6ff !important;
}
.testimonialcomponent.color--sky .moduleTestimonial .button:active {
  outline: none !important;
  border-color: transparent !important;
  color: #ffffff !important;
  background-color: #61a2ff !important;
}
.testimonialcomponent.color--sky .moduleTestimonial .button.ghost {
  color: #ebf3ff !important;
  background-color: transparent !important;
  border-color: transparent !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.testimonialcomponent.color--sky .moduleTestimonial .button.ghost .button__label {
  position: relative !important;
}
.testimonialcomponent.color--sky .moduleTestimonial .button.ghost .button__label:after {
  position: absolute !important;
  content: '' !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 0 !important;
  transition: width 400ms !important;
  height: 1px !important;
  background-color: #ebf3ff !important;
}
.testimonialcomponent.color--sky .moduleTestimonial .button.ghost:hover {
  border-color: transparent !important;
  color: #ebf3ff !important;
  background-color: transparent !important;
}
.testimonialcomponent.color--sky .moduleTestimonial .button.ghost:hover .button__label::after {
  width: 100% !important;
}
.testimonialcomponent.color--sky .moduleTestimonial .button.ghost:focus-visible {
  outline: none !important;
  background-color: transparent !important;
  border-color: #9fc6ff !important;
  color: #ebf3ff !important;
}
.testimonialcomponent.color--sky .moduleTestimonial .button.ghost:active {
  border-color: transparent !important;
  background-color: #ebf3ff !important;
  color: #000835 !important;
}
.testimonialcomponent.color--sky .moduleTestimonial .button__icon {
  font-size: 24px !important;
  margin-bottom: 0 !important;
}
.testimonialcomponent.color--violet .moduleTestimonial .button {
  text-align: center !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: fit-content !important;
  gap: 8px !important;
  background-clip: padding-box !important;
  text-decoration: none !important;
  border-radius: 8px !important;
  font-weight: 500 !important;
  line-height: 150% !important;
  background-color: #f8eeff !important;
  color: #26005a !important;
  border: 2px solid transparent !important;
}
.testimonialcomponent.color--violet .moduleTestimonial .button.outline {
  background-color: transparent !important;
  border-color: #f8eeff !important;
  color: #f8eeff !important;
}
.testimonialcomponent.color--violet .moduleTestimonial .button:hover {
  border-color: transparent !important;
  color: #26005a !important;
  background-color: #d396ff !important;
}
.testimonialcomponent.color--violet .moduleTestimonial .button:focus-visible {
  color: #26005a !important;
  background-color: #d396ff !important;
  border-color: transparent !important;
  outline: 2px solid #d396ff !important;
}
.testimonialcomponent.color--violet .moduleTestimonial .button:active {
  outline: none !important;
  border-color: transparent !important;
  color: #ffffff !important;
  background-color: #c573ff !important;
}
.testimonialcomponent.color--violet .moduleTestimonial .button.ghost {
  color: #f8eeff !important;
  background-color: transparent !important;
  border-color: transparent !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.testimonialcomponent.color--violet .moduleTestimonial .button.ghost .button__label {
  position: relative !important;
}
.testimonialcomponent.color--violet .moduleTestimonial .button.ghost .button__label:after {
  position: absolute !important;
  content: '' !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 0 !important;
  transition: width 400ms !important;
  height: 1px !important;
  background-color: #f8eeff !important;
}
.testimonialcomponent.color--violet .moduleTestimonial .button.ghost:hover {
  border-color: transparent !important;
  color: #f8eeff !important;
  background-color: transparent !important;
}
.testimonialcomponent.color--violet .moduleTestimonial .button.ghost:hover .button__label::after {
  width: 100% !important;
}
.testimonialcomponent.color--violet .moduleTestimonial .button.ghost:focus-visible {
  outline: none !important;
  background-color: transparent !important;
  border-color: #d396ff !important;
  color: #f8eeff !important;
}
.testimonialcomponent.color--violet .moduleTestimonial .button.ghost:active {
  border-color: transparent !important;
  background-color: #f8eeff !important;
  color: #26005a !important;
}
.testimonialcomponent.color--violet .moduleTestimonial .button__icon {
  font-size: 24px !important;
  margin-bottom: 0 !important;
}
.testimonialcomponent.color--crimson .moduleTestimonial .button {
  text-align: center !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: fit-content !important;
  gap: 8px !important;
  background-clip: padding-box !important;
  text-decoration: none !important;
  border-radius: 8px !important;
  font-weight: 500 !important;
  line-height: 150% !important;
  background-color: #ffeeed !important;
  color: #560900 !important;
  border: 2px solid transparent !important;
}
.testimonialcomponent.color--crimson .moduleTestimonial .button.outline {
  background-color: transparent !important;
  border-color: #ffeeed !important;
  color: #ffeeed !important;
}
.testimonialcomponent.color--crimson .moduleTestimonial .button:hover {
  border-color: transparent !important;
  color: #560900 !important;
  background-color: #ff9794 !important;
}
.testimonialcomponent.color--crimson .moduleTestimonial .button:focus-visible {
  color: #560900 !important;
  background-color: #ff9794 !important;
  border-color: transparent !important;
  outline: 2px solid #ff9794 !important;
}
.testimonialcomponent.color--crimson .moduleTestimonial .button:active {
  outline: none !important;
  border-color: transparent !important;
  color: #ffffff !important;
  background-color: #ff7471 !important;
}
.testimonialcomponent.color--crimson .moduleTestimonial .button.ghost {
  color: #ffeeed !important;
  background-color: transparent !important;
  border-color: transparent !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.testimonialcomponent.color--crimson .moduleTestimonial .button.ghost .button__label {
  position: relative !important;
}
.testimonialcomponent.color--crimson .moduleTestimonial .button.ghost .button__label:after {
  position: absolute !important;
  content: '' !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 0 !important;
  transition: width 400ms !important;
  height: 1px !important;
  background-color: #ffeeed !important;
}
.testimonialcomponent.color--crimson .moduleTestimonial .button.ghost:hover {
  border-color: transparent !important;
  color: #ffeeed !important;
  background-color: transparent !important;
}
.testimonialcomponent.color--crimson .moduleTestimonial .button.ghost:hover .button__label::after {
  width: 100% !important;
}
.testimonialcomponent.color--crimson .moduleTestimonial .button.ghost:focus-visible {
  outline: none !important;
  background-color: transparent !important;
  border-color: #ff9794 !important;
  color: #ffeeed !important;
}
.testimonialcomponent.color--crimson .moduleTestimonial .button.ghost:active {
  border-color: transparent !important;
  background-color: #ffeeed !important;
  color: #560900 !important;
}
.testimonialcomponent.color--crimson .moduleTestimonial .button__icon {
  font-size: 24px !important;
  margin-bottom: 0 !important;
}
.testimonialcomponent.color--forest .moduleTestimonial .button {
  text-align: center !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: fit-content !important;
  gap: 8px !important;
  background-clip: padding-box !important;
  text-decoration: none !important;
  border-radius: 8px !important;
  font-weight: 500 !important;
  line-height: 150% !important;
  background-color: #f0ffec !important;
  color: #023a00 !important;
  border: 2px solid transparent !important;
}
.testimonialcomponent.color--forest .moduleTestimonial .button.outline {
  background-color: transparent !important;
  border-color: #f0ffec !important;
  color: #f0ffec !important;
}
.testimonialcomponent.color--forest .moduleTestimonial .button:hover {
  border-color: transparent !important;
  color: #023a00 !important;
  background-color: #beffab !important;
}
.testimonialcomponent.color--forest .moduleTestimonial .button:focus-visible {
  color: #023a00 !important;
  background-color: #beffab !important;
  border-color: transparent !important;
  outline: 2px solid #beffab !important;
}
.testimonialcomponent.color--forest .moduleTestimonial .button:active {
  outline: none !important;
  border-color: transparent !important;
  color: #ffffff !important;
  background-color: #a8ff8f !important;
}
.testimonialcomponent.color--forest .moduleTestimonial .button.ghost {
  color: #f0ffec !important;
  background-color: transparent !important;
  border-color: transparent !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.testimonialcomponent.color--forest .moduleTestimonial .button.ghost .button__label {
  position: relative !important;
}
.testimonialcomponent.color--forest .moduleTestimonial .button.ghost .button__label:after {
  position: absolute !important;
  content: '' !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 0 !important;
  transition: width 400ms !important;
  height: 1px !important;
  background-color: #f0ffec !important;
}
.testimonialcomponent.color--forest .moduleTestimonial .button.ghost:hover {
  border-color: transparent !important;
  color: #f0ffec !important;
  background-color: transparent !important;
}
.testimonialcomponent.color--forest .moduleTestimonial .button.ghost:hover .button__label::after {
  width: 100% !important;
}
.testimonialcomponent.color--forest .moduleTestimonial .button.ghost:focus-visible {
  outline: none !important;
  background-color: transparent !important;
  border-color: #beffab !important;
  color: #f0ffec !important;
}
.testimonialcomponent.color--forest .moduleTestimonial .button.ghost:active {
  border-color: transparent !important;
  background-color: #f0ffec !important;
  color: #023a00 !important;
}
.testimonialcomponent.color--forest .moduleTestimonial .button__icon {
  font-size: 24px !important;
  margin-bottom: 0 !important;
}
.testimonialcomponent.color--canary .moduleTestimonial .button {
  text-align: center !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: fit-content !important;
  gap: 8px !important;
  background-clip: padding-box !important;
  text-decoration: none !important;
  border-radius: 8px !important;
  font-weight: 500 !important;
  line-height: 150% !important;
  background-color: #fffce6 !important;
  color: #564a00 !important;
  border: 2px solid transparent !important;
}
.testimonialcomponent.color--canary .moduleTestimonial .button.outline {
  background-color: transparent !important;
  border-color: #fffce6 !important;
  color: #fffce6 !important;
}
.testimonialcomponent.color--canary .moduleTestimonial .button:hover {
  border-color: transparent !important;
  color: #564a00 !important;
  background-color: #fdf092 !important;
}
.testimonialcomponent.color--canary .moduleTestimonial .button:focus-visible {
  color: #564a00 !important;
  background-color: #fdf092 !important;
  border-color: transparent !important;
  outline: 2px solid #fdf092 !important;
}
.testimonialcomponent.color--canary .moduleTestimonial .button:active {
  outline: none !important;
  border-color: transparent !important;
  color: #ffffff !important;
  background-color: #fdeb6d !important;
}
.testimonialcomponent.color--canary .moduleTestimonial .button.ghost {
  color: #fffce6 !important;
  background-color: transparent !important;
  border-color: transparent !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.testimonialcomponent.color--canary .moduleTestimonial .button.ghost .button__label {
  position: relative !important;
}
.testimonialcomponent.color--canary .moduleTestimonial .button.ghost .button__label:after {
  position: absolute !important;
  content: '' !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 0 !important;
  transition: width 400ms !important;
  height: 1px !important;
  background-color: #fffce6 !important;
}
.testimonialcomponent.color--canary .moduleTestimonial .button.ghost:hover {
  border-color: transparent !important;
  color: #fffce6 !important;
  background-color: transparent !important;
}
.testimonialcomponent.color--canary .moduleTestimonial .button.ghost:hover .button__label::after {
  width: 100% !important;
}
.testimonialcomponent.color--canary .moduleTestimonial .button.ghost:focus-visible {
  outline: none !important;
  background-color: transparent !important;
  border-color: #fdf092 !important;
  color: #fffce6 !important;
}
.testimonialcomponent.color--canary .moduleTestimonial .button.ghost:active {
  border-color: transparent !important;
  background-color: #fffce6 !important;
  color: #564a00 !important;
}
.testimonialcomponent.color--canary .moduleTestimonial .button__icon {
  font-size: 24px !important;
  margin-bottom: 0 !important;
}
.testimonialcomponent.color--fuchsia .moduleTestimonial .button {
  text-align: center !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: fit-content !important;
  gap: 8px !important;
  background-clip: padding-box !important;
  text-decoration: none !important;
  border-radius: 8px !important;
  font-weight: 500 !important;
  line-height: 150% !important;
  background-color: #ffeef7 !important;
  color: #4f0230 !important;
  border: 2px solid transparent !important;
}
.testimonialcomponent.color--fuchsia .moduleTestimonial .button.outline {
  background-color: transparent !important;
  border-color: #ffeef7 !important;
  color: #ffeef7 !important;
}
.testimonialcomponent.color--fuchsia .moduleTestimonial .button:hover {
  border-color: transparent !important;
  color: #4f0230 !important;
  background-color: #ff9be3 !important;
}
.testimonialcomponent.color--fuchsia .moduleTestimonial .button:focus-visible {
  color: #4f0230 !important;
  background-color: #ff9be3 !important;
  border-color: transparent !important;
  outline: 2px solid #ff9be3 !important;
}
.testimonialcomponent.color--fuchsia .moduleTestimonial .button:active {
  outline: none !important;
  border-color: transparent !important;
  color: #ffffff !important;
  background-color: #ff79bd !important;
}
.testimonialcomponent.color--fuchsia .moduleTestimonial .button.ghost {
  color: #ffeef7 !important;
  background-color: transparent !important;
  border-color: transparent !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.testimonialcomponent.color--fuchsia .moduleTestimonial .button.ghost .button__label {
  position: relative !important;
}
.testimonialcomponent.color--fuchsia .moduleTestimonial .button.ghost .button__label:after {
  position: absolute !important;
  content: '' !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 0 !important;
  transition: width 400ms !important;
  height: 1px !important;
  background-color: #ffeef7 !important;
}
.testimonialcomponent.color--fuchsia .moduleTestimonial .button.ghost:hover {
  border-color: transparent !important;
  color: #ffeef7 !important;
  background-color: transparent !important;
}
.testimonialcomponent.color--fuchsia .moduleTestimonial .button.ghost:hover .button__label::after {
  width: 100% !important;
}
.testimonialcomponent.color--fuchsia .moduleTestimonial .button.ghost:focus-visible {
  outline: none !important;
  background-color: transparent !important;
  border-color: #ff9be3 !important;
  color: #ffeef7 !important;
}
.testimonialcomponent.color--fuchsia .moduleTestimonial .button.ghost:active {
  border-color: transparent !important;
  background-color: #ffeef7 !important;
  color: #4f0230 !important;
}
.testimonialcomponent.color--fuchsia .moduleTestimonial .button__icon {
  font-size: 24px !important;
  margin-bottom: 0 !important;
}
.testimonialcomponent.color--pumpkin .moduleTestimonial .button {
  text-align: center !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: fit-content !important;
  gap: 8px !important;
  background-clip: padding-box !important;
  text-decoration: none !important;
  border-radius: 8px !important;
  font-weight: 500 !important;
  line-height: 150% !important;
  background-color: #fff0e6 !important;
  color: #5b2500 !important;
  border: 2px solid transparent !important;
}
.testimonialcomponent.color--pumpkin .moduleTestimonial .button.outline {
  background-color: transparent !important;
  border-color: #fff0e6 !important;
  color: #fff0e6 !important;
}
.testimonialcomponent.color--pumpkin .moduleTestimonial .button:hover {
  border-color: transparent !important;
  color: #5b2500 !important;
  background-color: #ffa366 !important;
}
.testimonialcomponent.color--pumpkin .moduleTestimonial .button:focus-visible {
  color: #5b2500 !important;
  background-color: #ffa366 !important;
  border-color: transparent !important;
  outline: 2px solid #ffa366 !important;
}
.testimonialcomponent.color--pumpkin .moduleTestimonial .button:active {
  outline: none !important;
  border-color: transparent !important;
  color: #ffffff !important;
  background-color: #ff8838 !important;
}
.testimonialcomponent.color--pumpkin .moduleTestimonial .button.ghost {
  color: #fff0e6 !important;
  background-color: transparent !important;
  border-color: transparent !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.testimonialcomponent.color--pumpkin .moduleTestimonial .button.ghost .button__label {
  position: relative !important;
}
.testimonialcomponent.color--pumpkin .moduleTestimonial .button.ghost .button__label:after {
  position: absolute !important;
  content: '' !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 0 !important;
  transition: width 400ms !important;
  height: 1px !important;
  background-color: #fff0e6 !important;
}
.testimonialcomponent.color--pumpkin .moduleTestimonial .button.ghost:hover {
  border-color: transparent !important;
  color: #fff0e6 !important;
  background-color: transparent !important;
}
.testimonialcomponent.color--pumpkin .moduleTestimonial .button.ghost:hover .button__label::after {
  width: 100% !important;
}
.testimonialcomponent.color--pumpkin .moduleTestimonial .button.ghost:focus-visible {
  outline: none !important;
  background-color: transparent !important;
  border-color: #ffa366 !important;
  color: #fff0e6 !important;
}
.testimonialcomponent.color--pumpkin .moduleTestimonial .button.ghost:active {
  border-color: transparent !important;
  background-color: #fff0e6 !important;
  color: #5b2500 !important;
}
.testimonialcomponent.color--pumpkin .moduleTestimonial .button__icon {
  font-size: 24px !important;
  margin-bottom: 0 !important;
}
.testimonialcomponent.color--custom .moduleTestimonial .button {
  text-align: center !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: fit-content !important;
  gap: 8px !important;
  background-clip: padding-box !important;
  text-decoration: none !important;
  border-radius: 8px !important;
  font-weight: 500 !important;
  line-height: 150% !important;
  background-color: #000835 !important;
  color: #3a8bff !important;
  border: 2px solid transparent !important;
}
.testimonialcomponent.color--custom .moduleTestimonial .button.outline {
  background-color: transparent !important;
  border-color: #000835 !important;
  color: #000835 !important;
}
.testimonialcomponent.color--custom .moduleTestimonial .button:hover {
  border-color: transparent !important;
  color: #3a8bff !important;
  background-color: #000835 !important;
}
.testimonialcomponent.color--custom .moduleTestimonial .button:focus-visible {
  color: #3a8bff !important;
  background-color: #000835 !important;
  border-color: transparent !important;
  outline: 2px solid #000835 !important;
}
.testimonialcomponent.color--custom .moduleTestimonial .button:active {
  outline: none !important;
  border-color: transparent !important;
  color: #ffffff !important;
  background-color: #61a2ff !important;
}
.testimonialcomponent.color--custom .moduleTestimonial .button.ghost {
  color: #000835 !important;
  background-color: transparent !important;
  border-color: transparent !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.testimonialcomponent.color--custom .moduleTestimonial .button.ghost .button__label {
  position: relative !important;
}
.testimonialcomponent.color--custom .moduleTestimonial .button.ghost .button__label:after {
  position: absolute !important;
  content: '' !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 0 !important;
  transition: width 400ms !important;
  height: 1px !important;
  background-color: #000835 !important;
}
.testimonialcomponent.color--custom .moduleTestimonial .button.ghost:hover {
  border-color: transparent !important;
  color: #000835 !important;
  background-color: transparent !important;
}
.testimonialcomponent.color--custom .moduleTestimonial .button.ghost:hover .button__label::after {
  width: 100% !important;
}
.testimonialcomponent.color--custom .moduleTestimonial .button.ghost:focus-visible {
  outline: none !important;
  background-color: transparent !important;
  border-color: #000835 !important;
  color: #000835 !important;
}
.testimonialcomponent.color--custom .moduleTestimonial .button.ghost:active {
  border-color: transparent !important;
  background-color: #000835 !important;
  color: #3a8bff !important;
}
.testimonialcomponent.color--custom .moduleTestimonial .button__icon {
  font-size: 24px !important;
  margin-bottom: 0 !important;
}
@media (max-width: 991px) {
  .testimonialcomponent {
    padding: 64px 0 !important;
  }
}
@media (max-width: 767px) {
  .testimonialcomponent {
    padding: 48px 0 !important;
  }
}
.testimonialcomponent.padding-top--small {
  padding-top: 40px !important;
}
@media (max-width: 991px) {
  .testimonialcomponent.padding-top--small {
    padding-top: 32px;
  }
}
@media (max-width: 767px) {
  .testimonialcomponent.padding-top--small {
    padding-top: 24px;
  }
}
.testimonialcomponent.padding-bottom--small {
  padding-bottom: 40px !important;
}
@media (max-width: 991px) {
  .testimonialcomponent.padding-bottom--small {
    padding-bottom: 32px;
  }
}
@media (max-width: 767px) {
  .testimonialcomponent.padding-bottom--small {
    padding-bottom: 24px;
  }
}
.testimonialcomponent.padding-top--none {
  padding-top: 0 !important;
}
@media (max-width: 991px) {
  .testimonialcomponent.padding-top--none {
    padding-top: 0;
  }
}
@media (max-width: 767px) {
  .testimonialcomponent.padding-top--none {
    padding-top: 0;
  }
}
.testimonialcomponent.padding-bottom--none {
  padding-bottom: 0 !important;
}
@media (max-width: 991px) {
  .testimonialcomponent.padding-bottom--none {
    padding-bottom: 0;
  }
}
@media (max-width: 767px) {
  .testimonialcomponent.padding-bottom--none {
    padding-bottom: 0;
  }
}
.testimonialcomponent .amadeus-wrapper .cmp-carousel__item {
  overflow: hidden;
}
.testimonialcomponent .amadeus-wrapper .cmp-carousel__item--active {
  overflow: visible;
}
.testimonialcomponent .amadeus-wrapper .cmp-carousel__actions {
  justify-content: start;
  gap: 16px;
  margin-top: 0;
}
.testimonialcomponent .amadeus-wrapper .cmp-carousel__action {
  border: none;
  background-clip: padding-box;
  display: grid;
  place-content: center;
  background-color: transparent;
  border: 2px solid transparent;
  border-radius: 50%;
  padding: 0;
  height: 32px;
}
.testimonialcomponent .amadeus-wrapper .cmp-carousel__action span {
  font-size: 32px;
}
.testimonialcomponent .amadeus-wrapper .cmp-carousel__numerator {
  display: flex;
  justify-content: space-around;
  width: 40px;
}
.testimonialcomponent .amadeus-wrapper .cmp-carousel__current-number,
.testimonialcomponent .amadeus-wrapper .cmp-carousel__total-number {
  width: 10px;
}
.testimonialcomponent .amadeus-wrapper .cmp-carousel__indicators {
  display: none;
}
@media (max-width: 767px) {
  .testimonialcomponent .amadeus-wrapper .cmp-carousel__actions {
    justify-content: center;
  }
}
.testimonialcomponent .amadeus-wrapper .cmp-carousel__content::after {
  content: '';
  height: 48px;
  display: block;
}
.testimonialcomponent .amadeus-wrapper .cmp-carousel__content:has(.cmp-carousel__actions)::after {
  content: none;
}
.testimonialcomponent .amadeus-wrapper .testimonialelement {
  background-color: transparent;
}
.testimonialcomponent .amadeus-wrapper .testimonialelement .label {
  color: #0c66e1;
}
.testimonialcomponent .amadeus-wrapper .testimonialelement .slideTestimonial {
  padding: 0;
  box-shadow: unset;
  background: transparent;
  color: #1a1a1a;
}
.testimonialcomponent .amadeus-wrapper .testimonialelement .slideTestimonial .authorTestimonial {
  width: 62%;
  position: relative;
  padding: 16px;
  background-color: #0c66e1;
  color: #ffffff;
  margin-bottom: 32px;
}
.testimonialcomponent .amadeus-wrapper .testimonialelement .slideTestimonial .authorTestimonial-data {
  max-width: calc(100% - 60px);
}
.testimonialcomponent .amadeus-wrapper .testimonialelement .slideTestimonial .authorTestimonial-image {
  position: absolute;
  top: 24px;
  right: -60px;
}
.testimonialcomponent .amadeus-wrapper .testimonialelement .slideTestimonial .authorTestimonial-image img {
  height: 120px;
  width: 120px;
}
.testimonialcomponent .amadeus-wrapper .testimonialelement .moduleTestimonial {
  min-height: 350px;
  padding: 24px;
  box-shadow: unset;
  background-color: #0c66e1;
  border-bottom-right-radius: unset;
  border-top-right-radius: unset;
  color: #ffffff;
}
.testimonialcomponent .amadeus-wrapper .testimonialelement .moduleTestimonial .testimonialpromo-description {
  color: #ffffff;
}
@media (max-width: 991px) {
  .testimonialcomponent .amadeus-wrapper .testimonialelement .slideTestimonial {
    /* sadly needed... */
    padding: 0 calc(var(--bs-gutter-x)* .5);
  }
  .testimonialcomponent .amadeus-wrapper .testimonialelement .slideTestimonial .authorTestimonial {
    width: 66%;
  }
  .testimonialcomponent .amadeus-wrapper .testimonialelement .slideTestimonial .authorTestimonial-image {
    right: -48px;
  }
  .testimonialcomponent .amadeus-wrapper .testimonialelement .slideTestimonial .authorTestimonial-image img {
    height: 96px;
    width: 96px;
  }
  .testimonialcomponent .amadeus-wrapper .testimonialelement .moduleTestimonial {
    min-height: 250px;
    margin: 48px 0 32px;
    border-radius: 0;
  }
}
@media (max-width: 767px) {
  .testimonialcomponent .amadeus-wrapper .testimonialelement .slideTestimonial .companyTestimonial {
    margin: 24px 0;
  }
  .testimonialcomponent .amadeus-wrapper .testimonialelement .slideTestimonial .authorTestimonial {
    width: 100%;
  }
  .testimonialcomponent .amadeus-wrapper .testimonialelement .slideTestimonial .authorTestimonial-image {
    top: unset;
    right: 15px;
    bottom: -36px;
  }
  .testimonialcomponent .amadeus-wrapper .testimonialelement .slideTestimonial .authorTestimonial-image img {
    height: 72px;
    width: 72px;
  }
  .testimonialcomponent .amadeus-wrapper .testimonialelement .moduleTestimonial {
    min-height: 200px;
    margin: 24px 0 32px;
    padding: 16px;
  }
}

.cmp-ssr {
  display: flex;
  height: 88px;
  width: 100%;
}
.cmp-ssr--sky .cmp-ssr__text,
.cmp-ssr--sky::before {
  background-color: #000835 !important;
}
.cmp-ssr--sky .cmp-ssr__icon-set,
.cmp-ssr--sky::after {
  background-color: #3a8bff !important;
}
.cmp-ssr--sky a.shareaholic-service-icon.shareaholic-service-icon.shareaholic-service-default {
  color: #000835 !important;
  background-color: #3a8bff !important;
}
.cmp-ssr--sky a.shareaholic-service-icon.shareaholic-service-icon.shareaholic-service-default:hover {
  background-color: #9fc6ff !important;
  filter: none !important;
}
.cmp-ssr--sky a.shareaholic-service-icon.shareaholic-service-icon.shareaholic-service-default:focus {
  filter: none !important;
  background-color: #9fc6ff !important;
  outline-color: #000835 !important;
}
.cmp-ssr--sky a.shareaholic-service-icon.shareaholic-service-icon.shareaholic-service-default:active {
  background-color: #9fc6ff !important;
  filter: none !important;
  outline: none !important;
}
.cmp-ssr--violet .cmp-ssr__text,
.cmp-ssr--violet::before {
  background-color: #26005a !important;
}
.cmp-ssr--violet .cmp-ssr__icon-set,
.cmp-ssr--violet::after {
  background-color: #b650ff !important;
}
.cmp-ssr--violet a.shareaholic-service-icon.shareaholic-service-icon.shareaholic-service-default {
  color: #26005a !important;
  background-color: #b650ff !important;
}
.cmp-ssr--violet a.shareaholic-service-icon.shareaholic-service-icon.shareaholic-service-default:hover {
  background-color: #d396ff !important;
  filter: none !important;
}
.cmp-ssr--violet a.shareaholic-service-icon.shareaholic-service-icon.shareaholic-service-default:focus {
  filter: none !important;
  background-color: #d396ff !important;
  outline-color: #26005a !important;
}
.cmp-ssr--violet a.shareaholic-service-icon.shareaholic-service-icon.shareaholic-service-default:active {
  background-color: #d396ff !important;
  filter: none !important;
  outline: none !important;
}
.cmp-ssr--forest .cmp-ssr__text,
.cmp-ssr--forest::before {
  background-color: #023a00 !important;
}
.cmp-ssr--forest .cmp-ssr__icon-set,
.cmp-ssr--forest::after {
  background-color: #92ff73 !important;
}
.cmp-ssr--forest a.shareaholic-service-icon.shareaholic-service-icon.shareaholic-service-default {
  color: #023a00 !important;
  background-color: #92ff73 !important;
}
.cmp-ssr--forest a.shareaholic-service-icon.shareaholic-service-icon.shareaholic-service-default:hover {
  background-color: #beffab !important;
  filter: none !important;
}
.cmp-ssr--forest a.shareaholic-service-icon.shareaholic-service-icon.shareaholic-service-default:focus {
  filter: none !important;
  background-color: #beffab !important;
  outline-color: #023a00 !important;
}
.cmp-ssr--forest a.shareaholic-service-icon.shareaholic-service-icon.shareaholic-service-default:active {
  background-color: #beffab !important;
  filter: none !important;
  outline: none !important;
}
.cmp-ssr::before,
.cmp-ssr::after {
  content: '';
  flex-grow: 1;
  height: 100%;
}
.cmp-ssr__content {
  display: flex;
}
.cmp-ssr__text,
.cmp-ssr::before {
  background-color: #0c66e1;
}
.cmp-ssr__icon-set,
.cmp-ssr::after {
  background-color: #ffffff;
}
.cmp-ssr__text,
.cmp-ssr__icon-set {
  display: flex;
  align-items: center;
  padding: 0 32px;
}
.cmp-ssr__text {
  color: #ffffff;
}
.cmp-ssr__text-content {
  font-size: 20px;
}
.cmp-ssr a.shareaholic-service-icon.shareaholic-service-icon.shareaholic-service-default {
  color: #000000 !important;
  background-color: #ffffff;
}
.cmp-ssr a.shareaholic-service-icon.shareaholic-service-icon.shareaholic-service-default:hover {
  background-color: #f2f2f2;
  filter: none;
}
.cmp-ssr a.shareaholic-service-icon.shareaholic-service-icon.shareaholic-service-default:focus {
  background-color: #f2f2f2;
  outline: 2px solid #3a8bff;
  filter: none;
}
.cmp-ssr a.shareaholic-service-icon.shareaholic-service-icon.shareaholic-service-default:active {
  background-color: #f2f2f2;
  filter: none;
  outline: none;
}
@media (max-width: 991px) {
  .cmp-ssr {
    height: 72px;
  }
}
@media (max-width: 767px) {
  .cmp-ssr {
    height: auto;
  }
  .cmp-ssr::before,
  .cmp-ssr:after {
    content: none;
  }
  .cmp-ssr__content {
    flex-grow: 1;
    flex-direction: column;
  }
  .cmp-ssr__text,
  .cmp-ssr__icon-set {
    justify-content: center;
    height: 64px;
    padding: 0;
  }
}

.cmp-amadeus-search__searchbar {
  height: 48px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid #e6e6e6;
}
.cmp-amadeus-search__searchbar-icon {
  font-size: 48px;
}
.cmp-amadeus-search__searchbar input {
  flex-grow: 1;
  font-size: 32px;
  border: none;
}
.cmp-amadeus-search__searchbar input:focus-visible {
  outline: none;
}
.cmp-amadeus-search__searchbar-clear {
  background-color: transparent;
  display: none;
  border: 0;
}
.cmp-amadeus-search__searchbar-clear span {
  font-size: 32px;
}
.cmp-amadeus-search__searchbar-clear.active {
  display: unset;
}
.cmp-amadeus-search__content {
  margin-top: 72px;
}
.cmp-amadeus-search__breadcrumb {
  color: #666666;
}
.cmp-amadeus-search__breadcrumb-text {
  margin-bottom: 16px;
}
.cmp-amadeus-search__breadcrumb-text span {
  display: block;
  font-size: 20px;
  font-weight: bold;
  color: #1a1a1a;
}
.cmp-amadeus-search__results {
  padding: 40px 0px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 66%;
}
.cmp-amadeus-search__result {
  list-style: none;
}
.cmp-amadeus-search__result a {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cmp-amadeus-search__result-title {
  color: #333333;
  font-size: 24px;
  font-weight: 400;
  line-height: 130%;
}
.cmp-amadeus-search__result-url {
  color: #808080;
  font-size: 18px;
  word-break: break-word;
}
.cmp-amadeus-search__result-description {
  color: #333333;
  font-size: 16px;
}
.cmp-amadeus-search__pagination {
  margin-top: 40px;
  display: flex;
  gap: 4px;
}
.cmp-amadeus-search__pagination-back,
.cmp-amadeus-search__pagination-forward {
  background-color: transparent;
  border: 0;
  height: 40px;
  width: 40px;
}
.cmp-amadeus-search__pagination-back span,
.cmp-amadeus-search__pagination-forward span {
  display: grid;
  font-size: 24px;
}
.cmp-amadeus-search__pagination-container {
  overflow: hidden;
  max-width: 260px;
}
.cmp-amadeus-search__pagination-list {
  display: flex;
  padding: 0;
  margin: 0;
  gap: 4px;
  list-style: none;
}
.cmp-amadeus-search__pagination-item--hidden {
  display: none;
}
.cmp-amadeus-search__pagination-button {
  height: 40px;
  width: 40px;
  text-decoration: none;
  color: #1a1a1a;
  place-content: center;
  display: grid;
  background-color: transparent;
  border: 0;
}
.cmp-amadeus-search__pagination-button--active {
  position: relative;
}
.cmp-amadeus-search__pagination-button--active::after {
  position: absolute;
  display: block;
  left: 0;
  bottom: 0;
  content: '';
  height: 3px;
  width: 100%;
  background-color: #0c66e1;
}
.cmp-amadeus-search__links {
  margin-top: 72px;
}
.cmp-amadeus-search__links-title {
  margin-bottom: 20px;
  font-size: 24px;
}
.cmp-amadeus-search__links-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
}
.cmp-amadeus-search__links-item {
  width: 25%;
  padding: 12px 0;
}
.cmp-amadeus-search__links-item a {
  font-size: 18px;
  text-decoration: none;
  color: #0c66e1;
}
@media (max-width: 991px) {
  .cmp-amadeus-search__searchbar-icon {
    font-size: 32px;
  }
  .cmp-amadeus-search__searchbar input {
    font-size: 28px;
  }
  .cmp-amadeus-search__content {
    margin-top: 64px;
  }
  .cmp-amadeus-search__results {
    max-width: 100%;
  }
  .cmp-amadeus-search__links {
    margin-top: 64px;
  }
  .cmp-amadeus-search__links-item {
    width: 33%;
  }
}
@media (max-width: 767px) {
  .cmp-amadeus-search__searchbar {
    gap: 8px;
  }
  .cmp-amadeus-search__searchbar-submit.button {
    display: none;
  }
  .cmp-amadeus-search__searchbar-icon {
    order: 3;
    cursor: pointer;
  }
  .cmp-amadeus-search__searchbar input {
    overflow: scroll;
    font-size: 20px;
  }
  .cmp-amadeus-search__content {
    margin-top: 48px;
  }
  .cmp-amadeus-search__result-title {
    font-size: 20px;
  }
  .cmp-amadeus-search__result-url {
    font-size: 16px;
  }
  .cmp-amadeus-search__result-description {
    font-size: 14px;
  }
  .cmp-amadeus-search__pagination {
    justify-content: center;
  }
  .cmp-amadeus-search__pagination-back,
  .cmp-amadeus-search__pagination-forward {
    height: 30px;
    width: 30px;
  }
  .cmp-amadeus-search__pagination-back span,
  .cmp-amadeus-search__pagination-forward span {
    font-size: 20px;
  }
  .cmp-amadeus-search__pagination-button {
    height: 30px;
    width: 30px;
  }
  .cmp-amadeus-search__pagination-container {
    max-width: 190px;
  }
  .cmp-amadeus-search__pagination-list {
    gap: 2px;
  }
  .cmp-amadeus-search__links {
    margin-top: 48px;
  }
  .cmp-amadeus-search__links-item {
    width: 100%;
  }
}

.cmp-resgallery {
  font-family: 'Amadeus Neue', Amadeus-Regular;
}
.cmp-resgallery__filters {
  position: absolute;
  margin-top: 8px;
  max-height: 0;
  width: 300px;
  z-index: 2;
  overflow: hidden;
  transition: max-height 400ms;
  background-color: #ffffff;
}
.cmp-resgallery__filters--active {
  max-height: 300px;
  height: auto;
  border: 1px solid #cccccc;
}
.cmp-resgallery__filters-options {
  display: flex;
  gap: 16px;
}
.cmp-resgallery__filters-option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: 24px;
  background-color: #ebf3ff;
  color: #000835;
}
.cmp-resgallery__filters-option span {
  margin: 0;
}
.cmp-resgallery__filters-option--active {
  background-color: #000835;
  color: #ffffff;
}
.cmp-resgallery__filters-option--active .coral3-Icon--custom_keyboard-down {
  transform: rotateZ(180deg);
}
.cmp-resgallery__filters-count {
  display: none;
}
.cmp-resgallery__filters-count--active {
  display: inline;
  background-color: #000835;
  color: #ffffff;
  border-radius: 50%;
  width: 24px;
}
.cmp-resgallery__filters-reset {
  margin-left: auto;
  background-color: transparent;
  border: 0;
}
.cmp-resgallery__filters-reset:not(:disabled) {
  color: #0c66e1;
}
.cmp-resgallery__filters-option[data-toggle="industries topics resourceCategories"] {
  display: none;
}
.cmp-resgallery__filters-close {
  display: none;
}
.cmp-resgallery__filters-title {
  display: none;
}
.cmp-resgallery__filters-list {
  background: linear-gradient(#ffffff, #ffffff) top / 100% 40px local, linear-gradient(#ffffff, #ffffff) bottom / 100% 40px local, linear-gradient(#cccccc, #ffffff) top / 100% 8px scroll, linear-gradient(#ffffff, #cccccc) bottom / 100% 8px scroll;
  background-repeat: no-repeat;
  display: grid;
  gap: 12px;
  max-height: 0;
  padding: 0 8px;
  overflow: hidden;
  transition: all 400ms;
  list-style: none;
  margin: 0;
}
.cmp-resgallery__filters-list--active {
  padding: 8px;
  height: auto;
  max-height: 220px;
  overflow: scroll;
}
.cmp-resgallery__filters-item {
  display: flex;
  gap: 16px;
}
.cmp-resgallery__filters-item input {
  width: 24px;
}
.cmp-resgallery__filters-buttons {
  border-top: 1px solid #cccccc;
  padding: 8px;
  display: flex;
  justify-content: space-between;
}
.cmp-resgallery__filters-clear {
  background-color: transparent;
  color: #0c66e1;
  border: 0;
}
.cmp-resgallery__breadcrumb {
  margin: 40px 0;
}
.cmp-resgallery__breadcrumb span {
  font-weight: 700;
}
.cmp-resgallery__list {
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.cmp-resgallery__list-item {
  list-style: none;
  background-color: #fafafa;
  height: 420px;
}
.cmp-resgallery__list-item--hidden {
  display: none;
}
.cmp-resgallery__card {
  text-decoration: none;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.cmp-resgallery__card-image img {
  height: 166px;
  width: 100%;
  object-fit: cover;
}
.cmp-resgallery__card-content {
  padding: 16px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.cmp-resgallery__card-label {
  font-size: 13px;
  margin-bottom: 16px;
  color: #0c66e1;
}
.cmp-resgallery__card-title {
  font-family: 'Amadeus Neue', Amadeus-Medium;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #1a1a1a;
  font-size: 18px;
  margin-bottom: 16px;
  font-weight: 500;
}
.cmp-resgallery__card-description {
  font-size: 16px;
  color: #1a1a1a;
  display: none;
}
.cmp-resgallery__card-metadata {
  font-size: 16px;
  color: #666666;
  margin-top: auto;
}
.cmp-resgallery__card-author {
  display: none;
}
.cmp-resgallery__pagination {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 4px;
}
.cmp-resgallery__pagination-button--hidden {
  display: none;
}
.cmp-resgallery__pagination-back,
.cmp-resgallery__pagination-forward {
  background-color: transparent;
  border: 0;
  height: 40px;
  width: 40px;
}
.cmp-resgallery__pagination-back span,
.cmp-resgallery__pagination-forward span {
  display: grid;
  font-size: 24px;
}
.cmp-resgallery__pagination-container {
  overflow: hidden;
}
.cmp-resgallery__pagination-list {
  display: flex;
  padding: 0;
  margin: 0;
  gap: 4px;
  list-style: none;
  max-width: 260px;
}
.cmp-resgallery__pagination-item--hidden {
  display: none;
}
.cmp-resgallery__pagination-button {
  height: 40px;
  width: 40px;
  text-decoration: none;
  color: #1a1a1a;
  place-content: center;
  display: grid;
  background-color: transparent;
  border: 0;
}
.cmp-resgallery__pagination-button--active {
  position: relative;
}
.cmp-resgallery__pagination-button--active::after {
  position: absolute;
  display: block;
  left: 0;
  bottom: 0;
  content: '';
  height: 3px;
  width: 100%;
  background-color: #0c66e1;
}
@media (max-width: 991px) {
  .cmp-resgallery__filters {
    position: fixed;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    z-index: 15;
    top: 0;
    left: 0;
    border-top: 0;
    max-height: unset;
    height: 100vh;
    width: 0;
    margin: 0;
    transition: width 400ms;
  }
  .cmp-resgallery__filters--active {
    width: 360px;
  }
  .cmp-resgallery__filters-close {
    display: block;
    border-bottom: 1px solid #cccccc;
    height: 72px;
    display: flex;
    align-items: center;
  }
  .cmp-resgallery__filters-close button {
    background-color: transparent;
    border: 0;
    height: 48px;
    width: 48px;
  }
  .cmp-resgallery__filters-close button span {
    color: #0c66e1;
    font-size: 32px;
  }
  .cmp-resgallery__filters-container {
    padding: 16px;
  }
  .cmp-resgallery__filters-list {
    background: unset;
    max-height: unset;
    padding: 0;
    gap: 16px;
  }
  .cmp-resgallery__filters div:has(.cmp-resgallery__filters-container) {
    overflow: scroll;
  }
  .cmp-resgallery__filters-container:nth-of-type(1) {
    position: relative;
    padding-bottom: 24px;
  }
  .cmp-resgallery__filters-container:nth-of-type(1)::after {
    position: absolute;
    content: '';
    display: block;
    background-color: #cccccc;
    height: 1px;
    left: 16px;
    right: 16px;
    bottom: 0;
  }
  .cmp-resgallery__filters-container:nth-of-type(2) {
    padding-top: 24px;
  }
  .cmp-resgallery__filters-title {
    display: block;
    font-size: 16px;
    margin-bottom: 16px;
    font-weight: 500;
  }
  .cmp-resgallery__filters-buttons {
    margin-top: auto;
    padding: 16px;
  }
  .cmp-resgallery__filters-option {
    display: none;
  }
  .cmp-resgallery__filters-option[data-toggle="industries topics resourceCategories"] {
    display: flex;
  }
  .cmp-resgallery__list-item {
    grid-column-end: span 2;
    height: 195px;
  }
  .cmp-resgallery__card {
    flex-direction: row;
  }
  .cmp-resgallery__card-content {
    flex-basis: 66%;
  }
  .cmp-resgallery__card-image img {
    width: 116px;
    height: 100%;
  }
}
@media (max-width: 767px) {
  .cmp-resgallery__filters--active {
    width: 100%;
  }
  .cmp-resgallery__list-item {
    grid-column-end: span 4;
    min-height: 130px;
    height: auto;
  }
  .cmp-resgallery__card {
    position: relative;
  }
  .cmp-resgallery__card-image {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 66%;
    min-width: 33%;
  }
  .cmp-resgallery__card-image img {
    width: 100%;
  }
  .cmp-resgallery__card-image + .cmp-resgallery__card-content {
    margin-left: 33%;
  }
  .cmp-resgallery__card-label {
    margin-bottom: 8px;
  }
  .cmp-resgallery__card-title {
    margin-bottom: 8px;
  }
}

.cmp-resgallery.variable-grid .cmp-resgallery__list-item .cmp-resgallery__card-title {
  -webkit-line-clamp: 5;
  font-size: 18px;
}
.cmp-resgallery.variable-grid .cmp-resgallery__list-item:nth-child(1) {
  grid-column-end: span 4;
}
.cmp-resgallery.variable-grid .cmp-resgallery__list-item:nth-child(1) .cmp-resgallery__card-title {
  -webkit-line-clamp: 4;
  font-size: 32px;
}
.cmp-resgallery.variable-grid .cmp-resgallery__list-item:nth-child(1) .cmp-resgallery__card-description {
  display: unset;
  margin-bottom: 16px;
}
.cmp-resgallery.variable-grid .cmp-resgallery__list-item:nth-child(2),
.cmp-resgallery.variable-grid .cmp-resgallery__list-item:nth-child(7) {
  grid-column-end: span 2;
}
.cmp-resgallery.variable-grid .cmp-resgallery__list-item:nth-child(2)-title,
.cmp-resgallery.variable-grid .cmp-resgallery__list-item:nth-child(7)-title {
  font-size: 24px;
}
.cmp-resgallery.variable-grid .cmp-resgallery__list-item:nth-child(1) .cmp-resgallery__card,
.cmp-resgallery.variable-grid .cmp-resgallery__list-item:nth-child(2) .cmp-resgallery__card,
.cmp-resgallery.variable-grid .cmp-resgallery__list-item:nth-child(7) .cmp-resgallery__card {
  flex-direction: row;
}
.cmp-resgallery.variable-grid .cmp-resgallery__list-item:nth-child(1) .cmp-resgallery__card-image,
.cmp-resgallery.variable-grid .cmp-resgallery__list-item:nth-child(2) .cmp-resgallery__card-image,
.cmp-resgallery.variable-grid .cmp-resgallery__list-item:nth-child(7) .cmp-resgallery__card-image {
  min-width: 50%;
  max-width: 50%;
}
.cmp-resgallery.variable-grid .cmp-resgallery__list-item:nth-child(1) .cmp-resgallery__card-image img,
.cmp-resgallery.variable-grid .cmp-resgallery__list-item:nth-child(2) .cmp-resgallery__card-image img,
.cmp-resgallery.variable-grid .cmp-resgallery__list-item:nth-child(7) .cmp-resgallery__card-image img {
  height: 100%;
}
.cmp-resgallery.variable-grid .cmp-resgallery__list-item:nth-child(1) .cmp-resgallery__card-content,
.cmp-resgallery.variable-grid .cmp-resgallery__list-item:nth-child(2) .cmp-resgallery__card-content,
.cmp-resgallery.variable-grid .cmp-resgallery__list-item:nth-child(7) .cmp-resgallery__card-content {
  padding: 16px 24px;
}
.cmp-resgallery.variable-grid .cmp-resgallery__list-item:nth-child(1) .cmp-resgallery__card-author,
.cmp-resgallery.variable-grid .cmp-resgallery__list-item:nth-child(2) .cmp-resgallery__card-author,
.cmp-resgallery.variable-grid .cmp-resgallery__list-item:nth-child(7) .cmp-resgallery__card-author {
  display: unset;
}
@media (max-width: 991px) {
  .cmp-resgallery.variable-grid .cmp-resgallery__list {
    grid-auto-rows: 195px;
  }
  .cmp-resgallery.variable-grid .cmp-resgallery__list .cmp-resgallery__card-label {
    margin-bottom: 8px;
  }
  .cmp-resgallery.variable-grid .cmp-resgallery__list .cmp-resgallery__card-title {
    -webkit-line-clamp: 4;
    margin-bottom: 8px;
    font-size: 16px;
  }
  .cmp-resgallery.variable-grid .cmp-resgallery__list-item:nth-child(1) {
    height: 420px;
    grid-row-end: span 2;
    grid-column-end: span 4;
  }
  .cmp-resgallery.variable-grid .cmp-resgallery__list-item:nth-child(1) .cmp-resgallery__card-title {
    -webkit-line-clamp: 5;
    font-size: 28px;
  }
  .cmp-resgallery.variable-grid .cmp-resgallery__list-item:nth-child(1) .cmp-resgallery__card-description {
    display: none;
  }
  .cmp-resgallery.variable-grid .cmp-resgallery__list-item:nth-child(1) .cmp-resgallery__card-image img {
    width: 100%;
  }
  .cmp-resgallery.variable-grid .cmp-resgallery__list-item:nth-child(2),
  .cmp-resgallery.variable-grid .cmp-resgallery__list-item:nth-child(7) {
    height: 420px;
    grid-row-end: span 2;
  }
  .cmp-resgallery.variable-grid .cmp-resgallery__list-item:nth-child(2) .cmp-resgallery__card,
  .cmp-resgallery.variable-grid .cmp-resgallery__list-item:nth-child(7) .cmp-resgallery__card {
    flex-direction: column;
  }
  .cmp-resgallery.variable-grid .cmp-resgallery__list-item:nth-child(2) .cmp-resgallery__card-title,
  .cmp-resgallery.variable-grid .cmp-resgallery__list-item:nth-child(7) .cmp-resgallery__card-title {
    font-size: 20px;
  }
  .cmp-resgallery.variable-grid .cmp-resgallery__list-item:nth-child(2) .cmp-resgallery__card-image,
  .cmp-resgallery.variable-grid .cmp-resgallery__list-item:nth-child(7) .cmp-resgallery__card-image {
    max-width: 100%;
  }
  .cmp-resgallery.variable-grid .cmp-resgallery__list-item:nth-child(2) .cmp-resgallery__card-image img,
  .cmp-resgallery.variable-grid .cmp-resgallery__list-item:nth-child(7) .cmp-resgallery__card-image img {
    height: 195px;
    width: 100%;
  }
  .cmp-resgallery.variable-grid .cmp-resgallery__list-item:nth-child(2) .cmp-resgallery__card-content,
  .cmp-resgallery.variable-grid .cmp-resgallery__list-item:nth-child(7) .cmp-resgallery__card-content {
    padding: 16px;
  }
  .cmp-resgallery.variable-grid .cmp-resgallery__list-item:nth-child(2) .cmp-resgallery__card-author,
  .cmp-resgallery.variable-grid .cmp-resgallery__list-item:nth-child(7) .cmp-resgallery__card-author {
    display: none;
  }
  .cmp-resgallery.variable-grid .cmp-resgallery__list-item:nth-child(6) {
    grid-column-start: 1;
  }
  .cmp-resgallery.variable-grid .cmp-resgallery__list-item:nth-child(7) {
    grid-row-start: 5;
    grid-column-start: 3;
  }
}
@media (max-width: 767px) {
  .cmp-resgallery.variable-grid .cmp-resgallery__list {
    grid-auto-rows: unset;
  }
  .cmp-resgallery.variable-grid .cmp-resgallery__list-item .cmp-resgallery__card-title {
    -webkit-line-clamp: 5;
    font-size: 14px;
  }
  .cmp-resgallery.variable-grid .cmp-resgallery__list-item .cmp-resgallery__card-metadata {
    font-size: 14px;
  }
  .cmp-resgallery.variable-grid .cmp-resgallery__list-item:nth-child(n) {
    grid-column: 1 / span 4;
    height: auto;
  }
  .cmp-resgallery.variable-grid .cmp-resgallery__list-item:nth-child(1) .cmp-resgallery__card,
  .cmp-resgallery.variable-grid .cmp-resgallery__list-item:nth-child(2) .cmp-resgallery__card,
  .cmp-resgallery.variable-grid .cmp-resgallery__list-item:nth-child(7) .cmp-resgallery__card {
    flex-direction: column;
  }
  .cmp-resgallery.variable-grid .cmp-resgallery__list-item:nth-child(1) .cmp-resgallery__card-title,
  .cmp-resgallery.variable-grid .cmp-resgallery__list-item:nth-child(2) .cmp-resgallery__card-title,
  .cmp-resgallery.variable-grid .cmp-resgallery__list-item:nth-child(7) .cmp-resgallery__card-title {
    -webkit-line-clamp: 4;
    font-size: 18px;
  }
  .cmp-resgallery.variable-grid .cmp-resgallery__list-item:nth-child(1) .cmp-resgallery__card-image,
  .cmp-resgallery.variable-grid .cmp-resgallery__list-item:nth-child(2) .cmp-resgallery__card-image,
  .cmp-resgallery.variable-grid .cmp-resgallery__list-item:nth-child(7) .cmp-resgallery__card-image {
    min-width: 100%;
    max-width: 100%;
  }
  .cmp-resgallery.variable-grid .cmp-resgallery__list-item:nth-child(1) .cmp-resgallery__card-image img,
  .cmp-resgallery.variable-grid .cmp-resgallery__list-item:nth-child(2) .cmp-resgallery__card-image img,
  .cmp-resgallery.variable-grid .cmp-resgallery__list-item:nth-child(7) .cmp-resgallery__card-image img {
    height: 166px;
  }
  .cmp-resgallery.variable-grid .cmp-resgallery__list-item:nth-child(1) .cmp-resgallery__card-content,
  .cmp-resgallery.variable-grid .cmp-resgallery__list-item:nth-child(2) .cmp-resgallery__card-content,
  .cmp-resgallery.variable-grid .cmp-resgallery__list-item:nth-child(7) .cmp-resgallery__card-content {
    margin-left: 0;
    margin-top: 166px;
  }
  .cmp-resgallery.variable-grid .cmp-resgallery__list-item:nth-child(1) .cmp-resgallery__card-author,
  .cmp-resgallery.variable-grid .cmp-resgallery__list-item:nth-child(2) .cmp-resgallery__card-author,
  .cmp-resgallery.variable-grid .cmp-resgallery__list-item:nth-child(7) .cmp-resgallery__card-author {
    display: none;
  }
  .cmp-resgallery.variable-grid .cmp-resgallery__list-item:nth-child(7) {
    grid-row: unset;
  }
}

.resources-gallery_v2.product-card .cmp-resgallery__card-content::after {
  margin-left: auto;
  font-family: 'AmadeusIconFont';
  font-size: 24px;
  content: '\e944';
  color: #0c66e1;
}
.resources-gallery_v2.product-card .cmp-resgallery__card-description {
  display: block;
  font-size: 14px;
  color: #666666;
}
.resources-gallery_v2.product-card .cmp-resgallery__card:hover {
  background-color: #ebf3ff;
}
.resources-gallery_v2.product-card .cmp-resgallery__card:hover .cmp-resgallery__card-title {
  text-decoration: underline;
}
.resources-gallery_v2.product-card .cmp-resgallery__card:hover .cmp-resgallery__card-description {
  color: #1a1a1a;
}
@media (max-width: 991px) {
  .resources-gallery_v2.product-card .cmp-resgallery__list-item {
    height: 420px;
  }
}
@media (max-width: 767px) {
  .resources-gallery_v2.product-card .cmp-resgallery__list-item {
    height: unset;
  }
}

.resources-carousel_v2 {
  font-family: 'Amadeus Neue', 'Amadeus-Medium';
}
.resources-carousel_v2.color--sky {
  background: #c5d5f9 !important;
}
.resources-carousel_v2.color--sky .cmp-rescar__header-label,
.resources-carousel_v2.color--sky .cmp-rescar__header-title,
.resources-carousel_v2.color--sky .cmp-rescar__header p {
  color: #000835 !important;
}
.resources-carousel_v2.color--sky .cmp-rescar__slider-paginator-button span {
  color: #000835 !important;
}
.resources-carousel_v2.color--sky .cmp-rescar__slider-paginator-dot {
  border: 1px solid #000835 !important;
  background-color: #ebf3ff !important;
}
.resources-carousel_v2.color--sky .cmp-rescar__slider-paginator-dot--active {
  border-color: transparent !important;
  background-color: #0c66e1 !important;
}
.resources-carousel_v2.color--sky .cmp-rescar__slide {
  background-color: #ffffff !important;
}
.resources-carousel_v2.color--sky .cmp-rescar__slide-label {
  color: #0c66e1 !important;
}
.resources-carousel_v2.color--sky .cmp-rescar__slide-title,
.resources-carousel_v2.color--sky .cmp-rescar__slide-metadata {
  color: #000835 !important;
}
.resources-carousel_v2.color--violet {
  background: #e4c7ff !important;
}
.resources-carousel_v2.color--violet .cmp-rescar__header-label,
.resources-carousel_v2.color--violet .cmp-rescar__header-title,
.resources-carousel_v2.color--violet .cmp-rescar__header p {
  color: #26005a !important;
}
.resources-carousel_v2.color--violet .cmp-rescar__slider-paginator-button span {
  color: #26005a !important;
}
.resources-carousel_v2.color--violet .cmp-rescar__slider-paginator-dot {
  border: 1px solid #26005a !important;
  background-color: #f8eeff !important;
}
.resources-carousel_v2.color--violet .cmp-rescar__slider-paginator-dot--active {
  border-color: transparent !important;
  background-color: #9240cc !important;
}
.resources-carousel_v2.color--violet .cmp-rescar__slide {
  background-color: #ffffff !important;
}
.resources-carousel_v2.color--violet .cmp-rescar__slide-label {
  color: #9240cc !important;
}
.resources-carousel_v2.color--violet .cmp-rescar__slide-title,
.resources-carousel_v2.color--violet .cmp-rescar__slide-metadata {
  color: #26005a !important;
}
.resources-carousel_v2.color--forest {
  background: #c8ffc0 !important;
}
.resources-carousel_v2.color--forest .cmp-rescar__header-label,
.resources-carousel_v2.color--forest .cmp-rescar__header-title,
.resources-carousel_v2.color--forest .cmp-rescar__header p {
  color: #023a00 !important;
}
.resources-carousel_v2.color--forest .cmp-rescar__slider-paginator-button span {
  color: #023a00 !important;
}
.resources-carousel_v2.color--forest .cmp-rescar__slider-paginator-dot {
  border: 1px solid #023a00 !important;
  background-color: #f0ffec !important;
}
.resources-carousel_v2.color--forest .cmp-rescar__slider-paginator-dot--active {
  border-color: transparent !important;
  background-color: #6dc354 !important;
}
.resources-carousel_v2.color--forest .cmp-rescar__slide {
  background-color: #ffffff !important;
}
.resources-carousel_v2.color--forest .cmp-rescar__slide-label {
  color: #6dc354 !important;
}
.resources-carousel_v2.color--forest .cmp-rescar__slide-title,
.resources-carousel_v2.color--forest .cmp-rescar__slide-metadata {
  color: #023a00 !important;
}
.resources-carousel_v2.color--sky  .button {
  text-align: center !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: fit-content !important;
  gap: 8px !important;
  background-clip: padding-box !important;
  text-decoration: none !important;
  border-radius: 8px !important;
  font-weight: 500 !important;
  line-height: 150% !important;
  background-color: #000835 !important;
  color: #ffffff !important;
  border: 2px solid transparent !important;
}
.resources-carousel_v2.color--sky  .button.outline {
  background-color: transparent !important;
  border-color: #000835 !important;
  color: #000835 !important;
}
.resources-carousel_v2.color--sky  .button:hover {
  border-color: transparent !important;
  color: #ffffff !important;
  background-color: #0a2f62 !important;
}
.resources-carousel_v2.color--sky  .button:focus-visible {
  color: #ffffff !important;
  background-color: #0a2f62 !important;
  border-color: transparent !important;
  outline: 2px solid #0a2f62 !important;
}
.resources-carousel_v2.color--sky  .button:active {
  outline: none !important;
  border-color: transparent !important;
  color: #ffffff !important;
  background-color: #104ea4 !important;
}
.resources-carousel_v2.color--sky  .button.ghost {
  color: #000835 !important;
  background-color: transparent !important;
  border-color: transparent !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.resources-carousel_v2.color--sky  .button.ghost .button__label {
  position: relative !important;
}
.resources-carousel_v2.color--sky  .button.ghost .button__label:after {
  position: absolute !important;
  content: '' !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 0 !important;
  transition: width 400ms !important;
  height: 1px !important;
  background-color: #000835 !important;
}
.resources-carousel_v2.color--sky  .button.ghost:hover {
  border-color: transparent !important;
  color: #000835 !important;
  background-color: transparent !important;
}
.resources-carousel_v2.color--sky  .button.ghost:hover .button__label::after {
  width: 100% !important;
}
.resources-carousel_v2.color--sky  .button.ghost:focus-visible {
  outline: none !important;
  background-color: transparent !important;
  border-color: #000835 !important;
  color: #000835 !important;
}
.resources-carousel_v2.color--sky  .button.ghost:active {
  border-color: transparent !important;
  background-color: #ebf3ff !important;
  color: #000835 !important;
}
.resources-carousel_v2.color--sky  .button__icon {
  font-size: 24px !important;
  margin-bottom: 0 !important;
}
.resources-carousel_v2.color--violet  .button {
  text-align: center !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: fit-content !important;
  gap: 8px !important;
  background-clip: padding-box !important;
  text-decoration: none !important;
  border-radius: 8px !important;
  font-weight: 500 !important;
  line-height: 150% !important;
  background-color: #26005a !important;
  color: #ffffff !important;
  border: 2px solid transparent !important;
}
.resources-carousel_v2.color--violet  .button.outline {
  background-color: transparent !important;
  border-color: #26005a !important;
  color: #26005a !important;
}
.resources-carousel_v2.color--violet  .button:hover {
  border-color: transparent !important;
  color: #ffffff !important;
  background-color: #461b64 !important;
}
.resources-carousel_v2.color--violet  .button:focus-visible {
  color: #ffffff !important;
  background-color: #461b64 !important;
  border-color: transparent !important;
  outline: 2px solid #461b64 !important;
}
.resources-carousel_v2.color--violet  .button:active {
  outline: none !important;
  border-color: transparent !important;
  color: #ffffff !important;
  background-color: #6d3099 !important;
}
.resources-carousel_v2.color--violet  .button.ghost {
  color: #26005a !important;
  background-color: transparent !important;
  border-color: transparent !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.resources-carousel_v2.color--violet  .button.ghost .button__label {
  position: relative !important;
}
.resources-carousel_v2.color--violet  .button.ghost .button__label:after {
  position: absolute !important;
  content: '' !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 0 !important;
  transition: width 400ms !important;
  height: 1px !important;
  background-color: #26005a !important;
}
.resources-carousel_v2.color--violet  .button.ghost:hover {
  border-color: transparent !important;
  color: #26005a !important;
  background-color: transparent !important;
}
.resources-carousel_v2.color--violet  .button.ghost:hover .button__label::after {
  width: 100% !important;
}
.resources-carousel_v2.color--violet  .button.ghost:focus-visible {
  outline: none !important;
  background-color: transparent !important;
  border-color: #26005a !important;
  color: #26005a !important;
}
.resources-carousel_v2.color--violet  .button.ghost:active {
  border-color: transparent !important;
  background-color: #f8eeff !important;
  color: #26005a !important;
}
.resources-carousel_v2.color--violet  .button__icon {
  font-size: 24px !important;
  margin-bottom: 0 !important;
}
.resources-carousel_v2.color--forest  .button {
  text-align: center !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: fit-content !important;
  gap: 8px !important;
  background-clip: padding-box !important;
  text-decoration: none !important;
  border-radius: 8px !important;
  font-weight: 500 !important;
  line-height: 150% !important;
  background-color: #023a00 !important;
  color: #ffffff !important;
  border: 2px solid transparent !important;
}
.resources-carousel_v2.color--forest  .button.outline {
  background-color: transparent !important;
  border-color: #023a00 !important;
  color: #023a00 !important;
}
.resources-carousel_v2.color--forest  .button:hover {
  border-color: transparent !important;
  color: #ffffff !important;
  background-color: #3a662e !important;
}
.resources-carousel_v2.color--forest  .button:focus-visible {
  color: #ffffff !important;
  background-color: #3a662e !important;
  border-color: transparent !important;
  outline: 2px solid #3a662e !important;
}
.resources-carousel_v2.color--forest  .button:active {
  outline: none !important;
  border-color: transparent !important;
  color: #ffffff !important;
  background-color: #569643 !important;
}
.resources-carousel_v2.color--forest  .button.ghost {
  color: #023a00 !important;
  background-color: transparent !important;
  border-color: transparent !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.resources-carousel_v2.color--forest  .button.ghost .button__label {
  position: relative !important;
}
.resources-carousel_v2.color--forest  .button.ghost .button__label:after {
  position: absolute !important;
  content: '' !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 0 !important;
  transition: width 400ms !important;
  height: 1px !important;
  background-color: #023a00 !important;
}
.resources-carousel_v2.color--forest  .button.ghost:hover {
  border-color: transparent !important;
  color: #023a00 !important;
  background-color: transparent !important;
}
.resources-carousel_v2.color--forest  .button.ghost:hover .button__label::after {
  width: 100% !important;
}
.resources-carousel_v2.color--forest  .button.ghost:focus-visible {
  outline: none !important;
  background-color: transparent !important;
  border-color: #023a00 !important;
  color: #023a00 !important;
}
.resources-carousel_v2.color--forest  .button.ghost:active {
  border-color: transparent !important;
  background-color: #f0ffec !important;
  color: #023a00 !important;
}
.resources-carousel_v2.color--forest  .button__icon {
  font-size: 24px !important;
  margin-bottom: 0 !important;
}
.resources-carousel_v2 .cmp-rescar__header {
  margin-bottom: 32px;
}
.resources-carousel_v2 .cmp-rescar__header-title {
  margin: 16px 0;
  font-size: 24px;
}
.resources-carousel_v2 .cmp-rescar__header p {
  margin-bottom: 16px !important;
}
.resources-carousel_v2 .cmp-rescar__slider {
  margin: 0;
}
.resources-carousel_v2 .cmp-rescar__slider-container {
  max-width: 100%;
  overflow: hidden;
}
.resources-carousel_v2 .cmp-rescar__slider-list {
  padding: 0;
  display: flex;
  transition: transform 400ms;
}
.resources-carousel_v2 .cmp-rescar__slider-paginator {
  margin-top: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}
.resources-carousel_v2 .cmp-rescar__slider-paginator--hidden {
  opacity: 0;
  pointer-events: none;
}
.resources-carousel_v2 .cmp-rescar__slider-paginator-button {
  background-clip: padding-box;
  background-color: transparent;
  border: 2px solid transparent;
  display: grid;
  place-content: center;
  border-radius: 50%;
  padding: 0;
  height: 48px;
  width: 48px;
}
.resources-carousel_v2 .cmp-rescar__slider-paginator-button span {
  font-size: 32px;
}
.resources-carousel_v2 .cmp-rescar__slider-paginator-dot {
  width: 8px;
  height: 8px;
  background-color: #ebf3ff;
}
.resources-carousel_v2 .cmp-rescar__slider-paginator-dot--active {
  background-color: #0c66e1;
}
.resources-carousel_v2 .cmp-rescar__slider-paginator-dot--hidden {
  display: none;
}
.resources-carousel_v2 .cmp-rescar__slide {
  flex: 1 0 100%;
  height: 320px;
  background-color: #fafafa;
  list-style: none;
}
.resources-carousel_v2 .cmp-rescar__slide-content {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.resources-carousel_v2 .cmp-rescar__slide-image {
  width: 100%;
  object-fit: cover;
  height: 136px;
}
.resources-carousel_v2 .cmp-rescar__slide-text {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  padding: 16px;
}
.resources-carousel_v2 .cmp-rescar__slide-label {
  color: #0c66e1;
  font-size: 13px;
}
.resources-carousel_v2 .cmp-rescar__slide-title {
  margin-top: 8px;
  font-size: 16px;
  color: #1a1a1a;
  font-weight: 500;
}
.resources-carousel_v2 .cmp-rescar__slide-metadata {
  color: #666666;
  margin-top: auto;
  font-family: 'Amadeus Neue', 'Amadeus-Regular';
}
@media (min-width: 768px) {
  .resources-carousel_v2 .cmp-rescar__slider-list {
    gap: 30px;
  }
  .resources-carousel_v2 .cmp-rescar__slider-paginator {
    justify-content: end;
  }
  .resources-carousel_v2 .cmp-rescar__slide {
    max-width: calc((100% - 30px * 2) / 3);
    height: 350px;
  }
  .resources-carousel_v2 .cmp-rescar__slide--two {
    max-width: calc((100% - 30px) / 2);
  }
}
@media (min-width: 992px) {
  .resources-carousel_v2 .cmp-rescar__header {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 48px;
  }
  .resources-carousel_v2 .cmp-rescar__header-content {
    width: 60%;
  }
  .resources-carousel_v2 .cmp-rescar__slider-paginator {
    margin-top: 48px;
  }
  .resources-carousel_v2 .cmp-rescar__slide {
    max-width: calc((100% - 30px * 3) / 4);
    height: 400px;
  }
  .resources-carousel_v2 .cmp-rescar__slide-image {
    height: 166px;
  }
  .resources-carousel_v2 .cmp-rescar__slide--two {
    max-width: calc((100% - 30px) / 2);
  }
  .resources-carousel_v2 .cmp-rescar__slide--three {
    max-width: calc((100% - 30px * 2) / 3);
  }
}

.products-shell.color--sky {
  background-color: #000835 !important;
}
.products-shell.color--sky .products-shell__header h2.h2 {
  color: #ebf3ff !important;
}
.products-shell.color--sky .products-shell__header p,
.products-shell.color--sky .products-shell__header .label {
  color: #ffffff !important;
}
.products-shell.color--sky .products-shell__text-subheading {
  background-color: #0c66e1 !important;
}
.products-shell.color--sky .products-shell__text-description {
  color: #ffffff !important;
}
.products-shell.color--sky .products-shell__item {
  outline-color: #ebf3ff !important;
}
.products-shell.color--sky .products-shell__item-header .label {
  color: #0c66e1 !important;
}
.products-shell.color--sky .products-shell__item::after {
  color: #0c66e1 !important;
}
.products-shell.color--sky .products-shell__item--active {
  background-color: #ebf3ff !important;
}
.products-shell.color--sky .products-shell__item--active .products-shell__item-title {
  color: #000835 !important;
}
.products-shell.color--sky .products-shell__item-description {
  color: #000835 !important;
}
.products-shell.color--sky .products-shell__item-title {
  color: #ebf3ff !important;
}
.products-shell.color--sky .products-shell__more {
  outline-color: #000835 !important;
}
@media (hover: hover) {
  .products-shell.color--sky .products-shell__item:hover {
    background-color: #ebf3ff;
  }
  .products-shell.color--sky .products-shell__item:hover .products-shell__item-title {
    color: #000835 !important;
  }
}
.products-shell.color--violet {
  background-color: #26005a !important;
}
.products-shell.color--violet .products-shell__header h2.h2 {
  color: #f8eeff !important;
}
.products-shell.color--violet .products-shell__header p,
.products-shell.color--violet .products-shell__header .label {
  color: #ffffff !important;
}
.products-shell.color--violet .products-shell__text-subheading {
  background-color: #9240cc !important;
}
.products-shell.color--violet .products-shell__text-description {
  color: #ffffff !important;
}
.products-shell.color--violet .products-shell__item {
  outline-color: #f8eeff !important;
}
.products-shell.color--violet .products-shell__item-header .label {
  color: #9240cc !important;
}
.products-shell.color--violet .products-shell__item::after {
  color: #9240cc !important;
}
.products-shell.color--violet .products-shell__item--active {
  background-color: #f8eeff !important;
}
.products-shell.color--violet .products-shell__item--active .products-shell__item-title {
  color: #26005a !important;
}
.products-shell.color--violet .products-shell__item-description {
  color: #26005a !important;
}
.products-shell.color--violet .products-shell__item-title {
  color: #f8eeff !important;
}
.products-shell.color--violet .products-shell__more {
  outline-color: #26005a !important;
}
@media (hover: hover) {
  .products-shell.color--violet .products-shell__item:hover {
    background-color: #f8eeff;
  }
  .products-shell.color--violet .products-shell__item:hover .products-shell__item-title {
    color: #26005a !important;
  }
}
.products-shell.color--forest {
  background-color: #023a00 !important;
}
.products-shell.color--forest .products-shell__header h2.h2 {
  color: #f0ffec !important;
}
.products-shell.color--forest .products-shell__header p,
.products-shell.color--forest .products-shell__header .label {
  color: #ffffff !important;
}
.products-shell.color--forest .products-shell__text-subheading {
  background-color: #6dc354 !important;
}
.products-shell.color--forest .products-shell__text-description {
  color: #ffffff !important;
}
.products-shell.color--forest .products-shell__item {
  outline-color: #f0ffec !important;
}
.products-shell.color--forest .products-shell__item-header .label {
  color: #6dc354 !important;
}
.products-shell.color--forest .products-shell__item::after {
  color: #6dc354 !important;
}
.products-shell.color--forest .products-shell__item--active {
  background-color: #f0ffec !important;
}
.products-shell.color--forest .products-shell__item--active .products-shell__item-title {
  color: #023a00 !important;
}
.products-shell.color--forest .products-shell__item-description {
  color: #023a00 !important;
}
.products-shell.color--forest .products-shell__item-title {
  color: #f0ffec !important;
}
.products-shell.color--forest .products-shell__more {
  outline-color: #023a00 !important;
}
@media (hover: hover) {
  .products-shell.color--forest .products-shell__item:hover {
    background-color: #f0ffec;
  }
  .products-shell.color--forest .products-shell__item:hover .products-shell__item-title {
    color: #023a00 !important;
  }
}
.products-shell.color--sky .products-shell__text .button {
  text-align: center !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: fit-content !important;
  gap: 8px !important;
  background-clip: padding-box !important;
  text-decoration: none !important;
  border-radius: 8px !important;
  font-weight: 500 !important;
  line-height: 150% !important;
  background-color: #ebf3ff !important;
  color: #000835 !important;
  border: 2px solid transparent !important;
}
.products-shell.color--sky .products-shell__text .button.outline {
  background-color: transparent !important;
  border-color: #ebf3ff !important;
  color: #ebf3ff !important;
}
.products-shell.color--sky .products-shell__text .button:hover {
  border-color: transparent !important;
  color: #000835 !important;
  background-color: #9fc6ff !important;
}
.products-shell.color--sky .products-shell__text .button:focus-visible {
  color: #000835 !important;
  background-color: #9fc6ff !important;
  border-color: transparent !important;
  outline: 2px solid #9fc6ff !important;
}
.products-shell.color--sky .products-shell__text .button:active {
  outline: none !important;
  border-color: transparent !important;
  color: #ffffff !important;
  background-color: #61a2ff !important;
}
.products-shell.color--sky .products-shell__text .button.ghost {
  color: #ebf3ff !important;
  background-color: transparent !important;
  border-color: transparent !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.products-shell.color--sky .products-shell__text .button.ghost .button__label {
  position: relative !important;
}
.products-shell.color--sky .products-shell__text .button.ghost .button__label:after {
  position: absolute !important;
  content: '' !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 0 !important;
  transition: width 400ms !important;
  height: 1px !important;
  background-color: #ebf3ff !important;
}
.products-shell.color--sky .products-shell__text .button.ghost:hover {
  border-color: transparent !important;
  color: #ebf3ff !important;
  background-color: transparent !important;
}
.products-shell.color--sky .products-shell__text .button.ghost:hover .button__label::after {
  width: 100% !important;
}
.products-shell.color--sky .products-shell__text .button.ghost:focus-visible {
  outline: none !important;
  background-color: transparent !important;
  border-color: #9fc6ff !important;
  color: #ebf3ff !important;
}
.products-shell.color--sky .products-shell__text .button.ghost:active {
  border-color: transparent !important;
  background-color: #ebf3ff !important;
  color: #000835 !important;
}
.products-shell.color--sky .products-shell__text .button__icon {
  font-size: 24px !important;
  margin-bottom: 0 !important;
}
.products-shell.color--violet .products-shell__text .button {
  text-align: center !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: fit-content !important;
  gap: 8px !important;
  background-clip: padding-box !important;
  text-decoration: none !important;
  border-radius: 8px !important;
  font-weight: 500 !important;
  line-height: 150% !important;
  background-color: #f8eeff !important;
  color: #26005a !important;
  border: 2px solid transparent !important;
}
.products-shell.color--violet .products-shell__text .button.outline {
  background-color: transparent !important;
  border-color: #f8eeff !important;
  color: #f8eeff !important;
}
.products-shell.color--violet .products-shell__text .button:hover {
  border-color: transparent !important;
  color: #26005a !important;
  background-color: #d396ff !important;
}
.products-shell.color--violet .products-shell__text .button:focus-visible {
  color: #26005a !important;
  background-color: #d396ff !important;
  border-color: transparent !important;
  outline: 2px solid #d396ff !important;
}
.products-shell.color--violet .products-shell__text .button:active {
  outline: none !important;
  border-color: transparent !important;
  color: #ffffff !important;
  background-color: #c573ff !important;
}
.products-shell.color--violet .products-shell__text .button.ghost {
  color: #f8eeff !important;
  background-color: transparent !important;
  border-color: transparent !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.products-shell.color--violet .products-shell__text .button.ghost .button__label {
  position: relative !important;
}
.products-shell.color--violet .products-shell__text .button.ghost .button__label:after {
  position: absolute !important;
  content: '' !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 0 !important;
  transition: width 400ms !important;
  height: 1px !important;
  background-color: #f8eeff !important;
}
.products-shell.color--violet .products-shell__text .button.ghost:hover {
  border-color: transparent !important;
  color: #f8eeff !important;
  background-color: transparent !important;
}
.products-shell.color--violet .products-shell__text .button.ghost:hover .button__label::after {
  width: 100% !important;
}
.products-shell.color--violet .products-shell__text .button.ghost:focus-visible {
  outline: none !important;
  background-color: transparent !important;
  border-color: #d396ff !important;
  color: #f8eeff !important;
}
.products-shell.color--violet .products-shell__text .button.ghost:active {
  border-color: transparent !important;
  background-color: #f8eeff !important;
  color: #26005a !important;
}
.products-shell.color--violet .products-shell__text .button__icon {
  font-size: 24px !important;
  margin-bottom: 0 !important;
}
.products-shell.color--crimson .products-shell__text .button {
  text-align: center !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: fit-content !important;
  gap: 8px !important;
  background-clip: padding-box !important;
  text-decoration: none !important;
  border-radius: 8px !important;
  font-weight: 500 !important;
  line-height: 150% !important;
  background-color: #ffeeed !important;
  color: #560900 !important;
  border: 2px solid transparent !important;
}
.products-shell.color--crimson .products-shell__text .button.outline {
  background-color: transparent !important;
  border-color: #ffeeed !important;
  color: #ffeeed !important;
}
.products-shell.color--crimson .products-shell__text .button:hover {
  border-color: transparent !important;
  color: #560900 !important;
  background-color: #ff9794 !important;
}
.products-shell.color--crimson .products-shell__text .button:focus-visible {
  color: #560900 !important;
  background-color: #ff9794 !important;
  border-color: transparent !important;
  outline: 2px solid #ff9794 !important;
}
.products-shell.color--crimson .products-shell__text .button:active {
  outline: none !important;
  border-color: transparent !important;
  color: #ffffff !important;
  background-color: #ff7471 !important;
}
.products-shell.color--crimson .products-shell__text .button.ghost {
  color: #ffeeed !important;
  background-color: transparent !important;
  border-color: transparent !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.products-shell.color--crimson .products-shell__text .button.ghost .button__label {
  position: relative !important;
}
.products-shell.color--crimson .products-shell__text .button.ghost .button__label:after {
  position: absolute !important;
  content: '' !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 0 !important;
  transition: width 400ms !important;
  height: 1px !important;
  background-color: #ffeeed !important;
}
.products-shell.color--crimson .products-shell__text .button.ghost:hover {
  border-color: transparent !important;
  color: #ffeeed !important;
  background-color: transparent !important;
}
.products-shell.color--crimson .products-shell__text .button.ghost:hover .button__label::after {
  width: 100% !important;
}
.products-shell.color--crimson .products-shell__text .button.ghost:focus-visible {
  outline: none !important;
  background-color: transparent !important;
  border-color: #ff9794 !important;
  color: #ffeeed !important;
}
.products-shell.color--crimson .products-shell__text .button.ghost:active {
  border-color: transparent !important;
  background-color: #ffeeed !important;
  color: #560900 !important;
}
.products-shell.color--crimson .products-shell__text .button__icon {
  font-size: 24px !important;
  margin-bottom: 0 !important;
}
.products-shell.color--forest .products-shell__text .button {
  text-align: center !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: fit-content !important;
  gap: 8px !important;
  background-clip: padding-box !important;
  text-decoration: none !important;
  border-radius: 8px !important;
  font-weight: 500 !important;
  line-height: 150% !important;
  background-color: #f0ffec !important;
  color: #023a00 !important;
  border: 2px solid transparent !important;
}
.products-shell.color--forest .products-shell__text .button.outline {
  background-color: transparent !important;
  border-color: #f0ffec !important;
  color: #f0ffec !important;
}
.products-shell.color--forest .products-shell__text .button:hover {
  border-color: transparent !important;
  color: #023a00 !important;
  background-color: #beffab !important;
}
.products-shell.color--forest .products-shell__text .button:focus-visible {
  color: #023a00 !important;
  background-color: #beffab !important;
  border-color: transparent !important;
  outline: 2px solid #beffab !important;
}
.products-shell.color--forest .products-shell__text .button:active {
  outline: none !important;
  border-color: transparent !important;
  color: #ffffff !important;
  background-color: #a8ff8f !important;
}
.products-shell.color--forest .products-shell__text .button.ghost {
  color: #f0ffec !important;
  background-color: transparent !important;
  border-color: transparent !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.products-shell.color--forest .products-shell__text .button.ghost .button__label {
  position: relative !important;
}
.products-shell.color--forest .products-shell__text .button.ghost .button__label:after {
  position: absolute !important;
  content: '' !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 0 !important;
  transition: width 400ms !important;
  height: 1px !important;
  background-color: #f0ffec !important;
}
.products-shell.color--forest .products-shell__text .button.ghost:hover {
  border-color: transparent !important;
  color: #f0ffec !important;
  background-color: transparent !important;
}
.products-shell.color--forest .products-shell__text .button.ghost:hover .button__label::after {
  width: 100% !important;
}
.products-shell.color--forest .products-shell__text .button.ghost:focus-visible {
  outline: none !important;
  background-color: transparent !important;
  border-color: #beffab !important;
  color: #f0ffec !important;
}
.products-shell.color--forest .products-shell__text .button.ghost:active {
  border-color: transparent !important;
  background-color: #f0ffec !important;
  color: #023a00 !important;
}
.products-shell.color--forest .products-shell__text .button__icon {
  font-size: 24px !important;
  margin-bottom: 0 !important;
}
.products-shell.color--canary .products-shell__text .button {
  text-align: center !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: fit-content !important;
  gap: 8px !important;
  background-clip: padding-box !important;
  text-decoration: none !important;
  border-radius: 8px !important;
  font-weight: 500 !important;
  line-height: 150% !important;
  background-color: #fffce6 !important;
  color: #564a00 !important;
  border: 2px solid transparent !important;
}
.products-shell.color--canary .products-shell__text .button.outline {
  background-color: transparent !important;
  border-color: #fffce6 !important;
  color: #fffce6 !important;
}
.products-shell.color--canary .products-shell__text .button:hover {
  border-color: transparent !important;
  color: #564a00 !important;
  background-color: #fdf092 !important;
}
.products-shell.color--canary .products-shell__text .button:focus-visible {
  color: #564a00 !important;
  background-color: #fdf092 !important;
  border-color: transparent !important;
  outline: 2px solid #fdf092 !important;
}
.products-shell.color--canary .products-shell__text .button:active {
  outline: none !important;
  border-color: transparent !important;
  color: #ffffff !important;
  background-color: #fdeb6d !important;
}
.products-shell.color--canary .products-shell__text .button.ghost {
  color: #fffce6 !important;
  background-color: transparent !important;
  border-color: transparent !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.products-shell.color--canary .products-shell__text .button.ghost .button__label {
  position: relative !important;
}
.products-shell.color--canary .products-shell__text .button.ghost .button__label:after {
  position: absolute !important;
  content: '' !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 0 !important;
  transition: width 400ms !important;
  height: 1px !important;
  background-color: #fffce6 !important;
}
.products-shell.color--canary .products-shell__text .button.ghost:hover {
  border-color: transparent !important;
  color: #fffce6 !important;
  background-color: transparent !important;
}
.products-shell.color--canary .products-shell__text .button.ghost:hover .button__label::after {
  width: 100% !important;
}
.products-shell.color--canary .products-shell__text .button.ghost:focus-visible {
  outline: none !important;
  background-color: transparent !important;
  border-color: #fdf092 !important;
  color: #fffce6 !important;
}
.products-shell.color--canary .products-shell__text .button.ghost:active {
  border-color: transparent !important;
  background-color: #fffce6 !important;
  color: #564a00 !important;
}
.products-shell.color--canary .products-shell__text .button__icon {
  font-size: 24px !important;
  margin-bottom: 0 !important;
}
.products-shell.color--fuchsia .products-shell__text .button {
  text-align: center !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: fit-content !important;
  gap: 8px !important;
  background-clip: padding-box !important;
  text-decoration: none !important;
  border-radius: 8px !important;
  font-weight: 500 !important;
  line-height: 150% !important;
  background-color: #ffeef7 !important;
  color: #4f0230 !important;
  border: 2px solid transparent !important;
}
.products-shell.color--fuchsia .products-shell__text .button.outline {
  background-color: transparent !important;
  border-color: #ffeef7 !important;
  color: #ffeef7 !important;
}
.products-shell.color--fuchsia .products-shell__text .button:hover {
  border-color: transparent !important;
  color: #4f0230 !important;
  background-color: #ff9be3 !important;
}
.products-shell.color--fuchsia .products-shell__text .button:focus-visible {
  color: #4f0230 !important;
  background-color: #ff9be3 !important;
  border-color: transparent !important;
  outline: 2px solid #ff9be3 !important;
}
.products-shell.color--fuchsia .products-shell__text .button:active {
  outline: none !important;
  border-color: transparent !important;
  color: #ffffff !important;
  background-color: #ff79bd !important;
}
.products-shell.color--fuchsia .products-shell__text .button.ghost {
  color: #ffeef7 !important;
  background-color: transparent !important;
  border-color: transparent !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.products-shell.color--fuchsia .products-shell__text .button.ghost .button__label {
  position: relative !important;
}
.products-shell.color--fuchsia .products-shell__text .button.ghost .button__label:after {
  position: absolute !important;
  content: '' !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 0 !important;
  transition: width 400ms !important;
  height: 1px !important;
  background-color: #ffeef7 !important;
}
.products-shell.color--fuchsia .products-shell__text .button.ghost:hover {
  border-color: transparent !important;
  color: #ffeef7 !important;
  background-color: transparent !important;
}
.products-shell.color--fuchsia .products-shell__text .button.ghost:hover .button__label::after {
  width: 100% !important;
}
.products-shell.color--fuchsia .products-shell__text .button.ghost:focus-visible {
  outline: none !important;
  background-color: transparent !important;
  border-color: #ff9be3 !important;
  color: #ffeef7 !important;
}
.products-shell.color--fuchsia .products-shell__text .button.ghost:active {
  border-color: transparent !important;
  background-color: #ffeef7 !important;
  color: #4f0230 !important;
}
.products-shell.color--fuchsia .products-shell__text .button__icon {
  font-size: 24px !important;
  margin-bottom: 0 !important;
}
.products-shell.color--pumpkin .products-shell__text .button {
  text-align: center !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: fit-content !important;
  gap: 8px !important;
  background-clip: padding-box !important;
  text-decoration: none !important;
  border-radius: 8px !important;
  font-weight: 500 !important;
  line-height: 150% !important;
  background-color: #fff0e6 !important;
  color: #5b2500 !important;
  border: 2px solid transparent !important;
}
.products-shell.color--pumpkin .products-shell__text .button.outline {
  background-color: transparent !important;
  border-color: #fff0e6 !important;
  color: #fff0e6 !important;
}
.products-shell.color--pumpkin .products-shell__text .button:hover {
  border-color: transparent !important;
  color: #5b2500 !important;
  background-color: #ffa366 !important;
}
.products-shell.color--pumpkin .products-shell__text .button:focus-visible {
  color: #5b2500 !important;
  background-color: #ffa366 !important;
  border-color: transparent !important;
  outline: 2px solid #ffa366 !important;
}
.products-shell.color--pumpkin .products-shell__text .button:active {
  outline: none !important;
  border-color: transparent !important;
  color: #ffffff !important;
  background-color: #ff8838 !important;
}
.products-shell.color--pumpkin .products-shell__text .button.ghost {
  color: #fff0e6 !important;
  background-color: transparent !important;
  border-color: transparent !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.products-shell.color--pumpkin .products-shell__text .button.ghost .button__label {
  position: relative !important;
}
.products-shell.color--pumpkin .products-shell__text .button.ghost .button__label:after {
  position: absolute !important;
  content: '' !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 0 !important;
  transition: width 400ms !important;
  height: 1px !important;
  background-color: #fff0e6 !important;
}
.products-shell.color--pumpkin .products-shell__text .button.ghost:hover {
  border-color: transparent !important;
  color: #fff0e6 !important;
  background-color: transparent !important;
}
.products-shell.color--pumpkin .products-shell__text .button.ghost:hover .button__label::after {
  width: 100% !important;
}
.products-shell.color--pumpkin .products-shell__text .button.ghost:focus-visible {
  outline: none !important;
  background-color: transparent !important;
  border-color: #ffa366 !important;
  color: #fff0e6 !important;
}
.products-shell.color--pumpkin .products-shell__text .button.ghost:active {
  border-color: transparent !important;
  background-color: #fff0e6 !important;
  color: #5b2500 !important;
}
.products-shell.color--pumpkin .products-shell__text .button__icon {
  font-size: 24px !important;
  margin-bottom: 0 !important;
}
.products-shell.color--custom .products-shell__text .button {
  text-align: center !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: fit-content !important;
  gap: 8px !important;
  background-clip: padding-box !important;
  text-decoration: none !important;
  border-radius: 8px !important;
  font-weight: 500 !important;
  line-height: 150% !important;
  background-color: #000835 !important;
  color: #3a8bff !important;
  border: 2px solid transparent !important;
}
.products-shell.color--custom .products-shell__text .button.outline {
  background-color: transparent !important;
  border-color: #000835 !important;
  color: #000835 !important;
}
.products-shell.color--custom .products-shell__text .button:hover {
  border-color: transparent !important;
  color: #3a8bff !important;
  background-color: #000835 !important;
}
.products-shell.color--custom .products-shell__text .button:focus-visible {
  color: #3a8bff !important;
  background-color: #000835 !important;
  border-color: transparent !important;
  outline: 2px solid #000835 !important;
}
.products-shell.color--custom .products-shell__text .button:active {
  outline: none !important;
  border-color: transparent !important;
  color: #ffffff !important;
  background-color: #61a2ff !important;
}
.products-shell.color--custom .products-shell__text .button.ghost {
  color: #000835 !important;
  background-color: transparent !important;
  border-color: transparent !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.products-shell.color--custom .products-shell__text .button.ghost .button__label {
  position: relative !important;
}
.products-shell.color--custom .products-shell__text .button.ghost .button__label:after {
  position: absolute !important;
  content: '' !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 0 !important;
  transition: width 400ms !important;
  height: 1px !important;
  background-color: #000835 !important;
}
.products-shell.color--custom .products-shell__text .button.ghost:hover {
  border-color: transparent !important;
  color: #000835 !important;
  background-color: transparent !important;
}
.products-shell.color--custom .products-shell__text .button.ghost:hover .button__label::after {
  width: 100% !important;
}
.products-shell.color--custom .products-shell__text .button.ghost:focus-visible {
  outline: none !important;
  background-color: transparent !important;
  border-color: #000835 !important;
  color: #000835 !important;
}
.products-shell.color--custom .products-shell__text .button.ghost:active {
  border-color: transparent !important;
  background-color: #000835 !important;
  color: #3a8bff !important;
}
.products-shell.color--custom .products-shell__text .button__icon {
  font-size: 24px !important;
  margin-bottom: 0 !important;
}
.products-shell.color--sky .products-shell__item .button {
  text-align: center !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: fit-content !important;
  gap: 8px !important;
  background-clip: padding-box !important;
  text-decoration: none !important;
  border-radius: 8px !important;
  font-weight: 500 !important;
  line-height: 150% !important;
  background-color: #000835 !important;
  color: #ffffff !important;
  border: 2px solid transparent !important;
}
.products-shell.color--sky .products-shell__item .button.outline {
  background-color: transparent !important;
  border-color: #000835 !important;
  color: #000835 !important;
}
.products-shell.color--sky .products-shell__item .button:hover {
  border-color: transparent !important;
  color: #ffffff !important;
  background-color: #0a2f62 !important;
}
.products-shell.color--sky .products-shell__item .button:focus-visible {
  color: #ffffff !important;
  background-color: #0a2f62 !important;
  border-color: transparent !important;
  outline: 2px solid #0a2f62 !important;
}
.products-shell.color--sky .products-shell__item .button:active {
  outline: none !important;
  border-color: transparent !important;
  color: #ffffff !important;
  background-color: #104ea4 !important;
}
.products-shell.color--sky .products-shell__item .button.ghost {
  color: #000835 !important;
  background-color: transparent !important;
  border-color: transparent !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.products-shell.color--sky .products-shell__item .button.ghost .button__label {
  position: relative !important;
}
.products-shell.color--sky .products-shell__item .button.ghost .button__label:after {
  position: absolute !important;
  content: '' !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 0 !important;
  transition: width 400ms !important;
  height: 1px !important;
  background-color: #000835 !important;
}
.products-shell.color--sky .products-shell__item .button.ghost:hover {
  border-color: transparent !important;
  color: #000835 !important;
  background-color: transparent !important;
}
.products-shell.color--sky .products-shell__item .button.ghost:hover .button__label::after {
  width: 100% !important;
}
.products-shell.color--sky .products-shell__item .button.ghost:focus-visible {
  outline: none !important;
  background-color: transparent !important;
  border-color: #000835 !important;
  color: #000835 !important;
}
.products-shell.color--sky .products-shell__item .button.ghost:active {
  border-color: transparent !important;
  background-color: #ebf3ff !important;
  color: #000835 !important;
}
.products-shell.color--sky .products-shell__item .button__icon {
  font-size: 24px !important;
  margin-bottom: 0 !important;
}
.products-shell.color--violet .products-shell__item .button {
  text-align: center !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: fit-content !important;
  gap: 8px !important;
  background-clip: padding-box !important;
  text-decoration: none !important;
  border-radius: 8px !important;
  font-weight: 500 !important;
  line-height: 150% !important;
  background-color: #26005a !important;
  color: #ffffff !important;
  border: 2px solid transparent !important;
}
.products-shell.color--violet .products-shell__item .button.outline {
  background-color: transparent !important;
  border-color: #26005a !important;
  color: #26005a !important;
}
.products-shell.color--violet .products-shell__item .button:hover {
  border-color: transparent !important;
  color: #ffffff !important;
  background-color: #461b64 !important;
}
.products-shell.color--violet .products-shell__item .button:focus-visible {
  color: #ffffff !important;
  background-color: #461b64 !important;
  border-color: transparent !important;
  outline: 2px solid #461b64 !important;
}
.products-shell.color--violet .products-shell__item .button:active {
  outline: none !important;
  border-color: transparent !important;
  color: #ffffff !important;
  background-color: #6d3099 !important;
}
.products-shell.color--violet .products-shell__item .button.ghost {
  color: #26005a !important;
  background-color: transparent !important;
  border-color: transparent !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.products-shell.color--violet .products-shell__item .button.ghost .button__label {
  position: relative !important;
}
.products-shell.color--violet .products-shell__item .button.ghost .button__label:after {
  position: absolute !important;
  content: '' !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 0 !important;
  transition: width 400ms !important;
  height: 1px !important;
  background-color: #26005a !important;
}
.products-shell.color--violet .products-shell__item .button.ghost:hover {
  border-color: transparent !important;
  color: #26005a !important;
  background-color: transparent !important;
}
.products-shell.color--violet .products-shell__item .button.ghost:hover .button__label::after {
  width: 100% !important;
}
.products-shell.color--violet .products-shell__item .button.ghost:focus-visible {
  outline: none !important;
  background-color: transparent !important;
  border-color: #26005a !important;
  color: #26005a !important;
}
.products-shell.color--violet .products-shell__item .button.ghost:active {
  border-color: transparent !important;
  background-color: #f8eeff !important;
  color: #26005a !important;
}
.products-shell.color--violet .products-shell__item .button__icon {
  font-size: 24px !important;
  margin-bottom: 0 !important;
}
.products-shell.color--forest .products-shell__item .button {
  text-align: center !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: fit-content !important;
  gap: 8px !important;
  background-clip: padding-box !important;
  text-decoration: none !important;
  border-radius: 8px !important;
  font-weight: 500 !important;
  line-height: 150% !important;
  background-color: #023a00 !important;
  color: #ffffff !important;
  border: 2px solid transparent !important;
}
.products-shell.color--forest .products-shell__item .button.outline {
  background-color: transparent !important;
  border-color: #023a00 !important;
  color: #023a00 !important;
}
.products-shell.color--forest .products-shell__item .button:hover {
  border-color: transparent !important;
  color: #ffffff !important;
  background-color: #3a662e !important;
}
.products-shell.color--forest .products-shell__item .button:focus-visible {
  color: #ffffff !important;
  background-color: #3a662e !important;
  border-color: transparent !important;
  outline: 2px solid #3a662e !important;
}
.products-shell.color--forest .products-shell__item .button:active {
  outline: none !important;
  border-color: transparent !important;
  color: #ffffff !important;
  background-color: #569643 !important;
}
.products-shell.color--forest .products-shell__item .button.ghost {
  color: #023a00 !important;
  background-color: transparent !important;
  border-color: transparent !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.products-shell.color--forest .products-shell__item .button.ghost .button__label {
  position: relative !important;
}
.products-shell.color--forest .products-shell__item .button.ghost .button__label:after {
  position: absolute !important;
  content: '' !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 0 !important;
  transition: width 400ms !important;
  height: 1px !important;
  background-color: #023a00 !important;
}
.products-shell.color--forest .products-shell__item .button.ghost:hover {
  border-color: transparent !important;
  color: #023a00 !important;
  background-color: transparent !important;
}
.products-shell.color--forest .products-shell__item .button.ghost:hover .button__label::after {
  width: 100% !important;
}
.products-shell.color--forest .products-shell__item .button.ghost:focus-visible {
  outline: none !important;
  background-color: transparent !important;
  border-color: #023a00 !important;
  color: #023a00 !important;
}
.products-shell.color--forest .products-shell__item .button.ghost:active {
  border-color: transparent !important;
  background-color: #f0ffec !important;
  color: #023a00 !important;
}
.products-shell.color--forest .products-shell__item .button__icon {
  font-size: 24px !important;
  margin-bottom: 0 !important;
}
.products-shell.color--sky .products-shell__more .button {
  text-align: center !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: fit-content !important;
  gap: 8px !important;
  background-clip: padding-box !important;
  text-decoration: none !important;
  border-radius: 8px !important;
  font-weight: 500 !important;
  line-height: 150% !important;
  background-color: #ebf3ff !important;
  color: #000835 !important;
  border: 2px solid transparent !important;
}
.products-shell.color--sky .products-shell__more .button.outline {
  background-color: transparent !important;
  border-color: #ebf3ff !important;
  color: #ebf3ff !important;
}
.products-shell.color--sky .products-shell__more .button:hover {
  border-color: transparent !important;
  color: #000835 !important;
  background-color: #9fc6ff !important;
}
.products-shell.color--sky .products-shell__more .button:focus-visible {
  color: #000835 !important;
  background-color: #9fc6ff !important;
  border-color: transparent !important;
  outline: 2px solid #9fc6ff !important;
}
.products-shell.color--sky .products-shell__more .button:active {
  outline: none !important;
  border-color: transparent !important;
  color: #ffffff !important;
  background-color: #61a2ff !important;
}
.products-shell.color--sky .products-shell__more .button.ghost {
  color: #ebf3ff !important;
  background-color: transparent !important;
  border-color: transparent !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.products-shell.color--sky .products-shell__more .button.ghost .button__label {
  position: relative !important;
}
.products-shell.color--sky .products-shell__more .button.ghost .button__label:after {
  position: absolute !important;
  content: '' !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 0 !important;
  transition: width 400ms !important;
  height: 1px !important;
  background-color: #ebf3ff !important;
}
.products-shell.color--sky .products-shell__more .button.ghost:hover {
  border-color: transparent !important;
  color: #ebf3ff !important;
  background-color: transparent !important;
}
.products-shell.color--sky .products-shell__more .button.ghost:hover .button__label::after {
  width: 100% !important;
}
.products-shell.color--sky .products-shell__more .button.ghost:focus-visible {
  outline: none !important;
  background-color: transparent !important;
  border-color: #9fc6ff !important;
  color: #ebf3ff !important;
}
.products-shell.color--sky .products-shell__more .button.ghost:active {
  border-color: transparent !important;
  background-color: #ebf3ff !important;
  color: #000835 !important;
}
.products-shell.color--sky .products-shell__more .button__icon {
  font-size: 24px !important;
  margin-bottom: 0 !important;
}
.products-shell.color--violet .products-shell__more .button {
  text-align: center !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: fit-content !important;
  gap: 8px !important;
  background-clip: padding-box !important;
  text-decoration: none !important;
  border-radius: 8px !important;
  font-weight: 500 !important;
  line-height: 150% !important;
  background-color: #f8eeff !important;
  color: #26005a !important;
  border: 2px solid transparent !important;
}
.products-shell.color--violet .products-shell__more .button.outline {
  background-color: transparent !important;
  border-color: #f8eeff !important;
  color: #f8eeff !important;
}
.products-shell.color--violet .products-shell__more .button:hover {
  border-color: transparent !important;
  color: #26005a !important;
  background-color: #d396ff !important;
}
.products-shell.color--violet .products-shell__more .button:focus-visible {
  color: #26005a !important;
  background-color: #d396ff !important;
  border-color: transparent !important;
  outline: 2px solid #d396ff !important;
}
.products-shell.color--violet .products-shell__more .button:active {
  outline: none !important;
  border-color: transparent !important;
  color: #ffffff !important;
  background-color: #c573ff !important;
}
.products-shell.color--violet .products-shell__more .button.ghost {
  color: #f8eeff !important;
  background-color: transparent !important;
  border-color: transparent !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.products-shell.color--violet .products-shell__more .button.ghost .button__label {
  position: relative !important;
}
.products-shell.color--violet .products-shell__more .button.ghost .button__label:after {
  position: absolute !important;
  content: '' !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 0 !important;
  transition: width 400ms !important;
  height: 1px !important;
  background-color: #f8eeff !important;
}
.products-shell.color--violet .products-shell__more .button.ghost:hover {
  border-color: transparent !important;
  color: #f8eeff !important;
  background-color: transparent !important;
}
.products-shell.color--violet .products-shell__more .button.ghost:hover .button__label::after {
  width: 100% !important;
}
.products-shell.color--violet .products-shell__more .button.ghost:focus-visible {
  outline: none !important;
  background-color: transparent !important;
  border-color: #d396ff !important;
  color: #f8eeff !important;
}
.products-shell.color--violet .products-shell__more .button.ghost:active {
  border-color: transparent !important;
  background-color: #f8eeff !important;
  color: #26005a !important;
}
.products-shell.color--violet .products-shell__more .button__icon {
  font-size: 24px !important;
  margin-bottom: 0 !important;
}
.products-shell.color--crimson .products-shell__more .button {
  text-align: center !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: fit-content !important;
  gap: 8px !important;
  background-clip: padding-box !important;
  text-decoration: none !important;
  border-radius: 8px !important;
  font-weight: 500 !important;
  line-height: 150% !important;
  background-color: #ffeeed !important;
  color: #560900 !important;
  border: 2px solid transparent !important;
}
.products-shell.color--crimson .products-shell__more .button.outline {
  background-color: transparent !important;
  border-color: #ffeeed !important;
  color: #ffeeed !important;
}
.products-shell.color--crimson .products-shell__more .button:hover {
  border-color: transparent !important;
  color: #560900 !important;
  background-color: #ff9794 !important;
}
.products-shell.color--crimson .products-shell__more .button:focus-visible {
  color: #560900 !important;
  background-color: #ff9794 !important;
  border-color: transparent !important;
  outline: 2px solid #ff9794 !important;
}
.products-shell.color--crimson .products-shell__more .button:active {
  outline: none !important;
  border-color: transparent !important;
  color: #ffffff !important;
  background-color: #ff7471 !important;
}
.products-shell.color--crimson .products-shell__more .button.ghost {
  color: #ffeeed !important;
  background-color: transparent !important;
  border-color: transparent !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.products-shell.color--crimson .products-shell__more .button.ghost .button__label {
  position: relative !important;
}
.products-shell.color--crimson .products-shell__more .button.ghost .button__label:after {
  position: absolute !important;
  content: '' !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 0 !important;
  transition: width 400ms !important;
  height: 1px !important;
  background-color: #ffeeed !important;
}
.products-shell.color--crimson .products-shell__more .button.ghost:hover {
  border-color: transparent !important;
  color: #ffeeed !important;
  background-color: transparent !important;
}
.products-shell.color--crimson .products-shell__more .button.ghost:hover .button__label::after {
  width: 100% !important;
}
.products-shell.color--crimson .products-shell__more .button.ghost:focus-visible {
  outline: none !important;
  background-color: transparent !important;
  border-color: #ff9794 !important;
  color: #ffeeed !important;
}
.products-shell.color--crimson .products-shell__more .button.ghost:active {
  border-color: transparent !important;
  background-color: #ffeeed !important;
  color: #560900 !important;
}
.products-shell.color--crimson .products-shell__more .button__icon {
  font-size: 24px !important;
  margin-bottom: 0 !important;
}
.products-shell.color--forest .products-shell__more .button {
  text-align: center !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: fit-content !important;
  gap: 8px !important;
  background-clip: padding-box !important;
  text-decoration: none !important;
  border-radius: 8px !important;
  font-weight: 500 !important;
  line-height: 150% !important;
  background-color: #f0ffec !important;
  color: #023a00 !important;
  border: 2px solid transparent !important;
}
.products-shell.color--forest .products-shell__more .button.outline {
  background-color: transparent !important;
  border-color: #f0ffec !important;
  color: #f0ffec !important;
}
.products-shell.color--forest .products-shell__more .button:hover {
  border-color: transparent !important;
  color: #023a00 !important;
  background-color: #beffab !important;
}
.products-shell.color--forest .products-shell__more .button:focus-visible {
  color: #023a00 !important;
  background-color: #beffab !important;
  border-color: transparent !important;
  outline: 2px solid #beffab !important;
}
.products-shell.color--forest .products-shell__more .button:active {
  outline: none !important;
  border-color: transparent !important;
  color: #ffffff !important;
  background-color: #a8ff8f !important;
}
.products-shell.color--forest .products-shell__more .button.ghost {
  color: #f0ffec !important;
  background-color: transparent !important;
  border-color: transparent !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.products-shell.color--forest .products-shell__more .button.ghost .button__label {
  position: relative !important;
}
.products-shell.color--forest .products-shell__more .button.ghost .button__label:after {
  position: absolute !important;
  content: '' !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 0 !important;
  transition: width 400ms !important;
  height: 1px !important;
  background-color: #f0ffec !important;
}
.products-shell.color--forest .products-shell__more .button.ghost:hover {
  border-color: transparent !important;
  color: #f0ffec !important;
  background-color: transparent !important;
}
.products-shell.color--forest .products-shell__more .button.ghost:hover .button__label::after {
  width: 100% !important;
}
.products-shell.color--forest .products-shell__more .button.ghost:focus-visible {
  outline: none !important;
  background-color: transparent !important;
  border-color: #beffab !important;
  color: #f0ffec !important;
}
.products-shell.color--forest .products-shell__more .button.ghost:active {
  border-color: transparent !important;
  background-color: #f0ffec !important;
  color: #023a00 !important;
}
.products-shell.color--forest .products-shell__more .button__icon {
  font-size: 24px !important;
  margin-bottom: 0 !important;
}
.products-shell.color--canary .products-shell__more .button {
  text-align: center !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: fit-content !important;
  gap: 8px !important;
  background-clip: padding-box !important;
  text-decoration: none !important;
  border-radius: 8px !important;
  font-weight: 500 !important;
  line-height: 150% !important;
  background-color: #fffce6 !important;
  color: #564a00 !important;
  border: 2px solid transparent !important;
}
.products-shell.color--canary .products-shell__more .button.outline {
  background-color: transparent !important;
  border-color: #fffce6 !important;
  color: #fffce6 !important;
}
.products-shell.color--canary .products-shell__more .button:hover {
  border-color: transparent !important;
  color: #564a00 !important;
  background-color: #fdf092 !important;
}
.products-shell.color--canary .products-shell__more .button:focus-visible {
  color: #564a00 !important;
  background-color: #fdf092 !important;
  border-color: transparent !important;
  outline: 2px solid #fdf092 !important;
}
.products-shell.color--canary .products-shell__more .button:active {
  outline: none !important;
  border-color: transparent !important;
  color: #ffffff !important;
  background-color: #fdeb6d !important;
}
.products-shell.color--canary .products-shell__more .button.ghost {
  color: #fffce6 !important;
  background-color: transparent !important;
  border-color: transparent !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.products-shell.color--canary .products-shell__more .button.ghost .button__label {
  position: relative !important;
}
.products-shell.color--canary .products-shell__more .button.ghost .button__label:after {
  position: absolute !important;
  content: '' !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 0 !important;
  transition: width 400ms !important;
  height: 1px !important;
  background-color: #fffce6 !important;
}
.products-shell.color--canary .products-shell__more .button.ghost:hover {
  border-color: transparent !important;
  color: #fffce6 !important;
  background-color: transparent !important;
}
.products-shell.color--canary .products-shell__more .button.ghost:hover .button__label::after {
  width: 100% !important;
}
.products-shell.color--canary .products-shell__more .button.ghost:focus-visible {
  outline: none !important;
  background-color: transparent !important;
  border-color: #fdf092 !important;
  color: #fffce6 !important;
}
.products-shell.color--canary .products-shell__more .button.ghost:active {
  border-color: transparent !important;
  background-color: #fffce6 !important;
  color: #564a00 !important;
}
.products-shell.color--canary .products-shell__more .button__icon {
  font-size: 24px !important;
  margin-bottom: 0 !important;
}
.products-shell.color--fuchsia .products-shell__more .button {
  text-align: center !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: fit-content !important;
  gap: 8px !important;
  background-clip: padding-box !important;
  text-decoration: none !important;
  border-radius: 8px !important;
  font-weight: 500 !important;
  line-height: 150% !important;
  background-color: #ffeef7 !important;
  color: #4f0230 !important;
  border: 2px solid transparent !important;
}
.products-shell.color--fuchsia .products-shell__more .button.outline {
  background-color: transparent !important;
  border-color: #ffeef7 !important;
  color: #ffeef7 !important;
}
.products-shell.color--fuchsia .products-shell__more .button:hover {
  border-color: transparent !important;
  color: #4f0230 !important;
  background-color: #ff9be3 !important;
}
.products-shell.color--fuchsia .products-shell__more .button:focus-visible {
  color: #4f0230 !important;
  background-color: #ff9be3 !important;
  border-color: transparent !important;
  outline: 2px solid #ff9be3 !important;
}
.products-shell.color--fuchsia .products-shell__more .button:active {
  outline: none !important;
  border-color: transparent !important;
  color: #ffffff !important;
  background-color: #ff79bd !important;
}
.products-shell.color--fuchsia .products-shell__more .button.ghost {
  color: #ffeef7 !important;
  background-color: transparent !important;
  border-color: transparent !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.products-shell.color--fuchsia .products-shell__more .button.ghost .button__label {
  position: relative !important;
}
.products-shell.color--fuchsia .products-shell__more .button.ghost .button__label:after {
  position: absolute !important;
  content: '' !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 0 !important;
  transition: width 400ms !important;
  height: 1px !important;
  background-color: #ffeef7 !important;
}
.products-shell.color--fuchsia .products-shell__more .button.ghost:hover {
  border-color: transparent !important;
  color: #ffeef7 !important;
  background-color: transparent !important;
}
.products-shell.color--fuchsia .products-shell__more .button.ghost:hover .button__label::after {
  width: 100% !important;
}
.products-shell.color--fuchsia .products-shell__more .button.ghost:focus-visible {
  outline: none !important;
  background-color: transparent !important;
  border-color: #ff9be3 !important;
  color: #ffeef7 !important;
}
.products-shell.color--fuchsia .products-shell__more .button.ghost:active {
  border-color: transparent !important;
  background-color: #ffeef7 !important;
  color: #4f0230 !important;
}
.products-shell.color--fuchsia .products-shell__more .button__icon {
  font-size: 24px !important;
  margin-bottom: 0 !important;
}
.products-shell.color--pumpkin .products-shell__more .button {
  text-align: center !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: fit-content !important;
  gap: 8px !important;
  background-clip: padding-box !important;
  text-decoration: none !important;
  border-radius: 8px !important;
  font-weight: 500 !important;
  line-height: 150% !important;
  background-color: #fff0e6 !important;
  color: #5b2500 !important;
  border: 2px solid transparent !important;
}
.products-shell.color--pumpkin .products-shell__more .button.outline {
  background-color: transparent !important;
  border-color: #fff0e6 !important;
  color: #fff0e6 !important;
}
.products-shell.color--pumpkin .products-shell__more .button:hover {
  border-color: transparent !important;
  color: #5b2500 !important;
  background-color: #ffa366 !important;
}
.products-shell.color--pumpkin .products-shell__more .button:focus-visible {
  color: #5b2500 !important;
  background-color: #ffa366 !important;
  border-color: transparent !important;
  outline: 2px solid #ffa366 !important;
}
.products-shell.color--pumpkin .products-shell__more .button:active {
  outline: none !important;
  border-color: transparent !important;
  color: #ffffff !important;
  background-color: #ff8838 !important;
}
.products-shell.color--pumpkin .products-shell__more .button.ghost {
  color: #fff0e6 !important;
  background-color: transparent !important;
  border-color: transparent !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.products-shell.color--pumpkin .products-shell__more .button.ghost .button__label {
  position: relative !important;
}
.products-shell.color--pumpkin .products-shell__more .button.ghost .button__label:after {
  position: absolute !important;
  content: '' !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 0 !important;
  transition: width 400ms !important;
  height: 1px !important;
  background-color: #fff0e6 !important;
}
.products-shell.color--pumpkin .products-shell__more .button.ghost:hover {
  border-color: transparent !important;
  color: #fff0e6 !important;
  background-color: transparent !important;
}
.products-shell.color--pumpkin .products-shell__more .button.ghost:hover .button__label::after {
  width: 100% !important;
}
.products-shell.color--pumpkin .products-shell__more .button.ghost:focus-visible {
  outline: none !important;
  background-color: transparent !important;
  border-color: #ffa366 !important;
  color: #fff0e6 !important;
}
.products-shell.color--pumpkin .products-shell__more .button.ghost:active {
  border-color: transparent !important;
  background-color: #fff0e6 !important;
  color: #5b2500 !important;
}
.products-shell.color--pumpkin .products-shell__more .button__icon {
  font-size: 24px !important;
  margin-bottom: 0 !important;
}
.products-shell.color--custom .products-shell__more .button {
  text-align: center !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: fit-content !important;
  gap: 8px !important;
  background-clip: padding-box !important;
  text-decoration: none !important;
  border-radius: 8px !important;
  font-weight: 500 !important;
  line-height: 150% !important;
  background-color: #000835 !important;
  color: #3a8bff !important;
  border: 2px solid transparent !important;
}
.products-shell.color--custom .products-shell__more .button.outline {
  background-color: transparent !important;
  border-color: #000835 !important;
  color: #000835 !important;
}
.products-shell.color--custom .products-shell__more .button:hover {
  border-color: transparent !important;
  color: #3a8bff !important;
  background-color: #000835 !important;
}
.products-shell.color--custom .products-shell__more .button:focus-visible {
  color: #3a8bff !important;
  background-color: #000835 !important;
  border-color: transparent !important;
  outline: 2px solid #000835 !important;
}
.products-shell.color--custom .products-shell__more .button:active {
  outline: none !important;
  border-color: transparent !important;
  color: #ffffff !important;
  background-color: #61a2ff !important;
}
.products-shell.color--custom .products-shell__more .button.ghost {
  color: #000835 !important;
  background-color: transparent !important;
  border-color: transparent !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.products-shell.color--custom .products-shell__more .button.ghost .button__label {
  position: relative !important;
}
.products-shell.color--custom .products-shell__more .button.ghost .button__label:after {
  position: absolute !important;
  content: '' !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 0 !important;
  transition: width 400ms !important;
  height: 1px !important;
  background-color: #000835 !important;
}
.products-shell.color--custom .products-shell__more .button.ghost:hover {
  border-color: transparent !important;
  color: #000835 !important;
  background-color: transparent !important;
}
.products-shell.color--custom .products-shell__more .button.ghost:hover .button__label::after {
  width: 100% !important;
}
.products-shell.color--custom .products-shell__more .button.ghost:focus-visible {
  outline: none !important;
  background-color: transparent !important;
  border-color: #000835 !important;
  color: #000835 !important;
}
.products-shell.color--custom .products-shell__more .button.ghost:active {
  border-color: transparent !important;
  background-color: #000835 !important;
  color: #3a8bff !important;
}
.products-shell.color--custom .products-shell__more .button__icon {
  font-size: 24px !important;
  margin-bottom: 0 !important;
}
.products-shell__element {
  margin-top: 32px;
}
.products-shell__text {
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
  gap: 16px;
}
.products-shell__text-subheading {
  background-color: #0c66e1;
  color: #ffffff;
  padding: 8px;
}
.products-shell__text-description {
  padding: 0 8px;
}
.products-shell__text .button {
  margin: 0 8px !important;
}
.products-shell__items {
  overflow: hidden;
  display: grid;
  gap: 1px;
}
.products-shell__item {
  padding: 16px;
  min-height: 160px;
  outline: 1px solid #0c66e1;
  position: relative;
  overflow: hidden;
  transition: all 400ms;
}
.products-shell__item--hidden {
  min-height: 0;
  height: 0;
  padding-top: 0;
  padding-bottom: 0;
}
.products-shell__item--active {
  background-color: #ebf3ff;
}
.products-shell__item::after {
  transition: opacity 400ms;
  font-family: 'AmadeusIconFont';
  content: '\e944';
  font-size: 24px;
  color: #0c66e1;
  position: absolute;
  right: 16px;
  bottom: 16px;
}
.products-shell__item-header {
  margin-bottom: 8px;
}
.products-shell__item div:has(.products-shell__item-description) {
  display: grid;
  transition: grid-template-rows 400ms;
  grid-template-rows: 0fr;
  margin-bottom: 8px;
}
.products-shell__item-description {
  overflow: hidden;
}
.products-shell__item--active div:has(.products-shell__item-description) {
  grid-template-rows: 1fr;
}
.products-shell__item .button {
  pointer-events: none;
  opacity: 0;
  transition: opacity 400ms;
}
.products-shell__item--active .button {
  opacity: 1;
  pointer-events: all;
}
.products-shell__item--active::after {
  opacity: 0;
}
.products-shell__more {
  z-index: 1;
  padding-top: 12px;
  outline: 5px solid white;
  display: flex;
  justify-content: center;
}
.products-shell__more .button__label::before {
  content: attr(data-more);
}
.products-shell__more .button--active .button__label::before {
  content: attr(data-less);
}
.products-shell__more .button--active span:nth-child(2) {
  transform: rotateZ(180deg);
}
@media (min-width: 768px) {
  .products-shell__element {
    margin-top: 48px;
  }
  .products-shell__text {
    margin-bottom: 32px;
  }
  .products-shell__items {
    grid-template-columns: repeat(3, 1fr);
  }
  .products-shell__item {
    height: 380px;
    min-height: unset;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .products-shell__item--hidden {
    min-height: 0;
    height: 0;
    padding-top: 0;
    padding-bottom: 0;
  }
  .products-shell__more {
    grid-column: 1 / span 3;
  }
}
@media (min-width: 992px) {
  .products-shell__item div:has(.products-shell__item-description) {
    flex-grow: 1;
  }
}
@media (min-width: 1200px) {
  .products-shell__element {
    display: flex;
    gap: 30px;
  }
  .products-shell__text {
    flex: 0 0 30%;
    margin: 0 32px 0 0;
  }
  .products-shell__text .button {
    margin-top: 8px !important;
  }
}
@media (hover: hover) {
  .products-shell__item:hover {
    background-color: #ebf3ff;
  }
  .products-shell__item:hover .button {
    pointer-events: all;
  }
  .products-shell__item::after {
    content: none;
  }
  .products-shell__item div:has(.products-shell__item-description) {
    grid-template-rows: 1fr;
    flex-grow: 1;
  }
  .products-shell__item-description {
    opacity: 0;
  }
  .products-shell__item:hover .products-shell__item-description,
  .products-shell__item:hover .button {
    opacity: 1;
  }
}

.cmp-masthead {
  --max-width: 1280px;
  z-index: 10;
  position: fixed;
  width: 100%;
  background: linear-gradient(to bottom, #ffffff 72px, transparent 72px);
}
.cmp-masthead ::-webkit-scrollbar {
  width: 0px;
  background: transparent;
}
@keyframes slide-left {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(50%);
  }
}
.cmp-masthead .bg-color-sky:before {
  position: absolute;
  width: 100%;
  right: 0;
  top: 0;
  height: 100%;
  background-color: #000835;
  content: "";
  transition: height 400ms ease-in-out;
}
.cmp-masthead .bg-color-violetta:before {
  position: absolute;
  width: 100%;
  right: 0;
  top: 0;
  height: 100%;
  background-color: #26005a;
  content: "";
  transition: height 400ms ease-in-out;
}
.cmp-masthead .bg-color-forest:before {
  position: absolute;
  width: 100%;
  right: 0;
  top: 0;
  height: 100%;
  background-color: #023a00;
  content: "";
  transition: height 400ms ease-in-out;
}
.cmp-masthead .bg-image-sky:before {
  position: absolute;
  width: 150%;
  right: 0;
  left: -50%;
  top: 0;
  height: 100%;
  background-size: 50%;
  background-position: top left;
  background-repeat: repeat-x;
  background-image: url('../../../content/dam/amadeuswebevo/sky.jpeg');
  content: "";
  animation: slide-left 25s infinite linear;
}
.cmp-masthead .bg-image-violetta:before {
  position: absolute;
  width: 150%;
  right: 0;
  left: -50%;
  top: 0;
  height: 100%;
  background-size: 50%;
  background-position: top left;
  background-repeat: repeat-x;
  background-image: url('../../../content/dam/amadeuswebevo/violet.jpeg');
  content: "";
  animation: slide-left 25s infinite linear;
}
.cmp-masthead .bg-image-forest:before {
  position: absolute;
  width: 150%;
  right: 0;
  left: -50%;
  top: 0;
  height: 100%;
  background-size: 50%;
  background-position: top left;
  background-repeat: repeat-x;
  background-image: url('../../../content/dam/amadeuswebevo/forest.jpeg');
  content: "";
  animation: slide-left 25s infinite linear;
}
.cmp-masthead ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.cmp-masthead a {
  text-decoration: none;
}
.cmp-masthead__navbar {
  background-color: #ffffff;
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  height: 72px;
}
.cmp-masthead__navbar * {
  background-color: transparent;
}
.cmp-masthead__navbar-header {
  display: flex;
  align-items: center;
  background-color: transparent;
  gap: 16px;
}
.cmp-masthead__navbar-header img {
  max-width: 104px;
}
.cmp-masthead__navbar-header span {
  color: #808080;
}
ul.cmp-masthead__navbar-links {
  padding-left: 40px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-grow: 1;
}
.cmp-masthead__navbar-link {
  width: 100%;
  display: flex;
  align-items: center;
  border: none;
  border-radius: 4px;
  gap: 4px;
  color: #000835;
}
.cmp-masthead__navbar-link span:first-child {
  position: relative;
}
.cmp-masthead__navbar-link span:first-child::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 100%;
  transition: right 400ms;
  background-color: #0c66e1;
  height: 3px;
  border-radius: 1px;
}
.cmp-masthead__navbar-link [class^=coral3-Icon--custom_small-arrow] {
  display: none;
}
.cmp-masthead__navbar-link [class^=coral3-Icon--custom_] {
  transform: rotateX(0deg);
  transition: transform 400ms;
}
.cmp-masthead__navbar-link:hover {
  background-color: #ebf3ff;
}
.cmp-masthead__navbar-link:focus-visible {
  outline: 1px solid #0c66e1;
}
.cmp-masthead__navbar-link--active [class^=coral3-Icon--custom_] {
  transform: rotateX(180deg);
}
.cmp-masthead__navbar-link--active span:first-child::after {
  right: 0;
}
.cmp-masthead__navbar-container,
ul.cmp-masthead__navbar-options {
  display: flex;
  align-items: center;
  gap: 16px;
}
.cmp-masthead__navbar-container button,
ul.cmp-masthead__navbar-options button {
  border: none;
}
.cmp-masthead__navbar-func-languageSelection {
  position: relative;
}
.cmp-masthead__navbar-option {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cmp-masthead__navbar-option [class^=coral3-Icon--custom_] {
  font-size: 32px;
  padding-right: 4px;
}
.cmp-masthead__navbar-option--bordered {
  position: relative;
}
.cmp-masthead__navbar-option--bordered::after {
  content: "";
  position: relative;
  width: 1px;
  height: 32px;
  right: 0;
  margin-left: 16px;
  background-color: #cccccc;
}
.cmp-masthead__navbar-option--bordered + .cmp-masthead__navbar-option-languages {
  right: calc(0% + 16px);
}
.cmp-masthead__navbar-option-languages {
  position: absolute;
  top: 130%;
  right: 0%;
  z-index: 1000;
  max-height: 0;
  overflow: hidden;
  transition: max-height 200ms;
  width: 290px;
  border-radius: 8px;
  box-shadow: 0px 0px 8px 0px rgba(128, 128, 128, 0.25);
  background-color: #ffffff;
}
.cmp-masthead__navbar-option-languages li {
  height: 48px;
  position: relative;
  z-index: 10000;
}
.cmp-masthead__navbar-option-languages li a {
  display: block;
  height: 100%;
  width: 100%;
  padding: 12px 15px;
}
.cmp-masthead__navbar-option-languages li a:hover {
  background-color: #ebf3ff;
}
.cmp-masthead__navbar-option-languages li a:focus-visible {
  outline: 1px solid #0c66e1;
}
.cmp-masthead__navbar-option-languages::after {
  height: 0;
  transition: height 400ms;
}
.cmp-masthead__navbar-option-languages--active {
  max-height: calc(48px * 4);
  overflow: unset;
}
.cmp-masthead__navbar-option-languages--active::after {
  background-color: #ffffff;
  box-shadow: -2px -7px 14px 0 rgba(128, 128, 128, 0.25);
  position: absolute;
  top: -7%;
  right: 7%;
  content: "";
  width: 14px;
  height: 14px;
  transform: rotateZ(45deg);
}
.cmp-masthead__navbar-cta {
  padding: 11px 24px;
  background-color: #0c66e1;
  border-radius: 8px;
  color: #ffffff;
}
.cmp-masthead__navbar-hamburger {
  display: none;
}
.cmp-masthead__navmenu {
  display: grid;
  grid-auto-flow: column;
  overflow: hidden;
  grid-template-columns: 1fr;
  position: relative;
  background-color: transparent;
  min-width: 100%;
}
.cmp-masthead__navmenu--first {
  border-top: 1px solid #cccccc;
  grid-template-columns: 1fr minmax(auto, var(--max-width)) 1fr;
  transition: all 400ms ease-in-out;
  max-height: 0;
  opacity: 0.5;
  justify-content: center;
  align-content: stretch;
  background: linear-gradient(to right, #ffffff calc((100vw - var(--max-width)) / 2), transparent calc((100vw - var(--max-width)) / 2));
}
.cmp-masthead__navmenu--first.cmp-masthead__navmenu--active {
  opacity: 1;
  max-height: 100%;
}
.cmp-masthead__navmenu--second {
  grid-column-start: 2;
  grid-column-end: 5;
  grid-row: 1;
}
.cmp-masthead__panel {
  grid-row: 1;
  grid-column: 1;
  display: flex;
  transition: max-width 400ms ease-in-out;
  overflow-x: hidden;
}
.cmp-masthead__panel--first {
  position: relative;
  display: grid;
  grid-auto-flow: column;
  grid-template-columns: repeat(3, minmax(auto, calc(var(--max-width)/3))) 1fr;
  grid-template-rows: 1fr;
  min-height: 0;
  width: 0;
  height: 100%;
  overflow: hidden;
  grid-column-start: 2;
  grid-column-end: 4;
  transition: width 400ms ease-in-out;
}
.cmp-masthead__panel--first.cmp-masthead__panel--active {
  width: 100%;
}
.cmp-masthead__panel--first > .cmp-masthead__panel-content {
  padding-left: 0px;
}
.cmp-masthead__panel--first > .cmp-masthead__panel-content,
.cmp-masthead__panel--active > .cmp-masthead__panel-content {
  min-width: calc(var(--max-width) / 3);
  z-index: 100;
  padding: 24px 15px;
}
.cmp-masthead__panel--third.cmp-masthead__panel--active > .cmp-masthead__panel-content {
  min-width: 100%;
}
.cmp-masthead__panel-content {
  min-width: 0;
  width: 0;
  z-index: 20;
  overflow-x: hidden;
  position: relative;
  transition: all 400ms ease-in-out;
  background-color: #ffffff;
  padding: 24px 0px;
}
.cmp-masthead__panel-content > ul {
  max-height: 280px;
  overflow-y: scroll;
}
.cmp-masthead__panel-content::after {
  content: "";
  display: block;
  width: 1px;
  position: absolute;
  top: 24px;
  bottom: 24px;
  right: 0;
  background-color: #cccccc;
}
.cmp-masthead__panel-title {
  color: #000835;
  font-size: 24px;
  font-weight: 400;
  line-height: 31.2px;
  padding-left: 16px;
}
.cmp-masthead__panel--third .cmp-masthead__panel-title,
.cmp-masthead__panel--third .cmp-masthead__panel-description,
.cmp-masthead__panel--third > .cmp-masthead__panel-content > ul {
  max-width: calc(var(--max-width) / 3 - 30px);
}
.cmp-masthead__panel-description {
  padding: 8px 16px 16px 16px;
}
.cmp-masthead__panel-link {
  color: #000835;
  width: 100%;
  border-radius: 8px;
  height: 56px;
  padding: 16px;
  background-color: transparent;
  border: none;
  display: flex;
  align-items: center;
  gap: 8px;
}
.cmp-masthead__panel-link span {
  font-size: 24px;
}
.cmp-masthead__panel-link [class^=coral3-Icon--custom_small-arrow] {
  margin-top: auto;
  font-size: 6px;
  margin-left: auto;
  height: 100%;
  display: grid;
  place-content: center;
}
.cmp-masthead__panel-link:hover {
  background-color: #ebf3ff;
}
.cmp-masthead__panel-link:focus-visible {
  border: 1px solid #0c66e1;
}
.cmp-masthead__panel-link--active {
  background-color: #0c66e1;
  color: #ffffff;
}
.cmp-masthead__panel-link--active:hover,
.cmp-masthead__panel-link--active:focus-visible,
.cmp-masthead__panel-link--active:active {
  background-color: #0c66e1;
  color: #ffffff;
}
.cmp-masthead__panel-back-button {
  display: none;
}
.cmp-masthead__panel-promo-section {
  position: relative;
  display: flex;
  grid-column-start: 2;
  grid-column-end: 4;
  grid-row: 1;
  max-height: 100%;
}
.cmp-masthead__panel-promo {
  width: calc(var(--max-width) / 3);
  padding: 24px 24px;
  transition: width 400ms ease-in-out;
}
.cmp-masthead__panel-promo picture {
  width: 100%;
}
.cmp-masthead__panel-promo picture img {
  object-fit: cover;
  height: 180px;
  width: 100%;
  padding-bottom: 16px;
}
.cmp-masthead__panel-promo-text {
  color: #ffffff;
}
.cmp-masthead__panel-promo-text div {
  font-size: 24px;
  font-weight: 1000;
  line-height: 31px;
}
.cmp-masthead__panel-promo-text p {
  padding: 8px 0;
}
.cmp-masthead__panel-promo-text a {
  color: #ffffff;
}
.cmp-masthead__panel-promo--solo .cmp-masthead__panel-promo-text {
  position: absolute;
  left: 340px;
  transition: left 400ms;
}
.cmp-masthead__panel-promo--img-hidden .cmp-masthead__panel-promo-text {
  left: calc(50% + 15px);
}
.cmp-masthead__panel-promo--solo {
  width: 100%;
  position: relative;
  gap: 16px;
  display: flex;
  align-items: center;
}
.cmp-masthead__panel-promo--solo picture img {
  height: 300px;
  width: 300px;
}
@media (max-width: 1400px) {
  .cmp-masthead {
    --max-width: 1140px;
  }
  .cmp-masthead__navbar-option {
    font-size: 0;
    gap: 0;
  }
}
@media (max-width: 1199px) {
  .cmp-masthead {
    --max-width: 960px;
  }
  .cmp-masthead__navbar {
    border-bottom: 1px solid #cccccc;
    max-width: unset;
    display: grid;
    padding: 0;
    grid-auto-flow: column;
    grid-template-columns: 1fr 48px min(calc((var(--max-width) / 2) - 48px), 352px) max(calc(var(--max-width) / 2), calc((var(--max-width) - 400px))) 1fr;
    grid-template-rows: 72px auto;
    grid-template-areas: '.     burger header options .' 'links links  links  .       .';
  }
  .cmp-masthead__navbar-header {
    grid-area: header;
    min-height: 100%;
    margin-left: 16px;
  }
  ul.cmp-masthead__navbar-links {
    background-color: #ffffff;
    grid-area: links;
    display: block;
    width: 0;
    overflow: hidden;
    padding: 0;
    left: 0;
    transition: width 400ms;
    top: 72px;
    min-height: calc(100vh - 72px);
  }
  ul.cmp-masthead__navbar-links li {
    border-bottom: 1px solid #cccccc;
    display: flex;
    justify-content: end;
  }
  ul.cmp-masthead__navbar-links--active {
    width: 100%;
  }
  .cmp-masthead__navbar-link {
    padding: 24px 24px 24px 0;
    max-width: min(400px, calc(var(--max-width) / 2));
    min-height: 80px;
    text-align: left;
  }
  .cmp-masthead__navbar-link [class^=coral3-Icon--custom_keyboard-down] {
    display: none;
  }
  .cmp-masthead__navbar-link:focus-visible {
    border: none;
  }
  .cmp-masthead__navbar-link:hover {
    background-color: #ffffff;
  }
  .cmp-masthead__navbar-link span:first-child::after {
    content: none;
  }
  .cmp-masthead__navbar-link [class^=coral3-Icon--custom_small-arrow] {
    margin-top: auto;
    font-size: 6px;
    margin-left: auto;
    height: 100%;
    display: grid;
    place-content: center;
  }
  .cmp-masthead__navbar-hamburger {
    margin-right: 16px;
    grid-area: burger;
    position: relative;
    display: grid;
    align-items: center;
    justify-items: center;
    width: 48px;
    height: 48px;
    border: none;
  }
  .cmp-masthead__navbar-hamburger span:first-child {
    display: block;
    position: absolute;
    font-size: 32px;
    transition: font-size 0.2s 0.2s;
  }
  .cmp-masthead__navbar-hamburger span:nth-child(2) {
    transition: font-size 0.2s;
    font-size: 0;
  }
  .cmp-masthead__navbar-hamburger--active span:first-child {
    transition: font-size 0.2s;
    font-size: 0;
  }
  .cmp-masthead__navbar-hamburger--active span:nth-child(2) {
    transition: font-size 0.2s 0.2s;
    font-size: 32px;
  }
  .cmp-masthead__navbar-container {
    grid-area: options;
    justify-content: end;
  }
  .cmp-masthead__navmenu {
    z-index: 200;
  }
  .cmp-masthead__navmenu--first {
    border-top: none;
    transition: max-width 400ms;
    position: absolute;
    left: 0;
    max-width: 0;
    height: calc(100vh - 72px);
    max-height: unset;
    min-width: unset;
    overflow-x: hidden;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    background: unset;
  }
  .cmp-masthead__navmenu--second,
  .cmp-masthead__navmenu--third {
    height: 100%;
    transition: width 400ms;
    min-width: unset;
    width: 0;
    grid-row-start: 1;
    grid-column-start: 1;
    grid-column-end: 3;
  }
  .cmp-masthead__navmenu--second.cmp-masthead__navmenu--active,
  .cmp-masthead__navmenu--third.cmp-masthead__navmenu--active {
    width: 100%;
  }
  .cmp-masthead__navmenu--first.cmp-masthead__navmenu--active {
    width: 50%;
    max-width: calc(400px + ((100vw - var(--max-width)) / 2));
    max-height: unset;
  }
  .cmp-masthead__panel {
    background-color: #ffffff;
    width: 0;
    transition: width 400ms;
    grid-template-columns: 1fr min(400px, calc(var(--max-width) / 2));
    grid-column-start: 1;
    grid-row-start: 1;
  }
  .cmp-masthead__panel--first {
    height: 100%;
  }
  .cmp-masthead__panel--first.cmp-masthead__panel--active {
    height: 100%;
  }
  .cmp-masthead__panel--first.cmp-masthead__panel--active::before {
    content: none;
  }
  .cmp-masthead__panel--active {
    width: 100%;
  }
  .cmp-masthead__panel--second,
  .cmp-masthead__panel--third {
    display: grid;
  }
  .cmp-masthead__panel--third > .cmp-masthead__panel-content > ul {
    max-width: unset;
  }
  .cmp-masthead__panel::before {
    content: none;
  }
  .cmp-masthead__panel-back-button {
    display: unset;
    text-align: left;
    display: flex;
    color: #0c66e1;
  }
  .cmp-masthead__panel-back-button [class^=coral3-Icon--custom_small-arrow] {
    margin-top: auto;
    margin-left: 0;
    transform: rotateZ(180deg);
  }
  .cmp-masthead__panel-content {
    grid-row-start: 1;
    grid-column-start: 2;
    width: 100%;
    height: 100%;
    max-height: unset;
  }
  .cmp-masthead__panel-content > ul {
    max-height: unset;
  }
  .cmp-masthead__panel-content::after {
    content: none;
  }
  .cmp-masthead__panel > .cmp-masthead__panel-content {
    padding: 24px 16px 0 0;
  }
  .cmp-masthead__panel-promo-section {
    display: none;
  }
}
@media (max-width: 991px) {
  .cmp-masthead {
    --max-width: 720px;
  }
}
@media (max-width: 767px) {
  .cmp-masthead {
    --max-width: 540px;
  }
  ul.cmp-masthead__navbar-links {
    min-height: calc(100vh - 72px);
  }
  .cmp-masthead__navbar-link {
    padding: 16px;
    max-width: 100%;
    min-height: 80px;
  }
  .cmp-masthead__navbar-container {
    grid-area: links;
    padding: 8px 0px;
    justify-self: stretch;
    width: 0;
    transition: all 400ms;
    height: 360px;
    align-content: end;
    overflow-x: hidden;
    align-self: end;
    display: grid;
    justify-content: unset;
  }
  .cmp-masthead__navbar-container--active {
    width: 100%;
  }
  ul.cmp-masthead__navbar-options {
    display: grid;
    grid-auto-flow: column;
    justify-content: center;
    border-top: 1px solid #cccccc;
    border-bottom: 1px solid #cccccc;
  }
  .cmp-masthead__navbar-cta {
    margin: 0 16px;
    text-align: center;
    grid-row-start: 2;
  }
  .cmp-masthead__navbar-func-search {
    position: absolute;
    right: max(calc((100vw - var(--max-width)) /  2), 8px);
    height: 100%;
    top: 0;
  }
  .cmp-masthead__navbar-func-search a {
    height: 100%;
    font-size: 0;
  }
  .cmp-masthead__navbar-func-languageSelection {
    order: 2;
  }
  .cmp-masthead__navbar-option {
    font-size: 16px;
  }
  .cmp-masthead__navbar-option--bordered::after {
    content: none;
  }
  .cmp-masthead__navbar-option--bordered + .cmp-masthead__navbar-option-languages {
    right: -25%;
  }
  .cmp-masthead__navbar-option-languages {
    top: 0%;
    transition: top 400ms, visibility 200ms 200ms;
    bottom: 115%;
    max-height: 144px;
    right: -25%;
    width: 220px;
    visibility: hidden;
  }
  .cmp-masthead__navbar-option-languages::after {
    height: 0;
    transition: height 400ms;
  }
  .cmp-masthead__navbar-option-languages--active {
    top: calc(0% - 144px);
    visibility: visible;
  }
  .cmp-masthead__navbar-option-languages--active::after {
    background-color: #ffffff;
    box-shadow: 8px 5px 14px 0 rgba(128, 128, 128, 0.25);
    position: absolute;
    top: 95%;
    right: 24%;
    content: "";
    width: 14px;
    height: 14px;
    transform: rotateZ(45deg);
  }
}
@media (max-width: 575px) {
  .cmp-masthead__navbar {
    grid-template-areas: '.     burger  header  .    ' 'links links   links   links';
    grid-template-columns: 8px 48px min(var(--max-width), calc(100vw - 64px)) 8px;
    grid-template-rows: 72px;
  }
  .cmp-masthead__navbar-link {
    z-index: 10;
  }
  .cmp-masthead__navmenu--first.cmp-masthead__navmenu--active {
    width: 100%;
    max-width: 100%;
  }
  .cmp-masthead__panel {
    grid-template-columns: 1fr min(100%, var(--max-width)) 1fr;
  }
  .cmp-masthead__panel > .cmp-masthead__panel-content {
    min-width: 100vw;
    grid-column-start: 2;
    grid-column-end: 3;
  }
}
body {
  position: relative;
  /* hide icons that are empty */
}
body span.nav-active-page-quilt {
  display: none;
}
body span.nav-active-page-quilt:before {
  z-index: 11;
  pointer-events: none;
  content: "";
  height: 100%;
  display: block;
  opacity: 0;
  position: absolute;
  background: #1A1A1A;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  transition: opacity 400ms;
}
body span.coral3-Icon--custom_:empty {
  display: none;
}
.overlay--active {
  max-height: 100%;
  position: relative;
}
.overlay--active span.nav-active-page-quilt {
  display: block;
}
.overlay--active span.nav-active-page-quilt:before {
  opacity: 0.5;
  pointer-events: unset;
}
body.amadeusTheme header.experiencefragment {
  min-height: 72px;
  margin-bottom: 0;
}
@media screen and (min-width: 992px) {
  .cmp-masthead__panel-content > ul > li {
    width: calc(calc(var(--max-width) / 3) - 32px);
  }
}

.cmp-base {
  padding: 72px 0;
}
@media (max-width: 991px) {
  .cmp-base {
    padding: 64px 0;
  }
}
@media (max-width: 767px) {
  .cmp-base {
    padding: 48px 0;
  }
}
.cmp-base.padding-top--small {
  padding-top: 40px;
}
@media (max-width: 991px) {
  .cmp-base.padding-top--small {
    padding-top: 32px;
  }
}
@media (max-width: 767px) {
  .cmp-base.padding-top--small {
    padding-top: 24px;
  }
}
.cmp-base.padding-bottom--small {
  padding-bottom: 40px;
}
@media (max-width: 991px) {
  .cmp-base.padding-bottom--small {
    padding-bottom: 32px;
  }
}
@media (max-width: 767px) {
  .cmp-base.padding-bottom--small {
    padding-bottom: 24px;
  }
}
.cmp-base.padding-top--none {
  padding-top: 0;
}
@media (max-width: 991px) {
  .cmp-base.padding-top--none {
    padding-top: 0;
  }
}
@media (max-width: 767px) {
  .cmp-base.padding-top--none {
    padding-top: 0;
  }
}
.cmp-base.padding-bottom--none {
  padding-bottom: 0;
}
@media (max-width: 991px) {
  .cmp-base.padding-bottom--none {
    padding-bottom: 0;
  }
}
@media (max-width: 767px) {
  .cmp-base.padding-bottom--none {
    padding-bottom: 0;
  }
}
.links-gallery {
  padding: 72px 0;
  position: relative;
}
.links-gallery.color--sky {
  background-color: #c5d5f9 !important;
}
.links-gallery.color--sky .cmp-linksgallery__svg-background {
  background-color: #000835 !important;
}
.links-gallery.color--sky .cmp-linksgallery .lgTitle,
.links-gallery.color--sky .cmp-linksgallery .lgDescription,
.links-gallery.color--sky .cmp-linksgallery .label {
  color: #000835 !important;
}
.links-gallery.color--sky .cmp-linksgallery__element {
  background-color: #000835 !important;
  color: #c5d5f9 !important;
}
.links-gallery.color--sky .cmp-linksgallery__element .lgIcon,
.links-gallery.color--sky .cmp-linksgallery__element .lgLinkDesc {
  color: #c5d5f9 !important;
}
.links-gallery.color--sky .cmp-linksgallery__element .actionLink span::before {
  color: #c5d5f9 !important;
}
.links-gallery.color--violet {
  background-color: #e4c7ff !important;
}
.links-gallery.color--violet .cmp-linksgallery__svg-background {
  background-color: #26005a !important;
}
.links-gallery.color--violet .cmp-linksgallery .lgTitle,
.links-gallery.color--violet .cmp-linksgallery .lgDescription,
.links-gallery.color--violet .cmp-linksgallery .label {
  color: #26005a !important;
}
.links-gallery.color--violet .cmp-linksgallery__element {
  background-color: #26005a !important;
  color: #e4c7ff !important;
}
.links-gallery.color--violet .cmp-linksgallery__element .lgIcon,
.links-gallery.color--violet .cmp-linksgallery__element .lgLinkDesc {
  color: #e4c7ff !important;
}
.links-gallery.color--violet .cmp-linksgallery__element .actionLink span::before {
  color: #e4c7ff !important;
}
.links-gallery.color--crimson {
  background-color: #ffd7d7 !important;
}
.links-gallery.color--crimson .cmp-linksgallery__svg-background {
  background-color: #560900 !important;
}
.links-gallery.color--crimson .cmp-linksgallery .lgTitle,
.links-gallery.color--crimson .cmp-linksgallery .lgDescription,
.links-gallery.color--crimson .cmp-linksgallery .label {
  color: #560900 !important;
}
.links-gallery.color--crimson .cmp-linksgallery__element {
  background-color: #560900 !important;
  color: #ffd7d7 !important;
}
.links-gallery.color--crimson .cmp-linksgallery__element .lgIcon,
.links-gallery.color--crimson .cmp-linksgallery__element .lgLinkDesc {
  color: #ffd7d7 !important;
}
.links-gallery.color--crimson .cmp-linksgallery__element .actionLink span::before {
  color: #ffd7d7 !important;
}
.links-gallery.color--forest {
  background-color: #c8ffc0 !important;
}
.links-gallery.color--forest .cmp-linksgallery__svg-background {
  background-color: #023a00 !important;
}
.links-gallery.color--forest .cmp-linksgallery .lgTitle,
.links-gallery.color--forest .cmp-linksgallery .lgDescription,
.links-gallery.color--forest .cmp-linksgallery .label {
  color: #023a00 !important;
}
.links-gallery.color--forest .cmp-linksgallery__element {
  background-color: #023a00 !important;
  color: #c8ffc0 !important;
}
.links-gallery.color--forest .cmp-linksgallery__element .lgIcon,
.links-gallery.color--forest .cmp-linksgallery__element .lgLinkDesc {
  color: #c8ffc0 !important;
}
.links-gallery.color--forest .cmp-linksgallery__element .actionLink span::before {
  color: #c8ffc0 !important;
}
.links-gallery.padding-top--small {
  padding-top: 40px;
}
@media (max-width: 991px) {
  .links-gallery.padding-top--small {
    padding-top: 32px;
  }
}
@media (max-width: 767px) {
  .links-gallery.padding-top--small {
    padding-top: 24px;
  }
}
.links-gallery.padding-bottom--small {
  padding-bottom: 40px;
}
@media (max-width: 991px) {
  .links-gallery.padding-bottom--small {
    padding-bottom: 32px;
  }
}
@media (max-width: 767px) {
  .links-gallery.padding-bottom--small {
    padding-bottom: 24px;
  }
}
.links-gallery.padding-top--none {
  padding-top: 0;
}
@media (max-width: 991px) {
  .links-gallery.padding-top--none {
    padding-top: 0;
  }
}
@media (max-width: 767px) {
  .links-gallery.padding-top--none {
    padding-top: 0;
  }
}
.links-gallery.padding-bottom--none {
  padding-bottom: 0;
}
@media (max-width: 991px) {
  .links-gallery.padding-bottom--none {
    padding-bottom: 0;
  }
}
@media (max-width: 767px) {
  .links-gallery.padding-bottom--none {
    padding-bottom: 0;
  }
}
@media (max-width: 991px) {
  .links-gallery {
    padding: 64px 0;
  }
}
@media (max-width: 767px) {
  .links-gallery {
    padding: 48px 0;
  }
}
.links-gallery > .container {
  position: relative;
}
.links-gallery .cmp-linksgallery__svg-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  mask-size: cover;
  mask-position: center;
  background-color: #0c66e1;
}
.links-gallery .cmp-linksgallery .mainText {
  margin: 0 auto;
}
.links-gallery .cmp-linksgallery.title-only .mainText .lgLabel {
  display: none;
}
.links-gallery .cmp-linksgallery.title-intro .mainText .lgLabel {
  display: none;
}
.links-gallery .cmp-linksgallery.title-intro .mainText .lgTitle {
  text-align: left;
}
.links-gallery .cmp-linksgallery.title-intro .mainText .lgDescription {
  text-align: left;
  padding-top: 16px;
}
.links-gallery .cmp-linksgallery.simple .cmp-linksgallery__element .lgMedia {
  display: none;
}
.links-gallery .cmp-linksgallery .linksContainer {
  display: flex;
  align-items: stretch;
  gap: 16px;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .links-gallery .cmp-linksgallery .linksContainer {
    gap: 30px;
    justify-content: space-around;
  }
}
@media (min-width: 768px) {
  .links-gallery .cmp-linksgallery .linksContainer.twoElementsCont {
    justify-content: center;
  }
}
.links-gallery .cmp-linksgallery .linksContainer.linksContainer-grid {
  display: grid !important;
  grid-auto-rows: 1fr;
}
@media (min-width: 992px) {
  .links-gallery .cmp-linksgallery .linksContainer.linksContainer-grid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .links-gallery .cmp-linksgallery .linksContainer.linksContainer-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .links-gallery .cmp-linksgallery .linksContainer.linksContainer-grid {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 992px) {
  .links-gallery .cmp-linksgallery .linksContainer.threeElementsCont {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.links-gallery .cmp-linksgallery .linksContainer.sliderGrid {
  gap: 0;
  justify-content: unset;
}
.links-gallery .cmp-linksgallery .linksContainer.sliderGrid .cmp-linksgallery__element {
  min-width: 220px;
}
.links-gallery .cmp-linksgallery .linksContainer.sliderGrid .cmp-linksgallery__element:not(:last-of-type) {
  margin-right: 16px;
}
.links-gallery .cmp-linksgallery .linksContainer .cmp-linksgallery__element {
  padding: 24px;
  position: relative;
  overflow: hidden;
  min-height: 220px;
  background-color: #ebf3ff;
  text-decoration: none;
}
.links-gallery .cmp-linksgallery .linksContainer .cmp-linksgallery__element:not(.twoItems) {
  flex-grow: 1;
  flex-basis: 100%;
}
@media (min-width: 768px) {
  .links-gallery .cmp-linksgallery .linksContainer .cmp-linksgallery__element:not(.twoItems) {
    flex-basis: calc(3%);
    max-width: 100%;
  }
}
@media (min-width: 992px) {
  .links-gallery .cmp-linksgallery .linksContainer .cmp-linksgallery__element:not(.twoItems) {
    flex-basis: calc(-5%);
    max-width: 100%;
  }
}
.links-gallery .cmp-linksgallery .linksContainer .cmp-linksgallery__element:hover .lgLinkTCont .lgLinkTitle {
  text-decoration: underline;
}
.links-gallery .cmp-linksgallery .linksContainer .cmp-linksgallery__element .lgMedia > * {
  margin-bottom: 16px;
}
.links-gallery .cmp-linksgallery .linksContainer .cmp-linksgallery__element .lgMedia .lgIcon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  transition: 0.3s ease-in-out;
}
.links-gallery .cmp-linksgallery .linksContainer .cmp-linksgallery__element .lgMedia .lgIcon::before {
  color: var(--mdc-theme-primary);
  font-size: 48px;
}
.links-gallery .cmp-linksgallery .linksContainer .cmp-linksgallery__element .lgMedia .lgImg {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 50%;
}
.links-gallery .cmp-linksgallery .linksContainer .cmp-linksgallery__element .lgLinkTCont {
  margin-bottom: 40px;
}
.links-gallery .cmp-linksgallery .linksContainer .cmp-linksgallery__element .lgLinkTCont .lgLinkTitle {
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 130%;
  margin-bottom: 16px;
}
.links-gallery .cmp-linksgallery .linksContainer .cmp-linksgallery__element .lgLinkTCont .lgLinkDesc {
  color: #1a1a1a;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  margin-bottom: 0;
}
.links-gallery .cmp-linksgallery .linksContainer .cmp-linksgallery__element .actionLink {
  display: flex;
  justify-content: end;
  text-decoration: none;
  cursor: pointer;
  position: absolute;
  bottom: 24px;
  right: 24px;
  margin-right: 8px;
  transition: 0.3s ease-in-out;
}
.links-gallery .cmp-linksgallery .linksContainer .cmp-linksgallery__element .actionLink span::before {
  font-size: 32px;
  color: var(--mdc-theme-primary);
}
.links-gallery .cmp-linksgallery .linksContainer .cmp-linksgallery__element:hover .actionLink {
  margin-right: 0px;
}

/**
    Lead Space v2
**/
@font-face {
  font-family: 'AmadeusIconFont';
  src: url('../components/leadspace-v2/clientlibs/fonts/AmadeusIconFont.ttf?3wu7og') format('truetype'), url('../components/leadspace-v2/clientlibs/fonts/AmadeusIconFont.woff?3wu7og') format('woff'), url('../components/leadspace-v2/clientlibs/fonts/AmadeusIconFont.svg?3wu7og#AmadeusIconFont') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
.leadspace-v2 {
  /*  Default background colours */
  /* Default play buttons colours */
  /* Default buttons colours */
  /* Default SVG colour */
}
.leadspace-v2.color--sky,
.leadspace-v2.color--sky .cmp-leadspace-v2__home-buttons {
  background-color: #000835 !important;
}
.leadspace-v2.color--sky .cmp-leadspace-v2__home-title h1,
.leadspace-v2.color--sky .cmp-leadspace-v2__home-buttons .cmp-leadspace-v2__home-title h1,
.leadspace-v2.color--sky .cmp-leadspace-v2__default-text h1,
.leadspace-v2.color--sky .cmp-leadspace-v2__home-buttons .cmp-leadspace-v2__default-text h1,
.leadspace-v2.color--sky .cmp-leadspace-v2__home-title p,
.leadspace-v2.color--sky .cmp-leadspace-v2__home-buttons .cmp-leadspace-v2__home-title p,
.leadspace-v2.color--sky .cmp-leadspace-v2__default-text p,
.leadspace-v2.color--sky .cmp-leadspace-v2__home-buttons .cmp-leadspace-v2__default-text p,
.leadspace-v2.color--sky .cmp-leadspace-v2__home-title .cmp-leadspace-v2__label,
.leadspace-v2.color--sky .cmp-leadspace-v2__home-buttons .cmp-leadspace-v2__home-title .cmp-leadspace-v2__label,
.leadspace-v2.color--sky .cmp-leadspace-v2__default-text .cmp-leadspace-v2__label,
.leadspace-v2.color--sky .cmp-leadspace-v2__home-buttons .cmp-leadspace-v2__default-text .cmp-leadspace-v2__label {
  color: #ebf3ff !important;
}
.leadspace-v2.color--sky .cmp-leadspace-v2__home-buttons-wrapper,
.leadspace-v2.color--sky .cmp-leadspace-v2__home-buttons .cmp-leadspace-v2__home-buttons-wrapper {
  background-color: #000835 !important;
}
.leadspace-v2.color--violet,
.leadspace-v2.color--violet .cmp-leadspace-v2__home-buttons {
  background-color: #26005a !important;
}
.leadspace-v2.color--violet .cmp-leadspace-v2__home-title h1,
.leadspace-v2.color--violet .cmp-leadspace-v2__home-buttons .cmp-leadspace-v2__home-title h1,
.leadspace-v2.color--violet .cmp-leadspace-v2__default-text h1,
.leadspace-v2.color--violet .cmp-leadspace-v2__home-buttons .cmp-leadspace-v2__default-text h1,
.leadspace-v2.color--violet .cmp-leadspace-v2__home-title p,
.leadspace-v2.color--violet .cmp-leadspace-v2__home-buttons .cmp-leadspace-v2__home-title p,
.leadspace-v2.color--violet .cmp-leadspace-v2__default-text p,
.leadspace-v2.color--violet .cmp-leadspace-v2__home-buttons .cmp-leadspace-v2__default-text p,
.leadspace-v2.color--violet .cmp-leadspace-v2__home-title .cmp-leadspace-v2__label,
.leadspace-v2.color--violet .cmp-leadspace-v2__home-buttons .cmp-leadspace-v2__home-title .cmp-leadspace-v2__label,
.leadspace-v2.color--violet .cmp-leadspace-v2__default-text .cmp-leadspace-v2__label,
.leadspace-v2.color--violet .cmp-leadspace-v2__home-buttons .cmp-leadspace-v2__default-text .cmp-leadspace-v2__label {
  color: #f8eeff !important;
}
.leadspace-v2.color--violet .cmp-leadspace-v2__home-buttons-wrapper,
.leadspace-v2.color--violet .cmp-leadspace-v2__home-buttons .cmp-leadspace-v2__home-buttons-wrapper {
  background-color: #26005a !important;
}
.leadspace-v2.color--crimson,
.leadspace-v2.color--crimson .cmp-leadspace-v2__home-buttons {
  background-color: #560900 !important;
}
.leadspace-v2.color--crimson .cmp-leadspace-v2__home-title h1,
.leadspace-v2.color--crimson .cmp-leadspace-v2__home-buttons .cmp-leadspace-v2__home-title h1,
.leadspace-v2.color--crimson .cmp-leadspace-v2__default-text h1,
.leadspace-v2.color--crimson .cmp-leadspace-v2__home-buttons .cmp-leadspace-v2__default-text h1,
.leadspace-v2.color--crimson .cmp-leadspace-v2__home-title p,
.leadspace-v2.color--crimson .cmp-leadspace-v2__home-buttons .cmp-leadspace-v2__home-title p,
.leadspace-v2.color--crimson .cmp-leadspace-v2__default-text p,
.leadspace-v2.color--crimson .cmp-leadspace-v2__home-buttons .cmp-leadspace-v2__default-text p,
.leadspace-v2.color--crimson .cmp-leadspace-v2__home-title .cmp-leadspace-v2__label,
.leadspace-v2.color--crimson .cmp-leadspace-v2__home-buttons .cmp-leadspace-v2__home-title .cmp-leadspace-v2__label,
.leadspace-v2.color--crimson .cmp-leadspace-v2__default-text .cmp-leadspace-v2__label,
.leadspace-v2.color--crimson .cmp-leadspace-v2__home-buttons .cmp-leadspace-v2__default-text .cmp-leadspace-v2__label {
  color: #ffeeed !important;
}
.leadspace-v2.color--crimson .cmp-leadspace-v2__home-buttons-wrapper,
.leadspace-v2.color--crimson .cmp-leadspace-v2__home-buttons .cmp-leadspace-v2__home-buttons-wrapper {
  background-color: #560900 !important;
}
.leadspace-v2.color--forest,
.leadspace-v2.color--forest .cmp-leadspace-v2__home-buttons {
  background-color: #023a00 !important;
}
.leadspace-v2.color--forest .cmp-leadspace-v2__home-title h1,
.leadspace-v2.color--forest .cmp-leadspace-v2__home-buttons .cmp-leadspace-v2__home-title h1,
.leadspace-v2.color--forest .cmp-leadspace-v2__default-text h1,
.leadspace-v2.color--forest .cmp-leadspace-v2__home-buttons .cmp-leadspace-v2__default-text h1,
.leadspace-v2.color--forest .cmp-leadspace-v2__home-title p,
.leadspace-v2.color--forest .cmp-leadspace-v2__home-buttons .cmp-leadspace-v2__home-title p,
.leadspace-v2.color--forest .cmp-leadspace-v2__default-text p,
.leadspace-v2.color--forest .cmp-leadspace-v2__home-buttons .cmp-leadspace-v2__default-text p,
.leadspace-v2.color--forest .cmp-leadspace-v2__home-title .cmp-leadspace-v2__label,
.leadspace-v2.color--forest .cmp-leadspace-v2__home-buttons .cmp-leadspace-v2__home-title .cmp-leadspace-v2__label,
.leadspace-v2.color--forest .cmp-leadspace-v2__default-text .cmp-leadspace-v2__label,
.leadspace-v2.color--forest .cmp-leadspace-v2__home-buttons .cmp-leadspace-v2__default-text .cmp-leadspace-v2__label {
  color: #f0ffec !important;
}
.leadspace-v2.color--forest .cmp-leadspace-v2__home-buttons-wrapper,
.leadspace-v2.color--forest .cmp-leadspace-v2__home-buttons .cmp-leadspace-v2__home-buttons-wrapper {
  background-color: #023a00 !important;
}
.leadspace-v2.color--canary,
.leadspace-v2.color--canary .cmp-leadspace-v2__home-buttons {
  background-color: #564a00 !important;
}
.leadspace-v2.color--canary .cmp-leadspace-v2__home-title h1,
.leadspace-v2.color--canary .cmp-leadspace-v2__home-buttons .cmp-leadspace-v2__home-title h1,
.leadspace-v2.color--canary .cmp-leadspace-v2__default-text h1,
.leadspace-v2.color--canary .cmp-leadspace-v2__home-buttons .cmp-leadspace-v2__default-text h1,
.leadspace-v2.color--canary .cmp-leadspace-v2__home-title p,
.leadspace-v2.color--canary .cmp-leadspace-v2__home-buttons .cmp-leadspace-v2__home-title p,
.leadspace-v2.color--canary .cmp-leadspace-v2__default-text p,
.leadspace-v2.color--canary .cmp-leadspace-v2__home-buttons .cmp-leadspace-v2__default-text p,
.leadspace-v2.color--canary .cmp-leadspace-v2__home-title .cmp-leadspace-v2__label,
.leadspace-v2.color--canary .cmp-leadspace-v2__home-buttons .cmp-leadspace-v2__home-title .cmp-leadspace-v2__label,
.leadspace-v2.color--canary .cmp-leadspace-v2__default-text .cmp-leadspace-v2__label,
.leadspace-v2.color--canary .cmp-leadspace-v2__home-buttons .cmp-leadspace-v2__default-text .cmp-leadspace-v2__label {
  color: #fffce6 !important;
}
.leadspace-v2.color--canary .cmp-leadspace-v2__home-buttons-wrapper,
.leadspace-v2.color--canary .cmp-leadspace-v2__home-buttons .cmp-leadspace-v2__home-buttons-wrapper {
  background-color: #564a00 !important;
}
.leadspace-v2.color--fuchsia,
.leadspace-v2.color--fuchsia .cmp-leadspace-v2__home-buttons {
  background-color: #4f0230 !important;
}
.leadspace-v2.color--fuchsia .cmp-leadspace-v2__home-title h1,
.leadspace-v2.color--fuchsia .cmp-leadspace-v2__home-buttons .cmp-leadspace-v2__home-title h1,
.leadspace-v2.color--fuchsia .cmp-leadspace-v2__default-text h1,
.leadspace-v2.color--fuchsia .cmp-leadspace-v2__home-buttons .cmp-leadspace-v2__default-text h1,
.leadspace-v2.color--fuchsia .cmp-leadspace-v2__home-title p,
.leadspace-v2.color--fuchsia .cmp-leadspace-v2__home-buttons .cmp-leadspace-v2__home-title p,
.leadspace-v2.color--fuchsia .cmp-leadspace-v2__default-text p,
.leadspace-v2.color--fuchsia .cmp-leadspace-v2__home-buttons .cmp-leadspace-v2__default-text p,
.leadspace-v2.color--fuchsia .cmp-leadspace-v2__home-title .cmp-leadspace-v2__label,
.leadspace-v2.color--fuchsia .cmp-leadspace-v2__home-buttons .cmp-leadspace-v2__home-title .cmp-leadspace-v2__label,
.leadspace-v2.color--fuchsia .cmp-leadspace-v2__default-text .cmp-leadspace-v2__label,
.leadspace-v2.color--fuchsia .cmp-leadspace-v2__home-buttons .cmp-leadspace-v2__default-text .cmp-leadspace-v2__label {
  color: #ffeef7 !important;
}
.leadspace-v2.color--fuchsia .cmp-leadspace-v2__home-buttons-wrapper,
.leadspace-v2.color--fuchsia .cmp-leadspace-v2__home-buttons .cmp-leadspace-v2__home-buttons-wrapper {
  background-color: #4f0230 !important;
}
.leadspace-v2.color--pumpkin,
.leadspace-v2.color--pumpkin .cmp-leadspace-v2__home-buttons {
  background-color: #5b2500 !important;
}
.leadspace-v2.color--pumpkin .cmp-leadspace-v2__home-title h1,
.leadspace-v2.color--pumpkin .cmp-leadspace-v2__home-buttons .cmp-leadspace-v2__home-title h1,
.leadspace-v2.color--pumpkin .cmp-leadspace-v2__default-text h1,
.leadspace-v2.color--pumpkin .cmp-leadspace-v2__home-buttons .cmp-leadspace-v2__default-text h1,
.leadspace-v2.color--pumpkin .cmp-leadspace-v2__home-title p,
.leadspace-v2.color--pumpkin .cmp-leadspace-v2__home-buttons .cmp-leadspace-v2__home-title p,
.leadspace-v2.color--pumpkin .cmp-leadspace-v2__default-text p,
.leadspace-v2.color--pumpkin .cmp-leadspace-v2__home-buttons .cmp-leadspace-v2__default-text p,
.leadspace-v2.color--pumpkin .cmp-leadspace-v2__home-title .cmp-leadspace-v2__label,
.leadspace-v2.color--pumpkin .cmp-leadspace-v2__home-buttons .cmp-leadspace-v2__home-title .cmp-leadspace-v2__label,
.leadspace-v2.color--pumpkin .cmp-leadspace-v2__default-text .cmp-leadspace-v2__label,
.leadspace-v2.color--pumpkin .cmp-leadspace-v2__home-buttons .cmp-leadspace-v2__default-text .cmp-leadspace-v2__label {
  color: #fff0e6 !important;
}
.leadspace-v2.color--pumpkin .cmp-leadspace-v2__home-buttons-wrapper,
.leadspace-v2.color--pumpkin .cmp-leadspace-v2__home-buttons .cmp-leadspace-v2__home-buttons-wrapper {
  background-color: #5b2500 !important;
}
.leadspace-v2.color--custom,
.leadspace-v2.color--custom .cmp-leadspace-v2__home-buttons {
  background-color: #3a8bff !important;
}
.leadspace-v2.color--custom .cmp-leadspace-v2__home-title h1,
.leadspace-v2.color--custom .cmp-leadspace-v2__home-buttons .cmp-leadspace-v2__home-title h1,
.leadspace-v2.color--custom .cmp-leadspace-v2__default-text h1,
.leadspace-v2.color--custom .cmp-leadspace-v2__home-buttons .cmp-leadspace-v2__default-text h1,
.leadspace-v2.color--custom .cmp-leadspace-v2__home-title p,
.leadspace-v2.color--custom .cmp-leadspace-v2__home-buttons .cmp-leadspace-v2__home-title p,
.leadspace-v2.color--custom .cmp-leadspace-v2__default-text p,
.leadspace-v2.color--custom .cmp-leadspace-v2__home-buttons .cmp-leadspace-v2__default-text p,
.leadspace-v2.color--custom .cmp-leadspace-v2__home-title .cmp-leadspace-v2__label,
.leadspace-v2.color--custom .cmp-leadspace-v2__home-buttons .cmp-leadspace-v2__home-title .cmp-leadspace-v2__label,
.leadspace-v2.color--custom .cmp-leadspace-v2__default-text .cmp-leadspace-v2__label,
.leadspace-v2.color--custom .cmp-leadspace-v2__home-buttons .cmp-leadspace-v2__default-text .cmp-leadspace-v2__label {
  color: #000835 !important;
}
.leadspace-v2.color--custom .cmp-leadspace-v2__home-buttons-wrapper,
.leadspace-v2.color--custom .cmp-leadspace-v2__home-buttons .cmp-leadspace-v2__home-buttons-wrapper {
  background-color: #3a8bff !important;
}
.leadspace-v2.color--custom .cmp-leadspace-v2__svg-background {
  background-color: #61a2ff;
}
.leadspace-v2.color--violet .cmp-leadspace-v2__svg-background {
  background-color: #b650ff;
}
.leadspace-v2.color--crimson .cmp-leadspace-v2__svg-background {
  background-color: #ff514d;
}
.leadspace-v2.color--forest .cmp-leadspace-v2__svg-background {
  background-color: #92ff73;
}
.leadspace-v2.color--canary .cmp-leadspace-v2__svg-background {
  background-color: #fce649;
}
.leadspace-v2.color--fuchsia .cmp-leadspace-v2__svg-background {
  background-color: #ff58ac;
}
.leadspace-v2.color--pumpkin .cmp-leadspace-v2__svg-background {
  background-color: #ff7920;
}
.leadspace-v2.color--sky  .button {
  text-align: center !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: fit-content !important;
  gap: 8px !important;
  background-clip: padding-box !important;
  text-decoration: none !important;
  border-radius: 8px !important;
  font-weight: 500 !important;
  line-height: 150% !important;
  background-color: #ebf3ff !important;
  color: #000835 !important;
  border: 2px solid transparent !important;
}
.leadspace-v2.color--sky  .button.outline {
  background-color: transparent !important;
  border-color: #ebf3ff !important;
  color: #ebf3ff !important;
}
.leadspace-v2.color--sky  .button:hover {
  border-color: transparent !important;
  color: #000835 !important;
  background-color: #9fc6ff !important;
}
.leadspace-v2.color--sky  .button:focus-visible {
  color: #000835 !important;
  background-color: #9fc6ff !important;
  border-color: transparent !important;
  outline: 2px solid #9fc6ff !important;
}
.leadspace-v2.color--sky  .button:active {
  outline: none !important;
  border-color: transparent !important;
  color: #ffffff !important;
  background-color: #61a2ff !important;
}
.leadspace-v2.color--sky  .button.ghost {
  color: #ebf3ff !important;
  background-color: transparent !important;
  border-color: transparent !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.leadspace-v2.color--sky  .button.ghost .button__label {
  position: relative !important;
}
.leadspace-v2.color--sky  .button.ghost .button__label:after {
  position: absolute !important;
  content: '' !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 0 !important;
  transition: width 400ms !important;
  height: 1px !important;
  background-color: #ebf3ff !important;
}
.leadspace-v2.color--sky  .button.ghost:hover {
  border-color: transparent !important;
  color: #ebf3ff !important;
  background-color: transparent !important;
}
.leadspace-v2.color--sky  .button.ghost:hover .button__label::after {
  width: 100% !important;
}
.leadspace-v2.color--sky  .button.ghost:focus-visible {
  outline: none !important;
  background-color: transparent !important;
  border-color: #9fc6ff !important;
  color: #ebf3ff !important;
}
.leadspace-v2.color--sky  .button.ghost:active {
  border-color: transparent !important;
  background-color: #ebf3ff !important;
  color: #000835 !important;
}
.leadspace-v2.color--sky  .button__icon {
  font-size: 24px !important;
  margin-bottom: 0 !important;
}
.leadspace-v2.color--violet  .button {
  text-align: center !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: fit-content !important;
  gap: 8px !important;
  background-clip: padding-box !important;
  text-decoration: none !important;
  border-radius: 8px !important;
  font-weight: 500 !important;
  line-height: 150% !important;
  background-color: #f8eeff !important;
  color: #26005a !important;
  border: 2px solid transparent !important;
}
.leadspace-v2.color--violet  .button.outline {
  background-color: transparent !important;
  border-color: #f8eeff !important;
  color: #f8eeff !important;
}
.leadspace-v2.color--violet  .button:hover {
  border-color: transparent !important;
  color: #26005a !important;
  background-color: #d396ff !important;
}
.leadspace-v2.color--violet  .button:focus-visible {
  color: #26005a !important;
  background-color: #d396ff !important;
  border-color: transparent !important;
  outline: 2px solid #d396ff !important;
}
.leadspace-v2.color--violet  .button:active {
  outline: none !important;
  border-color: transparent !important;
  color: #ffffff !important;
  background-color: #c573ff !important;
}
.leadspace-v2.color--violet  .button.ghost {
  color: #f8eeff !important;
  background-color: transparent !important;
  border-color: transparent !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.leadspace-v2.color--violet  .button.ghost .button__label {
  position: relative !important;
}
.leadspace-v2.color--violet  .button.ghost .button__label:after {
  position: absolute !important;
  content: '' !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 0 !important;
  transition: width 400ms !important;
  height: 1px !important;
  background-color: #f8eeff !important;
}
.leadspace-v2.color--violet  .button.ghost:hover {
  border-color: transparent !important;
  color: #f8eeff !important;
  background-color: transparent !important;
}
.leadspace-v2.color--violet  .button.ghost:hover .button__label::after {
  width: 100% !important;
}
.leadspace-v2.color--violet  .button.ghost:focus-visible {
  outline: none !important;
  background-color: transparent !important;
  border-color: #d396ff !important;
  color: #f8eeff !important;
}
.leadspace-v2.color--violet  .button.ghost:active {
  border-color: transparent !important;
  background-color: #f8eeff !important;
  color: #26005a !important;
}
.leadspace-v2.color--violet  .button__icon {
  font-size: 24px !important;
  margin-bottom: 0 !important;
}
.leadspace-v2.color--crimson  .button {
  text-align: center !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: fit-content !important;
  gap: 8px !important;
  background-clip: padding-box !important;
  text-decoration: none !important;
  border-radius: 8px !important;
  font-weight: 500 !important;
  line-height: 150% !important;
  background-color: #ffeeed !important;
  color: #560900 !important;
  border: 2px solid transparent !important;
}
.leadspace-v2.color--crimson  .button.outline {
  background-color: transparent !important;
  border-color: #ffeeed !important;
  color: #ffeeed !important;
}
.leadspace-v2.color--crimson  .button:hover {
  border-color: transparent !important;
  color: #560900 !important;
  background-color: #ff9794 !important;
}
.leadspace-v2.color--crimson  .button:focus-visible {
  color: #560900 !important;
  background-color: #ff9794 !important;
  border-color: transparent !important;
  outline: 2px solid #ff9794 !important;
}
.leadspace-v2.color--crimson  .button:active {
  outline: none !important;
  border-color: transparent !important;
  color: #ffffff !important;
  background-color: #ff7471 !important;
}
.leadspace-v2.color--crimson  .button.ghost {
  color: #ffeeed !important;
  background-color: transparent !important;
  border-color: transparent !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.leadspace-v2.color--crimson  .button.ghost .button__label {
  position: relative !important;
}
.leadspace-v2.color--crimson  .button.ghost .button__label:after {
  position: absolute !important;
  content: '' !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 0 !important;
  transition: width 400ms !important;
  height: 1px !important;
  background-color: #ffeeed !important;
}
.leadspace-v2.color--crimson  .button.ghost:hover {
  border-color: transparent !important;
  color: #ffeeed !important;
  background-color: transparent !important;
}
.leadspace-v2.color--crimson  .button.ghost:hover .button__label::after {
  width: 100% !important;
}
.leadspace-v2.color--crimson  .button.ghost:focus-visible {
  outline: none !important;
  background-color: transparent !important;
  border-color: #ff9794 !important;
  color: #ffeeed !important;
}
.leadspace-v2.color--crimson  .button.ghost:active {
  border-color: transparent !important;
  background-color: #ffeeed !important;
  color: #560900 !important;
}
.leadspace-v2.color--crimson  .button__icon {
  font-size: 24px !important;
  margin-bottom: 0 !important;
}
.leadspace-v2.color--forest  .button {
  text-align: center !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: fit-content !important;
  gap: 8px !important;
  background-clip: padding-box !important;
  text-decoration: none !important;
  border-radius: 8px !important;
  font-weight: 500 !important;
  line-height: 150% !important;
  background-color: #f0ffec !important;
  color: #023a00 !important;
  border: 2px solid transparent !important;
}
.leadspace-v2.color--forest  .button.outline {
  background-color: transparent !important;
  border-color: #f0ffec !important;
  color: #f0ffec !important;
}
.leadspace-v2.color--forest  .button:hover {
  border-color: transparent !important;
  color: #023a00 !important;
  background-color: #beffab !important;
}
.leadspace-v2.color--forest  .button:focus-visible {
  color: #023a00 !important;
  background-color: #beffab !important;
  border-color: transparent !important;
  outline: 2px solid #beffab !important;
}
.leadspace-v2.color--forest  .button:active {
  outline: none !important;
  border-color: transparent !important;
  color: #ffffff !important;
  background-color: #a8ff8f !important;
}
.leadspace-v2.color--forest  .button.ghost {
  color: #f0ffec !important;
  background-color: transparent !important;
  border-color: transparent !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.leadspace-v2.color--forest  .button.ghost .button__label {
  position: relative !important;
}
.leadspace-v2.color--forest  .button.ghost .button__label:after {
  position: absolute !important;
  content: '' !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 0 !important;
  transition: width 400ms !important;
  height: 1px !important;
  background-color: #f0ffec !important;
}
.leadspace-v2.color--forest  .button.ghost:hover {
  border-color: transparent !important;
  color: #f0ffec !important;
  background-color: transparent !important;
}
.leadspace-v2.color--forest  .button.ghost:hover .button__label::after {
  width: 100% !important;
}
.leadspace-v2.color--forest  .button.ghost:focus-visible {
  outline: none !important;
  background-color: transparent !important;
  border-color: #beffab !important;
  color: #f0ffec !important;
}
.leadspace-v2.color--forest  .button.ghost:active {
  border-color: transparent !important;
  background-color: #f0ffec !important;
  color: #023a00 !important;
}
.leadspace-v2.color--forest  .button__icon {
  font-size: 24px !important;
  margin-bottom: 0 !important;
}
.leadspace-v2.color--canary  .button {
  text-align: center !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: fit-content !important;
  gap: 8px !important;
  background-clip: padding-box !important;
  text-decoration: none !important;
  border-radius: 8px !important;
  font-weight: 500 !important;
  line-height: 150% !important;
  background-color: #fffce6 !important;
  color: #564a00 !important;
  border: 2px solid transparent !important;
}
.leadspace-v2.color--canary  .button.outline {
  background-color: transparent !important;
  border-color: #fffce6 !important;
  color: #fffce6 !important;
}
.leadspace-v2.color--canary  .button:hover {
  border-color: transparent !important;
  color: #564a00 !important;
  background-color: #fdf092 !important;
}
.leadspace-v2.color--canary  .button:focus-visible {
  color: #564a00 !important;
  background-color: #fdf092 !important;
  border-color: transparent !important;
  outline: 2px solid #fdf092 !important;
}
.leadspace-v2.color--canary  .button:active {
  outline: none !important;
  border-color: transparent !important;
  color: #ffffff !important;
  background-color: #fdeb6d !important;
}
.leadspace-v2.color--canary  .button.ghost {
  color: #fffce6 !important;
  background-color: transparent !important;
  border-color: transparent !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.leadspace-v2.color--canary  .button.ghost .button__label {
  position: relative !important;
}
.leadspace-v2.color--canary  .button.ghost .button__label:after {
  position: absolute !important;
  content: '' !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 0 !important;
  transition: width 400ms !important;
  height: 1px !important;
  background-color: #fffce6 !important;
}
.leadspace-v2.color--canary  .button.ghost:hover {
  border-color: transparent !important;
  color: #fffce6 !important;
  background-color: transparent !important;
}
.leadspace-v2.color--canary  .button.ghost:hover .button__label::after {
  width: 100% !important;
}
.leadspace-v2.color--canary  .button.ghost:focus-visible {
  outline: none !important;
  background-color: transparent !important;
  border-color: #fdf092 !important;
  color: #fffce6 !important;
}
.leadspace-v2.color--canary  .button.ghost:active {
  border-color: transparent !important;
  background-color: #fffce6 !important;
  color: #564a00 !important;
}
.leadspace-v2.color--canary  .button__icon {
  font-size: 24px !important;
  margin-bottom: 0 !important;
}
.leadspace-v2.color--fuchsia  .button {
  text-align: center !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: fit-content !important;
  gap: 8px !important;
  background-clip: padding-box !important;
  text-decoration: none !important;
  border-radius: 8px !important;
  font-weight: 500 !important;
  line-height: 150% !important;
  background-color: #ffeef7 !important;
  color: #4f0230 !important;
  border: 2px solid transparent !important;
}
.leadspace-v2.color--fuchsia  .button.outline {
  background-color: transparent !important;
  border-color: #ffeef7 !important;
  color: #ffeef7 !important;
}
.leadspace-v2.color--fuchsia  .button:hover {
  border-color: transparent !important;
  color: #4f0230 !important;
  background-color: #ff9be3 !important;
}
.leadspace-v2.color--fuchsia  .button:focus-visible {
  color: #4f0230 !important;
  background-color: #ff9be3 !important;
  border-color: transparent !important;
  outline: 2px solid #ff9be3 !important;
}
.leadspace-v2.color--fuchsia  .button:active {
  outline: none !important;
  border-color: transparent !important;
  color: #ffffff !important;
  background-color: #ff79bd !important;
}
.leadspace-v2.color--fuchsia  .button.ghost {
  color: #ffeef7 !important;
  background-color: transparent !important;
  border-color: transparent !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.leadspace-v2.color--fuchsia  .button.ghost .button__label {
  position: relative !important;
}
.leadspace-v2.color--fuchsia  .button.ghost .button__label:after {
  position: absolute !important;
  content: '' !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 0 !important;
  transition: width 400ms !important;
  height: 1px !important;
  background-color: #ffeef7 !important;
}
.leadspace-v2.color--fuchsia  .button.ghost:hover {
  border-color: transparent !important;
  color: #ffeef7 !important;
  background-color: transparent !important;
}
.leadspace-v2.color--fuchsia  .button.ghost:hover .button__label::after {
  width: 100% !important;
}
.leadspace-v2.color--fuchsia  .button.ghost:focus-visible {
  outline: none !important;
  background-color: transparent !important;
  border-color: #ff9be3 !important;
  color: #ffeef7 !important;
}
.leadspace-v2.color--fuchsia  .button.ghost:active {
  border-color: transparent !important;
  background-color: #ffeef7 !important;
  color: #4f0230 !important;
}
.leadspace-v2.color--fuchsia  .button__icon {
  font-size: 24px !important;
  margin-bottom: 0 !important;
}
.leadspace-v2.color--pumpkin  .button {
  text-align: center !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: fit-content !important;
  gap: 8px !important;
  background-clip: padding-box !important;
  text-decoration: none !important;
  border-radius: 8px !important;
  font-weight: 500 !important;
  line-height: 150% !important;
  background-color: #fff0e6 !important;
  color: #5b2500 !important;
  border: 2px solid transparent !important;
}
.leadspace-v2.color--pumpkin  .button.outline {
  background-color: transparent !important;
  border-color: #fff0e6 !important;
  color: #fff0e6 !important;
}
.leadspace-v2.color--pumpkin  .button:hover {
  border-color: transparent !important;
  color: #5b2500 !important;
  background-color: #ffa366 !important;
}
.leadspace-v2.color--pumpkin  .button:focus-visible {
  color: #5b2500 !important;
  background-color: #ffa366 !important;
  border-color: transparent !important;
  outline: 2px solid #ffa366 !important;
}
.leadspace-v2.color--pumpkin  .button:active {
  outline: none !important;
  border-color: transparent !important;
  color: #ffffff !important;
  background-color: #ff8838 !important;
}
.leadspace-v2.color--pumpkin  .button.ghost {
  color: #fff0e6 !important;
  background-color: transparent !important;
  border-color: transparent !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.leadspace-v2.color--pumpkin  .button.ghost .button__label {
  position: relative !important;
}
.leadspace-v2.color--pumpkin  .button.ghost .button__label:after {
  position: absolute !important;
  content: '' !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 0 !important;
  transition: width 400ms !important;
  height: 1px !important;
  background-color: #fff0e6 !important;
}
.leadspace-v2.color--pumpkin  .button.ghost:hover {
  border-color: transparent !important;
  color: #fff0e6 !important;
  background-color: transparent !important;
}
.leadspace-v2.color--pumpkin  .button.ghost:hover .button__label::after {
  width: 100% !important;
}
.leadspace-v2.color--pumpkin  .button.ghost:focus-visible {
  outline: none !important;
  background-color: transparent !important;
  border-color: #ffa366 !important;
  color: #fff0e6 !important;
}
.leadspace-v2.color--pumpkin  .button.ghost:active {
  border-color: transparent !important;
  background-color: #fff0e6 !important;
  color: #5b2500 !important;
}
.leadspace-v2.color--pumpkin  .button__icon {
  font-size: 24px !important;
  margin-bottom: 0 !important;
}
.leadspace-v2.color--custom  .button {
  text-align: center !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: fit-content !important;
  gap: 8px !important;
  background-clip: padding-box !important;
  text-decoration: none !important;
  border-radius: 8px !important;
  font-weight: 500 !important;
  line-height: 150% !important;
  background-color: #000835 !important;
  color: #3a8bff !important;
  border: 2px solid transparent !important;
}
.leadspace-v2.color--custom  .button.outline {
  background-color: transparent !important;
  border-color: #000835 !important;
  color: #000835 !important;
}
.leadspace-v2.color--custom  .button:hover {
  border-color: transparent !important;
  color: #3a8bff !important;
  background-color: #000835 !important;
}
.leadspace-v2.color--custom  .button:focus-visible {
  color: #3a8bff !important;
  background-color: #000835 !important;
  border-color: transparent !important;
  outline: 2px solid #000835 !important;
}
.leadspace-v2.color--custom  .button:active {
  outline: none !important;
  border-color: transparent !important;
  color: #ffffff !important;
  background-color: #61a2ff !important;
}
.leadspace-v2.color--custom  .button.ghost {
  color: #000835 !important;
  background-color: transparent !important;
  border-color: transparent !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.leadspace-v2.color--custom  .button.ghost .button__label {
  position: relative !important;
}
.leadspace-v2.color--custom  .button.ghost .button__label:after {
  position: absolute !important;
  content: '' !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 0 !important;
  transition: width 400ms !important;
  height: 1px !important;
  background-color: #000835 !important;
}
.leadspace-v2.color--custom  .button.ghost:hover {
  border-color: transparent !important;
  color: #000835 !important;
  background-color: transparent !important;
}
.leadspace-v2.color--custom  .button.ghost:hover .button__label::after {
  width: 100% !important;
}
.leadspace-v2.color--custom  .button.ghost:focus-visible {
  outline: none !important;
  background-color: transparent !important;
  border-color: #000835 !important;
  color: #000835 !important;
}
.leadspace-v2.color--custom  .button.ghost:active {
  border-color: transparent !important;
  background-color: #000835 !important;
  color: #3a8bff !important;
}
.leadspace-v2.color--custom  .button__icon {
  font-size: 24px !important;
  margin-bottom: 0 !important;
}
.leadspace-v2.color--sky .cmp-leadspace-v2__play-button {
  background-color: #000835 !important;
  color: #9fc6ff !important;
}
.leadspace-v2.color--sky .cmp-leadspace-v2__play-button:hover {
  background-color: #61a2ff !important;
  border-color: #000835 !important;
  color: #000835 !important;
}
.leadspace-v2.color--sky .cmp-leadspace-v2__play-button:focus {
  background-color: #9fc6ff !important;
  border-color: transparent !important;
  outline: 2px solid #000835 !important;
  color: #000835 !important;
}
.leadspace-v2.color--sky .cmp-leadspace-v2__play-button:active {
  background-color: #ebf3ff !important;
  border-color: transparent !important;
  color: #000835 !important;
}
.leadspace-v2.color--violet .cmp-leadspace-v2__play-button {
  background-color: #26005a !important;
  color: #d396ff !important;
}
.leadspace-v2.color--violet .cmp-leadspace-v2__play-button:hover {
  background-color: #c573ff !important;
  border-color: #26005a !important;
  color: #26005a !important;
}
.leadspace-v2.color--violet .cmp-leadspace-v2__play-button:focus {
  background-color: #d396ff !important;
  border-color: transparent !important;
  outline: 2px solid #26005a !important;
  color: #26005a !important;
}
.leadspace-v2.color--violet .cmp-leadspace-v2__play-button:active {
  background-color: #f8eeff !important;
  border-color: transparent !important;
  color: #26005a !important;
}
.leadspace-v2.color--crimson .cmp-leadspace-v2__play-button {
  background-color: #560900 !important;
  color: #ff9794 !important;
}
.leadspace-v2.color--crimson .cmp-leadspace-v2__play-button:hover {
  background-color: #ff7471 !important;
  border-color: #560900 !important;
  color: #560900 !important;
}
.leadspace-v2.color--crimson .cmp-leadspace-v2__play-button:focus {
  background-color: #ff9794 !important;
  border-color: transparent !important;
  outline: 2px solid #560900 !important;
  color: #560900 !important;
}
.leadspace-v2.color--crimson .cmp-leadspace-v2__play-button:active {
  background-color: #ffeeed !important;
  border-color: transparent !important;
  color: #560900 !important;
}
.leadspace-v2.color--forest .cmp-leadspace-v2__play-button {
  background-color: #023a00 !important;
  color: #beffab !important;
}
.leadspace-v2.color--forest .cmp-leadspace-v2__play-button:hover {
  background-color: #a8ff8f !important;
  border-color: #023a00 !important;
  color: #023a00 !important;
}
.leadspace-v2.color--forest .cmp-leadspace-v2__play-button:focus {
  background-color: #beffab !important;
  border-color: transparent !important;
  outline: 2px solid #023a00 !important;
  color: #023a00 !important;
}
.leadspace-v2.color--forest .cmp-leadspace-v2__play-button:active {
  background-color: #f0ffec !important;
  border-color: transparent !important;
  color: #023a00 !important;
}
.leadspace-v2.color--canary .cmp-leadspace-v2__play-button {
  background-color: #564a00 !important;
  color: #fdf092 !important;
}
.leadspace-v2.color--canary .cmp-leadspace-v2__play-button:hover {
  background-color: #fdeb6d !important;
  border-color: #564a00 !important;
  color: #564a00 !important;
}
.leadspace-v2.color--canary .cmp-leadspace-v2__play-button:focus {
  background-color: #fdf092 !important;
  border-color: transparent !important;
  outline: 2px solid #564a00 !important;
  color: #564a00 !important;
}
.leadspace-v2.color--canary .cmp-leadspace-v2__play-button:active {
  background-color: #fffce6 !important;
  border-color: transparent !important;
  color: #564a00 !important;
}
.leadspace-v2.color--fuchsia .cmp-leadspace-v2__play-button {
  background-color: #4f0230 !important;
  color: #ff9be3 !important;
}
.leadspace-v2.color--fuchsia .cmp-leadspace-v2__play-button:hover {
  background-color: #ff79bd !important;
  border-color: #4f0230 !important;
  color: #4f0230 !important;
}
.leadspace-v2.color--fuchsia .cmp-leadspace-v2__play-button:focus {
  background-color: #ff9be3 !important;
  border-color: transparent !important;
  outline: 2px solid #4f0230 !important;
  color: #4f0230 !important;
}
.leadspace-v2.color--fuchsia .cmp-leadspace-v2__play-button:active {
  background-color: #ffeef7 !important;
  border-color: transparent !important;
  color: #4f0230 !important;
}
.leadspace-v2.color--pumpkin .cmp-leadspace-v2__play-button {
  background-color: #5b2500 !important;
  color: #ffa366 !important;
}
.leadspace-v2.color--pumpkin .cmp-leadspace-v2__play-button:hover {
  background-color: #ff8838 !important;
  border-color: #5b2500 !important;
  color: #5b2500 !important;
}
.leadspace-v2.color--pumpkin .cmp-leadspace-v2__play-button:focus {
  background-color: #ffa366 !important;
  border-color: transparent !important;
  outline: 2px solid #5b2500 !important;
  color: #5b2500 !important;
}
.leadspace-v2.color--pumpkin .cmp-leadspace-v2__play-button:active {
  background-color: #fff0e6 !important;
  border-color: transparent !important;
  color: #5b2500 !important;
}
.leadspace-v2.color--custom .cmp-leadspace-v2__play-button {
  background-color: #3a8bff !important;
  color: #000835 !important;
}
.leadspace-v2.color--custom .cmp-leadspace-v2__play-button:hover {
  background-color: #61a2ff !important;
  border-color: #3a8bff !important;
  color: #3a8bff !important;
}
.leadspace-v2.color--custom .cmp-leadspace-v2__play-button:focus {
  background-color: #000835 !important;
  border-color: transparent !important;
  outline: 2px solid #3a8bff !important;
  color: #3a8bff !important;
}
.leadspace-v2.color--custom .cmp-leadspace-v2__play-button:active {
  background-color: #000835 !important;
  border-color: transparent !important;
  color: #3a8bff !important;
}
.leadspace-v2,
.leadspace-v2 .cmp-leadspace-v2__home-buttons {
  background-color: #000835;
}
.leadspace-v2 .cmp-leadspace-v2__home-title h1,
.leadspace-v2 .cmp-leadspace-v2__home-buttons .cmp-leadspace-v2__home-title h1,
.leadspace-v2 .cmp-leadspace-v2__default-text h1,
.leadspace-v2 .cmp-leadspace-v2__home-buttons .cmp-leadspace-v2__default-text h1,
.leadspace-v2 .cmp-leadspace-v2__home-title p,
.leadspace-v2 .cmp-leadspace-v2__home-buttons .cmp-leadspace-v2__home-title p,
.leadspace-v2 .cmp-leadspace-v2__default-text p,
.leadspace-v2 .cmp-leadspace-v2__home-buttons .cmp-leadspace-v2__default-text p,
.leadspace-v2 .cmp-leadspace-v2__home-title .cmp-leadspace-v2__label,
.leadspace-v2 .cmp-leadspace-v2__home-buttons .cmp-leadspace-v2__home-title .cmp-leadspace-v2__label,
.leadspace-v2 .cmp-leadspace-v2__default-text .cmp-leadspace-v2__label,
.leadspace-v2 .cmp-leadspace-v2__home-buttons .cmp-leadspace-v2__default-text .cmp-leadspace-v2__label {
  color: #ebf3ff;
}
.leadspace-v2 .cmp-leadspace-v2__home-buttons-wrapper,
.leadspace-v2 .cmp-leadspace-v2__home-buttons .cmp-leadspace-v2__home-buttons-wrapper {
  background-color: #000835;
}
.leadspace-v2 .cmp-leadspace-v2__label {
  margin-bottom: 3px;
}
.leadspace-v2 .cmp-leadspace-v2__play-button {
  background-color: #000835;
  color: #9fc6ff;
  border: 2px solid #9fc6ff;
}
.leadspace-v2 .cmp-leadspace-v2__play-button:hover {
  background-color: #61a2ff;
  border-color: #000835;
  color: #000835;
}
.leadspace-v2 .cmp-leadspace-v2__play-button:focus {
  background-color: #9fc6ff;
  border-color: transparent;
  outline: 2px solid #000835;
  color: #000835;
}
.leadspace-v2 .cmp-leadspace-v2__play-button:active {
  background-color: #ebf3ff;
  border-color: transparent;
  color: #000835;
}
.leadspace-v2 .new-button {
  background-color: #ebf3ff;
  color: #000835;
}
.leadspace-v2 .new-button:hover {
  border-color: transparent;
  background-color: #9fc6ff;
}
.leadspace-v2 .new-button:focus {
  border-color: transparent;
  outline: 2px solid #9fc6ff;
  background-color: #9fc6ff;
}
.leadspace-v2 .new-button:active {
  border-color: transparent;
  background-color: #61a2ff;
}
.leadspace-v2 .new-button--outline {
  background-color: transparent;
  border: 2px solid #9fc6ff;
  color: #9fc6ff;
}
.leadspace-v2 .new-button--outline:hover,
.leadspace-v2 .new-button--outline:focus {
  color: #000835;
}
.leadspace-v2 .cmp-leadspace-v2__svg-background {
  background-color: #c5d5f9;
}
.leadspace-v2 .cmp-leadspace-v2 {
  /**
        full width
        **/
  width: 100%;
  position: relative;
  left: 50%;
  right: 50%;
  margin: 0 -50vw;
  /*
            the animation -- TODO
        */
  /*
            starting
        */
  /*
            ending
        */
}
.leadspace-v2 .cmp-leadspace-v2__svg-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  mask-size: cover;
  mask-position: center;
}
.leadspace-v2 .cmp-leadspace-v2 h1.cmp-leadspace-v2__home-title {
  overflow: hidden;
}
.leadspace-v2 .cmp-leadspace-v2 h1.cmp-leadspace-v2__home-title.start > span {
  transition: top 250ms 250ms ease-in;
  position: relative;
  top: 100%;
  opacity: 0;
}
.leadspace-v2 .cmp-leadspace-v2 h1.cmp-leadspace-v2__home-title.start > span.cmp-leadspace-v2__home-title-line1 {
  transition-delay: 250ms;
}
.leadspace-v2 .cmp-leadspace-v2 h1.cmp-leadspace-v2__home-title.start > span.cmp-leadspace-v2__home-title-line2 {
  transition-delay: 450ms;
}
.leadspace-v2 .cmp-leadspace-v2 h1.cmp-leadspace-v2__home-title.start span {
  top: 0%;
  opacity: 1;
}
.leadspace-v2 .cmp-leadspace-v2 h1.cmp-leadspace-v2__home-title.end > span {
  transition: top 250ms 250ms ease-in;
  position: relative;
  top: 0%;
  opacity: 1;
}
.leadspace-v2 .cmp-leadspace-v2 h1.cmp-leadspace-v2__home-title.end > span.cmp-leadspace-v2__home-title-line1 {
  transition-delay: 250ms;
}
.leadspace-v2 .cmp-leadspace-v2 h1.cmp-leadspace-v2__home-title.end > span.cmp-leadspace-v2__home-title-line2 {
  transition-delay: 450ms;
}
.leadspace-v2 .cmp-leadspace-v2 h1.cmp-leadspace-v2__home-title.end span {
  top: -100%;
  opacity: 1=0;
}
.leadspace-v2 .cmp-leadspace-v2__wrapper {
  display: flex;
  width: 100%;
}
.leadspace-v2 .cmp-leadspace-v2__bg-image .cmp-leadspace-v2__wrapper {
  background-size: cover;
  background-position: 50%;
}
.leadspace-v2 .cmp-leadspace-v2__home {
  display: flex;
}
.leadspace-v2 .cmp-leadspace-v2__home .cmp-leadspace-v2__wrapper {
  min-height: 600px;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}
.leadspace-v2 .cmp-leadspace-v2__home .cmp-leadspace-v2__wrapper .cmp-leadspace-v2__play-button {
  position: absolute;
  right: calc(calc(1440px - 1170px) / 2);
  left: auto;
  bottom: 64px;
  border: 0;
  padding: 0;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  text-align: center;
  justify-content: center;
  align-items: center;
  z-index: 5;
}
.leadspace-v2 .cmp-leadspace-v2__home .cmp-leadspace-v2__wrapper .cmp-leadspace-v2__play-button > span {
  display: block;
  text-indent: -10000em;
  width: 0;
  height: 0;
  overflow: hidden;
}
.leadspace-v2 .cmp-leadspace-v2__home .cmp-leadspace-v2__wrapper .cmp-leadspace-v2__play-button:before {
  font-family: 'AmadeusIconFont';
  content: "\e93c";
  width: 100%;
  height: 100%;
  display: block;
  font-size: 58px;
  line-height: 48px;
  left: -5px;
  position: relative;
}
.leadspace-v2 .cmp-leadspace-v2__home .cmp-leadspace-v2__wrapper .cmp-leadspace-v2__play-button.paused:before {
  content: "\e91f";
}
@media screen and (max-width: 992px) {
  .leadspace-v2 .cmp-leadspace-v2__home .cmp-leadspace-v2__wrapper .cmp-leadspace-v2__play-button {
    right: 15px;
    bottom: 16px;
  }
}
.leadspace-v2 .cmp-leadspace-v2__home .cmp-leadspace-v2__wrapper .cmp-leadspace-v2__play-button {
  bottom: 164px;
}
.leadspace-v2 .cmp-leadspace-v2__home-head {
  padding: 64px 0;
  flex: 1;
  display: flex;
  align-content: flex-end;
  flex-wrap: wrap;
}
.leadspace-v2 .cmp-leadspace-v2__home-title {
  margin: 0;
  flex: 1;
  font-weight: 500;
  font-size: 64px;
  line-height: 83.2px;
  color: #ffffff;
  width: calc(100% - calc(calc(1440px - 1170px) / 2));
  z-index: 1;
}
.leadspace-v2 .cmp-leadspace-v2__home-title-line-1 {
  display: block;
}
.leadspace-v2 .cmp-leadspace-v2__home-title-line-2 {
  display: flex;
  flex-wrap: wrap;
}
.leadspace-v2 .cmp-leadspace-v2__home-title-line-2 > span:first-child {
  margin-right: 15px;
}
.leadspace-v2 .cmp-leadspace-v2__home-title-scroller {
  display: grid;
}
.leadspace-v2 .cmp-leadspace-v2__home-title-scroller span {
  grid-column: 1;
  grid-row: 1;
  display: block;
  opacity: 0;
  transition: opacity 300ms;
}
.leadspace-v2 .cmp-leadspace-v2__home-title-scroller span.active {
  transition: opacity 300ms 300ms;
  opacity: 1;
}
.leadspace-v2 .cmp-leadspace-v2__home-title-scroller span:first-child {
  position: relative;
  margin-top: 0;
}
.leadspace-v2 .cmp-leadspace-v2__home-text p {
  font-size: 20px !important;
  line-height: 30px;
}
.leadspace-v2 .cmp-leadspace-v2__home .cmp-leadspace-v2__home-video-wrapper {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1 1 100%;
  height: 100%;
}
.leadspace-v2 .cmp-leadspace-v2__home .cmp-leadspace-v2__home-video-wrapper video {
  object-fit: cover;
  height: 100%;
}
.leadspace-v2 .cmp-leadspace-v2__home-buttons {
  position: relative;
  display: flex;
  flex-direction: row;
}
.leadspace-v2 .cmp-leadspace-v2__home-buttons-wrapper {
  display: flex;
  flex-direction: row;
  gap: 10px;
  padding: 24px 0;
  width: 100%;
}
.leadspace-v2 .cmp-leadspace-v2__home .cmp-leadspace-v2__button {
  text-decoration: none;
  text-align: center;
  padding: 10.5px 24px 10.5px 24px;
  border-radius: 10px;
  border-width: 2px;
  border-style: solid;
  font-size: 18px;
  line-height: 27px;
  font-weight: 700;
}
@media screen and (max-width: 1400px) {
  .leadspace-v2 .cmp-leadspace-v2__home-head {
    padding: 64px 0;
  }
  .leadspace-v2 .cmp-leadspace-v2__home-buttons-wrapper {
    padding: 24px 0;
  }
  .leadspace-v2 .cmp-leadspace-v2__home .cmp-leadspace-v2__play-button {
    left: calc(100% - calc(48px + 40px));
  }
}
@media screen and (max-width: 991px) {
  .leadspace-v2 .cmp-leadspace-v2__home .cmp-leadspace-v2__wrapper {
    min-height: 500px;
  }
  .leadspace-v2 .cmp-leadspace-v2__home-head {
    padding: 56px 0;
    width: 100%;
  }
  .leadspace-v2 .cmp-leadspace-v2__home .cmp-leadspace-v2__play-button {
    right: 15px;
    left: auto;
  }
  .leadspace-v2 .cmp-leadspace-v2__home .cmp-leadspace-v2__play-button {
    left: auto;
    right: 15px;
  }
}
@media screen and (max-width: 767px) {
  .leadspace-v2 .cmp-leadspace-v2__home-title {
    font-size: 56px;
    width: 100%;
  }
  .leadspace-v2 .cmp-leadspace-v2__home-buttons-wrapper {
    flex-direction: column;
    width: 100%;
    gap: 16px;
  }
  .leadspace-v2 .cmp-leadspace-v2__home-buttons-wrapper button {
    width: 100%;
  }
  .leadspace-v2 .cmp-leadspace-v2__home .cmp-leadspace-v2__play-button {
    left: auto;
    right: 15px;
  }
}
@media screen and (max-width: 575px) {
  .leadspace-v2 .cmp-leadspace-v2__home .cmp-leadspace-v2__wrapper {
    min-height: 350px;
  }
  .leadspace-v2 .cmp-leadspace-v2__home-title {
    font-size: 40px;
    line-height: 60px;
  }
  .leadspace-v2 .cmp-leadspace-v2__home-head {
    margin: 0 15px;
    padding: 40px 0 40px;
    width: calc(100% - (15px * 2));
  }
  .leadspace-v2 .cmp-leadspace-v2__home-buttons-wrapper {
    flex-direction: column;
    padding: 16px 0;
    margin: 0 15px;
    width: 100%;
    max-width: 100%;
    gap: 16px;
  }
  .leadspace-v2 .cmp-leadspace-v2__home .cmp-leadspace-v2__play-button {
    left: auto;
    right: 15px;
  }
}
.leadspace-v2 .cmp-leadspace-v2__default {
  min-height: 600px;
  display: flex;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 991px) {
  .leadspace-v2 .cmp-leadspace-v2__default {
    min-height: 500px;
  }
}
@media screen and (max-width: 767px) {
  .leadspace-v2 .cmp-leadspace-v2__default {
    min-height: 300px;
  }
}
.leadspace-v2 .cmp-leadspace-v2__default:not( .cmp-leadspace-v2__default--50pc).has-video .cmp-leadspace-v2__wrapper,
.leadspace-v2 .cmp-leadspace-v2__default:not( .cmp-leadspace-v2__default--50pc).has-bg-image .cmp-leadspace-v2__wrapper {
  position: unset;
}
.leadspace-v2 .cmp-leadspace-v2__default .cmp-leadspace-v2__wrapper {
  flex-direction: row;
  height: 100%;
  position: relative;
}
.leadspace-v2 .cmp-leadspace-v2__default .cmp-leadspace-v2__wrapper .cmp-leadspace-v2__play-button {
  position: absolute;
  right: calc(calc(1440px - 1170px) / 2);
  left: auto;
  bottom: 64px;
  border: 0;
  padding: 0;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  text-align: center;
  justify-content: center;
  align-items: center;
  z-index: 5;
}
.leadspace-v2 .cmp-leadspace-v2__default .cmp-leadspace-v2__wrapper .cmp-leadspace-v2__play-button > span {
  display: block;
  text-indent: -10000em;
  width: 0;
  height: 0;
  overflow: hidden;
}
.leadspace-v2 .cmp-leadspace-v2__default .cmp-leadspace-v2__wrapper .cmp-leadspace-v2__play-button:before {
  font-family: 'AmadeusIconFont';
  content: "\e93c";
  width: 100%;
  height: 100%;
  display: block;
  font-size: 58px;
  line-height: 48px;
  left: -5px;
  position: relative;
}
.leadspace-v2 .cmp-leadspace-v2__default .cmp-leadspace-v2__wrapper .cmp-leadspace-v2__play-button.paused:before {
  content: "\e91f";
}
@media screen and (max-width: 992px) {
  .leadspace-v2 .cmp-leadspace-v2__default .cmp-leadspace-v2__wrapper .cmp-leadspace-v2__play-button {
    right: 15px;
    bottom: 16px;
  }
}
.leadspace-v2 .cmp-leadspace-v2__default .cmp-leadspace-v2__wrapper .cmp-leadspace-v2__play-button {
  bottom: 64px;
}
.leadspace-v2 .cmp-leadspace-v2__default .cmp-leadspace-v2__default-text {
  width: 100%;
  position: relative;
  z-index: 2;
}
.leadspace-v2 .cmp-leadspace-v2__default .cmp-leadspace-v2__default-text p {
  font-size: 20px !important;
  line-height: 30px;
}
.leadspace-v2 .cmp-leadspace-v2__default:not( .cmp-leadspace-v2__default--50pc).has-video .cmp-leadspace-v2__default-media,
.leadspace-v2 .cmp-leadspace-v2__default:not( .cmp-leadspace-v2__default--50pc).has-bg-image .cmp-leadspace-v2__default-media {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1 1 100%;
  height: 100%;
}
.leadspace-v2 .cmp-leadspace-v2__default:not( .cmp-leadspace-v2__default--50pc).has-video .cmp-leadspace-v2__default-media video,
.leadspace-v2 .cmp-leadspace-v2__default:not( .cmp-leadspace-v2__default--50pc).has-bg-image .cmp-leadspace-v2__default-media video {
  object-fit: cover;
  height: 100%;
}
.leadspace-v2 .cmp-leadspace-v2__default--50pc {
  flex-direction: row;
}
.leadspace-v2 .cmp-leadspace-v2__default--50pc .cmp-leadspace-v2__svg-background {
  width: calc(57.86324786324787%);
}
.leadspace-v2 .cmp-leadspace-v2__default--50pc .cmp-leadspace-v2__wrapper {
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 1280px;
  padding: 0;
  position: unset;
}
.leadspace-v2 .cmp-leadspace-v2__default--50pc .cmp-leadspace-v2__default-text {
  width: calc(57.86324786324787%);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.leadspace-v2 .cmp-leadspace-v2__default--50pc .cmp-leadspace-v2__default-media {
  width: calc(42.13675213675213%);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 600px;
  position: absolute;
  right: 0;
}
.leadspace-v2 .cmp-leadspace-v2__default--50pc .cmp-leadspace-v2__default-media video {
  object-fit: cover;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
}
@media screen and (max-width: 1400px) {
  .leadspace-v2 .cmp-leadspace-v2__default--50pc .cmp-leadspace-v2__wrapper {
    max-width: 1140px;
  }
  .leadspace-v2 .cmp-leadspace-v2__default--50pc .cmp-leadspace-v2__default-media {
    min-height: 600px;
  }
  .leadspace-v2 .cmp-leadspace-v2__default--50pc .cmp-leadspace-v2__default-text {
    padding: 64px var(--bs-gutter-x, 0.75rem);
  }
  .leadspace-v2 .cmp-leadspace-v2__default--50pc .cmp-leadspace-v2-buttons-wrapper {
    max-width: calc(1170px - calc(40px * 2));
    padding: 24px 0;
  }
  .leadspace-v2 .cmp-leadspace-v2__default--50pc .cmp-leadspace-v2__play-button {
    left: calc(100% - calc(48px + 40px));
  }
}
@media screen and (max-width: 1199px) {
  .leadspace-v2 .cmp-leadspace-v2__default--50pc .cmp-leadspace-v2__wrapper {
    max-width: 960px;
  }
}
@media screen and (max-width: 991px) {
  .leadspace-v2 .cmp-leadspace-v2__default--50pc .cmp-leadspace-v2__wrapper {
    max-width: 720px;
  }
  .leadspace-v2 .cmp-leadspace-v2__default--50pc .cmp-leadspace-v2__default-media {
    min-height: 500px;
  }
  .leadspace-v2 .cmp-leadspace-v2__default--50pc .cmp-leadspace-v2__default-text {
    padding: 56px var(--bs-gutter-x, 0.75rem);
  }
  .leadspace-v2 .cmp-leadspace-v2__default--50pc .cmp-leadspace-v2__default-buttons-wrapper {
    max-width: 100%;
    margin-left: 0;
  }
  .leadspace-v2 .cmp-leadspace-v2__default--50pc .cmp-leadspace-v2__play-button {
    left: auto;
    right: 20px;
  }
}
@media screen and (max-width: 767px) {
  .leadspace-v2 .cmp-leadspace-v2__default--50pc .cmp-leadspace-v2__wrapper {
    max-width: 100%;
    margin: 0;
    width: 100%;
  }
  .leadspace-v2 .cmp-leadspace-v2__default--50pc .cmp-leadspace-v2__svg-background {
    width: 100%;
  }
  .leadspace-v2 .cmp-leadspace-v2__default--50pc .cmp-leadspace-v2__default-media {
    min-height: 500px;
    width: 100%;
    position: relative;
  }
  .leadspace-v2 .cmp-leadspace-v2__default--50pc .cmp-leadspace-v2__wrapper {
    flex-direction: column-reverse;
  }
  .leadspace-v2 .cmp-leadspace-v2__default--50pc .cmp-leadspace-v2__default-text {
    width: 100%;
    padding: calc(40px) var(--bs-gutter-x, 0.75rem) calc(40px);
    height: auto;
    max-width: 540px;
  }
  .leadspace-v2 .cmp-leadspace-v2__default--50pc .cmp-leadspace-v2__default-title {
    font-size: 48px;
  }
  .leadspace-v2 .cmp-leadspace-v2__default--50pc .cmp-leadspace-v2__default-buttons-wrapper {
    flex-direction: row;
    margin-left: 0;
    width: 100%;
    max-width: 100%;
    gap: 16px;
  }
  .leadspace-v2 .cmp-leadspace-v2__default--50pc .cmp-leadspace-v2__default-buttons-wrapper button {
    width: 100%;
  }
  .leadspace-v2 .cmp-leadspace-v2__default--50pc .cmp-leadspace-v2__play-button {
    left: auto;
    right: 15px;
  }
}
@media screen and (max-width: 575px) {
  .leadspace-v2 .cmp-leadspace-v2__default--50pc {
    min-height: 300px;
  }
  .leadspace-v2 .cmp-leadspace-v2__default--50pc .cmp-leadspace-v2__default-media {
    min-height: 300px;
  }
  .leadspace-v2 .cmp-leadspace-v2__default--50pc .cmp-leadspace-v2-title {
    font-size: 36px;
  }
  .leadspace-v2 .cmp-leadspace-v2__default--50pc .cmp-leadspace-v2-head {
    max-width: 100%;
    margin-left: 0;
    padding: 40px var(--bs-gutter-x, 0.75rem);
  }
  .leadspace-v2 .cmp-leadspace-v2__default--50pc .cmp-leadspace-v2__default-buttons-wrapper {
    flex-direction: column;
    margin-left: 0;
    width: 100%;
    max-width: 100%;
    gap: 16px;
  }
  .leadspace-v2 .cmp-leadspace-v2__default--50pc .cmp-leadspace-v2__play-button {
    left: auto;
    right: 15px;
  }
}
.leadspace-v2 .cmp-leadspace-v2__default-buttons {
  background-color: #000835;
  display: flex;
  flex-direction: row;
}
.leadspace-v2 .cmp-leadspace-v2__default-buttons-wrapper {
  display: flex;
  flex-direction: row;
  gap: 10px;
  padding: 30px 0 0;
  width: 100%;
  margin: 0 auto;
}
.leadspace-v2 .cmp-leadspace-v2__default .cmp-leadspace-v2__button {
  text-decoration: none;
  padding: 10.5px 24px 10.5px 24px;
  border-radius: 10px;
  border-width: 2px;
  border-style: solid;
  font-size: 18px;
  line-height: 27px;
  font-weight: 700;
}
.leadspace-v2 .cmp-leadspace-v2__default .cmp-leadspace-v2__button:hover {
  cursor: pointer;
}
.leadspace-v2 .cmp-leadspace-v2__small {
  flex-direction: column;
  min-height: 300px;
  position: relative;
  display: flex;
  background-size: cover;
}
.leadspace-v2 .cmp-leadspace-v2__small .cmp-leadspace-v2__wrapper {
  flex: 1 1 100%;
}
.leadspace-v2 .cmp-leadspace-v2__small .cmp-leadspace-v2__default-text {
  position: relative;
  padding: 40px 0;
  width: 100%;
  flex: 1;
  display: flex;
  align-content: flex-end;
  flex-direction: column;
  z-index: 4;
  justify-content: center;
}
.leadspace-v2 .cmp-leadspace-v2__small .cmp-leadspace-v2__default-text p {
  font-size: 20px !important;
  line-height: 30px;
}
.leadspace-v2 .cmp-leadspace-v2__small .cmp-leadspace-v2__bg-image {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1 1 100%;
  min-height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: 3;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.leadspace-v2 .cmp-leadspace-v2__small-buttons {
  background-color: #000835;
  display: flex;
  flex-direction: row;
}
.leadspace-v2 .cmp-leadspace-v2__small-buttons-wrapper {
  display: flex;
  flex-direction: row;
  gap: 10px;
  padding: 24px 0;
  width: 100%;
  margin: 0 auto;
}
.leadspace-v2 .cmp-leadspace-v2__small .cmp-leadspace-v2__button {
  text-decoration: none;
  padding: 10.5px 24px 10.5px 24px;
  border-radius: 10px;
  border-width: 2px;
  border-style: solid;
  font-size: 18px;
  line-height: 27px;
  font-weight: 700;
}
@media screen and (max-width: 1400px) {
  .leadspace-v2 .cmp-leadspace-v2__small .cmp-leadspace-v2__default-text {
    padding: 64px var(--bs-gutter-x, 0.75rem);
  }
  .leadspace-v2 .cmp-leadspace-v2__small .cmp-leadspace-v2__play-button {
    left: calc(100% - calc(48px + 40px));
  }
}
@media screen and (max-width: 991px) {
  .leadspace-v2 .cmp-leadspace-v2__small .cmp-leadspace-v2__default-text {
    max-width: 540px;
    padding: 64px var(--bs-gutter-x, 0.75rem);
  }
  .leadspace-v2 .cmp-leadspace-v2__small .cmp-leadspace-v2-head {
    max-width: 100%;
    margin-left: 0;
    padding: 64px 0;
  }
  .leadspace-v2 .cmp-leadspace-v2__small .cmp-leadspace-v2__play-button {
    left: auto;
    right: 20px;
  }
}
@media screen and (max-width: 767px) {
  .leadspace-v2 .cmp-leadspace-v2__small .cmp-leadspace-v2__default-text {
    padding: 64px var(--bs-gutter-x, 0.75rem);
  }
  .leadspace-v2 .cmp-leadspace-v2__small .cmp-leadspace-v2-title {
    font-size: 56px;
  }
  .leadspace-v2 .cmp-leadspace-v2__small .cmp-leadspace-v2-head {
    max-width: 100%;
    margin-left: 0;
    padding: 48px 0;
  }
  .leadspace-v2 .cmp-leadspace-v2__small .cmp-leadspace-v2__play-button {
    left: auto;
    right: 15px;
  }
  .cmp-leadspace-v2__default .leadspace-v2 .cmp-leadspace-v2__small-buttons-wrapper button {
    width: 100%;
  }
}
@media screen and (max-width: 575px) {
  .leadspace-v2 .cmp-leadspace-v2__small .cmp-leadspace-v2__default-text {
    padding: 64px var(--bs-gutter-x, 0.75rem);
  }
  .leadspace-v2 .cmp-leadspace-v2__small .cmp-leadspace-v2-title {
    font-size: 48px;
  }
  .leadspace-v2 .cmp-leadspace-v2__small .cmp-leadspace-v2-head {
    max-width: 100%;
    margin-left: 0;
    padding: 40px 0;
  }
  .leadspace-v2 .cmp-leadspace-v2__small .cmp-leadspace-v2-buttons-wrapper {
    flex-direction: column;
    padding: 16px 15px;
    margin-left: 0;
    width: 100%;
    max-width: 100%;
    gap: 16px;
    position: relative;
    z-index: 5;
  }
  .leadspace-v2 .cmp-leadspace-v2__small .cmp-leadspace-v2__play-button {
    left: auto;
    right: 15px;
  }
}

.button {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  /*REMOVE this as it is better to define size at component level */
  width: fit-content;
  gap: 8px;
  background-clip: padding-box;
  text-decoration: none;
  border-radius: 8px;
  font-family: "Amadeus-Medium";
  font-weight: 500;
  line-height: 150%;
}
.button.primary {
  background-color: #0c66e1;
  color: #ffffff;
  border: 2px solid transparent;
}
.button.primary.outline {
  background-color: transparent;
  border-color: #0c66e1;
  color: #0c66e1;
}
.button.primary:hover {
  border-color: transparent;
  color: #ffffff;
  background-color: #0a2f62;
}
.button.primary:focus-visible {
  color: #ffffff;
  background-color: #0a2f62;
  border-color: transparent;
  outline: 2px solid #0a2f62;
}
.button.primary:active {
  outline: none;
  border-color: transparent;
  color: #ffffff;
  background-color: #000835;
}
.button.primary.ghost {
  color: #0c66e1;
  background-color: transparent;
  border-color: transparent;
  padding-left: 0;
  padding-right: 0;
}
.button.primary.ghost .button__label {
  position: relative;
}
.button.primary.ghost .button__label:after {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  width: 0;
  transition: width 400ms;
  height: 1px;
  background-color: #0c66e1;
}
.button.primary.ghost:hover {
  border-color: transparent;
  color: #0c66e1;
  background-color: transparent;
}
.button.primary.ghost:hover .button__label::after {
  width: 100%;
}
.button.primary.ghost:active {
  border-color: transparent;
  background-color: #ebf3ff;
  color: #000835;
}
.button.primary.ghost:focus-visible {
  outline: none;
  background-color: transparent;
  border-color: #0c66e1;
  color: #0c66e1;
}
.button__icon {
  font-size: 24px;
  margin-bottom: 0;
}
.button {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  /*REMOVE this as it is better to define size at component level */
  width: fit-content;
  gap: 8px;
  background-clip: padding-box;
  text-decoration: none;
  border-radius: 8px;
  font-family: "Amadeus-Medium";
  font-weight: 500;
  line-height: 150%;
}
.button.dark {
  background-color: #000835;
  color: #ffffff;
  border: 2px solid transparent;
}
.button.dark.outline {
  background-color: transparent;
  border-color: #000835;
  color: #000835;
}
.button.dark:hover {
  border-color: transparent;
  color: #ffffff;
  background-color: #0a2f62;
}
.button.dark:focus-visible {
  color: #ffffff;
  background-color: #0a2f62;
  border-color: transparent;
  outline: 2px solid #0a2f62;
}
.button.dark:active {
  outline: none;
  border-color: transparent;
  color: #ffffff;
  background-color: #104ea4;
}
.button.dark.ghost {
  color: #000835;
  background-color: transparent;
  border-color: transparent;
  padding-left: 0;
  padding-right: 0;
}
.button.dark.ghost .button__label {
  position: relative;
}
.button.dark.ghost .button__label:after {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  width: 0;
  transition: width 400ms;
  height: 1px;
  background-color: #000835;
}
.button.dark.ghost:hover {
  border-color: transparent;
  color: #000835;
  background-color: transparent;
}
.button.dark.ghost:hover .button__label::after {
  width: 100%;
}
.button.dark.ghost:active {
  border-color: transparent;
  background-color: #ebf3ff;
  color: #000835;
}
.button.dark.ghost:focus-visible {
  outline: none;
  background-color: transparent;
  border-color: #000835;
  color: #000835;
}
.button__icon {
  font-size: 24px;
  margin-bottom: 0;
}
.button {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  /*REMOVE this as it is better to define size at component level */
  width: fit-content;
  gap: 8px;
  background-clip: padding-box;
  text-decoration: none;
  border-radius: 8px;
  font-family: "Amadeus-Medium";
  font-weight: 500;
  line-height: 150%;
}
.button.inverse {
  background-color: #ebf3ff;
  color: #000835;
  border: 2px solid transparent;
}
.button.inverse.outline {
  background-color: transparent;
  border-color: #ebf3ff;
  color: #ebf3ff;
}
.button.inverse:hover {
  border-color: transparent;
  color: #ffffff;
  background-color: #9fc6ff;
}
.button.inverse:focus-visible {
  color: #ffffff;
  background-color: #9fc6ff;
  border-color: transparent;
  outline: 2px solid #9fc6ff;
}
.button.inverse:active {
  outline: none;
  border-color: transparent;
  color: #ffffff;
  background-color: #61a2ff;
}
.button.inverse.ghost {
  color: #ebf3ff;
  background-color: transparent;
  border-color: transparent;
  padding-left: 0;
  padding-right: 0;
}
.button.inverse.ghost .button__label {
  position: relative;
}
.button.inverse.ghost .button__label:after {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  width: 0;
  transition: width 400ms;
  height: 1px;
  background-color: #ebf3ff;
}
.button.inverse.ghost:hover {
  border-color: transparent;
  color: #ebf3ff;
  background-color: transparent;
}
.button.inverse.ghost:hover .button__label::after {
  width: 100%;
}
.button.inverse.ghost:active {
  border-color: transparent;
  background-color: #ebf3ff;
  color: #000835;
}
.button.inverse.ghost:focus-visible {
  outline: none;
  background-color: transparent;
  border-color: #9fc6ff;
  color: #ebf3ff;
}
.button__icon {
  font-size: 24px;
  margin-bottom: 0;
}
.button.big {
  padding: 16px;
  font-size: 22px;
}
.button.small {
  padding: 10px 16px;
  font-size: 18px;
}
.cmp-base {
  padding: 72px 0;
}
@media (max-width: 991px) {
  .cmp-base {
    padding: 64px 0;
  }
}
@media (max-width: 767px) {
  .cmp-base {
    padding: 48px 0;
  }
}
.cmp-base.padding-top--small {
  padding-top: 40px;
}
@media (max-width: 991px) {
  .cmp-base.padding-top--small {
    padding-top: 32px;
  }
}
@media (max-width: 767px) {
  .cmp-base.padding-top--small {
    padding-top: 24px;
  }
}
.cmp-base.padding-bottom--small {
  padding-bottom: 40px;
}
@media (max-width: 991px) {
  .cmp-base.padding-bottom--small {
    padding-bottom: 32px;
  }
}
@media (max-width: 767px) {
  .cmp-base.padding-bottom--small {
    padding-bottom: 24px;
  }
}
.cmp-base.padding-top--none {
  padding-top: 0;
}
@media (max-width: 991px) {
  .cmp-base.padding-top--none {
    padding-top: 0;
  }
}
@media (max-width: 767px) {
  .cmp-base.padding-top--none {
    padding-top: 0;
  }
}
.cmp-base.padding-bottom--none {
  padding-bottom: 0;
}
@media (max-width: 991px) {
  .cmp-base.padding-bottom--none {
    padding-bottom: 0;
  }
}
@media (max-width: 767px) {
  .cmp-base.padding-bottom--none {
    padding-bottom: 0;
  }
}
.footer_v2 .button {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  /*REMOVE this as it is better to define size at component level */
  width: fit-content;
  gap: 8px;
  background-clip: padding-box;
  text-decoration: none;
  border-radius: 8px;
  font-family: "Amadeus-Medium";
  font-weight: 500;
  line-height: 150%;
}
.footer_v2 .button.primary {
  background-color: #0c66e1;
  color: #ffffff;
  border: 2px solid transparent;
}
.footer_v2 .button.primary.outline {
  background-color: transparent;
  border-color: #0c66e1;
  color: #0c66e1;
}
.footer_v2 .button.primary:hover {
  border-color: transparent;
  color: #ffffff;
  background-color: #0a2f62;
}
.footer_v2 .button.primary:focus-visible {
  color: #ffffff;
  background-color: #0a2f62;
  border-color: transparent;
  outline: 2px solid #0a2f62;
}
.footer_v2 .button.primary:active {
  outline: none;
  border-color: transparent;
  color: #ffffff;
  background-color: #000835;
}
.footer_v2 .button.primary.ghost {
  color: #0c66e1;
  background-color: transparent;
  border-color: transparent;
  padding-left: 0;
  padding-right: 0;
}
.footer_v2 .button.primary.ghost .button__label {
  position: relative;
}
.footer_v2 .button.primary.ghost .button__label:after {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  width: 0;
  transition: width 400ms;
  height: 1px;
  background-color: #0c66e1;
}
.footer_v2 .button.primary.ghost:hover {
  border-color: transparent;
  color: #0c66e1;
  background-color: transparent;
}
.footer_v2 .button.primary.ghost:hover .button__label::after {
  width: 100%;
}
.footer_v2 .button.primary.ghost:active {
  border-color: transparent;
  background-color: #ebf3ff;
  color: #000835;
}
.footer_v2 .button.primary.ghost:focus-visible {
  outline: none;
  background-color: transparent;
  border-color: #0c66e1;
  color: #0c66e1;
}
.footer_v2 .button__icon {
  font-size: 24px;
  margin-bottom: 0;
}
.footer_v2 .button {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  /*REMOVE this as it is better to define size at component level */
  width: fit-content;
  gap: 8px;
  background-clip: padding-box;
  text-decoration: none;
  border-radius: 8px;
  font-family: "Amadeus-Medium";
  font-weight: 500;
  line-height: 150%;
}
.footer_v2 .button.dark {
  background-color: #000835;
  color: #ffffff;
  border: 2px solid transparent;
}
.footer_v2 .button.dark.outline {
  background-color: transparent;
  border-color: #000835;
  color: #000835;
}
.footer_v2 .button.dark:hover {
  border-color: transparent;
  color: #ffffff;
  background-color: #0a2f62;
}
.footer_v2 .button.dark:focus-visible {
  color: #ffffff;
  background-color: #0a2f62;
  border-color: transparent;
  outline: 2px solid #0a2f62;
}
.footer_v2 .button.dark:active {
  outline: none;
  border-color: transparent;
  color: #ffffff;
  background-color: #104ea4;
}
.footer_v2 .button.dark.ghost {
  color: #000835;
  background-color: transparent;
  border-color: transparent;
  padding-left: 0;
  padding-right: 0;
}
.footer_v2 .button.dark.ghost .button__label {
  position: relative;
}
.footer_v2 .button.dark.ghost .button__label:after {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  width: 0;
  transition: width 400ms;
  height: 1px;
  background-color: #000835;
}
.footer_v2 .button.dark.ghost:hover {
  border-color: transparent;
  color: #000835;
  background-color: transparent;
}
.footer_v2 .button.dark.ghost:hover .button__label::after {
  width: 100%;
}
.footer_v2 .button.dark.ghost:active {
  border-color: transparent;
  background-color: #ebf3ff;
  color: #000835;
}
.footer_v2 .button.dark.ghost:focus-visible {
  outline: none;
  background-color: transparent;
  border-color: #000835;
  color: #000835;
}
.footer_v2 .button__icon {
  font-size: 24px;
  margin-bottom: 0;
}
.footer_v2 .button {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  /*REMOVE this as it is better to define size at component level */
  width: fit-content;
  gap: 8px;
  background-clip: padding-box;
  text-decoration: none;
  border-radius: 8px;
  font-family: "Amadeus-Medium";
  font-weight: 500;
  line-height: 150%;
}
.footer_v2 .button.inverse {
  background-color: #ebf3ff;
  color: #000835;
  border: 2px solid transparent;
}
.footer_v2 .button.inverse.outline {
  background-color: transparent;
  border-color: #ebf3ff;
  color: #ebf3ff;
}
.footer_v2 .button.inverse:hover {
  border-color: transparent;
  color: #ffffff;
  background-color: #9fc6ff;
}
.footer_v2 .button.inverse:focus-visible {
  color: #ffffff;
  background-color: #9fc6ff;
  border-color: transparent;
  outline: 2px solid #9fc6ff;
}
.footer_v2 .button.inverse:active {
  outline: none;
  border-color: transparent;
  color: #ffffff;
  background-color: #61a2ff;
}
.footer_v2 .button.inverse.ghost {
  color: #ebf3ff;
  background-color: transparent;
  border-color: transparent;
  padding-left: 0;
  padding-right: 0;
}
.footer_v2 .button.inverse.ghost .button__label {
  position: relative;
}
.footer_v2 .button.inverse.ghost .button__label:after {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  width: 0;
  transition: width 400ms;
  height: 1px;
  background-color: #ebf3ff;
}
.footer_v2 .button.inverse.ghost:hover {
  border-color: transparent;
  color: #ebf3ff;
  background-color: transparent;
}
.footer_v2 .button.inverse.ghost:hover .button__label::after {
  width: 100%;
}
.footer_v2 .button.inverse.ghost:active {
  border-color: transparent;
  background-color: #ebf3ff;
  color: #000835;
}
.footer_v2 .button.inverse.ghost:focus-visible {
  outline: none;
  background-color: transparent;
  border-color: #9fc6ff;
  color: #ebf3ff;
}
.footer_v2 .button__icon {
  font-size: 24px;
  margin-bottom: 0;
}
.footer_v2.color--sky  .button {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  gap: 8px;
  background-clip: padding-box;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 500;
  line-height: 150%;
  background-color: #ebf3ff;
  color: #000835;
  border: 2px solid transparent;
}
.footer_v2.color--sky  .button.outline {
  background-color: transparent;
  border-color: #ebf3ff;
  color: #ebf3ff;
}
.footer_v2.color--sky  .button:hover {
  border-color: transparent;
  color: #000835;
  background-color: #9fc6ff;
}
.footer_v2.color--sky  .button:focus-visible {
  color: #000835;
  background-color: #9fc6ff;
  border-color: transparent;
  outline: 2px solid #9fc6ff;
}
.footer_v2.color--sky  .button:active {
  outline: none;
  border-color: transparent;
  color: #ffffff;
  background-color: #61a2ff;
}
.footer_v2.color--sky  .button.ghost {
  color: #ebf3ff;
  background-color: transparent;
  border-color: transparent;
  padding-left: 0;
  padding-right: 0;
}
.footer_v2.color--sky  .button.ghost .button__label {
  position: relative;
}
.footer_v2.color--sky  .button.ghost .button__label:after {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  width: 0;
  transition: width 400ms;
  height: 1px;
  background-color: #ebf3ff;
}
.footer_v2.color--sky  .button.ghost:hover {
  border-color: transparent;
  color: #ebf3ff;
  background-color: transparent;
}
.footer_v2.color--sky  .button.ghost:hover .button__label::after {
  width: 100%;
}
.footer_v2.color--sky  .button.ghost:focus-visible {
  outline: none;
  background-color: transparent;
  border-color: #9fc6ff;
  color: #ebf3ff;
}
.footer_v2.color--sky  .button.ghost:active {
  border-color: transparent;
  background-color: #ebf3ff;
  color: #000835;
}
.footer_v2.color--sky  .button__icon {
  font-size: 24px;
  margin-bottom: 0;
}
.footer_v2.color--violet  .button {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  gap: 8px;
  background-clip: padding-box;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 500;
  line-height: 150%;
  background-color: #f8eeff;
  color: #26005a;
  border: 2px solid transparent;
}
.footer_v2.color--violet  .button.outline {
  background-color: transparent;
  border-color: #f8eeff;
  color: #f8eeff;
}
.footer_v2.color--violet  .button:hover {
  border-color: transparent;
  color: #26005a;
  background-color: #d396ff;
}
.footer_v2.color--violet  .button:focus-visible {
  color: #26005a;
  background-color: #d396ff;
  border-color: transparent;
  outline: 2px solid #d396ff;
}
.footer_v2.color--violet  .button:active {
  outline: none;
  border-color: transparent;
  color: #ffffff;
  background-color: #c573ff;
}
.footer_v2.color--violet  .button.ghost {
  color: #f8eeff;
  background-color: transparent;
  border-color: transparent;
  padding-left: 0;
  padding-right: 0;
}
.footer_v2.color--violet  .button.ghost .button__label {
  position: relative;
}
.footer_v2.color--violet  .button.ghost .button__label:after {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  width: 0;
  transition: width 400ms;
  height: 1px;
  background-color: #f8eeff;
}
.footer_v2.color--violet  .button.ghost:hover {
  border-color: transparent;
  color: #f8eeff;
  background-color: transparent;
}
.footer_v2.color--violet  .button.ghost:hover .button__label::after {
  width: 100%;
}
.footer_v2.color--violet  .button.ghost:focus-visible {
  outline: none;
  background-color: transparent;
  border-color: #d396ff;
  color: #f8eeff;
}
.footer_v2.color--violet  .button.ghost:active {
  border-color: transparent;
  background-color: #f8eeff;
  color: #26005a;
}
.footer_v2.color--violet  .button__icon {
  font-size: 24px;
  margin-bottom: 0;
}
.footer_v2.color--crimson  .button {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  gap: 8px;
  background-clip: padding-box;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 500;
  line-height: 150%;
  background-color: #ffeeed;
  color: #560900;
  border: 2px solid transparent;
}
.footer_v2.color--crimson  .button.outline {
  background-color: transparent;
  border-color: #ffeeed;
  color: #ffeeed;
}
.footer_v2.color--crimson  .button:hover {
  border-color: transparent;
  color: #560900;
  background-color: #ff9794;
}
.footer_v2.color--crimson  .button:focus-visible {
  color: #560900;
  background-color: #ff9794;
  border-color: transparent;
  outline: 2px solid #ff9794;
}
.footer_v2.color--crimson  .button:active {
  outline: none;
  border-color: transparent;
  color: #ffffff;
  background-color: #ff7471;
}
.footer_v2.color--crimson  .button.ghost {
  color: #ffeeed;
  background-color: transparent;
  border-color: transparent;
  padding-left: 0;
  padding-right: 0;
}
.footer_v2.color--crimson  .button.ghost .button__label {
  position: relative;
}
.footer_v2.color--crimson  .button.ghost .button__label:after {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  width: 0;
  transition: width 400ms;
  height: 1px;
  background-color: #ffeeed;
}
.footer_v2.color--crimson  .button.ghost:hover {
  border-color: transparent;
  color: #ffeeed;
  background-color: transparent;
}
.footer_v2.color--crimson  .button.ghost:hover .button__label::after {
  width: 100%;
}
.footer_v2.color--crimson  .button.ghost:focus-visible {
  outline: none;
  background-color: transparent;
  border-color: #ff9794;
  color: #ffeeed;
}
.footer_v2.color--crimson  .button.ghost:active {
  border-color: transparent;
  background-color: #ffeeed;
  color: #560900;
}
.footer_v2.color--crimson  .button__icon {
  font-size: 24px;
  margin-bottom: 0;
}
.footer_v2.color--forest  .button {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  gap: 8px;
  background-clip: padding-box;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 500;
  line-height: 150%;
  background-color: #f0ffec;
  color: #023a00;
  border: 2px solid transparent;
}
.footer_v2.color--forest  .button.outline {
  background-color: transparent;
  border-color: #f0ffec;
  color: #f0ffec;
}
.footer_v2.color--forest  .button:hover {
  border-color: transparent;
  color: #023a00;
  background-color: #beffab;
}
.footer_v2.color--forest  .button:focus-visible {
  color: #023a00;
  background-color: #beffab;
  border-color: transparent;
  outline: 2px solid #beffab;
}
.footer_v2.color--forest  .button:active {
  outline: none;
  border-color: transparent;
  color: #ffffff;
  background-color: #a8ff8f;
}
.footer_v2.color--forest  .button.ghost {
  color: #f0ffec;
  background-color: transparent;
  border-color: transparent;
  padding-left: 0;
  padding-right: 0;
}
.footer_v2.color--forest  .button.ghost .button__label {
  position: relative;
}
.footer_v2.color--forest  .button.ghost .button__label:after {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  width: 0;
  transition: width 400ms;
  height: 1px;
  background-color: #f0ffec;
}
.footer_v2.color--forest  .button.ghost:hover {
  border-color: transparent;
  color: #f0ffec;
  background-color: transparent;
}
.footer_v2.color--forest  .button.ghost:hover .button__label::after {
  width: 100%;
}
.footer_v2.color--forest  .button.ghost:focus-visible {
  outline: none;
  background-color: transparent;
  border-color: #beffab;
  color: #f0ffec;
}
.footer_v2.color--forest  .button.ghost:active {
  border-color: transparent;
  background-color: #f0ffec;
  color: #023a00;
}
.footer_v2.color--forest  .button__icon {
  font-size: 24px;
  margin-bottom: 0;
}
.footer_v2.color--canary  .button {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  gap: 8px;
  background-clip: padding-box;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 500;
  line-height: 150%;
  background-color: #fffce6;
  color: #564a00;
  border: 2px solid transparent;
}
.footer_v2.color--canary  .button.outline {
  background-color: transparent;
  border-color: #fffce6;
  color: #fffce6;
}
.footer_v2.color--canary  .button:hover {
  border-color: transparent;
  color: #564a00;
  background-color: #fdf092;
}
.footer_v2.color--canary  .button:focus-visible {
  color: #564a00;
  background-color: #fdf092;
  border-color: transparent;
  outline: 2px solid #fdf092;
}
.footer_v2.color--canary  .button:active {
  outline: none;
  border-color: transparent;
  color: #ffffff;
  background-color: #fdeb6d;
}
.footer_v2.color--canary  .button.ghost {
  color: #fffce6;
  background-color: transparent;
  border-color: transparent;
  padding-left: 0;
  padding-right: 0;
}
.footer_v2.color--canary  .button.ghost .button__label {
  position: relative;
}
.footer_v2.color--canary  .button.ghost .button__label:after {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  width: 0;
  transition: width 400ms;
  height: 1px;
  background-color: #fffce6;
}
.footer_v2.color--canary  .button.ghost:hover {
  border-color: transparent;
  color: #fffce6;
  background-color: transparent;
}
.footer_v2.color--canary  .button.ghost:hover .button__label::after {
  width: 100%;
}
.footer_v2.color--canary  .button.ghost:focus-visible {
  outline: none;
  background-color: transparent;
  border-color: #fdf092;
  color: #fffce6;
}
.footer_v2.color--canary  .button.ghost:active {
  border-color: transparent;
  background-color: #fffce6;
  color: #564a00;
}
.footer_v2.color--canary  .button__icon {
  font-size: 24px;
  margin-bottom: 0;
}
.footer_v2.color--fuchsia  .button {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  gap: 8px;
  background-clip: padding-box;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 500;
  line-height: 150%;
  background-color: #ffeef7;
  color: #4f0230;
  border: 2px solid transparent;
}
.footer_v2.color--fuchsia  .button.outline {
  background-color: transparent;
  border-color: #ffeef7;
  color: #ffeef7;
}
.footer_v2.color--fuchsia  .button:hover {
  border-color: transparent;
  color: #4f0230;
  background-color: #ff9be3;
}
.footer_v2.color--fuchsia  .button:focus-visible {
  color: #4f0230;
  background-color: #ff9be3;
  border-color: transparent;
  outline: 2px solid #ff9be3;
}
.footer_v2.color--fuchsia  .button:active {
  outline: none;
  border-color: transparent;
  color: #ffffff;
  background-color: #ff79bd;
}
.footer_v2.color--fuchsia  .button.ghost {
  color: #ffeef7;
  background-color: transparent;
  border-color: transparent;
  padding-left: 0;
  padding-right: 0;
}
.footer_v2.color--fuchsia  .button.ghost .button__label {
  position: relative;
}
.footer_v2.color--fuchsia  .button.ghost .button__label:after {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  width: 0;
  transition: width 400ms;
  height: 1px;
  background-color: #ffeef7;
}
.footer_v2.color--fuchsia  .button.ghost:hover {
  border-color: transparent;
  color: #ffeef7;
  background-color: transparent;
}
.footer_v2.color--fuchsia  .button.ghost:hover .button__label::after {
  width: 100%;
}
.footer_v2.color--fuchsia  .button.ghost:focus-visible {
  outline: none;
  background-color: transparent;
  border-color: #ff9be3;
  color: #ffeef7;
}
.footer_v2.color--fuchsia  .button.ghost:active {
  border-color: transparent;
  background-color: #ffeef7;
  color: #4f0230;
}
.footer_v2.color--fuchsia  .button__icon {
  font-size: 24px;
  margin-bottom: 0;
}
.footer_v2.color--pumpkin  .button {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  gap: 8px;
  background-clip: padding-box;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 500;
  line-height: 150%;
  background-color: #fff0e6;
  color: #5b2500;
  border: 2px solid transparent;
}
.footer_v2.color--pumpkin  .button.outline {
  background-color: transparent;
  border-color: #fff0e6;
  color: #fff0e6;
}
.footer_v2.color--pumpkin  .button:hover {
  border-color: transparent;
  color: #5b2500;
  background-color: #ffa366;
}
.footer_v2.color--pumpkin  .button:focus-visible {
  color: #5b2500;
  background-color: #ffa366;
  border-color: transparent;
  outline: 2px solid #ffa366;
}
.footer_v2.color--pumpkin  .button:active {
  outline: none;
  border-color: transparent;
  color: #ffffff;
  background-color: #ff8838;
}
.footer_v2.color--pumpkin  .button.ghost {
  color: #fff0e6;
  background-color: transparent;
  border-color: transparent;
  padding-left: 0;
  padding-right: 0;
}
.footer_v2.color--pumpkin  .button.ghost .button__label {
  position: relative;
}
.footer_v2.color--pumpkin  .button.ghost .button__label:after {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  width: 0;
  transition: width 400ms;
  height: 1px;
  background-color: #fff0e6;
}
.footer_v2.color--pumpkin  .button.ghost:hover {
  border-color: transparent;
  color: #fff0e6;
  background-color: transparent;
}
.footer_v2.color--pumpkin  .button.ghost:hover .button__label::after {
  width: 100%;
}
.footer_v2.color--pumpkin  .button.ghost:focus-visible {
  outline: none;
  background-color: transparent;
  border-color: #ffa366;
  color: #fff0e6;
}
.footer_v2.color--pumpkin  .button.ghost:active {
  border-color: transparent;
  background-color: #fff0e6;
  color: #5b2500;
}
.footer_v2.color--pumpkin  .button__icon {
  font-size: 24px;
  margin-bottom: 0;
}
.footer_v2.color--custom  .button {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  gap: 8px;
  background-clip: padding-box;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 500;
  line-height: 150%;
  background-color: #000835;
  color: #3a8bff;
  border: 2px solid transparent;
}
.footer_v2.color--custom  .button.outline {
  background-color: transparent;
  border-color: #000835;
  color: #000835;
}
.footer_v2.color--custom  .button:hover {
  border-color: transparent;
  color: #3a8bff;
  background-color: #000835;
}
.footer_v2.color--custom  .button:focus-visible {
  color: #3a8bff;
  background-color: #000835;
  border-color: transparent;
  outline: 2px solid #000835;
}
.footer_v2.color--custom  .button:active {
  outline: none;
  border-color: transparent;
  color: #ffffff;
  background-color: #61a2ff;
}
.footer_v2.color--custom  .button.ghost {
  color: #000835;
  background-color: transparent;
  border-color: transparent;
  padding-left: 0;
  padding-right: 0;
}
.footer_v2.color--custom  .button.ghost .button__label {
  position: relative;
}
.footer_v2.color--custom  .button.ghost .button__label:after {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  width: 0;
  transition: width 400ms;
  height: 1px;
  background-color: #000835;
}
.footer_v2.color--custom  .button.ghost:hover {
  border-color: transparent;
  color: #000835;
  background-color: transparent;
}
.footer_v2.color--custom  .button.ghost:hover .button__label::after {
  width: 100%;
}
.footer_v2.color--custom  .button.ghost:focus-visible {
  outline: none;
  background-color: transparent;
  border-color: #000835;
  color: #000835;
}
.footer_v2.color--custom  .button.ghost:active {
  border-color: transparent;
  background-color: #000835;
  color: #3a8bff;
}
.footer_v2.color--custom  .button__icon {
  font-size: 24px;
  margin-bottom: 0;
}
.footer_v2 .button:hover {
  text-decoration: none;
}
.footer_v2.color--sky {
  background-color: #000835;
}
.footer_v2.color--sky * {
  color: #ffffff;
}
.footer_v2.color--sky a {
  color: #ffffff;
}
.footer_v2.color--sky .cmp-footer_v2__language-button {
  color: #ffffff;
}
.footer_v2.color--sky .cmp-footer_v2__content-top {
  border-top: 1px solid;
  border-color: #ffffff;
}
.footer_v2.color--sky .cmp-footer_v2__links-title-text {
  color: #ffffff;
}
.footer_v2.color--sky .cmp-footer_v2__newsletter-text {
  color: #ffffff;
}
.footer_v2.color--sky .cmp-footer_v2__links a {
  color: #ffffff;
}
.footer_v2.color--sky .cmp-footer_v2__copy-text {
  color: #ffffff;
}
.footer_v2.layout--crowded .cmp-footer_v2 .cmp-footer_v2__links-container--simple .cmp-footer_v2__links-title {
  display: none;
}
@media (max-width: 767px) {
  .footer_v2.layout--crowded .cmp-footer_v2 .cmp-footer_v2__links-container--simple .cmp-footer_v2__links-list {
    text-align: center;
  }
  .footer_v2.layout--crowded .cmp-footer_v2 .cmp-footer_v2__links-container--simple .cmp-footer_v2__copy {
    text-align: center;
  }
}
@media (min-width: 768px) {
  .footer_v2.layout--crowded .cmp-footer_v2 .cmp-footer_v2__links-container--simple {
    grid-template-columns: minmax(0, 1fr);
  }
  .footer_v2.layout--crowded .cmp-footer_v2 .cmp-footer_v2__links-container--simple .cmp-footer_v2__links-list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 64px;
  }
  .footer_v2.layout--crowded .cmp-footer_v2 .cmp-footer_v2__links-container--simple .cmp-footer_v2__links-list li {
    overflow: visible;
    text-overflow: unset;
  }
}
.footer_v2.layout--crowded .cmp-footer_v2__content {
  grid-column: 1 / span 12;
}
@media (min-width: 768px) {
  .footer_v2.layout--crowded .cmp-footer_v2__links-container {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    column-gap: 64px;
  }
  .footer_v2.layout--crowded .cmp-footer_v2__links-list li {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
}
@media (min-width: 991px) {
  .footer_v2.layout--crowded .cmp-footer_v2__links-container {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}
.footer_v2 .cmp-footer_v2 {
  padding: 40px 0;
  --max-width: 1280px;
  margin: 0 auto;
  max-width: var(--max-width);
  display: grid;
  grid-template-columns: repeat(12, 1fr);
}
.footer_v2 .cmp-footer_v2 .cmp-footer_v2__links-container--simple .cmp-footer_v2__links-title {
  display: none;
}
@media (max-width: 767px) {
  .footer_v2 .cmp-footer_v2 .cmp-footer_v2__links-container--simple .cmp-footer_v2__links-list {
    text-align: center;
  }
  .footer_v2 .cmp-footer_v2 .cmp-footer_v2__links-container--simple .cmp-footer_v2__copy {
    text-align: center;
  }
}
@media (min-width: 768px) {
  .footer_v2 .cmp-footer_v2 .cmp-footer_v2__links-container--simple {
    grid-template-columns: minmax(0, 1fr);
  }
  .footer_v2 .cmp-footer_v2 .cmp-footer_v2__links-container--simple .cmp-footer_v2__links-list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 64px;
  }
  .footer_v2 .cmp-footer_v2 .cmp-footer_v2__links-container--simple .cmp-footer_v2__links-list li {
    overflow: visible;
    text-overflow: unset;
  }
}
.footer_v2 .cmp-footer_v2__header {
  display: flex;
  justify-content: space-between;
  grid-row: 1;
  grid-column: 1 / span 12;
  margin-bottom: 40px;
}
.footer_v2 .cmp-footer_v2__logo {
  width: 120px;
  height: 16px;
}
.footer_v2 .cmp-footer_v2__logo img {
  max-width: 100%;
}
.footer_v2 .cmp-footer_v2__language {
  position: relative;
  max-width: fit-content;
}
.footer_v2 .cmp-footer_v2__language-button {
  background-color: transparent;
  display: flex;
  align-items: center;
  gap: 4px;
  color: #000835;
  border: none;
}
.footer_v2 .cmp-footer_v2__language-button span {
  font-size: 24px;
}
.footer_v2 .cmp-footer_v2__language-dropdown {
  position: absolute;
  max-height: 0;
  transition: max-height 300ms;
  border-radius: 8px;
  width: 200px;
  right: 0;
  top: calc(100% + 14px);
  padding: 0;
  margin: 0;
  box-shadow: 0px 0px 8px 0px rgba(128, 128, 128, 0.25);
  background-color: #ffffff;
}
.footer_v2 .cmp-footer_v2__language-dropdown::before {
  content: "";
  background-color: #ffffff;
  box-shadow: -5px -10px 11px 0 rgba(128, 128, 128, 0.1);
  position: absolute;
  top: 0px;
  right: 7%;
  height: 0;
  width: 14px;
  transform: rotateZ(0deg);
  transition: all 300ms;
}
.footer_v2 .cmp-footer_v2__language-dropdown li {
  list-style: none;
  height: 0;
  transition: height 300ms;
  display: grid;
  align-items: center;
}
.footer_v2 .cmp-footer_v2__language-dropdown li a {
  color: #000835;
  text-decoration: none;
  padding: 0 15px;
  height: 0;
  overflow: hidden;
  transition: all 300ms;
}
.footer_v2 .cmp-footer_v2__language-dropdown--active {
  max-height: calc(48px * 4);
}
.footer_v2 .cmp-footer_v2__language-dropdown--active::before {
  top: -7px;
  transform: rotateZ(45deg);
  height: 14px;
}
.footer_v2 .cmp-footer_v2__language-dropdown--active li {
  overflow: hidden;
  height: 48px;
}
.footer_v2 .cmp-footer_v2__language-dropdown--active li a {
  padding: 12px 15px;
  height: 48px;
}
.footer_v2 .cmp-footer_v2__content {
  grid-row: 2;
  grid-column: 3 / span 10;
}
.footer_v2 .cmp-footer_v2__content-top {
  border-bottom: 1px solid #e6e6e6;
  padding: 24px 0 40px 0;
}
.footer_v2 .cmp-footer_v2__content-bottom {
  margin-top: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer_v2 .cmp-footer_v2__links-container {
  display: grid;
  grid-template-columns: repeat(3, 25%);
  justify-content: space-between;
  row-gap: 40px;
}
.footer_v2 .cmp-footer_v2__links-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
.footer_v2 .cmp-footer_v2__links-title-text {
  color: #666666;
}
.footer_v2 .cmp-footer_v2__links-title-button {
  display: none;
}
.footer_v2 .cmp-footer_v2__links-title-button span {
  grid-column: 1;
  grid-row: 1;
  font-size: 16px;
}
.footer_v2 .cmp-footer_v2__links-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer_v2 .cmp-footer_v2__links a {
  color: #0c66e1;
  text-decoration: none;
}
.footer_v2 .cmp-footer_v2__links a:hover {
  text-decoration: underline;
}
.footer_v2 .cmp-footer_v2__newsletter {
  display: flex;
  gap: 32px;
  align-items: center;
  margin-top: 40px;
}
.footer_v2 .cmp-footer_v2__newsletter-text {
  color: #666666;
}
.footer_v2 .cmp-footer_v2__copy {
  display: flex;
  gap: 24px;
}
.footer_v2 .cmp-footer_v2__copy-text,
.footer_v2 .cmp-footer_v2__copy-link {
  color: #666666;
  text-decoration: none;
}
.footer_v2 .cmp-footer_v2__socials {
  display: flex;
  gap: 8px;
}
.footer_v2 .cmp-footer_v2__socials-link {
  width: 46px;
  text-decoration: none;
  font-size: 32px;
  color: #666666;
  display: grid;
  place-content: center;
}
@media (max-width: 1400px) {
  .footer_v2 .cmp-footer_v2 {
    --max-width: 1140px;
  }
}
@media (max-width: 1199px) {
  .footer_v2 .cmp-footer_v2 {
    --max-width: 960px;
  }
}
@media (max-width: 991px) {
  .footer_v2 .cmp-footer_v2 {
    --max-width: 100%;
    padding: 40px 15px;
  }
  .footer_v2 .cmp-footer_v2__content {
    grid-column: 1 / span 12;
  }
  .footer_v2 .cmp-footer_v2__links-container {
    grid-template-columns: 40% 40%;
  }
}
@media (max-width: 767px) {
  .footer_v2 .cmp-footer_v2 {
    padding: 48px 15px;
  }
  .footer_v2 .cmp-footer_v2__header {
    flex-direction: column;
    gap: 24px;
  }
  .footer_v2 .cmp-footer_v2__content {
    grid-column: 1 / span 12;
  }
  .footer_v2 .cmp-footer_v2__content-bottom {
    flex-direction: column;
    margin-top: 24px;
    gap: 8px;
  }
  .footer_v2 .cmp-footer_v2__language-dropdown {
    right: unset;
  }
  .footer_v2 .cmp-footer_v2__language-dropdown::before {
    left: 10%;
    right: unset;
  }
  .footer_v2 .cmp-footer_v2__links {
    display: grid;
    grid-template-rows: max-content 0fr;
    transition: grid-template-rows 300ms;
  }
  .footer_v2 .cmp-footer_v2__links--active {
    grid-template-rows: max-content 1fr;
  }
  .footer_v2 .cmp-footer_v2__links--active .cmp-footer_v2__links-title-button span {
    display: block;
  }
  .footer_v2 .cmp-footer_v2__links--active .cmp-footer_v2__links-title-button [class^=coral3-Icon--custom_add] {
    height: 0;
    overflow: hidden;
  }
  .footer_v2 .cmp-footer_v2__links-container {
    grid-template-columns: 1fr;
    row-gap: 8px;
  }
  .footer_v2 .cmp-footer_v2__links-title {
    margin-bottom: 0;
    padding: 8px;
  }
  .footer_v2 .cmp-footer_v2__links-title-button {
    display: grid;
    place-content: center;
  }
  .footer_v2 .cmp-footer_v2__links-title-button [class^=coral3-Icon--custom_add] {
    transition: height 300ms;
    height: 100%;
  }
  .footer_v2 .cmp-footer_v2__links-list {
    overflow: hidden;
  }
  .footer_v2 .cmp-footer_v2__links-list li {
    padding: 8px;
  }
  .footer_v2 .cmp-footer_v2__newsletter {
    flex-direction: column;
    gap: 24px;
  }
  .footer_v2 .cmp-footer_v2__newsletter .button {
    width: 100%;
  }
  .footer_v2 .cmp-footer_v2__copy {
    flex-direction: column;
    gap: 6px;
    margin-bottom: 8px;
  }
}

.featured-content.padding-bottom--small .cmp-fc {
  padding-bottom: var(--md-sys-padding-medium);
}
.featured-content.padding-bottom--none .cmp-fc {
  padding-bottom: var(--md-sys-padding-none);
}
.featured-content.padding-top--small .cmp-fc {
  padding-top: var(--md-sys-padding-medium);
}
.featured-content.padding-top--none .cmp-fc {
  padding-top: var(--md-sys-padding-none);
}
.featured-content.color--sky .cmp-fc__content {
  background-color: #000835 !important;
}
.featured-content.color--sky .cmp-fc__label,
.featured-content.color--sky .cmp-fc__title,
.featured-content.color--sky .cmp-fc__description {
  color: #c5d5f9 !important;
}
.featured-content.color--violet .cmp-fc__content {
  background-color: #26005a !important;
}
.featured-content.color--violet .cmp-fc__label,
.featured-content.color--violet .cmp-fc__title,
.featured-content.color--violet .cmp-fc__description {
  color: #e4c7ff !important;
}
.featured-content.color--forest .cmp-fc__content {
  background-color: #023a00 !important;
}
.featured-content.color--forest .cmp-fc__label,
.featured-content.color--forest .cmp-fc__title,
.featured-content.color--forest .cmp-fc__description {
  color: #c8ffc0 !important;
}
.featured-content.color--sky  .button {
  text-align: center !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: fit-content !important;
  gap: 8px !important;
  background-clip: padding-box !important;
  text-decoration: none !important;
  border-radius: 8px !important;
  font-weight: 500 !important;
  line-height: 150% !important;
  background-color: #ebf3ff !important;
  color: #000835 !important;
  border: 2px solid transparent !important;
}
.featured-content.color--sky  .button.outline {
  background-color: transparent !important;
  border-color: #ebf3ff !important;
  color: #ebf3ff !important;
}
.featured-content.color--sky  .button:hover {
  border-color: transparent !important;
  color: #000835 !important;
  background-color: #9fc6ff !important;
}
.featured-content.color--sky  .button:focus-visible {
  color: #000835 !important;
  background-color: #9fc6ff !important;
  border-color: transparent !important;
  outline: 2px solid #9fc6ff !important;
}
.featured-content.color--sky  .button:active {
  outline: none !important;
  border-color: transparent !important;
  color: #ffffff !important;
  background-color: #61a2ff !important;
}
.featured-content.color--sky  .button.ghost {
  color: #ebf3ff !important;
  background-color: transparent !important;
  border-color: transparent !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.featured-content.color--sky  .button.ghost .button__label {
  position: relative !important;
}
.featured-content.color--sky  .button.ghost .button__label:after {
  position: absolute !important;
  content: '' !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 0 !important;
  transition: width 400ms !important;
  height: 1px !important;
  background-color: #ebf3ff !important;
}
.featured-content.color--sky  .button.ghost:hover {
  border-color: transparent !important;
  color: #ebf3ff !important;
  background-color: transparent !important;
}
.featured-content.color--sky  .button.ghost:hover .button__label::after {
  width: 100% !important;
}
.featured-content.color--sky  .button.ghost:focus-visible {
  outline: none !important;
  background-color: transparent !important;
  border-color: #9fc6ff !important;
  color: #ebf3ff !important;
}
.featured-content.color--sky  .button.ghost:active {
  border-color: transparent !important;
  background-color: #ebf3ff !important;
  color: #000835 !important;
}
.featured-content.color--sky  .button__icon {
  font-size: 24px !important;
  margin-bottom: 0 !important;
}
.featured-content.color--violet  .button {
  text-align: center !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: fit-content !important;
  gap: 8px !important;
  background-clip: padding-box !important;
  text-decoration: none !important;
  border-radius: 8px !important;
  font-weight: 500 !important;
  line-height: 150% !important;
  background-color: #f8eeff !important;
  color: #26005a !important;
  border: 2px solid transparent !important;
}
.featured-content.color--violet  .button.outline {
  background-color: transparent !important;
  border-color: #f8eeff !important;
  color: #f8eeff !important;
}
.featured-content.color--violet  .button:hover {
  border-color: transparent !important;
  color: #26005a !important;
  background-color: #d396ff !important;
}
.featured-content.color--violet  .button:focus-visible {
  color: #26005a !important;
  background-color: #d396ff !important;
  border-color: transparent !important;
  outline: 2px solid #d396ff !important;
}
.featured-content.color--violet  .button:active {
  outline: none !important;
  border-color: transparent !important;
  color: #ffffff !important;
  background-color: #c573ff !important;
}
.featured-content.color--violet  .button.ghost {
  color: #f8eeff !important;
  background-color: transparent !important;
  border-color: transparent !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.featured-content.color--violet  .button.ghost .button__label {
  position: relative !important;
}
.featured-content.color--violet  .button.ghost .button__label:after {
  position: absolute !important;
  content: '' !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 0 !important;
  transition: width 400ms !important;
  height: 1px !important;
  background-color: #f8eeff !important;
}
.featured-content.color--violet  .button.ghost:hover {
  border-color: transparent !important;
  color: #f8eeff !important;
  background-color: transparent !important;
}
.featured-content.color--violet  .button.ghost:hover .button__label::after {
  width: 100% !important;
}
.featured-content.color--violet  .button.ghost:focus-visible {
  outline: none !important;
  background-color: transparent !important;
  border-color: #d396ff !important;
  color: #f8eeff !important;
}
.featured-content.color--violet  .button.ghost:active {
  border-color: transparent !important;
  background-color: #f8eeff !important;
  color: #26005a !important;
}
.featured-content.color--violet  .button__icon {
  font-size: 24px !important;
  margin-bottom: 0 !important;
}
.featured-content.color--crimson  .button {
  text-align: center !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: fit-content !important;
  gap: 8px !important;
  background-clip: padding-box !important;
  text-decoration: none !important;
  border-radius: 8px !important;
  font-weight: 500 !important;
  line-height: 150% !important;
  background-color: #ffeeed !important;
  color: #560900 !important;
  border: 2px solid transparent !important;
}
.featured-content.color--crimson  .button.outline {
  background-color: transparent !important;
  border-color: #ffeeed !important;
  color: #ffeeed !important;
}
.featured-content.color--crimson  .button:hover {
  border-color: transparent !important;
  color: #560900 !important;
  background-color: #ff9794 !important;
}
.featured-content.color--crimson  .button:focus-visible {
  color: #560900 !important;
  background-color: #ff9794 !important;
  border-color: transparent !important;
  outline: 2px solid #ff9794 !important;
}
.featured-content.color--crimson  .button:active {
  outline: none !important;
  border-color: transparent !important;
  color: #ffffff !important;
  background-color: #ff7471 !important;
}
.featured-content.color--crimson  .button.ghost {
  color: #ffeeed !important;
  background-color: transparent !important;
  border-color: transparent !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.featured-content.color--crimson  .button.ghost .button__label {
  position: relative !important;
}
.featured-content.color--crimson  .button.ghost .button__label:after {
  position: absolute !important;
  content: '' !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 0 !important;
  transition: width 400ms !important;
  height: 1px !important;
  background-color: #ffeeed !important;
}
.featured-content.color--crimson  .button.ghost:hover {
  border-color: transparent !important;
  color: #ffeeed !important;
  background-color: transparent !important;
}
.featured-content.color--crimson  .button.ghost:hover .button__label::after {
  width: 100% !important;
}
.featured-content.color--crimson  .button.ghost:focus-visible {
  outline: none !important;
  background-color: transparent !important;
  border-color: #ff9794 !important;
  color: #ffeeed !important;
}
.featured-content.color--crimson  .button.ghost:active {
  border-color: transparent !important;
  background-color: #ffeeed !important;
  color: #560900 !important;
}
.featured-content.color--crimson  .button__icon {
  font-size: 24px !important;
  margin-bottom: 0 !important;
}
.featured-content.color--forest  .button {
  text-align: center !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: fit-content !important;
  gap: 8px !important;
  background-clip: padding-box !important;
  text-decoration: none !important;
  border-radius: 8px !important;
  font-weight: 500 !important;
  line-height: 150% !important;
  background-color: #f0ffec !important;
  color: #023a00 !important;
  border: 2px solid transparent !important;
}
.featured-content.color--forest  .button.outline {
  background-color: transparent !important;
  border-color: #f0ffec !important;
  color: #f0ffec !important;
}
.featured-content.color--forest  .button:hover {
  border-color: transparent !important;
  color: #023a00 !important;
  background-color: #beffab !important;
}
.featured-content.color--forest  .button:focus-visible {
  color: #023a00 !important;
  background-color: #beffab !important;
  border-color: transparent !important;
  outline: 2px solid #beffab !important;
}
.featured-content.color--forest  .button:active {
  outline: none !important;
  border-color: transparent !important;
  color: #ffffff !important;
  background-color: #a8ff8f !important;
}
.featured-content.color--forest  .button.ghost {
  color: #f0ffec !important;
  background-color: transparent !important;
  border-color: transparent !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.featured-content.color--forest  .button.ghost .button__label {
  position: relative !important;
}
.featured-content.color--forest  .button.ghost .button__label:after {
  position: absolute !important;
  content: '' !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 0 !important;
  transition: width 400ms !important;
  height: 1px !important;
  background-color: #f0ffec !important;
}
.featured-content.color--forest  .button.ghost:hover {
  border-color: transparent !important;
  color: #f0ffec !important;
  background-color: transparent !important;
}
.featured-content.color--forest  .button.ghost:hover .button__label::after {
  width: 100% !important;
}
.featured-content.color--forest  .button.ghost:focus-visible {
  outline: none !important;
  background-color: transparent !important;
  border-color: #beffab !important;
  color: #f0ffec !important;
}
.featured-content.color--forest  .button.ghost:active {
  border-color: transparent !important;
  background-color: #f0ffec !important;
  color: #023a00 !important;
}
.featured-content.color--forest  .button__icon {
  font-size: 24px !important;
  margin-bottom: 0 !important;
}
.featured-content.color--canary  .button {
  text-align: center !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: fit-content !important;
  gap: 8px !important;
  background-clip: padding-box !important;
  text-decoration: none !important;
  border-radius: 8px !important;
  font-weight: 500 !important;
  line-height: 150% !important;
  background-color: #fffce6 !important;
  color: #564a00 !important;
  border: 2px solid transparent !important;
}
.featured-content.color--canary  .button.outline {
  background-color: transparent !important;
  border-color: #fffce6 !important;
  color: #fffce6 !important;
}
.featured-content.color--canary  .button:hover {
  border-color: transparent !important;
  color: #564a00 !important;
  background-color: #fdf092 !important;
}
.featured-content.color--canary  .button:focus-visible {
  color: #564a00 !important;
  background-color: #fdf092 !important;
  border-color: transparent !important;
  outline: 2px solid #fdf092 !important;
}
.featured-content.color--canary  .button:active {
  outline: none !important;
  border-color: transparent !important;
  color: #ffffff !important;
  background-color: #fdeb6d !important;
}
.featured-content.color--canary  .button.ghost {
  color: #fffce6 !important;
  background-color: transparent !important;
  border-color: transparent !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.featured-content.color--canary  .button.ghost .button__label {
  position: relative !important;
}
.featured-content.color--canary  .button.ghost .button__label:after {
  position: absolute !important;
  content: '' !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 0 !important;
  transition: width 400ms !important;
  height: 1px !important;
  background-color: #fffce6 !important;
}
.featured-content.color--canary  .button.ghost:hover {
  border-color: transparent !important;
  color: #fffce6 !important;
  background-color: transparent !important;
}
.featured-content.color--canary  .button.ghost:hover .button__label::after {
  width: 100% !important;
}
.featured-content.color--canary  .button.ghost:focus-visible {
  outline: none !important;
  background-color: transparent !important;
  border-color: #fdf092 !important;
  color: #fffce6 !important;
}
.featured-content.color--canary  .button.ghost:active {
  border-color: transparent !important;
  background-color: #fffce6 !important;
  color: #564a00 !important;
}
.featured-content.color--canary  .button__icon {
  font-size: 24px !important;
  margin-bottom: 0 !important;
}
.featured-content.color--fuchsia  .button {
  text-align: center !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: fit-content !important;
  gap: 8px !important;
  background-clip: padding-box !important;
  text-decoration: none !important;
  border-radius: 8px !important;
  font-weight: 500 !important;
  line-height: 150% !important;
  background-color: #ffeef7 !important;
  color: #4f0230 !important;
  border: 2px solid transparent !important;
}
.featured-content.color--fuchsia  .button.outline {
  background-color: transparent !important;
  border-color: #ffeef7 !important;
  color: #ffeef7 !important;
}
.featured-content.color--fuchsia  .button:hover {
  border-color: transparent !important;
  color: #4f0230 !important;
  background-color: #ff9be3 !important;
}
.featured-content.color--fuchsia  .button:focus-visible {
  color: #4f0230 !important;
  background-color: #ff9be3 !important;
  border-color: transparent !important;
  outline: 2px solid #ff9be3 !important;
}
.featured-content.color--fuchsia  .button:active {
  outline: none !important;
  border-color: transparent !important;
  color: #ffffff !important;
  background-color: #ff79bd !important;
}
.featured-content.color--fuchsia  .button.ghost {
  color: #ffeef7 !important;
  background-color: transparent !important;
  border-color: transparent !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.featured-content.color--fuchsia  .button.ghost .button__label {
  position: relative !important;
}
.featured-content.color--fuchsia  .button.ghost .button__label:after {
  position: absolute !important;
  content: '' !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 0 !important;
  transition: width 400ms !important;
  height: 1px !important;
  background-color: #ffeef7 !important;
}
.featured-content.color--fuchsia  .button.ghost:hover {
  border-color: transparent !important;
  color: #ffeef7 !important;
  background-color: transparent !important;
}
.featured-content.color--fuchsia  .button.ghost:hover .button__label::after {
  width: 100% !important;
}
.featured-content.color--fuchsia  .button.ghost:focus-visible {
  outline: none !important;
  background-color: transparent !important;
  border-color: #ff9be3 !important;
  color: #ffeef7 !important;
}
.featured-content.color--fuchsia  .button.ghost:active {
  border-color: transparent !important;
  background-color: #ffeef7 !important;
  color: #4f0230 !important;
}
.featured-content.color--fuchsia  .button__icon {
  font-size: 24px !important;
  margin-bottom: 0 !important;
}
.featured-content.color--pumpkin  .button {
  text-align: center !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: fit-content !important;
  gap: 8px !important;
  background-clip: padding-box !important;
  text-decoration: none !important;
  border-radius: 8px !important;
  font-weight: 500 !important;
  line-height: 150% !important;
  background-color: #fff0e6 !important;
  color: #5b2500 !important;
  border: 2px solid transparent !important;
}
.featured-content.color--pumpkin  .button.outline {
  background-color: transparent !important;
  border-color: #fff0e6 !important;
  color: #fff0e6 !important;
}
.featured-content.color--pumpkin  .button:hover {
  border-color: transparent !important;
  color: #5b2500 !important;
  background-color: #ffa366 !important;
}
.featured-content.color--pumpkin  .button:focus-visible {
  color: #5b2500 !important;
  background-color: #ffa366 !important;
  border-color: transparent !important;
  outline: 2px solid #ffa366 !important;
}
.featured-content.color--pumpkin  .button:active {
  outline: none !important;
  border-color: transparent !important;
  color: #ffffff !important;
  background-color: #ff8838 !important;
}
.featured-content.color--pumpkin  .button.ghost {
  color: #fff0e6 !important;
  background-color: transparent !important;
  border-color: transparent !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.featured-content.color--pumpkin  .button.ghost .button__label {
  position: relative !important;
}
.featured-content.color--pumpkin  .button.ghost .button__label:after {
  position: absolute !important;
  content: '' !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 0 !important;
  transition: width 400ms !important;
  height: 1px !important;
  background-color: #fff0e6 !important;
}
.featured-content.color--pumpkin  .button.ghost:hover {
  border-color: transparent !important;
  color: #fff0e6 !important;
  background-color: transparent !important;
}
.featured-content.color--pumpkin  .button.ghost:hover .button__label::after {
  width: 100% !important;
}
.featured-content.color--pumpkin  .button.ghost:focus-visible {
  outline: none !important;
  background-color: transparent !important;
  border-color: #ffa366 !important;
  color: #fff0e6 !important;
}
.featured-content.color--pumpkin  .button.ghost:active {
  border-color: transparent !important;
  background-color: #fff0e6 !important;
  color: #5b2500 !important;
}
.featured-content.color--pumpkin  .button__icon {
  font-size: 24px !important;
  margin-bottom: 0 !important;
}
.featured-content.color--custom  .button {
  text-align: center !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: fit-content !important;
  gap: 8px !important;
  background-clip: padding-box !important;
  text-decoration: none !important;
  border-radius: 8px !important;
  font-weight: 500 !important;
  line-height: 150% !important;
  background-color: #000835 !important;
  color: #3a8bff !important;
  border: 2px solid transparent !important;
}
.featured-content.color--custom  .button.outline {
  background-color: transparent !important;
  border-color: #000835 !important;
  color: #000835 !important;
}
.featured-content.color--custom  .button:hover {
  border-color: transparent !important;
  color: #3a8bff !important;
  background-color: #000835 !important;
}
.featured-content.color--custom  .button:focus-visible {
  color: #3a8bff !important;
  background-color: #000835 !important;
  border-color: transparent !important;
  outline: 2px solid #000835 !important;
}
.featured-content.color--custom  .button:active {
  outline: none !important;
  border-color: transparent !important;
  color: #ffffff !important;
  background-color: #61a2ff !important;
}
.featured-content.color--custom  .button.ghost {
  color: #000835 !important;
  background-color: transparent !important;
  border-color: transparent !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.featured-content.color--custom  .button.ghost .button__label {
  position: relative !important;
}
.featured-content.color--custom  .button.ghost .button__label:after {
  position: absolute !important;
  content: '' !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 0 !important;
  transition: width 400ms !important;
  height: 1px !important;
  background-color: #000835 !important;
}
.featured-content.color--custom  .button.ghost:hover {
  border-color: transparent !important;
  color: #000835 !important;
  background-color: transparent !important;
}
.featured-content.color--custom  .button.ghost:hover .button__label::after {
  width: 100% !important;
}
.featured-content.color--custom  .button.ghost:focus-visible {
  outline: none !important;
  background-color: transparent !important;
  border-color: #000835 !important;
  color: #000835 !important;
}
.featured-content.color--custom  .button.ghost:active {
  border-color: transparent !important;
  background-color: #000835 !important;
  color: #3a8bff !important;
}
.featured-content.color--custom  .button__icon {
  font-size: 24px !important;
  margin-bottom: 0 !important;
}
.featured-content.align-left .cmp-fc__content {
  grid-column-start: 2;
}
@media (max-width: 767px) {
  .featured-content.align-left .cmp-fc__content {
    grid-column: 1 / span 12;
  }
}
.featured-content .cmp-fc {
  padding-top: 72px;
  padding-bottom: 72px;
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
}
.featured-content .cmp-fc__label {
  font-weight: 500;
}
.featured-content .cmp-fc__background {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.featured-content .cmp-fc__background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.featured-content .cmp-fc__content {
  grid-column: 7 / span 5;
  position: relative;
  z-index: 2;
  padding: 24px;
  background-color: #ffffff;
}
.featured-content .cmp-fc__title {
  margin: 16px 0 !important;
}
.featured-content .cmp-fc__buttons {
  margin-top: 24px;
  display: flex;
  gap: 24px;
}
@media (max-width: 991px) {
  .featured-content .cmp-fc__buttons {
    flex-direction: column;
    gap: 16px;
  }
  .featured-content .cmp-fc__buttons .button {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .featured-content .cmp-fc__content {
    grid-column: 1 / span 12;
    margin: 0 16px;
  }
}

/**
    Lead Space v2
**/

.cmp-base {
  padding: 72px 0;
}
@media (max-width: 991px) {
  .cmp-base {
    padding: 64px 0;
  }
}
@media (max-width: 767px) {
  .cmp-base {
    padding: 48px 0;
  }
}
.cmp-base.padding-top--small {
  padding-top: 40px;
}
@media (max-width: 991px) {
  .cmp-base.padding-top--small {
    padding-top: 32px;
  }
}
@media (max-width: 767px) {
  .cmp-base.padding-top--small {
    padding-top: 24px;
  }
}
.cmp-base.padding-bottom--small {
  padding-bottom: 40px;
}
@media (max-width: 991px) {
  .cmp-base.padding-bottom--small {
    padding-bottom: 32px;
  }
}
@media (max-width: 767px) {
  .cmp-base.padding-bottom--small {
    padding-bottom: 24px;
  }
}
.cmp-base.padding-top--none {
  padding-top: 0;
}
@media (max-width: 991px) {
  .cmp-base.padding-top--none {
    padding-top: 0;
  }
}
@media (max-width: 767px) {
  .cmp-base.padding-top--none {
    padding-top: 0;
  }
}
.cmp-base.padding-bottom--none {
  padding-bottom: 0;
}
@media (max-width: 991px) {
  .cmp-base.padding-bottom--none {
    padding-bottom: 0;
  }
}
@media (max-width: 767px) {
  .cmp-base.padding-bottom--none {
    padding-bottom: 0;
  }
}
.contentblocknumbers {
  padding: 72px 0;
}
.contentblocknumbers.image--right .cmp-cbn__image {
  grid-column-start: unset;
  order: 2;
  margin-left: 24px;
  margin-right: 0px;
}
.contentblocknumbers.image--right .cmp-cbn__content {
  grid-column-start: 2;
}
@media (max-width: 991px) {
  .contentblocknumbers.image--right .cmp-cbn__image {
    margin-left: 0;
  }
  .contentblocknumbers.image--right .cmp-cbn__content {
    grid-column-start: unset;
  }
}
.contentblocknumbers.numbers--flat .cmp-cbn__number:nth-child(odd) {
  background-color: transparent;
}
.contentblocknumbers.numbers--flat .cmp-cbn__number:nth-child(even) {
  border: none;
}
.contentblocknumbers.paragraph--big .cmp-cbn__description p {
  font-size: 18px !important;
}
.contentblocknumbers.padding-top--small {
  padding-top: 40px;
}
@media (max-width: 991px) {
  .contentblocknumbers.padding-top--small {
    padding-top: 32px;
  }
}
@media (max-width: 767px) {
  .contentblocknumbers.padding-top--small {
    padding-top: 24px;
  }
}
.contentblocknumbers.padding-bottom--small {
  padding-bottom: 40px;
}
@media (max-width: 991px) {
  .contentblocknumbers.padding-bottom--small {
    padding-bottom: 32px;
  }
}
@media (max-width: 767px) {
  .contentblocknumbers.padding-bottom--small {
    padding-bottom: 24px;
  }
}
.contentblocknumbers.padding-top--none {
  padding-top: 0;
}
@media (max-width: 991px) {
  .contentblocknumbers.padding-top--none {
    padding-top: 0;
  }
}
@media (max-width: 767px) {
  .contentblocknumbers.padding-top--none {
    padding-top: 0;
  }
}
.contentblocknumbers.padding-bottom--none {
  padding-bottom: 0;
}
@media (max-width: 991px) {
  .contentblocknumbers.padding-bottom--none {
    padding-bottom: 0;
  }
}
@media (max-width: 767px) {
  .contentblocknumbers.padding-bottom--none {
    padding-bottom: 0;
  }
}
.contentblocknumbers.color--sky {
  background-color: #c5d5f9 !important;
}
.contentblocknumbers.color--sky.numbers--flat .cmp-cbn__number:nth-child(odd) {
  background-color: transparent !important;
}
.contentblocknumbers.color--sky.numbers--flat .cmp-cbn__number:nth-child(even) {
  border: none !important;
}
.contentblocknumbers.color--sky .cmp-cbn .label,
.contentblocknumbers.color--sky .cmp-cbn__title,
.contentblocknumbers.color--sky .cmp-cbn__description {
  color: #000835 !important;
}
.contentblocknumbers.color--sky .cmp-cbn__number {
  color: #000835 !important;
}
.contentblocknumbers.color--sky .cmp-cbn__number:nth-child(odd) {
  background-color: #ebf3ff !important;
}
.contentblocknumbers.color--sky .cmp-cbn__number:nth-child(even) {
  border: 2px solid #000835 !important;
}
.contentblocknumbers.color--violet {
  background-color: #e4c7ff !important;
}
.contentblocknumbers.color--violet.numbers--flat .cmp-cbn__number:nth-child(odd) {
  background-color: transparent !important;
}
.contentblocknumbers.color--violet.numbers--flat .cmp-cbn__number:nth-child(even) {
  border: none !important;
}
.contentblocknumbers.color--violet .cmp-cbn .label,
.contentblocknumbers.color--violet .cmp-cbn__title,
.contentblocknumbers.color--violet .cmp-cbn__description {
  color: #26005a !important;
}
.contentblocknumbers.color--violet .cmp-cbn__number {
  color: #26005a !important;
}
.contentblocknumbers.color--violet .cmp-cbn__number:nth-child(odd) {
  background-color: #f8eeff !important;
}
.contentblocknumbers.color--violet .cmp-cbn__number:nth-child(even) {
  border: 2px solid #26005a !important;
}
.contentblocknumbers.color--forest {
  background-color: #c8ffc0 !important;
}
.contentblocknumbers.color--forest.numbers--flat .cmp-cbn__number:nth-child(odd) {
  background-color: transparent !important;
}
.contentblocknumbers.color--forest.numbers--flat .cmp-cbn__number:nth-child(even) {
  border: none !important;
}
.contentblocknumbers.color--forest .cmp-cbn .label,
.contentblocknumbers.color--forest .cmp-cbn__title,
.contentblocknumbers.color--forest .cmp-cbn__description {
  color: #023a00 !important;
}
.contentblocknumbers.color--forest .cmp-cbn__number {
  color: #023a00 !important;
}
.contentblocknumbers.color--forest .cmp-cbn__number:nth-child(odd) {
  background-color: #f0ffec !important;
}
.contentblocknumbers.color--forest .cmp-cbn__number:nth-child(even) {
  border: 2px solid #023a00 !important;
}
@media (max-width: 991px) {
  .contentblocknumbers {
    padding: 64px 0;
  }
}
@media (max-width: 767px) {
  .contentblocknumbers {
    padding: 48px 0;
  }
}
.contentblocknumbers .cmp-cbn {
  display: grid;
  justify-content: center;
  gap: 30px;
  grid-template-columns: repeat(12, 1fr);
}
.contentblocknumbers .cmp-cbn__image {
  grid-column-start: 2;
  grid-column-end: span 5;
  margin-right: 24px;
}
.contentblocknumbers .cmp-cbn__image img {
  width: 100%;
  min-height: 100%;
  object-fit: cover;
}
.contentblocknumbers .cmp-cbn__content {
  grid-column-end: span 5;
}
.contentblocknumbers .cmp-cbn__description {
  margin-top: 16px;
}
.contentblocknumbers .cmp-cbn__description p {
  font-size: 24px !important;
}
.contentblocknumbers .cmp-cbn__numbers {
  display: grid;
  max-width: 100%;
  grid-template-columns: repeat(3, minmax(auto, 33%));
  grid-auto-rows: 1fr;
  gap: 16px;
  margin-top: 24px;
}
.contentblocknumbers .cmp-cbn__number {
  padding: 8px;
  color: #0c66e1;
}
.contentblocknumbers .cmp-cbn__number-figure {
  font-size: 40px;
}
.contentblocknumbers .cmp-cbn__number-description {
  font-size: 14px;
}
.contentblocknumbers .cmp-cbn__number:nth-child(odd) {
  background-color: #ebf3ff;
}
.contentblocknumbers .cmp-cbn__number:nth-child(even) {
  border: 2px solid #0c66e1;
}
@media (max-width: 991px) {
  .contentblocknumbers .cmp-cbn__image {
    grid-column-start: unset;
    grid-column-end: span 5;
    margin-right: 0;
  }
  .contentblocknumbers .cmp-cbn__content {
    grid-column-end: span 7;
  }
}
@media (max-width: 767px) {
  .contentblocknumbers .cmp-cbn {
    padding: 0 15px;
    gap: 0;
  }
  .contentblocknumbers .cmp-cbn__image {
    order: 2;
    grid-column: 1 / span 12;
  }
  .contentblocknumbers .cmp-cbn__image img {
    height: 200px;
  }
  .contentblocknumbers .cmp-cbn__content {
    grid-column: 1 / span 12;
  }
  .contentblocknumbers .cmp-cbn__numbers {
    grid-template-columns: repeat(2, minmax(auto, 50%));
    margin-bottom: 24px;
  }
}

/**
    Content block Video
**/
.content-block-video,
.content-block-video.color--default {
  background-color: #ffffff !important;
}
.content-block-video .cmp-content-block-video h1,
.content-block-video.color--default .cmp-content-block-video h1,
.content-block-video .cmp-content-block-video h2,
.content-block-video.color--default .cmp-content-block-video h2,
.content-block-video .cmp-content-block-video h3,
.content-block-video.color--default .cmp-content-block-video h3,
.content-block-video .cmp-content-block-video h4,
.content-block-video.color--default .cmp-content-block-video h4,
.content-block-video .cmp-content-block-video h5,
.content-block-video.color--default .cmp-content-block-video h5,
.content-block-video .cmp-content-block-video .cbvLabel,
.content-block-video.color--default .cmp-content-block-video .cbvLabel,
.content-block-video .cmp-content-block-video .mdc-button.mdc-button-link,
.content-block-video.color--default .cmp-content-block-video .mdc-button.mdc-button-link,
.content-block-video .cmp-content-block-video .slick-arrow::before,
.content-block-video.color--default .cmp-content-block-video .slick-arrow::before,
.content-block-video .cmp-content-block-video .pagingInfo,
.content-block-video.color--default .cmp-content-block-video .pagingInfo {
  color: #1a1a1a !important;
}
.content-block-video .cmp-content-block-video p,
.content-block-video.color--default .cmp-content-block-video p {
  color: #1a1a1a !important;
}
.content-block-video .cmp-content-block-video .mdc-button.mdc-button-link.mdc-button-primary:after,
.content-block-video.color--default .cmp-content-block-video .mdc-button.mdc-button-link.mdc-button-primary:after {
  background-color: inherit;
}
.content-block-video .cmp-content-block-video .cbvVeil2,
.content-block-video.color--default .cmp-content-block-video .cbvVeil2 {
  background-image: url('../../../etc.clientlibs/amadeuswebevo/clientlibs/clientlib-amadeus/resources/images/webevo/light-sky.png');
}
.content-block-video .cmp-content-block-video .cbvVeil3,
.content-block-video.color--default .cmp-content-block-video .cbvVeil3 {
  background-image: url('../../../etc.clientlibs/amadeuswebevo/clientlibs/clientlib-amadeus/resources/images/webevo/vivid-sky.png');
}
.content-block-video .cmp-content-block-video.only-two .cbvVeil2,
.content-block-video.color--default .cmp-content-block-video.only-two .cbvVeil2 {
  background-image: url('../../../etc.clientlibs/amadeuswebevo/clientlibs/clientlib-amadeus/resources/images/webevo/vivid-sky.png');
}
.content-block-video.color--sky {
  background-color: #000835 !important;
}
.content-block-video.color--sky .cmp-content-block-video h1,
.content-block-video.color--sky .cmp-content-block-video h2,
.content-block-video.color--sky .cmp-content-block-video h3,
.content-block-video.color--sky .cmp-content-block-video h4,
.content-block-video.color--sky .cmp-content-block-video h5,
.content-block-video.color--sky .cmp-content-block-video .cbvLabel,
.content-block-video.color--sky .cmp-content-block-video .mdc-button.mdc-button-link,
.content-block-video.color--sky .cmp-content-block-video .slick-arrow::before,
.content-block-video.color--sky .cmp-content-block-video .pagingInfo {
  color: #c5d5f9 !important;
}
.content-block-video.color--sky .cmp-content-block-video p {
  color: #ffffff !important;
}
.content-block-video.color--sky .cmp-content-block-video span.iframeCaller:before {
  color: #c5d5f9 !important;
}
.content-block-video.color--sky .cmp-content-block-video .mdc-button.mdc-button-link.mdc-button-primary:after {
  background-color: #c5d5f9 !important;
}
.content-block-video.color--sky .cmp-content-block-video .cbvVeil2 {
  background-image: url('../../../etc.clientlibs/amadeuswebevo/clientlibs/clientlib-amadeus/resources/images/webevo/light-sky.png');
}
.content-block-video.color--sky .cmp-content-block-video .cbvVeil3 {
  background-image: url('../../../etc.clientlibs/amadeuswebevo/clientlibs/clientlib-amadeus/resources/images/webevo/vivid-sky.png');
}
.content-block-video.color--sky .cmp-content-block-video.only-two .cbvVeil2 {
  background-image: url('../../../etc.clientlibs/amadeuswebevo/clientlibs/clientlib-amadeus/resources/images/webevo/vivid-sky.png');
}
.content-block-video.color--violet {
  background-color: #26005a !important;
}
.content-block-video.color--violet .cmp-content-block-video h1,
.content-block-video.color--violet .cmp-content-block-video h2,
.content-block-video.color--violet .cmp-content-block-video h3,
.content-block-video.color--violet .cmp-content-block-video h4,
.content-block-video.color--violet .cmp-content-block-video h5,
.content-block-video.color--violet .cmp-content-block-video .cbvLabel,
.content-block-video.color--violet .cmp-content-block-video .mdc-button.mdc-button-link,
.content-block-video.color--violet .cmp-content-block-video .slick-arrow::before,
.content-block-video.color--violet .cmp-content-block-video .pagingInfo {
  color: #e4c7ff !important;
}
.content-block-video.color--violet .cmp-content-block-video p {
  color: #ffffff !important;
}
.content-block-video.color--violet .cmp-content-block-video span.iframeCaller:before {
  color: #e4c7ff !important;
}
.content-block-video.color--violet .cmp-content-block-video .mdc-button.mdc-button-link.mdc-button-primary:after {
  background-color: #e4c7ff !important;
}
.content-block-video.color--violet .cmp-content-block-video .cbvVeil2 {
  background-image: url('../../../etc.clientlibs/amadeuswebevo/clientlibs/clientlib-amadeus/resources/images/webevo/light-violet.png');
}
.content-block-video.color--violet .cmp-content-block-video .cbvVeil3 {
  background-image: url('../../../etc.clientlibs/amadeuswebevo/clientlibs/clientlib-amadeus/resources/images/webevo/vivid-violet.png');
}
.content-block-video.color--violet .cmp-content-block-video.only-two .cbvVeil2 {
  background-image: url('../../../etc.clientlibs/amadeuswebevo/clientlibs/clientlib-amadeus/resources/images/webevo/vivid-violet.png');
}
.content-block-video.color--forest {
  background-color: #023a00 !important;
}
.content-block-video.color--forest .cmp-content-block-video h1,
.content-block-video.color--forest .cmp-content-block-video h2,
.content-block-video.color--forest .cmp-content-block-video h3,
.content-block-video.color--forest .cmp-content-block-video h4,
.content-block-video.color--forest .cmp-content-block-video h5,
.content-block-video.color--forest .cmp-content-block-video .cbvLabel,
.content-block-video.color--forest .cmp-content-block-video .mdc-button.mdc-button-link,
.content-block-video.color--forest .cmp-content-block-video .slick-arrow::before,
.content-block-video.color--forest .cmp-content-block-video .pagingInfo {
  color: #c8ffc0 !important;
}
.content-block-video.color--forest .cmp-content-block-video p {
  color: #ffffff !important;
}
.content-block-video.color--forest .cmp-content-block-video span.iframeCaller:before {
  color: #c8ffc0 !important;
}
.content-block-video.color--forest .cmp-content-block-video .mdc-button.mdc-button-link.mdc-button-primary:after {
  background-color: #c8ffc0 !important;
}
.content-block-video.color--forest .cmp-content-block-video .cbvVeil2 {
  background-image: url('../../../etc.clientlibs/amadeuswebevo/clientlibs/clientlib-amadeus/resources/images/webevo/light-forest.png');
}
.content-block-video.color--forest .cmp-content-block-video .cbvVeil3 {
  background-image: url('../../../etc.clientlibs/amadeuswebevo/clientlibs/clientlib-amadeus/resources/images/webevo/vivid-forest.png');
}
.content-block-video.color--forest .cmp-content-block-video.only-two .cbvVeil2 {
  background-image: url('../../../etc.clientlibs/amadeuswebevo/clientlibs/clientlib-amadeus/resources/images/webevo/vivid-forest.png');
}
.content-block-video .cmp-content-block-video .flexContainer,
.content-block-video.default-layout .cmp-content-block-video .flexContainer {
  flex-direction: column;
}
.content-block-video .cmp-content-block-video .flexContainer .mainText,
.content-block-video.default-layout .cmp-content-block-video .flexContainer .mainText {
  display: flex;
  flex-direction: column;
}
.content-block-video .cmp-content-block-video .flexContainer .mainText .cbvDescription,
.content-block-video.default-layout .cmp-content-block-video .flexContainer .mainText .cbvDescription {
  flex: 1;
}
.content-block-video .cmp-content-block-video .flexContainer .cbvIndicators,
.content-block-video.default-layout .cmp-content-block-video .flexContainer .cbvIndicators {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .content-block-video .cmp-content-block-video .flexContainer,
  .content-block-video.default-layout .cmp-content-block-video .flexContainer {
    flex-direction: row;
  }
}
.content-block-video.reverse-layout .cmp-content-block-video .flexContainer .mainText {
  display: flex;
  flex-direction: column;
}
.content-block-video.reverse-layout .cmp-content-block-video .flexContainer .mainText .cbvDescription {
  flex: 1;
}
.content-block-video.reverse-layout .cmp-content-block-video .flexContainer .cbvIndicators {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .content-block-video.reverse-layout .cmp-content-block-video .flexContainer {
    flex-direction: row-reverse;
  }
}
.content-block-video .cmp-content-block-video {
  margin-bottom: 48px;
}
.content-block-video .cmp-content-block-video .cbvVeil {
  position: relative;
  background-color: transparent !important;
}
.content-block-video .cmp-content-block-video .videoSliderContainer .mediablock,
.content-block-video .cmp-content-block-video .content-block-video .flexContainer .videoSliderContainer .mediablock:nth-child(2).active {
  bottom: 0 !important;
  top: 0 !important;
  left: 0 !important;
}
.content-block-video .cmp-content-block-video .flexContainer .videoSliderContainer .mediablock .cbv-video-img {
  border-radius: 0 !important;
}
.content-block-video .cmp-content-block-video .flexContainer .videoSliderContainer .mediablock .cbvVideoImage {
  border-radius: 0 !important;
  -webkit-box-shadow: unset !important;
  box-shadow: unset !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  height: 100% !important;
  width: 100% !important;
  background-position: 50% 50% !important;
}
.content-block-video .cmp-content-block-video .flexContainer .videoSliderContainer {
  position: relative;
}
.content-block-video .cmp-content-block-video .flexContainer .videoSliderContainer .cbvVeil1,
.content-block-video .cmp-content-block-video .flexContainer .videoSliderContainer .cbvVeil2,
.content-block-video .cmp-content-block-video .flexContainer .videoSliderContainer .cbvVeil3 {
  position: absolute;
  height: 100%;
}
.content-block-video .cmp-content-block-video .flexContainer .videoSliderContainer .cbvVeil2 {
  display: none;
  z-index: 2;
  left: 0;
  right: 0;
  top: 24px;
  margin: 0 auto;
  width: calc(100% - 48px) !important;
}
@media (min-width: 992px) {
  .content-block-video .cmp-content-block-video .flexContainer .videoSliderContainer .cbvVeil2 {
    right: unset;
    left: 24px;
    top: 24px;
    width: calc(100% - 36px) !important;
  }
}
.content-block-video .cmp-content-block-video .flexContainer .videoSliderContainer .cbvVeil3 {
  display: none;
  z-index: 1;
  left: 0;
  right: 0;
  top: 48px;
  margin: 0 auto;
  width: calc(100% - 96px) !important;
}
@media (min-width: 992px) {
  .content-block-video .cmp-content-block-video .flexContainer .videoSliderContainer .cbvVeil3 {
    right: unset;
    left: 48px;
    top: 48px;
    width: calc(100% - 36px) !important;
  }
}
.content-block-video .cmp-content-block-video .flexContainer .videoSliderContainer .mediablock .cbvVideoImage {
  z-index: 1;
}
.content-block-video .cmp-content-block-video .flexContainer .videoSliderContainer .mediablock .cbvVideoImage span.iframeCaller:before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  right: 0;
  bottom: 0;
  margin: auto;
}
.content-block-video .cmp-content-block-video .flexContainer .videoSliderContainer .mediablock .cbvVideoImage span.bgButtonPlay {
  background: var(--mdc-theme-color-gray-700);
  width: 52px;
  height: 52px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  right: 0;
  bottom: 0;
  margin: auto;
  border-radius: 50%;
  z-index: 1;
}
.content-block-video .cmp-content-block-video .flexContainer .videoSliderContainer .mediablock.active {
  position: relative !important;
}
.content-block-video .cmp-content-block-video .flexContainer .videoSliderContainer .mediablock {
  border-radius: 0 !important;
  overflow: hidden !important;
  height: 100%;
  width: 100%;
}
@media (min-width: 992px) {
  .content-block-video .cmp-content-block-video .flexContainer .videoSliderContainer .mediablock {
    width: calc(100% - 36px) !important;
  }
}
.content-block-video .cmp-content-block-video .playerCont {
  border-radius: 0 !important;
  position: relative;
  z-index: 2;
}
.content-block-video .cmp-content-block-video .flexContainer .contentblockcontainer .cbvIndicators .slick-arrow::before,
.content-block-video .cmp-content-block-video .flexContainer .contentblockcontainer .cbvIndicators .slick-arrow.slick-disabled:before {
  background-color: transparent;
}
.content-block-video .cmp-content-block-video .d-none {
  display: block !important;
}
.content-block-video .cmp-content-block-video .cbvVeil.d-none {
  display: none !important;
}
.content-block-video .cmp-content-block-video div.playerCont {
  height: 25%;
}

.cmp-base {
  padding: 72px 0;
}
@media (max-width: 991px) {
  .cmp-base {
    padding: 64px 0;
  }
}
@media (max-width: 767px) {
  .cmp-base {
    padding: 48px 0;
  }
}
.cmp-base.padding-top--small {
  padding-top: 40px;
}
@media (max-width: 991px) {
  .cmp-base.padding-top--small {
    padding-top: 32px;
  }
}
@media (max-width: 767px) {
  .cmp-base.padding-top--small {
    padding-top: 24px;
  }
}
.cmp-base.padding-bottom--small {
  padding-bottom: 40px;
}
@media (max-width: 991px) {
  .cmp-base.padding-bottom--small {
    padding-bottom: 32px;
  }
}
@media (max-width: 767px) {
  .cmp-base.padding-bottom--small {
    padding-bottom: 24px;
  }
}
.cmp-base.padding-top--none {
  padding-top: 0;
}
@media (max-width: 991px) {
  .cmp-base.padding-top--none {
    padding-top: 0;
  }
}
@media (max-width: 767px) {
  .cmp-base.padding-top--none {
    padding-top: 0;
  }
}
.cmp-base.padding-bottom--none {
  padding-bottom: 0;
}
@media (max-width: 991px) {
  .cmp-base.padding-bottom--none {
    padding-bottom: 0;
  }
}
@media (max-width: 767px) {
  .cmp-base.padding-bottom--none {
    padding-bottom: 0;
  }
}
.content-block-pictogram {
  padding: 72px 0;
}
.content-block-pictogram.color--sky {
  background-color: #000835 !important;
}
.content-block-pictogram.color--sky .mainText .label {
  color: #ffffff !important;
}
.content-block-pictogram.color--sky .mainText h2.h3 {
  color: #c5d5f9 !important;
}
.content-block-pictogram.color--sky .cbpDescription {
  color: #ffffff !important;
}
.content-block-pictogram.color--sky .cbpIcon span {
  color: #0c66e1 !important;
}
.content-block-pictogram.color--sky .cbpFigure .h2 {
  color: #0c66e1 !important;
}
.content-block-pictogram.color--sky .cbpElementTitle,
.content-block-pictogram.color--sky .cbpElementDesc {
  color: #ffffff !important;
}
.content-block-pictogram.color--violet {
  background-color: #26005a !important;
}
.content-block-pictogram.color--violet .mainText .label {
  color: #ffffff !important;
}
.content-block-pictogram.color--violet .mainText h2.h3 {
  color: #e4c7ff !important;
}
.content-block-pictogram.color--violet .cbpDescription {
  color: #ffffff !important;
}
.content-block-pictogram.color--violet .cbpIcon span {
  color: #9240cc !important;
}
.content-block-pictogram.color--violet .cbpFigure .h2 {
  color: #9240cc !important;
}
.content-block-pictogram.color--violet .cbpElementTitle,
.content-block-pictogram.color--violet .cbpElementDesc {
  color: #ffffff !important;
}
.content-block-pictogram.color--forest {
  background-color: #023a00 !important;
}
.content-block-pictogram.color--forest .mainText .label {
  color: #ffffff !important;
}
.content-block-pictogram.color--forest .mainText h2.h3 {
  color: #c8ffc0 !important;
}
.content-block-pictogram.color--forest .cbpDescription {
  color: #ffffff !important;
}
.content-block-pictogram.color--forest .cbpIcon span {
  color: #6dc354 !important;
}
.content-block-pictogram.color--forest .cbpFigure .h2 {
  color: #6dc354 !important;
}
.content-block-pictogram.color--forest .cbpElementTitle,
.content-block-pictogram.color--forest .cbpElementDesc {
  color: #ffffff !important;
}
.content-block-pictogram.color--sky  .button {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  gap: 8px;
  background-clip: padding-box;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 500;
  line-height: 150%;
  background-color: #ebf3ff;
  color: #000835;
  border: 2px solid transparent;
}
.content-block-pictogram.color--sky  .button.outline {
  background-color: transparent;
  border-color: #ebf3ff;
  color: #ebf3ff;
}
.content-block-pictogram.color--sky  .button:hover {
  border-color: transparent;
  color: #000835;
  background-color: #9fc6ff;
}
.content-block-pictogram.color--sky  .button:focus-visible {
  color: #000835;
  background-color: #9fc6ff;
  border-color: transparent;
  outline: 2px solid #9fc6ff;
}
.content-block-pictogram.color--sky  .button:active {
  outline: none;
  border-color: transparent;
  color: #ffffff;
  background-color: #61a2ff;
}
.content-block-pictogram.color--sky  .button.ghost {
  color: #ebf3ff;
  background-color: transparent;
  border-color: transparent;
  padding-left: 0;
  padding-right: 0;
}
.content-block-pictogram.color--sky  .button.ghost .button__label {
  position: relative;
}
.content-block-pictogram.color--sky  .button.ghost .button__label:after {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  width: 0;
  transition: width 400ms;
  height: 1px;
  background-color: #ebf3ff;
}
.content-block-pictogram.color--sky  .button.ghost:hover {
  border-color: transparent;
  color: #ebf3ff;
  background-color: transparent;
}
.content-block-pictogram.color--sky  .button.ghost:hover .button__label::after {
  width: 100%;
}
.content-block-pictogram.color--sky  .button.ghost:focus-visible {
  outline: none;
  background-color: transparent;
  border-color: #9fc6ff;
  color: #ebf3ff;
}
.content-block-pictogram.color--sky  .button.ghost:active {
  border-color: transparent;
  background-color: #ebf3ff;
  color: #000835;
}
.content-block-pictogram.color--sky  .button__icon {
  font-size: 24px;
  margin-bottom: 0;
}
.content-block-pictogram.color--violet  .button {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  gap: 8px;
  background-clip: padding-box;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 500;
  line-height: 150%;
  background-color: #f8eeff;
  color: #26005a;
  border: 2px solid transparent;
}
.content-block-pictogram.color--violet  .button.outline {
  background-color: transparent;
  border-color: #f8eeff;
  color: #f8eeff;
}
.content-block-pictogram.color--violet  .button:hover {
  border-color: transparent;
  color: #26005a;
  background-color: #d396ff;
}
.content-block-pictogram.color--violet  .button:focus-visible {
  color: #26005a;
  background-color: #d396ff;
  border-color: transparent;
  outline: 2px solid #d396ff;
}
.content-block-pictogram.color--violet  .button:active {
  outline: none;
  border-color: transparent;
  color: #ffffff;
  background-color: #c573ff;
}
.content-block-pictogram.color--violet  .button.ghost {
  color: #f8eeff;
  background-color: transparent;
  border-color: transparent;
  padding-left: 0;
  padding-right: 0;
}
.content-block-pictogram.color--violet  .button.ghost .button__label {
  position: relative;
}
.content-block-pictogram.color--violet  .button.ghost .button__label:after {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  width: 0;
  transition: width 400ms;
  height: 1px;
  background-color: #f8eeff;
}
.content-block-pictogram.color--violet  .button.ghost:hover {
  border-color: transparent;
  color: #f8eeff;
  background-color: transparent;
}
.content-block-pictogram.color--violet  .button.ghost:hover .button__label::after {
  width: 100%;
}
.content-block-pictogram.color--violet  .button.ghost:focus-visible {
  outline: none;
  background-color: transparent;
  border-color: #d396ff;
  color: #f8eeff;
}
.content-block-pictogram.color--violet  .button.ghost:active {
  border-color: transparent;
  background-color: #f8eeff;
  color: #26005a;
}
.content-block-pictogram.color--violet  .button__icon {
  font-size: 24px;
  margin-bottom: 0;
}
.content-block-pictogram.color--crimson  .button {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  gap: 8px;
  background-clip: padding-box;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 500;
  line-height: 150%;
  background-color: #ffeeed;
  color: #560900;
  border: 2px solid transparent;
}
.content-block-pictogram.color--crimson  .button.outline {
  background-color: transparent;
  border-color: #ffeeed;
  color: #ffeeed;
}
.content-block-pictogram.color--crimson  .button:hover {
  border-color: transparent;
  color: #560900;
  background-color: #ff9794;
}
.content-block-pictogram.color--crimson  .button:focus-visible {
  color: #560900;
  background-color: #ff9794;
  border-color: transparent;
  outline: 2px solid #ff9794;
}
.content-block-pictogram.color--crimson  .button:active {
  outline: none;
  border-color: transparent;
  color: #ffffff;
  background-color: #ff7471;
}
.content-block-pictogram.color--crimson  .button.ghost {
  color: #ffeeed;
  background-color: transparent;
  border-color: transparent;
  padding-left: 0;
  padding-right: 0;
}
.content-block-pictogram.color--crimson  .button.ghost .button__label {
  position: relative;
}
.content-block-pictogram.color--crimson  .button.ghost .button__label:after {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  width: 0;
  transition: width 400ms;
  height: 1px;
  background-color: #ffeeed;
}
.content-block-pictogram.color--crimson  .button.ghost:hover {
  border-color: transparent;
  color: #ffeeed;
  background-color: transparent;
}
.content-block-pictogram.color--crimson  .button.ghost:hover .button__label::after {
  width: 100%;
}
.content-block-pictogram.color--crimson  .button.ghost:focus-visible {
  outline: none;
  background-color: transparent;
  border-color: #ff9794;
  color: #ffeeed;
}
.content-block-pictogram.color--crimson  .button.ghost:active {
  border-color: transparent;
  background-color: #ffeeed;
  color: #560900;
}
.content-block-pictogram.color--crimson  .button__icon {
  font-size: 24px;
  margin-bottom: 0;
}
.content-block-pictogram.color--forest  .button {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  gap: 8px;
  background-clip: padding-box;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 500;
  line-height: 150%;
  background-color: #f0ffec;
  color: #023a00;
  border: 2px solid transparent;
}
.content-block-pictogram.color--forest  .button.outline {
  background-color: transparent;
  border-color: #f0ffec;
  color: #f0ffec;
}
.content-block-pictogram.color--forest  .button:hover {
  border-color: transparent;
  color: #023a00;
  background-color: #beffab;
}
.content-block-pictogram.color--forest  .button:focus-visible {
  color: #023a00;
  background-color: #beffab;
  border-color: transparent;
  outline: 2px solid #beffab;
}
.content-block-pictogram.color--forest  .button:active {
  outline: none;
  border-color: transparent;
  color: #ffffff;
  background-color: #a8ff8f;
}
.content-block-pictogram.color--forest  .button.ghost {
  color: #f0ffec;
  background-color: transparent;
  border-color: transparent;
  padding-left: 0;
  padding-right: 0;
}
.content-block-pictogram.color--forest  .button.ghost .button__label {
  position: relative;
}
.content-block-pictogram.color--forest  .button.ghost .button__label:after {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  width: 0;
  transition: width 400ms;
  height: 1px;
  background-color: #f0ffec;
}
.content-block-pictogram.color--forest  .button.ghost:hover {
  border-color: transparent;
  color: #f0ffec;
  background-color: transparent;
}
.content-block-pictogram.color--forest  .button.ghost:hover .button__label::after {
  width: 100%;
}
.content-block-pictogram.color--forest  .button.ghost:focus-visible {
  outline: none;
  background-color: transparent;
  border-color: #beffab;
  color: #f0ffec;
}
.content-block-pictogram.color--forest  .button.ghost:active {
  border-color: transparent;
  background-color: #f0ffec;
  color: #023a00;
}
.content-block-pictogram.color--forest  .button__icon {
  font-size: 24px;
  margin-bottom: 0;
}
.content-block-pictogram.color--canary  .button {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  gap: 8px;
  background-clip: padding-box;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 500;
  line-height: 150%;
  background-color: #fffce6;
  color: #564a00;
  border: 2px solid transparent;
}
.content-block-pictogram.color--canary  .button.outline {
  background-color: transparent;
  border-color: #fffce6;
  color: #fffce6;
}
.content-block-pictogram.color--canary  .button:hover {
  border-color: transparent;
  color: #564a00;
  background-color: #fdf092;
}
.content-block-pictogram.color--canary  .button:focus-visible {
  color: #564a00;
  background-color: #fdf092;
  border-color: transparent;
  outline: 2px solid #fdf092;
}
.content-block-pictogram.color--canary  .button:active {
  outline: none;
  border-color: transparent;
  color: #ffffff;
  background-color: #fdeb6d;
}
.content-block-pictogram.color--canary  .button.ghost {
  color: #fffce6;
  background-color: transparent;
  border-color: transparent;
  padding-left: 0;
  padding-right: 0;
}
.content-block-pictogram.color--canary  .button.ghost .button__label {
  position: relative;
}
.content-block-pictogram.color--canary  .button.ghost .button__label:after {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  width: 0;
  transition: width 400ms;
  height: 1px;
  background-color: #fffce6;
}
.content-block-pictogram.color--canary  .button.ghost:hover {
  border-color: transparent;
  color: #fffce6;
  background-color: transparent;
}
.content-block-pictogram.color--canary  .button.ghost:hover .button__label::after {
  width: 100%;
}
.content-block-pictogram.color--canary  .button.ghost:focus-visible {
  outline: none;
  background-color: transparent;
  border-color: #fdf092;
  color: #fffce6;
}
.content-block-pictogram.color--canary  .button.ghost:active {
  border-color: transparent;
  background-color: #fffce6;
  color: #564a00;
}
.content-block-pictogram.color--canary  .button__icon {
  font-size: 24px;
  margin-bottom: 0;
}
.content-block-pictogram.color--fuchsia  .button {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  gap: 8px;
  background-clip: padding-box;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 500;
  line-height: 150%;
  background-color: #ffeef7;
  color: #4f0230;
  border: 2px solid transparent;
}
.content-block-pictogram.color--fuchsia  .button.outline {
  background-color: transparent;
  border-color: #ffeef7;
  color: #ffeef7;
}
.content-block-pictogram.color--fuchsia  .button:hover {
  border-color: transparent;
  color: #4f0230;
  background-color: #ff9be3;
}
.content-block-pictogram.color--fuchsia  .button:focus-visible {
  color: #4f0230;
  background-color: #ff9be3;
  border-color: transparent;
  outline: 2px solid #ff9be3;
}
.content-block-pictogram.color--fuchsia  .button:active {
  outline: none;
  border-color: transparent;
  color: #ffffff;
  background-color: #ff79bd;
}
.content-block-pictogram.color--fuchsia  .button.ghost {
  color: #ffeef7;
  background-color: transparent;
  border-color: transparent;
  padding-left: 0;
  padding-right: 0;
}
.content-block-pictogram.color--fuchsia  .button.ghost .button__label {
  position: relative;
}
.content-block-pictogram.color--fuchsia  .button.ghost .button__label:after {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  width: 0;
  transition: width 400ms;
  height: 1px;
  background-color: #ffeef7;
}
.content-block-pictogram.color--fuchsia  .button.ghost:hover {
  border-color: transparent;
  color: #ffeef7;
  background-color: transparent;
}
.content-block-pictogram.color--fuchsia  .button.ghost:hover .button__label::after {
  width: 100%;
}
.content-block-pictogram.color--fuchsia  .button.ghost:focus-visible {
  outline: none;
  background-color: transparent;
  border-color: #ff9be3;
  color: #ffeef7;
}
.content-block-pictogram.color--fuchsia  .button.ghost:active {
  border-color: transparent;
  background-color: #ffeef7;
  color: #4f0230;
}
.content-block-pictogram.color--fuchsia  .button__icon {
  font-size: 24px;
  margin-bottom: 0;
}
.content-block-pictogram.color--pumpkin  .button {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  gap: 8px;
  background-clip: padding-box;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 500;
  line-height: 150%;
  background-color: #fff0e6;
  color: #5b2500;
  border: 2px solid transparent;
}
.content-block-pictogram.color--pumpkin  .button.outline {
  background-color: transparent;
  border-color: #fff0e6;
  color: #fff0e6;
}
.content-block-pictogram.color--pumpkin  .button:hover {
  border-color: transparent;
  color: #5b2500;
  background-color: #ffa366;
}
.content-block-pictogram.color--pumpkin  .button:focus-visible {
  color: #5b2500;
  background-color: #ffa366;
  border-color: transparent;
  outline: 2px solid #ffa366;
}
.content-block-pictogram.color--pumpkin  .button:active {
  outline: none;
  border-color: transparent;
  color: #ffffff;
  background-color: #ff8838;
}
.content-block-pictogram.color--pumpkin  .button.ghost {
  color: #fff0e6;
  background-color: transparent;
  border-color: transparent;
  padding-left: 0;
  padding-right: 0;
}
.content-block-pictogram.color--pumpkin  .button.ghost .button__label {
  position: relative;
}
.content-block-pictogram.color--pumpkin  .button.ghost .button__label:after {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  width: 0;
  transition: width 400ms;
  height: 1px;
  background-color: #fff0e6;
}
.content-block-pictogram.color--pumpkin  .button.ghost:hover {
  border-color: transparent;
  color: #fff0e6;
  background-color: transparent;
}
.content-block-pictogram.color--pumpkin  .button.ghost:hover .button__label::after {
  width: 100%;
}
.content-block-pictogram.color--pumpkin  .button.ghost:focus-visible {
  outline: none;
  background-color: transparent;
  border-color: #ffa366;
  color: #fff0e6;
}
.content-block-pictogram.color--pumpkin  .button.ghost:active {
  border-color: transparent;
  background-color: #fff0e6;
  color: #5b2500;
}
.content-block-pictogram.color--pumpkin  .button__icon {
  font-size: 24px;
  margin-bottom: 0;
}
.content-block-pictogram.color--custom  .button {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  gap: 8px;
  background-clip: padding-box;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 500;
  line-height: 150%;
  background-color: #000835;
  color: #3a8bff;
  border: 2px solid transparent;
}
.content-block-pictogram.color--custom  .button.outline {
  background-color: transparent;
  border-color: #000835;
  color: #000835;
}
.content-block-pictogram.color--custom  .button:hover {
  border-color: transparent;
  color: #3a8bff;
  background-color: #000835;
}
.content-block-pictogram.color--custom  .button:focus-visible {
  color: #3a8bff;
  background-color: #000835;
  border-color: transparent;
  outline: 2px solid #000835;
}
.content-block-pictogram.color--custom  .button:active {
  outline: none;
  border-color: transparent;
  color: #ffffff;
  background-color: #61a2ff;
}
.content-block-pictogram.color--custom  .button.ghost {
  color: #000835;
  background-color: transparent;
  border-color: transparent;
  padding-left: 0;
  padding-right: 0;
}
.content-block-pictogram.color--custom  .button.ghost .button__label {
  position: relative;
}
.content-block-pictogram.color--custom  .button.ghost .button__label:after {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  width: 0;
  transition: width 400ms;
  height: 1px;
  background-color: #000835;
}
.content-block-pictogram.color--custom  .button.ghost:hover {
  border-color: transparent;
  color: #000835;
  background-color: transparent;
}
.content-block-pictogram.color--custom  .button.ghost:hover .button__label::after {
  width: 100%;
}
.content-block-pictogram.color--custom  .button.ghost:focus-visible {
  outline: none;
  background-color: transparent;
  border-color: #000835;
  color: #000835;
}
.content-block-pictogram.color--custom  .button.ghost:active {
  border-color: transparent;
  background-color: #000835;
  color: #3a8bff;
}
.content-block-pictogram.color--custom  .button__icon {
  font-size: 24px;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .content-block-pictogram {
    padding: 64px 0;
  }
}
@media (max-width: 767px) {
  .content-block-pictogram {
    padding: 48px 0;
  }
}
.content-block-pictogram.padding-top--small {
  padding-top: 40px;
}
@media (max-width: 991px) {
  .content-block-pictogram.padding-top--small {
    padding-top: 32px;
  }
}
@media (max-width: 767px) {
  .content-block-pictogram.padding-top--small {
    padding-top: 24px;
  }
}
.content-block-pictogram.padding-bottom--small {
  padding-bottom: 40px;
}
@media (max-width: 991px) {
  .content-block-pictogram.padding-bottom--small {
    padding-bottom: 32px;
  }
}
@media (max-width: 767px) {
  .content-block-pictogram.padding-bottom--small {
    padding-bottom: 24px;
  }
}
.content-block-pictogram.padding-top--none {
  padding-top: 0;
}
@media (max-width: 991px) {
  .content-block-pictogram.padding-top--none {
    padding-top: 0;
  }
}
@media (max-width: 767px) {
  .content-block-pictogram.padding-top--none {
    padding-top: 0;
  }
}
.content-block-pictogram.padding-bottom--none {
  padding-bottom: 0;
}
@media (max-width: 991px) {
  .content-block-pictogram.padding-bottom--none {
    padding-bottom: 0;
  }
}
@media (max-width: 767px) {
  .content-block-pictogram.padding-bottom--none {
    padding-bottom: 0;
  }
}
body.amadeusTheme .content-block-pictogram .cbpDescription {
  text-align: center;
}
body.amadeusTheme .content-block-pictogram .cbpIcon {
  color: #0c66e1;
  font-size: 72px;
}
body.amadeusTheme .content-block-pictogram .cbpImage {
  border-radius: unset !important;
}
body.amadeusTheme .content-block-pictogram .cbpImage img {
  border-radius: unset !important;
  max-width: 100%;
}
body.amadeusTheme .content-block-pictogram .cbpBlock {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(calc(25% - 30px), 1fr));
  grid-auto-rows: 1fr;
}
body.amadeusTheme .content-block-pictogram .cbpElementTitle {
  color: #0c66e1;
  margin: 16px 0;
}
body.amadeusTheme .content-block-pictogram .cbpElementCont {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
body.amadeusTheme .content-block-pictogram .cbpElementCont .cbpFigure .h2 {
  color: #0c66e1;
}
body.amadeusTheme .content-block-pictogram .cbpElement .button {
  margin-top: auto !important;
}
body.amadeusTheme .content-block-pictogram .cbpButtons {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}
@media (max-width: 991px) {
  body.amadeusTheme .content-block-pictogram .cbpButtons {
    margin-top: 32px;
  }
  body.amadeusTheme .content-block-pictogram .cbpIcon {
    font-size: 64px;
  }
  body.amadeusTheme .content-block-pictogram .cbpBlock {
    grid-template-columns: repeat(auto-fit, minmax(calc(33% - 30px), 1fr));
  }
}
@media (max-width: 767px) {
  body.amadeusTheme .content-block-pictogram .cbpBlock {
    grid-template-columns: 1fr;
  }
  body.amadeusTheme .content-block-pictogram .cbpIcon {
    font-size: 56px;
  }
}

.cmp-base {
  padding: 72px 0;
}
@media (max-width: 991px) {
  .cmp-base {
    padding: 64px 0;
  }
}
@media (max-width: 767px) {
  .cmp-base {
    padding: 48px 0;
  }
}
.cmp-base.padding-top--small {
  padding-top: 40px;
}
@media (max-width: 991px) {
  .cmp-base.padding-top--small {
    padding-top: 32px;
  }
}
@media (max-width: 767px) {
  .cmp-base.padding-top--small {
    padding-top: 24px;
  }
}
.cmp-base.padding-bottom--small {
  padding-bottom: 40px;
}
@media (max-width: 991px) {
  .cmp-base.padding-bottom--small {
    padding-bottom: 32px;
  }
}
@media (max-width: 767px) {
  .cmp-base.padding-bottom--small {
    padding-bottom: 24px;
  }
}
.cmp-base.padding-top--none {
  padding-top: 0;
}
@media (max-width: 991px) {
  .cmp-base.padding-top--none {
    padding-top: 0;
  }
}
@media (max-width: 767px) {
  .cmp-base.padding-top--none {
    padding-top: 0;
  }
}
.cmp-base.padding-bottom--none {
  padding-bottom: 0;
}
@media (max-width: 991px) {
  .cmp-base.padding-bottom--none {
    padding-bottom: 0;
  }
}
@media (max-width: 767px) {
  .cmp-base.padding-bottom--none {
    padding-bottom: 0;
  }
}
.contact-subscription {
  padding: 32px 16px;
}
@media (min-width: 768px) {
  .contact-subscription {
    padding: 48px 16px;
  }
}
@media (min-width: 992px) {
  .contact-subscription {
    padding: 64px 16px;
  }
}
.contact-subscription.padding-top--small {
  padding-top: 40px !important;
}
@media (max-width: 991px) {
  .contact-subscription.padding-top--small {
    padding-top: 32px;
  }
}
@media (max-width: 767px) {
  .contact-subscription.padding-top--small {
    padding-top: 24px;
  }
}
.contact-subscription.padding-bottom--small {
  padding-bottom: 40px !important;
}
@media (max-width: 991px) {
  .contact-subscription.padding-bottom--small {
    padding-bottom: 32px;
  }
}
@media (max-width: 767px) {
  .contact-subscription.padding-bottom--small {
    padding-bottom: 24px;
  }
}
.contact-subscription.padding-top--none {
  padding-top: 0 !important;
}
@media (max-width: 991px) {
  .contact-subscription.padding-top--none {
    padding-top: 0;
  }
}
@media (max-width: 767px) {
  .contact-subscription.padding-top--none {
    padding-top: 0;
  }
}
.contact-subscription.padding-bottom--none {
  padding-bottom: 0 !important;
}
@media (max-width: 991px) {
  .contact-subscription.padding-bottom--none {
    padding-bottom: 0;
  }
}
@media (max-width: 767px) {
  .contact-subscription.padding-bottom--none {
    padding-bottom: 0;
  }
}
.contact-subscription.color--sky {
  background-color: #c5d5f9 !important;
}
.contact-subscription.color--sky .csContainer .label,
.contact-subscription.color--sky .csContainer h2.h3,
.contact-subscription.color--sky .csContainer .csDescText.paragraph,
.contact-subscription.color--sky .csContainer .paragraphSeparator,
.contact-subscription.color--sky .csContainer .csParagraphs .csParagraph {
  color: #000835 !important;
}
.contact-subscription.color--violet {
  background-color: #e4c7ff !important;
}
.contact-subscription.color--violet .csContainer .label,
.contact-subscription.color--violet .csContainer h2.h3,
.contact-subscription.color--violet .csContainer .csDescText.paragraph,
.contact-subscription.color--violet .csContainer .paragraphSeparator,
.contact-subscription.color--violet .csContainer .csParagraphs .csParagraph {
  color: #26005a !important;
}
.contact-subscription.color--forest {
  background-color: #c8ffc0 !important;
}
.contact-subscription.color--forest .csContainer .label,
.contact-subscription.color--forest .csContainer h2.h3,
.contact-subscription.color--forest .csContainer .csDescText.paragraph,
.contact-subscription.color--forest .csContainer .paragraphSeparator,
.contact-subscription.color--forest .csContainer .csParagraphs .csParagraph {
  color: #023a00 !important;
}
.contact-subscription.color--sky  .button {
  text-align: center !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: fit-content !important;
  gap: 8px !important;
  background-clip: padding-box !important;
  text-decoration: none !important;
  border-radius: 8px !important;
  font-weight: 500 !important;
  line-height: 150% !important;
  background-color: #000835 !important;
  color: #ffffff !important;
  border: 2px solid transparent !important;
}
.contact-subscription.color--sky  .button.outline {
  background-color: transparent !important;
  border-color: #000835 !important;
  color: #000835 !important;
}
.contact-subscription.color--sky  .button:hover {
  border-color: transparent !important;
  color: #ffffff !important;
  background-color: #0a2f62 !important;
}
.contact-subscription.color--sky  .button:focus-visible {
  color: #ffffff !important;
  background-color: #0a2f62 !important;
  border-color: transparent !important;
  outline: 2px solid #0a2f62 !important;
}
.contact-subscription.color--sky  .button:active {
  outline: none !important;
  border-color: transparent !important;
  color: #ffffff !important;
  background-color: #104ea4 !important;
}
.contact-subscription.color--sky  .button.ghost {
  color: #000835 !important;
  background-color: transparent !important;
  border-color: transparent !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.contact-subscription.color--sky  .button.ghost .button__label {
  position: relative !important;
}
.contact-subscription.color--sky  .button.ghost .button__label:after {
  position: absolute !important;
  content: '' !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 0 !important;
  transition: width 400ms !important;
  height: 1px !important;
  background-color: #000835 !important;
}
.contact-subscription.color--sky  .button.ghost:hover {
  border-color: transparent !important;
  color: #000835 !important;
  background-color: transparent !important;
}
.contact-subscription.color--sky  .button.ghost:hover .button__label::after {
  width: 100% !important;
}
.contact-subscription.color--sky  .button.ghost:focus-visible {
  outline: none !important;
  background-color: transparent !important;
  border-color: #000835 !important;
  color: #000835 !important;
}
.contact-subscription.color--sky  .button.ghost:active {
  border-color: transparent !important;
  background-color: #ebf3ff !important;
  color: #000835 !important;
}
.contact-subscription.color--sky  .button__icon {
  font-size: 24px !important;
  margin-bottom: 0 !important;
}
.contact-subscription.color--violet  .button {
  text-align: center !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: fit-content !important;
  gap: 8px !important;
  background-clip: padding-box !important;
  text-decoration: none !important;
  border-radius: 8px !important;
  font-weight: 500 !important;
  line-height: 150% !important;
  background-color: #26005a !important;
  color: #ffffff !important;
  border: 2px solid transparent !important;
}
.contact-subscription.color--violet  .button.outline {
  background-color: transparent !important;
  border-color: #26005a !important;
  color: #26005a !important;
}
.contact-subscription.color--violet  .button:hover {
  border-color: transparent !important;
  color: #ffffff !important;
  background-color: #461b64 !important;
}
.contact-subscription.color--violet  .button:focus-visible {
  color: #ffffff !important;
  background-color: #461b64 !important;
  border-color: transparent !important;
  outline: 2px solid #461b64 !important;
}
.contact-subscription.color--violet  .button:active {
  outline: none !important;
  border-color: transparent !important;
  color: #ffffff !important;
  background-color: #6d3099 !important;
}
.contact-subscription.color--violet  .button.ghost {
  color: #26005a !important;
  background-color: transparent !important;
  border-color: transparent !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.contact-subscription.color--violet  .button.ghost .button__label {
  position: relative !important;
}
.contact-subscription.color--violet  .button.ghost .button__label:after {
  position: absolute !important;
  content: '' !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 0 !important;
  transition: width 400ms !important;
  height: 1px !important;
  background-color: #26005a !important;
}
.contact-subscription.color--violet  .button.ghost:hover {
  border-color: transparent !important;
  color: #26005a !important;
  background-color: transparent !important;
}
.contact-subscription.color--violet  .button.ghost:hover .button__label::after {
  width: 100% !important;
}
.contact-subscription.color--violet  .button.ghost:focus-visible {
  outline: none !important;
  background-color: transparent !important;
  border-color: #26005a !important;
  color: #26005a !important;
}
.contact-subscription.color--violet  .button.ghost:active {
  border-color: transparent !important;
  background-color: #f8eeff !important;
  color: #26005a !important;
}
.contact-subscription.color--violet  .button__icon {
  font-size: 24px !important;
  margin-bottom: 0 !important;
}
.contact-subscription.color--forest  .button {
  text-align: center !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: fit-content !important;
  gap: 8px !important;
  background-clip: padding-box !important;
  text-decoration: none !important;
  border-radius: 8px !important;
  font-weight: 500 !important;
  line-height: 150% !important;
  background-color: #023a00 !important;
  color: #ffffff !important;
  border: 2px solid transparent !important;
}
.contact-subscription.color--forest  .button.outline {
  background-color: transparent !important;
  border-color: #023a00 !important;
  color: #023a00 !important;
}
.contact-subscription.color--forest  .button:hover {
  border-color: transparent !important;
  color: #ffffff !important;
  background-color: #3a662e !important;
}
.contact-subscription.color--forest  .button:focus-visible {
  color: #ffffff !important;
  background-color: #3a662e !important;
  border-color: transparent !important;
  outline: 2px solid #3a662e !important;
}
.contact-subscription.color--forest  .button:active {
  outline: none !important;
  border-color: transparent !important;
  color: #ffffff !important;
  background-color: #569643 !important;
}
.contact-subscription.color--forest  .button.ghost {
  color: #023a00 !important;
  background-color: transparent !important;
  border-color: transparent !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.contact-subscription.color--forest  .button.ghost .button__label {
  position: relative !important;
}
.contact-subscription.color--forest  .button.ghost .button__label:after {
  position: absolute !important;
  content: '' !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 0 !important;
  transition: width 400ms !important;
  height: 1px !important;
  background-color: #023a00 !important;
}
.contact-subscription.color--forest  .button.ghost:hover {
  border-color: transparent !important;
  color: #023a00 !important;
  background-color: transparent !important;
}
.contact-subscription.color--forest  .button.ghost:hover .button__label::after {
  width: 100% !important;
}
.contact-subscription.color--forest  .button.ghost:focus-visible {
  outline: none !important;
  background-color: transparent !important;
  border-color: #023a00 !important;
  color: #023a00 !important;
}
.contact-subscription.color--forest  .button.ghost:active {
  border-color: transparent !important;
  background-color: #f0ffec !important;
  color: #023a00 !important;
}
.contact-subscription.color--forest  .button__icon {
  font-size: 24px !important;
  margin-bottom: 0 !important;
}
.contact-subscription .cmp-contact-subscription .csContainer {
  margin: 0 auto;
}
.contact-subscription .cmp-contact-subscription .csContainer .csHeading .csDescText {
  text-align: center;
  color: #000000;
}
.contact-subscription .cmp-contact-subscription .csContainer .csButtons {
  margin-top: 24px;
}
@media (min-width: 768px) {
  .contact-subscription .cmp-contact-subscription .csContainer .csButtons {
    gap: 30px;
  }
}
@media (min-width: 992px) {
  .contact-subscription .cmp-contact-subscription .csContainer .csButtons {
    margin-top: 48px;
  }
}
.contact-subscription .cmp-contact-subscription .csContainer .csButtons .csButton {
  margin-bottom: 16px;
  width: 100%;
}
@media (min-width: 768px) {
  .contact-subscription .cmp-contact-subscription .csContainer .csButtons .csButton {
    width: calc(50% - 15px);
  }
}
.contact-subscription .cmp-contact-subscription .csContainer .csButtons .new-button {
  display: grid;
  place-content: center;
  background-clip: padding-box;
  text-decoration: none;
  border-radius: 8px;
  font-family: "Amadeus Neue";
  padding: 15.5px 32px;
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  background-color: #0c66e1;
  color: #ffffff;
  border: 2px solid transparent;
}
.contact-subscription .cmp-contact-subscription .csContainer .csButtons .new-button:hover {
  border-color: transparent;
  color: #ffffff;
  background-color: #0a2f62;
}
.contact-subscription .cmp-contact-subscription .csContainer .csButtons .new-button:focus {
  color: #ffffff;
  background-color: #0a2f62;
  border-color: transparent;
  outline: 2px solid #0a2f62;
}
.contact-subscription .cmp-contact-subscription .csContainer .csButtons .new-button:active {
  outline: none;
  border-color: transparent;
  color: #ffffff;
  background-color: #000835;
}
.contact-subscription .cmp-contact-subscription .csContainer .csButtons .new-button--outline {
  background-color: transparent;
  border: 2px solid #0c66e1;
  color: #0c66e1;
}
.contact-subscription .cmp-contact-subscription .csContainer .paragraphSeparator {
  border-top: 1px solid #000000;
  display: none;
}
@media (min-width: 768px) {
  .contact-subscription .cmp-contact-subscription .csContainer .paragraphSeparator {
    margin: 16px 0 24px;
    display: block;
  }
}
@media (min-width: 992px) {
  .contact-subscription .cmp-contact-subscription .csContainer .paragraphSeparator {
    margin: 32px 0 40px;
  }
}
.contact-subscription .cmp-contact-subscription .csContainer .csParagraphs {
  margin-top: 24px;
}
@media (min-width: 768px) {
  .contact-subscription .cmp-contact-subscription .csContainer .csParagraphs {
    margin-top: 0;
    gap: 30px;
  }
}
.contact-subscription .cmp-contact-subscription .csContainer .csParagraphs .csParagraph {
  font-family: var(--md-sys-typescale-amadeusRegular-font);
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  color: #000000;
  width: 100%;
}
@media (min-width: 768px) {
  .contact-subscription .cmp-contact-subscription .csContainer .csParagraphs .csParagraph.uniqueParagraph {
    width: 100%;
  }
}
@media (min-width: 992px) {
  .contact-subscription .cmp-contact-subscription .csContainer .csParagraphs .csParagraph {
    font-size: 16px;
  }
}
.contact-subscription .cmp-contact-subscription .csContainer .csParagraphs .csParagraph:last-child {
  margin-top: 16px;
}
@media (min-width: 768px) {
  .contact-subscription .cmp-contact-subscription .csContainer .csParagraphs .csParagraph:last-child {
    margin-top: 0;
  }
}
.contact-subscription .cmp-contact-subscription .mdc-button__ripple {
  position: relative!important;
}

/**
    Columns Component
**/
.columns.color--cloud {
  background-color: #ffffff !important;
  position: relative !important;
}
.columns.color--cloud .cmp-columns--svg-background {
  background-color: #000835 !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  mask-size: cover !important;
  mask-position: center !important;
}
.columns.color--cloud .cmp-columns--photography {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background-size: cover !important;
  background-position: center !important;
}
.columns.color--cloud .cmp-columns--photography:before {
  background-color: #000835 !important;
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  opacity: 0.3 !important;
  content: "" !important;
}
.columns.color--cloud .cmp-title,
.columns.color--cloud .text,
.columns.color--cloud .clHeading,
.columns.color--cloud .cmp-image__title,
.columns.color--cloud .cmp-title h1,
.columns.color--cloud .text h1,
.columns.color--cloud .clHeading h1,
.columns.color--cloud .cmp-image__title h1,
.columns.color--cloud .cmp-title h2,
.columns.color--cloud .text h2,
.columns.color--cloud .clHeading h2,
.columns.color--cloud .cmp-image__title h2,
.columns.color--cloud .cmp-title h3,
.columns.color--cloud .text h3,
.columns.color--cloud .clHeading h3,
.columns.color--cloud .cmp-image__title h3,
.columns.color--cloud .cmp-title h4,
.columns.color--cloud .text h4,
.columns.color--cloud .clHeading h4,
.columns.color--cloud .cmp-image__title h4,
.columns.color--cloud .cmp-title h5,
.columns.color--cloud .text h5,
.columns.color--cloud .clHeading h5,
.columns.color--cloud .cmp-image__title h5,
.columns.color--cloud .cmp-title h6,
.columns.color--cloud .text h6,
.columns.color--cloud .clHeading h6,
.columns.color--cloud .cmp-image__title h6,
.columns.color--cloud .cmp-title p,
.columns.color--cloud .text p,
.columns.color--cloud .clHeading p,
.columns.color--cloud .cmp-image__title p,
.columns.color--cloud .cmp-title .label,
.columns.color--cloud .text .label,
.columns.color--cloud .clHeading .label,
.columns.color--cloud .cmp-image__title .label,
.columns.color--cloud .cmp-title .clButtonIcon.mdc-button,
.columns.color--cloud .text .clButtonIcon.mdc-button,
.columns.color--cloud .clHeading .clButtonIcon.mdc-button,
.columns.color--cloud .cmp-image__title .clButtonIcon.mdc-button {
  color: #000521 !important;
}
.columns.color--cloud .cmp-columns--photography-text-color-fix .cmp-title,
.columns.color--cloud .cmp-columns--photography-text-color-fix .text,
.columns.color--cloud .cmp-columns--photography-text-color-fix .clHeading,
.columns.color--cloud .cmp-columns--photography-text-color-fix .cmp-image__title,
.columns.color--cloud .cmp-columns--photography-text-color-fix .cmp-title h1,
.columns.color--cloud .cmp-columns--photography-text-color-fix .text h1,
.columns.color--cloud .cmp-columns--photography-text-color-fix .clHeading h1,
.columns.color--cloud .cmp-columns--photography-text-color-fix .cmp-image__title h1,
.columns.color--cloud .cmp-columns--photography-text-color-fix .cmp-title h2,
.columns.color--cloud .cmp-columns--photography-text-color-fix .text h2,
.columns.color--cloud .cmp-columns--photography-text-color-fix .clHeading h2,
.columns.color--cloud .cmp-columns--photography-text-color-fix .cmp-image__title h2,
.columns.color--cloud .cmp-columns--photography-text-color-fix .cmp-title h3,
.columns.color--cloud .cmp-columns--photography-text-color-fix .text h3,
.columns.color--cloud .cmp-columns--photography-text-color-fix .clHeading h3,
.columns.color--cloud .cmp-columns--photography-text-color-fix .cmp-image__title h3,
.columns.color--cloud .cmp-columns--photography-text-color-fix .cmp-title h4,
.columns.color--cloud .cmp-columns--photography-text-color-fix .text h4,
.columns.color--cloud .cmp-columns--photography-text-color-fix .clHeading h4,
.columns.color--cloud .cmp-columns--photography-text-color-fix .cmp-image__title h4,
.columns.color--cloud .cmp-columns--photography-text-color-fix .cmp-title h5,
.columns.color--cloud .cmp-columns--photography-text-color-fix .text h5,
.columns.color--cloud .cmp-columns--photography-text-color-fix .clHeading h5,
.columns.color--cloud .cmp-columns--photography-text-color-fix .cmp-image__title h5,
.columns.color--cloud .cmp-columns--photography-text-color-fix .cmp-title h6,
.columns.color--cloud .cmp-columns--photography-text-color-fix .text h6,
.columns.color--cloud .cmp-columns--photography-text-color-fix .clHeading h6,
.columns.color--cloud .cmp-columns--photography-text-color-fix .cmp-image__title h6,
.columns.color--cloud .cmp-columns--photography-text-color-fix .cmp-title p,
.columns.color--cloud .cmp-columns--photography-text-color-fix .text p,
.columns.color--cloud .cmp-columns--photography-text-color-fix .clHeading p,
.columns.color--cloud .cmp-columns--photography-text-color-fix .cmp-image__title p,
.columns.color--cloud .cmp-columns--photography-text-color-fix .cmp-title .label,
.columns.color--cloud .cmp-columns--photography-text-color-fix .text .label,
.columns.color--cloud .cmp-columns--photography-text-color-fix .clHeading .label,
.columns.color--cloud .cmp-columns--photography-text-color-fix .cmp-image__title .label,
.columns.color--cloud .cmp-columns--photography-text-color-fix .cmp-title .clButtonIcon.mdc-button,
.columns.color--cloud .cmp-columns--photography-text-color-fix .text .clButtonIcon.mdc-button,
.columns.color--cloud .cmp-columns--photography-text-color-fix .clHeading .clButtonIcon.mdc-button,
.columns.color--cloud .cmp-columns--photography-text-color-fix .cmp-image__title .clButtonIcon.mdc-button {
  color: #ffffff !important;
}
.columns.color--cloud.inverse {
  background-color: #000835 !important;
}
.columns.color--cloud.inverse .cmp-columns--photography {
  background-size: cover !important;
  background-position: center !important;
}
.columns.color--cloud.inverse .cmp-columns--photography:before {
  background-color: #ffffff !important;
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  opacity: 0.3 !important;
}
.columns.color--cloud.inverse .cmp-columns--svg-background {
  background-color: #ffffff !important;
}
.columns.color--cloud.inverse .cmp-title,
.columns.color--cloud.inverse .text,
.columns.color--cloud.inverse .clHeading,
.columns.color--cloud.inverse .cmp-image__title,
.columns.color--cloud.inverse .cmp-title h1,
.columns.color--cloud.inverse .text h1,
.columns.color--cloud.inverse .clHeading h1,
.columns.color--cloud.inverse .cmp-image__title h1,
.columns.color--cloud.inverse .cmp-title h2,
.columns.color--cloud.inverse .text h2,
.columns.color--cloud.inverse .clHeading h2,
.columns.color--cloud.inverse .cmp-image__title h2,
.columns.color--cloud.inverse .cmp-title h3,
.columns.color--cloud.inverse .text h3,
.columns.color--cloud.inverse .clHeading h3,
.columns.color--cloud.inverse .cmp-image__title h3,
.columns.color--cloud.inverse .cmp-title h4,
.columns.color--cloud.inverse .text h4,
.columns.color--cloud.inverse .clHeading h4,
.columns.color--cloud.inverse .cmp-image__title h4,
.columns.color--cloud.inverse .cmp-title h5,
.columns.color--cloud.inverse .text h5,
.columns.color--cloud.inverse .clHeading h5,
.columns.color--cloud.inverse .cmp-image__title h5,
.columns.color--cloud.inverse .cmp-title h6,
.columns.color--cloud.inverse .text h6,
.columns.color--cloud.inverse .clHeading h6,
.columns.color--cloud.inverse .cmp-image__title h6,
.columns.color--cloud.inverse .cmp-title p,
.columns.color--cloud.inverse .text p,
.columns.color--cloud.inverse .clHeading p,
.columns.color--cloud.inverse .cmp-image__title p,
.columns.color--cloud.inverse .cmp-title .label,
.columns.color--cloud.inverse .text .label,
.columns.color--cloud.inverse .clHeading .label,
.columns.color--cloud.inverse .cmp-image__title .label,
.columns.color--cloud.inverse .cmp-title .clButtonIcon.mdc-button,
.columns.color--cloud.inverse .text .clButtonIcon.mdc-button,
.columns.color--cloud.inverse .clHeading .clButtonIcon.mdc-button,
.columns.color--cloud.inverse .cmp-image__title .clButtonIcon.mdc-button {
  color: #0c66e1 !important;
}
.columns.color--cloud.inverse .cmp-columns--photography-text-color-fix .cmp-title,
.columns.color--cloud.inverse .cmp-columns--photography-text-color-fix .text,
.columns.color--cloud.inverse .cmp-columns--photography-text-color-fix .clHeading,
.columns.color--cloud.inverse .cmp-columns--photography-text-color-fix .cmp-image__title,
.columns.color--cloud.inverse .cmp-columns--photography-text-color-fix .cmp-title h1,
.columns.color--cloud.inverse .cmp-columns--photography-text-color-fix .text h1,
.columns.color--cloud.inverse .cmp-columns--photography-text-color-fix .clHeading h1,
.columns.color--cloud.inverse .cmp-columns--photography-text-color-fix .cmp-image__title h1,
.columns.color--cloud.inverse .cmp-columns--photography-text-color-fix .cmp-title h2,
.columns.color--cloud.inverse .cmp-columns--photography-text-color-fix .text h2,
.columns.color--cloud.inverse .cmp-columns--photography-text-color-fix .clHeading h2,
.columns.color--cloud.inverse .cmp-columns--photography-text-color-fix .cmp-image__title h2,
.columns.color--cloud.inverse .cmp-columns--photography-text-color-fix .cmp-title h3,
.columns.color--cloud.inverse .cmp-columns--photography-text-color-fix .text h3,
.columns.color--cloud.inverse .cmp-columns--photography-text-color-fix .clHeading h3,
.columns.color--cloud.inverse .cmp-columns--photography-text-color-fix .cmp-image__title h3,
.columns.color--cloud.inverse .cmp-columns--photography-text-color-fix .cmp-title h4,
.columns.color--cloud.inverse .cmp-columns--photography-text-color-fix .text h4,
.columns.color--cloud.inverse .cmp-columns--photography-text-color-fix .clHeading h4,
.columns.color--cloud.inverse .cmp-columns--photography-text-color-fix .cmp-image__title h4,
.columns.color--cloud.inverse .cmp-columns--photography-text-color-fix .cmp-title h5,
.columns.color--cloud.inverse .cmp-columns--photography-text-color-fix .text h5,
.columns.color--cloud.inverse .cmp-columns--photography-text-color-fix .clHeading h5,
.columns.color--cloud.inverse .cmp-columns--photography-text-color-fix .cmp-image__title h5,
.columns.color--cloud.inverse .cmp-columns--photography-text-color-fix .cmp-title h6,
.columns.color--cloud.inverse .cmp-columns--photography-text-color-fix .text h6,
.columns.color--cloud.inverse .cmp-columns--photography-text-color-fix .clHeading h6,
.columns.color--cloud.inverse .cmp-columns--photography-text-color-fix .cmp-image__title h6,
.columns.color--cloud.inverse .cmp-columns--photography-text-color-fix .cmp-title p,
.columns.color--cloud.inverse .cmp-columns--photography-text-color-fix .text p,
.columns.color--cloud.inverse .cmp-columns--photography-text-color-fix .clHeading p,
.columns.color--cloud.inverse .cmp-columns--photography-text-color-fix .cmp-image__title p,
.columns.color--cloud.inverse .cmp-columns--photography-text-color-fix .cmp-title .label,
.columns.color--cloud.inverse .cmp-columns--photography-text-color-fix .text .label,
.columns.color--cloud.inverse .cmp-columns--photography-text-color-fix .clHeading .label,
.columns.color--cloud.inverse .cmp-columns--photography-text-color-fix .cmp-image__title .label,
.columns.color--cloud.inverse .cmp-columns--photography-text-color-fix .cmp-title .clButtonIcon.mdc-button,
.columns.color--cloud.inverse .cmp-columns--photography-text-color-fix .text .clButtonIcon.mdc-button,
.columns.color--cloud.inverse .cmp-columns--photography-text-color-fix .clHeading .clButtonIcon.mdc-button,
.columns.color--cloud.inverse .cmp-columns--photography-text-color-fix .cmp-image__title .clButtonIcon.mdc-button {
  color: #333333 !important;
}
.columns.color--sky {
  background-color: #000835 !important;
  position: relative !important;
}
.columns.color--sky .cmp-columns--svg-background {
  background-color: #c5d5f9 !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  mask-size: cover !important;
  mask-position: center !important;
}
.columns.color--sky .cmp-columns--photography {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background-size: cover !important;
  background-position: center !important;
}
.columns.color--sky .cmp-columns--photography:before {
  background-color: #000835 !important;
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  opacity: 0.3 !important;
  content: "" !important;
}
.columns.color--sky .cmp-title,
.columns.color--sky .text,
.columns.color--sky .clHeading,
.columns.color--sky .cmp-image__title,
.columns.color--sky .cmp-title h1,
.columns.color--sky .text h1,
.columns.color--sky .clHeading h1,
.columns.color--sky .cmp-image__title h1,
.columns.color--sky .cmp-title h2,
.columns.color--sky .text h2,
.columns.color--sky .clHeading h2,
.columns.color--sky .cmp-image__title h2,
.columns.color--sky .cmp-title h3,
.columns.color--sky .text h3,
.columns.color--sky .clHeading h3,
.columns.color--sky .cmp-image__title h3,
.columns.color--sky .cmp-title h4,
.columns.color--sky .text h4,
.columns.color--sky .clHeading h4,
.columns.color--sky .cmp-image__title h4,
.columns.color--sky .cmp-title h5,
.columns.color--sky .text h5,
.columns.color--sky .clHeading h5,
.columns.color--sky .cmp-image__title h5,
.columns.color--sky .cmp-title h6,
.columns.color--sky .text h6,
.columns.color--sky .clHeading h6,
.columns.color--sky .cmp-image__title h6,
.columns.color--sky .cmp-title p,
.columns.color--sky .text p,
.columns.color--sky .clHeading p,
.columns.color--sky .cmp-image__title p,
.columns.color--sky .cmp-title .label,
.columns.color--sky .text .label,
.columns.color--sky .clHeading .label,
.columns.color--sky .cmp-image__title .label,
.columns.color--sky .cmp-title .clButtonIcon.mdc-button,
.columns.color--sky .text .clButtonIcon.mdc-button,
.columns.color--sky .clHeading .clButtonIcon.mdc-button,
.columns.color--sky .cmp-image__title .clButtonIcon.mdc-button {
  color: #c5d5f9 !important;
}
.columns.color--sky .cmp-columns--photography-text-color-fix .cmp-title,
.columns.color--sky .cmp-columns--photography-text-color-fix .text,
.columns.color--sky .cmp-columns--photography-text-color-fix .clHeading,
.columns.color--sky .cmp-columns--photography-text-color-fix .cmp-image__title,
.columns.color--sky .cmp-columns--photography-text-color-fix .cmp-title h1,
.columns.color--sky .cmp-columns--photography-text-color-fix .text h1,
.columns.color--sky .cmp-columns--photography-text-color-fix .clHeading h1,
.columns.color--sky .cmp-columns--photography-text-color-fix .cmp-image__title h1,
.columns.color--sky .cmp-columns--photography-text-color-fix .cmp-title h2,
.columns.color--sky .cmp-columns--photography-text-color-fix .text h2,
.columns.color--sky .cmp-columns--photography-text-color-fix .clHeading h2,
.columns.color--sky .cmp-columns--photography-text-color-fix .cmp-image__title h2,
.columns.color--sky .cmp-columns--photography-text-color-fix .cmp-title h3,
.columns.color--sky .cmp-columns--photography-text-color-fix .text h3,
.columns.color--sky .cmp-columns--photography-text-color-fix .clHeading h3,
.columns.color--sky .cmp-columns--photography-text-color-fix .cmp-image__title h3,
.columns.color--sky .cmp-columns--photography-text-color-fix .cmp-title h4,
.columns.color--sky .cmp-columns--photography-text-color-fix .text h4,
.columns.color--sky .cmp-columns--photography-text-color-fix .clHeading h4,
.columns.color--sky .cmp-columns--photography-text-color-fix .cmp-image__title h4,
.columns.color--sky .cmp-columns--photography-text-color-fix .cmp-title h5,
.columns.color--sky .cmp-columns--photography-text-color-fix .text h5,
.columns.color--sky .cmp-columns--photography-text-color-fix .clHeading h5,
.columns.color--sky .cmp-columns--photography-text-color-fix .cmp-image__title h5,
.columns.color--sky .cmp-columns--photography-text-color-fix .cmp-title h6,
.columns.color--sky .cmp-columns--photography-text-color-fix .text h6,
.columns.color--sky .cmp-columns--photography-text-color-fix .clHeading h6,
.columns.color--sky .cmp-columns--photography-text-color-fix .cmp-image__title h6,
.columns.color--sky .cmp-columns--photography-text-color-fix .cmp-title p,
.columns.color--sky .cmp-columns--photography-text-color-fix .text p,
.columns.color--sky .cmp-columns--photography-text-color-fix .clHeading p,
.columns.color--sky .cmp-columns--photography-text-color-fix .cmp-image__title p,
.columns.color--sky .cmp-columns--photography-text-color-fix .cmp-title .label,
.columns.color--sky .cmp-columns--photography-text-color-fix .text .label,
.columns.color--sky .cmp-columns--photography-text-color-fix .clHeading .label,
.columns.color--sky .cmp-columns--photography-text-color-fix .cmp-image__title .label,
.columns.color--sky .cmp-columns--photography-text-color-fix .cmp-title .clButtonIcon.mdc-button,
.columns.color--sky .cmp-columns--photography-text-color-fix .text .clButtonIcon.mdc-button,
.columns.color--sky .cmp-columns--photography-text-color-fix .clHeading .clButtonIcon.mdc-button,
.columns.color--sky .cmp-columns--photography-text-color-fix .cmp-image__title .clButtonIcon.mdc-button {
  color: #ffffff !important;
}
.columns.color--sky.inverse {
  background-color: #c5d5f9 !important;
}
.columns.color--sky.inverse .cmp-columns--photography {
  background-size: cover !important;
  background-position: center !important;
}
.columns.color--sky.inverse .cmp-columns--photography:before {
  background-color: #ffffff !important;
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  opacity: 0.3 !important;
}
.columns.color--sky.inverse .cmp-columns--svg-background {
  background-color: #000835 !important;
}
.columns.color--sky.inverse .cmp-title,
.columns.color--sky.inverse .text,
.columns.color--sky.inverse .clHeading,
.columns.color--sky.inverse .cmp-image__title,
.columns.color--sky.inverse .cmp-title h1,
.columns.color--sky.inverse .text h1,
.columns.color--sky.inverse .clHeading h1,
.columns.color--sky.inverse .cmp-image__title h1,
.columns.color--sky.inverse .cmp-title h2,
.columns.color--sky.inverse .text h2,
.columns.color--sky.inverse .clHeading h2,
.columns.color--sky.inverse .cmp-image__title h2,
.columns.color--sky.inverse .cmp-title h3,
.columns.color--sky.inverse .text h3,
.columns.color--sky.inverse .clHeading h3,
.columns.color--sky.inverse .cmp-image__title h3,
.columns.color--sky.inverse .cmp-title h4,
.columns.color--sky.inverse .text h4,
.columns.color--sky.inverse .clHeading h4,
.columns.color--sky.inverse .cmp-image__title h4,
.columns.color--sky.inverse .cmp-title h5,
.columns.color--sky.inverse .text h5,
.columns.color--sky.inverse .clHeading h5,
.columns.color--sky.inverse .cmp-image__title h5,
.columns.color--sky.inverse .cmp-title h6,
.columns.color--sky.inverse .text h6,
.columns.color--sky.inverse .clHeading h6,
.columns.color--sky.inverse .cmp-image__title h6,
.columns.color--sky.inverse .cmp-title p,
.columns.color--sky.inverse .text p,
.columns.color--sky.inverse .clHeading p,
.columns.color--sky.inverse .cmp-image__title p,
.columns.color--sky.inverse .cmp-title .label,
.columns.color--sky.inverse .text .label,
.columns.color--sky.inverse .clHeading .label,
.columns.color--sky.inverse .cmp-image__title .label,
.columns.color--sky.inverse .cmp-title .clButtonIcon.mdc-button,
.columns.color--sky.inverse .text .clButtonIcon.mdc-button,
.columns.color--sky.inverse .clHeading .clButtonIcon.mdc-button,
.columns.color--sky.inverse .cmp-image__title .clButtonIcon.mdc-button {
  color: #000835 !important;
}
.columns.color--sky.inverse .cmp-columns--photography-text-color-fix .cmp-title,
.columns.color--sky.inverse .cmp-columns--photography-text-color-fix .text,
.columns.color--sky.inverse .cmp-columns--photography-text-color-fix .clHeading,
.columns.color--sky.inverse .cmp-columns--photography-text-color-fix .cmp-image__title,
.columns.color--sky.inverse .cmp-columns--photography-text-color-fix .cmp-title h1,
.columns.color--sky.inverse .cmp-columns--photography-text-color-fix .text h1,
.columns.color--sky.inverse .cmp-columns--photography-text-color-fix .clHeading h1,
.columns.color--sky.inverse .cmp-columns--photography-text-color-fix .cmp-image__title h1,
.columns.color--sky.inverse .cmp-columns--photography-text-color-fix .cmp-title h2,
.columns.color--sky.inverse .cmp-columns--photography-text-color-fix .text h2,
.columns.color--sky.inverse .cmp-columns--photography-text-color-fix .clHeading h2,
.columns.color--sky.inverse .cmp-columns--photography-text-color-fix .cmp-image__title h2,
.columns.color--sky.inverse .cmp-columns--photography-text-color-fix .cmp-title h3,
.columns.color--sky.inverse .cmp-columns--photography-text-color-fix .text h3,
.columns.color--sky.inverse .cmp-columns--photography-text-color-fix .clHeading h3,
.columns.color--sky.inverse .cmp-columns--photography-text-color-fix .cmp-image__title h3,
.columns.color--sky.inverse .cmp-columns--photography-text-color-fix .cmp-title h4,
.columns.color--sky.inverse .cmp-columns--photography-text-color-fix .text h4,
.columns.color--sky.inverse .cmp-columns--photography-text-color-fix .clHeading h4,
.columns.color--sky.inverse .cmp-columns--photography-text-color-fix .cmp-image__title h4,
.columns.color--sky.inverse .cmp-columns--photography-text-color-fix .cmp-title h5,
.columns.color--sky.inverse .cmp-columns--photography-text-color-fix .text h5,
.columns.color--sky.inverse .cmp-columns--photography-text-color-fix .clHeading h5,
.columns.color--sky.inverse .cmp-columns--photography-text-color-fix .cmp-image__title h5,
.columns.color--sky.inverse .cmp-columns--photography-text-color-fix .cmp-title h6,
.columns.color--sky.inverse .cmp-columns--photography-text-color-fix .text h6,
.columns.color--sky.inverse .cmp-columns--photography-text-color-fix .clHeading h6,
.columns.color--sky.inverse .cmp-columns--photography-text-color-fix .cmp-image__title h6,
.columns.color--sky.inverse .cmp-columns--photography-text-color-fix .cmp-title p,
.columns.color--sky.inverse .cmp-columns--photography-text-color-fix .text p,
.columns.color--sky.inverse .cmp-columns--photography-text-color-fix .clHeading p,
.columns.color--sky.inverse .cmp-columns--photography-text-color-fix .cmp-image__title p,
.columns.color--sky.inverse .cmp-columns--photography-text-color-fix .cmp-title .label,
.columns.color--sky.inverse .cmp-columns--photography-text-color-fix .text .label,
.columns.color--sky.inverse .cmp-columns--photography-text-color-fix .clHeading .label,
.columns.color--sky.inverse .cmp-columns--photography-text-color-fix .cmp-image__title .label,
.columns.color--sky.inverse .cmp-columns--photography-text-color-fix .cmp-title .clButtonIcon.mdc-button,
.columns.color--sky.inverse .cmp-columns--photography-text-color-fix .text .clButtonIcon.mdc-button,
.columns.color--sky.inverse .cmp-columns--photography-text-color-fix .clHeading .clButtonIcon.mdc-button,
.columns.color--sky.inverse .cmp-columns--photography-text-color-fix .cmp-image__title .clButtonIcon.mdc-button {
  color: #333333 !important;
}
.columns.color--violet {
  background-color: #26005a !important;
  position: relative !important;
}
.columns.color--violet .cmp-columns--svg-background {
  background-color: #e4c7ff !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  mask-size: cover !important;
  mask-position: center !important;
}
.columns.color--violet .cmp-columns--photography {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background-size: cover !important;
  background-position: center !important;
}
.columns.color--violet .cmp-columns--photography:before {
  background-color: #000835 !important;
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  opacity: 0.3 !important;
  content: "" !important;
}
.columns.color--violet .cmp-title,
.columns.color--violet .text,
.columns.color--violet .clHeading,
.columns.color--violet .cmp-image__title,
.columns.color--violet .cmp-title h1,
.columns.color--violet .text h1,
.columns.color--violet .clHeading h1,
.columns.color--violet .cmp-image__title h1,
.columns.color--violet .cmp-title h2,
.columns.color--violet .text h2,
.columns.color--violet .clHeading h2,
.columns.color--violet .cmp-image__title h2,
.columns.color--violet .cmp-title h3,
.columns.color--violet .text h3,
.columns.color--violet .clHeading h3,
.columns.color--violet .cmp-image__title h3,
.columns.color--violet .cmp-title h4,
.columns.color--violet .text h4,
.columns.color--violet .clHeading h4,
.columns.color--violet .cmp-image__title h4,
.columns.color--violet .cmp-title h5,
.columns.color--violet .text h5,
.columns.color--violet .clHeading h5,
.columns.color--violet .cmp-image__title h5,
.columns.color--violet .cmp-title h6,
.columns.color--violet .text h6,
.columns.color--violet .clHeading h6,
.columns.color--violet .cmp-image__title h6,
.columns.color--violet .cmp-title p,
.columns.color--violet .text p,
.columns.color--violet .clHeading p,
.columns.color--violet .cmp-image__title p,
.columns.color--violet .cmp-title .label,
.columns.color--violet .text .label,
.columns.color--violet .clHeading .label,
.columns.color--violet .cmp-image__title .label,
.columns.color--violet .cmp-title .clButtonIcon.mdc-button,
.columns.color--violet .text .clButtonIcon.mdc-button,
.columns.color--violet .clHeading .clButtonIcon.mdc-button,
.columns.color--violet .cmp-image__title .clButtonIcon.mdc-button {
  color: #f8eeff !important;
}
.columns.color--violet .cmp-columns--photography-text-color-fix .cmp-title,
.columns.color--violet .cmp-columns--photography-text-color-fix .text,
.columns.color--violet .cmp-columns--photography-text-color-fix .clHeading,
.columns.color--violet .cmp-columns--photography-text-color-fix .cmp-image__title,
.columns.color--violet .cmp-columns--photography-text-color-fix .cmp-title h1,
.columns.color--violet .cmp-columns--photography-text-color-fix .text h1,
.columns.color--violet .cmp-columns--photography-text-color-fix .clHeading h1,
.columns.color--violet .cmp-columns--photography-text-color-fix .cmp-image__title h1,
.columns.color--violet .cmp-columns--photography-text-color-fix .cmp-title h2,
.columns.color--violet .cmp-columns--photography-text-color-fix .text h2,
.columns.color--violet .cmp-columns--photography-text-color-fix .clHeading h2,
.columns.color--violet .cmp-columns--photography-text-color-fix .cmp-image__title h2,
.columns.color--violet .cmp-columns--photography-text-color-fix .cmp-title h3,
.columns.color--violet .cmp-columns--photography-text-color-fix .text h3,
.columns.color--violet .cmp-columns--photography-text-color-fix .clHeading h3,
.columns.color--violet .cmp-columns--photography-text-color-fix .cmp-image__title h3,
.columns.color--violet .cmp-columns--photography-text-color-fix .cmp-title h4,
.columns.color--violet .cmp-columns--photography-text-color-fix .text h4,
.columns.color--violet .cmp-columns--photography-text-color-fix .clHeading h4,
.columns.color--violet .cmp-columns--photography-text-color-fix .cmp-image__title h4,
.columns.color--violet .cmp-columns--photography-text-color-fix .cmp-title h5,
.columns.color--violet .cmp-columns--photography-text-color-fix .text h5,
.columns.color--violet .cmp-columns--photography-text-color-fix .clHeading h5,
.columns.color--violet .cmp-columns--photography-text-color-fix .cmp-image__title h5,
.columns.color--violet .cmp-columns--photography-text-color-fix .cmp-title h6,
.columns.color--violet .cmp-columns--photography-text-color-fix .text h6,
.columns.color--violet .cmp-columns--photography-text-color-fix .clHeading h6,
.columns.color--violet .cmp-columns--photography-text-color-fix .cmp-image__title h6,
.columns.color--violet .cmp-columns--photography-text-color-fix .cmp-title p,
.columns.color--violet .cmp-columns--photography-text-color-fix .text p,
.columns.color--violet .cmp-columns--photography-text-color-fix .clHeading p,
.columns.color--violet .cmp-columns--photography-text-color-fix .cmp-image__title p,
.columns.color--violet .cmp-columns--photography-text-color-fix .cmp-title .label,
.columns.color--violet .cmp-columns--photography-text-color-fix .text .label,
.columns.color--violet .cmp-columns--photography-text-color-fix .clHeading .label,
.columns.color--violet .cmp-columns--photography-text-color-fix .cmp-image__title .label,
.columns.color--violet .cmp-columns--photography-text-color-fix .cmp-title .clButtonIcon.mdc-button,
.columns.color--violet .cmp-columns--photography-text-color-fix .text .clButtonIcon.mdc-button,
.columns.color--violet .cmp-columns--photography-text-color-fix .clHeading .clButtonIcon.mdc-button,
.columns.color--violet .cmp-columns--photography-text-color-fix .cmp-image__title .clButtonIcon.mdc-button {
  color: #ffffff !important;
}
.columns.color--violet.inverse {
  background-color: #e4c7ff !important;
}
.columns.color--violet.inverse .cmp-columns--photography {
  background-size: cover !important;
  background-position: center !important;
}
.columns.color--violet.inverse .cmp-columns--photography:before {
  background-color: #ffffff !important;
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  opacity: 0.3 !important;
}
.columns.color--violet.inverse .cmp-columns--svg-background {
  background-color: #26005a !important;
}
.columns.color--violet.inverse .cmp-title,
.columns.color--violet.inverse .text,
.columns.color--violet.inverse .clHeading,
.columns.color--violet.inverse .cmp-image__title,
.columns.color--violet.inverse .cmp-title h1,
.columns.color--violet.inverse .text h1,
.columns.color--violet.inverse .clHeading h1,
.columns.color--violet.inverse .cmp-image__title h1,
.columns.color--violet.inverse .cmp-title h2,
.columns.color--violet.inverse .text h2,
.columns.color--violet.inverse .clHeading h2,
.columns.color--violet.inverse .cmp-image__title h2,
.columns.color--violet.inverse .cmp-title h3,
.columns.color--violet.inverse .text h3,
.columns.color--violet.inverse .clHeading h3,
.columns.color--violet.inverse .cmp-image__title h3,
.columns.color--violet.inverse .cmp-title h4,
.columns.color--violet.inverse .text h4,
.columns.color--violet.inverse .clHeading h4,
.columns.color--violet.inverse .cmp-image__title h4,
.columns.color--violet.inverse .cmp-title h5,
.columns.color--violet.inverse .text h5,
.columns.color--violet.inverse .clHeading h5,
.columns.color--violet.inverse .cmp-image__title h5,
.columns.color--violet.inverse .cmp-title h6,
.columns.color--violet.inverse .text h6,
.columns.color--violet.inverse .clHeading h6,
.columns.color--violet.inverse .cmp-image__title h6,
.columns.color--violet.inverse .cmp-title p,
.columns.color--violet.inverse .text p,
.columns.color--violet.inverse .clHeading p,
.columns.color--violet.inverse .cmp-image__title p,
.columns.color--violet.inverse .cmp-title .label,
.columns.color--violet.inverse .text .label,
.columns.color--violet.inverse .clHeading .label,
.columns.color--violet.inverse .cmp-image__title .label,
.columns.color--violet.inverse .cmp-title .clButtonIcon.mdc-button,
.columns.color--violet.inverse .text .clButtonIcon.mdc-button,
.columns.color--violet.inverse .clHeading .clButtonIcon.mdc-button,
.columns.color--violet.inverse .cmp-image__title .clButtonIcon.mdc-button {
  color: #26005a !important;
}
.columns.color--violet.inverse .cmp-columns--photography-text-color-fix .cmp-title,
.columns.color--violet.inverse .cmp-columns--photography-text-color-fix .text,
.columns.color--violet.inverse .cmp-columns--photography-text-color-fix .clHeading,
.columns.color--violet.inverse .cmp-columns--photography-text-color-fix .cmp-image__title,
.columns.color--violet.inverse .cmp-columns--photography-text-color-fix .cmp-title h1,
.columns.color--violet.inverse .cmp-columns--photography-text-color-fix .text h1,
.columns.color--violet.inverse .cmp-columns--photography-text-color-fix .clHeading h1,
.columns.color--violet.inverse .cmp-columns--photography-text-color-fix .cmp-image__title h1,
.columns.color--violet.inverse .cmp-columns--photography-text-color-fix .cmp-title h2,
.columns.color--violet.inverse .cmp-columns--photography-text-color-fix .text h2,
.columns.color--violet.inverse .cmp-columns--photography-text-color-fix .clHeading h2,
.columns.color--violet.inverse .cmp-columns--photography-text-color-fix .cmp-image__title h2,
.columns.color--violet.inverse .cmp-columns--photography-text-color-fix .cmp-title h3,
.columns.color--violet.inverse .cmp-columns--photography-text-color-fix .text h3,
.columns.color--violet.inverse .cmp-columns--photography-text-color-fix .clHeading h3,
.columns.color--violet.inverse .cmp-columns--photography-text-color-fix .cmp-image__title h3,
.columns.color--violet.inverse .cmp-columns--photography-text-color-fix .cmp-title h4,
.columns.color--violet.inverse .cmp-columns--photography-text-color-fix .text h4,
.columns.color--violet.inverse .cmp-columns--photography-text-color-fix .clHeading h4,
.columns.color--violet.inverse .cmp-columns--photography-text-color-fix .cmp-image__title h4,
.columns.color--violet.inverse .cmp-columns--photography-text-color-fix .cmp-title h5,
.columns.color--violet.inverse .cmp-columns--photography-text-color-fix .text h5,
.columns.color--violet.inverse .cmp-columns--photography-text-color-fix .clHeading h5,
.columns.color--violet.inverse .cmp-columns--photography-text-color-fix .cmp-image__title h5,
.columns.color--violet.inverse .cmp-columns--photography-text-color-fix .cmp-title h6,
.columns.color--violet.inverse .cmp-columns--photography-text-color-fix .text h6,
.columns.color--violet.inverse .cmp-columns--photography-text-color-fix .clHeading h6,
.columns.color--violet.inverse .cmp-columns--photography-text-color-fix .cmp-image__title h6,
.columns.color--violet.inverse .cmp-columns--photography-text-color-fix .cmp-title p,
.columns.color--violet.inverse .cmp-columns--photography-text-color-fix .text p,
.columns.color--violet.inverse .cmp-columns--photography-text-color-fix .clHeading p,
.columns.color--violet.inverse .cmp-columns--photography-text-color-fix .cmp-image__title p,
.columns.color--violet.inverse .cmp-columns--photography-text-color-fix .cmp-title .label,
.columns.color--violet.inverse .cmp-columns--photography-text-color-fix .text .label,
.columns.color--violet.inverse .cmp-columns--photography-text-color-fix .clHeading .label,
.columns.color--violet.inverse .cmp-columns--photography-text-color-fix .cmp-image__title .label,
.columns.color--violet.inverse .cmp-columns--photography-text-color-fix .cmp-title .clButtonIcon.mdc-button,
.columns.color--violet.inverse .cmp-columns--photography-text-color-fix .text .clButtonIcon.mdc-button,
.columns.color--violet.inverse .cmp-columns--photography-text-color-fix .clHeading .clButtonIcon.mdc-button,
.columns.color--violet.inverse .cmp-columns--photography-text-color-fix .cmp-image__title .clButtonIcon.mdc-button {
  color: #333333 !important;
}
.columns.color--crimson {
  background-color: #560900 !important;
  position: relative !important;
}
.columns.color--crimson .cmp-columns--svg-background {
  background-color: #ffd7d7 !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  mask-size: cover !important;
  mask-position: center !important;
}
.columns.color--crimson .cmp-columns--photography {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background-size: cover !important;
  background-position: center !important;
}
.columns.color--crimson .cmp-columns--photography:before {
  background-color: #000835 !important;
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  opacity: 0.3 !important;
  content: "" !important;
}
.columns.color--crimson .cmp-title,
.columns.color--crimson .text,
.columns.color--crimson .clHeading,
.columns.color--crimson .cmp-image__title,
.columns.color--crimson .cmp-title h1,
.columns.color--crimson .text h1,
.columns.color--crimson .clHeading h1,
.columns.color--crimson .cmp-image__title h1,
.columns.color--crimson .cmp-title h2,
.columns.color--crimson .text h2,
.columns.color--crimson .clHeading h2,
.columns.color--crimson .cmp-image__title h2,
.columns.color--crimson .cmp-title h3,
.columns.color--crimson .text h3,
.columns.color--crimson .clHeading h3,
.columns.color--crimson .cmp-image__title h3,
.columns.color--crimson .cmp-title h4,
.columns.color--crimson .text h4,
.columns.color--crimson .clHeading h4,
.columns.color--crimson .cmp-image__title h4,
.columns.color--crimson .cmp-title h5,
.columns.color--crimson .text h5,
.columns.color--crimson .clHeading h5,
.columns.color--crimson .cmp-image__title h5,
.columns.color--crimson .cmp-title h6,
.columns.color--crimson .text h6,
.columns.color--crimson .clHeading h6,
.columns.color--crimson .cmp-image__title h6,
.columns.color--crimson .cmp-title p,
.columns.color--crimson .text p,
.columns.color--crimson .clHeading p,
.columns.color--crimson .cmp-image__title p,
.columns.color--crimson .cmp-title .label,
.columns.color--crimson .text .label,
.columns.color--crimson .clHeading .label,
.columns.color--crimson .cmp-image__title .label,
.columns.color--crimson .cmp-title .clButtonIcon.mdc-button,
.columns.color--crimson .text .clButtonIcon.mdc-button,
.columns.color--crimson .clHeading .clButtonIcon.mdc-button,
.columns.color--crimson .cmp-image__title .clButtonIcon.mdc-button {
  color: #ffd7d7 !important;
}
.columns.color--crimson .cmp-columns--photography-text-color-fix .cmp-title,
.columns.color--crimson .cmp-columns--photography-text-color-fix .text,
.columns.color--crimson .cmp-columns--photography-text-color-fix .clHeading,
.columns.color--crimson .cmp-columns--photography-text-color-fix .cmp-image__title,
.columns.color--crimson .cmp-columns--photography-text-color-fix .cmp-title h1,
.columns.color--crimson .cmp-columns--photography-text-color-fix .text h1,
.columns.color--crimson .cmp-columns--photography-text-color-fix .clHeading h1,
.columns.color--crimson .cmp-columns--photography-text-color-fix .cmp-image__title h1,
.columns.color--crimson .cmp-columns--photography-text-color-fix .cmp-title h2,
.columns.color--crimson .cmp-columns--photography-text-color-fix .text h2,
.columns.color--crimson .cmp-columns--photography-text-color-fix .clHeading h2,
.columns.color--crimson .cmp-columns--photography-text-color-fix .cmp-image__title h2,
.columns.color--crimson .cmp-columns--photography-text-color-fix .cmp-title h3,
.columns.color--crimson .cmp-columns--photography-text-color-fix .text h3,
.columns.color--crimson .cmp-columns--photography-text-color-fix .clHeading h3,
.columns.color--crimson .cmp-columns--photography-text-color-fix .cmp-image__title h3,
.columns.color--crimson .cmp-columns--photography-text-color-fix .cmp-title h4,
.columns.color--crimson .cmp-columns--photography-text-color-fix .text h4,
.columns.color--crimson .cmp-columns--photography-text-color-fix .clHeading h4,
.columns.color--crimson .cmp-columns--photography-text-color-fix .cmp-image__title h4,
.columns.color--crimson .cmp-columns--photography-text-color-fix .cmp-title h5,
.columns.color--crimson .cmp-columns--photography-text-color-fix .text h5,
.columns.color--crimson .cmp-columns--photography-text-color-fix .clHeading h5,
.columns.color--crimson .cmp-columns--photography-text-color-fix .cmp-image__title h5,
.columns.color--crimson .cmp-columns--photography-text-color-fix .cmp-title h6,
.columns.color--crimson .cmp-columns--photography-text-color-fix .text h6,
.columns.color--crimson .cmp-columns--photography-text-color-fix .clHeading h6,
.columns.color--crimson .cmp-columns--photography-text-color-fix .cmp-image__title h6,
.columns.color--crimson .cmp-columns--photography-text-color-fix .cmp-title p,
.columns.color--crimson .cmp-columns--photography-text-color-fix .text p,
.columns.color--crimson .cmp-columns--photography-text-color-fix .clHeading p,
.columns.color--crimson .cmp-columns--photography-text-color-fix .cmp-image__title p,
.columns.color--crimson .cmp-columns--photography-text-color-fix .cmp-title .label,
.columns.color--crimson .cmp-columns--photography-text-color-fix .text .label,
.columns.color--crimson .cmp-columns--photography-text-color-fix .clHeading .label,
.columns.color--crimson .cmp-columns--photography-text-color-fix .cmp-image__title .label,
.columns.color--crimson .cmp-columns--photography-text-color-fix .cmp-title .clButtonIcon.mdc-button,
.columns.color--crimson .cmp-columns--photography-text-color-fix .text .clButtonIcon.mdc-button,
.columns.color--crimson .cmp-columns--photography-text-color-fix .clHeading .clButtonIcon.mdc-button,
.columns.color--crimson .cmp-columns--photography-text-color-fix .cmp-image__title .clButtonIcon.mdc-button {
  color: #ffffff !important;
}
.columns.color--crimson.inverse {
  background-color: #ffd7d7 !important;
}
.columns.color--crimson.inverse .cmp-columns--photography {
  background-size: cover !important;
  background-position: center !important;
}
.columns.color--crimson.inverse .cmp-columns--photography:before {
  background-color: #ffffff !important;
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  opacity: 0.3 !important;
}
.columns.color--crimson.inverse .cmp-columns--svg-background {
  background-color: #560900 !important;
}
.columns.color--crimson.inverse .cmp-title,
.columns.color--crimson.inverse .text,
.columns.color--crimson.inverse .clHeading,
.columns.color--crimson.inverse .cmp-image__title,
.columns.color--crimson.inverse .cmp-title h1,
.columns.color--crimson.inverse .text h1,
.columns.color--crimson.inverse .clHeading h1,
.columns.color--crimson.inverse .cmp-image__title h1,
.columns.color--crimson.inverse .cmp-title h2,
.columns.color--crimson.inverse .text h2,
.columns.color--crimson.inverse .clHeading h2,
.columns.color--crimson.inverse .cmp-image__title h2,
.columns.color--crimson.inverse .cmp-title h3,
.columns.color--crimson.inverse .text h3,
.columns.color--crimson.inverse .clHeading h3,
.columns.color--crimson.inverse .cmp-image__title h3,
.columns.color--crimson.inverse .cmp-title h4,
.columns.color--crimson.inverse .text h4,
.columns.color--crimson.inverse .clHeading h4,
.columns.color--crimson.inverse .cmp-image__title h4,
.columns.color--crimson.inverse .cmp-title h5,
.columns.color--crimson.inverse .text h5,
.columns.color--crimson.inverse .clHeading h5,
.columns.color--crimson.inverse .cmp-image__title h5,
.columns.color--crimson.inverse .cmp-title h6,
.columns.color--crimson.inverse .text h6,
.columns.color--crimson.inverse .clHeading h6,
.columns.color--crimson.inverse .cmp-image__title h6,
.columns.color--crimson.inverse .cmp-title p,
.columns.color--crimson.inverse .text p,
.columns.color--crimson.inverse .clHeading p,
.columns.color--crimson.inverse .cmp-image__title p,
.columns.color--crimson.inverse .cmp-title .label,
.columns.color--crimson.inverse .text .label,
.columns.color--crimson.inverse .clHeading .label,
.columns.color--crimson.inverse .cmp-image__title .label,
.columns.color--crimson.inverse .cmp-title .clButtonIcon.mdc-button,
.columns.color--crimson.inverse .text .clButtonIcon.mdc-button,
.columns.color--crimson.inverse .clHeading .clButtonIcon.mdc-button,
.columns.color--crimson.inverse .cmp-image__title .clButtonIcon.mdc-button {
  color: #560900 !important;
}
.columns.color--crimson.inverse .cmp-columns--photography-text-color-fix .cmp-title,
.columns.color--crimson.inverse .cmp-columns--photography-text-color-fix .text,
.columns.color--crimson.inverse .cmp-columns--photography-text-color-fix .clHeading,
.columns.color--crimson.inverse .cmp-columns--photography-text-color-fix .cmp-image__title,
.columns.color--crimson.inverse .cmp-columns--photography-text-color-fix .cmp-title h1,
.columns.color--crimson.inverse .cmp-columns--photography-text-color-fix .text h1,
.columns.color--crimson.inverse .cmp-columns--photography-text-color-fix .clHeading h1,
.columns.color--crimson.inverse .cmp-columns--photography-text-color-fix .cmp-image__title h1,
.columns.color--crimson.inverse .cmp-columns--photography-text-color-fix .cmp-title h2,
.columns.color--crimson.inverse .cmp-columns--photography-text-color-fix .text h2,
.columns.color--crimson.inverse .cmp-columns--photography-text-color-fix .clHeading h2,
.columns.color--crimson.inverse .cmp-columns--photography-text-color-fix .cmp-image__title h2,
.columns.color--crimson.inverse .cmp-columns--photography-text-color-fix .cmp-title h3,
.columns.color--crimson.inverse .cmp-columns--photography-text-color-fix .text h3,
.columns.color--crimson.inverse .cmp-columns--photography-text-color-fix .clHeading h3,
.columns.color--crimson.inverse .cmp-columns--photography-text-color-fix .cmp-image__title h3,
.columns.color--crimson.inverse .cmp-columns--photography-text-color-fix .cmp-title h4,
.columns.color--crimson.inverse .cmp-columns--photography-text-color-fix .text h4,
.columns.color--crimson.inverse .cmp-columns--photography-text-color-fix .clHeading h4,
.columns.color--crimson.inverse .cmp-columns--photography-text-color-fix .cmp-image__title h4,
.columns.color--crimson.inverse .cmp-columns--photography-text-color-fix .cmp-title h5,
.columns.color--crimson.inverse .cmp-columns--photography-text-color-fix .text h5,
.columns.color--crimson.inverse .cmp-columns--photography-text-color-fix .clHeading h5,
.columns.color--crimson.inverse .cmp-columns--photography-text-color-fix .cmp-image__title h5,
.columns.color--crimson.inverse .cmp-columns--photography-text-color-fix .cmp-title h6,
.columns.color--crimson.inverse .cmp-columns--photography-text-color-fix .text h6,
.columns.color--crimson.inverse .cmp-columns--photography-text-color-fix .clHeading h6,
.columns.color--crimson.inverse .cmp-columns--photography-text-color-fix .cmp-image__title h6,
.columns.color--crimson.inverse .cmp-columns--photography-text-color-fix .cmp-title p,
.columns.color--crimson.inverse .cmp-columns--photography-text-color-fix .text p,
.columns.color--crimson.inverse .cmp-columns--photography-text-color-fix .clHeading p,
.columns.color--crimson.inverse .cmp-columns--photography-text-color-fix .cmp-image__title p,
.columns.color--crimson.inverse .cmp-columns--photography-text-color-fix .cmp-title .label,
.columns.color--crimson.inverse .cmp-columns--photography-text-color-fix .text .label,
.columns.color--crimson.inverse .cmp-columns--photography-text-color-fix .clHeading .label,
.columns.color--crimson.inverse .cmp-columns--photography-text-color-fix .cmp-image__title .label,
.columns.color--crimson.inverse .cmp-columns--photography-text-color-fix .cmp-title .clButtonIcon.mdc-button,
.columns.color--crimson.inverse .cmp-columns--photography-text-color-fix .text .clButtonIcon.mdc-button,
.columns.color--crimson.inverse .cmp-columns--photography-text-color-fix .clHeading .clButtonIcon.mdc-button,
.columns.color--crimson.inverse .cmp-columns--photography-text-color-fix .cmp-image__title .clButtonIcon.mdc-button {
  color: #333333 !important;
}
.columns.color--forest {
  background-color: #023a00 !important;
  position: relative !important;
}
.columns.color--forest .cmp-columns--svg-background {
  background-color: #c8ffc0 !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  mask-size: cover !important;
  mask-position: center !important;
}
.columns.color--forest .cmp-columns--photography {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background-size: cover !important;
  background-position: center !important;
}
.columns.color--forest .cmp-columns--photography:before {
  background-color: #000835 !important;
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  opacity: 0.3 !important;
  content: "" !important;
}
.columns.color--forest .cmp-title,
.columns.color--forest .text,
.columns.color--forest .clHeading,
.columns.color--forest .cmp-image__title,
.columns.color--forest .cmp-title h1,
.columns.color--forest .text h1,
.columns.color--forest .clHeading h1,
.columns.color--forest .cmp-image__title h1,
.columns.color--forest .cmp-title h2,
.columns.color--forest .text h2,
.columns.color--forest .clHeading h2,
.columns.color--forest .cmp-image__title h2,
.columns.color--forest .cmp-title h3,
.columns.color--forest .text h3,
.columns.color--forest .clHeading h3,
.columns.color--forest .cmp-image__title h3,
.columns.color--forest .cmp-title h4,
.columns.color--forest .text h4,
.columns.color--forest .clHeading h4,
.columns.color--forest .cmp-image__title h4,
.columns.color--forest .cmp-title h5,
.columns.color--forest .text h5,
.columns.color--forest .clHeading h5,
.columns.color--forest .cmp-image__title h5,
.columns.color--forest .cmp-title h6,
.columns.color--forest .text h6,
.columns.color--forest .clHeading h6,
.columns.color--forest .cmp-image__title h6,
.columns.color--forest .cmp-title p,
.columns.color--forest .text p,
.columns.color--forest .clHeading p,
.columns.color--forest .cmp-image__title p,
.columns.color--forest .cmp-title .label,
.columns.color--forest .text .label,
.columns.color--forest .clHeading .label,
.columns.color--forest .cmp-image__title .label,
.columns.color--forest .cmp-title .clButtonIcon.mdc-button,
.columns.color--forest .text .clButtonIcon.mdc-button,
.columns.color--forest .clHeading .clButtonIcon.mdc-button,
.columns.color--forest .cmp-image__title .clButtonIcon.mdc-button {
  color: #f0ffec !important;
}
.columns.color--forest .cmp-columns--photography-text-color-fix .cmp-title,
.columns.color--forest .cmp-columns--photography-text-color-fix .text,
.columns.color--forest .cmp-columns--photography-text-color-fix .clHeading,
.columns.color--forest .cmp-columns--photography-text-color-fix .cmp-image__title,
.columns.color--forest .cmp-columns--photography-text-color-fix .cmp-title h1,
.columns.color--forest .cmp-columns--photography-text-color-fix .text h1,
.columns.color--forest .cmp-columns--photography-text-color-fix .clHeading h1,
.columns.color--forest .cmp-columns--photography-text-color-fix .cmp-image__title h1,
.columns.color--forest .cmp-columns--photography-text-color-fix .cmp-title h2,
.columns.color--forest .cmp-columns--photography-text-color-fix .text h2,
.columns.color--forest .cmp-columns--photography-text-color-fix .clHeading h2,
.columns.color--forest .cmp-columns--photography-text-color-fix .cmp-image__title h2,
.columns.color--forest .cmp-columns--photography-text-color-fix .cmp-title h3,
.columns.color--forest .cmp-columns--photography-text-color-fix .text h3,
.columns.color--forest .cmp-columns--photography-text-color-fix .clHeading h3,
.columns.color--forest .cmp-columns--photography-text-color-fix .cmp-image__title h3,
.columns.color--forest .cmp-columns--photography-text-color-fix .cmp-title h4,
.columns.color--forest .cmp-columns--photography-text-color-fix .text h4,
.columns.color--forest .cmp-columns--photography-text-color-fix .clHeading h4,
.columns.color--forest .cmp-columns--photography-text-color-fix .cmp-image__title h4,
.columns.color--forest .cmp-columns--photography-text-color-fix .cmp-title h5,
.columns.color--forest .cmp-columns--photography-text-color-fix .text h5,
.columns.color--forest .cmp-columns--photography-text-color-fix .clHeading h5,
.columns.color--forest .cmp-columns--photography-text-color-fix .cmp-image__title h5,
.columns.color--forest .cmp-columns--photography-text-color-fix .cmp-title h6,
.columns.color--forest .cmp-columns--photography-text-color-fix .text h6,
.columns.color--forest .cmp-columns--photography-text-color-fix .clHeading h6,
.columns.color--forest .cmp-columns--photography-text-color-fix .cmp-image__title h6,
.columns.color--forest .cmp-columns--photography-text-color-fix .cmp-title p,
.columns.color--forest .cmp-columns--photography-text-color-fix .text p,
.columns.color--forest .cmp-columns--photography-text-color-fix .clHeading p,
.columns.color--forest .cmp-columns--photography-text-color-fix .cmp-image__title p,
.columns.color--forest .cmp-columns--photography-text-color-fix .cmp-title .label,
.columns.color--forest .cmp-columns--photography-text-color-fix .text .label,
.columns.color--forest .cmp-columns--photography-text-color-fix .clHeading .label,
.columns.color--forest .cmp-columns--photography-text-color-fix .cmp-image__title .label,
.columns.color--forest .cmp-columns--photography-text-color-fix .cmp-title .clButtonIcon.mdc-button,
.columns.color--forest .cmp-columns--photography-text-color-fix .text .clButtonIcon.mdc-button,
.columns.color--forest .cmp-columns--photography-text-color-fix .clHeading .clButtonIcon.mdc-button,
.columns.color--forest .cmp-columns--photography-text-color-fix .cmp-image__title .clButtonIcon.mdc-button {
  color: #ffffff !important;
}
.columns.color--forest.inverse {
  background-color: #c8ffc0 !important;
}
.columns.color--forest.inverse .cmp-columns--photography {
  background-size: cover !important;
  background-position: center !important;
}
.columns.color--forest.inverse .cmp-columns--photography:before {
  background-color: #ffffff !important;
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  opacity: 0.3 !important;
}
.columns.color--forest.inverse .cmp-columns--svg-background {
  background-color: #023a00 !important;
}
.columns.color--forest.inverse .cmp-title,
.columns.color--forest.inverse .text,
.columns.color--forest.inverse .clHeading,
.columns.color--forest.inverse .cmp-image__title,
.columns.color--forest.inverse .cmp-title h1,
.columns.color--forest.inverse .text h1,
.columns.color--forest.inverse .clHeading h1,
.columns.color--forest.inverse .cmp-image__title h1,
.columns.color--forest.inverse .cmp-title h2,
.columns.color--forest.inverse .text h2,
.columns.color--forest.inverse .clHeading h2,
.columns.color--forest.inverse .cmp-image__title h2,
.columns.color--forest.inverse .cmp-title h3,
.columns.color--forest.inverse .text h3,
.columns.color--forest.inverse .clHeading h3,
.columns.color--forest.inverse .cmp-image__title h3,
.columns.color--forest.inverse .cmp-title h4,
.columns.color--forest.inverse .text h4,
.columns.color--forest.inverse .clHeading h4,
.columns.color--forest.inverse .cmp-image__title h4,
.columns.color--forest.inverse .cmp-title h5,
.columns.color--forest.inverse .text h5,
.columns.color--forest.inverse .clHeading h5,
.columns.color--forest.inverse .cmp-image__title h5,
.columns.color--forest.inverse .cmp-title h6,
.columns.color--forest.inverse .text h6,
.columns.color--forest.inverse .clHeading h6,
.columns.color--forest.inverse .cmp-image__title h6,
.columns.color--forest.inverse .cmp-title p,
.columns.color--forest.inverse .text p,
.columns.color--forest.inverse .clHeading p,
.columns.color--forest.inverse .cmp-image__title p,
.columns.color--forest.inverse .cmp-title .label,
.columns.color--forest.inverse .text .label,
.columns.color--forest.inverse .clHeading .label,
.columns.color--forest.inverse .cmp-image__title .label,
.columns.color--forest.inverse .cmp-title .clButtonIcon.mdc-button,
.columns.color--forest.inverse .text .clButtonIcon.mdc-button,
.columns.color--forest.inverse .clHeading .clButtonIcon.mdc-button,
.columns.color--forest.inverse .cmp-image__title .clButtonIcon.mdc-button {
  color: #023a00 !important;
}
.columns.color--forest.inverse .cmp-columns--photography-text-color-fix .cmp-title,
.columns.color--forest.inverse .cmp-columns--photography-text-color-fix .text,
.columns.color--forest.inverse .cmp-columns--photography-text-color-fix .clHeading,
.columns.color--forest.inverse .cmp-columns--photography-text-color-fix .cmp-image__title,
.columns.color--forest.inverse .cmp-columns--photography-text-color-fix .cmp-title h1,
.columns.color--forest.inverse .cmp-columns--photography-text-color-fix .text h1,
.columns.color--forest.inverse .cmp-columns--photography-text-color-fix .clHeading h1,
.columns.color--forest.inverse .cmp-columns--photography-text-color-fix .cmp-image__title h1,
.columns.color--forest.inverse .cmp-columns--photography-text-color-fix .cmp-title h2,
.columns.color--forest.inverse .cmp-columns--photography-text-color-fix .text h2,
.columns.color--forest.inverse .cmp-columns--photography-text-color-fix .clHeading h2,
.columns.color--forest.inverse .cmp-columns--photography-text-color-fix .cmp-image__title h2,
.columns.color--forest.inverse .cmp-columns--photography-text-color-fix .cmp-title h3,
.columns.color--forest.inverse .cmp-columns--photography-text-color-fix .text h3,
.columns.color--forest.inverse .cmp-columns--photography-text-color-fix .clHeading h3,
.columns.color--forest.inverse .cmp-columns--photography-text-color-fix .cmp-image__title h3,
.columns.color--forest.inverse .cmp-columns--photography-text-color-fix .cmp-title h4,
.columns.color--forest.inverse .cmp-columns--photography-text-color-fix .text h4,
.columns.color--forest.inverse .cmp-columns--photography-text-color-fix .clHeading h4,
.columns.color--forest.inverse .cmp-columns--photography-text-color-fix .cmp-image__title h4,
.columns.color--forest.inverse .cmp-columns--photography-text-color-fix .cmp-title h5,
.columns.color--forest.inverse .cmp-columns--photography-text-color-fix .text h5,
.columns.color--forest.inverse .cmp-columns--photography-text-color-fix .clHeading h5,
.columns.color--forest.inverse .cmp-columns--photography-text-color-fix .cmp-image__title h5,
.columns.color--forest.inverse .cmp-columns--photography-text-color-fix .cmp-title h6,
.columns.color--forest.inverse .cmp-columns--photography-text-color-fix .text h6,
.columns.color--forest.inverse .cmp-columns--photography-text-color-fix .clHeading h6,
.columns.color--forest.inverse .cmp-columns--photography-text-color-fix .cmp-image__title h6,
.columns.color--forest.inverse .cmp-columns--photography-text-color-fix .cmp-title p,
.columns.color--forest.inverse .cmp-columns--photography-text-color-fix .text p,
.columns.color--forest.inverse .cmp-columns--photography-text-color-fix .clHeading p,
.columns.color--forest.inverse .cmp-columns--photography-text-color-fix .cmp-image__title p,
.columns.color--forest.inverse .cmp-columns--photography-text-color-fix .cmp-title .label,
.columns.color--forest.inverse .cmp-columns--photography-text-color-fix .text .label,
.columns.color--forest.inverse .cmp-columns--photography-text-color-fix .clHeading .label,
.columns.color--forest.inverse .cmp-columns--photography-text-color-fix .cmp-image__title .label,
.columns.color--forest.inverse .cmp-columns--photography-text-color-fix .cmp-title .clButtonIcon.mdc-button,
.columns.color--forest.inverse .cmp-columns--photography-text-color-fix .text .clButtonIcon.mdc-button,
.columns.color--forest.inverse .cmp-columns--photography-text-color-fix .clHeading .clButtonIcon.mdc-button,
.columns.color--forest.inverse .cmp-columns--photography-text-color-fix .cmp-image__title .clButtonIcon.mdc-button {
  color: #333333 !important;
}
.columns.color--canary {
  background-color: #564a00 !important;
  position: relative !important;
}
.columns.color--canary .cmp-columns--svg-background {
  background-color: #fffeb0 !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  mask-size: cover !important;
  mask-position: center !important;
}
.columns.color--canary .cmp-columns--photography {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background-size: cover !important;
  background-position: center !important;
}
.columns.color--canary .cmp-columns--photography:before {
  background-color: #000835 !important;
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  opacity: 0.3 !important;
  content: "" !important;
}
.columns.color--canary .cmp-title,
.columns.color--canary .text,
.columns.color--canary .clHeading,
.columns.color--canary .cmp-image__title,
.columns.color--canary .cmp-title h1,
.columns.color--canary .text h1,
.columns.color--canary .clHeading h1,
.columns.color--canary .cmp-image__title h1,
.columns.color--canary .cmp-title h2,
.columns.color--canary .text h2,
.columns.color--canary .clHeading h2,
.columns.color--canary .cmp-image__title h2,
.columns.color--canary .cmp-title h3,
.columns.color--canary .text h3,
.columns.color--canary .clHeading h3,
.columns.color--canary .cmp-image__title h3,
.columns.color--canary .cmp-title h4,
.columns.color--canary .text h4,
.columns.color--canary .clHeading h4,
.columns.color--canary .cmp-image__title h4,
.columns.color--canary .cmp-title h5,
.columns.color--canary .text h5,
.columns.color--canary .clHeading h5,
.columns.color--canary .cmp-image__title h5,
.columns.color--canary .cmp-title h6,
.columns.color--canary .text h6,
.columns.color--canary .clHeading h6,
.columns.color--canary .cmp-image__title h6,
.columns.color--canary .cmp-title p,
.columns.color--canary .text p,
.columns.color--canary .clHeading p,
.columns.color--canary .cmp-image__title p,
.columns.color--canary .cmp-title .label,
.columns.color--canary .text .label,
.columns.color--canary .clHeading .label,
.columns.color--canary .cmp-image__title .label,
.columns.color--canary .cmp-title .clButtonIcon.mdc-button,
.columns.color--canary .text .clButtonIcon.mdc-button,
.columns.color--canary .clHeading .clButtonIcon.mdc-button,
.columns.color--canary .cmp-image__title .clButtonIcon.mdc-button {
  color: #fffeb0 !important;
}
.columns.color--canary .cmp-columns--photography-text-color-fix .cmp-title,
.columns.color--canary .cmp-columns--photography-text-color-fix .text,
.columns.color--canary .cmp-columns--photography-text-color-fix .clHeading,
.columns.color--canary .cmp-columns--photography-text-color-fix .cmp-image__title,
.columns.color--canary .cmp-columns--photography-text-color-fix .cmp-title h1,
.columns.color--canary .cmp-columns--photography-text-color-fix .text h1,
.columns.color--canary .cmp-columns--photography-text-color-fix .clHeading h1,
.columns.color--canary .cmp-columns--photography-text-color-fix .cmp-image__title h1,
.columns.color--canary .cmp-columns--photography-text-color-fix .cmp-title h2,
.columns.color--canary .cmp-columns--photography-text-color-fix .text h2,
.columns.color--canary .cmp-columns--photography-text-color-fix .clHeading h2,
.columns.color--canary .cmp-columns--photography-text-color-fix .cmp-image__title h2,
.columns.color--canary .cmp-columns--photography-text-color-fix .cmp-title h3,
.columns.color--canary .cmp-columns--photography-text-color-fix .text h3,
.columns.color--canary .cmp-columns--photography-text-color-fix .clHeading h3,
.columns.color--canary .cmp-columns--photography-text-color-fix .cmp-image__title h3,
.columns.color--canary .cmp-columns--photography-text-color-fix .cmp-title h4,
.columns.color--canary .cmp-columns--photography-text-color-fix .text h4,
.columns.color--canary .cmp-columns--photography-text-color-fix .clHeading h4,
.columns.color--canary .cmp-columns--photography-text-color-fix .cmp-image__title h4,
.columns.color--canary .cmp-columns--photography-text-color-fix .cmp-title h5,
.columns.color--canary .cmp-columns--photography-text-color-fix .text h5,
.columns.color--canary .cmp-columns--photography-text-color-fix .clHeading h5,
.columns.color--canary .cmp-columns--photography-text-color-fix .cmp-image__title h5,
.columns.color--canary .cmp-columns--photography-text-color-fix .cmp-title h6,
.columns.color--canary .cmp-columns--photography-text-color-fix .text h6,
.columns.color--canary .cmp-columns--photography-text-color-fix .clHeading h6,
.columns.color--canary .cmp-columns--photography-text-color-fix .cmp-image__title h6,
.columns.color--canary .cmp-columns--photography-text-color-fix .cmp-title p,
.columns.color--canary .cmp-columns--photography-text-color-fix .text p,
.columns.color--canary .cmp-columns--photography-text-color-fix .clHeading p,
.columns.color--canary .cmp-columns--photography-text-color-fix .cmp-image__title p,
.columns.color--canary .cmp-columns--photography-text-color-fix .cmp-title .label,
.columns.color--canary .cmp-columns--photography-text-color-fix .text .label,
.columns.color--canary .cmp-columns--photography-text-color-fix .clHeading .label,
.columns.color--canary .cmp-columns--photography-text-color-fix .cmp-image__title .label,
.columns.color--canary .cmp-columns--photography-text-color-fix .cmp-title .clButtonIcon.mdc-button,
.columns.color--canary .cmp-columns--photography-text-color-fix .text .clButtonIcon.mdc-button,
.columns.color--canary .cmp-columns--photography-text-color-fix .clHeading .clButtonIcon.mdc-button,
.columns.color--canary .cmp-columns--photography-text-color-fix .cmp-image__title .clButtonIcon.mdc-button {
  color: #ffffff !important;
}
.columns.color--canary.inverse {
  background-color: #fffeb0 !important;
}
.columns.color--canary.inverse .cmp-columns--photography {
  background-size: cover !important;
  background-position: center !important;
}
.columns.color--canary.inverse .cmp-columns--photography:before {
  background-color: #ffffff !important;
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  opacity: 0.3 !important;
}
.columns.color--canary.inverse .cmp-columns--svg-background {
  background-color: #564a00 !important;
}
.columns.color--canary.inverse .cmp-title,
.columns.color--canary.inverse .text,
.columns.color--canary.inverse .clHeading,
.columns.color--canary.inverse .cmp-image__title,
.columns.color--canary.inverse .cmp-title h1,
.columns.color--canary.inverse .text h1,
.columns.color--canary.inverse .clHeading h1,
.columns.color--canary.inverse .cmp-image__title h1,
.columns.color--canary.inverse .cmp-title h2,
.columns.color--canary.inverse .text h2,
.columns.color--canary.inverse .clHeading h2,
.columns.color--canary.inverse .cmp-image__title h2,
.columns.color--canary.inverse .cmp-title h3,
.columns.color--canary.inverse .text h3,
.columns.color--canary.inverse .clHeading h3,
.columns.color--canary.inverse .cmp-image__title h3,
.columns.color--canary.inverse .cmp-title h4,
.columns.color--canary.inverse .text h4,
.columns.color--canary.inverse .clHeading h4,
.columns.color--canary.inverse .cmp-image__title h4,
.columns.color--canary.inverse .cmp-title h5,
.columns.color--canary.inverse .text h5,
.columns.color--canary.inverse .clHeading h5,
.columns.color--canary.inverse .cmp-image__title h5,
.columns.color--canary.inverse .cmp-title h6,
.columns.color--canary.inverse .text h6,
.columns.color--canary.inverse .clHeading h6,
.columns.color--canary.inverse .cmp-image__title h6,
.columns.color--canary.inverse .cmp-title p,
.columns.color--canary.inverse .text p,
.columns.color--canary.inverse .clHeading p,
.columns.color--canary.inverse .cmp-image__title p,
.columns.color--canary.inverse .cmp-title .label,
.columns.color--canary.inverse .text .label,
.columns.color--canary.inverse .clHeading .label,
.columns.color--canary.inverse .cmp-image__title .label,
.columns.color--canary.inverse .cmp-title .clButtonIcon.mdc-button,
.columns.color--canary.inverse .text .clButtonIcon.mdc-button,
.columns.color--canary.inverse .clHeading .clButtonIcon.mdc-button,
.columns.color--canary.inverse .cmp-image__title .clButtonIcon.mdc-button {
  color: #564a00 !important;
}
.columns.color--canary.inverse .cmp-columns--photography-text-color-fix .cmp-title,
.columns.color--canary.inverse .cmp-columns--photography-text-color-fix .text,
.columns.color--canary.inverse .cmp-columns--photography-text-color-fix .clHeading,
.columns.color--canary.inverse .cmp-columns--photography-text-color-fix .cmp-image__title,
.columns.color--canary.inverse .cmp-columns--photography-text-color-fix .cmp-title h1,
.columns.color--canary.inverse .cmp-columns--photography-text-color-fix .text h1,
.columns.color--canary.inverse .cmp-columns--photography-text-color-fix .clHeading h1,
.columns.color--canary.inverse .cmp-columns--photography-text-color-fix .cmp-image__title h1,
.columns.color--canary.inverse .cmp-columns--photography-text-color-fix .cmp-title h2,
.columns.color--canary.inverse .cmp-columns--photography-text-color-fix .text h2,
.columns.color--canary.inverse .cmp-columns--photography-text-color-fix .clHeading h2,
.columns.color--canary.inverse .cmp-columns--photography-text-color-fix .cmp-image__title h2,
.columns.color--canary.inverse .cmp-columns--photography-text-color-fix .cmp-title h3,
.columns.color--canary.inverse .cmp-columns--photography-text-color-fix .text h3,
.columns.color--canary.inverse .cmp-columns--photography-text-color-fix .clHeading h3,
.columns.color--canary.inverse .cmp-columns--photography-text-color-fix .cmp-image__title h3,
.columns.color--canary.inverse .cmp-columns--photography-text-color-fix .cmp-title h4,
.columns.color--canary.inverse .cmp-columns--photography-text-color-fix .text h4,
.columns.color--canary.inverse .cmp-columns--photography-text-color-fix .clHeading h4,
.columns.color--canary.inverse .cmp-columns--photography-text-color-fix .cmp-image__title h4,
.columns.color--canary.inverse .cmp-columns--photography-text-color-fix .cmp-title h5,
.columns.color--canary.inverse .cmp-columns--photography-text-color-fix .text h5,
.columns.color--canary.inverse .cmp-columns--photography-text-color-fix .clHeading h5,
.columns.color--canary.inverse .cmp-columns--photography-text-color-fix .cmp-image__title h5,
.columns.color--canary.inverse .cmp-columns--photography-text-color-fix .cmp-title h6,
.columns.color--canary.inverse .cmp-columns--photography-text-color-fix .text h6,
.columns.color--canary.inverse .cmp-columns--photography-text-color-fix .clHeading h6,
.columns.color--canary.inverse .cmp-columns--photography-text-color-fix .cmp-image__title h6,
.columns.color--canary.inverse .cmp-columns--photography-text-color-fix .cmp-title p,
.columns.color--canary.inverse .cmp-columns--photography-text-color-fix .text p,
.columns.color--canary.inverse .cmp-columns--photography-text-color-fix .clHeading p,
.columns.color--canary.inverse .cmp-columns--photography-text-color-fix .cmp-image__title p,
.columns.color--canary.inverse .cmp-columns--photography-text-color-fix .cmp-title .label,
.columns.color--canary.inverse .cmp-columns--photography-text-color-fix .text .label,
.columns.color--canary.inverse .cmp-columns--photography-text-color-fix .clHeading .label,
.columns.color--canary.inverse .cmp-columns--photography-text-color-fix .cmp-image__title .label,
.columns.color--canary.inverse .cmp-columns--photography-text-color-fix .cmp-title .clButtonIcon.mdc-button,
.columns.color--canary.inverse .cmp-columns--photography-text-color-fix .text .clButtonIcon.mdc-button,
.columns.color--canary.inverse .cmp-columns--photography-text-color-fix .clHeading .clButtonIcon.mdc-button,
.columns.color--canary.inverse .cmp-columns--photography-text-color-fix .cmp-image__title .clButtonIcon.mdc-button {
  color: #333333 !important;
}
.columns.color--fuchsia {
  background-color: #4f0230 !important;
  position: relative !important;
}
.columns.color--fuchsia .cmp-columns--svg-background {
  background-color: #fcc5f9 !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  mask-size: cover !important;
  mask-position: center !important;
}
.columns.color--fuchsia .cmp-columns--photography {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background-size: cover !important;
  background-position: center !important;
}
.columns.color--fuchsia .cmp-columns--photography:before {
  background-color: #000835 !important;
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  opacity: 0.3 !important;
  content: "" !important;
}
.columns.color--fuchsia .cmp-title,
.columns.color--fuchsia .text,
.columns.color--fuchsia .clHeading,
.columns.color--fuchsia .cmp-image__title,
.columns.color--fuchsia .cmp-title h1,
.columns.color--fuchsia .text h1,
.columns.color--fuchsia .clHeading h1,
.columns.color--fuchsia .cmp-image__title h1,
.columns.color--fuchsia .cmp-title h2,
.columns.color--fuchsia .text h2,
.columns.color--fuchsia .clHeading h2,
.columns.color--fuchsia .cmp-image__title h2,
.columns.color--fuchsia .cmp-title h3,
.columns.color--fuchsia .text h3,
.columns.color--fuchsia .clHeading h3,
.columns.color--fuchsia .cmp-image__title h3,
.columns.color--fuchsia .cmp-title h4,
.columns.color--fuchsia .text h4,
.columns.color--fuchsia .clHeading h4,
.columns.color--fuchsia .cmp-image__title h4,
.columns.color--fuchsia .cmp-title h5,
.columns.color--fuchsia .text h5,
.columns.color--fuchsia .clHeading h5,
.columns.color--fuchsia .cmp-image__title h5,
.columns.color--fuchsia .cmp-title h6,
.columns.color--fuchsia .text h6,
.columns.color--fuchsia .clHeading h6,
.columns.color--fuchsia .cmp-image__title h6,
.columns.color--fuchsia .cmp-title p,
.columns.color--fuchsia .text p,
.columns.color--fuchsia .clHeading p,
.columns.color--fuchsia .cmp-image__title p,
.columns.color--fuchsia .cmp-title .label,
.columns.color--fuchsia .text .label,
.columns.color--fuchsia .clHeading .label,
.columns.color--fuchsia .cmp-image__title .label,
.columns.color--fuchsia .cmp-title .clButtonIcon.mdc-button,
.columns.color--fuchsia .text .clButtonIcon.mdc-button,
.columns.color--fuchsia .clHeading .clButtonIcon.mdc-button,
.columns.color--fuchsia .cmp-image__title .clButtonIcon.mdc-button {
  color: #fcc5f9 !important;
}
.columns.color--fuchsia .cmp-columns--photography-text-color-fix .cmp-title,
.columns.color--fuchsia .cmp-columns--photography-text-color-fix .text,
.columns.color--fuchsia .cmp-columns--photography-text-color-fix .clHeading,
.columns.color--fuchsia .cmp-columns--photography-text-color-fix .cmp-image__title,
.columns.color--fuchsia .cmp-columns--photography-text-color-fix .cmp-title h1,
.columns.color--fuchsia .cmp-columns--photography-text-color-fix .text h1,
.columns.color--fuchsia .cmp-columns--photography-text-color-fix .clHeading h1,
.columns.color--fuchsia .cmp-columns--photography-text-color-fix .cmp-image__title h1,
.columns.color--fuchsia .cmp-columns--photography-text-color-fix .cmp-title h2,
.columns.color--fuchsia .cmp-columns--photography-text-color-fix .text h2,
.columns.color--fuchsia .cmp-columns--photography-text-color-fix .clHeading h2,
.columns.color--fuchsia .cmp-columns--photography-text-color-fix .cmp-image__title h2,
.columns.color--fuchsia .cmp-columns--photography-text-color-fix .cmp-title h3,
.columns.color--fuchsia .cmp-columns--photography-text-color-fix .text h3,
.columns.color--fuchsia .cmp-columns--photography-text-color-fix .clHeading h3,
.columns.color--fuchsia .cmp-columns--photography-text-color-fix .cmp-image__title h3,
.columns.color--fuchsia .cmp-columns--photography-text-color-fix .cmp-title h4,
.columns.color--fuchsia .cmp-columns--photography-text-color-fix .text h4,
.columns.color--fuchsia .cmp-columns--photography-text-color-fix .clHeading h4,
.columns.color--fuchsia .cmp-columns--photography-text-color-fix .cmp-image__title h4,
.columns.color--fuchsia .cmp-columns--photography-text-color-fix .cmp-title h5,
.columns.color--fuchsia .cmp-columns--photography-text-color-fix .text h5,
.columns.color--fuchsia .cmp-columns--photography-text-color-fix .clHeading h5,
.columns.color--fuchsia .cmp-columns--photography-text-color-fix .cmp-image__title h5,
.columns.color--fuchsia .cmp-columns--photography-text-color-fix .cmp-title h6,
.columns.color--fuchsia .cmp-columns--photography-text-color-fix .text h6,
.columns.color--fuchsia .cmp-columns--photography-text-color-fix .clHeading h6,
.columns.color--fuchsia .cmp-columns--photography-text-color-fix .cmp-image__title h6,
.columns.color--fuchsia .cmp-columns--photography-text-color-fix .cmp-title p,
.columns.color--fuchsia .cmp-columns--photography-text-color-fix .text p,
.columns.color--fuchsia .cmp-columns--photography-text-color-fix .clHeading p,
.columns.color--fuchsia .cmp-columns--photography-text-color-fix .cmp-image__title p,
.columns.color--fuchsia .cmp-columns--photography-text-color-fix .cmp-title .label,
.columns.color--fuchsia .cmp-columns--photography-text-color-fix .text .label,
.columns.color--fuchsia .cmp-columns--photography-text-color-fix .clHeading .label,
.columns.color--fuchsia .cmp-columns--photography-text-color-fix .cmp-image__title .label,
.columns.color--fuchsia .cmp-columns--photography-text-color-fix .cmp-title .clButtonIcon.mdc-button,
.columns.color--fuchsia .cmp-columns--photography-text-color-fix .text .clButtonIcon.mdc-button,
.columns.color--fuchsia .cmp-columns--photography-text-color-fix .clHeading .clButtonIcon.mdc-button,
.columns.color--fuchsia .cmp-columns--photography-text-color-fix .cmp-image__title .clButtonIcon.mdc-button {
  color: #ffffff !important;
}
.columns.color--fuchsia.inverse {
  background-color: #fcc5f9 !important;
}
.columns.color--fuchsia.inverse .cmp-columns--photography {
  background-size: cover !important;
  background-position: center !important;
}
.columns.color--fuchsia.inverse .cmp-columns--photography:before {
  background-color: #ffffff !important;
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  opacity: 0.3 !important;
}
.columns.color--fuchsia.inverse .cmp-columns--svg-background {
  background-color: #4f0230 !important;
}
.columns.color--fuchsia.inverse .cmp-title,
.columns.color--fuchsia.inverse .text,
.columns.color--fuchsia.inverse .clHeading,
.columns.color--fuchsia.inverse .cmp-image__title,
.columns.color--fuchsia.inverse .cmp-title h1,
.columns.color--fuchsia.inverse .text h1,
.columns.color--fuchsia.inverse .clHeading h1,
.columns.color--fuchsia.inverse .cmp-image__title h1,
.columns.color--fuchsia.inverse .cmp-title h2,
.columns.color--fuchsia.inverse .text h2,
.columns.color--fuchsia.inverse .clHeading h2,
.columns.color--fuchsia.inverse .cmp-image__title h2,
.columns.color--fuchsia.inverse .cmp-title h3,
.columns.color--fuchsia.inverse .text h3,
.columns.color--fuchsia.inverse .clHeading h3,
.columns.color--fuchsia.inverse .cmp-image__title h3,
.columns.color--fuchsia.inverse .cmp-title h4,
.columns.color--fuchsia.inverse .text h4,
.columns.color--fuchsia.inverse .clHeading h4,
.columns.color--fuchsia.inverse .cmp-image__title h4,
.columns.color--fuchsia.inverse .cmp-title h5,
.columns.color--fuchsia.inverse .text h5,
.columns.color--fuchsia.inverse .clHeading h5,
.columns.color--fuchsia.inverse .cmp-image__title h5,
.columns.color--fuchsia.inverse .cmp-title h6,
.columns.color--fuchsia.inverse .text h6,
.columns.color--fuchsia.inverse .clHeading h6,
.columns.color--fuchsia.inverse .cmp-image__title h6,
.columns.color--fuchsia.inverse .cmp-title p,
.columns.color--fuchsia.inverse .text p,
.columns.color--fuchsia.inverse .clHeading p,
.columns.color--fuchsia.inverse .cmp-image__title p,
.columns.color--fuchsia.inverse .cmp-title .label,
.columns.color--fuchsia.inverse .text .label,
.columns.color--fuchsia.inverse .clHeading .label,
.columns.color--fuchsia.inverse .cmp-image__title .label,
.columns.color--fuchsia.inverse .cmp-title .clButtonIcon.mdc-button,
.columns.color--fuchsia.inverse .text .clButtonIcon.mdc-button,
.columns.color--fuchsia.inverse .clHeading .clButtonIcon.mdc-button,
.columns.color--fuchsia.inverse .cmp-image__title .clButtonIcon.mdc-button {
  color: #4f0230 !important;
}
.columns.color--fuchsia.inverse .cmp-columns--photography-text-color-fix .cmp-title,
.columns.color--fuchsia.inverse .cmp-columns--photography-text-color-fix .text,
.columns.color--fuchsia.inverse .cmp-columns--photography-text-color-fix .clHeading,
.columns.color--fuchsia.inverse .cmp-columns--photography-text-color-fix .cmp-image__title,
.columns.color--fuchsia.inverse .cmp-columns--photography-text-color-fix .cmp-title h1,
.columns.color--fuchsia.inverse .cmp-columns--photography-text-color-fix .text h1,
.columns.color--fuchsia.inverse .cmp-columns--photography-text-color-fix .clHeading h1,
.columns.color--fuchsia.inverse .cmp-columns--photography-text-color-fix .cmp-image__title h1,
.columns.color--fuchsia.inverse .cmp-columns--photography-text-color-fix .cmp-title h2,
.columns.color--fuchsia.inverse .cmp-columns--photography-text-color-fix .text h2,
.columns.color--fuchsia.inverse .cmp-columns--photography-text-color-fix .clHeading h2,
.columns.color--fuchsia.inverse .cmp-columns--photography-text-color-fix .cmp-image__title h2,
.columns.color--fuchsia.inverse .cmp-columns--photography-text-color-fix .cmp-title h3,
.columns.color--fuchsia.inverse .cmp-columns--photography-text-color-fix .text h3,
.columns.color--fuchsia.inverse .cmp-columns--photography-text-color-fix .clHeading h3,
.columns.color--fuchsia.inverse .cmp-columns--photography-text-color-fix .cmp-image__title h3,
.columns.color--fuchsia.inverse .cmp-columns--photography-text-color-fix .cmp-title h4,
.columns.color--fuchsia.inverse .cmp-columns--photography-text-color-fix .text h4,
.columns.color--fuchsia.inverse .cmp-columns--photography-text-color-fix .clHeading h4,
.columns.color--fuchsia.inverse .cmp-columns--photography-text-color-fix .cmp-image__title h4,
.columns.color--fuchsia.inverse .cmp-columns--photography-text-color-fix .cmp-title h5,
.columns.color--fuchsia.inverse .cmp-columns--photography-text-color-fix .text h5,
.columns.color--fuchsia.inverse .cmp-columns--photography-text-color-fix .clHeading h5,
.columns.color--fuchsia.inverse .cmp-columns--photography-text-color-fix .cmp-image__title h5,
.columns.color--fuchsia.inverse .cmp-columns--photography-text-color-fix .cmp-title h6,
.columns.color--fuchsia.inverse .cmp-columns--photography-text-color-fix .text h6,
.columns.color--fuchsia.inverse .cmp-columns--photography-text-color-fix .clHeading h6,
.columns.color--fuchsia.inverse .cmp-columns--photography-text-color-fix .cmp-image__title h6,
.columns.color--fuchsia.inverse .cmp-columns--photography-text-color-fix .cmp-title p,
.columns.color--fuchsia.inverse .cmp-columns--photography-text-color-fix .text p,
.columns.color--fuchsia.inverse .cmp-columns--photography-text-color-fix .clHeading p,
.columns.color--fuchsia.inverse .cmp-columns--photography-text-color-fix .cmp-image__title p,
.columns.color--fuchsia.inverse .cmp-columns--photography-text-color-fix .cmp-title .label,
.columns.color--fuchsia.inverse .cmp-columns--photography-text-color-fix .text .label,
.columns.color--fuchsia.inverse .cmp-columns--photography-text-color-fix .clHeading .label,
.columns.color--fuchsia.inverse .cmp-columns--photography-text-color-fix .cmp-image__title .label,
.columns.color--fuchsia.inverse .cmp-columns--photography-text-color-fix .cmp-title .clButtonIcon.mdc-button,
.columns.color--fuchsia.inverse .cmp-columns--photography-text-color-fix .text .clButtonIcon.mdc-button,
.columns.color--fuchsia.inverse .cmp-columns--photography-text-color-fix .clHeading .clButtonIcon.mdc-button,
.columns.color--fuchsia.inverse .cmp-columns--photography-text-color-fix .cmp-image__title .clButtonIcon.mdc-button {
  color: #333333 !important;
}
.columns.color--pumpkin {
  background-color: #5b2500 !important;
  position: relative !important;
}
.columns.color--pumpkin .cmp-columns--svg-background {
  background-color: #ffd9c4 !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  mask-size: cover !important;
  mask-position: center !important;
}
.columns.color--pumpkin .cmp-columns--photography {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background-size: cover !important;
  background-position: center !important;
}
.columns.color--pumpkin .cmp-columns--photography:before {
  background-color: #000835 !important;
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  opacity: 0.3 !important;
  content: "" !important;
}
.columns.color--pumpkin .cmp-title,
.columns.color--pumpkin .text,
.columns.color--pumpkin .clHeading,
.columns.color--pumpkin .cmp-image__title,
.columns.color--pumpkin .cmp-title h1,
.columns.color--pumpkin .text h1,
.columns.color--pumpkin .clHeading h1,
.columns.color--pumpkin .cmp-image__title h1,
.columns.color--pumpkin .cmp-title h2,
.columns.color--pumpkin .text h2,
.columns.color--pumpkin .clHeading h2,
.columns.color--pumpkin .cmp-image__title h2,
.columns.color--pumpkin .cmp-title h3,
.columns.color--pumpkin .text h3,
.columns.color--pumpkin .clHeading h3,
.columns.color--pumpkin .cmp-image__title h3,
.columns.color--pumpkin .cmp-title h4,
.columns.color--pumpkin .text h4,
.columns.color--pumpkin .clHeading h4,
.columns.color--pumpkin .cmp-image__title h4,
.columns.color--pumpkin .cmp-title h5,
.columns.color--pumpkin .text h5,
.columns.color--pumpkin .clHeading h5,
.columns.color--pumpkin .cmp-image__title h5,
.columns.color--pumpkin .cmp-title h6,
.columns.color--pumpkin .text h6,
.columns.color--pumpkin .clHeading h6,
.columns.color--pumpkin .cmp-image__title h6,
.columns.color--pumpkin .cmp-title p,
.columns.color--pumpkin .text p,
.columns.color--pumpkin .clHeading p,
.columns.color--pumpkin .cmp-image__title p,
.columns.color--pumpkin .cmp-title .label,
.columns.color--pumpkin .text .label,
.columns.color--pumpkin .clHeading .label,
.columns.color--pumpkin .cmp-image__title .label,
.columns.color--pumpkin .cmp-title .clButtonIcon.mdc-button,
.columns.color--pumpkin .text .clButtonIcon.mdc-button,
.columns.color--pumpkin .clHeading .clButtonIcon.mdc-button,
.columns.color--pumpkin .cmp-image__title .clButtonIcon.mdc-button {
  color: #ffd9c4 !important;
}
.columns.color--pumpkin .cmp-columns--photography-text-color-fix .cmp-title,
.columns.color--pumpkin .cmp-columns--photography-text-color-fix .text,
.columns.color--pumpkin .cmp-columns--photography-text-color-fix .clHeading,
.columns.color--pumpkin .cmp-columns--photography-text-color-fix .cmp-image__title,
.columns.color--pumpkin .cmp-columns--photography-text-color-fix .cmp-title h1,
.columns.color--pumpkin .cmp-columns--photography-text-color-fix .text h1,
.columns.color--pumpkin .cmp-columns--photography-text-color-fix .clHeading h1,
.columns.color--pumpkin .cmp-columns--photography-text-color-fix .cmp-image__title h1,
.columns.color--pumpkin .cmp-columns--photography-text-color-fix .cmp-title h2,
.columns.color--pumpkin .cmp-columns--photography-text-color-fix .text h2,
.columns.color--pumpkin .cmp-columns--photography-text-color-fix .clHeading h2,
.columns.color--pumpkin .cmp-columns--photography-text-color-fix .cmp-image__title h2,
.columns.color--pumpkin .cmp-columns--photography-text-color-fix .cmp-title h3,
.columns.color--pumpkin .cmp-columns--photography-text-color-fix .text h3,
.columns.color--pumpkin .cmp-columns--photography-text-color-fix .clHeading h3,
.columns.color--pumpkin .cmp-columns--photography-text-color-fix .cmp-image__title h3,
.columns.color--pumpkin .cmp-columns--photography-text-color-fix .cmp-title h4,
.columns.color--pumpkin .cmp-columns--photography-text-color-fix .text h4,
.columns.color--pumpkin .cmp-columns--photography-text-color-fix .clHeading h4,
.columns.color--pumpkin .cmp-columns--photography-text-color-fix .cmp-image__title h4,
.columns.color--pumpkin .cmp-columns--photography-text-color-fix .cmp-title h5,
.columns.color--pumpkin .cmp-columns--photography-text-color-fix .text h5,
.columns.color--pumpkin .cmp-columns--photography-text-color-fix .clHeading h5,
.columns.color--pumpkin .cmp-columns--photography-text-color-fix .cmp-image__title h5,
.columns.color--pumpkin .cmp-columns--photography-text-color-fix .cmp-title h6,
.columns.color--pumpkin .cmp-columns--photography-text-color-fix .text h6,
.columns.color--pumpkin .cmp-columns--photography-text-color-fix .clHeading h6,
.columns.color--pumpkin .cmp-columns--photography-text-color-fix .cmp-image__title h6,
.columns.color--pumpkin .cmp-columns--photography-text-color-fix .cmp-title p,
.columns.color--pumpkin .cmp-columns--photography-text-color-fix .text p,
.columns.color--pumpkin .cmp-columns--photography-text-color-fix .clHeading p,
.columns.color--pumpkin .cmp-columns--photography-text-color-fix .cmp-image__title p,
.columns.color--pumpkin .cmp-columns--photography-text-color-fix .cmp-title .label,
.columns.color--pumpkin .cmp-columns--photography-text-color-fix .text .label,
.columns.color--pumpkin .cmp-columns--photography-text-color-fix .clHeading .label,
.columns.color--pumpkin .cmp-columns--photography-text-color-fix .cmp-image__title .label,
.columns.color--pumpkin .cmp-columns--photography-text-color-fix .cmp-title .clButtonIcon.mdc-button,
.columns.color--pumpkin .cmp-columns--photography-text-color-fix .text .clButtonIcon.mdc-button,
.columns.color--pumpkin .cmp-columns--photography-text-color-fix .clHeading .clButtonIcon.mdc-button,
.columns.color--pumpkin .cmp-columns--photography-text-color-fix .cmp-image__title .clButtonIcon.mdc-button {
  color: #ffffff !important;
}
.columns.color--pumpkin.inverse {
  background-color: #ffd9c4 !important;
}
.columns.color--pumpkin.inverse .cmp-columns--photography {
  background-size: cover !important;
  background-position: center !important;
}
.columns.color--pumpkin.inverse .cmp-columns--photography:before {
  background-color: #ffffff !important;
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  opacity: 0.3 !important;
}
.columns.color--pumpkin.inverse .cmp-columns--svg-background {
  background-color: #5b2500 !important;
}
.columns.color--pumpkin.inverse .cmp-title,
.columns.color--pumpkin.inverse .text,
.columns.color--pumpkin.inverse .clHeading,
.columns.color--pumpkin.inverse .cmp-image__title,
.columns.color--pumpkin.inverse .cmp-title h1,
.columns.color--pumpkin.inverse .text h1,
.columns.color--pumpkin.inverse .clHeading h1,
.columns.color--pumpkin.inverse .cmp-image__title h1,
.columns.color--pumpkin.inverse .cmp-title h2,
.columns.color--pumpkin.inverse .text h2,
.columns.color--pumpkin.inverse .clHeading h2,
.columns.color--pumpkin.inverse .cmp-image__title h2,
.columns.color--pumpkin.inverse .cmp-title h3,
.columns.color--pumpkin.inverse .text h3,
.columns.color--pumpkin.inverse .clHeading h3,
.columns.color--pumpkin.inverse .cmp-image__title h3,
.columns.color--pumpkin.inverse .cmp-title h4,
.columns.color--pumpkin.inverse .text h4,
.columns.color--pumpkin.inverse .clHeading h4,
.columns.color--pumpkin.inverse .cmp-image__title h4,
.columns.color--pumpkin.inverse .cmp-title h5,
.columns.color--pumpkin.inverse .text h5,
.columns.color--pumpkin.inverse .clHeading h5,
.columns.color--pumpkin.inverse .cmp-image__title h5,
.columns.color--pumpkin.inverse .cmp-title h6,
.columns.color--pumpkin.inverse .text h6,
.columns.color--pumpkin.inverse .clHeading h6,
.columns.color--pumpkin.inverse .cmp-image__title h6,
.columns.color--pumpkin.inverse .cmp-title p,
.columns.color--pumpkin.inverse .text p,
.columns.color--pumpkin.inverse .clHeading p,
.columns.color--pumpkin.inverse .cmp-image__title p,
.columns.color--pumpkin.inverse .cmp-title .label,
.columns.color--pumpkin.inverse .text .label,
.columns.color--pumpkin.inverse .clHeading .label,
.columns.color--pumpkin.inverse .cmp-image__title .label,
.columns.color--pumpkin.inverse .cmp-title .clButtonIcon.mdc-button,
.columns.color--pumpkin.inverse .text .clButtonIcon.mdc-button,
.columns.color--pumpkin.inverse .clHeading .clButtonIcon.mdc-button,
.columns.color--pumpkin.inverse .cmp-image__title .clButtonIcon.mdc-button {
  color: #5b2500 !important;
}
.columns.color--pumpkin.inverse .cmp-columns--photography-text-color-fix .cmp-title,
.columns.color--pumpkin.inverse .cmp-columns--photography-text-color-fix .text,
.columns.color--pumpkin.inverse .cmp-columns--photography-text-color-fix .clHeading,
.columns.color--pumpkin.inverse .cmp-columns--photography-text-color-fix .cmp-image__title,
.columns.color--pumpkin.inverse .cmp-columns--photography-text-color-fix .cmp-title h1,
.columns.color--pumpkin.inverse .cmp-columns--photography-text-color-fix .text h1,
.columns.color--pumpkin.inverse .cmp-columns--photography-text-color-fix .clHeading h1,
.columns.color--pumpkin.inverse .cmp-columns--photography-text-color-fix .cmp-image__title h1,
.columns.color--pumpkin.inverse .cmp-columns--photography-text-color-fix .cmp-title h2,
.columns.color--pumpkin.inverse .cmp-columns--photography-text-color-fix .text h2,
.columns.color--pumpkin.inverse .cmp-columns--photography-text-color-fix .clHeading h2,
.columns.color--pumpkin.inverse .cmp-columns--photography-text-color-fix .cmp-image__title h2,
.columns.color--pumpkin.inverse .cmp-columns--photography-text-color-fix .cmp-title h3,
.columns.color--pumpkin.inverse .cmp-columns--photography-text-color-fix .text h3,
.columns.color--pumpkin.inverse .cmp-columns--photography-text-color-fix .clHeading h3,
.columns.color--pumpkin.inverse .cmp-columns--photography-text-color-fix .cmp-image__title h3,
.columns.color--pumpkin.inverse .cmp-columns--photography-text-color-fix .cmp-title h4,
.columns.color--pumpkin.inverse .cmp-columns--photography-text-color-fix .text h4,
.columns.color--pumpkin.inverse .cmp-columns--photography-text-color-fix .clHeading h4,
.columns.color--pumpkin.inverse .cmp-columns--photography-text-color-fix .cmp-image__title h4,
.columns.color--pumpkin.inverse .cmp-columns--photography-text-color-fix .cmp-title h5,
.columns.color--pumpkin.inverse .cmp-columns--photography-text-color-fix .text h5,
.columns.color--pumpkin.inverse .cmp-columns--photography-text-color-fix .clHeading h5,
.columns.color--pumpkin.inverse .cmp-columns--photography-text-color-fix .cmp-image__title h5,
.columns.color--pumpkin.inverse .cmp-columns--photography-text-color-fix .cmp-title h6,
.columns.color--pumpkin.inverse .cmp-columns--photography-text-color-fix .text h6,
.columns.color--pumpkin.inverse .cmp-columns--photography-text-color-fix .clHeading h6,
.columns.color--pumpkin.inverse .cmp-columns--photography-text-color-fix .cmp-image__title h6,
.columns.color--pumpkin.inverse .cmp-columns--photography-text-color-fix .cmp-title p,
.columns.color--pumpkin.inverse .cmp-columns--photography-text-color-fix .text p,
.columns.color--pumpkin.inverse .cmp-columns--photography-text-color-fix .clHeading p,
.columns.color--pumpkin.inverse .cmp-columns--photography-text-color-fix .cmp-image__title p,
.columns.color--pumpkin.inverse .cmp-columns--photography-text-color-fix .cmp-title .label,
.columns.color--pumpkin.inverse .cmp-columns--photography-text-color-fix .text .label,
.columns.color--pumpkin.inverse .cmp-columns--photography-text-color-fix .clHeading .label,
.columns.color--pumpkin.inverse .cmp-columns--photography-text-color-fix .cmp-image__title .label,
.columns.color--pumpkin.inverse .cmp-columns--photography-text-color-fix .cmp-title .clButtonIcon.mdc-button,
.columns.color--pumpkin.inverse .cmp-columns--photography-text-color-fix .text .clButtonIcon.mdc-button,
.columns.color--pumpkin.inverse .cmp-columns--photography-text-color-fix .clHeading .clButtonIcon.mdc-button,
.columns.color--pumpkin.inverse .cmp-columns--photography-text-color-fix .cmp-image__title .clButtonIcon.mdc-button {
  color: #333333 !important;
}
.columns.color--cloud div.button-column .button__icon {
  margin-left: 8px !important;
}
.columns.color--cloud div.button-column.outline-style .bannerTextButton .mdc-button {
  background-color: transparent !important;
  border: 2px solid #0c66e1 !important;
  color: #0c66e1 !important;
}
.columns.color--cloud div.button-column.outline-style .bannerTextButton .mdc-button:hover {
  border-color: transparent !important;
  background-color: #0a2f62 !important;
  color: #ffffff !important;
}
.columns.color--cloud div.button-column.outline-style .bannerTextButton .mdc-button:focus {
  border-color: transparent !important;
  outline: 2px solid #0a2f62 !important;
  background-color: #0a2f62 !important;
  color: #ffffff !important;
}
.columns.color--cloud div.button-column.outline-style .bannerTextButton .mdc-button:active {
  border-color: transparent !important;
  background-color: #000835 !important;
}
.columns.color--cloud div.button-column.solid-style .bannerTextButton .mdc-button {
  background-color: #0c66e1 !important;
  color: #ffffff !important;
  border-color: transparent !important;
}
.columns.color--cloud div.button-column.solid-style .bannerTextButton .mdc-button:hover {
  border-color: transparent !important;
  background-color: #0a2f62 !important;
}
.columns.color--cloud div.button-column.solid-style .bannerTextButton .mdc-button:focus {
  border-color: transparent !important;
  outline: 2px solid #0a2f62 !important;
  background-color: #0a2f62 !important;
}
.columns.color--cloud div.button-column.solid-style .bannerTextButton .mdc-button:active {
  border-color: transparent !important;
  background-color: #000835 !important;
}
.columns.color--cloud div.button-column.link-style .bannerTextButton .mdc-button {
  background-color: transparent !important;
  color: #0c66e1 !important;
}
.columns.color--cloud div.button-column.link-style .bannerTextButton .mdc-button:after {
  background-color: #0c66e1 !important;
  width: calc(100% - 32px) !important;
}
.columns.color--cloud div.button-column.link-style .bannerTextButton .mdc-button:hover {
  border-color: transparent !important;
  background-color: transparent !important;
}
.columns.color--cloud div.button-column.link-style .bannerTextButton .mdc-button:focus {
  border-color: transparent !important;
  outline: 2px solid #0c66e1 !important;
  background-color: transparent !important;
}
.columns.color--cloud div.button-column.link-style .bannerTextButton .mdc-button:active {
  border-color: transparent !important;
  background-color: #0c66e1 !important;
  color: #ffffff !important;
}
.columns.color--sky div.button-column .button__icon {
  margin-left: 8px !important;
}
.columns.color--sky div.button-column.outline-style .bannerTextButton .mdc-button {
  background-color: transparent !important;
  border: 2px solid #ebf3ff !important;
  color: #ebf3ff !important;
}
.columns.color--sky div.button-column.outline-style .bannerTextButton .mdc-button:hover {
  border-color: transparent !important;
  background-color: #9fc6ff !important;
  color: #000835 !important;
}
.columns.color--sky div.button-column.outline-style .bannerTextButton .mdc-button:focus {
  border-color: transparent !important;
  outline: 2px solid #9fc6ff !important;
  background-color: #9fc6ff !important;
  color: #000835 !important;
}
.columns.color--sky div.button-column.outline-style .bannerTextButton .mdc-button:active {
  border-color: transparent !important;
  background-color: #61a2ff !important;
}
.columns.color--sky div.button-column.solid-style .bannerTextButton .mdc-button {
  background-color: #ebf3ff !important;
  color: #000835 !important;
  border-color: transparent !important;
}
.columns.color--sky div.button-column.solid-style .bannerTextButton .mdc-button:hover {
  border-color: transparent !important;
  background-color: #9fc6ff !important;
}
.columns.color--sky div.button-column.solid-style .bannerTextButton .mdc-button:focus {
  border-color: transparent !important;
  outline: 2px solid #9fc6ff !important;
  background-color: #9fc6ff !important;
}
.columns.color--sky div.button-column.solid-style .bannerTextButton .mdc-button:active {
  border-color: transparent !important;
  background-color: #61a2ff !important;
}
.columns.color--sky div.button-column.link-style .bannerTextButton .mdc-button {
  background-color: transparent !important;
  color: #ebf3ff !important;
}
.columns.color--sky div.button-column.link-style .bannerTextButton .mdc-button:after {
  background-color: #ebf3ff !important;
  width: calc(100% - 32px) !important;
}
.columns.color--sky div.button-column.link-style .bannerTextButton .mdc-button:hover {
  border-color: transparent !important;
  background-color: transparent !important;
}
.columns.color--sky div.button-column.link-style .bannerTextButton .mdc-button:focus {
  border-color: transparent !important;
  outline: 2px solid #ebf3ff !important;
  background-color: transparent !important;
}
.columns.color--sky div.button-column.link-style .bannerTextButton .mdc-button:active {
  border-color: transparent !important;
  background-color: #ebf3ff !important;
  color: #000835 !important;
}
.columns.color--violet div.button-column .button__icon {
  margin-left: 8px !important;
}
.columns.color--violet div.button-column.outline-style .bannerTextButton .mdc-button {
  background-color: transparent !important;
  border: 2px solid #f8eeff !important;
  color: #f8eeff !important;
}
.columns.color--violet div.button-column.outline-style .bannerTextButton .mdc-button:hover {
  border-color: transparent !important;
  background-color: #d396ff !important;
  color: #26005a !important;
}
.columns.color--violet div.button-column.outline-style .bannerTextButton .mdc-button:focus {
  border-color: transparent !important;
  outline: 2px solid #d396ff !important;
  background-color: #d396ff !important;
  color: #26005a !important;
}
.columns.color--violet div.button-column.outline-style .bannerTextButton .mdc-button:active {
  border-color: transparent !important;
  background-color: #c573ff !important;
}
.columns.color--violet div.button-column.solid-style .bannerTextButton .mdc-button {
  background-color: #f8eeff !important;
  color: #26005a !important;
  border-color: transparent !important;
}
.columns.color--violet div.button-column.solid-style .bannerTextButton .mdc-button:hover {
  border-color: transparent !important;
  background-color: #d396ff !important;
}
.columns.color--violet div.button-column.solid-style .bannerTextButton .mdc-button:focus {
  border-color: transparent !important;
  outline: 2px solid #d396ff !important;
  background-color: #d396ff !important;
}
.columns.color--violet div.button-column.solid-style .bannerTextButton .mdc-button:active {
  border-color: transparent !important;
  background-color: #c573ff !important;
}
.columns.color--violet div.button-column.link-style .bannerTextButton .mdc-button {
  background-color: transparent !important;
  color: #f8eeff !important;
}
.columns.color--violet div.button-column.link-style .bannerTextButton .mdc-button:after {
  background-color: #f8eeff !important;
  width: calc(100% - 32px) !important;
}
.columns.color--violet div.button-column.link-style .bannerTextButton .mdc-button:hover {
  border-color: transparent !important;
  background-color: transparent !important;
}
.columns.color--violet div.button-column.link-style .bannerTextButton .mdc-button:focus {
  border-color: transparent !important;
  outline: 2px solid #f8eeff !important;
  background-color: transparent !important;
}
.columns.color--violet div.button-column.link-style .bannerTextButton .mdc-button:active {
  border-color: transparent !important;
  background-color: #f8eeff !important;
  color: #26005a !important;
}
.columns.color--crimson div.button-column .button__icon {
  margin-left: 8px !important;
}
.columns.color--crimson div.button-column.outline-style .bannerTextButton .mdc-button {
  background-color: transparent !important;
  border: 2px solid #ffeeed !important;
  color: #ffeeed !important;
}
.columns.color--crimson div.button-column.outline-style .bannerTextButton .mdc-button:hover {
  border-color: transparent !important;
  background-color: #ff9794 !important;
  color: #560900 !important;
}
.columns.color--crimson div.button-column.outline-style .bannerTextButton .mdc-button:focus {
  border-color: transparent !important;
  outline: 2px solid #ff9794 !important;
  background-color: #ff9794 !important;
  color: #560900 !important;
}
.columns.color--crimson div.button-column.outline-style .bannerTextButton .mdc-button:active {
  border-color: transparent !important;
  background-color: #ff7471 !important;
}
.columns.color--crimson div.button-column.solid-style .bannerTextButton .mdc-button {
  background-color: #ffeeed !important;
  color: #560900 !important;
  border-color: transparent !important;
}
.columns.color--crimson div.button-column.solid-style .bannerTextButton .mdc-button:hover {
  border-color: transparent !important;
  background-color: #ff9794 !important;
}
.columns.color--crimson div.button-column.solid-style .bannerTextButton .mdc-button:focus {
  border-color: transparent !important;
  outline: 2px solid #ff9794 !important;
  background-color: #ff9794 !important;
}
.columns.color--crimson div.button-column.solid-style .bannerTextButton .mdc-button:active {
  border-color: transparent !important;
  background-color: #ff7471 !important;
}
.columns.color--crimson div.button-column.link-style .bannerTextButton .mdc-button {
  background-color: transparent !important;
  color: #ffeeed !important;
}
.columns.color--crimson div.button-column.link-style .bannerTextButton .mdc-button:after {
  background-color: #ffeeed !important;
  width: calc(100% - 32px) !important;
}
.columns.color--crimson div.button-column.link-style .bannerTextButton .mdc-button:hover {
  border-color: transparent !important;
  background-color: transparent !important;
}
.columns.color--crimson div.button-column.link-style .bannerTextButton .mdc-button:focus {
  border-color: transparent !important;
  outline: 2px solid #ffeeed !important;
  background-color: transparent !important;
}
.columns.color--crimson div.button-column.link-style .bannerTextButton .mdc-button:active {
  border-color: transparent !important;
  background-color: #ffeeed !important;
  color: #560900 !important;
}
.columns.color--forest div.button-column .button__icon {
  margin-left: 8px !important;
}
.columns.color--forest div.button-column.outline-style .bannerTextButton .mdc-button {
  background-color: transparent !important;
  border: 2px solid #f0ffec !important;
  color: #f0ffec !important;
}
.columns.color--forest div.button-column.outline-style .bannerTextButton .mdc-button:hover {
  border-color: transparent !important;
  background-color: #beffab !important;
  color: #023a00 !important;
}
.columns.color--forest div.button-column.outline-style .bannerTextButton .mdc-button:focus {
  border-color: transparent !important;
  outline: 2px solid #beffab !important;
  background-color: #beffab !important;
  color: #023a00 !important;
}
.columns.color--forest div.button-column.outline-style .bannerTextButton .mdc-button:active {
  border-color: transparent !important;
  background-color: #a8ff8f !important;
}
.columns.color--forest div.button-column.solid-style .bannerTextButton .mdc-button {
  background-color: #f0ffec !important;
  color: #023a00 !important;
  border-color: transparent !important;
}
.columns.color--forest div.button-column.solid-style .bannerTextButton .mdc-button:hover {
  border-color: transparent !important;
  background-color: #beffab !important;
}
.columns.color--forest div.button-column.solid-style .bannerTextButton .mdc-button:focus {
  border-color: transparent !important;
  outline: 2px solid #beffab !important;
  background-color: #beffab !important;
}
.columns.color--forest div.button-column.solid-style .bannerTextButton .mdc-button:active {
  border-color: transparent !important;
  background-color: #a8ff8f !important;
}
.columns.color--forest div.button-column.link-style .bannerTextButton .mdc-button {
  background-color: transparent !important;
  color: #f0ffec !important;
}
.columns.color--forest div.button-column.link-style .bannerTextButton .mdc-button:after {
  background-color: #f0ffec !important;
  width: calc(100% - 32px) !important;
}
.columns.color--forest div.button-column.link-style .bannerTextButton .mdc-button:hover {
  border-color: transparent !important;
  background-color: transparent !important;
}
.columns.color--forest div.button-column.link-style .bannerTextButton .mdc-button:focus {
  border-color: transparent !important;
  outline: 2px solid #f0ffec !important;
  background-color: transparent !important;
}
.columns.color--forest div.button-column.link-style .bannerTextButton .mdc-button:active {
  border-color: transparent !important;
  background-color: #f0ffec !important;
  color: #023a00 !important;
}
.columns.color--canary div.button-column .button__icon {
  margin-left: 8px !important;
}
.columns.color--canary div.button-column.outline-style .bannerTextButton .mdc-button {
  background-color: transparent !important;
  border: 2px solid #fffce6 !important;
  color: #fffce6 !important;
}
.columns.color--canary div.button-column.outline-style .bannerTextButton .mdc-button:hover {
  border-color: transparent !important;
  background-color: #fdf092 !important;
  color: #564a00 !important;
}
.columns.color--canary div.button-column.outline-style .bannerTextButton .mdc-button:focus {
  border-color: transparent !important;
  outline: 2px solid #fdf092 !important;
  background-color: #fdf092 !important;
  color: #564a00 !important;
}
.columns.color--canary div.button-column.outline-style .bannerTextButton .mdc-button:active {
  border-color: transparent !important;
  background-color: #fdeb6d !important;
}
.columns.color--canary div.button-column.solid-style .bannerTextButton .mdc-button {
  background-color: #fffce6 !important;
  color: #564a00 !important;
  border-color: transparent !important;
}
.columns.color--canary div.button-column.solid-style .bannerTextButton .mdc-button:hover {
  border-color: transparent !important;
  background-color: #fdf092 !important;
}
.columns.color--canary div.button-column.solid-style .bannerTextButton .mdc-button:focus {
  border-color: transparent !important;
  outline: 2px solid #fdf092 !important;
  background-color: #fdf092 !important;
}
.columns.color--canary div.button-column.solid-style .bannerTextButton .mdc-button:active {
  border-color: transparent !important;
  background-color: #fdeb6d !important;
}
.columns.color--canary div.button-column.link-style .bannerTextButton .mdc-button {
  background-color: transparent !important;
  color: #fffce6 !important;
}
.columns.color--canary div.button-column.link-style .bannerTextButton .mdc-button:after {
  background-color: #fffce6 !important;
  width: calc(100% - 32px) !important;
}
.columns.color--canary div.button-column.link-style .bannerTextButton .mdc-button:hover {
  border-color: transparent !important;
  background-color: transparent !important;
}
.columns.color--canary div.button-column.link-style .bannerTextButton .mdc-button:focus {
  border-color: transparent !important;
  outline: 2px solid #fffce6 !important;
  background-color: transparent !important;
}
.columns.color--canary div.button-column.link-style .bannerTextButton .mdc-button:active {
  border-color: transparent !important;
  background-color: #fffce6 !important;
  color: #564a00 !important;
}
.columns.color--fuchsia div.button-column .button__icon {
  margin-left: 8px !important;
}
.columns.color--fuchsia div.button-column.outline-style .bannerTextButton .mdc-button {
  background-color: transparent !important;
  border: 2px solid #ffeef7 !important;
  color: #ffeef7 !important;
}
.columns.color--fuchsia div.button-column.outline-style .bannerTextButton .mdc-button:hover {
  border-color: transparent !important;
  background-color: #ff9be3 !important;
  color: #4f0230 !important;
}
.columns.color--fuchsia div.button-column.outline-style .bannerTextButton .mdc-button:focus {
  border-color: transparent !important;
  outline: 2px solid #ff9be3 !important;
  background-color: #ff9be3 !important;
  color: #4f0230 !important;
}
.columns.color--fuchsia div.button-column.outline-style .bannerTextButton .mdc-button:active {
  border-color: transparent !important;
  background-color: #ff79bd !important;
}
.columns.color--fuchsia div.button-column.solid-style .bannerTextButton .mdc-button {
  background-color: #ffeef7 !important;
  color: #4f0230 !important;
  border-color: transparent !important;
}
.columns.color--fuchsia div.button-column.solid-style .bannerTextButton .mdc-button:hover {
  border-color: transparent !important;
  background-color: #ff9be3 !important;
}
.columns.color--fuchsia div.button-column.solid-style .bannerTextButton .mdc-button:focus {
  border-color: transparent !important;
  outline: 2px solid #ff9be3 !important;
  background-color: #ff9be3 !important;
}
.columns.color--fuchsia div.button-column.solid-style .bannerTextButton .mdc-button:active {
  border-color: transparent !important;
  background-color: #ff79bd !important;
}
.columns.color--fuchsia div.button-column.link-style .bannerTextButton .mdc-button {
  background-color: transparent !important;
  color: #ffeef7 !important;
}
.columns.color--fuchsia div.button-column.link-style .bannerTextButton .mdc-button:after {
  background-color: #ffeef7 !important;
  width: calc(100% - 32px) !important;
}
.columns.color--fuchsia div.button-column.link-style .bannerTextButton .mdc-button:hover {
  border-color: transparent !important;
  background-color: transparent !important;
}
.columns.color--fuchsia div.button-column.link-style .bannerTextButton .mdc-button:focus {
  border-color: transparent !important;
  outline: 2px solid #ffeef7 !important;
  background-color: transparent !important;
}
.columns.color--fuchsia div.button-column.link-style .bannerTextButton .mdc-button:active {
  border-color: transparent !important;
  background-color: #ffeef7 !important;
  color: #4f0230 !important;
}
.columns.color--pumpkin div.button-column .button__icon {
  margin-left: 8px !important;
}
.columns.color--pumpkin div.button-column.outline-style .bannerTextButton .mdc-button {
  background-color: transparent !important;
  border: 2px solid #fff0e6 !important;
  color: #fff0e6 !important;
}
.columns.color--pumpkin div.button-column.outline-style .bannerTextButton .mdc-button:hover {
  border-color: transparent !important;
  background-color: #ffa366 !important;
  color: #5b2500 !important;
}
.columns.color--pumpkin div.button-column.outline-style .bannerTextButton .mdc-button:focus {
  border-color: transparent !important;
  outline: 2px solid #ffa366 !important;
  background-color: #ffa366 !important;
  color: #5b2500 !important;
}
.columns.color--pumpkin div.button-column.outline-style .bannerTextButton .mdc-button:active {
  border-color: transparent !important;
  background-color: #ff8838 !important;
}
.columns.color--pumpkin div.button-column.solid-style .bannerTextButton .mdc-button {
  background-color: #fff0e6 !important;
  color: #5b2500 !important;
  border-color: transparent !important;
}
.columns.color--pumpkin div.button-column.solid-style .bannerTextButton .mdc-button:hover {
  border-color: transparent !important;
  background-color: #ffa366 !important;
}
.columns.color--pumpkin div.button-column.solid-style .bannerTextButton .mdc-button:focus {
  border-color: transparent !important;
  outline: 2px solid #ffa366 !important;
  background-color: #ffa366 !important;
}
.columns.color--pumpkin div.button-column.solid-style .bannerTextButton .mdc-button:active {
  border-color: transparent !important;
  background-color: #ff8838 !important;
}
.columns.color--pumpkin div.button-column.link-style .bannerTextButton .mdc-button {
  background-color: transparent !important;
  color: #fff0e6 !important;
}
.columns.color--pumpkin div.button-column.link-style .bannerTextButton .mdc-button:after {
  background-color: #fff0e6 !important;
  width: calc(100% - 32px) !important;
}
.columns.color--pumpkin div.button-column.link-style .bannerTextButton .mdc-button:hover {
  border-color: transparent !important;
  background-color: transparent !important;
}
.columns.color--pumpkin div.button-column.link-style .bannerTextButton .mdc-button:focus {
  border-color: transparent !important;
  outline: 2px solid #fff0e6 !important;
  background-color: transparent !important;
}
.columns.color--pumpkin div.button-column.link-style .bannerTextButton .mdc-button:active {
  border-color: transparent !important;
  background-color: #fff0e6 !important;
  color: #5b2500 !important;
}
.columns.color--sky.inverse div.button-column.outline-style .bannerTextButton .mdc-button {
  background-color: transparent !important;
  border: 2px solid #0c66e1 !important;
  color: #0c66e1 !important;
}
.columns.color--sky.inverse div.button-column.outline-style .bannerTextButton .mdc-button:hover {
  border-color: transparent !important;
  background-color: #0a2f62 !important;
  color: #ffffff !important;
}
.columns.color--sky.inverse div.button-column.outline-style .bannerTextButton .mdc-button:focus {
  border-color: transparent !important;
  outline: 2px solid #0a2f62 !important;
  background-color: #0a2f62 !important;
  color: #ffffff !important;
}
.columns.color--sky.inverse div.button-column.outline-style .bannerTextButton .mdc-button:active {
  border-color: transparent !important;
  background-color: #000835 !important;
}
.columns.color--sky.inverse div.button-column.solid-style .bannerTextButton .mdc-button {
  background-color: #0c66e1 !important;
  color: #ffffff !important;
  border-color: transparent !important;
}
.columns.color--sky.inverse div.button-column.solid-style .bannerTextButton .mdc-button:hover {
  border-color: transparent !important;
  background-color: #0a2f62 !important;
}
.columns.color--sky.inverse div.button-column.solid-style .bannerTextButton .mdc-button:focus {
  border-color: transparent !important;
  outline: 2px solid #0a2f62 !important;
  background-color: #0a2f62 !important;
}
.columns.color--sky.inverse div.button-column.solid-style .bannerTextButton .mdc-button:active {
  border-color: transparent !important;
  background-color: #000835 !important;
}
.columns.color--sky.inverse div.button-column.link-style .bannerTextButton .mdc-button {
  background-color: transparent !important;
  color: #0c66e1 !important;
}
.columns.color--sky.inverse div.button-column.link-style .bannerTextButton .mdc-button:after {
  background-color: #0c66e1 !important;
  width: calc(100% - 32px) !important;
}
.columns.color--sky.inverse div.button-column.link-style .bannerTextButton .mdc-button:hover {
  border-color: transparent !important;
  background-color: transparent !important;
}
.columns.color--sky.inverse div.button-column.link-style .bannerTextButton .mdc-button:focus {
  border-color: transparent !important;
  outline: 2px solid #0c66e1 !important;
  background-color: transparent !important;
}
.columns.color--sky.inverse div.button-column.link-style .bannerTextButton .mdc-button:active {
  border-color: transparent !important;
  background-color: #0c66e1 !important;
  color: #ffffff !important;
}
.columns.color--violet.inverse div.button-column.outline-style .bannerTextButton .mdc-button {
  background-color: transparent !important;
  border: 2px solid #9240cc !important;
  color: #9240cc !important;
}
.columns.color--violet.inverse div.button-column.outline-style .bannerTextButton .mdc-button:hover {
  border-color: transparent !important;
  background-color: #461b64 !important;
  color: #ffffff !important;
}
.columns.color--violet.inverse div.button-column.outline-style .bannerTextButton .mdc-button:focus {
  border-color: transparent !important;
  outline: 2px solid #461b64 !important;
  background-color: #461b64 !important;
  color: #ffffff !important;
}
.columns.color--violet.inverse div.button-column.outline-style .bannerTextButton .mdc-button:active {
  border-color: transparent !important;
  background-color: #26005a !important;
}
.columns.color--violet.inverse div.button-column.solid-style .bannerTextButton .mdc-button {
  background-color: #9240cc !important;
  color: #ffffff !important;
  border-color: transparent !important;
}
.columns.color--violet.inverse div.button-column.solid-style .bannerTextButton .mdc-button:hover {
  border-color: transparent !important;
  background-color: #461b64 !important;
}
.columns.color--violet.inverse div.button-column.solid-style .bannerTextButton .mdc-button:focus {
  border-color: transparent !important;
  outline: 2px solid #461b64 !important;
  background-color: #461b64 !important;
}
.columns.color--violet.inverse div.button-column.solid-style .bannerTextButton .mdc-button:active {
  border-color: transparent !important;
  background-color: #26005a !important;
}
.columns.color--violet.inverse div.button-column.link-style .bannerTextButton .mdc-button {
  background-color: transparent !important;
  color: #9240cc !important;
}
.columns.color--violet.inverse div.button-column.link-style .bannerTextButton .mdc-button:after {
  background-color: #9240cc !important;
  width: calc(100% - 32px) !important;
}
.columns.color--violet.inverse div.button-column.link-style .bannerTextButton .mdc-button:hover {
  border-color: transparent !important;
  background-color: transparent !important;
}
.columns.color--violet.inverse div.button-column.link-style .bannerTextButton .mdc-button:focus {
  border-color: transparent !important;
  outline: 2px solid #9240cc !important;
  background-color: transparent !important;
}
.columns.color--violet.inverse div.button-column.link-style .bannerTextButton .mdc-button:active {
  border-color: transparent !important;
  background-color: #9240cc !important;
  color: #ffffff !important;
}
.columns.color--crimson.inverse div.button-column.outline-style .bannerTextButton .mdc-button {
  background-color: transparent !important;
  border: 2px solid #df3127 !important;
  color: #df3127 !important;
}
.columns.color--crimson.inverse div.button-column.outline-style .bannerTextButton .mdc-button:hover {
  border-color: transparent !important;
  background-color: #861d17 !important;
  color: #ffffff !important;
}
.columns.color--crimson.inverse div.button-column.outline-style .bannerTextButton .mdc-button:focus {
  border-color: transparent !important;
  outline: 2px solid #861d17 !important;
  background-color: #861d17 !important;
  color: #ffffff !important;
}
.columns.color--crimson.inverse div.button-column.outline-style .bannerTextButton .mdc-button:active {
  border-color: transparent !important;
  background-color: #560900 !important;
}
.columns.color--crimson.inverse div.button-column.solid-style .bannerTextButton .mdc-button {
  background-color: #df3127 !important;
  color: #ffffff !important;
  border-color: transparent !important;
}
.columns.color--crimson.inverse div.button-column.solid-style .bannerTextButton .mdc-button:hover {
  border-color: transparent !important;
  background-color: #861d17 !important;
}
.columns.color--crimson.inverse div.button-column.solid-style .bannerTextButton .mdc-button:focus {
  border-color: transparent !important;
  outline: 2px solid #861d17 !important;
  background-color: #861d17 !important;
}
.columns.color--crimson.inverse div.button-column.solid-style .bannerTextButton .mdc-button:active {
  border-color: transparent !important;
  background-color: #560900 !important;
}
.columns.color--crimson.inverse div.button-column.link-style .bannerTextButton .mdc-button {
  background-color: transparent !important;
  color: #df3127 !important;
}
.columns.color--crimson.inverse div.button-column.link-style .bannerTextButton .mdc-button:after {
  background-color: #df3127 !important;
  width: calc(100% - 32px) !important;
}
.columns.color--crimson.inverse div.button-column.link-style .bannerTextButton .mdc-button:hover {
  border-color: transparent !important;
  background-color: transparent !important;
}
.columns.color--crimson.inverse div.button-column.link-style .bannerTextButton .mdc-button:focus {
  border-color: transparent !important;
  outline: 2px solid #df3127 !important;
  background-color: transparent !important;
}
.columns.color--crimson.inverse div.button-column.link-style .bannerTextButton .mdc-button:active {
  border-color: transparent !important;
  background-color: #df3127 !important;
  color: #ffffff !important;
}
.columns.color--forest.inverse div.button-column.outline-style .bannerTextButton .mdc-button {
  background-color: transparent !important;
  border: 2px solid #6dc354 !important;
  color: #6dc354 !important;
}
.columns.color--forest.inverse div.button-column.outline-style .bannerTextButton .mdc-button:hover {
  border-color: transparent !important;
  background-color: #3a662e !important;
  color: #ffffff !important;
}
.columns.color--forest.inverse div.button-column.outline-style .bannerTextButton .mdc-button:focus {
  border-color: transparent !important;
  outline: 2px solid #3a662e !important;
  background-color: #3a662e !important;
  color: #ffffff !important;
}
.columns.color--forest.inverse div.button-column.outline-style .bannerTextButton .mdc-button:active {
  border-color: transparent !important;
  background-color: #023a00 !important;
}
.columns.color--forest.inverse div.button-column.solid-style .bannerTextButton .mdc-button {
  background-color: #6dc354 !important;
  color: #ffffff !important;
  border-color: transparent !important;
}
.columns.color--forest.inverse div.button-column.solid-style .bannerTextButton .mdc-button:hover {
  border-color: transparent !important;
  background-color: #3a662e !important;
}
.columns.color--forest.inverse div.button-column.solid-style .bannerTextButton .mdc-button:focus {
  border-color: transparent !important;
  outline: 2px solid #3a662e !important;
  background-color: #3a662e !important;
}
.columns.color--forest.inverse div.button-column.solid-style .bannerTextButton .mdc-button:active {
  border-color: transparent !important;
  background-color: #023a00 !important;
}
.columns.color--forest.inverse div.button-column.link-style .bannerTextButton .mdc-button {
  background-color: transparent !important;
  color: #6dc354 !important;
}
.columns.color--forest.inverse div.button-column.link-style .bannerTextButton .mdc-button:after {
  background-color: #6dc354 !important;
  width: calc(100% - 32px) !important;
}
.columns.color--forest.inverse div.button-column.link-style .bannerTextButton .mdc-button:hover {
  border-color: transparent !important;
  background-color: transparent !important;
}
.columns.color--forest.inverse div.button-column.link-style .bannerTextButton .mdc-button:focus {
  border-color: transparent !important;
  outline: 2px solid #6dc354 !important;
  background-color: transparent !important;
}
.columns.color--forest.inverse div.button-column.link-style .bannerTextButton .mdc-button:active {
  border-color: transparent !important;
  background-color: #6dc354 !important;
  color: #ffffff !important;
}
.columns.color--canary.inverse div.button-column.outline-style .bannerTextButton .mdc-button {
  background-color: transparent !important;
  border: 2px solid #e9cf1c !important;
  color: #e9cf1c !important;
}
.columns.color--canary.inverse div.button-column.outline-style .bannerTextButton .mdc-button:hover {
  border-color: transparent !important;
  background-color: #74691c !important;
  color: #ffffff !important;
}
.columns.color--canary.inverse div.button-column.outline-style .bannerTextButton .mdc-button:focus {
  border-color: transparent !important;
  outline: 2px solid #74691c !important;
  background-color: #74691c !important;
  color: #ffffff !important;
}
.columns.color--canary.inverse div.button-column.outline-style .bannerTextButton .mdc-button:active {
  border-color: transparent !important;
  background-color: #564a00 !important;
}
.columns.color--canary.inverse div.button-column.solid-style .bannerTextButton .mdc-button {
  background-color: #e9cf1c !important;
  color: #ffffff !important;
  border-color: transparent !important;
}
.columns.color--canary.inverse div.button-column.solid-style .bannerTextButton .mdc-button:hover {
  border-color: transparent !important;
  background-color: #74691c !important;
}
.columns.color--canary.inverse div.button-column.solid-style .bannerTextButton .mdc-button:focus {
  border-color: transparent !important;
  outline: 2px solid #74691c !important;
  background-color: #74691c !important;
}
.columns.color--canary.inverse div.button-column.solid-style .bannerTextButton .mdc-button:active {
  border-color: transparent !important;
  background-color: #564a00 !important;
}
.columns.color--canary.inverse div.button-column.link-style .bannerTextButton .mdc-button {
  background-color: transparent !important;
  color: #e9cf1c !important;
}
.columns.color--canary.inverse div.button-column.link-style .bannerTextButton .mdc-button:after {
  background-color: #e9cf1c !important;
  width: calc(100% - 32px) !important;
}
.columns.color--canary.inverse div.button-column.link-style .bannerTextButton .mdc-button:hover {
  border-color: transparent !important;
  background-color: transparent !important;
}
.columns.color--canary.inverse div.button-column.link-style .bannerTextButton .mdc-button:focus {
  border-color: transparent !important;
  outline: 2px solid #e9cf1c !important;
  background-color: transparent !important;
}
.columns.color--canary.inverse div.button-column.link-style .bannerTextButton .mdc-button:active {
  border-color: transparent !important;
  background-color: #e9cf1c !important;
  color: #ffffff !important;
}
.columns.color--fuchsia.inverse div.button-column.outline-style .bannerTextButton .mdc-button {
  background-color: transparent !important;
  border: 2px solid #cc468a !important;
  color: #cc468a !important;
}
.columns.color--fuchsia.inverse div.button-column.outline-style .bannerTextButton .mdc-button:hover {
  border-color: transparent !important;
  background-color: #662345 !important;
  color: #ffffff !important;
}
.columns.color--fuchsia.inverse div.button-column.outline-style .bannerTextButton .mdc-button:focus {
  border-color: transparent !important;
  outline: 2px solid #662345 !important;
  background-color: #662345 !important;
  color: #ffffff !important;
}
.columns.color--fuchsia.inverse div.button-column.outline-style .bannerTextButton .mdc-button:active {
  border-color: transparent !important;
  background-color: #4f0230 !important;
}
.columns.color--fuchsia.inverse div.button-column.solid-style .bannerTextButton .mdc-button {
  background-color: #cc468a !important;
  color: #ffffff !important;
  border-color: transparent !important;
}
.columns.color--fuchsia.inverse div.button-column.solid-style .bannerTextButton .mdc-button:hover {
  border-color: transparent !important;
  background-color: #662345 !important;
}
.columns.color--fuchsia.inverse div.button-column.solid-style .bannerTextButton .mdc-button:focus {
  border-color: transparent !important;
  outline: 2px solid #662345 !important;
  background-color: #662345 !important;
}
.columns.color--fuchsia.inverse div.button-column.solid-style .bannerTextButton .mdc-button:active {
  border-color: transparent !important;
  background-color: #4f0230 !important;
}
.columns.color--fuchsia.inverse div.button-column.link-style .bannerTextButton .mdc-button {
  background-color: transparent !important;
  color: #cc468a !important;
}
.columns.color--fuchsia.inverse div.button-column.link-style .bannerTextButton .mdc-button:after {
  background-color: #cc468a !important;
  width: calc(100% - 32px) !important;
}
.columns.color--fuchsia.inverse div.button-column.link-style .bannerTextButton .mdc-button:hover {
  border-color: transparent !important;
  background-color: transparent !important;
}
.columns.color--fuchsia.inverse div.button-column.link-style .bannerTextButton .mdc-button:focus {
  border-color: transparent !important;
  outline: 2px solid #cc468a !important;
  background-color: transparent !important;
}
.columns.color--fuchsia.inverse div.button-column.link-style .bannerTextButton .mdc-button:active {
  border-color: transparent !important;
  background-color: #cc468a !important;
  color: #ffffff !important;
}
.columns.color--pumpkin.inverse div.button-column.outline-style .bannerTextButton .mdc-button {
  background-color: transparent !important;
  border: 2px solid #fa6400 !important;
  color: #fa6400 !important;
}
.columns.color--pumpkin.inverse div.button-column.outline-style .bannerTextButton .mdc-button:hover {
  border-color: transparent !important;
  background-color: #863701 !important;
  color: #ffffff !important;
}
.columns.color--pumpkin.inverse div.button-column.outline-style .bannerTextButton .mdc-button:focus {
  border-color: transparent !important;
  outline: 2px solid #863701 !important;
  background-color: #863701 !important;
  color: #ffffff !important;
}
.columns.color--pumpkin.inverse div.button-column.outline-style .bannerTextButton .mdc-button:active {
  border-color: transparent !important;
  background-color: #5b2500 !important;
}
.columns.color--pumpkin.inverse div.button-column.solid-style .bannerTextButton .mdc-button {
  background-color: #fa6400 !important;
  color: #ffffff !important;
  border-color: transparent !important;
}
.columns.color--pumpkin.inverse div.button-column.solid-style .bannerTextButton .mdc-button:hover {
  border-color: transparent !important;
  background-color: #863701 !important;
}
.columns.color--pumpkin.inverse div.button-column.solid-style .bannerTextButton .mdc-button:focus {
  border-color: transparent !important;
  outline: 2px solid #863701 !important;
  background-color: #863701 !important;
}
.columns.color--pumpkin.inverse div.button-column.solid-style .bannerTextButton .mdc-button:active {
  border-color: transparent !important;
  background-color: #5b2500 !important;
}
.columns.color--pumpkin.inverse div.button-column.link-style .bannerTextButton .mdc-button {
  background-color: transparent !important;
  color: #fa6400 !important;
}
.columns.color--pumpkin.inverse div.button-column.link-style .bannerTextButton .mdc-button:after {
  background-color: #fa6400 !important;
  width: calc(100% - 32px) !important;
}
.columns.color--pumpkin.inverse div.button-column.link-style .bannerTextButton .mdc-button:hover {
  border-color: transparent !important;
  background-color: transparent !important;
}
.columns.color--pumpkin.inverse div.button-column.link-style .bannerTextButton .mdc-button:focus {
  border-color: transparent !important;
  outline: 2px solid #fa6400 !important;
  background-color: transparent !important;
}
.columns.color--pumpkin.inverse div.button-column.link-style .bannerTextButton .mdc-button:active {
  border-color: transparent !important;
  background-color: #fa6400 !important;
  color: #ffffff !important;
}
.columns.color--cloud {
  /*
            i know this is not the best place to put it, as it should go in the css for the accordion,
            but this is easier for now
        */
}
.columns.color--cloud .cmp-checklist-v2__header {
  background-color: #0c66e1 !important;
  color: #ffffff !important;
}
.columns.color--cloud .cmp-checklist-v2__list-wrapper {
  background-color: #f2f2f2 !important;
  color: #333333 !important;
}
.columns.color--cloud .cmp-checklist-v2__extender-icon {
  color: #333333 !important;
}
.columns.color--cloud .accordionamadeus .cmp-accordion__header .cmp-accordion__button {
  border-bottom: 1px solid #b3b3b3 !important;
  background-color: #ffffff !important;
}
.columns.color--cloud .accordionamadeus .cmp-accordion__header .cmp-accordion__button.cmp-accordion__button--expanded {
  border-bottom: 0px solid #fafafa !important;
}
.columns.color--cloud .accordionamadeus :not(.aem-Grid) > .bulleted-list-element {
  background-color: #f2f2f2 !important;
}
.columns.color--cloud .tableComponent table thead.amadeus tr th {
  background-color: #0c66e1 !important;
}
.columns.color--cloud.inverse .cmp-checklist-v2__header {
  background-color: #ffffff !important;
  color: #0c66e1 !important;
}
.columns.color--cloud.inverse .cmp-checklist-v2__list-wrapper {
  background-color: #fafafa !important;
  color: #333333 !important;
}
.columns.color--cloud.inverse .cmp-checklist-v2__extender-icon {
  color: #333333 !important;
}
.columns.color--cloud.inverse .accordionamadeus :not(.aem-Grid) > .bulleted-list-element {
  background-color: #fafafa !important;
}
.columns.color--cloud.inverse .accordionamadeus .cmp-accordion__header .cmp-accordion__button.cmp-accordion__button--expanded {
  border-top-color: #0c66e1 !important;
}
.columns.color--cloud.inverse .accordionamadeus :not(.aem-Grid) > .bulleted-list-element {
  background-color: #fafafa !important;
}
.columns.color--cloud.inverse .tableComponent table thead.amadeus tr th {
  background-color: #fafafa !important;
}
.columns.color--sky {
  /*
            i know this is not the best place to put it, as it should go in the css for the accordion,
            but this is easier for now
        */
}
.columns.color--sky .cmp-checklist-v2__header {
  background-color: #3a8bff !important;
  color: #000835 !important;
}
.columns.color--sky .cmp-checklist-v2__list-wrapper {
  background-color: #c5d5f9 !important;
  color: #000835 !important;
}
.columns.color--sky .cmp-checklist-v2__extender-icon {
  color: #000835 !important;
}
.columns.color--sky .accordionamadeus .cmp-accordion__header .cmp-accordion__button {
  border-bottom: 1px solid #b3b3b3 !important;
  background-color: #ffffff !important;
}
.columns.color--sky .accordionamadeus .cmp-accordion__header .cmp-accordion__button.cmp-accordion__button--expanded {
  border-bottom: 0px solid #fafafa !important;
}
.columns.color--sky .accordionamadeus :not(.aem-Grid) > .bulleted-list-element {
  background-color: #c5d5f9 !important;
}
.columns.color--sky .tableComponent table thead.amadeus tr th {
  background-color: #3a8bff !important;
}
.columns.color--sky.inverse .cmp-checklist-v2__header {
  background-color: #000835 !important;
  color: #3a8bff !important;
}
.columns.color--sky.inverse .cmp-checklist-v2__list-wrapper {
  background-color: #ebf3ff !important;
  color: #000835 !important;
}
.columns.color--sky.inverse .cmp-checklist-v2__extender-icon {
  color: #000835 !important;
}
.columns.color--sky.inverse .accordionamadeus :not(.aem-Grid) > .bulleted-list-element {
  background-color: #ebf3ff !important;
}
.columns.color--sky.inverse .accordionamadeus .cmp-accordion__header .cmp-accordion__button.cmp-accordion__button--expanded {
  border-top-color: #3a8bff !important;
}
.columns.color--sky.inverse .accordionamadeus :not(.aem-Grid) > .bulleted-list-element {
  background-color: #ebf3ff !important;
}
.columns.color--sky.inverse .tableComponent table thead.amadeus tr th {
  background-color: #ebf3ff !important;
}
.columns.color--violet {
  /*
            i know this is not the best place to put it, as it should go in the css for the accordion,
            but this is easier for now
        */
}
.columns.color--violet .cmp-checklist-v2__header {
  background-color: #b650ff !important;
  color: #26005a !important;
}
.columns.color--violet .cmp-checklist-v2__list-wrapper {
  background-color: #e4c7ff !important;
  color: #26005a !important;
}
.columns.color--violet .cmp-checklist-v2__extender-icon {
  color: #26005a !important;
}
.columns.color--violet .accordionamadeus .cmp-accordion__header .cmp-accordion__button {
  border-bottom: 1px solid #b3b3b3 !important;
  background-color: #ffffff !important;
}
.columns.color--violet .accordionamadeus .cmp-accordion__header .cmp-accordion__button.cmp-accordion__button--expanded {
  border-bottom: 0px solid #fafafa !important;
}
.columns.color--violet .accordionamadeus :not(.aem-Grid) > .bulleted-list-element {
  background-color: #e4c7ff !important;
}
.columns.color--violet .tableComponent table thead.amadeus tr th {
  background-color: #b650ff !important;
}
.columns.color--violet.inverse .cmp-checklist-v2__header {
  background-color: #26005a !important;
  color: #b650ff !important;
}
.columns.color--violet.inverse .cmp-checklist-v2__list-wrapper {
  background-color: #f8eeff !important;
  color: #26005a !important;
}
.columns.color--violet.inverse .cmp-checklist-v2__extender-icon {
  color: #26005a !important;
}
.columns.color--violet.inverse .accordionamadeus :not(.aem-Grid) > .bulleted-list-element {
  background-color: #f8eeff !important;
}
.columns.color--violet.inverse .accordionamadeus .cmp-accordion__header .cmp-accordion__button.cmp-accordion__button--expanded {
  border-top-color: #b650ff !important;
}
.columns.color--violet.inverse .accordionamadeus :not(.aem-Grid) > .bulleted-list-element {
  background-color: #f8eeff !important;
}
.columns.color--violet.inverse .tableComponent table thead.amadeus tr th {
  background-color: #f8eeff !important;
}
.columns.color--crimson {
  /*
            i know this is not the best place to put it, as it should go in the css for the accordion,
            but this is easier for now
        */
}
.columns.color--crimson .cmp-checklist-v2__header {
  background-color: #ff514d !important;
  color: #560900 !important;
}
.columns.color--crimson .cmp-checklist-v2__list-wrapper {
  background-color: #ffd7d7 !important;
  color: #560900 !important;
}
.columns.color--crimson .cmp-checklist-v2__extender-icon {
  color: #560900 !important;
}
.columns.color--crimson .accordionamadeus .cmp-accordion__header .cmp-accordion__button {
  border-bottom: 1px solid #b3b3b3 !important;
  background-color: #ffffff !important;
}
.columns.color--crimson .accordionamadeus .cmp-accordion__header .cmp-accordion__button.cmp-accordion__button--expanded {
  border-bottom: 0px solid #fafafa !important;
}
.columns.color--crimson .accordionamadeus :not(.aem-Grid) > .bulleted-list-element {
  background-color: #ffd7d7 !important;
}
.columns.color--crimson .tableComponent table thead.amadeus tr th {
  background-color: #ff514d !important;
}
.columns.color--crimson.inverse .cmp-checklist-v2__header {
  background-color: #560900 !important;
  color: #ff514d !important;
}
.columns.color--crimson.inverse .cmp-checklist-v2__list-wrapper {
  background-color: #ffeeed !important;
  color: #560900 !important;
}
.columns.color--crimson.inverse .cmp-checklist-v2__extender-icon {
  color: #560900 !important;
}
.columns.color--crimson.inverse .accordionamadeus :not(.aem-Grid) > .bulleted-list-element {
  background-color: #ffeeed !important;
}
.columns.color--crimson.inverse .accordionamadeus .cmp-accordion__header .cmp-accordion__button.cmp-accordion__button--expanded {
  border-top-color: #ff514d !important;
}
.columns.color--crimson.inverse .accordionamadeus :not(.aem-Grid) > .bulleted-list-element {
  background-color: #ffeeed !important;
}
.columns.color--crimson.inverse .tableComponent table thead.amadeus tr th {
  background-color: #ffeeed !important;
}
.columns.color--forest {
  /*
            i know this is not the best place to put it, as it should go in the css for the accordion,
            but this is easier for now
        */
}
.columns.color--forest .cmp-checklist-v2__header {
  background-color: #92ff73 !important;
  color: #023a00 !important;
}
.columns.color--forest .cmp-checklist-v2__list-wrapper {
  background-color: #c8ffc0 !important;
  color: #023a00 !important;
}
.columns.color--forest .cmp-checklist-v2__extender-icon {
  color: #023a00 !important;
}
.columns.color--forest .accordionamadeus .cmp-accordion__header .cmp-accordion__button {
  border-bottom: 1px solid #b3b3b3 !important;
  background-color: #ffffff !important;
}
.columns.color--forest .accordionamadeus .cmp-accordion__header .cmp-accordion__button.cmp-accordion__button--expanded {
  border-bottom: 0px solid #fafafa !important;
}
.columns.color--forest .accordionamadeus :not(.aem-Grid) > .bulleted-list-element {
  background-color: #c8ffc0 !important;
}
.columns.color--forest .tableComponent table thead.amadeus tr th {
  background-color: #92ff73 !important;
}
.columns.color--forest.inverse .cmp-checklist-v2__header {
  background-color: #023a00 !important;
  color: #92ff73 !important;
}
.columns.color--forest.inverse .cmp-checklist-v2__list-wrapper {
  background-color: #f0ffec !important;
  color: #023a00 !important;
}
.columns.color--forest.inverse .cmp-checklist-v2__extender-icon {
  color: #023a00 !important;
}
.columns.color--forest.inverse .accordionamadeus :not(.aem-Grid) > .bulleted-list-element {
  background-color: #f0ffec !important;
}
.columns.color--forest.inverse .accordionamadeus .cmp-accordion__header .cmp-accordion__button.cmp-accordion__button--expanded {
  border-top-color: #92ff73 !important;
}
.columns.color--forest.inverse .accordionamadeus :not(.aem-Grid) > .bulleted-list-element {
  background-color: #f0ffec !important;
}
.columns.color--forest.inverse .tableComponent table thead.amadeus tr th {
  background-color: #f0ffec !important;
}
.columns.color--canary {
  /*
            i know this is not the best place to put it, as it should go in the css for the accordion,
            but this is easier for now
        */
}
.columns.color--canary .cmp-checklist-v2__header {
  background-color: #fce649 !important;
  color: #564a00 !important;
}
.columns.color--canary .cmp-checklist-v2__list-wrapper {
  background-color: #fffeb0 !important;
  color: #564a00 !important;
}
.columns.color--canary .cmp-checklist-v2__extender-icon {
  color: #564a00 !important;
}
.columns.color--canary .accordionamadeus .cmp-accordion__header .cmp-accordion__button {
  border-bottom: 1px solid #b3b3b3 !important;
  background-color: #ffffff !important;
}
.columns.color--canary .accordionamadeus .cmp-accordion__header .cmp-accordion__button.cmp-accordion__button--expanded {
  border-bottom: 0px solid #fafafa !important;
}
.columns.color--canary .accordionamadeus :not(.aem-Grid) > .bulleted-list-element {
  background-color: #fffeb0 !important;
}
.columns.color--canary .tableComponent table thead.amadeus tr th {
  background-color: #fce649 !important;
}
.columns.color--canary.inverse .cmp-checklist-v2__header {
  background-color: #564a00 !important;
  color: #fce649 !important;
}
.columns.color--canary.inverse .cmp-checklist-v2__list-wrapper {
  background-color: #fffce6 !important;
  color: #564a00 !important;
}
.columns.color--canary.inverse .cmp-checklist-v2__extender-icon {
  color: #564a00 !important;
}
.columns.color--canary.inverse .accordionamadeus :not(.aem-Grid) > .bulleted-list-element {
  background-color: #fffce6 !important;
}
.columns.color--canary.inverse .accordionamadeus .cmp-accordion__header .cmp-accordion__button.cmp-accordion__button--expanded {
  border-top-color: #fce649 !important;
}
.columns.color--canary.inverse .accordionamadeus :not(.aem-Grid) > .bulleted-list-element {
  background-color: #fffce6 !important;
}
.columns.color--canary.inverse .tableComponent table thead.amadeus tr th {
  background-color: #fffce6 !important;
}
.columns.color--fuchsia {
  /*
            i know this is not the best place to put it, as it should go in the css for the accordion,
            but this is easier for now
        */
}
.columns.color--fuchsia .cmp-checklist-v2__header {
  background-color: #ff58ac !important;
  color: #4f0230 !important;
}
.columns.color--fuchsia .cmp-checklist-v2__list-wrapper {
  background-color: #fcc5f9 !important;
  color: #4f0230 !important;
}
.columns.color--fuchsia .cmp-checklist-v2__extender-icon {
  color: #4f0230 !important;
}
.columns.color--fuchsia .accordionamadeus .cmp-accordion__header .cmp-accordion__button {
  border-bottom: 1px solid #b3b3b3 !important;
  background-color: #ffffff !important;
}
.columns.color--fuchsia .accordionamadeus .cmp-accordion__header .cmp-accordion__button.cmp-accordion__button--expanded {
  border-bottom: 0px solid #fafafa !important;
}
.columns.color--fuchsia .accordionamadeus :not(.aem-Grid) > .bulleted-list-element {
  background-color: #fcc5f9 !important;
}
.columns.color--fuchsia .tableComponent table thead.amadeus tr th {
  background-color: #ff58ac !important;
}
.columns.color--fuchsia.inverse .cmp-checklist-v2__header {
  background-color: #4f0230 !important;
  color: #ff58ac !important;
}
.columns.color--fuchsia.inverse .cmp-checklist-v2__list-wrapper {
  background-color: #ffeef7 !important;
  color: #4f0230 !important;
}
.columns.color--fuchsia.inverse .cmp-checklist-v2__extender-icon {
  color: #4f0230 !important;
}
.columns.color--fuchsia.inverse .accordionamadeus :not(.aem-Grid) > .bulleted-list-element {
  background-color: #ffeef7 !important;
}
.columns.color--fuchsia.inverse .accordionamadeus .cmp-accordion__header .cmp-accordion__button.cmp-accordion__button--expanded {
  border-top-color: #ff58ac !important;
}
.columns.color--fuchsia.inverse .accordionamadeus :not(.aem-Grid) > .bulleted-list-element {
  background-color: #ffeef7 !important;
}
.columns.color--fuchsia.inverse .tableComponent table thead.amadeus tr th {
  background-color: #ffeef7 !important;
}
.columns.color--pumpkin {
  /*
            i know this is not the best place to put it, as it should go in the css for the accordion,
            but this is easier for now
        */
}
.columns.color--pumpkin .cmp-checklist-v2__header {
  background-color: #ff7920 !important;
  color: #5b2500 !important;
}
.columns.color--pumpkin .cmp-checklist-v2__list-wrapper {
  background-color: #ffd9c4 !important;
  color: #5b2500 !important;
}
.columns.color--pumpkin .cmp-checklist-v2__extender-icon {
  color: #5b2500 !important;
}
.columns.color--pumpkin .accordionamadeus .cmp-accordion__header .cmp-accordion__button {
  border-bottom: 1px solid #b3b3b3 !important;
  background-color: #ffffff !important;
}
.columns.color--pumpkin .accordionamadeus .cmp-accordion__header .cmp-accordion__button.cmp-accordion__button--expanded {
  border-bottom: 0px solid #fafafa !important;
}
.columns.color--pumpkin .accordionamadeus :not(.aem-Grid) > .bulleted-list-element {
  background-color: #ffd9c4 !important;
}
.columns.color--pumpkin .tableComponent table thead.amadeus tr th {
  background-color: #ff7920 !important;
}
.columns.color--pumpkin.inverse .cmp-checklist-v2__header {
  background-color: #5b2500 !important;
  color: #ff7920 !important;
}
.columns.color--pumpkin.inverse .cmp-checklist-v2__list-wrapper {
  background-color: #fff0e6 !important;
  color: #5b2500 !important;
}
.columns.color--pumpkin.inverse .cmp-checklist-v2__extender-icon {
  color: #5b2500 !important;
}
.columns.color--pumpkin.inverse .accordionamadeus :not(.aem-Grid) > .bulleted-list-element {
  background-color: #fff0e6 !important;
}
.columns.color--pumpkin.inverse .accordionamadeus .cmp-accordion__header .cmp-accordion__button.cmp-accordion__button--expanded {
  border-top-color: #ff7920 !important;
}
.columns.color--pumpkin.inverse .accordionamadeus :not(.aem-Grid) > .bulleted-list-element {
  background-color: #fff0e6 !important;
}
.columns.color--pumpkin.inverse .tableComponent table thead.amadeus tr th {
  background-color: #fff0e6 !important;
}
.columns.color--sky  .button {
  text-align: center !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: fit-content !important;
  gap: 8px !important;
  background-clip: padding-box !important;
  text-decoration: none !important;
  border-radius: 8px !important;
  font-weight: 500 !important;
  line-height: 150% !important;
  background-color: #000835 !important;
  color: #ffffff !important;
  border: 2px solid transparent !important;
}
.columns.color--sky  .button.outline {
  background-color: transparent !important;
  border-color: #000835 !important;
  color: #000835 !important;
}
.columns.color--sky  .button:hover {
  border-color: transparent !important;
  color: #ffffff !important;
  background-color: #0a2f62 !important;
}
.columns.color--sky  .button:focus-visible {
  color: #ffffff !important;
  background-color: #0a2f62 !important;
  border-color: transparent !important;
  outline: 2px solid #0a2f62 !important;
}
.columns.color--sky  .button:active {
  outline: none !important;
  border-color: transparent !important;
  color: #ffffff !important;
  background-color: #104ea4 !important;
}
.columns.color--sky  .button.ghost {
  color: #000835 !important;
  background-color: transparent !important;
  border-color: transparent !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.columns.color--sky  .button.ghost .button__label {
  position: relative !important;
}
.columns.color--sky  .button.ghost .button__label:after {
  position: absolute !important;
  content: '' !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 0 !important;
  transition: width 400ms !important;
  height: 1px !important;
  background-color: #000835 !important;
}
.columns.color--sky  .button.ghost:hover {
  border-color: transparent !important;
  color: #000835 !important;
  background-color: transparent !important;
}
.columns.color--sky  .button.ghost:hover .button__label::after {
  width: 100% !important;
}
.columns.color--sky  .button.ghost:focus-visible {
  outline: none !important;
  background-color: transparent !important;
  border-color: #000835 !important;
  color: #000835 !important;
}
.columns.color--sky  .button.ghost:active {
  border-color: transparent !important;
  background-color: #ebf3ff !important;
  color: #000835 !important;
}
.columns.color--sky  .button__icon {
  font-size: 24px !important;
  margin-bottom: 0 !important;
}
.columns.color--violet  .button {
  text-align: center !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: fit-content !important;
  gap: 8px !important;
  background-clip: padding-box !important;
  text-decoration: none !important;
  border-radius: 8px !important;
  font-weight: 500 !important;
  line-height: 150% !important;
  background-color: #26005a !important;
  color: #ffffff !important;
  border: 2px solid transparent !important;
}
.columns.color--violet  .button.outline {
  background-color: transparent !important;
  border-color: #26005a !important;
  color: #26005a !important;
}
.columns.color--violet  .button:hover {
  border-color: transparent !important;
  color: #ffffff !important;
  background-color: #461b64 !important;
}
.columns.color--violet  .button:focus-visible {
  color: #ffffff !important;
  background-color: #461b64 !important;
  border-color: transparent !important;
  outline: 2px solid #461b64 !important;
}
.columns.color--violet  .button:active {
  outline: none !important;
  border-color: transparent !important;
  color: #ffffff !important;
  background-color: #6d3099 !important;
}
.columns.color--violet  .button.ghost {
  color: #26005a !important;
  background-color: transparent !important;
  border-color: transparent !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.columns.color--violet  .button.ghost .button__label {
  position: relative !important;
}
.columns.color--violet  .button.ghost .button__label:after {
  position: absolute !important;
  content: '' !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 0 !important;
  transition: width 400ms !important;
  height: 1px !important;
  background-color: #26005a !important;
}
.columns.color--violet  .button.ghost:hover {
  border-color: transparent !important;
  color: #26005a !important;
  background-color: transparent !important;
}
.columns.color--violet  .button.ghost:hover .button__label::after {
  width: 100% !important;
}
.columns.color--violet  .button.ghost:focus-visible {
  outline: none !important;
  background-color: transparent !important;
  border-color: #26005a !important;
  color: #26005a !important;
}
.columns.color--violet  .button.ghost:active {
  border-color: transparent !important;
  background-color: #f8eeff !important;
  color: #26005a !important;
}
.columns.color--violet  .button__icon {
  font-size: 24px !important;
  margin-bottom: 0 !important;
}
.columns.color--forest  .button {
  text-align: center !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: fit-content !important;
  gap: 8px !important;
  background-clip: padding-box !important;
  text-decoration: none !important;
  border-radius: 8px !important;
  font-weight: 500 !important;
  line-height: 150% !important;
  background-color: #023a00 !important;
  color: #ffffff !important;
  border: 2px solid transparent !important;
}
.columns.color--forest  .button.outline {
  background-color: transparent !important;
  border-color: #023a00 !important;
  color: #023a00 !important;
}
.columns.color--forest  .button:hover {
  border-color: transparent !important;
  color: #ffffff !important;
  background-color: #3a662e !important;
}
.columns.color--forest  .button:focus-visible {
  color: #ffffff !important;
  background-color: #3a662e !important;
  border-color: transparent !important;
  outline: 2px solid #3a662e !important;
}
.columns.color--forest  .button:active {
  outline: none !important;
  border-color: transparent !important;
  color: #ffffff !important;
  background-color: #569643 !important;
}
.columns.color--forest  .button.ghost {
  color: #023a00 !important;
  background-color: transparent !important;
  border-color: transparent !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.columns.color--forest  .button.ghost .button__label {
  position: relative !important;
}
.columns.color--forest  .button.ghost .button__label:after {
  position: absolute !important;
  content: '' !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 0 !important;
  transition: width 400ms !important;
  height: 1px !important;
  background-color: #023a00 !important;
}
.columns.color--forest  .button.ghost:hover {
  border-color: transparent !important;
  color: #023a00 !important;
  background-color: transparent !important;
}
.columns.color--forest  .button.ghost:hover .button__label::after {
  width: 100% !important;
}
.columns.color--forest  .button.ghost:focus-visible {
  outline: none !important;
  background-color: transparent !important;
  border-color: #023a00 !important;
  color: #023a00 !important;
}
.columns.color--forest  .button.ghost:active {
  border-color: transparent !important;
  background-color: #f0ffec !important;
  color: #023a00 !important;
}
.columns.color--forest  .button__icon {
  font-size: 24px !important;
  margin-bottom: 0 !important;
}
.columns .cmp-columns {
  /*
            Some scoundrel set an important width on buttons because the markup is
            overloaded with classes!!?? */
  /**
            These should  be moved to corresponding components less, but later later
        **/
}
.columns .cmp-columns > .container > .clContainer {
  position: relative;
  z-index: 1;
}
.columns .cmp-columns .bannerTextButton {
  width: 100% ! important;
}
.columns .cmp-columns .accordionamadeus .cmp-accordion__item.accordionOpened {
  border-radius: 0 !important;
  box-shadow: unset;
}
.columns .cmp-columns .accordionamadeus .cmp-accordion__item {
  border: none;
}
.columns .cmp-columns .accordionamadeus .mdc-button.mdc-button-link:hover:after {
  width: calc(100% - 23px);
}
.columns .cmp-columns .table .container {
  padding: 0 !important;
}
.columns .cmp-columns .table .container .row {
  padding: 0 !important;
}
.columns .cmp-columns .table .tableComponent table {
  border-radius: 0;
}
.columns .cmp-columns .clHeading {
  margin-bottom: 48px;
}
.columns .cmp-columns .clHeading .clDescription {
  font-family: var(--md-sys-typescale-amadeusRegular-font);
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  text-align: center;
}
.columns .cmp-columns .clContainer {
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .columns .cmp-columns .clContainer {
    flex-wrap: nowrap;
  }
}
@media (min-width: 768px) {
  .columns .cmp-columns .clContainer.col4 {
    flex-wrap: wrap;
  }
}
@media (min-width: 992px) {
  .columns .cmp-columns .clContainer.col4 {
    flex-wrap: nowrap;
  }
}
.columns .cmp-columns .clContainer.aTop {
  align-items: flex-start;
}
.columns .cmp-columns .clContainer.aMiddle {
  align-items: center;
}
.columns .cmp-columns .clContainer.paddingDefault {
  gap: 32px;
}
.columns .cmp-columns .clContainer.paddingDefault .twoColums66,
.columns .cmp-columns .clContainer.paddingDefault .twoColums33,
.columns .cmp-columns .clContainer.paddingDefault .twoColums60,
.columns .cmp-columns .clContainer.paddingDefault .twoColums40,
.columns .cmp-columns .clContainer.paddingDefault .twoColums25,
.columns .cmp-columns .clContainer.paddingDefault .twoColums50,
.columns .cmp-columns .clContainer.paddingDefault .threeColumns33,
.columns .cmp-columns .clContainer.paddingDefault .threeColumns25,
.columns .cmp-columns .clContainer.paddingDefault .threeColumns50,
.columns .cmp-columns .clContainer.paddingDefault .fourColumns25 {
  width: 100%;
}
@media (min-width: 768px) {
  .columns .cmp-columns .clContainer.paddingDefault {
    gap: 30px;
  }
  .columns .cmp-columns .clContainer.paddingDefault .twoColums66 {
    width: calc(60% - (30px/2));
  }
  .columns .cmp-columns .clContainer.paddingDefault .twoColums33 {
    width: calc(40% - (30px/2));
  }
  .columns .cmp-columns .clContainer.paddingDefault .twoColums60 {
    width: calc(60% - (30px/2));
  }
  .columns .cmp-columns .clContainer.paddingDefault .twoColums40 {
    width: calc(40% - (30px/2));
  }
  .columns .cmp-columns .clContainer.paddingDefault .twoColums25 {
    width: calc(25% - (30px/2));
  }
  .columns .cmp-columns .clContainer.paddingDefault .twoColums50 {
    width: calc(50% - (30px/2));
  }
  .columns .cmp-columns .clContainer.paddingDefault .threeColumns33 {
    width: calc(calc(100% / 3) - (30px/2));
  }
  .columns .cmp-columns .clContainer.paddingDefault .threeColumns25 {
    width: calc(calc(100% / 3) - (30px/2));
  }
  .columns .cmp-columns .clContainer.paddingDefault .threeColumns50 {
    width: calc(calc(100% / 3) - (30px/2));
  }
  .columns .cmp-columns .clContainer.paddingDefault .fourColumns25 {
    width: calc(50% - (30px/2));
  }
}
@media (min-width: 992px) {
  .columns .cmp-columns .clContainer.paddingDefault {
    gap: 30px;
  }
  .columns .cmp-columns .clContainer.paddingDefault .twoColums60 {
    width: calc(60% - (30px/2));
  }
  .columns .cmp-columns .clContainer.paddingDefault .twoColums40 {
    width: calc(40% - (30px/2));
  }
  .columns .cmp-columns .clContainer.paddingDefault .twoColums50 {
    width: calc(50% - (30px/2));
  }
  .columns .cmp-columns .clContainer.paddingDefault .twoColums66 {
    width: calc(calc(100% / 3 * 2) - (30px/2));
  }
  .columns .cmp-columns .clContainer.paddingDefault .twoColums33 {
    width: calc(calc(100% / 3) - (30px/2));
  }
  .columns .cmp-columns .clContainer.paddingDefault .threeColumns33 {
    width: calc(calc(100% / 3) - (30px/2));
  }
  .columns .cmp-columns .clContainer.paddingDefault .threeColumns25 {
    width: calc(25% - (30px/2));
  }
  .columns .cmp-columns .clContainer.paddingDefault .threeColumns50 {
    width: calc(50% - (30px/2));
  }
  .columns .cmp-columns .clContainer.paddingDefault .fourColumns25 {
    width: calc(25% - (30px/2));
  }
}
.columns .cmp-columns .clContainer.paddingMedium {
  gap: 32px;
}
.columns .cmp-columns .clContainer.paddingMedium .twoColums66,
.columns .cmp-columns .clContainer.paddingMedium .twoColums33,
.columns .cmp-columns .clContainer.paddingMedium .twoColums60,
.columns .cmp-columns .clContainer.paddingMedium .twoColums40,
.columns .cmp-columns .clContainer.paddingMedium .twoColums25,
.columns .cmp-columns .clContainer.paddingMedium .twoColums50,
.columns .cmp-columns .clContainer.paddingMedium .threeColumns33,
.columns .cmp-columns .clContainer.paddingMedium .threeColumns25,
.columns .cmp-columns .clContainer.paddingMedium .threeColumns50,
.columns .cmp-columns .clContainer.paddingMedium .fourColumns25 {
  width: 100%;
}
@media (min-width: 768px) {
  .columns .cmp-columns .clContainer.paddingMedium {
    gap: 40px;
  }
  .columns .cmp-columns .clContainer.paddingMedium .twoColums66 {
    width: calc(60% - (40px/2));
  }
  .columns .cmp-columns .clContainer.paddingMedium .twoColums33 {
    width: calc(40% - (40px/2));
  }
  .columns .cmp-columns .clContainer.paddingMedium .twoColums60 {
    width: calc(60% - (40px/2));
  }
  .columns .cmp-columns .clContainer.paddingMedium .twoColums40 {
    width: calc(40% - (40px/2));
  }
  .columns .cmp-columns .clContainer.paddingMedium .twoColums25 {
    width: calc(25% - (40px/2));
  }
  .columns .cmp-columns .clContainer.paddingMedium .twoColums50 {
    width: calc(50% - (40px/2));
  }
  .columns .cmp-columns .clContainer.paddingMedium .threeColumns33 {
    width: calc(calc(100% / 3) - (40px/2));
  }
  .columns .cmp-columns .clContainer.paddingMedium .threeColumns25 {
    width: calc(calc(100% / 3) - (40px/2));
  }
  .columns .cmp-columns .clContainer.paddingMedium .threeColumns50 {
    width: calc(calc(100% / 3) - (40px/2));
  }
  .columns .cmp-columns .clContainer.paddingMedium .fourColumns25 {
    width: calc(50% - (40px/2));
  }
}
@media (min-width: 992px) {
  .columns .cmp-columns .clContainer.paddingMedium {
    gap: 48px;
  }
  .columns .cmp-columns .clContainer.paddingMedium .twoColums60 {
    width: calc(60% - (48px/2));
  }
  .columns .cmp-columns .clContainer.paddingMedium .twoColums40 {
    width: calc(40% - (48px/2));
  }
  .columns .cmp-columns .clContainer.paddingMedium .twoColums50 {
    width: calc(50% - (48px/2));
  }
  .columns .cmp-columns .clContainer.paddingMedium .twoColums66 {
    width: calc(calc(100% / 3 * 2) - (48px/2));
  }
  .columns .cmp-columns .clContainer.paddingMedium .twoColums33 {
    width: calc(calc(100% / 3) - (48px/2));
  }
  .columns .cmp-columns .clContainer.paddingMedium .threeColumns33 {
    width: calc(calc(100% / 3) - (48px/2));
  }
  .columns .cmp-columns .clContainer.paddingMedium .threeColumns25 {
    width: calc(25% - (48px/2));
  }
  .columns .cmp-columns .clContainer.paddingMedium .threeColumns50 {
    width: calc(50% - (48px/2));
  }
  .columns .cmp-columns .clContainer.paddingMedium .fourColumns25 {
    width: calc(25% - (48px/2));
  }
}
.columns .cmp-columns .clContainer.paddingLarge {
  gap: 32px;
}
.columns .cmp-columns .clContainer.paddingLarge .twoColums66,
.columns .cmp-columns .clContainer.paddingLarge .twoColums33,
.columns .cmp-columns .clContainer.paddingLarge .twoColums60,
.columns .cmp-columns .clContainer.paddingLarge .twoColums40,
.columns .cmp-columns .clContainer.paddingLarge .twoColums25,
.columns .cmp-columns .clContainer.paddingLarge .twoColums50,
.columns .cmp-columns .clContainer.paddingLarge .threeColumns33,
.columns .cmp-columns .clContainer.paddingLarge .threeColumns25,
.columns .cmp-columns .clContainer.paddingLarge .threeColumns50,
.columns .cmp-columns .clContainer.paddingLarge .fourColumns25 {
  width: 100%;
}
@media (min-width: 768px) {
  .columns .cmp-columns .clContainer.paddingLarge {
    gap: 48px;
  }
  .columns .cmp-columns .clContainer.paddingLarge .twoColums66 {
    width: calc(60% - (48px/2));
  }
  .columns .cmp-columns .clContainer.paddingLarge .twoColums33 {
    width: calc(40% - (48px/2));
  }
  .columns .cmp-columns .clContainer.paddingLarge .twoColums60 {
    width: calc(60% - (48px/2));
  }
  .columns .cmp-columns .clContainer.paddingLarge .twoColums40 {
    width: calc(40% - (48px/2));
  }
  .columns .cmp-columns .clContainer.paddingLarge .twoColums25 {
    width: calc(25% - (48px/2));
  }
  .columns .cmp-columns .clContainer.paddingLarge .twoColums50 {
    width: calc(50% - (48px/2));
  }
  .columns .cmp-columns .clContainer.paddingLarge .threeColumns33 {
    width: calc(calc(100% / 3) - (48px/2));
  }
  .columns .cmp-columns .clContainer.paddingLarge .threeColumns25 {
    width: calc(calc(100% / 3) - (48px/2));
  }
  .columns .cmp-columns .clContainer.paddingLarge .threeColumns50 {
    width: calc(calc(100% / 3) - (48px/2));
  }
  .columns .cmp-columns .clContainer.paddingLarge .fourColumns25 {
    width: calc(50% - (48px/2));
  }
}
@media (min-width: 992px) {
  .columns .cmp-columns .clContainer.paddingLarge {
    gap: 64px;
  }
  .columns .cmp-columns .clContainer.paddingLarge .twoColums60 {
    width: calc(60% - (64px/2));
  }
  .columns .cmp-columns .clContainer.paddingLarge .twoColums40 {
    width: calc(40% - (64px/2));
  }
  .columns .cmp-columns .clContainer.paddingLarge .twoColums50 {
    width: calc(50% - (64px/2));
  }
  .columns .cmp-columns .clContainer.paddingLarge .twoColums66 {
    width: calc(calc(100% / 3 * 2) - (64px/2));
  }
  .columns .cmp-columns .clContainer.paddingLarge .twoColums33 {
    width: calc(calc(100% / 3) - (64px/2));
  }
  .columns .cmp-columns .clContainer.paddingLarge .threeColumns25 {
    width: calc(25% - (64px/2));
  }
  .columns .cmp-columns .clContainer.paddingLarge .threeColumns33 {
    width: calc(calc(100% / 3) - (64px/2));
  }
  .columns .cmp-columns .clContainer.paddingLarge .threeColumns50 {
    width: calc(50% - (64px/2));
  }
  .columns .cmp-columns .clContainer.paddingLarge .fourColumns25 {
    width: calc(25% - (64px/2));
  }
}
.columns .cmp-columns .clContainer .column100 {
  width: 100%;
}
.columns.default-padding-bottom {
  padding-bottom: var(--md-sys-padding-default);
}
.columns.small-padding-bottom {
  padding-bottom: var(--md-sys-padding-medium);
}
.columns.none-padding-bottom {
  padding-bottom: var(--md-sys-padding-none);
}
.columns.default-padding-top {
  padding-top: var(--md-sys-padding-default);
}
.columns.small-padding-top {
  padding-top: var(--md-sys-padding-medium);
}
.columns.none-padding-top {
  padding-top: var(--md-sys-padding-none);
}
.columns.middle-vertical-align .clContainer {
  align-items: center;
}
.columns.top-vertical-align .clContainer {
  align-items: flex-start;
}
.columns .clContainer {
  gap: 32px;
}
@media (max-width: 992px) {
  .columns .clContainer > div > .cmp-container div.button-column.link-style .bannerTextButton .mdc-button {
    line-height: 24px !important;
  }
}
@media (max-width: 768px) {
  .columns .clContainer {
    gap: 0 !important;
  }
}
.columns.default-padding-columns .clContainer {
  gap: 32px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .columns.default-padding-columns .clContainer.stacked {
    flex-direction: column;
  }
  .columns.default-padding-columns .clContainer.stacked > * {
    width: 100% !important;
  }
}
@media (max-width: 767px) {
  .columns.default-padding-columns .clContainer .column100.hiddencolumn {
    display: none;
  }
}
.columns.default-padding-columns .clContainer .twoColums66,
.columns.default-padding-columns .clContainer .twoColums33,
.columns.default-padding-columns .clContainer .twoColums60,
.columns.default-padding-columns .clContainer .twoColums40,
.columns.default-padding-columns .clContainer .twoColums25,
.columns.default-padding-columns .clContainer .twoColums50,
.columns.default-padding-columns .clContainer .threeColumns33,
.columns.default-padding-columns .clContainer .threeColumns25,
.columns.default-padding-columns .clContainer .threeColumns50,
.columns.default-padding-columns .clContainer .fourColumns25 {
  width: 100%;
}
@media (max-width: 767px) {
  .columns.default-padding-columns .clContainer .twoColums66.first,
  .columns.default-padding-columns .clContainer .twoColums33.first,
  .columns.default-padding-columns .clContainer .twoColums60.first,
  .columns.default-padding-columns .clContainer .twoColums40.first,
  .columns.default-padding-columns .clContainer .twoColums25.first,
  .columns.default-padding-columns .clContainer .twoColums50.first,
  .columns.default-padding-columns .clContainer .threeColumns33.first,
  .columns.default-padding-columns .clContainer .threeColumns25.first,
  .columns.default-padding-columns .clContainer .threeColumns50.first,
  .columns.default-padding-columns .clContainer .fourColumns25.first {
    order: 1;
  }
  .columns.default-padding-columns .clContainer .twoColums66.second,
  .columns.default-padding-columns .clContainer .twoColums33.second,
  .columns.default-padding-columns .clContainer .twoColums60.second,
  .columns.default-padding-columns .clContainer .twoColums40.second,
  .columns.default-padding-columns .clContainer .twoColums25.second,
  .columns.default-padding-columns .clContainer .twoColums50.second,
  .columns.default-padding-columns .clContainer .threeColumns33.second,
  .columns.default-padding-columns .clContainer .threeColumns25.second,
  .columns.default-padding-columns .clContainer .threeColumns50.second,
  .columns.default-padding-columns .clContainer .fourColumns25.second {
    order: 2;
  }
  .columns.default-padding-columns .clContainer .twoColums66.third,
  .columns.default-padding-columns .clContainer .twoColums33.third,
  .columns.default-padding-columns .clContainer .twoColums60.third,
  .columns.default-padding-columns .clContainer .twoColums40.third,
  .columns.default-padding-columns .clContainer .twoColums25.third,
  .columns.default-padding-columns .clContainer .twoColums50.third,
  .columns.default-padding-columns .clContainer .threeColumns33.third,
  .columns.default-padding-columns .clContainer .threeColumns25.third,
  .columns.default-padding-columns .clContainer .threeColumns50.third,
  .columns.default-padding-columns .clContainer .fourColumns25.third {
    order: 3;
  }
  .columns.default-padding-columns .clContainer .twoColums66.fourth,
  .columns.default-padding-columns .clContainer .twoColums33.fourth,
  .columns.default-padding-columns .clContainer .twoColums60.fourth,
  .columns.default-padding-columns .clContainer .twoColums40.fourth,
  .columns.default-padding-columns .clContainer .twoColums25.fourth,
  .columns.default-padding-columns .clContainer .twoColums50.fourth,
  .columns.default-padding-columns .clContainer .threeColumns33.fourth,
  .columns.default-padding-columns .clContainer .threeColumns25.fourth,
  .columns.default-padding-columns .clContainer .threeColumns50.fourth,
  .columns.default-padding-columns .clContainer .fourColumns25.fourth {
    order: 4;
  }
  .columns.default-padding-columns .clContainer .twoColums66.hiddencolumn,
  .columns.default-padding-columns .clContainer .twoColums33.hiddencolumn,
  .columns.default-padding-columns .clContainer .twoColums60.hiddencolumn,
  .columns.default-padding-columns .clContainer .twoColums40.hiddencolumn,
  .columns.default-padding-columns .clContainer .twoColums25.hiddencolumn,
  .columns.default-padding-columns .clContainer .twoColums50.hiddencolumn,
  .columns.default-padding-columns .clContainer .threeColumns33.hiddencolumn,
  .columns.default-padding-columns .clContainer .threeColumns25.hiddencolumn,
  .columns.default-padding-columns .clContainer .threeColumns50.hiddencolumn,
  .columns.default-padding-columns .clContainer .fourColumns25.hiddencolumn {
    display: none;
  }
}
@media (min-width: 768px) {
  .columns.default-padding-columns .clContainer {
    gap: 30px;
  }
  .columns.default-padding-columns .clContainer .twoColums66 {
    width: calc(60% - (30px/2));
  }
  .columns.default-padding-columns .clContainer .twoColums33 {
    width: calc(40% - (30px/2));
  }
  .columns.default-padding-columns .clContainer .twoColums60 {
    width: calc(60% - (30px/2));
  }
  .columns.default-padding-columns .clContainer .twoColums40 {
    width: calc(40% - (30px/2));
  }
  .columns.default-padding-columns .clContainer .twoColums25 {
    width: calc(25% - (30px/2));
  }
  .columns.default-padding-columns .clContainer .twoColums50 {
    width: calc(50% - (30px/2));
  }
  .columns.default-padding-columns .clContainer .threeColumns33 {
    width: calc(calc(100% / 3) - (30px/2));
  }
  .columns.default-padding-columns .clContainer .threeColumns25 {
    width: calc(calc(100% / 3) - (30px/2));
  }
  .columns.default-padding-columns .clContainer .threeColumns50 {
    width: calc(calc(100% / 3) - (30px/2));
  }
  .columns.default-padding-columns .clContainer .fourColumns25 {
    width: calc(50% - (30px/2));
  }
}
@media (min-width: 992px) {
  .columns.default-padding-columns .clContainer {
    gap: 30px;
  }
  .columns.default-padding-columns .clContainer .twoColums60 {
    width: calc(60% - (30px/2));
  }
  .columns.default-padding-columns .clContainer .twoColums40 {
    width: calc(40% - (30px/2));
  }
  .columns.default-padding-columns .clContainer .twoColums50 {
    width: calc(50% - (30px/2));
  }
  .columns.default-padding-columns .clContainer .twoColums66 {
    width: calc(calc(100% / 3 * 2) - (30px/2));
  }
  .columns.default-padding-columns .clContainer .twoColums33 {
    width: calc(calc(100% / 3) - (30px/2));
  }
  .columns.default-padding-columns .clContainer .threeColumns33 {
    width: calc(calc(100% / 3) - (30px/2));
  }
  .columns.default-padding-columns .clContainer .threeColumns25 {
    width: calc(25% - (30px/2));
  }
  .columns.default-padding-columns .clContainer .threeColumns50 {
    width: calc(50% - (30px/2));
  }
  .columns.default-padding-columns .clContainer .fourColumns25 {
    width: calc(25% - (30px/2));
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .columns.default-padding-columns .clContainer.layout1 {
    gap: 48px;
  }
  .columns.default-padding-columns .clContainer.layout1 .twoColums66,
  .columns.default-padding-columns .clContainer.layout1 .twoColums33,
  .columns.default-padding-columns .clContainer.layout1 .twoColums60,
  .columns.default-padding-columns .clContainer.layout1 .twoColums40,
  .columns.default-padding-columns .clContainer.layout1 .twoColums25,
  .columns.default-padding-columns .clContainer.layout1 .twoColums50,
  .columns.default-padding-columns .clContainer.layout1 .fourColumns25 {
    width: calc(50% - (48px/2));
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .columns.default-padding-columns .clContainer.layout2 {
    gap: 48px;
  }
  .columns.default-padding-columns .clContainer.layout2 .twoColums66:first-child,
  .columns.default-padding-columns .clContainer.layout2 .twoColums33:first-child,
  .columns.default-padding-columns .clContainer.layout2 .twoColums60:first-child,
  .columns.default-padding-columns .clContainer.layout2 .twoColums40:first-child,
  .columns.default-padding-columns .clContainer.layout2 .twoColums25:first-child,
  .columns.default-padding-columns .clContainer.layout2 .twoColums50:first-child {
    width: calc(40% - (48px/2));
  }
  .columns.default-padding-columns .clContainer.layout2 .twoColums66:last-child,
  .columns.default-padding-columns .clContainer.layout2 .twoColums33:last-child,
  .columns.default-padding-columns .clContainer.layout2 .twoColums60:last-child,
  .columns.default-padding-columns .clContainer.layout2 .twoColums40:last-child,
  .columns.default-padding-columns .clContainer.layout2 .twoColums25:last-child,
  .columns.default-padding-columns .clContainer.layout2 .twoColums50:last-child {
    width: calc(60% - (48px/2));
  }
  .columns.default-padding-columns .clContainer.layout2 .fourColumns25 {
    width: calc(50% - (48px/2));
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .columns.default-padding-columns .clContainer.layout3 {
    gap: 48px;
  }
  .columns.default-padding-columns .clContainer.layout3 .twoColums66:first-child,
  .columns.default-padding-columns .clContainer.layout3 .twoColums33:first-child,
  .columns.default-padding-columns .clContainer.layout3 .twoColums60:first-child,
  .columns.default-padding-columns .clContainer.layout3 .twoColums40:first-child,
  .columns.default-padding-columns .clContainer.layout3 .twoColums25:first-child,
  .columns.default-padding-columns .clContainer.layout3 .twoColums50:first-child {
    width: calc(60% - (48px/2));
  }
  .columns.default-padding-columns .clContainer.layout3 .twoColums66:last-child,
  .columns.default-padding-columns .clContainer.layout3 .twoColums33:last-child,
  .columns.default-padding-columns .clContainer.layout3 .twoColums60:last-child,
  .columns.default-padding-columns .clContainer.layout3 .twoColums40:last-child,
  .columns.default-padding-columns .clContainer.layout3 .twoColums25:last-child,
  .columns.default-padding-columns .clContainer.layout3 .twoColums50:last-child {
    width: calc(40% - (48px/2));
  }
  .columns.default-padding-columns .clContainer.layout3 .fourColumns25 {
    width: calc(50% - (48px/2));
  }
}
.columns.medium-padding-columns .clContainer {
  gap: 32px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .columns.medium-padding-columns .clContainer.stacked {
    flex-direction: column;
  }
  .columns.medium-padding-columns .clContainer.stacked > * {
    width: 100% !important;
  }
}
@media (max-width: 767px) {
  .columns.medium-padding-columns .clContainer .column100.hiddencolumn {
    display: none;
  }
}
.columns.medium-padding-columns .clContainer .twoColums66,
.columns.medium-padding-columns .clContainer .twoColums33,
.columns.medium-padding-columns .clContainer .twoColums60,
.columns.medium-padding-columns .clContainer .twoColums40,
.columns.medium-padding-columns .clContainer .twoColums25,
.columns.medium-padding-columns .clContainer .twoColums50,
.columns.medium-padding-columns .clContainer .threeColumns33,
.columns.medium-padding-columns .clContainer .threeColumns25,
.columns.medium-padding-columns .clContainer .threeColumns50,
.columns.medium-padding-columns .clContainer .fourColumns25 {
  width: 100%;
}
@media (max-width: 767px) {
  .columns.medium-padding-columns .clContainer .twoColums66.first,
  .columns.medium-padding-columns .clContainer .twoColums33.first,
  .columns.medium-padding-columns .clContainer .twoColums60.first,
  .columns.medium-padding-columns .clContainer .twoColums40.first,
  .columns.medium-padding-columns .clContainer .twoColums25.first,
  .columns.medium-padding-columns .clContainer .twoColums50.first,
  .columns.medium-padding-columns .clContainer .threeColumns33.first,
  .columns.medium-padding-columns .clContainer .threeColumns25.first,
  .columns.medium-padding-columns .clContainer .threeColumns50.first,
  .columns.medium-padding-columns .clContainer .fourColumns25.first {
    order: 1;
  }
  .columns.medium-padding-columns .clContainer .twoColums66.second,
  .columns.medium-padding-columns .clContainer .twoColums33.second,
  .columns.medium-padding-columns .clContainer .twoColums60.second,
  .columns.medium-padding-columns .clContainer .twoColums40.second,
  .columns.medium-padding-columns .clContainer .twoColums25.second,
  .columns.medium-padding-columns .clContainer .twoColums50.second,
  .columns.medium-padding-columns .clContainer .threeColumns33.second,
  .columns.medium-padding-columns .clContainer .threeColumns25.second,
  .columns.medium-padding-columns .clContainer .threeColumns50.second,
  .columns.medium-padding-columns .clContainer .fourColumns25.second {
    order: 2;
  }
  .columns.medium-padding-columns .clContainer .twoColums66.third,
  .columns.medium-padding-columns .clContainer .twoColums33.third,
  .columns.medium-padding-columns .clContainer .twoColums60.third,
  .columns.medium-padding-columns .clContainer .twoColums40.third,
  .columns.medium-padding-columns .clContainer .twoColums25.third,
  .columns.medium-padding-columns .clContainer .twoColums50.third,
  .columns.medium-padding-columns .clContainer .threeColumns33.third,
  .columns.medium-padding-columns .clContainer .threeColumns25.third,
  .columns.medium-padding-columns .clContainer .threeColumns50.third,
  .columns.medium-padding-columns .clContainer .fourColumns25.third {
    order: 3;
  }
  .columns.medium-padding-columns .clContainer .twoColums66.fourth,
  .columns.medium-padding-columns .clContainer .twoColums33.fourth,
  .columns.medium-padding-columns .clContainer .twoColums60.fourth,
  .columns.medium-padding-columns .clContainer .twoColums40.fourth,
  .columns.medium-padding-columns .clContainer .twoColums25.fourth,
  .columns.medium-padding-columns .clContainer .twoColums50.fourth,
  .columns.medium-padding-columns .clContainer .threeColumns33.fourth,
  .columns.medium-padding-columns .clContainer .threeColumns25.fourth,
  .columns.medium-padding-columns .clContainer .threeColumns50.fourth,
  .columns.medium-padding-columns .clContainer .fourColumns25.fourth {
    order: 4;
  }
  .columns.medium-padding-columns .clContainer .twoColums66.hiddencolumn,
  .columns.medium-padding-columns .clContainer .twoColums33.hiddencolumn,
  .columns.medium-padding-columns .clContainer .twoColums60.hiddencolumn,
  .columns.medium-padding-columns .clContainer .twoColums40.hiddencolumn,
  .columns.medium-padding-columns .clContainer .twoColums25.hiddencolumn,
  .columns.medium-padding-columns .clContainer .twoColums50.hiddencolumn,
  .columns.medium-padding-columns .clContainer .threeColumns33.hiddencolumn,
  .columns.medium-padding-columns .clContainer .threeColumns25.hiddencolumn,
  .columns.medium-padding-columns .clContainer .threeColumns50.hiddencolumn,
  .columns.medium-padding-columns .clContainer .fourColumns25.hiddencolumn {
    display: none;
  }
}
@media (min-width: 768px) {
  .columns.medium-padding-columns .clContainer {
    gap: 40px;
  }
  .columns.medium-padding-columns .clContainer .twoColums66 {
    width: calc(60% - (40px/2));
  }
  .columns.medium-padding-columns .clContainer .twoColums33 {
    width: calc(40% - (40px/2));
  }
  .columns.medium-padding-columns .clContainer .twoColums60 {
    width: calc(60% - (40px/2));
  }
  .columns.medium-padding-columns .clContainer .twoColums40 {
    width: calc(40% - (40px/2));
  }
  .columns.medium-padding-columns .clContainer .twoColums25 {
    width: calc(25% - (40px/2));
  }
  .columns.medium-padding-columns .clContainer .twoColums50 {
    width: calc(50% - (40px/2));
  }
  .columns.medium-padding-columns .clContainer .threeColumns33 {
    width: calc(calc(100% / 3) - (40px/2));
  }
  .columns.medium-padding-columns .clContainer .threeColumns25 {
    width: calc(calc(100% / 3) - (40px/2));
  }
  .columns.medium-padding-columns .clContainer .threeColumns50 {
    width: calc(calc(100% / 3) - (40px/2));
  }
  .columns.medium-padding-columns .clContainer .fourColumns25 {
    width: calc(50% - (40px/2));
  }
}
@media (min-width: 992px) {
  .columns.medium-padding-columns .clContainer {
    gap: 48px;
  }
  .columns.medium-padding-columns .clContainer .twoColums60 {
    width: calc(60% - (48px/2));
  }
  .columns.medium-padding-columns .clContainer .twoColums40 {
    width: calc(40% - (48px/2));
  }
  .columns.medium-padding-columns .clContainer .twoColums50 {
    width: calc(50% - (48px/2));
  }
  .columns.medium-padding-columns .clContainer .twoColums66 {
    width: calc(calc(100% / 3 * 2) - (48px/2));
  }
  .columns.medium-padding-columns .clContainer .twoColums33 {
    width: calc(calc(100% / 3) - (48px/2));
  }
  .columns.medium-padding-columns .clContainer .threeColumns33 {
    width: calc(calc(100% / 3) - (48px/2));
  }
  .columns.medium-padding-columns .clContainer .threeColumns25 {
    width: calc(25% - (48px/2));
  }
  .columns.medium-padding-columns .clContainer .threeColumns50 {
    width: calc(50% - (48px/2));
  }
  .columns.medium-padding-columns .clContainer .fourColumns25 {
    width: calc(25% - (48px/2));
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .columns.medium-padding-columns .clContainer.layout1 {
    gap: 48px;
  }
  .columns.medium-padding-columns .clContainer.layout1 .twoColums66,
  .columns.medium-padding-columns .clContainer.layout1 .twoColums33,
  .columns.medium-padding-columns .clContainer.layout1 .twoColums60,
  .columns.medium-padding-columns .clContainer.layout1 .twoColums40,
  .columns.medium-padding-columns .clContainer.layout1 .twoColums25,
  .columns.medium-padding-columns .clContainer.layout1 .twoColums50,
  .columns.medium-padding-columns .clContainer.layout1 .fourColumns25 {
    width: calc(50% - (48px/2));
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .columns.medium-padding-columns .clContainer.layout2 {
    gap: 48px;
  }
  .columns.medium-padding-columns .clContainer.layout2 .twoColums66:first-child,
  .columns.medium-padding-columns .clContainer.layout2 .twoColums33:first-child,
  .columns.medium-padding-columns .clContainer.layout2 .twoColums60:first-child,
  .columns.medium-padding-columns .clContainer.layout2 .twoColums40:first-child,
  .columns.medium-padding-columns .clContainer.layout2 .twoColums25:first-child,
  .columns.medium-padding-columns .clContainer.layout2 .twoColums50:first-child {
    width: calc(40% - (48px/2));
  }
  .columns.medium-padding-columns .clContainer.layout2 .twoColums66:last-child,
  .columns.medium-padding-columns .clContainer.layout2 .twoColums33:last-child,
  .columns.medium-padding-columns .clContainer.layout2 .twoColums60:last-child,
  .columns.medium-padding-columns .clContainer.layout2 .twoColums40:last-child,
  .columns.medium-padding-columns .clContainer.layout2 .twoColums25:last-child,
  .columns.medium-padding-columns .clContainer.layout2 .twoColums50:last-child {
    width: calc(60% - (48px/2));
  }
  .columns.medium-padding-columns .clContainer.layout2 .fourColumns25 {
    width: calc(50% - (48px/2));
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .columns.medium-padding-columns .clContainer.layout3 {
    gap: 48px;
  }
  .columns.medium-padding-columns .clContainer.layout3 .twoColums66:first-child,
  .columns.medium-padding-columns .clContainer.layout3 .twoColums33:first-child,
  .columns.medium-padding-columns .clContainer.layout3 .twoColums60:first-child,
  .columns.medium-padding-columns .clContainer.layout3 .twoColums40:first-child,
  .columns.medium-padding-columns .clContainer.layout3 .twoColums25:first-child,
  .columns.medium-padding-columns .clContainer.layout3 .twoColums50:first-child {
    width: calc(60% - (48px/2));
  }
  .columns.medium-padding-columns .clContainer.layout3 .twoColums66:last-child,
  .columns.medium-padding-columns .clContainer.layout3 .twoColums33:last-child,
  .columns.medium-padding-columns .clContainer.layout3 .twoColums60:last-child,
  .columns.medium-padding-columns .clContainer.layout3 .twoColums40:last-child,
  .columns.medium-padding-columns .clContainer.layout3 .twoColums25:last-child,
  .columns.medium-padding-columns .clContainer.layout3 .twoColums50:last-child {
    width: calc(40% - (48px/2));
  }
  .columns.medium-padding-columns .clContainer.layout3 .fourColumns25 {
    width: calc(50% - (48px/2));
  }
}
.columns.large-padding-columns .clContainer {
  gap: 32px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .columns.large-padding-columns .clContainer.stacked {
    flex-direction: column;
  }
  .columns.large-padding-columns .clContainer.stacked > * {
    width: 100% !important;
  }
}
@media (max-width: 767px) {
  .columns.large-padding-columns .clContainer .column100.hiddencolumn {
    display: none;
  }
}
.columns.large-padding-columns .clContainer .twoColums66,
.columns.large-padding-columns .clContainer .twoColums33,
.columns.large-padding-columns .clContainer .twoColums60,
.columns.large-padding-columns .clContainer .twoColums40,
.columns.large-padding-columns .clContainer .twoColums25,
.columns.large-padding-columns .clContainer .twoColums50,
.columns.large-padding-columns .clContainer .threeColumns33,
.columns.large-padding-columns .clContainer .threeColumns25,
.columns.large-padding-columns .clContainer .threeColumns50,
.columns.large-padding-columns .clContainer .fourColumns25 {
  width: 100%;
}
@media (max-width: 767px) {
  .columns.large-padding-columns .clContainer .twoColums66.first,
  .columns.large-padding-columns .clContainer .twoColums33.first,
  .columns.large-padding-columns .clContainer .twoColums60.first,
  .columns.large-padding-columns .clContainer .twoColums40.first,
  .columns.large-padding-columns .clContainer .twoColums25.first,
  .columns.large-padding-columns .clContainer .twoColums50.first,
  .columns.large-padding-columns .clContainer .threeColumns33.first,
  .columns.large-padding-columns .clContainer .threeColumns25.first,
  .columns.large-padding-columns .clContainer .threeColumns50.first,
  .columns.large-padding-columns .clContainer .fourColumns25.first {
    order: 1;
  }
  .columns.large-padding-columns .clContainer .twoColums66.second,
  .columns.large-padding-columns .clContainer .twoColums33.second,
  .columns.large-padding-columns .clContainer .twoColums60.second,
  .columns.large-padding-columns .clContainer .twoColums40.second,
  .columns.large-padding-columns .clContainer .twoColums25.second,
  .columns.large-padding-columns .clContainer .twoColums50.second,
  .columns.large-padding-columns .clContainer .threeColumns33.second,
  .columns.large-padding-columns .clContainer .threeColumns25.second,
  .columns.large-padding-columns .clContainer .threeColumns50.second,
  .columns.large-padding-columns .clContainer .fourColumns25.second {
    order: 2;
  }
  .columns.large-padding-columns .clContainer .twoColums66.third,
  .columns.large-padding-columns .clContainer .twoColums33.third,
  .columns.large-padding-columns .clContainer .twoColums60.third,
  .columns.large-padding-columns .clContainer .twoColums40.third,
  .columns.large-padding-columns .clContainer .twoColums25.third,
  .columns.large-padding-columns .clContainer .twoColums50.third,
  .columns.large-padding-columns .clContainer .threeColumns33.third,
  .columns.large-padding-columns .clContainer .threeColumns25.third,
  .columns.large-padding-columns .clContainer .threeColumns50.third,
  .columns.large-padding-columns .clContainer .fourColumns25.third {
    order: 3;
  }
  .columns.large-padding-columns .clContainer .twoColums66.fourth,
  .columns.large-padding-columns .clContainer .twoColums33.fourth,
  .columns.large-padding-columns .clContainer .twoColums60.fourth,
  .columns.large-padding-columns .clContainer .twoColums40.fourth,
  .columns.large-padding-columns .clContainer .twoColums25.fourth,
  .columns.large-padding-columns .clContainer .twoColums50.fourth,
  .columns.large-padding-columns .clContainer .threeColumns33.fourth,
  .columns.large-padding-columns .clContainer .threeColumns25.fourth,
  .columns.large-padding-columns .clContainer .threeColumns50.fourth,
  .columns.large-padding-columns .clContainer .fourColumns25.fourth {
    order: 4;
  }
  .columns.large-padding-columns .clContainer .twoColums66.hiddencolumn,
  .columns.large-padding-columns .clContainer .twoColums33.hiddencolumn,
  .columns.large-padding-columns .clContainer .twoColums60.hiddencolumn,
  .columns.large-padding-columns .clContainer .twoColums40.hiddencolumn,
  .columns.large-padding-columns .clContainer .twoColums25.hiddencolumn,
  .columns.large-padding-columns .clContainer .twoColums50.hiddencolumn,
  .columns.large-padding-columns .clContainer .threeColumns33.hiddencolumn,
  .columns.large-padding-columns .clContainer .threeColumns25.hiddencolumn,
  .columns.large-padding-columns .clContainer .threeColumns50.hiddencolumn,
  .columns.large-padding-columns .clContainer .fourColumns25.hiddencolumn {
    display: none;
  }
}
@media (min-width: 768px) {
  .columns.large-padding-columns .clContainer {
    gap: 48px;
  }
  .columns.large-padding-columns .clContainer .twoColums66 {
    width: calc(60% - (48px/2));
  }
  .columns.large-padding-columns .clContainer .twoColums33 {
    width: calc(40% - (48px/2));
  }
  .columns.large-padding-columns .clContainer .twoColums60 {
    width: calc(60% - (48px/2));
  }
  .columns.large-padding-columns .clContainer .twoColums40 {
    width: calc(40% - (48px/2));
  }
  .columns.large-padding-columns .clContainer .twoColums25 {
    width: calc(25% - (48px/2));
  }
  .columns.large-padding-columns .clContainer .twoColums50 {
    width: calc(50% - (48px/2));
  }
  .columns.large-padding-columns .clContainer .threeColumns33 {
    width: calc(calc(100% / 3) - (48px/2));
  }
  .columns.large-padding-columns .clContainer .threeColumns25 {
    width: calc(calc(100% / 3) - (48px/2));
  }
  .columns.large-padding-columns .clContainer .threeColumns50 {
    width: calc(calc(100% / 3) - (48px/2));
  }
  .columns.large-padding-columns .clContainer .fourColumns25 {
    width: calc(50% - (48px/2));
  }
}
@media (min-width: 992px) {
  .columns.large-padding-columns .clContainer {
    gap: 64px;
  }
  .columns.large-padding-columns .clContainer .twoColums60 {
    width: calc(60% - (64px/2));
  }
  .columns.large-padding-columns .clContainer .twoColums40 {
    width: calc(40% - (64px/2));
  }
  .columns.large-padding-columns .clContainer .twoColums50 {
    width: calc(50% - (64px/2));
  }
  .columns.large-padding-columns .clContainer .twoColums66 {
    width: calc(calc(100% / 3 * 2) - (64px/2));
  }
  .columns.large-padding-columns .clContainer .twoColums33 {
    width: calc(calc(100% / 3) - (64px/2));
  }
  .columns.large-padding-columns .clContainer .threeColumns25 {
    width: calc(25% - (64px/2));
  }
  .columns.large-padding-columns .clContainer .threeColumns33 {
    width: calc(calc(100% / 3) - (64px/2));
  }
  .columns.large-padding-columns .clContainer .threeColumns50 {
    width: calc(50% - (64px/2));
  }
  .columns.large-padding-columns .clContainer .fourColumns25 {
    width: calc(25% - (64px/2));
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .columns.large-padding-columns .clContainer.layout1 {
    gap: 48px;
  }
  .columns.large-padding-columns .clContainer.layout1 .twoColums66,
  .columns.large-padding-columns .clContainer.layout1 .twoColums33,
  .columns.large-padding-columns .clContainer.layout1 .twoColums60,
  .columns.large-padding-columns .clContainer.layout1 .twoColums40,
  .columns.large-padding-columns .clContainer.layout1 .twoColums25,
  .columns.large-padding-columns .clContainer.layout1 .twoColums50,
  .columns.large-padding-columns .clContainer.layout1 .fourColumns25 {
    width: calc(50% - (48px/2));
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .columns.large-padding-columns .clContainer.layout2 {
    gap: 48px;
  }
  .columns.large-padding-columns .clContainer.layout2 .twoColums66:first-child,
  .columns.large-padding-columns .clContainer.layout2 .twoColums33:first-child,
  .columns.large-padding-columns .clContainer.layout2 .twoColums60:first-child,
  .columns.large-padding-columns .clContainer.layout2 .twoColums40:first-child,
  .columns.large-padding-columns .clContainer.layout2 .twoColums25:first-child,
  .columns.large-padding-columns .clContainer.layout2 .twoColums50:first-child {
    width: calc(40% - (48px/2));
  }
  .columns.large-padding-columns .clContainer.layout2 .twoColums66:last-child,
  .columns.large-padding-columns .clContainer.layout2 .twoColums33:last-child,
  .columns.large-padding-columns .clContainer.layout2 .twoColums60:last-child,
  .columns.large-padding-columns .clContainer.layout2 .twoColums40:last-child,
  .columns.large-padding-columns .clContainer.layout2 .twoColums25:last-child,
  .columns.large-padding-columns .clContainer.layout2 .twoColums50:last-child {
    width: calc(60% - (48px/2));
  }
  .columns.large-padding-columns .clContainer.layout2 .fourColumns25 {
    width: calc(50% - (48px/2));
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .columns.large-padding-columns .clContainer.layout3 {
    gap: 48px;
  }
  .columns.large-padding-columns .clContainer.layout3 .twoColums66:first-child,
  .columns.large-padding-columns .clContainer.layout3 .twoColums33:first-child,
  .columns.large-padding-columns .clContainer.layout3 .twoColums60:first-child,
  .columns.large-padding-columns .clContainer.layout3 .twoColums40:first-child,
  .columns.large-padding-columns .clContainer.layout3 .twoColums25:first-child,
  .columns.large-padding-columns .clContainer.layout3 .twoColums50:first-child {
    width: calc(60% - (48px/2));
  }
  .columns.large-padding-columns .clContainer.layout3 .twoColums66:last-child,
  .columns.large-padding-columns .clContainer.layout3 .twoColums33:last-child,
  .columns.large-padding-columns .clContainer.layout3 .twoColums60:last-child,
  .columns.large-padding-columns .clContainer.layout3 .twoColums40:last-child,
  .columns.large-padding-columns .clContainer.layout3 .twoColums25:last-child,
  .columns.large-padding-columns .clContainer.layout3 .twoColums50:last-child {
    width: calc(40% - (48px/2));
  }
  .columns.large-padding-columns .clContainer.layout3 .fourColumns25 {
    width: calc(50% - (48px/2));
  }
}

/**
    Checklist Component
**/
.checklist-v2 .cmp-checklist-v2__header {
  padding: 16px;
  font-family: "Amadeus Neue";
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
  position: relative;
  z-index: 1;
  width: calc(100% - 48px);
}
.checklist-v2 .cmp-checklist-v2__header h3 {
  margin: 0;
}
.checklist-v2 .cmp-checklist-v2__list {
  margin: 0;
  padding: 0;
  overflow: hidden;
  transition: max-height 250ms 250ms ease-in;
}
.checklist-v2 .cmp-checklist-v2__list-wrapper {
  margin: 0;
  padding: 48px 24px 24px;
  margin-top: -32px;
  margin-left: 32px;
}
.checklist-v2 .cmp-checklist-v2__list li {
  list-style-type: none;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin: 0;
  padding: 0 0 16px;
}
.checklist-v2 .cmp-checklist-v2__list li span,
.checklist-v2 .cmp-checklist-v2__list li p {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.checklist-v2 .cmp-checklist-v2__list li .coral3-Icon--custom_check {
  margin-right: 8px;
}
.checklist-v2 .cmp-checklist-v2 .cmp-checklist-v2__extender-icon {
  border: none;
  background: transparent;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.checklist-v2 .cmp-checklist-v2 .cmp-checklist-v2__extender-icon .coral3-Icon--custom_keyboard-down {
  margin: 0;
}
.checklist-v2 .cmp-checklist-v2 .cmp-checklist-v2__extender-icon .coral3-Icon--custom_keyboard-down:before {
  content: "\e924";
  padding-left: 8px;
}
.checklist-v2 .cmp-checklist-v2 .cmp-checklist-v2__extender-icon span:first-child {
  display: none;
}
.checklist-v2 .cmp-checklist-v2 .cmp-checklist-v2__extender-icon span:nth-child(2) {
  display: block;
}
.checklist-v2 .cmp-checklist-v2 .cmp-checklist-v2__extender-icon.closed .coral3-Icon--custom_keyboard-down:before {
  content: "\e922";
}
.checklist-v2 .cmp-checklist-v2 .cmp-checklist-v2__extender-icon.closed span:first-child {
  display: block;
}
.checklist-v2 .cmp-checklist-v2 .cmp-checklist-v2__extender-icon.closed span:nth-child(2) {
  display: none;
}
@media (max-width: 767px) {
  .checklist-v2 .cmp-checklist-v2__header {
    width: 100%;
  }
  .checklist-v2 .cmp-checklist-v2__list-wrapper {
    margin: 0;
    padding: 48px 24px 24px;
    background: #fafafa;
    margin-left: 0;
  }
}
.checklist-v2.default-padding-top {
  padding-top: var(--md-sys-padding-default);
}
.checklist-v2.small-padding-top {
  padding-top: var(--md-sys-padding-medium);
}
.checklist-v2.none-padding-top {
  padding-top: var(--md-sys-padding-none);
}
.checklist-v2.default-padding-bottom {
  padding-bottom: var(--md-sys-padding-default);
}
.checklist-v2.small-padding-bottom {
  padding-bottom: var(--md-sys-padding-medium);
}
.checklist-v2.none-padding-bottom {
  padding-bottom: var(--md-sys-padding-none);
}

/* Edit Mode */
.aem-AuthorLayer-Edit .breadcrumb.hideBreadcrumb {
  height: fit-content;
  width: 0;
  margin: 0;
  padding: 0;
}
.aem-AuthorLayer-Edit .breadcrumb.hideBreadcrumb:after {
  content: "The breadcrumb is hidden!";
  position: absolute;
  width: 100%;
  height: fit-content;
  background-color: lightgrey;
}
.aem-AuthorLayer-Edit .breadcrumb.hideBreadcrumb .cmp-breadcrumb {
  margin: 0;
  padding: 0;
}
.breadcrumb {
  font-family: var(--md-sys-typescale-amadeusRegular-font);
}
html:not(.aem-AuthorLayer-Edit) .breadcrumb.hideBreadcrumb {
  display: none;
  margin: 0;
  padding: 0;
}
.breadcrumb .cmp-breadcrumb {
  margin: 1rem 0;
  padding: 0 16px !important;
}
@media (min-width: 768px) and (max-width: 768px) {
  .breadcrumb .cmp-breadcrumb {
    padding: 0px 20px !important;
  }
}
@media (min-width: 769px) {
  .breadcrumb .cmp-breadcrumb {
    padding: 0px 40px !important;
  }
}
.breadcrumb .cmp-breadcrumb .cmp-breadcrumb__list {
  padding-left: 0;
  padding-bottom: 0;
  margin-bottom: 0;
  line-height: 14px;
}
.breadcrumb .cmp-breadcrumb .cmp-breadcrumb__list .cmp-breadcrumb__item {
  line-height: 16px;
  font-size: 14px;
  color: var(--mdc-theme-color-gray-600);
}
@media (min-width: 768px) {
  .breadcrumb .cmp-breadcrumb .cmp-breadcrumb__list .cmp-breadcrumb__item:after {
    content: "/";
    color: var(--mdc-theme-color-gray-700);
    margin: -2px 0.5rem 0 0.25rem;
  }
}
.breadcrumb .cmp-breadcrumb .cmp-breadcrumb__list .cmp-breadcrumb__item:last-child:after {
  content: none;
}
.breadcrumb .cmp-breadcrumb .cmp-breadcrumb__list .cmp-breadcrumb__item a.cmp-breadcrumb__item-link {
  color: var(--mdc-theme-primary);
  text-decoration: none;
  display: inline-flex;
}
.breadcrumb .cmp-breadcrumb .cmp-breadcrumb__list .cmp-breadcrumb__item a:hover {
  border-bottom: 1px solid var(--mdc-theme-primary);
}
.breadcrumb .cmp-breadcrumb .cmp-breadcrumb__list .cmp-breadcrumb__item a:active {
  color: var(--mdc-theme-amadeus-dark);
  border-bottom: 1px solid var(--mdc-theme-amadeus-dark);
}
.breadcrumb .cmp-breadcrumb .cmp-breadcrumb__list .cmp-breadcrumb__item a:focus {
  box-shadow: 0 0 0 3px var(--mdc-theme-primary-focus) !important;
  border-radius: 3px;
}
.breadcrumb .cmp-breadcrumb .cmp-breadcrumb__list .cmp-breadcrumb__item span[itemprop="name"] {
  overflow: hidden;
  max-width: 35ch;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: inline-block;
  justify-content: left;
}
@media (max-width: 767px) {
  .breadcrumb .cmp-breadcrumb .cmp-breadcrumb__list .cmp-breadcrumb__item.cmp-breadcrumb__item--active {
    display: none;
  }
}
@media (max-width: 767px) {
  .breadcrumb .cmp-breadcrumb .cmp-breadcrumb__list .cmp-breadcrumb__item a {
    display: none;
  }
  .breadcrumb .cmp-breadcrumb .cmp-breadcrumb__list .cmp-breadcrumb__item:nth-last-child(2) a {
    display: inline-flex;
    line-height: 16px;
  }
  .breadcrumb .cmp-breadcrumb .cmp-breadcrumb__list .cmp-breadcrumb__item:nth-last-child(2) a:before {
    font-family: 'AmadeusIconFont';
    content: "\e921";
    margin: 0 12px 0 0;
    line-height: 13px;
    font-size: 14px;
    display: flex;
    align-items: center;
  }
  .breadcrumb .cmp-breadcrumb .cmp-breadcrumb__list .cmp-breadcrumb__item:nth-last-child(2) a span[itemprop=name] {
    line-height: 16px;
  }
}

.benefits-block-slide.color--sky.dark {
  background: #000835 !important;
}
.benefits-block-slide.color--sky .benefits-block-element {
  background-color: #000835 !important;
}
.benefits-block-slide.color--sky .benefits-block-element .bbe--numberElement,
.benefits-block-slide.color--sky .benefits-block-element .label,
.benefits-block-slide.color--sky .benefits-block-element h3,
.benefits-block-slide.color--sky .benefits-block-element div.paragraph {
  color: #c5d5f9 !important;
}
.benefits-block-slide.color--sky .benefits-block-slide--indicators {
  background-color: #000835 !important;
}
.benefits-block-slide.color--sky .cmp-carousel__indicators::before {
  background: #3a8bff !important;
  opacity: 0.5 !important;
}
.benefits-block-slide.color--sky .cmp-carousel__indicator {
  color: #3a8bff !important;
  opacity: 0.5 !important;
}
.benefits-block-slide.color--sky .cmp-carousel__indicator:hover {
  color: #3a8bff !important;
}
.benefits-block-slide.color--sky .cmp-carousel__indicator:hover:before {
  background: #3a8bff !important;
}
.benefits-block-slide.color--sky .cmp-carousel__indicator--active {
  opacity: 1 !important;
}
.benefits-block-slide.color--sky .cmp-carousel__indicator--active::before {
  background: #3a8bff !important;
}
@media (max-width: 767px) {
  .benefits-block-slide.color--sky .cmp-carousel__indicator {
    color: transparent !important;
  }
  .benefits-block-slide.color--sky .cmp-carousel__indicator::before {
    color: #3a8bff !important;
  }
}
.benefits-block-slide.color--violet.dark {
  background: #26005a !important;
}
.benefits-block-slide.color--violet .benefits-block-element {
  background-color: #26005a !important;
}
.benefits-block-slide.color--violet .benefits-block-element .bbe--numberElement,
.benefits-block-slide.color--violet .benefits-block-element .label,
.benefits-block-slide.color--violet .benefits-block-element h3,
.benefits-block-slide.color--violet .benefits-block-element div.paragraph {
  color: #e4c7ff !important;
}
.benefits-block-slide.color--violet .benefits-block-slide--indicators {
  background-color: #26005a !important;
}
.benefits-block-slide.color--violet .cmp-carousel__indicators::before {
  background: #b650ff !important;
  opacity: 0.5 !important;
}
.benefits-block-slide.color--violet .cmp-carousel__indicator {
  color: #b650ff !important;
  opacity: 0.5 !important;
}
.benefits-block-slide.color--violet .cmp-carousel__indicator:hover {
  color: #b650ff !important;
}
.benefits-block-slide.color--violet .cmp-carousel__indicator:hover:before {
  background: #b650ff !important;
}
.benefits-block-slide.color--violet .cmp-carousel__indicator--active {
  opacity: 1 !important;
}
.benefits-block-slide.color--violet .cmp-carousel__indicator--active::before {
  background: #b650ff !important;
}
@media (max-width: 767px) {
  .benefits-block-slide.color--violet .cmp-carousel__indicator {
    color: transparent !important;
  }
  .benefits-block-slide.color--violet .cmp-carousel__indicator::before {
    color: #b650ff !important;
  }
}
.benefits-block-slide.color--forest.dark {
  background: #023a00 !important;
}
.benefits-block-slide.color--forest .benefits-block-element {
  background-color: #023a00 !important;
}
.benefits-block-slide.color--forest .benefits-block-element .bbe--numberElement,
.benefits-block-slide.color--forest .benefits-block-element .label,
.benefits-block-slide.color--forest .benefits-block-element h3,
.benefits-block-slide.color--forest .benefits-block-element div.paragraph {
  color: #c8ffc0 !important;
}
.benefits-block-slide.color--forest .benefits-block-slide--indicators {
  background-color: #023a00 !important;
}
.benefits-block-slide.color--forest .cmp-carousel__indicators::before {
  background: #92ff73 !important;
  opacity: 0.5 !important;
}
.benefits-block-slide.color--forest .cmp-carousel__indicator {
  color: #92ff73 !important;
  opacity: 0.5 !important;
}
.benefits-block-slide.color--forest .cmp-carousel__indicator:hover {
  color: #92ff73 !important;
}
.benefits-block-slide.color--forest .cmp-carousel__indicator:hover:before {
  background: #92ff73 !important;
}
.benefits-block-slide.color--forest .cmp-carousel__indicator--active {
  opacity: 1 !important;
}
.benefits-block-slide.color--forest .cmp-carousel__indicator--active::before {
  background: #92ff73 !important;
}
@media (max-width: 767px) {
  .benefits-block-slide.color--forest .cmp-carousel__indicator {
    color: transparent !important;
  }
  .benefits-block-slide.color--forest .cmp-carousel__indicator::before {
    color: #92ff73 !important;
  }
}
.benefits-block-slide.color--sky  .button {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  gap: 8px;
  background-clip: padding-box;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 500;
  line-height: 150%;
  background-color: #ebf3ff;
  color: #000835;
  border: 2px solid transparent;
}
.benefits-block-slide.color--sky  .button.outline {
  background-color: transparent;
  border-color: #ebf3ff;
  color: #ebf3ff;
}
.benefits-block-slide.color--sky  .button:hover {
  border-color: transparent;
  color: #000835;
  background-color: #9fc6ff;
}
.benefits-block-slide.color--sky  .button:focus-visible {
  color: #000835;
  background-color: #9fc6ff;
  border-color: transparent;
  outline: 2px solid #9fc6ff;
}
.benefits-block-slide.color--sky  .button:active {
  outline: none;
  border-color: transparent;
  color: #ffffff;
  background-color: #61a2ff;
}
.benefits-block-slide.color--sky  .button.ghost {
  color: #ebf3ff;
  background-color: transparent;
  border-color: transparent;
  padding-left: 0;
  padding-right: 0;
}
.benefits-block-slide.color--sky  .button.ghost .button__label {
  position: relative;
}
.benefits-block-slide.color--sky  .button.ghost .button__label:after {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  width: 0;
  transition: width 400ms;
  height: 1px;
  background-color: #ebf3ff;
}
.benefits-block-slide.color--sky  .button.ghost:hover {
  border-color: transparent;
  color: #ebf3ff;
  background-color: transparent;
}
.benefits-block-slide.color--sky  .button.ghost:hover .button__label::after {
  width: 100%;
}
.benefits-block-slide.color--sky  .button.ghost:focus-visible {
  outline: none;
  background-color: transparent;
  border-color: #9fc6ff;
  color: #ebf3ff;
}
.benefits-block-slide.color--sky  .button.ghost:active {
  border-color: transparent;
  background-color: #ebf3ff;
  color: #000835;
}
.benefits-block-slide.color--sky  .button__icon {
  font-size: 24px;
  margin-bottom: 0;
}
.benefits-block-slide.color--violet  .button {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  gap: 8px;
  background-clip: padding-box;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 500;
  line-height: 150%;
  background-color: #f8eeff;
  color: #26005a;
  border: 2px solid transparent;
}
.benefits-block-slide.color--violet  .button.outline {
  background-color: transparent;
  border-color: #f8eeff;
  color: #f8eeff;
}
.benefits-block-slide.color--violet  .button:hover {
  border-color: transparent;
  color: #26005a;
  background-color: #d396ff;
}
.benefits-block-slide.color--violet  .button:focus-visible {
  color: #26005a;
  background-color: #d396ff;
  border-color: transparent;
  outline: 2px solid #d396ff;
}
.benefits-block-slide.color--violet  .button:active {
  outline: none;
  border-color: transparent;
  color: #ffffff;
  background-color: #c573ff;
}
.benefits-block-slide.color--violet  .button.ghost {
  color: #f8eeff;
  background-color: transparent;
  border-color: transparent;
  padding-left: 0;
  padding-right: 0;
}
.benefits-block-slide.color--violet  .button.ghost .button__label {
  position: relative;
}
.benefits-block-slide.color--violet  .button.ghost .button__label:after {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  width: 0;
  transition: width 400ms;
  height: 1px;
  background-color: #f8eeff;
}
.benefits-block-slide.color--violet  .button.ghost:hover {
  border-color: transparent;
  color: #f8eeff;
  background-color: transparent;
}
.benefits-block-slide.color--violet  .button.ghost:hover .button__label::after {
  width: 100%;
}
.benefits-block-slide.color--violet  .button.ghost:focus-visible {
  outline: none;
  background-color: transparent;
  border-color: #d396ff;
  color: #f8eeff;
}
.benefits-block-slide.color--violet  .button.ghost:active {
  border-color: transparent;
  background-color: #f8eeff;
  color: #26005a;
}
.benefits-block-slide.color--violet  .button__icon {
  font-size: 24px;
  margin-bottom: 0;
}
.benefits-block-slide.color--crimson  .button {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  gap: 8px;
  background-clip: padding-box;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 500;
  line-height: 150%;
  background-color: #ffeeed;
  color: #560900;
  border: 2px solid transparent;
}
.benefits-block-slide.color--crimson  .button.outline {
  background-color: transparent;
  border-color: #ffeeed;
  color: #ffeeed;
}
.benefits-block-slide.color--crimson  .button:hover {
  border-color: transparent;
  color: #560900;
  background-color: #ff9794;
}
.benefits-block-slide.color--crimson  .button:focus-visible {
  color: #560900;
  background-color: #ff9794;
  border-color: transparent;
  outline: 2px solid #ff9794;
}
.benefits-block-slide.color--crimson  .button:active {
  outline: none;
  border-color: transparent;
  color: #ffffff;
  background-color: #ff7471;
}
.benefits-block-slide.color--crimson  .button.ghost {
  color: #ffeeed;
  background-color: transparent;
  border-color: transparent;
  padding-left: 0;
  padding-right: 0;
}
.benefits-block-slide.color--crimson  .button.ghost .button__label {
  position: relative;
}
.benefits-block-slide.color--crimson  .button.ghost .button__label:after {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  width: 0;
  transition: width 400ms;
  height: 1px;
  background-color: #ffeeed;
}
.benefits-block-slide.color--crimson  .button.ghost:hover {
  border-color: transparent;
  color: #ffeeed;
  background-color: transparent;
}
.benefits-block-slide.color--crimson  .button.ghost:hover .button__label::after {
  width: 100%;
}
.benefits-block-slide.color--crimson  .button.ghost:focus-visible {
  outline: none;
  background-color: transparent;
  border-color: #ff9794;
  color: #ffeeed;
}
.benefits-block-slide.color--crimson  .button.ghost:active {
  border-color: transparent;
  background-color: #ffeeed;
  color: #560900;
}
.benefits-block-slide.color--crimson  .button__icon {
  font-size: 24px;
  margin-bottom: 0;
}
.benefits-block-slide.color--forest  .button {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  gap: 8px;
  background-clip: padding-box;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 500;
  line-height: 150%;
  background-color: #f0ffec;
  color: #023a00;
  border: 2px solid transparent;
}
.benefits-block-slide.color--forest  .button.outline {
  background-color: transparent;
  border-color: #f0ffec;
  color: #f0ffec;
}
.benefits-block-slide.color--forest  .button:hover {
  border-color: transparent;
  color: #023a00;
  background-color: #beffab;
}
.benefits-block-slide.color--forest  .button:focus-visible {
  color: #023a00;
  background-color: #beffab;
  border-color: transparent;
  outline: 2px solid #beffab;
}
.benefits-block-slide.color--forest  .button:active {
  outline: none;
  border-color: transparent;
  color: #ffffff;
  background-color: #a8ff8f;
}
.benefits-block-slide.color--forest  .button.ghost {
  color: #f0ffec;
  background-color: transparent;
  border-color: transparent;
  padding-left: 0;
  padding-right: 0;
}
.benefits-block-slide.color--forest  .button.ghost .button__label {
  position: relative;
}
.benefits-block-slide.color--forest  .button.ghost .button__label:after {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  width: 0;
  transition: width 400ms;
  height: 1px;
  background-color: #f0ffec;
}
.benefits-block-slide.color--forest  .button.ghost:hover {
  border-color: transparent;
  color: #f0ffec;
  background-color: transparent;
}
.benefits-block-slide.color--forest  .button.ghost:hover .button__label::after {
  width: 100%;
}
.benefits-block-slide.color--forest  .button.ghost:focus-visible {
  outline: none;
  background-color: transparent;
  border-color: #beffab;
  color: #f0ffec;
}
.benefits-block-slide.color--forest  .button.ghost:active {
  border-color: transparent;
  background-color: #f0ffec;
  color: #023a00;
}
.benefits-block-slide.color--forest  .button__icon {
  font-size: 24px;
  margin-bottom: 0;
}
.benefits-block-slide.color--canary  .button {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  gap: 8px;
  background-clip: padding-box;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 500;
  line-height: 150%;
  background-color: #fffce6;
  color: #564a00;
  border: 2px solid transparent;
}
.benefits-block-slide.color--canary  .button.outline {
  background-color: transparent;
  border-color: #fffce6;
  color: #fffce6;
}
.benefits-block-slide.color--canary  .button:hover {
  border-color: transparent;
  color: #564a00;
  background-color: #fdf092;
}
.benefits-block-slide.color--canary  .button:focus-visible {
  color: #564a00;
  background-color: #fdf092;
  border-color: transparent;
  outline: 2px solid #fdf092;
}
.benefits-block-slide.color--canary  .button:active {
  outline: none;
  border-color: transparent;
  color: #ffffff;
  background-color: #fdeb6d;
}
.benefits-block-slide.color--canary  .button.ghost {
  color: #fffce6;
  background-color: transparent;
  border-color: transparent;
  padding-left: 0;
  padding-right: 0;
}
.benefits-block-slide.color--canary  .button.ghost .button__label {
  position: relative;
}
.benefits-block-slide.color--canary  .button.ghost .button__label:after {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  width: 0;
  transition: width 400ms;
  height: 1px;
  background-color: #fffce6;
}
.benefits-block-slide.color--canary  .button.ghost:hover {
  border-color: transparent;
  color: #fffce6;
  background-color: transparent;
}
.benefits-block-slide.color--canary  .button.ghost:hover .button__label::after {
  width: 100%;
}
.benefits-block-slide.color--canary  .button.ghost:focus-visible {
  outline: none;
  background-color: transparent;
  border-color: #fdf092;
  color: #fffce6;
}
.benefits-block-slide.color--canary  .button.ghost:active {
  border-color: transparent;
  background-color: #fffce6;
  color: #564a00;
}
.benefits-block-slide.color--canary  .button__icon {
  font-size: 24px;
  margin-bottom: 0;
}
.benefits-block-slide.color--fuchsia  .button {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  gap: 8px;
  background-clip: padding-box;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 500;
  line-height: 150%;
  background-color: #ffeef7;
  color: #4f0230;
  border: 2px solid transparent;
}
.benefits-block-slide.color--fuchsia  .button.outline {
  background-color: transparent;
  border-color: #ffeef7;
  color: #ffeef7;
}
.benefits-block-slide.color--fuchsia  .button:hover {
  border-color: transparent;
  color: #4f0230;
  background-color: #ff9be3;
}
.benefits-block-slide.color--fuchsia  .button:focus-visible {
  color: #4f0230;
  background-color: #ff9be3;
  border-color: transparent;
  outline: 2px solid #ff9be3;
}
.benefits-block-slide.color--fuchsia  .button:active {
  outline: none;
  border-color: transparent;
  color: #ffffff;
  background-color: #ff79bd;
}
.benefits-block-slide.color--fuchsia  .button.ghost {
  color: #ffeef7;
  background-color: transparent;
  border-color: transparent;
  padding-left: 0;
  padding-right: 0;
}
.benefits-block-slide.color--fuchsia  .button.ghost .button__label {
  position: relative;
}
.benefits-block-slide.color--fuchsia  .button.ghost .button__label:after {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  width: 0;
  transition: width 400ms;
  height: 1px;
  background-color: #ffeef7;
}
.benefits-block-slide.color--fuchsia  .button.ghost:hover {
  border-color: transparent;
  color: #ffeef7;
  background-color: transparent;
}
.benefits-block-slide.color--fuchsia  .button.ghost:hover .button__label::after {
  width: 100%;
}
.benefits-block-slide.color--fuchsia  .button.ghost:focus-visible {
  outline: none;
  background-color: transparent;
  border-color: #ff9be3;
  color: #ffeef7;
}
.benefits-block-slide.color--fuchsia  .button.ghost:active {
  border-color: transparent;
  background-color: #ffeef7;
  color: #4f0230;
}
.benefits-block-slide.color--fuchsia  .button__icon {
  font-size: 24px;
  margin-bottom: 0;
}
.benefits-block-slide.color--pumpkin  .button {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  gap: 8px;
  background-clip: padding-box;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 500;
  line-height: 150%;
  background-color: #fff0e6;
  color: #5b2500;
  border: 2px solid transparent;
}
.benefits-block-slide.color--pumpkin  .button.outline {
  background-color: transparent;
  border-color: #fff0e6;
  color: #fff0e6;
}
.benefits-block-slide.color--pumpkin  .button:hover {
  border-color: transparent;
  color: #5b2500;
  background-color: #ffa366;
}
.benefits-block-slide.color--pumpkin  .button:focus-visible {
  color: #5b2500;
  background-color: #ffa366;
  border-color: transparent;
  outline: 2px solid #ffa366;
}
.benefits-block-slide.color--pumpkin  .button:active {
  outline: none;
  border-color: transparent;
  color: #ffffff;
  background-color: #ff8838;
}
.benefits-block-slide.color--pumpkin  .button.ghost {
  color: #fff0e6;
  background-color: transparent;
  border-color: transparent;
  padding-left: 0;
  padding-right: 0;
}
.benefits-block-slide.color--pumpkin  .button.ghost .button__label {
  position: relative;
}
.benefits-block-slide.color--pumpkin  .button.ghost .button__label:after {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  width: 0;
  transition: width 400ms;
  height: 1px;
  background-color: #fff0e6;
}
.benefits-block-slide.color--pumpkin  .button.ghost:hover {
  border-color: transparent;
  color: #fff0e6;
  background-color: transparent;
}
.benefits-block-slide.color--pumpkin  .button.ghost:hover .button__label::after {
  width: 100%;
}
.benefits-block-slide.color--pumpkin  .button.ghost:focus-visible {
  outline: none;
  background-color: transparent;
  border-color: #ffa366;
  color: #fff0e6;
}
.benefits-block-slide.color--pumpkin  .button.ghost:active {
  border-color: transparent;
  background-color: #fff0e6;
  color: #5b2500;
}
.benefits-block-slide.color--pumpkin  .button__icon {
  font-size: 24px;
  margin-bottom: 0;
}
.benefits-block-slide.color--custom  .button {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  gap: 8px;
  background-clip: padding-box;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 500;
  line-height: 150%;
  background-color: #000835;
  color: #3a8bff;
  border: 2px solid transparent;
}
.benefits-block-slide.color--custom  .button.outline {
  background-color: transparent;
  border-color: #000835;
  color: #000835;
}
.benefits-block-slide.color--custom  .button:hover {
  border-color: transparent;
  color: #3a8bff;
  background-color: #000835;
}
.benefits-block-slide.color--custom  .button:focus-visible {
  color: #3a8bff;
  background-color: #000835;
  border-color: transparent;
  outline: 2px solid #000835;
}
.benefits-block-slide.color--custom  .button:active {
  outline: none;
  border-color: transparent;
  color: #ffffff;
  background-color: #61a2ff;
}
.benefits-block-slide.color--custom  .button.ghost {
  color: #000835;
  background-color: transparent;
  border-color: transparent;
  padding-left: 0;
  padding-right: 0;
}
.benefits-block-slide.color--custom  .button.ghost .button__label {
  position: relative;
}
.benefits-block-slide.color--custom  .button.ghost .button__label:after {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  width: 0;
  transition: width 400ms;
  height: 1px;
  background-color: #000835;
}
.benefits-block-slide.color--custom  .button.ghost:hover {
  border-color: transparent;
  color: #000835;
  background-color: transparent;
}
.benefits-block-slide.color--custom  .button.ghost:hover .button__label::after {
  width: 100%;
}
.benefits-block-slide.color--custom  .button.ghost:focus-visible {
  outline: none;
  background-color: transparent;
  border-color: #000835;
  color: #000835;
}
.benefits-block-slide.color--custom  .button.ghost:active {
  border-color: transparent;
  background-color: #000835;
  color: #3a8bff;
}
.benefits-block-slide.color--custom  .button__icon {
  font-size: 24px;
  margin-bottom: 0;
}
.benefits-block-slide.dark {
  background: #ffffff !important;
}
.benefits-block-slide.padding-top--small .testimonialCarr.container {
  padding-top: var(--md-sys-padding-medium) !important;
}
.benefits-block-slide.padding-bottom--small .testimonialCarr.container {
  padding-bottom: var(--md-sys-padding-medium) !important;
}
.benefits-block-slide.padding-top--none .testimonialCarr.container {
  padding-top: 0 !important;
}
.benefits-block-slide.padding-bottom--none .testimonialCarr.container {
  padding-bottom: 0 !important;
}
.benefits-block-slide .benefits--block-slide-component,
.benefits-block-slide .testimonialCarr.container {
  height: 100% !important;
}
.benefits-block-slide .benefits-block-element {
  background-color: #ffffff;
  padding: 24px;
}
.benefits-block-slide .benefits-block-element .bbe--numberElement,
.benefits-block-slide .benefits-block-element .benefits-block-slide.dark {
  color: #0c66e1 !important;
}
.benefits-block-slide .benefits-block-element h3,
.benefits-block-slide .benefits-block-element div.paragraph {
  color: #1a1a1a;
}
.benefits-block-slide .bbe__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.benefits-block-slide .bbe__buttons .button {
  flex-grow: 1;
}
.benefits-block-slide--indicators {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 200px !important;
  background-color: #0c66e1;
  display: flex;
  align-items: center;
}
.benefits-block-slide .cmp-carousel__indicators {
  right: 50%;
}
.benefits-block-slide .cmp-carousel__indicators::before {
  background: #000835;
}
.benefits-block-slide .cmp-carousel__indicator {
  color: #000835;
}
.benefits-block-slide .col-lg-5.offset-lg-1.col-md-10.offset-md-1.col-12.containerLightVersion {
  height: 0;
  width: 0;
}
@media (max-width: 767px) {
  .benefits-block-slide .benefits--block-slide-component-bg {
    height: 200px !important;
    position: relative !important;
  }
  .benefits-block-slide .bbs-optionImage-picture {
    position: absolute;
    top: 0;
    bottom: 0;
  }
  .benefits-block-slide .bbs-optionImage-picture img {
    max-height: 200px;
  }
  .benefits-block-slide .benefits-block-slide--indicators {
    position: unset;
    display: unset;
    width: 100% !important;
  }
  .benefits-block-slide .cmp-carousel__indicators {
    right: unset;
  }
  .benefits-block-slide .testimonialCarr.container {
    padding: 0 !important;
    margin: 0 !important;
    max-width: unset;
  }
  .benefits-block-slide .cmp-carousel__content {
    display: grid;
  }
  .benefits-block-slide .cmp-carousel__item {
    height: 100% !important;
    grid-row: 1;
    grid-column: 1;
  }
  .benefits-block-slide .benefits-block-element {
    height: 100% !important;
  }
  .benefits-block-slide .bbe__buttons {
    flex-direction: column;
    gap: 16px;
  }
  .benefits-block-slide .bbe__buttons .button {
    width: auto;
  }
  .benefits-block-slide .col-12.col-md-6.col-lg-5.offset-lg-0 {
    order: 3;
  }
}

body.amadeusTheme .benefits-block-capsules.color--sky {
  background-color: #c5d5f9 !important;
}
body.amadeusTheme .benefits-block-capsules.color--sky .bbmHeading .label,
body.amadeusTheme .benefits-block-capsules.color--sky .bbmHeading .bbmTitle,
body.amadeusTheme .benefits-block-capsules.color--sky .bbmHeading .bbmDescription {
  color: #000835 !important;
}
body.amadeusTheme .benefits-block-capsules.color--sky .bbmCard {
  background-color: #ebf3ff !important;
}
body.amadeusTheme .benefits-block-capsules.color--sky .bbmCard .bbmCardTitle,
body.amadeusTheme .benefits-block-capsules.color--sky .bbmCard .bbmCardDesc {
  color: #000835 !important;
}
body.amadeusTheme .benefits-block-capsules.color--sky .bbmCard .bbmMediaIcon::before {
  color: #0c66e1 !important;
}
body.amadeusTheme .benefits-block-capsules.color--sky .bbmCardButton {
  background-color: #000835 !important;
}
body.amadeusTheme .benefits-block-capsules.color--sky .bbmCardButton .bbmMediaIcon::before {
  color: #ebf3ff !important;
}
body.amadeusTheme .benefits-block-capsules.color--sky .bbmCardButton:hover {
  background-color: #0a2f62 !important;
}
body.amadeusTheme .benefits-block-capsules.color--sky .bbmCardButton:focus {
  background-color: #0a2f62 !important;
  outline: 2px solid #0a2f62 !important;
}
body.amadeusTheme .benefits-block-capsules.color--sky .bbmCardButton:active {
  outline: none !important;
  background-color: #104ea4 !important;
}
body.amadeusTheme .benefits-block-capsules.color--sky .bbmButtonTitle {
  color: #ebf3ff !important;
}
body.amadeusTheme .benefits-block-capsules.color--violet {
  background-color: #e4c7ff !important;
}
body.amadeusTheme .benefits-block-capsules.color--violet .bbmHeading .label,
body.amadeusTheme .benefits-block-capsules.color--violet .bbmHeading .bbmTitle,
body.amadeusTheme .benefits-block-capsules.color--violet .bbmHeading .bbmDescription {
  color: #26005a !important;
}
body.amadeusTheme .benefits-block-capsules.color--violet .bbmCard {
  background-color: #f8eeff !important;
}
body.amadeusTheme .benefits-block-capsules.color--violet .bbmCard .bbmCardTitle,
body.amadeusTheme .benefits-block-capsules.color--violet .bbmCard .bbmCardDesc {
  color: #26005a !important;
}
body.amadeusTheme .benefits-block-capsules.color--violet .bbmCard .bbmMediaIcon::before {
  color: #9240cc !important;
}
body.amadeusTheme .benefits-block-capsules.color--violet .bbmCardButton {
  background-color: #26005a !important;
}
body.amadeusTheme .benefits-block-capsules.color--violet .bbmCardButton .bbmMediaIcon::before {
  color: #f8eeff !important;
}
body.amadeusTheme .benefits-block-capsules.color--violet .bbmCardButton:hover {
  background-color: #461b64 !important;
}
body.amadeusTheme .benefits-block-capsules.color--violet .bbmCardButton:focus {
  background-color: #461b64 !important;
  outline: 2px solid #461b64 !important;
}
body.amadeusTheme .benefits-block-capsules.color--violet .bbmCardButton:active {
  outline: none !important;
  background-color: #6d3099 !important;
}
body.amadeusTheme .benefits-block-capsules.color--violet .bbmButtonTitle {
  color: #f8eeff !important;
}
body.amadeusTheme .benefits-block-capsules.color--forest {
  background-color: #c8ffc0 !important;
}
body.amadeusTheme .benefits-block-capsules.color--forest .bbmHeading .label,
body.amadeusTheme .benefits-block-capsules.color--forest .bbmHeading .bbmTitle,
body.amadeusTheme .benefits-block-capsules.color--forest .bbmHeading .bbmDescription {
  color: #023a00 !important;
}
body.amadeusTheme .benefits-block-capsules.color--forest .bbmCard {
  background-color: #f0ffec !important;
}
body.amadeusTheme .benefits-block-capsules.color--forest .bbmCard .bbmCardTitle,
body.amadeusTheme .benefits-block-capsules.color--forest .bbmCard .bbmCardDesc {
  color: #023a00 !important;
}
body.amadeusTheme .benefits-block-capsules.color--forest .bbmCard .bbmMediaIcon::before {
  color: #6dc354 !important;
}
body.amadeusTheme .benefits-block-capsules.color--forest .bbmCardButton {
  background-color: #023a00 !important;
}
body.amadeusTheme .benefits-block-capsules.color--forest .bbmCardButton .bbmMediaIcon::before {
  color: #f0ffec !important;
}
body.amadeusTheme .benefits-block-capsules.color--forest .bbmCardButton:hover {
  background-color: #3a662e !important;
}
body.amadeusTheme .benefits-block-capsules.color--forest .bbmCardButton:focus {
  background-color: #3a662e !important;
  outline: 2px solid #3a662e !important;
}
body.amadeusTheme .benefits-block-capsules.color--forest .bbmCardButton:active {
  outline: none !important;
  background-color: #569643 !important;
}
body.amadeusTheme .benefits-block-capsules.color--forest .bbmButtonTitle {
  color: #f0ffec !important;
}
body.amadeusTheme .benefits-block-capsules .bbmCardBlock .bbmCard {
  background-color: #ebf3ff;
  box-shadow: none;
  border-radius: 0;
}
body.amadeusTheme .benefits-block-capsules .bbmCardBlock .bbmCard.bbmCardButton {
  background-color: #0c66e1;
  text-decoration: none;
  background-clip: padding-box;
  border: 2px solid transparent;
}
body.amadeusTheme .benefits-block-capsules .bbmCardBlock .bbmCard.bbmCardButton .bbmDescription .bbmButtonTitle {
  text-align: left;
}
body.amadeusTheme .benefits-block-capsules .bbmCardBlock .bbmCard.bbmCardButton:hover {
  border-color: transparent;
  color: #ffffff;
  background-color: #104ea4;
}
body.amadeusTheme .benefits-block-capsules .bbmCardBlock .bbmCard.bbmCardButton:hover .bbmDescription {
  text-decoration: underline;
}
body.amadeusTheme .benefits-block-capsules .bbmCardBlock .bbmCard.bbmCardButton:focus {
  color: #ffffff;
  background-color: #104ea4;
  border-color: transparent;
  outline: 2px solid #104ea4;
}
body.amadeusTheme .benefits-block-capsules .bbmCardBlock .bbmCard.bbmCardButton:active {
  outline: none;
  border-color: transparent;
  color: #ffffff;
  background-color: #000835;
}
body.amadeusTheme .benefits-block-capsules .bbmCardBlock .bbmCard.bbmCardButton .bbmMediaIcon::before {
  font-size: 32px !important;
}

.cmp-base {
  padding: 72px 0;
}
@media (max-width: 991px) {
  .cmp-base {
    padding: 64px 0;
  }
}
@media (max-width: 767px) {
  .cmp-base {
    padding: 48px 0;
  }
}
.cmp-base.padding-top--small {
  padding-top: 40px;
}
@media (max-width: 991px) {
  .cmp-base.padding-top--small {
    padding-top: 32px;
  }
}
@media (max-width: 767px) {
  .cmp-base.padding-top--small {
    padding-top: 24px;
  }
}
.cmp-base.padding-bottom--small {
  padding-bottom: 40px;
}
@media (max-width: 991px) {
  .cmp-base.padding-bottom--small {
    padding-bottom: 32px;
  }
}
@media (max-width: 767px) {
  .cmp-base.padding-bottom--small {
    padding-bottom: 24px;
  }
}
.cmp-base.padding-top--none {
  padding-top: 0;
}
@media (max-width: 991px) {
  .cmp-base.padding-top--none {
    padding-top: 0;
  }
}
@media (max-width: 767px) {
  .cmp-base.padding-top--none {
    padding-top: 0;
  }
}
.cmp-base.padding-bottom--none {
  padding-bottom: 0;
}
@media (max-width: 991px) {
  .cmp-base.padding-bottom--none {
    padding-bottom: 0;
  }
}
@media (max-width: 767px) {
  .cmp-base.padding-bottom--none {
    padding-bottom: 0;
  }
}
.banner_v2.color--sky .new-button {
  background-color: #ebf3ff !important;
  color: #000835 !important;
}
.banner_v2.color--sky .new-button:hover {
  border-color: transparent !important;
  background-color: #9fc6ff !important;
}
.banner_v2.color--sky .new-button:focus {
  border-color: transparent !important;
  outline: 2px solid #9fc6ff !important;
  background-color: #9fc6ff !important;
}
.banner_v2.color--sky .new-button:active {
  outline: none !important;
  border-color: transparent !important;
  background-color: #61a2ff !important;
}
.banner_v2.color--sky .new-button--outline {
  background-color: transparent !important;
  border: 2px solid #9fc6ff !important;
}
.banner_v2.color--violet .new-button {
  background-color: #f8eeff !important;
  color: #26005a !important;
}
.banner_v2.color--violet .new-button:hover {
  border-color: transparent !important;
  background-color: #d396ff !important;
}
.banner_v2.color--violet .new-button:focus {
  border-color: transparent !important;
  outline: 2px solid #d396ff !important;
  background-color: #d396ff !important;
}
.banner_v2.color--violet .new-button:active {
  outline: none !important;
  border-color: transparent !important;
  background-color: #c573ff !important;
}
.banner_v2.color--violet .new-button--outline {
  background-color: transparent !important;
  border: 2px solid #d396ff !important;
}
.banner_v2.color--crimson .new-button {
  background-color: #ffeeed !important;
  color: #560900 !important;
}
.banner_v2.color--crimson .new-button:hover {
  border-color: transparent !important;
  background-color: #ff9794 !important;
}
.banner_v2.color--crimson .new-button:focus {
  border-color: transparent !important;
  outline: 2px solid #ff9794 !important;
  background-color: #ff9794 !important;
}
.banner_v2.color--crimson .new-button:active {
  outline: none !important;
  border-color: transparent !important;
  background-color: #ff7471 !important;
}
.banner_v2.color--crimson .new-button--outline {
  background-color: transparent !important;
  border: 2px solid #ff9794 !important;
}
.banner_v2.color--forest .new-button {
  background-color: #f0ffec !important;
  color: #023a00 !important;
}
.banner_v2.color--forest .new-button:hover {
  border-color: transparent !important;
  background-color: #beffab !important;
}
.banner_v2.color--forest .new-button:focus {
  border-color: transparent !important;
  outline: 2px solid #beffab !important;
  background-color: #beffab !important;
}
.banner_v2.color--forest .new-button:active {
  outline: none !important;
  border-color: transparent !important;
  background-color: #a8ff8f !important;
}
.banner_v2.color--forest .new-button--outline {
  background-color: transparent !important;
  border: 2px solid #beffab !important;
}
.banner_v2.color--canary .new-button {
  background-color: #fffce6 !important;
  color: #564a00 !important;
}
.banner_v2.color--canary .new-button:hover {
  border-color: transparent !important;
  background-color: #fdf092 !important;
}
.banner_v2.color--canary .new-button:focus {
  border-color: transparent !important;
  outline: 2px solid #fdf092 !important;
  background-color: #fdf092 !important;
}
.banner_v2.color--canary .new-button:active {
  outline: none !important;
  border-color: transparent !important;
  background-color: #fdeb6d !important;
}
.banner_v2.color--canary .new-button--outline {
  background-color: transparent !important;
  border: 2px solid #fdf092 !important;
}
.banner_v2.color--fuchsia .new-button {
  background-color: #ffeef7 !important;
  color: #4f0230 !important;
}
.banner_v2.color--fuchsia .new-button:hover {
  border-color: transparent !important;
  background-color: #ff9be3 !important;
}
.banner_v2.color--fuchsia .new-button:focus {
  border-color: transparent !important;
  outline: 2px solid #ff9be3 !important;
  background-color: #ff9be3 !important;
}
.banner_v2.color--fuchsia .new-button:active {
  outline: none !important;
  border-color: transparent !important;
  background-color: #ff79bd !important;
}
.banner_v2.color--fuchsia .new-button--outline {
  background-color: transparent !important;
  border: 2px solid #ff9be3 !important;
}
.banner_v2.color--pumpkin .new-button {
  background-color: #fff0e6 !important;
  color: #5b2500 !important;
}
.banner_v2.color--pumpkin .new-button:hover {
  border-color: transparent !important;
  background-color: #ffa366 !important;
}
.banner_v2.color--pumpkin .new-button:focus {
  border-color: transparent !important;
  outline: 2px solid #ffa366 !important;
  background-color: #ffa366 !important;
}
.banner_v2.color--pumpkin .new-button:active {
  outline: none !important;
  border-color: transparent !important;
  background-color: #ff8838 !important;
}
.banner_v2.color--pumpkin .new-button--outline {
  background-color: transparent !important;
  border: 2px solid #ffa366 !important;
}
.banner_v2.color--sky .cmp-banner__content {
  background-color: #000835;
}
.banner_v2.color--sky .cmp-banner__svg-background {
  background-color: #3a8bff;
}
.banner_v2.color--sky .cmp-banner__text-section {
  color: #c5d5f9;
}
.banner_v2.color--violet .cmp-banner__content {
  background-color: #26005a;
}
.banner_v2.color--violet .cmp-banner__svg-background {
  background-color: #b650ff;
}
.banner_v2.color--violet .cmp-banner__text-section {
  color: #e4c7ff;
}
.banner_v2.color--crimson .cmp-banner__content {
  background-color: #560900;
}
.banner_v2.color--crimson .cmp-banner__svg-background {
  background-color: #ff514d;
}
.banner_v2.color--crimson .cmp-banner__text-section {
  color: #ffd7d7;
}
.banner_v2.color--forest .cmp-banner__content {
  background-color: #023a00;
}
.banner_v2.color--forest .cmp-banner__svg-background {
  background-color: #92ff73;
}
.banner_v2.color--forest .cmp-banner__text-section {
  color: #c8ffc0;
}
.banner_v2.color--canary .cmp-banner__content {
  background-color: #564a00;
}
.banner_v2.color--canary .cmp-banner__svg-background {
  background-color: #fce649;
}
.banner_v2.color--canary .cmp-banner__text-section {
  color: #fffeb0;
}
.banner_v2.color--fuchsia .cmp-banner__content {
  background-color: #4f0230;
}
.banner_v2.color--fuchsia .cmp-banner__svg-background {
  background-color: #ff58ac;
}
.banner_v2.color--fuchsia .cmp-banner__text-section {
  color: #fcc5f9;
}
.banner_v2.color--pumpkin .cmp-banner__content {
  background-color: #5b2500;
}
.banner_v2.color--pumpkin .cmp-banner__svg-background {
  background-color: #ff7920;
}
.banner_v2.color--pumpkin .cmp-banner__text-section {
  color: #ffd9c4;
}
.banner_v2.layout--light .cmp-banner__content {
  background-color: none;
}
.banner_v2.layout--light .cmp-banner__content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ebf3ff;
  opacity: 0.3;
}
.banner_v2.layout--light .cmp-banner__text-section {
  color: #000835;
}
.banner_v2.layout--light .cmp-banner .new-button {
  background-color: #000835;
  color: #ebf3ff;
}
.banner_v2.layout--light .cmp-banner .new-button:hover {
  border-color: transparent;
  background-color: #0a2f62;
}
.banner_v2.layout--light .cmp-banner .new-button:focus {
  border-color: transparent;
  outline: 2px solid #0a2f62;
  background-color: #0a2f62;
}
.banner_v2.layout--light .cmp-banner .new-button:active {
  outline: none;
  border-color: transparent;
  background-color: #104ea4;
}
.banner_v2.layout--dark .cmp-banner__content {
  background-color: none;
}
.banner_v2.layout--dark .cmp-banner__content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000835;
  opacity: 0.3;
}
.banner_v2.layout--dark .cmp-banner__text-section {
  color: #ebf3ff;
}
.banner_v2.layout--dark .cmp-banner .new-button {
  background-color: #ebf3ff;
  color: #000835;
}
.banner_v2.layout--dark .cmp-banner .new-button:hover {
  border-color: transparent;
  background-color: #9fc6ff;
}
.banner_v2.layout--dark .cmp-banner .new-button:focus {
  border-color: transparent;
  outline: 2px solid #9fc6ff;
  background-color: #9fc6ff;
}
.banner_v2.layout--dark .cmp-banner .new-button:active {
  outline: none;
  border-color: transparent;
  background-color: #61a2ff;
}
.banner_v2 .cmp-banner {
  display: flex;
  min-height: 150px;
}
.banner_v2 .cmp-banner__image {
  min-width: 370px;
  position: relative;
  object-fit: cover;
}
.banner_v2 .cmp-banner__image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
.banner_v2 .cmp-banner__content {
  padding: 32px;
  gap: 24px;
  flex-grow: 1;
  position: relative;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f2f2f2;
}
.banner_v2 .cmp-banner__svg-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  mask-size: cover;
  mask-position: center;
}
.banner_v2 .cmp-banner__text-section {
  z-index: 2;
  color: #000000;
  align-self: flex-start;
}
.banner_v2 .cmp-banner__title {
  margin-bottom: 0;
}
.banner_v2 .cmp-banner p {
  padding-top: 16px;
}
.banner_v2 .cmp-banner .new-button {
  font-family: var(--md-sys-typescale-amadeusMedium-font);
  background-clip: padding-box;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  z-index: 2;
  min-width: fit-content;
  border-radius: 8px;
  border: 2px solid transparent;
  padding: 10.5px 16px;
  font-size: 18px;
  font-weight: 500;
  background-color: #0c66e1;
  color: #ffffff;
}
.banner_v2 .cmp-banner .new-button:hover {
  background-color: #0a2f62;
}
.banner_v2 .cmp-banner .new-button:focus {
  background-color: #0a2f62;
  outline: 2px solid #0a2f62;
}
.banner_v2 .cmp-banner .new-button:active {
  outline: none;
  background-color: #000835;
}
.banner_v2 .cmp-banner .new-button .button__icon {
  font-size: 24px;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .banner_v2 .cmp-banner__image {
    min-width: 225px;
  }
  .banner_v2 .cmp-banner__content {
    flex-direction: column;
    align-items: start;
  }
}
@media (max-width: 767px) {
  .banner_v2 .cmp-banner {
    flex-direction: column;
  }
  .banner_v2 .cmp-banner__image {
    width: 100%;
    height: 150px;
  }
  .banner_v2 .cmp-banner__content {
    padding: 24px 16px;
    align-items: unset;
  }
}

.cmp-modal {
  position: absolute;
  display: grid;
  place-content: center;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}
.cmp-modal iframe {
  min-height: 300px;
  aspect-ratio: 2;
}

.button {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  /*REMOVE this as it is better to define size at component level */
  width: fit-content;
  gap: 8px;
  background-clip: padding-box;
  text-decoration: none;
  border-radius: 8px;
  font-family: "Amadeus-Medium";
  font-weight: 500;
  line-height: 150%;
}
.button.primary {
  background-color: #0c66e1;
  color: #ffffff;
  border: 2px solid transparent;
}
.button.primary.outline {
  background-color: transparent;
  border-color: #0c66e1;
  color: #0c66e1;
}
.button.primary:hover {
  border-color: transparent;
  color: #ffffff;
  background-color: #0a2f62;
}
.button.primary:focus-visible {
  color: #ffffff;
  background-color: #0a2f62;
  border-color: transparent;
  outline: 2px solid #0a2f62;
}
.button.primary:active {
  outline: none;
  border-color: transparent;
  color: #ffffff;
  background-color: #000835;
}
.button.primary.ghost {
  color: #0c66e1;
  background-color: transparent;
  border-color: transparent;
  padding-left: 0;
  padding-right: 0;
}
.button.primary.ghost .button__label {
  position: relative;
}
.button.primary.ghost .button__label:after {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  width: 0;
  transition: width 400ms;
  height: 1px;
  background-color: #0c66e1;
}
.button.primary.ghost:hover {
  border-color: transparent;
  color: #0c66e1;
  background-color: transparent;
}
.button.primary.ghost:hover .button__label::after {
  width: 100%;
}
.button.primary.ghost:active {
  border-color: transparent;
  background-color: #ebf3ff;
  color: #000835;
}
.button.primary.ghost:focus-visible {
  outline: none;
  background-color: transparent;
  border-color: #0c66e1;
  color: #0c66e1;
}
.button__icon {
  font-size: 24px;
  margin-bottom: 0;
}
.button {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  /*REMOVE this as it is better to define size at component level */
  width: fit-content;
  gap: 8px;
  background-clip: padding-box;
  text-decoration: none;
  border-radius: 8px;
  font-family: "Amadeus-Medium";
  font-weight: 500;
  line-height: 150%;
}
.button.dark {
  background-color: #000835;
  color: #ffffff;
  border: 2px solid transparent;
}
.button.dark.outline {
  background-color: transparent;
  border-color: #000835;
  color: #000835;
}
.button.dark:hover {
  border-color: transparent;
  color: #ffffff;
  background-color: #0a2f62;
}
.button.dark:focus-visible {
  color: #ffffff;
  background-color: #0a2f62;
  border-color: transparent;
  outline: 2px solid #0a2f62;
}
.button.dark:active {
  outline: none;
  border-color: transparent;
  color: #ffffff;
  background-color: #104ea4;
}
.button.dark.ghost {
  color: #000835;
  background-color: transparent;
  border-color: transparent;
  padding-left: 0;
  padding-right: 0;
}
.button.dark.ghost .button__label {
  position: relative;
}
.button.dark.ghost .button__label:after {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  width: 0;
  transition: width 400ms;
  height: 1px;
  background-color: #000835;
}
.button.dark.ghost:hover {
  border-color: transparent;
  color: #000835;
  background-color: transparent;
}
.button.dark.ghost:hover .button__label::after {
  width: 100%;
}
.button.dark.ghost:active {
  border-color: transparent;
  background-color: #ebf3ff;
  color: #000835;
}
.button.dark.ghost:focus-visible {
  outline: none;
  background-color: transparent;
  border-color: #000835;
  color: #000835;
}
.button__icon {
  font-size: 24px;
  margin-bottom: 0;
}
.button {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  /*REMOVE this as it is better to define size at component level */
  width: fit-content;
  gap: 8px;
  background-clip: padding-box;
  text-decoration: none;
  border-radius: 8px;
  font-family: "Amadeus-Medium";
  font-weight: 500;
  line-height: 150%;
}
.button.inverse {
  background-color: #ebf3ff;
  color: #000835;
  border: 2px solid transparent;
}
.button.inverse.outline {
  background-color: transparent;
  border-color: #ebf3ff;
  color: #ebf3ff;
}
.button.inverse:hover {
  border-color: transparent;
  color: #ffffff;
  background-color: #9fc6ff;
}
.button.inverse:focus-visible {
  color: #ffffff;
  background-color: #9fc6ff;
  border-color: transparent;
  outline: 2px solid #9fc6ff;
}
.button.inverse:active {
  outline: none;
  border-color: transparent;
  color: #ffffff;
  background-color: #61a2ff;
}
.button.inverse.ghost {
  color: #ebf3ff;
  background-color: transparent;
  border-color: transparent;
  padding-left: 0;
  padding-right: 0;
}
.button.inverse.ghost .button__label {
  position: relative;
}
.button.inverse.ghost .button__label:after {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  width: 0;
  transition: width 400ms;
  height: 1px;
  background-color: #ebf3ff;
}
.button.inverse.ghost:hover {
  border-color: transparent;
  color: #ebf3ff;
  background-color: transparent;
}
.button.inverse.ghost:hover .button__label::after {
  width: 100%;
}
.button.inverse.ghost:active {
  border-color: transparent;
  background-color: #ebf3ff;
  color: #000835;
}
.button.inverse.ghost:focus-visible {
  outline: none;
  background-color: transparent;
  border-color: #9fc6ff;
  color: #ebf3ff;
}
.button__icon {
  font-size: 24px;
  margin-bottom: 0;
}
.button.big {
  padding: 16px;
  font-size: 22px;
}
.button.small {
  padding: 10px 16px;
  font-size: 18px;
}
.cmp-eloqua-form {
  font-family: 'Amadeus Neue';
  width: clamp(200px, 82%, 1000px);
  margin: auto;
  display: grid;
  gap: 56px;
}
.cmp-eloqua-form.hidden {
  display: none;
}
.cmp-eloqua-form__error-box {
  padding: 24px;
  border: 2px solid #b2271f;
  border-radius: 3px;
  display: none;
}
.cmp-eloqua-form__error-box.active {
  display: block;
}
.cmp-eloqua-form__error-box-title {
  margin-bottom: 20px;
}
.cmp-eloqua-form__error-box-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 20px;
}
.cmp-eloqua-form__error-box-item {
  display: none;
}
.cmp-eloqua-form__error-box-item.active {
  display: list-item;
}
.cmp-eloqua-form__error-box-link {
  color: #b2271f;
  border-radius: 2px;
}
.cmp-eloqua-form__error-box-link:hover,
.cmp-eloqua-form__error-box-link:active {
  color: #861d17;
  outline-color: #861d17;
}
.cmp-eloqua-form__error-box-link:focus-visible {
  outline-color: #b2271f;
}
.cmp-eloqua-form__description {
  margin-top: 15px;
  color: #666666;
}
.cmp-eloqua-form__fields {
  display: grid;
  gap: 32px;
  max-width: 100%;
}
.cmp-eloqua-form__field-control-wrapper {
  display: grid;
  gap: 8px;
  max-width: 100%;
}
.cmp-eloqua-form__field-control-wrapper:has(.form-check),
.cmp-eloqua-form__field-control-wrapper:has(.form-radio) {
  gap: 24px;
}
.cmp-eloqua-form__field-control-wrapper:has(input[type='submit']) {
  margin-top: 20px;
}
.cmp-eloqua-form__field-control-wrapper:has(>input[type="checkbox"]) {
  gap: 16px;
  grid-template-columns: min-content 1fr;
}
.cmp-eloqua-form__field-control-wrapper:has(>input[type="checkbox"]) .cmp-eloqua-form__field-text {
  grid-column: 1 / span 2;
}
.cmp-eloqua-form__field-control-wrapper:has(>input[type="checkbox"]) input,
.cmp-eloqua-form__field-control-wrapper:has(>input[type="checkbox"]) label {
  grid-row: 2;
}
.cmp-eloqua-form__field-control-wrapper:has(>input[type="checkbox"]) input {
  width: 24px;
}
.cmp-eloqua-form__field-control-wrapper.hidden {
  display: none;
}
.cmp-eloqua-form__field-control-wrapper input:not([type='submit']),
.cmp-eloqua-form__field-control-wrapper select,
.cmp-eloqua-form__field-control-wrapper textarea {
  padding: 12px 16px;
  border: none;
  border: 1px solid #cccccc;
  border-radius: 2px;
}
.cmp-eloqua-form__field-control-wrapper input:not([type='submit']):focus-visible,
.cmp-eloqua-form__field-control-wrapper select:focus-visible,
.cmp-eloqua-form__field-control-wrapper textarea:focus-visible {
  outline-color: #0c66e1;
}
.cmp-eloqua-form__field-control-wrapper select {
  appearance: none;
  background: url('clientlib-amadeus/resources/images/icons/svg/keyboard-down.svg') no-repeat;
  background-position-x: calc(100% - 16px) !important;
  background-position-y: center !important;
  background-size: 24px !important;
}
.invalid.cmp-eloqua-form__field-control-wrapper {
  position: relative;
  padding-left: 16px;
}
.invalid.cmp-eloqua-form__field-control-wrapper::before {
  position: absolute;
  top: 0;
  bottom: 0;
  content: '';
  width: 3px;
  background-color: #b2271f;
}
.invalid.cmp-eloqua-form__field-control-wrapper input,
.invalid.cmp-eloqua-form__field-control-wrapper select,
.invalid.cmp-eloqua-form__field-control-wrapper textarea {
  border-color: #b2271f;
  position: relative;
}
.invalid.cmp-eloqua-form__field-control-wrapper .cmp-eloqua-form__field-error {
  display: block;
}
.cmp-eloqua-form__field-control-wrapper [for="termsAccept"] button {
  border: none;
  background-color: transparent;
  color: #3a8bff;
  text-decoration: underline;
  padding: 0;
}
.cmp-eloqua-form__field-control-wrapper [for="termsAccept"] button:hover {
  color: #0c66e1;
  text-decoration: none;
}
.cmp-eloqua-form__field-control-wrapper select {
  width: 100%;
  white-space: normal;
}
.cmp-eloqua-form__field-control-wrapper .form-check,
.cmp-eloqua-form__field-control-wrapper .form-radio {
  display: flex;
  gap: 16px;
  padding: 0;
}
.cmp-eloqua-form__field-control-wrapper .form-check input,
.cmp-eloqua-form__field-control-wrapper .form-radio input {
  width: 24px;
}
.cmp-eloqua-form__field-text {
  display: grid;
  gap: 12px;
}
.cmp-eloqua-form__field-text label {
  font-weight: 500;
}
.cmp-eloqua-form__field-instructions {
  font-size: 14px;
  color: #666666;
}
.cmp-eloqua-form__field-error {
  display: none;
  font-size: 14px;
  color: #b2271f;
}
.cmp-eloqua-form__success-modal {
  display: none;
  grid-auto-flow: column;
  grid-template-columns: repeat(12, 1fr);
  align-items: center;
}
.cmp-eloqua-form__success-modal-image {
  grid-column: 1 / span 6;
  grid-row: 1;
}
.cmp-eloqua-form__success-modal-image img {
  width: 100%;
  max-width: 100%;
}
.cmp-eloqua-form__success-modal-content {
  background-color: #0c66e1;
  grid-column: 5 / span 8;
  grid-row: 1;
  padding: 24px;
  color: #ebf3ff;
  display: grid;
  gap: 16px;
}
.cmp-eloqua-form__success-modal .button_label {
  text-align: left;
}
.cmp-eloqua-form__success-modal-label {
  font-size: 14px;
}
.cmp-eloqua-form__success-modal.active {
  display: grid;
}
.cmp-eloqua-form .cmp-eloqua-form__accept-terms-cb {
  display: none;
}
.cmp-eloqua-form .cmp-eloqua-form__accept-terms-cb:has(.open) {
  display: unset;
}
.cmp-eloqua-form .cmp-eloqua-form__accept-terms-cb .cmp-eloqua-form__terms {
  max-height: 0px;
  overflow: hidden;
  transition: max-height 225ms cubic-bezier(0.4, 0, 0.2, 1);
}
.cmp-eloqua-form .cmp-eloqua-form__accept-terms-cb .cmp-eloqua-form__terms.open {
  max-height: 1000px;
  padding: 20px 0;
}
.cmp-eloqua-form .cmp-eloqua-form__accept-terms-cb .cmp-eloqua-form__terms .cmp-eloqua-form__modal-content {
  display: flex;
  flex-direction: column;
  position: relative;
}
.cmp-eloqua-form .cmp-eloqua-form__accept-terms-cb .cmp-eloqua-form__terms .cmp-eloqua-form__modal-content .cmp-eloqua-form__modal-close {
  position: absolute;
  right: 0;
  font-size: 24px;
  top: 0;
  padding: 5px;
}
.cmp-eloqua-form .cmp-eloqua-form__accept-terms-cb .cmp-eloqua-form__terms .cmp-eloqua-form__modal-content .cmp-eloqua-form__model-terms-info-title {
  text-align: center;
  font-family: "AmadeusNeueMedium", "AmadeusNeueRegular", "Source Sans Pro", Calibri, sans-serif !important;
}
.cmp-eloqua-form .cmp-eloqua-form__accept-terms-cb .cmp-eloqua-form__terms .cmp-eloqua-form__modal-content .cmp-eloqua-form__modal-terms-info-description table td {
  border: 1px solid #1a1a1a;
  padding: 10px;
}
@media (max-width: 991px) {
  .cmp-eloqua-form__success-modal-image {
    grid-column: 2 / span 10;
    grid-row: 1;
  }
  .cmp-eloqua-form__success-modal-content {
    grid-column: 3 / span 8;
    grid-row: 2;
    margin-top: -34px;
  }
}
@media (max-width: 991px) {
  .cmp-eloqua-form__success-modal-image {
    grid-column: 1 / span 12;
  }
  .cmp-eloqua-form__success-modal-content {
    grid-column: 2 / span 10;
  }
}
html {
  scroll-padding: 80px;
}


.cmp-base {
  padding: 72px 0;
}
@media (max-width: 991px) {
  .cmp-base {
    padding: 64px 0;
  }
}
@media (max-width: 767px) {
  .cmp-base {
    padding: 48px 0;
  }
}
.cmp-base.padding-top--small {
  padding-top: 40px;
}
@media (max-width: 991px) {
  .cmp-base.padding-top--small {
    padding-top: 32px;
  }
}
@media (max-width: 767px) {
  .cmp-base.padding-top--small {
    padding-top: 24px;
  }
}
.cmp-base.padding-bottom--small {
  padding-bottom: 40px;
}
@media (max-width: 991px) {
  .cmp-base.padding-bottom--small {
    padding-bottom: 32px;
  }
}
@media (max-width: 767px) {
  .cmp-base.padding-bottom--small {
    padding-bottom: 24px;
  }
}
.cmp-base.padding-top--none {
  padding-top: 0;
}
@media (max-width: 991px) {
  .cmp-base.padding-top--none {
    padding-top: 0;
  }
}
@media (max-width: 767px) {
  .cmp-base.padding-top--none {
    padding-top: 0;
  }
}
.cmp-base.padding-bottom--none {
  padding-bottom: 0;
}
@media (max-width: 991px) {
  .cmp-base.padding-bottom--none {
    padding-bottom: 0;
  }
}
@media (max-width: 767px) {
  .cmp-base.padding-bottom--none {
    padding-bottom: 0;
  }
}

ul.numbers-grid {
  display: grid;
  grid-gap: 20px;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  list-style-type: none;
  margin: 0 0 40px 0;
  padding: 0;
  width: 100%;
}
ul.numbers-grid li {
  padding: 20px;
  text-align: right;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
ul.numbers-grid::before {
  content: '';
  width: 0;
  padding-bottom: 100%;
  grid-row: 1;
  grid-column: 1;
}
ul.numbers-grid > *:first-child {
  grid-row: 1;
  grid-column: 1;
}
ul.numbers-grid li span {
  font-family: 'Amadeus-Medium';
  text-align: right;
  display: block;
}
ul.numbers-grid li span:first-child {
  font-size: 40px;
  font-weight: 500;
  line-height: 52px;
}
ul.numbers-grid li span:last-child {
  font-size: 14px;
  font-weight: 500;
  line-height: 21px;
}
@media screen and (max-width: 460px) {
  ul.numbers-grid {
    display: grid;
    grid-gap: 20px;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr;
  }
  ul.numbers-grid li:nth-child(4) {
    grid-row: 2;
  }
}
/* default colors, and default transparent */
ul.numbers-grid.default li:nth-child(odd) {
  background-color: #ebf3ff;
}
ul.numbers-grid.default li:nth-child(even) {
  border: 2px solid #0c66e1;
}
ul.numbers-grid.default span {
  color: #0c66e1;
}
ul.numbers-grid.default.transparent li:nth-child(odd) {
  background-color: transparent;
}
ul.numbers-grid.default.transparent li:nth-child(even) {
  border: none;
}
/* sky */
ul.numbers-grid.sky li:nth-child(odd) {
  background-color: #ebf3ff;
}
ul.numbers-grid.sky li:nth-child(even) {
  border: 2px solid #000835;
}
ul.numbers-grid.sky span {
  color: #000835;
}
ul.numbers-grid.sky.transparent li:nth-child(odd) {
  background-color: transparent;
}
ul.numbers-grid.sky.transparent li:nth-child(even) {
  border: none;
}
/* violet */
ul.numbers-grid.violet li:nth-child(odd) {
  background-color: #f8eeff;
}
ul.numbers-grid.violet li:nth-child(even) {
  border: 2px solid #26005a;
}
ul.numbers-grid.violet span {
  color: #26005a;
}
ul.numbers-grid.violet.transparent li:nth-child(odd) {
  background-color: transparent;
}
ul.numbers-grid.violet.transparent li:nth-child(even) {
  border: none;
}
/* forest */
ul.numbers-grid.forest li:nth-child(odd) {
  background-color: #f0ffec;
}
ul.numbers-grid.forest li:nth-child(even) {
  border: 2px solid #023a00;
}
ul.numbers-grid.forest span {
  color: #023a00;
}
ul.numbers-grid.forest.transparent li:nth-child(odd) {
  background-color: transparent;
}
ul.numbers-grid.forest.transparent li:nth-child(even) {
  border: none;
}
/* cloud */
ul.numbers-grid.cloud li:nth-child(odd) {
  background-color: #ebf3ff;
}
ul.numbers-grid.cloud li:nth-child(even) {
  border: 2px solid #0c66e1;
}
ul.numbers-grid.cloud span {
  color: #0c66e1;
}
ul.numbers-grid.cloud.transparent li:nth-child(odd) {
  background-color: transparent;
}
ul.numbers-grid.cloud.transparent li:nth-child(even) {
  border: none;
}
/* cloud */
ul.numbers-grid.cloud li:nth-child(odd) {
  background-color: #ebf3ff;
}
ul.numbers-grid.cloud li:nth-child(even) {
  border: 2px solid #ebf3ff;
}
ul.numbers-grid.cloud span {
  color: #0c66e1;
}
ul.numbers-grid.cloud.transparent li:nth-child(odd) {
  background-color: transparent;
}
ul.numbers-grid.cloud.transparent li:nth-child(even) {
  border: none;
}
/* adhoc */
ul.numbers-grid.adhoc li.pumpkin-10 {
  background-color: #fff0e6;
}
ul.numbers-grid.adhoc li.pumpkin-10 span {
  color: #000521;
}
ul.numbers-grid.adhoc li.transparent {
  background-color: transparent;
  border: 2px solid #000521;
}
ul.numbers-grid.adhoc li.transparent span {
  color: #000521;
}
ul.numbers-grid.adhoc li.sky-30 {
  background-color: #9fc6ff;
}
ul.numbers-grid.adhoc li.sky-30 span {
  color: #000521;
}
ul.numbers-grid.adhoc li.sky-60 {
  background-color: #0c66e1;
}
ul.numbers-grid.adhoc li.sky-60 span {
  color: #000521;
}
ul.numbers-grid.adhoc li.sky-90 {
  background-color: #000835;
}
ul.numbers-grid.adhoc li.sky-90 span {
  color: #0c66e1;
}

