/* Boost Health Club */

/* Animationer */
@import url('/resources/scripts/aos/2.3.1/aos.css');

/* Typsnitt */
@import url('https://fonts.googleapis.com/css2?family=Chakra+Petch:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

/* ==========================================================================
Generellt
========================================================================== */
:root {
    /* 	Colors */
    --primary-color: 193, 151, 102;
    --primary-dark-color: 152, 114, 80;

    --black-color: 17, 17, 17;
    --gray-dark-color: 58, 58, 58;
    --gray-color: 105, 105, 105;
    --gray-light-color: 249, 241, 238;
    --white-color: 255, 255, 255;

    --green-color: 59, 113, 53;

    /* 	Layout  */
    --col-padding: 5rem;
    --menu-height: 9rem;
    --menu-height-scrolled: 9rem;
    --section-width: 150rem;

    /* 	Typography */
    --base-size: 1.6rem;

    /* 	Mobile nav */
    --activate-mobile-menu: 1024;
    --mobile-menu-height: 6rem;
    --mobile-menu-bg: var(--gray-dark-color);
    --menu-color: var(--white-color);
}

@media only screen and (max-width: 580px) {
    :root {
        --base-size: 1.5rem;
    }
}

/* Layout
========================================================================== */
.section-block {
    padding: 8rem 5rem;
}

/* Paddings */
.p-0 .section-block,
.p-0:not(.section-wrapper) {
    padding: 0;
}

.p-2 .section-block,
.p-2:not(.section-wrapper) {
    padding: 2rem;
}

.p-4 .section-block,
.p-4:not(.section-wrapper) {
    padding: 4rem;
}

.pt-0 .section-block,
.pt-0:not(.section-wrapper) {
    padding-top: 0;
}

.pb-0 .section-block,
.pb-0:not(.section-wrapper) {
    padding-bottom: 0;
}

.pb-2 .section-block,
.pb-2:not(.section-wrapper) {
    padding-bottom: 2rem;
}

.pl-0 .section-block,
.pl-0:not(.section-wrapper) {
    padding-left: 0;
}

.pr-0 .section-block,
.pr-0:not(.section-wrapper) {
    padding-right: 0;
}

.pr-1 .section-block,
.pr-1:not(.section-wrapper) {
    padding-right: 1rem;
}

/* Margins */
.mb-3 {
    margin-bottom: 3rem;
}

/* Bredder */
.mw-none .section-block-wrapper {
    max-width: none;
}

/* Ovrigt */
.justify-center {
    justify-content: center;
}

@media only screen and (max-width: 1024px) {
    .section-block {
        padding: 8rem 3rem;
    }
}

@media only screen and (max-width: 580px) {
    .section-block {
        padding: 3rem 2rem;
    }
}

/* Text och typsnitt
========================================================================== */
body {
    font-family: "Lato", sans-serif;
}

/* Rubriker */
.section-title {
    padding-bottom: 0.5em;
    font-size: 3.8rem;
    font-weight: 400;
    line-height: 1.2;
    font-family: "Chakra Petch", sans-serif;
}

.small-title {
    padding-bottom: .4em;
    font-size: 2.4rem;
    font-weight: 400;
    line-height: 1.4;
    font-family: "Chakra Petch", sans-serif;
}

.text-label {
    padding-bottom: .5em;
    font-size: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ingress {
    font-size: calc(var(--base-size)* 1.2)
}

/* Brodtext och lankar */
p,
li {
    color: rgb(var(--gray-dark-color));
}

a {
    font-size: var(--base-size);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Listor */
.list-styled {
    padding-left: 2rem;
}

.list-styled li::marker {
    color: rgb(var(--primary-color));
}

/* Ovriga klasser */
.text-block {
    max-width: 70rem;
}

.text-block-center {
    max-width: 70rem;
    margin-left: auto;
    margin-right: auto;
}

.text-center {
    text-align: center;
}

.text-bold {
    font-weight: 700;
}

.text-italic {
    font-style: italic;
}

@media only screen and (max-width: 1300px) {
    .section-title {
        font-size: 3.5rem;
    }

    .small-title {
        font-size: 2.2rem;
    }
}

@media only screen and (max-width: 580px) {
    .section-title {
        font-size: 2.8rem;
    }
}

/* Knappar och speciella lankar
========================================================================== */
.btn-wrapper {
    margin-top: 2rem;
}

.btn-wrapper.center {
    text-align: center;
}

/* Knappar */
.btn,
.ContactSubmit {
    min-width: 15rem;
    padding: 1.2rem 2.5rem;
    margin: 1rem 2rem 0 0;
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    border: 1px solid;
    transition: all .4s ease;
}

.btn:hover {
    text-decoration: none;
}

.btn::after,
.arrow-link::after {
    content: ' \f061';
    display: inline-block;
    margin-left: 1rem;
    font-weight: 400;
    font-family: 'Font Awesome 5 Pro';
    color: rgb(var(--primary-color));
    transition: transform .4s ease;
}

.btn:hover::after,
.arrow-link:hover::after {
    transform: translateX(5px);
    transition: transform .4s ease;
}

.btn-white-filled,
.ContactSubmit {
    color: rgb(var(--black-color));
    border-color: rgb(var(--white-color));
    background-color: rgb(var(--white-color));
}

.btn-white-filled:hover,
.ContactSubmit:hover {
    color: rgb(var(--white-color));
    border-color: rgb(var(--white-color));
    background-color: transparent;
}

.btn-primary-filled {
    color: rgb(var(--white-color));
    border: none;
    background: linear-gradient(to bottom right,
            rgb(var(--primary-color)),
            rgb(var(--primary-dark-color)),
            rgb(var(--primary-color)),
            rgb(var(--primary-dark-color)));
}

.btn-primary-filled::after {
    color: rgb(var(--white-color));
}

/* Arrow link */
.arrow-link {
    margin: 1rem 2rem 0 0;
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
}

/* Cirkelikon */
.circle-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 4rem;
    height: 4rem;
    margin: .5rem;
    font-size: 0;
    clip-path: polygon(25% 0%, 75% 0%, 100% 25%, 100% 75%, 75% 100%, 25% 100%, 0% 75%, 0% 25%);
    color: rgb(var(--white-color));
    background-color: rgb(var(--primary-color));
    text-decoration: none;
    transition: .3s ease;
}

.circle-icon:hover {
    background-color: rgb(var(--gray-dark-color));
}

.circle-icon em:before,
.circle-icon i:before {
    font-size: 1.5rem;
}

/* Animation knapp */
.bouncing-btn::after {
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(0);
    }

    40% {
        transform: translateX(10px);
    }

    60% {
        transform: translateX(5px);
    }
}

/* Farger
========================================================================== */
/* Bakgrunder */
.bg-black {
    background-color: rgb(var(--black-color));
}

.bg-gray-light {
    background-color: rgb(var(--gray-light-color));
}

.bg-gray-dark {
    background-color: rgb(var(--gray-dark-color));
}

.bg-primary {
    background-color: rgb(var(--primary-color));
}

.bg-primary-transparent {
    background-color: rgb(var(--primary-color), .8);
}

.bg-primary-dark {
    background-color: rgb(var(--primary-dark-color));
}

.bg-green {
    background-color: rgb(var(--green-color));
}

.bg-gradient {
    background: linear-gradient(to bottom right,
            rgb(var(--primary-color)),
            rgb(var(--primary-dark-color)),
            rgb(var(--primary-color)),
            rgb(var(--primary-dark-color)));
}

.gradient-white-gray-dark {
    background-image: linear-gradient(to bottom, rgb(var(--white-color)) 50%, rgb(var(--gray-dark-color)) 50%);
}

/* Text */
.text-primary {
    color: rgb(var(--primary-color));
}

.text-white {
    color: rgb(var(--white-color));
}

/* Grafiska element
========================================================================== */
/* Object position */
.of-wrapper .op-50-20 {
    object-position: 50% 20%;
}

.of-wrapper .op-50-30 {
    object-position: 50% 30%;
}

.of-wrapper .op-50-45 {
    object-position: 50% 45%;
}

.of-wrapper .op-100-50 {
    object-position: 100% 50%;
}

/* Badge */
.badge-wrapper {
    position: relative;
}

.badge {
    z-index: 2;
    position: absolute;
    top: 1rem;
    right: 0;
    padding: 1rem 1.5rem;
    font-size: 1.5rem;
    text-transform: uppercase;
    border-radius: 0 .5rem .5rem 0;
    transition: .2s ease;
}

.badge i {
    font-size: 2rem;
}

.badge:hover {
    transform: scale(110%);
}

/* Filter */
.filter-grayscale {
    filter: grayscale();
}

.filter-blur {
    filter: blur(1px);
}

/* Bakgrundsbilder och videos
========================================================================== */
.bg-image {
    position: relative;
    overflow: hidden;
}

.bg-image-wrapper {
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Cards
========================================================================== */
.cards-wrapper {
    display: flex;
    flex-wrap: wrap;
}

.cards-wrapper.justify-center {
    justify-content: center;
}

.cards-wrapper .card-item {
    text-decoration: none;
}

/* Bredder */
.cards-wrapper.w-25 .card-item {
    width: calc((100% / 4) - 2rem);
    margin: 1rem;
}

.cards-wrapper.w-33 .card-item {
    width: calc((100% / 3) - 2rem);
    margin: 1rem;
}

.cards-wrapper.w-50 .card-item {
    width: calc((100% / 2) - 2rem);
    margin: 1rem;
}

.cards-wrapper.w-100 .card-item {
    width: 100%;
    margin: 0 0 1rem;
}

@media only screen and (max-width: 1200px) {

    /* Bredder */
    .cards-wrapper.w-33 .card-item {
        width: calc((100% / 2) - 2rem);
    }
}

@media only screen and (max-width: 750px) {

    /* Bredder */
    .cards-wrapper.w-33 .card-item,
    .cards-wrapper.w-50 .card-item,
    .cards-wrapper.w-100 .card-item {
        width: 100%;
        margin: 0 0 1rem;
    }

    /* Paddings */
    .cards-wrapper .p-4 {
        padding: 2rem;
    }
}

/* Logos 1 */
.logos-1 .card-item {
    text-align: center;
    align-content: center;
}

.logos-1 img {
    max-width: 100%;
    max-height: 10rem;
    filter: grayscale() opacity(.8);
    transform: scale(.94);
    transition: 0.2s ease-in-out;
}

.logos-1 img:hover {
    opacity: 1;
    filter: none;
    transform: scale(1);
}

@media only screen and (max-width: 868px) {
    .logos-1 img {
        max-height: 8rem;
    }
}

/* Card 1-1 */
.card-1-1 .card-item {
    position: relative;
    min-height: calc(70vh / 2 - 2rem);
}

.card-1-1 .octagon {
    align-content: center;
    clip-path: polygon(25% 0%, 75% 0%, 100% 25%, 100% 75%, 75% 100%, 25% 100%, 0% 75%, 0% 25%);
}

@media only screen and (max-width: 580px) {
    .card-1-1 .card-item {
        padding: 4rem 2rem;
        min-height: calc(50vh / 2 - 2rem);
    }
}

/* Card 2-4 */
.card-2-4 .card-item {
    display: flex;
    margin: 0 2rem;
}

.card-2-4 .small-title:hover {
    text-decoration: underline;
}

.card-2-4 .card-header {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 3rem;
    height: 4rem;
    border-radius: 50%;
}

.card-2-4 .card-header i {
    font-size: 3rem;
}

.card-2-4 .card-body {
    flex: 1 1 0px;
    padding: 0 2rem;
    align-content: center;
}

@media only screen and (max-width: 580px) {
    .card-2-4 .card-header i {
        font-size: 2.2rem;
    }

    .card-2-4 .small-title {
        font-size: 1.8rem;
    }
}

/* Card 3-5 */
.card-3-5 .card-item {
    position: relative;
    height: 70rem;
    max-height: 60vh;
}

.card-3-5 .image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.card-3-5 .image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(var(--black-color), .4);
}

.card-3-5 .card-body,
.card-3-5 .card-footer {
    z-index: 1;
    position: relative;
}

/* Split wrapper
========================================================================== */
.split-wrapper {
    display: flex;
    flex-wrap: wrap;
}

.split-wrapper.reverse {
    flex-direction: row-reverse;
}

.split-content {
    width: 50%;
    padding: 5rem;
}

.split-image {
    width: 50%;
}

/* Centrera content */
.split-wrapper .align-center {
    align-self: center;
}

/* Bredder & hojder */
.split-wrapper .w-35 {
    width: 35%;
}

.split-wrapper .w-65 {
    width: 65%;
}

/* Overlay */
.split-image.overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(var(--primary-color), .3);
    filter: brightness(110%);
}

/* Bild pa split-image */
.split-image .image-container {
    z-index: 1;
    position: absolute;
    left: 7rem;
    bottom: 0
}

.split-image .image-container img {
    width: 20vw;
    min-width: 20vw;
}

@media screen and (max-width: 1024px) {

    .split-wrapper,
    .split-wrapper.reverse {
        flex-direction: column;
    }

    .split-content {
        width: 100%;
        padding: 0 0 3rem;
    }

    .bg-gray-dark .split-content,
    .bg-primary .split-content {
        padding: 3rem;
    }

    .split-image {
        width: 100%;
    }

    /* Centrera content */
    .split-wrapper .align-center {
        align-self: flex-start;
    }

    /* Bredder */
    .split-wrapper .w-35,
    .split-wrapper .w-65 {
        width: 100%;
    }

    /* Split i full-width sektion */
    .mw-none .split-content,
    .full-width .split-content {
        padding: 8rem 3rem 5rem;
    }

    .mw-none.pl-0 .split-content {
        padding: 0 3rem 3rem;
    }

    /* Bild pa split-image */
    .split-image .image-container img {
        width: 35vw;
        min-width: 35vw;
    }
}

@media screen and (max-width: 580px) {

    .mw-none .split-content,
    .full-width .split-content {
        padding: 5rem 2rem 3rem;
    }

    .mw-none.pl-0 .split-content {
        padding: 0 2rem 3rem;
    }

    .bg-gray-dark .split-content,
    .bg-primary .split-content {
        padding: 3rem 2rem;
    }
}

/* Modal som öppnas automatiskt
========================================================================== */
body:not(.EditMode) .section-auto-modal {
    display: none;
    z-index: 9;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(var(--black-color), .7);
}

body:not(.EditMode) .section-auto-modal .section-block {
    position: fixed;
    top: 50%;
    left: 50%;
    width: calc(100% - 4rem);
    max-width: 75rem;
    max-height: 75vh;
    padding: 4rem;
    border-radius: 0;
    overflow: auto;
    background: linear-gradient(to bottom right, rgb(var(--primary-color)), rgb(var(--primary-dark-color)), rgb(var(--primary-color)), rgb(var(--primary-dark-color)));
    transform: translate(-50%, -50%);
}

.section-auto-modal .close-modal {
    position: absolute;
    top: 1rem;
    right: 2rem;
    font-size: 3rem;
    cursor: pointer;
}

.section-auto-modal .close-modal i {
    color: rgb(var(--white-color));
}

/* Formular */
.section-auto-modal .ContactForm p {
    color: rgb(var(--white-color));
}

@media only screen and (max-width: 450px) {
    body:not(.EditMode) .section-auto-modal .section-block {
        padding: 3rem 2rem;
    }
}

/* Popup-notis
========================================================================== */
.EditMode .popup-wrapper {
    display: none;
}

.popup-wrapper {
    z-index: 8;
    position: fixed;
    bottom: 3rem;
    right: 3rem;
}

/* Knappar */
.popup-button {
    position: relative;
    width: 5rem;
    height: 5rem;
    background: rgb(var(--green-color));
    border-radius: 50%;
    box-shadow: 0 0 3rem rgba(15, 36, 47, .3);
    cursor: pointer;
}

.popup-button i {
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 2.8rem;
    transform: translate(-50%, -50%);
    transition: .3s ease;
    color: rgb(var(--white-color));
}

.popup-wrapper .popup-button .icon-open,
.popup-wrapper.opened .popup-button .icon-close {
    transform: translate(-50%, -50%) scale(1);
}

.popup-wrapper.opened .popup-button .icon-open,
.popup-wrapper .popup-button .icon-close {
    transform: translate(-50%, -50%) scale(0);
}

/* Innehåll */
.popup-window {
    opacity: 0;
    visibility: hidden;
    position: fixed;
    right: 0;
    bottom: 6rem;
    max-width: 45rem;
    max-height: calc(100vh - 12rem);
    padding: 4rem;
    margin: 0 2rem;
    background: rgb(var(--green-color));
    border-radius: 2rem;
    box-shadow: 0 0 3rem rgba(15, 36, 47, .3);
    overflow: auto;
    transition: opacity .3s ease, bottom .3s ease;
}

.popup-image-wrapper {
    max-width: 20rem;
    margin: auto;
    margin-bottom: 1rem;
}

.popup-wrapper.opened .popup-window {
    opacity: 1;
    visibility: visible;
    display: block;
    bottom: 10rem;
}

.icon-close-popup {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 2.5rem;
    cursor: pointer;
    color: rgb(var(--white-color));
}

@media only screen and (max-width: 450px) {
    .popup-window {
        padding: 2rem 3rem 2rem 2rem;
    }

    .icon-close-popup {
        top: 1rem;
    }
}



/* Header / Navigation
========================================================================== */
/* Dolj hem */
body:not(.EditMode) header .TemplateMenu>li:nth-child(1) {
    display: none;
}

header {
    border-bottom: 1px solid rgb(var(--gray-light-color));
}

header:not(.scrolled) {
    background-color: transparent;
    border-bottom: 1px solid transparent;
}

header .container {
    height: var(--menu-height);
    max-width: none;
}

/* Header logo */
header .header-logo {
    align-self: flex-start;
}

header .header-logo img {
    padding: 1rem 0;
    transition: .5s ease;
}

header:not(.scrolled) .header-logo img {
    max-height: 15rem;
}

.header-logo {
    margin: 0 auto 0 0;
}

/* Nav */
.TemplateMenu a {
    font-size: 1.4rem;
    font-weight: 400;
    color: rgb(var(--white-color));
    text-decoration: none;
}

header.scrolled:not(.mobile-menu) .TemplateMenu>li>a:not(:hover) {
    color: rgb(var(--black-color));
}

/* CTA  */
.header-cta-wrapper {
    z-index: 9;
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 0;
    margin: 0 0 0 4rem;
    list-style: none;
}

.header-cta-wrapper .btn {
    min-width: unset;
    padding: 1.5rem 2rem;
    margin: 0;
    line-height: 1;
    white-space: nowrap;
}

.header-cta-wrapper .btn:hover {
    transform: scale(105%);
}

.header-cta-wrapper .btn::after {
    display: none;
}

header.scrolled .header-cta-wrapper .btn,
header.active-menu .header-cta-wrapper .btn {
    color: rgb(var(--white-color));
    border-color: rgb(var(--black-color));
    background: rgb(var(--black-color));
}

/* Mobilmeny */
.mobile-menu .TemplateMenu {
    text-align: center;
}

.mobile-menu.scrolled:not(.active-menu) .hamburger-inner,
.mobile-menu.scrolled:not(.active-menu) .hamburger-inner::after,
.mobile-menu.scrolled:not(.active-menu) .hamburger-inner::before {
    background-color: rgb(var(--black-color));
}

@media only screen and (max-width: 580px) {

    /* CTA  */
    .header-cta-wrapper .btn {
        padding: 1rem 1.5rem;
    }

    header:not(.scrolled) .header-logo img {
        max-height: 10rem;
    }
}

/* ==========================================================================
Startsida
========================================================================== */

/* Top-section
========================================================================== */
.top-section {
    margin-top: calc(-1 * var(--menu-height));
    background-color: rgb(var(--black-color), .7);
}

.top-section .section-block {
    display: flex;
    align-items: center;
    min-height: 75vh;
    padding: 13rem 4rem;
}

.top-section .section-block-wrapper {
    width: 100%;
}

.top-section .text-block {
    max-width: 85rem;
    margin-top: 10rem;
}

.top-section .section-title {
    font-size: 5rem;
    padding-bottom: 1rem;
}

.top-section p {
    max-width: 65rem;
}

.offer-wrapper {
    max-width: 26rem;
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 2rem;
}

@media only screen and (max-width: 1024px) {
    .top-section .section-block {
        padding: 10rem 3rem 8rem 3rem;
    }

    .top-section .section-title {
        font-size: 3.8rem;
    }
}

@media only screen and (max-width: 580px) {
    .top-section .section-block {
        padding: 10rem 2rem 5rem;
        align-items: end;
    }

    .top-section .section-title {
        font-size: 2.8rem;
    }

    .offer-wrapper {
        position: relative;
        max-width: 20rem;
        padding-bottom: 0;
        float: right;
    }
}

/* Tjanster
========================================================================== */
.section-services .section-block {
    padding: 1rem;
}

@media only screen and (max-width: 1100px) {
    .section-services .section-block {
        padding: 2rem;
    }

    .section-services .card-3-5 .card-item {
        width: 100%;
        margin: 0 0 2rem;
    }
}

@media only screen and (max-width: 580px) {
    .section-services .section-block {
        padding: 1rem;
    }

    .section-services .card-3-5 .card-item {
        width: 100%;
        margin: 0 0 1rem;
    }
}

/* Text-divider
========================================================================== */
.section-text-divider .section-block {
    padding-top: 15rem;
    padding-bottom: 15rem;
}

.section-text-divider .col-0 {
    width: calc(35% - 1.5rem);
    padding-right: 5rem;
}

.section-text-divider .col-1 {
    width: 65%;
    padding-left: 0;
}

.section-text-divider.bg-primary .arrow-link::after {
    color: rgb(var(--white-color));
}

@media only screen and (max-width: 1024px) {
    .section-text-divider .section-block {
        padding-top: 10rem;
        padding-bottom: 10rem;
    }

    .section-text-divider .col-0 {
        width: 100%;
        padding-right: 0;
    }

    .section-text-divider .col-1 {
        width: 100%;
    }
}

@media only screen and (max-width: 580px) {
    .section-text-divider .section-block {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }
}

/* Value
========================================================================== */
.section-value .section-block {
    padding: 2rem 0;
}

@media only screen and (max-width: 1024px) {
    .section-value .section-block {
        padding: 0;
    }
}

/* Omdomen
========================================================================== */
.section-scroll {
    overflow: hidden;
}

.section-scroll .mobile {
    display: none;
    padding: 3rem 0 2rem 2rem;
}

/* Slider */
.scroll-wrapper.cards-wrapper {
    margin-bottom: 2rem;
}

.scroll-wrapper.cards-wrapper .slick-list {
    width: 100%;
    overflow: visible;
}

.scroll-wrapper.cards-wrapper .slick-track {
    display: flex;
}

.scroll-wrapper.cards-wrapper .card-item {
    display: flex;
    height: auto;
    margin: 0 2rem 0 0;
    transition: all .3s ease;
}

.scroll-wrapper.cards-wrapper .card-item[aria-hidden="true"] {
    opacity: .5;
}

/* Card item */
.scroll-wrapper .card-item {
    display: flex;
    flex-direction: column;
    padding: 5rem;
}

/* Slick Arrow */
.scroll-wrapper .slick-arrow {
    position: absolute;
    top: auto;
    bottom: 0;
    width: 9rem;
    height: 6rem;
    background-color: rgb(var(--gray-dark-color));
    opacity: 100%;
}

.scroll-wrapper .slick-arrow::after {
    font-weight: 300;
    color: rgb(var(--white-color));
}

.scroll-wrapper .slick-next {
    right: -5rem;
}

.scroll-wrapper .slick-prev {
    display: none !important;
}

@media only screen and (max-width: 1024px) {
    .section-scroll .section-block {
        padding-top: 2rem;
    }

    .scroll-wrapper .slick-next {
        right: -4rem;
    }

    .scroll-wrapper .card-item {
        padding: 3rem;
    }
}

@media only screen and (max-width: 750px) {
    .scroll-wrapper.cards-wrapper .card-item {
        margin: 0;
    }

    .section-scroll .mobile {
        display: block;
    }

    .scroll-wrapper.cards-wrapper .card-item:first-child {
        display: none;
    }

    .scroll-wrapper.cards-wrapper .card-item[aria-hidden="true"] {
        opacity: 100%;
    }

    .scroll-wrapper .card-item {
        padding: 2rem;
    }

    .scroll-wrapper .slick-next {
        right: -3rem;
    }
}

/* CTA
========================================================================== */
.section-cta .col-block {
    padding: 10rem 5rem;
}

body:not(.EditMode) .section-cta .col-1 {
    clip-path: polygon(30% 0%, 100% 0%, 100% 100%, -0% 100%);
    background-color: rgb(var(--gray-color));
    padding-left: 20rem;
}

.section-cta .col-1 .text-block-center {
    max-width: 50rem;
}

@media only screen and (max-width: 1024px) {
    .section-cta .col-block {
        padding: 8rem 3rem;
    }
}

@media only screen and (max-width: 980px) {
    .section-cta .section-block-wrapper {
        flex-direction: column-reverse;
    }

    body:not(.EditMode) .section-cta .col-1 {
        clip-path: none;
        padding: 8rem 2rem;
    }
}

@media only screen and (max-width: 580px) {

    .section-cta .col-block,
    body:not(.EditMode) .section-cta .col-1 {
        padding: 5rem 2rem;
    }
}

/* ==========================================================================
Undersidor
========================================================================== */

/* Hero - Grundkod
========================================================================== */
.hero {
    display: flex;
    align-items: flex-end;
    min-height: 55vh;
    padding-top: var(--menu-height);
    margin-top: calc(-1 * var(--menu-height));
    background-color: rgb(var(--black-color), .5);
}

.hero .section-block {
    width: 100%;
}

.hero .section-title {
    font-size: 5.5rem;
    color: rgb(var(--white-color));
}

@media only screen and (max-width: 580px) {
    .hero {
        min-height: 40rem;
    }

    .hero .section-title {
        font-size: 4rem;
    }
}

/* ==========================================================================
Undersida: Medlemskap
========================================================================== */
.split-slider .slick-list {
    width: 100%;
}

.split-slider .slick-list,
.split-slider .slick-track,
.split-slider .split-image {
    height: 100%;
}

@media only screen and (max-width: 580px) {
    .section-prices .text-block-center.text-center {
        text-align: left;
    }
}

/* ==========================================================================
Undersida: Vart team
========================================================================== */
.section-team .card-3-5 .card-item {
    display: flex;
}

.section-team .card-3-5 .card-body {
    align-self: end;
    width: 100%;
    padding: 2rem;
}

.section-team .card-3-5 .card-body .arrow-link {
    font-size: 1.2rem;
}

.section-team .card-3-5 .card-body .arrow-link::after {
    color: rgb(var(--white-color));
}

.section-team .card-3-5 .image-wrapper::after {
    background: none;
}

@media only screen and (max-width: 1024px) {
    .section-team .section-block {
        padding: 3rem;
    }
}

@media only screen and (max-width: 580px) {
    .section-team .section-block {
        padding: 1rem;
    }

    .section-team .card-3-5 .card-item {
        max-height: 70vh;
    }
}

/* Bli en del av Boost teamet
========================================================================== */
.section-apply .section-block-wrapper {
    justify-content: space-between;
    align-items: flex-start;
}

.section-apply .col-1 {
    max-width: 50%;
    width: 60rem;
    padding: 4rem;
    background: linear-gradient(to bottom right, rgb(var(--primary-color)), rgb(var(--primary-dark-color)), rgb(var(--primary-color)), rgb(var(--primary-dark-color)));
}

.section-apply .ContactForm p {
    color: rgb(var(--white-color));
}

@media only screen and (max-width: 980px) {
    .section-apply .col-1 {
        max-width: 100%;
        width: 100%;
    }
}

@media only screen and (max-width: 580px) {
    .section-apply .col-1 {
        padding: 2rem;
    }
}

/* ==========================================================================
Undersida: Behandlingar
========================================================================== */
.section-treatment .card-3-5 .card-item {
    max-height: 45rem;
    align-content: end;
}

.section-treatment .card-3-5 .text-block {
    align-content: center;
}

.section-treatment .card-3-5 .image-wrapper::after {
    background: rgba(var(--black-color), .2);
}

@media only screen and (max-width: 1200px) {
    .section-treatment {
        background: none;
    }

    .section-treatment .section-block {
        padding-bottom: 5rem;
    }
}

@media only screen and (max-width: 1024px) {
    .section-evelina .split-wrapper {
        flex-direction: column-reverse;
    }
}

/* ==========================================================================
Undersida: Kontakt
========================================================================== */
.section-contact .section-block {
    padding: 5rem;
}

.section-map .col-block {
    background-color: rgb(var(--gray-dark-color));
}

.section-map .col-1 {
    align-content: center;
    padding: 5rem;
}

@media only screen and (max-width: 1024px) {
    .section-contact .section-block {
        padding: 3rem;
    }
}

@media only screen and (max-width: 980px) {
    .section-map .section-block-wrapper {
        flex-direction: column-reverse;
    }

    .section-map .col-1 {
        padding: 3rem;
    }
}

@media only screen and (max-width: 750px) {
    .section-contact .card-2-4 .card-item {
        width: 100%;
        margin: 1rem 0;
    }
}

@media only screen and (max-width: 580px) {
    .section-contact .section-block {
        padding: 2rem;
    }

    .section-contact .card-2-4 .card-item {
        margin: .5rem 0;
    }

    .section-map .col-1 {
        padding: 2rem;
    }
}

/* ==========================================================================
Footer
========================================================================== */
footer {
    padding: 0 5rem;
    background: rgb(var(--gray-light-color));
}

.footer-container {
    max-width: none;
}

/* Footer top */
.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 8rem 0;
}

.footer-menu {
    width: 20%;
}

.footer-menu-large {
    width: 40%;
}

.footer-top img {
    max-width: 12rem;
}

.footer-submenu {
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-menu-large .section-title {
    max-width: 50rem;
}

.footer-top .btn-wrapper {
    margin-top: 1rem;
}

.footer-top a {
    text-decoration: none;
    transition: .2s ease;
}

.footer a:not(.circle-icon, .arrow-link):hover {
    color: rgb(var(--primary-color));
}

.footer .socials {
    text-align: right;
    width: fit-content;
}

/* Footer bottom */
.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
    border-top: 1px solid rgb(var(--black-color), .5);
}

.footer-bottom p,
.footer-bottom a {
    font-size: 1.2rem;
    line-height: 1.6;
}

/* WebbEss Stamp  */
.footer .webbess-stamp {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.webbess-stamp img {
    width: 2.5rem;
    margin-left: 1rem;
    opacity: .6;
}

@media only screen and (max-width: 1024px) {
    .footer {
        padding: 0 3rem;
    }

    /* Footer top */
    .footer-top {
        padding: 6rem 0 0;
    }

    .footer-menu {
        width: 33%;
        margin: 0 0 5rem;
    }

    .footer-menu-large {
        width: 100%;
    }
}

@media only screen and (max-width: 680px) {
    .footer {
        padding: 0 2rem;
    }

    .footer-menu {
        width: 100%;
    }

    .footer .socials {
        margin-bottom: 2rem;
    }

    .footer .socials .footer-submenu {
        display: flex;
    }
}