/*
// .tmb-slideshow
*/
:root {
    --tmb-slideshow--aspect-ratio: 2.5;
    --tmb-slideshow--title-color: #000;
    --tmb-slideshow--subtitle-color: #000;
    --tmb-slideshow--text-color: #000;
    --tmb-slideshow--button-bg-color: #000;
    --tmb-slideshow--button-text-color: #fff;
}

.tmb-slideshow {
    font-size: calc((100vw - 30px) / 1110 * 16);
}
.tmb-slideshow__wrapper {
    position: relative;
    padding-bottom: calc(100% / var(--tmb-slideshow--aspect-ratio));
}
.tmb-slideshow__swiper {
    position: absolute;
    height: 100%;
    width: 100%;
}
.tmb-slideshow__slide {
    padding: 3em 5em;
    text-decoration: none;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    border-radius: 2px;
    z-index: 1;
    position: relative;
    height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.tmb-slideshow__slide-title {
    font-size: 2em;
    line-height: 1.2;
    font-weight: 500;
    color: var(--tmb-slideshow--title-color);
    max-width: calc(1em * (400 / 32));
}
.tmb-slideshow__slide-subtitle {
    font-size: .875em;
    color: var(--tmb-slideshow--subtitle-color);
    margin-bottom: calc(1em * (4 / 14));
    max-width: calc(1em * (400 / 14));
}
.tmb-slideshow__slide-text {
    font-size: .875em;
    line-height: 1.75;
    font-weight: normal;
    margin-top: calc(1em * (20 / 14));
    color: var(--tmb-slideshow--text-color);
    max-width: calc(1em * (400 / 14));
}
.tmb-slideshow__slide-button {
    background: var(--tmb-slideshow--button-bg-color);
    color: var(--tmb-slideshow--button-text-color);
    font-size: .9375em;
    line-height: calc(24 / 15);
    font-weight: 500;
    border-radius: 2px;
    padding: calc(1em * (8 / 15)) calc(1em * (24 / 15));
    margin-top: calc(1em * (52 / 15));
}
.tmb-slideshow__slide-button:first-child {
    margin-top: 0;
}
.tmb-slideshow .swiper-pagination-bullets {
    display: flex;
    justify-content: center;
    bottom: 1.25em;
    pointer-events: none;
    background: #fff;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    padding: calc(1em * (4 / 16)) calc(1em * (2 / 16));
    border-radius: calc(1em * (6 / 16));
}
.tmb-slideshow .swiper-pagination-bullet {
    width: calc(1em * (24 / 16));
    height: calc(1em * (4 / 16));
    border-radius: calc(1em * (2 / 16));
    background: #e0e0e0;
    opacity: 1;
}
.tmb-slideshow .swiper-pagination-bullet-active {
    background: var(--tm-theme--main-color);
    opacity: 1;
}
.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 calc(1em * (2 / 16));
}
.tmb-slideshow__slide--align--start {
    align-items: flex-start;
    text-align: left;
}
.tmb-slideshow__slide--align--center {
    align-items: center;
    text-align: center;
}
.tmb-slideshow__slide--align--end {
    align-items: flex-end;
    text-align: right;
}

@media (min-width: 1200px) {
    .tmb-slideshow {
        font-size: 16px;
    }
}
