body {
    position: relative;
}
body:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
    background-image: url('../Images/circle.svg');
    background-repeat: no-repeat;
    background-size: 500%;
    background-position-x: calc(0.6 * 100vw);
    background-position-y: calc(-0.6 * 100vh);
}
@media (min-width: 568px) {
    body:before {
        background-size: 300%;
    }
}
@media (min-width: 992px) {
    body:before {
        background-size: 180%;
    }
}
main > * {
    position: relative;
    z-index: 3;
}
.section-cut,
.section-cut-bottom,
.section-cut-top {
    overflow: hidden;
}
.section-cut {
    padding: calc(0.122 * 100vw) 0;
    clip-path: polygon(0 calc(100vw * 0.12), 100% 0, 100% calc(100% - (100vw * 0.12)), 0 100%);
}
.section-cut:before,
.section-cut .big-video {
    clip-path: polygon(0 calc(100vw * 0.12), 100% 0, 100% calc(100% - (100vw * 0.12)), 0 100%);
}
.section-cut-top {
    padding-top: calc(0.122 * 100vw);
}
.section-cut-top:before,
.section-cut-top .big-video {
    clip-path: polygon(0 calc(100vw * 0.12), 100% 0, 100% 100%, 0 100%);
}
.section-cut-bottom {
    padding-bottom: calc(0.122 * 100vw);
}
.section-cut-bottom:before,
.section-cut-bottom .big-video {
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - (100vw * 0.12)), 0 100%);
}
.cta-box,
.clam-box {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 10;
    overflow: hidden;
    display: flex;
    color: var(--bs-white);
    justify-content: center;
    transition: width .2s cubic-bezier(0,0,0,1) .4s;
    padding: calc(0.122 * var(--cta-box-width)) 0;
    width: var(--cta-box-width);
    height: var(--cta-box-height);
}
.cta-box {
    --cta-box-width: 17rem;
    --cta-box-height: 22rem;
}
.clam-box {
    --cta-box-width: 14rem;
    --cta-box-height: 17rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    flex-direction: column !important;
}

@media (min-width: 576px) {
    .cta-box,
    .clam-box {
        bottom: calc((0.122 * 100vw) - 4.5rem);
    }
}
.cta-box:before,
.clam-box:before {
    content: "";
    position: absolute;
    top: calc(0.061 * var(--cta-box-width));
    left: 0;
    right: 0;
    bottom: calc(0.061 * var(--cta-box-width));
    background-color: rgba(var(--bs-dark-blue-rgb), 0.9);
    z-index: -1;
    transform: skewY(-7deg);
}
.cta-box.open {
    /*box-shadow: 0 2px 5px rgba(0,0,0,.12);*/
    /*transition: border-radius .4s cubic-bezier(0,0,0,1) 0s,width .4s cubic-bezier(0,0,0,1) .4s,box-shadow .4s cubic-bezier(0,0,0,1) .6s;*/
}
.cta-box.open:before {
    background-color: var(--bs-orange);
    transition: background-color .0s cubic-bezier(0,0,1,1) .4s, border-bottom-right-radius .0s cubic-bezier(0,0,1,1) .2s, width .2s cubic-bezier(0,0,0,1) .4s, box-shadow .2s cubic-bezier(0,0,0,1) .4s;
}
@media (min-width: 576px) {
    .cta-box,
    .clam-box {
        --cta-box-width: 20rem;
        --cta-box-height: 25rem;
    }
}
.cta-box .teaser-text {
    transition: opacity .4s cubic-bezier(0,0,0,1) .4s;
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 1;
    position: absolute;
    top: 0;
    bottom: 0;
    padding: calc(0.122 * var(--cta-box-width)) 1.25rem;
}
.cta-box.open .teaser-text {
    opacity: 0;
    /*transform: translateY(-350px);*/
}
.cta-box .teaser-text a:hover {
    text-decoration-color: rgba(var(--bs-white-rgb), var(--bs-link-opacity, 0.3));
    text-underline-offset: 0.25em;
    backface-visibility: hidden;
}
.cta-box .teaser-content {
    opacity: 0;
    transform: translateY(550px);
    transition: transform .4s cubic-bezier(0,0,0,1) .4s;
    flex-direction: column;
    width: 100%;
    text-align: center;
    justify-content: center;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}
.cta-box .teaser-content button {
    --bs-icon-font-size: 2rem;
    --bs-icon-width: 2rem;
    position: absolute;
    top: 0;
    right: 1rem;
    color: var(--bs-icon-width);
    display: inline-flex;
    gap: .375rem;
    align-items: center;
}
.cta-box .teaser-content a {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-decoration-color: rgba(var(--bs-primary-rgb), var(--bs-link-opacity, 1));
    text-underline-offset: 0.25em;
    backface-visibility: hidden;
    gap: 0.375rem;
}
.cta-box .teaser-content a:hover {
    -webkit-text-decoration-color: rgba(var(--bs-white-rgb),var(--bs-link-opacity,0.8));
    text-decoration-color: rgba(var(--bs-white-rgb),var(--bs-link-opacity,0.8));
    text-underline-offset: 0.25em;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.cta-box .circle-arrow-right {
    width: 20px;
    height: 20px;
}
.cta-box .teaser-content a:hover .circle-arrow-right {
    transition: transform .1s cubic-bezier(0,0,0,1) .1s;
    transform: translateX(10px);
}
.cta-box .teaser-content ul {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: left;
}
.cta-box.open .teaser-content {
    opacity: 1;
    transform: translateY(0);
}
.clam-box > :where(h1, h2, h3, h4, h5, h6) {
    font-size: 1.5rem;
}

.clam-box > :where(p) {
    font-size: 1rem;
}
@media (min-width: 576px) {
    .clam-box > :where(h1, h2, h3, h4, h5, h6) {
        font-size: 2.25rem;
        margin-bottom: 1rem;
    }

    .clam-box > :where(p) {
        font-size: 1.25rem;
    }
}

.product-image {
    max-width: 100% !important;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}
@media (min-width: 576px) {
    .product-image {
        max-width: 100% !important;
        margin-bottom: 0rem;
    }
}
@media (min-width: 992px) {
    .product-image {
        max-width: 80% !important;
        margin-bottom: -4rem;
    }
}


footer {
    position: relative;
    z-index: 1;
}
footer:after {
    content: "";
    position: absolute;
    background-color: var(--bs-orange);
    top: 0;
    bottom: 0;
    left: 0;
    width: calc(100vw * 0.08);
    z-index: 0;
}
footer > div:first-child {
    margin-top: calc((-0.122 / 3) * 100vw);
}
footer.section-cut-top {
    clip-path: polygon(0 calc(100vw * 0.12), 100% 0, 100% 100%, 0 100%);
    padding-top: calc(0.244 * 100vw);
}
footer .footer-legal ul li {
    display: inline-block;
}

@media (min-width: 576px) {
    footer.section-cut-top {
        padding-top: calc(0.122 * 100vw);
    }
}
@media (max-width: 1919px) {
    footer {
        padding-left: calc(100vw * 0.08);
    }
}

.topbar {
    background-color: rgba(var(--bs-gray-200-rgb), 0.5);
    height: 40px;
    padding: 0;
    font-size: 16px;
    transition: all 0.5s;
}
@media (min-width: 992px) {
    .topbar {
        height: 50px;
    }
}
.header-scrolled .topbar {
    height: 0;
    visibility: hidden;
    overflow: hidden;
}
.topbar .container {
    display: flex;
    align-items: center;
}
.language-switcher {
    list-style: none;
    margin: 0;
    padding: 0;
}
.language-switcher li {
    display: inline-block;
    margin-right: 5px;
}
.language-switcher li:after {
    border-right: 1px solid var(--bs-dark-blue);
    content: "";
    margin-left: 5px;
}
.language-switcher li:last-child {
    margin-right: 0;
}
.language-switcher li:last-child:after {
    border: none;
}
.language-switcher li a:hover {
    text-decoration: underline;
}
.language-switcher li a:hover,
.language-switcher li a {
    color: var(--bs-dark-blue);
}
.topbar-nav {
    list-style: none;
    margin: 0;
    padding: 0;
}
.topbar-nav li {
    display: inline-block;
    margin-right: 25px;
}
.topbar-nav li:after {}
.header-search {
    background-color: transparent;
    left: 0;
    margin-left: auto;
    margin-right: auto;
    position: absolute;
    right: 0;
    top: 100%;
    width: 100%;
    z-index: 1;
    padding: 1.5rem .5rem;
}
.header-search .input-group {
    max-width: 20rem;
    margin-left: auto;
    margin-right: auto;
}
.header-search .form-control {
    border-left: none;
    border-right: none;
}
.header-search .form-control:focus {
    outline: 0;
    box-shadow: none;
}
.header-search .input-group-text {
    padding-top: 0;
    padding-bottom: 0;
    background-color: var(--bs-body-bg);
    border-radius: 0;
}
.header-search .input-group-text:focus {
}
@media (max-width: 991.98px) {
    .header-search .collapse:not(.show) {
        display: none;
        pointer-events: none;
    }
}
@media (min-width: 992px) {
    .header-search {
        position: relative;
        width: auto;
        padding-top: 0;
        padding-bottom: 0;
    }
    .header-search .collapse {
        display: block !important;
        overflow: visible;
    }
    .header-search .input-group {
        max-width: 250px;
    }
    .header-search .form-control {
        border-radius: 0;
        font-size: 16px;
    }
}
.swiper-coverflow {
    padding-top: 3rem;
    padding-bottom: 3rem;
    --swiper-pagination-bullet-width: 20px;
    --swiper-pagination-bullet-height: 20px;
    --swiper-pagination-bottom: -6px;
}