/* Salong Stubben AB */

/* Typsnitt Open sans */
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700;800&display=swap");


/* ==========================================================================
Generellt 
========================================================================== */
:root {
    /* 	Layout  */
    --col-padding: 3rem;
    --menu-height: 8rem;
    --menu-height-scrolled: 8rem;

    /* 	Colors */
    --primary-color: 61, 76, 76;
    --secondary-color: 144, 100, 65;
    --accent-color: 202, 207, 193;

    --white-color: 255, 255, 255;
    --black-color: 17, 17, 17;

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

    /* 	Mobile nav */
    --activate-mobile-menu: 1000;
    --mobile-menu-height: 6rem;
    --mobile-menu-bg: 255, 255, 255;
}

/* Bakgrundsbild
========================================================================== */
.bg-image {
    position: relative;
}

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

/* Bakgrundsvideo
========================================================================== */
.bg-video {
    position: relative;
}

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

.bg-video-wrapper video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
}


/* Layout
========================================================================== */
.section-wrapper:not(.top-section, .hero) {
    background-color: #ecebe8;
}

.section-block {
    padding: 13rem 5rem;
}

.section-block-wrapper {
    max-width: 120rem;
}

/* Specifika paddings */
.pt-0 .section-block {
    padding-top: 0;
}

.pb-0,
.pb-0 .section-block {
    padding-bottom: 0;
}

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

.pb-20 .section-block {
    padding-bottom: 20rem;
}

/* Margins */
.mt-2 {
    margin-top: 2rem;
}

/* Specifika bredder */
.mw-1200 .section-block-wrapper {
    max-width: 120rem;
}

.mw-1500 .section-block-wrapper {
    max-width: 150rem;
}

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

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

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

    .pb-20 .section-block {
        padding-bottom: 10rem;
    }
}



/* Text och typsnitt
========================================================================== */
body {
    font-family: 'Open Sans', sans-serif;
}

/* Rubriker */
.text-label {
    position: relative;
    padding-bottom: 2rem;
    font-family: inherit;
    font-size: 1.4rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.section-title {
    padding-bottom: 2rem;
    font-family: inherit;
    font-size: 4.2rem;
    font-weight: 700;
    line-height: 1.2;
    color: rgb(var(--black-color));
}

.small-title {
    font-family: inherit;
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1.4;
    color: rgb(var(--black-color));
}



/* Brodtext och lankar */
p {
    font-weight: 400;
    color: #353535;
}

a {
    color: rgb(var(--primary-color));
    font-size: 1.6rem;
    font-weight: 400;
    text-decoration: none;
}

/* ovriga klasser */
.text-light {
    font-weight:400;
}
.text-center {
    text-align: center;
}

.text-block {
    max-width: 85rem;
    margin: 0 auto;
}

.smaller-text {
    font-size: 1.4rem;
}

.text-wrapper {
    max-width: 90rem;
    margin-bottom: 5rem;
}

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

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

/* Listor */
.styled-list {
    list-style: none;
}

ul.styled-list {
    padding-inline-start: 0rem;
}

.styled-list li {
    position: relative;
    font-size: 1.6rem;
}

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

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

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

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

    .text-label {
        font-size: 1.2rem;
    }

    p, li {
        font-size: 1.5rem;
    }
}

/* Knappar och speciella lankar
========================================================================== */

/* Knappar */
.btn {
    display: inline-block;
    min-width: 20rem;
    padding: 1.3rem 3rem;
    font-size: 1.3rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 3rem;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.btn::after {
    content: " \2023";
    display: inline-block;
    margin-left: 0.5rem;
    transition: transform 0.4s ease;
}

.btn:hover::after {
    transform: translateX(1rem);
    transition: transform 0.4s ease;
}

.btn-primary-filled {
    color: rgb(var(--white-color));
    border: 1px solid rgb(var(--primary-color));
    background-color: rgb(var(--primary-color));
}

.btn-wrapper {
    display: flex;
    margin-top: 3rem;
}

.btn-wrapper .btn:first-child {
    margin-right: 2rem;
}

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

@media only screen and (max-width: 550px) {
    .btn-wrapper {
        flex-direction: column;
    }

    .btn-wrapper .btn {
        max-width: none;
        width: 100%;
    }

    .btn-wrapper .btn:first-child {
        margin-right: 0;
        margin-bottom: 2rem;
    }
}

/* Cirkelikon */
.circle-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    padding: 0;
    margin: 0.5rem;
    font-size: 0;
    color: rgb(var(--white-color));
    text-decoration: none;
    border-radius: 50%;
    background-color: rgb(var(--primary-color));
    transition: 0.3s ease;
}

.circle-icon:hover {
    color: rgb(var(--white-color));
    background-color: rgb(var(--secondary-color));
}

.circle-icon i,
.circle-icon em {
    font-size: 0;
}

.circle-icon i:before,
.circle-icon em:before {
    font-size: var(--base-size);
}

/* Bouncing arrow */
.bouncing-arrow-wrapper {
    position: absolute;
    left: 50%;
    bottom: -2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 6rem;
    height: 6rem;
    border-radius: 50% 50% 0 0;
    background: #ECEBE9;
    transform: translatex(-50%);
}

.bouncing-arrow {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 5rem;
    height: 5rem;
    color: #fff;
    border-radius: 50%;
    background-color: rgb(var(--secondary-color));
}

.bouncing-arrow i {
    color: #fff;
    font-size: 3rem;
    font-weight: 500;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-0.7rem);
    }

    60% {
        transform: translateY(-0.3rem);
    }
}

@media only screen and (max-width: 480px) {
    .btn {
        display: block;
        width: 100%;
    }
}

body:not(.EditMode) .section-auto-modal {
    display: none;
    z-index: 9;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, .7);
}

.small-title-modal {
    font-family: inherit;
    font-size: 1.9rem;
    font-weight: 400;
    line-height: 1.4;
    color: rgb(var(--black-color));
}

body:not(.EditMode) .section-auto-modal .section-block {
    position: fixed;
    top: 50%;
    left: 50%;
    width: calc(100% - 4rem);
    max-width: 50rem;
    padding: 1rem;
    border-radius: 0;
    overflow: auto;
    background: white;
    transform: translate(-50%, -50%);
}

.section-auto-modal .section-block-wrapper {
    border: 1px solid #8b3d3d;
}

.section-auto-modal .split-content {
    padding: 0 0 0 5rem;
    align-content: center;
}

.section-auto-modal .close-modal {
    position: absolute;
    top: 1.8rem;
    right: 3rem;
    font-size: 3rem;
    color: #8b3d3d;
    cursor: pointer;
}

.section-auto-modal .section-title {
    color: rgb(var(--secondary-color));
    padding-bottom: 0;
}

.section-auto-modal .small-title {
    color: rgb(var(--secondary-color));
    padding-bottom: 1.5rem;
}

/* Snö */
.snowflakes-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    opacity: .5;
    pointer-events: none;
}

.fa-snowflake {
    color: #fff !important;
    position: absolute;
    top: -20px;
    animation: fall linear forwards;
}

@keyframes fall {
    to {
        transform: translateY(110vh);
    }
}

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

    .section-auto-modal .close-modal {
        top: 2rem;
        right: 3rem;
        color: rgb(var(--white-color));
    }
}


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

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

.bg-gray {
    background-color: rgb(242, 242, 242);
}

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

.bg-light {
    background-color: rgba(var(--primary-color), 0.3);
}

/* Textfarger */
.text-primary {
    color: rgb(var(--primary-color)) !important;
}

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


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

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

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

@media only screen and (max-width: 1340px) {
    .cards-wrapper.w-33 .card-item {
        width: calc((100% / 2) - 4rem);
    }
}

@media only screen and (max-width: 900px) {
    .cards-wrapper.w-33 .card-item {
        width: 100%;
        margin: 1rem 0;
    }
}

@media only screen and (max-width: 750px) {
    .cards-wrapper.w-50 .card-item {
        width: 100%;
        margin: 1rem 0;
    }

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


/* Cards 2 */
.cards-2 .card-item {
    padding: 4rem;
    border-radius: 1.2rem;
    transition: 0.2s ease-in-out;
    background-color: #fff;
    border: 5px solid rgb(var(--accent-color));
}

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

.cards-2 .icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 7rem;
    height: 7rem;
    padding: 2rem;
    margin-bottom: 3rem;
    text-align: left;
    border-radius: 2rem;
    background-color: #ecebe8;
}

.cards-2 .icon-wrapper i {
    color: rgb(var(--primary-color));
    font-size: 3.5rem;
}

.cards-2 .text-wrapper li,
.cards-2 .text-wrapper a {
    font-size: 1.5rem;
}

.cards-2 .small-title {
    margin-bottom: 2rem;
}

@media only screen and (max-width: 900px) {
    .cards-2 .card-item {
        padding: 2rem;
    }

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

    .cards-2 .text-wrapper li,
    .cards-2 .text-wrapper a {
        font-size: 1.4rem;
    }
}

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

.cards-5 .card-item {
    margin: 2rem;
    text-decoration: none;
    background-color: #f2f2f2 !important;
    border-radius: 2rem;
}

.cards-5 .card-item * {
    text-align: center;
}

.cards-5 .card-item:hover .icon-wrapper {
    transform: translateY(-1rem);
}

.cards-5 .text-wrapper {
    padding: 4rem 0 0;
}

.cards-5 .icon-wrapper {
    margin-top: -3rem;
    font-size: 3rem;
    color: rgb(var(--primary-color));
    transition: 0.4s all ease;
}

.cards-5 .far,
.cards-5 .fal {
    color: #3d4c4c;
    font-size: 7rem;
    font-weight: 600;
}

.contact-title {
    font-size: 2rem;
    text-transform: none;
    letter-spacing: 0;
}

@media only screen and (max-width: 980px) {
    .cards-5 .icon-wrapper {
        margin-top: -2rem;
    }

    .cards-5 .icon-wrapper .fal {
        font-size: 6rem;
    }
}

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

    .cards-5 .text-wrapper {
        padding: 3rem 0 0;
    }

    .cards-5 .icon-wrapper .fal {
        font-size: 4rem;
    }
}

@media only screen and (max-width: 345px) {
    .cards-wrapper.cards-5 .card-item {
        width: 100%;
        margin: 2rem 0;
    }
}

/* Cards 12 */
.cards-12 .card-item {
    position: relative;
    padding: 3rem 3rem 0;
    background-color: #f2f2f2;
}

.cards-wrapper.cards-12 .card-item {
    margin-top: 3rem;
}

.cards-12 .card-item::before {
    position: absolute;
    content: "";
    display: block;
    top: 4.2rem;
    left: 0;
    transform: translateY(-50%);
    border-style: solid;
    border-width: 9px 0 9px 15px;
    border-color: transparent transparent transparent #f2f2f2;
}

.cards-12 .image-wrapper {
    position: absolute;
    top: -2rem;
    right: 2rem;
    width: 12rem;
    height: 12rem;
    border-radius: 2rem;
    overflow: hidden;
}

.cards-12 .text-wrapper {
    padding-right: 0rem;
    max-width: 70%;
}

.cards-12 .small-title {
    padding-bottom: 0;
    font-size: 1.6rem;
}

.cards-12 .title {
    padding-bottom: 2rem;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.cards-12 a {
    display: block;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.cards-12 em {
    margin-right: 1rem;
    color: rgb(var(--primary-color));
}

@media only screen and (max-width: 420px) {
    .cards-12 .card-item {
        position: relative;
        padding: 3rem 2rem 0;
        background-color: #f2f2f2;
    }

    .cards-12 .text-wrapper {
        margin-top: 2rem;
        max-width: 90%;
    }
}

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

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

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

.split-image {
    width: 50%;
    border-radius: 3px;
}
/* Speciella bredder */
.split-wrapper .w-60 {
    width: 60%;
}

.split-wrapper .w-40 {
    width: 40%;
}
@media screen and (max-width: 1300px) {
    .split-content {
        padding: 3rem;
    }
}

@media screen and (max-width: 1000px) {
    .split-content {
        width: 100%;
    }

    .split-image {
        width: 100%;
        max-height: 35rem;
    }
}

@media screen and (max-width: 580px) {
    .split-wrapper {
        background: transparent;
    }

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


/* Parallax
========================================================================== */

/* Halvsektionsparallax */
.parallax-half {
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

.parallax-half .section-block {
    padding-top: 35rem;
    background-image: linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0),
            rgba(0, 0, 0, 0)
        ),
        linear-gradient(to top, white, white);
    background-size: 100% 50rem, 100% auto;
    background-position: center top, center 50rem;
    background-repeat: no-repeat;
}

@media screen and (max-width: 580px) {
    .parallax-half .section-block {
        padding-top: 15rem;
 
    }
}

@media only screen and (hover:none) {
    .parallax-half {
        background-attachment: scroll;
        background-position: center center;
    }
} 

/* 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(--secondary-color));
    border-radius: 50%;
    box-shadow: 0 0 3rem rgba(var(--black-color), .3);
    cursor: pointer;
}

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

.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: 2.5rem;
    margin: 0 2rem;
    background: rgb(var(--white-color));
    border-radius: 2rem;
    box-shadow: 0 0 3rem rgba(var(--black-color), .3);
    overflow: auto;
    transition: opacity .3s ease, bottom .3s ease;
}

.popup-window h3{
    font-size: 2.2rem;
}

.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;
}

.popup-wrapper .small-title {
    padding-bottom: 1rem;
}

.popup-wrapper img {
    margin-top: 1rem;
}

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

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

/* Header / Navigation
========================================================================== */
/* Logo */
.header-logo {
    flex-basis: 0;
    flex: 1 1 0px;
}

.header-logo img {
    max-width: 24rem;
}

/* nav */
nav.mainmenu a {
    color: #333;
    font-size: 1.3rem;
}

nav.mainmenu a:hover {
    color: rgb(var(--secondary-color));
}

/* CTA  */
.header-cta-wrapper {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-basis: 0;
    flex: 1 1 0px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.header-cta-wrapper .btn {
    min-width: unset;
    padding: 1rem 3rem;
    margin: 0 0.5rem;
}

.envelope {
    opacity: 0;
}

@media only screen and (max-width: 1000px) {
    header .container {
        padding: 0.5rem 2rem 0;
    }
}

@media only screen and (max-width: 500px) {
    .header-logo img {
        max-width: 15rem;
    }

    .header-cta-wrapper .btn {
        min-width: unset;
        padding: 0.5rem 1rem;
        margin: 0 1rem;
        right: 7rem;
        font-size: 1.1rem;
    }

    .mobile-menu .hamburger {
        margin: 0 0 0 1rem;
    }

    header .container {
        padding: 0.5rem 0.5rem 0 1rem;
    }
}

@media only screen and (max-width: 380px) {
    .envelope {
        opacity: 1;
    }

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

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

/* Top-section
========================================================================== */
.top-section {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    min-height: 95vh;
    margin-top: calc(-1 * var(--menu-height));
}

.top-section .section-block {
    padding-bottom: 10rem;
}

.top-section .section-block-wrapper {
    max-width: 70rem;
}

.top-section h1 {
    font-family: inherit;
    font-size: 6.2rem;
    font-weight: 700;
    line-height: 1.3em;
    padding-bottom: 0.3em;
    text-align: left;
}

@media only screen and (max-width: 1200px) {
    .top-section {
        min-height: 90vh;
    }

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

    .top-section h1 {
        font-size: 5rem;
    }
}

@media only screen and (max-width: 650px) {
    .top-section h1 {
        font-size: 4rem;
    }
}

@media only screen and (max-width: 400px) {
    .top-section h1 {
        font-size: 3rem;
    }
}

/* Sektion Header Gallery (.header-gallery)
========================================================================== */

.header-image-gallery {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.header-image-gallery > * {
    width: 25%;
    position: relative;
}

.header-image {
    background-color: #fff;
}

.header-image-1 {
    width: 40%;
    position: relative;
    top: -5rem;
    margin-left: -10%;
    transform: rotate(2deg);
}

.header-image-2 {
    width: 30%;
    margin-left: -10%;
    transform: rotate(-1deg);
}

.header-image-3 {
    z-index: 1;
}

.header-image-text {
    z-index: 2;
    padding: 1.5rem;
    transform: rotate(1deg);
    top: 2rem;
    margin-left: -5%;
}

.img-w-border {
    border: 0.5rem solid rgb(var(--accent-color));
    border-radius: 1.5rem;
}

@media only screen and (max-width: 1200px) {
    .header-image-gallery {
        flex-wrap: wrap;
    }

    .header-image-text {
        order: 0;
        width: 100%;
        margin: 0 10vw;
        top: 0;
    }

    .header-image {
        order: 1;
    }

    .header-image-1 {
        width: 50%;
    }

    .img-w-border {
        border-width: 0.75rem;
    }
}

@media only screen and (max-width: 700px) {
    .header-image-text {
        margin: 0 2rem;
    }

    .header-image {
        order: 1;
        width: 46%;
        margin: 0 1% 5rem;
    }

    .header-image-1 {
        width: 100%;
        order: 2;
        margin: 2rem 0 0rem;
    }
}

/* Sektion Omdomen (.section-reviews)
========================================================================== */
.section-reviews {
    background-image: url(/assets/images/klippning-man-2000.jpg);
    overflow: hidden;
}

.scroll-wrapper {
    padding: 2rem 0 5rem;
}

.scroll-wrapper .slick-list {
    overflow: visible;
}

.scroll-wrapper .card-item {
    margin: 0 1rem 0 0;
}

/* Review Widget */
.review-widget {
    position: relative;
    background-color: #fff;
    border-radius: 1rem;
    padding: 3rem;
}

/* slick knappar */
.scroll-wrapper .slick-arrow {
    position: absolute;
    top: auto;
    bottom: -1rem;
    width: 4rem;
    height: 4rem;
    font-size: 0;
    background-color: rgb(var(--primary-color));
    border: 1px solid rgb(var(--primary-color));
    border-radius: 50%;
    cursor: pointer;
    transition: 0.4s;
}

.scroll-wrapper .slick-arrow:not(.slick-disabled):hover,
.scroll-wrapper .slick-arrow:not(.slick-disabled):focus {
    background-color: transparent;
}

.scroll-wrapper .slick-arrow.slick-disabled {
    opacity: 0.5;
}

.scroll-wrapper .slick-prev {
    left: 0;
}

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

.scroll-wrapper .slick-prev:before,
.scroll-wrapper .slick-next:before {
    color: rgb(var(--secondary-color));
    font-size: 2rem;
    font-family: "Font Awesome 5 Pro";
}

.scroll-wrapper .slick-prev::before {
    content: "\f104";
}

.scroll-wrapper .slick-next::before {
    content: "\f105";
}

/* ==========================================================================
Undersidor 
========================================================================== */
.hero {
    height: auto;
    min-height: 40rem;
}

.title-wrapper {
    padding: 2rem 4rem;
    position: absolute;
    bottom: -3.5rem;
    left: 0;
    background: rgb(var(--primary-color));
    z-index: 2;
    min-width: 40rem;
    text-align: right;
    border-radius: 0rem 1rem 1rem 0rem;
}

.title-wrapper .title {
    font-size: 2rem;
    text-align: right;
    padding: 0;
    font-weight: 700;
    color: #fff;
}

.title-wrapper a {
    padding: 0;
    color: #fff;
    font-size: 1.3rem;
    text-align: right;
}

@media only screen and (max-width: 600px) {
    .title-wrapper {
        max-width: 100%;
        min-width: auto;
        width: 100%;
        bottom: 0;
        text-align: center;
        border-radius: 0rem 0rem 0rem 0rem;
    }

    .title-wrapper * {
        text-align: center !important;
        margin: 0 auto;
    }
}

@media screen and (max-width: 450px) {
    .hero {
        min-height: 30rem;
    }
}

/* Sektion Call to action
========================================================================== */

.section-cta .section-block,
.SubPage .section-cta .section-block {
    padding-bottom: 2rem;
    z-index: 1;
    position: relative;
}

.cta-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    padding: 4rem;
    text-align: left;
    background-color: #f2f2f2;
    border-radius: 2px;
}

.mt--5 .cta-wrapper {
    margin-top: -5rem;
}

.EditMode .cta-wrapper {
    transform: none;
}

.cta-content {
    max-width: 70rem;
    padding: 0 5rem 0 0;
}

.cta-wrapper .btn-wrapper {
    align-self: center;
    margin: 0;
}

.cta-title {
    padding-bottom: 1rem;
}

@media only screen and (max-width: 1000px) {
    .cta-wrapper {
        flex-wrap: wrap;
    }

    .cta-content {
        padding: 0 0 2rem;
    }
}

@media only screen and (max-width: 768px) {
    .cta-wrapper {
        padding: 3rem 2rem;
    }
}

/* ==========================================================================
Undersida: Behandlingar
========================================================================== */
.treatment .styled-list li {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px dotted rgb(var(--primary-color), 0.3);
    margin-bottom: 2rem;
}

/* ==========================================================================
Footer
========================================================================== */

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

.footer-container {
    max-width: 160rem;
    padding: 0 2rem;
    margin: 0 auto;
}

.footer :is(p, a) {
    color: rgba(var(--black-color), 0.7);
}

.footer a:hover {
    color: rgb(var(--black-color));
}

/* Footer top */
.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 8rem 2rem 4rem 2rem;
    border-bottom: 1px dotted rgb(var(--primary-color));
}

.footer-menu {
    width: 22%;
    margin: 1.5rem 0;
}

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

.footer .small-title {
    font-size: 1.8rem;
    font-weight: 400;
    color: rgb(var(--primary-color));
}

.footer p,
.footer a {
    font-size: 1.5rem;
}

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

/* Footer bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
}

.footer-bottom p {
    font-size: 1.4rem;
}

.footer-bottom .circle-icon {
    width: 3rem;
    height: 3rem;
    color: rgb(var(--white-color));
}

.footer-bottom em::before {
    font-size: 1.4rem;
}

/* WebbEss Stamp  */
.webbess-stamp {
    display: inline-flex;
    align-items: center;
    padding: 0;
    font-size: 1.4rem;
    font-weight: normal;
}

.webbess-stamp img {
    width: 3rem;
    margin-left: 1rem;
}

@media only screen and (max-width: 1024px) {
    /* Footer top */
    .footer-menu {
        width: 48%;
    }

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

    .footer-menu-large p {
        max-width: 55rem;
    }
}

@media only screen and (max-width: 750px) {
    /* Footer top */
    .footer-menu,
    .footer-menu-large {
        width: 100%;
    }

    /* Footer bottom */
    .footer-bottom {
        flex-direction: column-reverse;
        align-items: flex-start;
        padding: 2rem 0;
    }

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

@media only screen and (max-width: 450px) {
    /* Footer top */
    .footer-top {
        padding: 5rem 0 4rem 0;
    }

    /* Footer bottom */
    .footer-bottom {
        padding: 2rem 0;
    }
}
