@font-face {
  font-family: "FuturaBold";
  src: url("../fonts/FuturaBold.eot"); /* IE9 Compat Modes */
  src: url("../fonts/FuturaBold.eot?#iefix") format("embedded-opentype"), /* IE6-IE8 */
       url("../fonts/FuturaBold.otf") format("opentype"), /* Open Type Font */
       url("../fonts/FuturaBold.svg") format("svg"), /* Legacy iOS */
       url("../fonts/FuturaBold.ttf") format("truetype"), /* Safari, Android, iOS */
       url("../fonts/FuturaBold.woff") format("woff"), /* Modern Browsers */
       url("../fonts/FuturaBold.woff2") format("woff2"); /* Modern Browsers */
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "FuturaMedium";
  src: url("../fonts/FuturaMedium.eot"); /* IE9 Compat Modes */
  src: url("../fonts/FuturaMedium.eot?#iefix") format("embedded-opentype"), /* IE6-IE8 */
       url("../fonts/FuturaMedium.otf") format("opentype"), /* Open Type Font */
       url("../fonts/FuturaMedium.svg") format("svg"), /* Legacy iOS */
       url("../fonts/FuturaMedium.ttf") format("truetype"), /* Safari, Android, iOS */
       url("../fonts/FuturaMedium.woff") format("woff"), /* Modern Browsers */
       url("../fonts/FuturaMedium.woff2") format("woff2"); /* Modern Browsers */
  font-weight: normal;
  font-style: normal;
}

body {
    display: flex;
    font-family: 'FuturaMedium', sans-serif;
    flex-direction: column;
    min-height: 100vh;
    margin-top: 120px;
}

body.body-mt-1 {
    margin-top: 150px;
}

body.body-mt-2 {
    margin-top: 175px;
}

body.body-mt-3 {
    margin-top: 200px;
}

body.body-mt-4 {
    margin-top: 225px;
}

body.body-mt-5 {
    margin-top: 250px;
}

@media (min-width: 300px) {
    body.body-mt-2 {
        margin-top: 180px;
    }
    
    body.body-mt-3 {
        margin-top: 180px;
    }
    
    body.body-mt-4 {
        margin-top: 190px;
    }
    
    body.body-mt-5 {
        margin-top: 200px;
    }
}

@media (min-width: 400px) {
    body.body-mt-4 {
        margin-top: 180px;
    }

    body.body-mt-5 {
        margin-top: 190px;
    }
}

@media (min-width: 568px) {
    body.body-mt-1 {
        margin-top: 150px;
    }

    body.body-mt-2 {
        margin-top: 150px;
    }
    
    body.body-mt-3 {
        margin-top: 150px;
    }
    
    body.body-mt-4 {
        margin-top: 150px;
    }
    
    body.body-mt-5 {
        margin-top: 165px;
    }
}

body > main {
    margin-bottom: 3rem;
}

.regular-component {
    margin-bottom: 3rem;
}

.minus-regular-component {
    margin-top: -3rem;
}

.body-content > .regular-component:last-child {
    margin-bottom: 1rem;
}

.icon-component {
    align-items: center;
    display: flex;
    margin-bottom: 1rem;
}

.icon-component-container .icon-component:last-child {
    margin-bottom: 3rem;
}

.double-margin-bottom {
    margin-bottom: 6rem;
}

@media (min-width: 992px) {
    .regular-component.TEXT > *:not(.section-heading) {
        margin-left: auto;
        margin-right: auto;
        max-width: 830px;
        text-align: left;
    }

    .page-title-text, .page-description-text {
        margin-left: auto;
        margin-right: auto;
        max-width: 830px;
        text-align: left;
    }

    .icon-component {
        margin-left: auto;
        margin-right: auto;
        max-width: 830px;
        text-align: left;
    }
}

/*
HEADER
*/
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    width: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-shadow: 0 2px 10px 0 transparent;
    box-shadow: 0 2px 10px 0 transparent;
    background-color: #faf6ee;
    -webkit-transition: height .2s ease-in-out,-webkit-box-shadow .2s ease-in-out;
    transition: height .2s ease-in-out,-webkit-box-shadow .2s ease-in-out;
    -o-transition: height .2s ease-in-out,box-shadow .2s ease-in-out;
    transition: height .2s ease-in-out,box-shadow .2s ease-in-out;
    transition: height .2s ease-in-out,box-shadow .2s ease-in-out,-webkit-box-shadow .2s ease-in-out;
}

@media (min-width: 992px) {
    header > .container {
        max-width: 830px !important;
        padding-left: 0;
        padding-right: 0;
    }
}

header .header-image {
    height: 55px;
    width: auto;
    margin-left: 0;
    margin-right: 0;
}

@media (min-width: 768px) {
    body {
        margin-top: 120px;
    }

    body.body-mt-1 {
        margin-top: 150px;
    }

    body.body-mt-2 {
        margin-top: 150px;
    }
    
    body.body-mt-3 {
        margin-top: 150px;
    }
    
    body.body-mt-4 {
        margin-top: 150px;
    }
    
    body.body-mt-5 {
        margin-top: 150px;
    }

    header .navbar {
        padding: 1.5rem 0;
    }
}

header .navbar {
    justify-content: space-between;
    flex-wrap: nowrap;
    padding: 1rem 0;
    width: 100%;
}

header.has-breadcrumbs .navbar {
    border-bottom: 1px solid #342d2c;
}

header.is-pinned {
    -webkit-box-shadow: 0 2px 10px 0 rgba(0,0,0,.1);
    box-shadow: 0 2px 10px 0 rgba(0,0,0,.1);
}

header.is-pinned .navbar {
    padding: 0.5rem 0 1rem 0;
}

header.is-pinned .menu-wrap {
    top: 10%;
}

header .navbar .nav-item {
    padding: 0.25rem 0;
}

header .navbar-brand {
    display: flex;
    margin: 0;
    padding: 0;
}

header .navbar .nav-item {
    position: relative;
    color: #000;
}

header .navigation-dropdown .dropdown-item {
    position: relative;
    color: #000;
    padding: 0.25rem 0;
}

header .navigation-dropdown .dropdown-item:active, header .navigation-dropdown .dropdown-item:focus {
    background-color: transparent;
    outline: none;
}

header .navigation-dropdown .dropdown-item:hover {
    background-color: transparent;
    color: #DB3865;
}

header .navbar .navigation-dropdown {
    display: none;
}

header .navbar .nav-item:hover, header .navbar .nav-item.active {
    color: #DB3865;
}

header .navbar .nav-item::before, header .navigation-dropdown .dropdown-item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #DB3865;
    transform-origin: bottom left;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

header .navbar .nav-item:hover::before, header .navigation-dropdown .dropdown-item:hover::before {
    transform-origin: bottom left;
    transform: scaleX(1);
}

.whole-screen-overlay + .body-content .page-title {
    display: none;
}

.whole-screen-overlay + .body-content .page-title + .page-description {
    display: none;
}

.menu-wrap {
    position: absolute;
    top: 16%;
    left: 82%;
    z-index: 50;
}

.menu-wrap .toggler {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    cursor: pointer;
    width: 50px;
    height: 50px;
    opacity: 0;
}

.menu-wrap .hamburger {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 60px;
    height: 60px;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hamburger Line */
.menu-wrap .hamburger > div {
    position: relative;
    flex: none;
    width: 100%;
    height: 2px;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

/* Hamburger Lines - Top & Bottom */
.menu-wrap .hamburger > div::before,
.menu-wrap .hamburger > div::after {
    content: '';
    position: absolute;
    z-index: 1;
    top: -10px;
    width: 100%;
    height: 2px;
    background: inherit;
}

/* Moves Line Down */
.menu-wrap .hamburger > div::after {
    top: 10px;
}

/* Toggler Animation */
.menu-wrap .toggler:checked + .hamburger > div {
    background: #ffffff;
    transform: rotate(135deg);
}

/* Turns Lines Into X */
.menu-wrap .toggler:checked + .hamburger > div:before,
.menu-wrap .toggler:checked + .hamburger > div:after {
    top: 0;
    transform: rotate(90deg);
}

/* Show Menu */
.menu-wrap .toggler:checked ~ .menu {
    visibility: visible;
}

.menu-wrap .toggler:checked ~ .menu > div {
    transform: scale(1);
    transition-duration: 0.6s;
}

.menu-wrap .toggler:checked ~ .menu > div > div {
    opacity: 1;
    transition:  opacity 0.2s ease 0.2s;
}

.menu-wrap .menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    visibility: hidden;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.9;
}

.menu-wrap .menu > div {
    width: 200vw;
    height: 200vw;
    display: flex;
    flex: none;
    align-items: center;
    justify-content: center;
    transform: scale(0);
    transition: all 0.2s ease;
}

.menu-wrap .menu > div > div {
    text-align: center;
    max-width: 90vw;
    max-height: 100vh;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.menu-wrap .menu > div > div > ul {
    padding: 0
}

.menu-wrap .menu > div > div > ul > li {
    list-style: none;
    color: #fff;
    font-size: 1.5rem;
    padding: 1rem;
}

.menu-wrap .nav-item {
    color: #ffffff !important;
    text-decoration: none;
    transition: color 0.2s ease;
}

 .navbar > .nav-item {
    display: none;
 }

 .navbar > .nav-item.nav-link-search {
    display: block;
    margin-right: 5rem;
 }

.language-selector {
    position: absolute;
    top: 0;
    right: 0;
    padding-right: 1rem;
}

.language-selector a {
    color: #6c757d;
}

@media (max-width: 350px) {
    .menu-wrap {
        left: 80%;
    }
}

@media (min-width: 400px) {
    .navbar > .nav-item.nav-link-search {
        margin-right: 7rem;
     }
}

@media (min-width: 576px) {
    .menu-wrap {
        left: 90%;
    }
}

@media (min-width: 810px) {
    .menu-wrap {
        display: none;
    }

    .navbar > .nav-item, header .navbar .navigation-dropdown {
        display: block;
    }

    .navbar > .nav-item.nav-link-search {
        margin-right: 0;
     }
}

/*
     CAROUSEL
 */

 .slide-show {
    display: flex;
    width: 100%;
 }

 .slide-show-header {
    display: flex;
    width: 100%;
 }

.carousel-inner {
    width: 100%;
}

.carousel-item, .slide-show-img {
    height: 100%;
    width: 100%;
}

.carousel .carousel-item-next.carousel-item-left, .carousel .carousel-item-prev.carousel-item-right, .carousel .carousel-item.active {
    z-index: 1;
}

.carousel-caption {
    margin-left: auto;
    margin-right: auto;
    text-align: left;
    z-index: 3;
}

.carousel-indicators {
    bottom: -3rem;
}

.carousel-indicators li {
    background-color: #707070;
    opacity: 1;
}

.carousel-indicators li.active {
    background-color: #000;
}

.carousel-control-next, .carousel-control-prev {
    opacity: 1;
}

.slide-show-img img {
    height: 300px;
    object-fit: cover;
    position: relative;
    width: 100%;
}


/*
    CARDS
*/

.card-anchor {
    color: #342d2c;
    text-decoration: none;
}

.card-anchor:hover {
    color: #000;
    text-decoration: none !important;
}

.card-anchor:hover .card {
    cursor: pointer;
}

.card .card-img {
    height: 100%;
    object-fit: cover;
    position: relative;
    width: 100%;
}

.card .card-img-empty {
    height: 100%;
    background: #CC4B6A;
    color: #fff;
}

.card-body, .card-body div {
    word-break: break-word;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.card-title {
    font-size: 1.4rem;
    font-weight: 700;
    font-family: 'FuturaBold', sans-serif;
    margin-bottom: 1.25rem;
    padding-bottom: 0.25rem;
    position: relative;
    text-transform: uppercase;
}

.card-title::after {
    content: "";
    display: block;
    width: 75px;
    height: 4px;
    background: #fff;
    position: absolute;
    bottom: -4px;
    left: 0;
}

.card-text {
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 0;
    text-transform: none;
}

.card-text-small .card-title {
    font-size: 1rem;
    font-weight: 700;
    font-family: 'FuturaBold', sans-serif;
}

@media (min-width: 992px) {
    .card-title {
        font-size: 1.4rem;
    }

    .card-text-small .card-title {
        font-size: 1rem;
        font-weight: 700;
        font-family: 'FuturaBold', sans-serif;
    }
}

.card-button-container {
    display: flex;
    margin-top: 1rem;
}

.card-arrow {
    color: #0000004D;
    margin-bottom: auto;
    margin-left: auto;
    margin-top: auto;
}

.card-img-top {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

/*
    VERTICAL CARDS
*/

.vertical-list {
    max-width: 830px;
    margin-left: auto;
    margin-right: auto;
}

.vertical-list .row > div:not(:last-child) {
    margin-bottom: 0.5rem;
}

.vertical-card-list {
    border: 1px solid #0000001A;
    border-radius: 5px;
    padding: 1.5rem 1rem;
}

.vertical-card-list .row > div:not(:last-child) {
    margin-bottom: 0.5rem;
}

.vertical-card {
    align-items: center;
    border: 0;
    border-radius: 0;
    flex-direction: row;
    height: 100%;
}

.card-anchor:hover .vertical-card .card-title {
    text-decoration: none;
}

.vertical-card .card-body {
    display: flex;
    height: 100%;
    width: 100%;
}

.vertical-img-card .card-anchor {
    height: 100%;
    width: 100%;
}

.vertical-img-card .card-img {
    border-radius: 50%;
    height: 75px;
    object-fit: cover;
    width: 75px;
}

.vertical-card .card-title {
    color: #CC4B6A;
}

.vertical-img-card .card-img-empty {
    background: #CC4B6A;
    color: #fff;
}

.vertical-img-card .vertical-card-img {
    margin-bottom: 1rem;
    margin-top: 1rem;
    margin-left: 0.5rem;
}

.vertical-card .card-text.line-clamp {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.vertical-card .card-text {
    margin-top: 0.5rem;
}

/*
    HORIZONTAL CARDS
*/

.horizontal-card-list {
    display: flex;
    margin: 0;
    padding: 0;
}

.horizontal-card {
    display: flex;
    flex-direction: column;
}

.horizontal-card-list > .horizontal-card:not(:first-child) {
    margin-top: 30px;
}

.horizontal-card-list > .collapse .horizontal-card {
    margin-top: 30px;
}

@media (min-width: 992px) {
    .horizontal-card-list > .horizontal-card:not(:first-child) {
        margin-top: 0;
    }

    .horizontal-card-list > .horizontal-card:nth-child(n + 4) {
        margin-top: 30px;
    }
}

.horizontal-card .card-anchor {
    height: 100%;
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.horizontal-card .card-anchor:hover {
    -moz-transform: scale(1.025);
    -webkit-transform: scale(1.025);
    transform: scale(1.025);
}

.horizontal-card .card {
    border: none;
    border-radius: 0;
    height: 100%;
}

.horizontal-image-card .card {
    border: 1px solid #0000001A;
    border-radius: 0;
}

.horizontal-card .card-img {
    border-radius: 0;
    height: 350px;
    width: 100%;
}

.horizontal-image-card .card-img {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    height: 200px;
}

.horizontal-card .card-relative-text {
    color: #fff;
    position: absolute;
    right: 5%;
    left: 5%;
    bottom: 20px;
    text-align: left;
}

.default-horizontal-image-card .card-img {
    border-radius: 0;
    height: 200px;
}

.default-horizontal-image-card .card-title {
    font-size: 1rem !important;
    font-weight: 700 !important;
    font-family: 'FuturaBold', sans-serif;
}

.default-horizontal-image-card .card-text {
    font-size: 1rem !important;
    font-weight: 400 !important;
    text-transform: none !important;
}

/*@media (min-width: 992px) {
    .default-horizontal-image-card .card-body {
        text-align: center;
    }
}*/

.horizontal-image-container {
    overflow: hidden;
    padding-top: 56.25%;
    position: relative;
}

.horizontal-image-container img, .horizontal-image-container .card-img-empty {
    bottom: 0;
    height: initial !important;
    left: 0;
    position: absolute !important;
    right: 0;
    top: 0;
}

.rounded-corners {
    border-radius: 5px;
}

.horizontal-grid-list {
    justify-content: space-evenly;
    max-width: 830px;
    margin-left: auto;
    margin-right: auto;
}

.horizontal-grid-card {
    padding: 15px;
    position: relative;
}

.horizontal-grid-card .card-anchor .card {
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.horizontal-grid-card .card-anchor:hover .card {
    -moz-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.horizontal-grid-card .card-img {
    border-radius: 0;
    height: 50px;
    object-fit: contain;
    width: 50px;
}

.horizontal-grid-card .card {
    align-items: center;
    background: rgba(204, 75, 106, 0.1);
    border-radius: 0px;
    border: 0;
    height: 150px;
    justify-content: center;
    width: 150px;
}

.horizontal-grid-card .card-text {
    color: #342d2c;
    margin-top: 0.5rem;
    text-transform: uppercase;
    text-align: center;
    word-break: break-word;
    word-wrap: break-word;
    overflow-wrap: break-word;
}



.horizontal-text-list .card-button-container, .horizontal-card-list .card-button-container {
    justify-content: center;
    width: 100%;
}

.horizontal-text-list > .horizontal-text:not(:first-child) {
    margin-top: 30px;
}

.horizontal-text-list > .collapse .horizontal-text {
    margin-top: 30px;
}

@media (min-width: 992px) {
    .horizontal-text-list > .horizontal-text:not(:first-child) {
        margin-top: 0;
    }
}


.horizontal-text .card {
    border: 0;
    height: 100%;
}

.horizontal-text .card-body {
    display: flex;
}

.horizontal-text .card-body > div {
    margin-top: auto;
    margin-bottom: auto;
}

.horizontal-text .card-anchor .card {
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.horizontal-text .card-anchor:hover .card {
    -moz-transform: scale(1.025);
    -webkit-transform: scale(1.025);
    transform: scale(1.025);
}

/*
    TEASERS
*/

.single-teaser-card-container, .single-teaser-icon-card-container {
    max-width: 830px;
    margin-left: auto;
    margin-right: auto;
}

.teaser-card.primary {
    background: #f8f9fa;
}

.teaser-card .card, .icon-teaser-card .card {
    border: none;
}

.teaser-card .card-body {
   display: flex;
   flex-direction: column;
   min-height: 175px;
   padding: 2rem;
}

.teaser-card .card-img {
    height: 250px;
}

.teaser-card .card-img-top {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.teaser-card-contrast .card-anchor:hover .card-title, .teaser-card-contrast .card-anchor:hover .card-text {
    text-decoration: none;
}

.bordered-teaser-card {
    border-radius: 0px;
}

.bordered-teaser-card .card {
    border-radius: 0px;
}

.bordered-teaser-card .card-img-top {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.teaser-card-container .teaser-card:not(:first-child) .card {
    margin-top: 1rem;
}

@media (min-width: 768px) {
    .teaser-card-container .teaser-card:nth-child(odd) .card, .single-teaser-card-container .card {
        flex-direction: row-reverse;
        margin-top: 0;
    }

    .teaser-card-container .teaser-card:nth-child(even) .card {
        flex-direction: row;
        margin-top: 0;
    }

    .teaser-card-container .card .card-img, .single-teaser-card-container .card .card-img {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        height: 350px;
        max-width: 50%;
    }

    .teaser-card-container .card .card-body, .single-teaser-card-container .card .card-body {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        margin-top: auto;
        margin-bottom: auto;
        max-width: 50%;
        padding: 3rem;
    }

    .bordered-teaser-card .card-img-top {
        border-top-left-radius: 0;
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
    }
}

.icon-teaser-card .card-body {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.icon-teaser-card .card-text {
    color: #342d2c;
}

.icon-teaser-card .icon-img {
    display: flex;
    justify-content: center;
}

.icon-teaser-card .card-img {
    background: #CC4B6A;
    color: #fff;
    border-radius: 50%;
    height: 200px;
    object-fit: inherit;
    width: 200px;
}

.icon-teaser-card .card-button-container {
    justify-content: center;
}

.icon-teaser-card .card-anchor:hover .card-title, .icon-teaser-card .card-anchor:hover .card-text {
    text-decoration: underline;
}

/*
    OFFERS
*/

.regular-offer {
    display: flex;
    position: relative;
}

.vertical-offers {
    display: flex;
    flex-direction: column;
}

.vertical-offers > div:not(:last-child) {
    margin-bottom: 1rem;
}

.vertical-offer-list {
    box-shadow: 0px 2px 4px rgba(0,0,0,0.18);
    display: flex;
}

.vertical-offers > div:nth-child(odd) {
    flex-flow: row;
}

.vertical-offers > div:nth-child(odd) img {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.vertical-offers > div:nth-child(even) {
    flex-flow: row-reverse;
}

.vertical-offers > div:nth-child(even) img {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.vertical-offer-list .card {
    border: 0;
    height: 100%;
}

.vertical-offer-list .card-body {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.vertical-offer-list img {
    height: 200px;
    object-fit: cover;
    width: 100%;
}

.vertical-offer-button-container {
    display: flex;
    justify-content: center;
    margin-top: auto;
}

/*
    CALENDAR EVENTS
*/

.event-anchor {
    color: #000;
    text-decoration: none;
    width: 100%;
}

.event-anchor:hover {
    color: #000;
    text-decoration: none !important;
}

.event-title {
    color: #CC4B6A;
    margin-bottom: 0.25rem;
}

.date-text, .date-number {
    text-transform: capitalize;
}

.event-description {
    color: #3C3C4399;
}

.event-arrow {
    color: #AFAFAF;
    margin-bottom: auto;
    margin-left: auto;
    margin-top: auto;
}

.event-month-and-year-text {
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.calendar-event-end-date {
    display: flex;
}

.calendar-event-tags {
    display: flex;
    flex-wrap: wrap;
}

.calendar-event-tag {
    text-transform: uppercase;
}

.calendar-tag-separator {
    margin-left: 0.25rem;
    margin-right: 0.25rem;
}

.calendar-event-tag-separator {
    margin-right: 0.25rem;
}

.calendar-event-text-inner {
    display: flex;
    flex-direction: column;
}

/*
    VERTICAL CALENDAR EVENTS
*/

.vertical-calendar-event .event-anchor {
    display: flex;
}

.vertical-calendar-event .event-arrow {
    margin-right: 2rem;
}

.vertical-calendar-event-inner {
    display: flex;
    width: 100%;
}

.vertical-calendar-event-left {
    align-self: center;
    display: flex;
    flex-direction: column;
    padding: 1rem;
    text-align: center;
}

.vertical-calendar-event-left-inner {
    align-items: center;
    background: #6c757d;
    border-radius: 50%;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    height: 75px;
    justify-content: center;
    text-align: center;
    width: 75px;
}

.vertical-calendar-event-left-inner.is-today {
    background: #DB3865;
}

.vertical-calendar-event-left-inner h5 {
    font-weight: 400;
}

.vertical-calendar-event-left-inner.is-today h5 {
    text-transform: uppercase;
}

.vertical-calendar-event-card-list {
    border: 1px solid #0000001A;
    border-radius: 0;
    max-width: 830px;
    margin-left: auto;
    margin-right: auto;
    padding: 1rem;
}

.vertical-calendar-event-list {
    max-width: 830px;
    margin-left: auto;
    margin-right: auto;
}

.vertical-calendar-event-list > div > div:last-child .vertical-calendar-event-right {
    border-bottom: 0;
}

.vertical-calendar-event-right {
    border-bottom: 1px solid #0000004D;
    display: flex;
    padding: 1rem;
    width: 100%;
}

.vertical-calendar-event-right-inner {
    display: flex;
    flex-direction: column;
}

/*
    SCHEDULE EVENTS
*/

.schedule-events-row {
    margin-top: 1rem;
}

.schedule-events > div:not(:last-child) {
    margin-bottom: 1.5rem;
}

.schedule-event {
    padding: 0;
}

.schedule-event-inner {
    display: flex;
    width: 100%;
}

.schedule-event-left {
    align-self: center;
    display: flex;
    flex-direction: column;
    padding: 1rem;
    text-align: center;
}

.schedule-event-right {
    display: flex;
    flex-direction: column;
    padding: 1rem;
    width: 100%;
}

/*
    FORMS
*/

.default-form {

}

.form-check-input {
    margin-top: 0;
}


/*
    MAP
*/

#map, .map-canvas {
    height: 400px;
    width: 100%;
}

#map.large {
    height: 70vh;
}

.dropdown-item.active {
    color: #ffffff !important;
}

.map-info-title {
    margin-bottom: 0.5rem;
}

.map-info-button-container {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
}

.whole-map-container {
    margin-top: 1rem;
}

/*
    BUTTONS
*/

.button-container {
    display: flex;
}

@media (min-width: 992px) {
    .regular-component.LINK > .button-container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .button-container {
        display: flex;
        max-width: 830px;
        margin-left: auto;
        margin-right: auto;
        text-align: left;
    }
}

.btn {
    border-radius: 0;
    color: #CC4B6A;
}

.btn:hover, .btn:active {
    color: #DB3865;
}

.btn:focus {
    box-shadow: 0 0 0 0.2rem rgba(204, 75, 106, 0.5) !important;
}

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

.btn-primary:hover, .btn-primary:active {
    background: #DB3865 !important;
    border-color: #DB3865 !important;
    color: #fff !important;
}

.btn-primary:focus {
    box-shadow: 0 0 0 0.2rem rgba(204, 75, 106, 0.5) !important;
}

.btn-secondary, .btn-tertiary {
    background: rgba(204, 75, 106, 0.1);
    border-color: rgba(204, 75, 106, 0.1);
    color: #CC4B6A;
}

.btn-secondary:hover, .btn-secondary:active, .btn-tertiary:hover, .btn-tertiary:active {
    background: #DB3865 !important;
    border-color: #DB3865 !important;
    color: #fff !important;
}

.btn-secondary:focus, .btn-tertiary:focus {
    box-shadow: 0 0 0 0.2rem rgba(204, 75, 106, 0.5) !important;
}

.standard-link, .parsed-text a {
    color: #CC4B6A;
    text-decoration: none;
}

.standard-link:hover, .parsed-text a:hover {
    color: #DB3865;
    text-decoration: underline;
}

.card-button-container .btn {
    border-radius: 0;
}

.btn-icon.left {
    margin-right: 0.5rem;
}

.btn-icon.right {
    margin-left: 0.5rem;
}

.clear-filters-container {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
    width: 100%;
}


/*
    TYPOGRAPHY
*/

html, body {
    color: #342d2c;
    font-family: 'FuturaMedium', sans-serif;
    line-height: 1.3;
}

.page-title-text {
    font-family: 'FuturaBold', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    padding-bottom: 0.75rem;
    position: relative;
    text-transform: uppercase;
}

#parseAsHtml {
    max-width: 830px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 300px) {
    .page-title-text {
        font-size: 1.3rem;
    }
}

@media (min-width: 370px) {
    .page-title-text {
        font-size: 1.5rem;
    }
}

@media (min-width: 568px) {
    .page-title-text {
        font-size: 1.75rem;
    }
}

@media (min-width: 768px) {
    .page-title-text {
        font-size: 2rem;
    }
}

.page-title.regular-component .page-title-text {
    font-family: 'FuturaBold', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
}

.page-title-text::after {
    content: "";
    display: block;
    width: 100px;
    height: 4px;
    background: var(--chapter-color, #342d2c);
    position: absolute;
    bottom: 0;
    left: 0;
}

.page-description-text, .page-description-text > * {
    font-size: 1.3rem;
    font-weight: 400;
}

p, span {
    font-size: 1rem;
    margin: 0;
}

h1,
h2,
h3,
h4,
h4,
h5,
h6 {
   margin: 0;
}

.section-heading {
    border-bottom: 1px solid #342d2c;
    font-size: 2rem;
    font-weight: 700;
    font-family: 'FuturaBold', sans-serif;
    padding: 0.5rem;
    text-align: left;
}

.text-muted {
    color: #342d2c;
}

.highlighted-text {
    color: #CC4B6A !important;
}

.regular-title {
    font-size: 1.4rem;
    font-family: 'FuturaBold', sans-serif;
    text-transform: uppercase;
}

.regular-sub-title {
    font-size: 1.2rem;
    font-weight: 700;
}

.intro-text, .intro-text > span {
    color: #342d2c;
    font-size: 1rem;
}

.link-list-text, .link-card-list-text {
    text-align: left;
    width: 100%;
}

.link-card-list-text .regular-title {
    color: #342d2c;
    font-size: 1.1rem;
    font-weight: 700;
    font-family: 'FuturaBold', sans-serif;
    text-transform: none;
}

.link-card-list-text .intro-text {
    color: #342d2c;
    font-size: 1rem;
    font-weight: 400;
}

.link-list-text .intro-text, .link-list-text .intro-text > span {
    color: #342d2c;
    font-size: 1rem;
    font-weight: 400;
}

@media (min-width: 768px) {
    .regular-title {
        font-size: 1.75rem;
    }

    .regular-sub-title {
        font-size: 1.4rem;
    }

    .intro-text, .intro-text > span {
        font-size: 1rem;
    }

    .link-card-list-text .intro-text {
        font-size: 1rem;
    }

    .link-list-text .intro-text, .link-list-text .intro-text > span {
        font-size: 1rem;
    }

    .page-description-text, .page-description-text > * {
        font-size: 1.75rem;
    }
}

b, strong {
    font-weight: 700;
    font-family: 'FuturaBold', sans-serif;
}

blockquote, .blockquote {
    border: 0;
    display: flex;
    font-size: 1.75rem;
    font-weight: 700;
    font-family: 'FuturaBold', sans-serif;
    line-height: 1.1;
    margin: 0 auto;
    max-width: 360px;
    padding: 0;
}

blockquote p, .blockquote p {
    font-size: 1.75rem;
    margin-bottom: 0;
}

blockquote p::before, .blockquote p::before {
    content: open-quote;
    font-size: 3rem;
    margin-right: 0.5rem;
}

.blockquote .quote-symbol {
    font-size: 3rem;
    margin: -0.5rem 1rem 0 0;
}

.parsed-text > * {
    margin: 0;
}

.parsed-text > *:not(:last-child) {
    margin-bottom: 1rem;
}

.parsed-text h1, .parsed-text h2, .parsed-text h3, .parsed-text h4, .parsed-text h5, .parsed-text h6 {
    margin-bottom: 0.25rem !important;
}

.parsed-text table {
    display: table;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;

    height: auto !important;
}

.parsed-text table tr:first-child td, .parsed-text tr:first-child table th {
    vertical-align: middle;
}

.parsed-text table td, .parsed-text table th {
    border: 0;
    border-top: 1px solid #dee2e6;
    vertical-align: top;
}

.parsed-text tbody tr:nth-of-type(odd) {
    background: rgba(0,0,0,.05)
}

.parsed-text tbody tr:last-child {
    border-bottom: 1px solid #dee2e6;
}

.component-format\.text\.image-caption {
    text-align: right !important;
}

/*
    FOOTER
*/

.footer {
    background: #FFF;
    border-top: 5px solid #FFF;
    color: #342d2c;
    margin-top: auto;
    padding: 3rem;
}

.footer .text-muted {
    color: #342d2c !important;
}

.footer-component {
    padding: 0
}


/*
    WHOLE SCREEN OVERLAY
*/

.whole-screen-overlay {
    color: #ffffff;
    padding-top: 56.25%;
    position: relative;
    width: 100%;
}

@media (min-width: 992px) {
    .whole-screen-overlay {
        padding-top: 31.25%;
    }
}

.whole-screen-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
}

.whole-screen-image img {
    object-fit: cover;
}

.whole-screen-overlay-darkener {
    background: rgba(0,0,0,.25);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.whole-screen-overlay-caption {
    color: #ffffff;
    position: absolute;
    top: initial;
    bottom: 20px;
    padding-top: 20px;
    padding-bottom: 20px;
    text-align: left;
    width: 100%;
}

@media (min-width: 992px) {
    .whole-screen-overlay-caption-inner {
        max-width: 830px !important;
    }
}

.whole-screen-overlay-caption a, .carousel-caption a {
    border: 1px solid #ffffff;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 400;
    margin-top: 1rem;
    text-transform: uppercase;
    z-index: 1;
}

.whole-screen-overlay-caption a:hover, .carousel-caption a:hover {
    color: #ffffff;
}

.whole-screen-overlay-caption h1, .carousel-caption h1 {
    font-size: 1.75rem;
    font-weight: 700;
    font-family: 'FuturaBold', sans-serif;
    position: relative;
    padding-bottom: 0.75rem;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
}

.whole-screen-overlay-caption h1::after, .carousel-caption h1::after {
    content: "";
    display: block;
    width: 100px;
    height: 4px;
    background: #fff;
    position: absolute;
    bottom: 0;
    left: 0;
}

.whole-screen-overlay-caption h5, .carousel-caption h5 {
    font-size: 1rem;
    font-weight: 400;
}

.whole-screen-overlay + .body-content .regular-component-container > *:first-child:not(.component-format\.text\.image-caption) {
    margin-top: 3rem;
}

.regular-component.IMAGE {
    margin-bottom: 0;
}

.regular-component.IMAGE + .regular-component:not(.component-format\.text\.image-caption) {
    margin-top: 3rem;
}

.component-format\.link\.card-cover {
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    margin-bottom: 0 !important;
    padding: 0 !important;
}

.component-format\.link\.card-cover + .regular-component:not(.component-format\.link\.card-cover) {
    margin-top: 3rem !important;
}

.component-format\.link\.card-cover .link-list-text {
    padding-left: 15px;
    padding-right: 15px;
}

.card-cover {
    overflow: hidden;
    padding-top: 56.25%;
    position: relative;
    width: 100%;
}

@media (min-width: 992px) {
    .card-cover {
        padding-top: 31.25%;
    }
}

.inline-card-cover {
    height: 730px;
    max-width: 830px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.card-cover img, .card-cover .img-empty {
    bottom: 0;
    left: 0;
    object-fit: cover;
    position: absolute;
    right: 0;
    top: 0;

}

.inline-card-cover img {
    border-radius: 0;
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.inline-card-cover .img-empty {
    border-radius: 0;
    height: 100vw;
    max-height: 730px;
    width: 100%;
}

.inline-card-cover .whole-screen-overlay-caption-inner {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}

@media (min-width: 768px) {
    .inline-card-cover .whole-screen-overlay-caption-inner {
        padding-left: 3rem;
        padding-right: 3rem;
    }
}

.img-empty {
    background: #CC4B6A;
    color: #fff;
    height: 100%;
    width: 100%;
}

/*
    LAZY LOADING
*/

.lozad {
    color: transparent;
    opacity: 0;
    transition: opacity 800ms ease 300ms;
}

.lozad[data-loaded], .lozad.loaded {
    opacity: 1;
}

.lozad:not([src]), .lozad.error {
    visibility: hidden;
}

.skeleton-loading {
    display: none;
    flex-direction: column;
}

.loading .skeleton-loading {
    display: flex;
    margin-top: 1rem;
}

.skeleton-component {
    background: hsl(0, 0%, 71%);
    background-image: linear-gradient(90deg, hsl(0, 0%, 71%) 0px, hsl(0, 0%, 86%) 40px, hsl(0, 0%, 86%) 80px);
    background-size: 830px;
    border-radius: 0;
    max-width: 100%;
}

.skeleton-inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.skeleton-card {
    height: 150px;
    width: 100%;
    margin-bottom: 2rem;
    animation: shine-card 2.0s infinite ease-out;
}

@keyframes shine-card {
    0% {
        background-position: -100px;
    }
    40% {
        background-position: 575px;
    }
    100% {
        background-position: 575px;
    }
}

@media (min-width: 576px) {
    @keyframes shine-card {
        0% {
            background-position: -100px;
        }
        40% {
            background-position: 766px;
        }
        100% {
            background-position: 766px;
        }
    }
}

@media (min-width: 768px) {
    .skeleton-component {
        background-size: 1090px;
    }

    @keyframes shine-input {
        0% {
            background-position: -100px;
        }
        40% {
            background-position: 830px;
        }
        100% {
            background-position: 830px;
        }
    }
}

.caret-icon {
    margin-left: auto;
    margin-top: 0.25rem;
    cursor: pointer;
}

.search-container {
    max-height: 0;
    -webkit-transition: max-height .3s ease-out;
    -o-transition: max-height .3s ease-out;
    transition: max-height .3s ease-out;
    opacity: 0;
    visibility: hidden;
}

.search-container.show {
    max-height: 350px;
    -webkit-transition: max-height .3s ease-in;
    -o-transition: max-height .3s ease-in;
    transition: max-height .3s ease-in;
    margin: 3rem 0;
    height: auto;
    visibility: visible;
    opacity: 1;
}

.search-autocomplete-container {
    background-color: #fff;
    display: flex;
    flex-direction: column;
    padding: 0 1rem 0.5rem 1rem;
    position: absolute;
    width: 100%;
    z-index: 1;
}

.search-autocomplete-container label {
    margin-bottom: 0.25rem;
}
.progress_bar{
    margin-top: 10px;
    width: 100%;
    background-color: #ddd;
    display: none;

}
.estimation {
    display: none;
}
.bar_text{
    width: 1%;
    height: 30px;
    background-color: #018d61;
    text-align: center;
    line-height: 30px;
    color: white;
    display: inline-block;
    white-space: nowrap;
}
.modal-footer {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Align items to the start (left) of the container */
}

.buttons-container {
    display: flex;
    justify-content: flex-start; /* Align buttons to the start (left) of the container */
}

/* ##### BOOTSTRAP CONTAINER OVERRIDE ######## */

body .container {
    @media (min-width: 1200px) {
        .container {
            max-width: 1140px;
        }
    }

    @media (min-width: 1400px) {
        .container {
            max-width: 1340px;
        }
    }
}