@font-face {
    font-family: aileron, sans-serif;
    font-style: normal;
    font-weight: 400;
    src: url(href="https://use.typekit.net/cbz4zte.css);
    font-display: swap;
}
* {
    font-family: aileron, sans-serif;
    font-style: normal;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    text-shadow: rgba(0, 0, 0, .1) 0 0 1px;
}
body {
    padding: unset;
    margin: unset;
}
p {
    font-size: 15px;
    line-height: 150%;
    margin-block-start: unset;
    margin-block-end: unset;
}
main {
    display: flex;
    flex-direction: column;
    /*    justify-content: center;*/
    background: url('/assets/imgs/mobile-bg.jpg');
    background-size: cover;
    background-position: bottom;
    gap: 8vh;
    min-height: 100vh;
    overflow: hidden;
    padding-bottom: 12vh;
}
.bold {
    font-weight: 700;
}
.logo {
    display: flex;
    justify-content: flex-end;
    padding-top: 8%;
    padding-right: 26px;
}
.logo img {
    width: clamp(139px, 139px + 20vw, 313px);
    height: auto;
}
.slide-header {
    display: flex;
    justify-content: space-between;
    padding-left: 15px;
    padding-right: 6px;
    padding-top: 16px;
}
.slide-header .stars {
    display: flex;
    align-items: center;
    gap: 14px;
}
.slide-count span {
    font-size: 45px;
    /* identical to box height, or 68px */
    /* Neutrals/Light Grey */
    -webkit-text-fill-color: white;
    -webkit-text-stroke: clamp(1px, 1px + 0.125vw, 2px) #CBCCCB;
}
.slide-footer {
    display: flex;
    gap: 12px;
    margin-top: auto;
}
.slide-footer span:nth-child(2) {
    display: none;
}
.stairlift {
    flex: 1.8;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
}
.stairlift .img {
    display: flex;
    justify-content: center;
    grid-column: 1/2;
    grid-row: 1/2;
    align-items: flex-end;
}
.img img {
    width: 100%;
    height: auto;
}
.stairlift .svg {
    display: flex;
    align-items: flex-end;
    grid-column: 1/2;
    grid-row: 1/2;
    z-index: -1;
}
.img img {
    width: 129px;
    height: auto;
}
.svg svg {
    width: 100%;
    height: auto;
}
.info {
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: flex-end;
    gap: 2px;
    padding-left: 15px;
    padding-bottom: 28px;
}
.text {
    padding: 0 15px;
}
.swiper {
    display: flex;
    flex-direction: column;
    max-width: 353px;
    gap: 13px;
    height: -webkit-min-content;
}
.swiper .swiper-wrapper {
    background: #FFFFFF;
    opacity: 0.95;
    box-shadow: 0px 1px 2.5px 1px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(2px);
    /* Note: backdrop-filter has minimal browser support */
    border-radius: 2.5px;
    overflow: hidden;
}
.swiper .swiper-slide {
    background: #FFFFFF;
    display: flex;
    flex-direction: column;
    height: auto;
}
.swiper-nav-buttons {
    display: flex;
    justify-content: center;
    gap: 98px;
}
.swiper .swiper-button-next, .swiper .swiper-button-prev {
    position: relative;
    margin-top: unset;
    width: unset;
    height: unset;
    left: unset;
    right: unset;
}
.swiper .swiper-button-next svg, .swiper .swiper-button-prev svg {
    width: 45px;
    height: 45px;
}
.swiper .swiper-button-next svg circle, .swiper .swiper-button-prev svg circle {
    stroke-width: clamp(1.1px, 1.2px + 0.125vw, 3px);
}
.swiper-button-next {
    order: 12;
}
.swiper .swiper-button-prev {
    order: 1;
}
.swiper .swiper-button-next:hover svg circle {
    /*    border: 3px solid;*/
    stroke: url(#paint0_linear_59_70);
}
.swiper .swiper-button-prev:hover svg circle {
    stroke: url(#paint0_linear_59_65);
}
.swiper .swiper-button-next:hover svg path {
    /*    border: 3px solid;*/
    fill: url(#paint0_linear_59_70);
}
.swiper .swiper-button-prev:hover svg path {
    fill: url(#paint0_linear_59_65);
}
.swiper-button-next:after, .swiper-button-prev:after {
    display: none;
}
/*gsap*/
.text, .slide-count, .info {
    opacity: 0;
}
.img-1 img:nth-of-type(1) {
    display: none;
}
.img-2 img:nth-of-type(1) {
    display: none;
}
.img-3 img:nth-of-type(1) {
    display: none;
}
.img-4 img:nth-of-type(1) {
    display: none;
}
.img-1 img:nth-of-type(2) {}
.img-2 img:nth-of-type(2) {
    width: 128px;
    padding-bottom: 8px;
}
.img-3 img:nth-of-type(2) {
    width: 128px;
    padding-bottom: 8px;
}
.img-4 img:nth-of-type(2) {
    padding-bottom: 12px;
}
@media screen and (min-width: 500px) {
    p {
        font-size: 16px;
        line-height: 150%;
    }
    span {
        font-size: 16px;
    }
    main {
        display: grid;
        grid-template-columns: minmax(13px, auto) 460px minmax(13px, auto);
        grid-template-rows: auto auto auto;
        background: url('/assets/imgs/tablet-bg.jpg');
        background-size: cover;
        background-position: calc(100% - 90%) bottom;
        padding: unset;
        gap: unset;
    }
    .bold {
        font-weight: 700;
        font-size: 16px;
    }
    .logo {
        align-items: flex-start;
        grid-column: 2/3;
        padding-top: 43px;
        padding-right: unset;
    }
    .logo img {
        width: 100%;
        height: auto;
        max-width: 313px;
        padding-right: unset;
    }
    .slide-header {
        display: flex;
        justify-content: center;
        padding-left: 16px;
        padding-top: 38px;
        padding-bottom: 18px;
        grid-column: 1/2;
        grid-row: 1/2;
    }
    .slide-header .stars {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1rem;
    }
    .slide-count span {
        font-size: 80px;
        position: absolute;
        right: 4%;
        top: 0;
    }
    .slide-footer {
        display: flex;
        gap: 12px;
        margin-top: auto;
        grid-column: 1/2;
        grid-row: 3/4;
    }
    .stairlift {
        flex: 1.8;
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: 1fr;
    }
    .stairlift .img {
        display: flex;
        justify-content: center;
        grid-column: 1/2;
        grid-row: 1/2;
        align-items: flex-end;
    }
    .img img {
        width: 126px;
        height: auto;
    }
    .stairlift .svg {
        display: flex;
        align-items: flex-end;
        grid-column: 1/2;
        grid-row: 1/2;
        z-index: -1;
    }
    .stars svg {
        width: clamp(24px, 32px + 4vw, 40px);
        height: auto;
    }
    .info {
        display: flex;
        flex: 1;
        flex-direction: column;
        justify-content: flex-end;
        gap: 0.6rem;
        padding-left: 6%;
        padding-bottom: 16%;
    }
    .text {
        padding-left: 6%;
        padding-right: unset;
        grid-column: 1/2;
        grid-row: 2/3;
    }
    .swiper {
        grid-column: 2/3;
        display: grid;
        grid-template-columns: 1fr auto;
        grid-template-rows: 1fr;
        max-width: 100%;
        gap: 16px;
        max-height: 552px;
    }
    .swiper .swiper-wrapper {
        grid-column: 1/3;
        grid-row: 1/2;
        background: #FFFFFF;
        box-shadow: 0px 1px 2.5px 1px rgba(0, 0, 0, 0.15);
        backdrop-filter: blur(2px);
        border-radius: 2.5px;
    }
    .swiper .swiper-slide {
        background: #FFFFFF;
        display: grid;
        grid-template-columns: auto 6rem;
        grid-auto-rows: auto 1fr auto;
        row-gap: unset;
        height: auto;
    }
    .swiper-nav-buttons {
        grid-column: 2/3;
        grid-row: 1/2;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        align-items: center;
        min-width: clamp(2rem, 4rem + 4vw, 6rem);
        gap: 4%;
        padding: unset;
        /*        width: minmax(12vw, 80px);*/
        padding-bottom: 50%;
        z-index: 1;
    }
    .swiper .swiper-button-next, .swiper .swiper-button-prev {
        position: relative;
        margin-top: unset;
        top: unset;
        left: unset;
        right: unset;
        width: 45px;
        height: 45px;
    }
    .swiper .swiper-button-next svg, .swiper .swiper-button-prev svg {
        width: 45px;
        height: 45px;
    }
    .swiper .swiper-button-next {
        order: 1;
    }
    .swiper .swiper-button-prev {
        order: 12;
    }
    .swiper-button-next:after, .swiper-button-prev:after {
        display: none;
    }
}
@media screen and (min-width: 540px) {
    p {
        font-size: 16px;
        line-height: 150%;
    }
    span {
        font-size: 16px;
    }
    main {
        display: grid;
        grid-template-columns: minmax(13px, auto) 513px minmax(13px, auto);
        grid-template-rows: auto auto auto;
        background: url('/assets/imgs/tablet-bg.jpg');
        background-size: cover;
        background-position: calc(100% - 90%) bottom;
        padding: unset;
        gap: unset;
    }
    .bold {
        font-weight: 700;
        font-size: 16px;
    }
    .logo {
        align-items: flex-start;
        grid-column: 2/3;
        padding-top: 43px;
    }
    .logo img {
        width: 100%;
        height: auto;
        max-width: 313px;
        padding-right: unset;
    }
    .slide-header {
        display: flex;
        justify-content: center;
        padding-left: 16px;
        padding-top: 38px;
        padding-bottom: 18px;
        grid-column: 1/2;
        grid-row: 1/2;
    }
    .slide-header .stars {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1rem;
    }
    .slide-count span {
        font-size: clamp(55px, 65px + 4vw, 80px);
        position: absolute;
        right: 4%;
        top: 0;
    }
    .slide-footer {
        display: flex;
        gap: 12px;
        margin-top: auto;
        grid-column: 1/2;
        grid-row: 3/4;
    }
    .stairlift {
        flex: 1.8;
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: 1fr;
    }
    .stairlift .img {
        display: flex;
        justify-content: center;
        grid-column: 1/2;
        grid-row: 1/2;
        align-items: flex-end;
    }
    .img img {
        width: 152px;
        height: auto;
    }
    .stairlift .svg {
        display: flex;
        align-items: flex-end;
        grid-column: 1/2;
        grid-row: 1/2;
        z-index: -1;
    }
    .stars svg {
        width: clamp(24px, 32px + 4vw, 40px);
        height: auto;
    }
    .info {
        display: flex;
        flex: 1;
        flex-direction: column;
        justify-content: flex-end;
        gap: 0.6rem;
        padding-left: 6%;
        padding-bottom: 16%;
    }
    .text {
        padding-left: 6%;
        padding-right: unset;
        grid-column: 1/2;
        grid-row: 2/3;
    }
    .swiper {
        grid-column: 2/3;
        display: grid;
        grid-template-columns: 1fr auto;
        grid-template-rows: 1fr;
        max-width: 100%;
        gap: 16px;
    }
    .swiper .swiper-wrapper {
        grid-column: 1/3;
        grid-row: 1/2;
        background: #FFFFFF;
        box-shadow: 0px 1px 2.5px 1px rgba(0, 0, 0, 0.15);
        backdrop-filter: blur(2px);
        border-radius: 2.5px;
    }
    .swiper .swiper-slide {
        background: #FFFFFF;
        display: grid;
        grid-template-columns: auto 6rem;
        grid-auto-rows: auto 1fr auto;
        row-gap: unset;
        height: auto;
    }
    .swiper-nav-buttons {
        grid-column: 2/3;
        grid-row: 1/2;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        align-items: center;
        min-width: clamp(2rem, 4rem + 4vw, 6rem);
        gap: 4%;
        padding: unset;
        /*        width: minmax(12vw, 80px);*/
        padding-bottom: 50%;
        z-index: 1;
    }
    .swiper .swiper-button-next, .swiper .swiper-button-prev {
        position: relative;
        margin-top: unset;
        top: unset;
        left: unset;
        right: unset;
        width: 45px;
        height: 45px;
    }
    .swiper .swiper-button-next svg, .swiper .swiper-button-prev svg {
        width: 45px;
        height: 45px;
    }
    .swiper .swiper-button-next {
        order: 1;
    }
    .swiper .swiper-button-prev {
        order: 12;
    }
    .swiper-button-next:after, .swiper-button-prev:after {
        display: none;
    }
    .img-1 img:nth-of-type(2) {}
    .img-2 img:nth-of-type(2) {}
    .img-3 img:nth-of-type(2) {}
    .img-4 img:nth-of-type(2) {}
}
@media screen and (min-width: 650px) {
    main {
        grid-template-columns: minmax(13px, 30vw) 513px minmax(13px, auto);
    }
}
@media screen and (min-width: 769px) {
    p {
        font-size: 20px;
        line-height: 150%;
    }
    span {
        font-size: 24px;
    }
    .bold {
        font-weight: 700;
        font-size: 18px;
    }
    main {
        grid-template-columns: minmax(25px, 30vw) 720px minmax(25px, auto);
        grid-template-rows: auto minmax(552px, auto) auto;
        background: url("imgs/1300.jpg");
        background-position: left bottom;
        background-size: cover;
    }
    .logo {
        display: flex;
        justify-content: flex-end;
        align-items: flex-start;
        grid-column: 2/3;
        padding-top: 49px;
    }
    .logo img {
        width: 270px;
        height: auto;
        padding: unset;
    }
    .stars svg {
        width: 50px;
        height: 50px;
    }
    .slide-header {
        display: flex;
        justify-content: flex-start;
        padding: unset;
        grid-column: 1/2;
        grid-row: 1/2;
        padding-top: 44px;
        padding-bottom: 19px;
    }
    .slide-header .stars {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 26px;
        padding-left: 83px;
    }
    .slide-count span {
        font-size: 135px;
        position: absolute;
        right: 23px;
        top: 6px;
    }
    .slide-footer {
        display: flex;
        gap: 12px;
        margin-top: auto;
        grid-column: 1/2;
        grid-row: 3/4;
    }
    .stairlift {
        min-width: 414px;
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: 1fr;
    }
    .stairlift .img {
        display: flex;
        justify-content: center;
        align-items: flex-start;
        grid-column: 1/2;
        grid-row: 1/2;
        align-items: flex-end;
    }
    .img img {
        width: 253px;
        height: auto;
    }
    .stairlift .svg {
        display: flex;
        align-items: flex-end;
        grid-column: 1/2;
        grid-row: 1/2;
        z-index: -1;
    }
    .info {
        display: flex;
        flex: 1;
        flex-direction: column;
        justify-content: flex-end;
        gap: 0.6rem;
        padding-left: 39px;
        padding-bottom: 64px;
    }
    .text {
        padding-left: 39px;
        padding-right: 68px;
        grid-column: 1/2;
        grid-row: 2/3;
    }
    .swiper {
        grid-column: 2/3;
        grid-row: 2/3;
        display: grid;
        grid-template-columns: 1fr 108px;
        grid-template-rows: 1fr;
        max-width: 100%;
        box-shadow: 0px 2px 5px 2px rgba(0, 0, 0, 0.15);
        backdrop-filter: blur(4px);
        border-radius: 5px;
        max-height: 665px;
    }
    .swiper .swiper-wrapper {
        grid-column: 1/3;
        grid-row: 1/2;
        background: #FFFFFF;
        opacity: 1;
        box-shadow: 0px 1px 2.5px 1px rgba(0, 0, 0, 0.15);
        backdrop-filter: blur(2px);
        border-radius: 2.5px;
    }
    .swiper .swiper-slide {
        background: #FFFFFF;
        display: grid;
        grid-template-columns: 1fr 108px;
        grid-auto-rows: auto 1fr auto;
        row-gap: unset;
        height: auto;
    }
    .swiper-nav-buttons {
        grid-column: 2/3;
        grid-row: 1/2;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-end;
        min-width: 108px;
        gap: 25px;
        padding: unset;
        padding-bottom: 31px;
        z-index: 1;
    }
    .swiper .swiper-button-next, .swiper .swiper-button-prev {
        position: relative;
        margin-top: unset;
        top: unset;
        left: unset;
        right: unset;
        width: 65px;
        height: 65px;
    }
    .swiper .swiper-button-next svg, .swiper .swiper-button-prev svg {
        width: 65px;
        height: 65px;
    }
    .swiper-button-next:after, .swiper-button-prev:after {
        display: none;
    }
    .img-1 img:nth-of-type(1) {
        display: block;
        width: 215px;
    }
    .img-2 img:nth-of-type(1) {
        display: block;
        width: 192px;
        padding-bottom: 12px;
    }
    .img-3 img:nth-of-type(1) {
        display: block;
        width: 192px;
        padding-bottom: 12px;
    }
    .img-4 img:nth-of-type(1) {
        display: block;
        width: 213px;
        padding-bottom: 12px;
    }
    .img-1 img:nth-of-type(2) {
        display: none;
    }
    .img-2 img:nth-of-type(2) {
        display: none;
    }
    .img-3 img:nth-of-type(2) {
        display: none;
    }
    .img-4 img:nth-of-type(2) {
        display: none;
    }
}
@media screen and (min-width: 1024px) {
    p {
        font-size: 20px;
        line-height: 150%;
    }
    span {
        font-size: 20px;
    }
    .bold {
        font-weight: 700;
        font-size: 24px;
    }
    main {
        grid-template-columns: minmax(197px, 30vw) minmax(770px, 910px) minmax(58px, auto);
        grid-template-rows: auto minmax(665px, auto) auto;
        background: url("imgs/1300.jpg");
        background-position: left bottom;
        background-size: cover;
    }
    .logo {
        display: flex;
        justify-content: flex-end;
        align-items: flex-start;
        grid-column: 2/3;
        padding-top: 48px;
    }
    .logo img {
        width: 344px;
        height: auto;
        padding: unset;
    }
    .stars svg {
        width: 50px;
        height: 50px;
    }
    .slide-header {
        display: flex;
        padding: unset;
        grid-column: 1/2;
        grid-row: 1/2;
        padding-top: 44px;
        padding-bottom: 19px;
    }
    .slide-header .stars {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 26px;
        padding-left: 80px;
    }
    .slide-count span {
        font-size: 135px;
        position: absolute;
        right: 28px;
        top: 8px;
    }
    .slide-footer {
        display: flex;
        gap: 12px;
        margin-top: auto;
        grid-column: 1/2;
        grid-row: 3/4;
    }
    .stairlift {
        min-width: 414px;
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: 1fr;
    }
    .stairlift .img {
        display: flex;
        justify-content: center;
        grid-column: 1/2;
        grid-row: 1/2;
        align-items: flex-start;
    }
    .img img {
        width: 253px;
        height: auto;
    }
    .stairlift .svg {
        display: flex;
        align-items: flex-end;
        grid-column: 1/2;
        grid-row: 1/2;
        z-index: -1;
    }
    .info {
        display: flex;
        flex: 1;
        flex-direction: column;
        justify-content: flex-end;
        gap: 0.6rem;
        padding-left: 39px;
        padding-bottom: 90px;
    }
    .text {
        padding-left: 39px;
        padding-right: 55px;
        grid-column: 1/2;
        grid-row: 2/3;
    }
    .swiper {
        grid-column: 2/3;
        grid-row: 2/3;
        display: grid;
        grid-template-columns: 1fr 154px;
        grid-template-rows: 1fr;
        max-width: 100%;
        box-shadow: 0px 2px 5px 2px rgba(0, 0, 0, 0.15);
        backdrop-filter: blur(4px);
        border-radius: 5px;
        height: 665px;
    }
    .swiper .swiper-wrapper {
        grid-column: 1/3;
        grid-row: 1/2;
        background: #FFFFFF;
        opacity: 1;
        box-shadow: 0px 1px 2.5px 1px rgba(0, 0, 0, 0.15);
        backdrop-filter: blur(2px);
        border-radius: 2.5px;
    }
    .swiper .swiper-slide {
        background: #FFFFFF;
        display: grid;
        grid-template-columns: 1fr 154px;
        grid-auto-rows: auto 1fr auto;
        row-gap: unset;
        height: auto;
    }
    .swiper-nav-buttons {
        grid-column: 2/3;
        grid-row: 1/2;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-end;
        min-width: 154px;
        gap: 25px;
        padding: unset;
        padding-bottom: 31px;
        z-index: 1;
    }
    .swiper .swiper-button-next, .swiper .swiper-button-prev {
        position: relative;
        margin-top: unset;
        top: unset;
        left: unset;
        right: unset;
        width: 65px;
        height: 65px;
    }
    .swiper .swiper-button-next svg, .swiper .swiper-button-prev svg {
        width: 65px;
        height: 65px;
    }
    .swiper-button-next:after, .swiper-button-prev:after {
        display: none;
    }
    .img-1 img:nth-of-type(1) {
        display: block;
        width: 215px;
    }
    .img-2 img:nth-of-type(1) {
        display: block;
        width: 192px;
    }
    .img-3 img:nth-of-type(1) {
        display: block;
        width: 192px;
        padding-top: 12px;
    }
    .img-4 img:nth-of-type(1) {
        display: block;
        width: 200px;
        padding-bottom: 12px;
    }
}
@media screen and (min-width: 1300px) {
    main {
        grid-template-columns: minmax(197px, 30vw) minmax(910px, 50vw) minmax(58px, auto);
        grid-template-rows: auto minmax(665px, auto) auto;
        background: url("imgs/desktop-bg.png");
        background-position: calc(100% - 60%) bottom;
        background-size: cover;
    }
    .logo {
        display: flex;
        justify-content: flex-end;
        align-items: flex-end;
        grid-column: 2/3;
        padding-bottom: 67px;
        padding-right: unset;
    }
    .logo img {
        width: 344px;
        height: auto;
        padding: unset;
        transform: translateX(254px);
    }
    .swiper {
        margin-right: unset !important;
        width: 910px;
        max-width: 910px;
        max-height: 665px;
    }
    .slide-header {
        display: flex;
        justify-content: center;
        padding: unset;
        grid-column: 1/2;
        grid-row: 1/2;
        padding-top: 8%;
        padding-bottom: 22px;
    }
    .slide-header .stars {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 26px;
        padding-left: 8%;
        padding-right: 16%;
    }
    .text {
        padding-left: 48px;
        padding-right: 42px;
        grid-column: 1/2;
        grid-row: 2/3;
    }
    .swiper {
        grid-template-columns: 1r 184px;
    }
    .swiper-nav-buttons {
        min-width: 154px;
    }
    .img-1 img:nth-of-type(1) {
        display: block;
        width: 228px;
    }
    .img-2 img:nth-of-type(1) {
        display: block;
        width: 200px;
        padding-top: 8px;
    }
    .img-3 img:nth-of-type(1) {
        display: block;
        width: 200px;
        padding-top: 8px;
    }
    .img-4 img:nth-of-type(1) {
        display: block;
        width: 213px;
        padding-bottom: 12px;
    }
}
@media screen and (min-width: 1300px) and (max-width: 1680px) {
    .logo img {
        position: absolute;
        right: 0;
        transform: translateX(-58px);
    }
}
.login {
    place-self: center;
    background: #FFFFFF;
    opacity: 0.95;
    box-shadow: 0px 1px 2.5px 1px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(2px);
    /* Note: backdrop-filter has minimal browser support */
    border-radius: 2.5px;
    grid-column: 2/3;
    grid-row: 2/3;
    padding: 2rem 3rem;
}
h5 {
    font-weight: 600;
}