/* Skinsy AB */

@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;500;600&family=Roboto:wght@100;300;400;500;700&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Lato:wght@100;300;400;700&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&display=swap');

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

    /* 	Colors */
    --primary-color: 219, 104, 224;
    --primary-medium-color: 236, 175, 240;
    --primary-light-color: 248, 227, 249;
    --primary-dark-color: 127, 85, 57;

    --black-color: 40, 30, 21;
    --gray-color: 150, 145, 141;
    --gray-dark-color: 85, 92, 102;
    --gray-light-color: 238, 238, 238;
    --white-color: 255, 255, 255;

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

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

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

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

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

.pt-2,
.pt-2 .section-block {
    padding-top: 2rem;
}

.pt-5 .section-block {
    padding-top: 5rem;
}

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

.py-0 .section-block {
    padding-top: 0;
    padding-bottom: 0;
}

.p-0 .section-block {
    padding: 0;
}

.pb-4 {
    padding-bottom: 4rem !important;
}

/* Speciella margins */
.mt-5 {
    margin-top: 5rem !important;
}

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

.mb-5 {
    margin-bottom: 5rem;
}

.mb-10 {
    margin-bottom: 10rem;
}

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

.mw-40 {
    max-width: 40rem;
}

.mw-1000 .section-block-wrapper {
    max-width: 100rem;
}

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

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

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

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

/* Rubriker */
.section-title {
    font-size: 4rem;
    line-height: 1.2;
    font-weight: 400;
    padding-bottom: 2rem;
    font-family: 'Playfair Display', serif;
    color: rgb(var(--black-color));
}

.small-title {
    font-size: 2rem;
    font-weight: 400;
    line-height: 1.4;
    padding-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
    color: rgb(var(--primary-color));
}

.text-label {
    font-family: 'Lato', sans-serif;
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 0.3rem;
    font-weight: 500;
    padding-bottom: 2rem;
    color: rgb(var(--black-color));
}

/* Brodtext och lankar */
p {
    font-weight: 400;
    color: rgb(var(--gray-dark-color));
}

a {
    font-size: inherit;
    font-weight: 400;
    text-decoration: underline;
    color: var(--primary-color);
}

a:hover {
    text-decoration: none;
}

.ingress {
    font-size: calc(var(--base-size) * 1.2);
    color: rgb(var(--black-color));
}

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

.text-block-center.mt-10 {
    margin-top: 10rem;
}

.text-block {
    max-width: 70rem;
}

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

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

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

.text-italic {

    font-family: 'Dancing Script', cursive;
}

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

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

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

    .section-title {
        font-size: 2.5rem;
    }

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

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

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

.btn-wrapper.multiple .btn:not(:last-child) {
    margin-right: 2rem;
}

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

.btn,
.ContactSubmit {
    display: inline-block;
    min-width: 18rem;
    padding: 1.4rem 2.5rem;
    font-weight: 400;
    font-size: 1.2rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.3rem;
    text-decoration: none;
    border-radius: 5rem;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
}

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

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

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

.btn-white-filled:hover {
    color: rgb(var(--black-color));
    border: 1px solid rgb(var(--gray-light-color));
    background-color: rgb(var(--gray-light-color));
}

.btn .fad {
    padding-right: 1rem;
    font-size: 2rem;
}

/* Arrow link */
.arrow-link {
    font-size: var(--base-size);
    padding-right: 1rem;
    color: rgb(var(--gray-dark-color));
}

.arrow-link::after {
    content: ' \f105';
    display: inline-block;
    margin-left: 1rem;
    font-weight: 400;
    font-family: 'Font Awesome 5 Pro';
    transition: transform .4s ease;
}

.arrow-link:hover::after {
    transform: translateX(1rem);
    transition: transform .4s ease;
}

.arrow-link.arrow-down:hover::after {
    transform: rotate(90deg) translateY(-1rem);
}

/* Bouncing arrow */
.bouncing-arrow-wrapper {
    position: absolute;
    left: 50%;
    bottom: 4rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 11rem;
    height: 11rem;
    background-color: rgb(var(--white-color));
    border-radius: 50%;
    transform: translateX(-50%);
}

.bouncing-arrow {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    background-color: rgb(var(--primary-color));
    text-decoration: none;
}

.bouncing-arrow i {
    color: rgb(var(--white-color));
    font-size: 2rem;
    font-weight: 300;

    transform: translatex(-50%);
    animation: bounce 2s infinite;
}

.arrow-animate {
    position: absolute;
    left: 50%;
    width: 9rem;
    transform: translateX(-50%);
}

@keyframes bounce {

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

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-3px);
    }
}

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

    .btn-wrapper.multiple .btn:not(:last-child) {
        margin-right: 0rem;
        margin-bottom: 2rem;
    }
}


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

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

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

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

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

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

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

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

.text-gray-dark,
.text-gray-dark li {
    color: rgb(var(--gray-dark-color));
}

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

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

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

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

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

/* Grafiska element
========================================================================== */

.box-shadow {
    box-shadow: 0 1rem 3rem rgba(var(--black-color), .1);
}

/* Ikoner */
.icon-citat {
    position: relative;
    z-index: 1;
    padding: 0 3.5rem;
}

.icon-citat::before,
.icon-citat::after {
    content: '\f10d';
    position: absolute;
    z-index: -1;
    font-weight: 900;
    font-size: 6rem;
    color: rgb(var(--primary-color), .3);
    font-family: 'Font Awesome 5 Pro';
    margin: -1rem 0 0 -3rem;
}

.icon-citat::after {
    content: '\f10e';
    margin: -1rem 0 0 -5rem;
}

.border-primary-medium {
    border: 5px solid rgb(var(--primary-medium-color));
}

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

    .icon-citat::before,
    .icon-citat::after {
        font-size: 4rem;
    }
}


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

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

.cards-wrapper.space-between {
    justify-content: space-between;
}

.cards-wrapper.align-center {
    align-items: center;
}

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

.card-item.h-20 .image-wrapper {
    display: flex !important;
    justify-content: center;

}

.h-20 img {
    height: 20rem;
}

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

.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-0 .card-item {
    width: calc((100% / 2) - 1rem);
    margin: 0.5rem;
}

.cards-wrapper.w-25 .card-item.mt--5 {
    margin-top: -5rem;
}

.cards-wrapper.w-25 .card-item.mb-5 {
    margin-bottom: 5rem;
}

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

    .cards-wrapper.w-25 .card-item.mt--5 {
        margin-top: 0rem;
    }

    .cards-wrapper.w-25 .card-item.mb-5 {
        margin-bottom: 0rem;
    }

    .cards-wrapper.w-25 .card-item {
        width: calc((100% / 2));
    }

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

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

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

/* Cards 1 */
.cards-1 .card-item {
    padding: 3rem 3rem 2rem;
    border-radius: 3px;
    background-color: rgb(var(--white-color));
    border-bottom: 5px solid rgb(var(--primary-color));
    box-shadow: 0 1rem 3rem rgb(var(--black-color), .1);
    transition: 0.3s ease-in-out;
}

.cards-1 .text-wrapper {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.cards-1 .small-title {
    color: rgb(var(--black-color));
}

.contact-section .cards-1 .card-item:hover {
    background-color: rgb(var(--primary-color), .1);
}

/* Cards 7 */
.cards-7 .card-item {
    border-radius: 3px;
    background-color: rgb(var(--white-color));
    border-bottom: 5px solid rgb(var(--primary-color));
    box-shadow: 0 1rem 3rem rgb(var(--black-color), .1);
    transition: 0.3s ease-in-out;
    overflow: hidden;
}

.cards-7 .text-wrapper {
    padding: 3rem 3rem 2rem;
}

.cards-7 .small-title {
    color: rgb(var(--black-color));
}

/* Cards 16 */
.cards-16 .card-item {
    border-radius: 1rem;
    position: relative;
    width: calc((100% / 2) - 2rem);
    margin: 0 1rem;
    padding: 20rem 2rem 2rem;
    background: rgb(var(--white-color));
}

.cards-16 .text-wrapper {
    z-index: 1;
    position: relative;
    height: 100%;
    padding: 2rem 3rem;
    background-color: rgb(var(--white-color));
}

.cards-16 .image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.cards-16 img {
    transition: .3s ease;
}

.cards-16 .card-item:hover img {
    transform: scale(1.03);
    transition: .3s ease;
}

/* Logos 1 */
.logos-1 {
    margin: 5rem auto 0;
}

.logos-1 .card-item {
    margin: 0 1rem 0;
    /* flex: 1 1 5rem; */
    text-align: center;
}

.logos-1 img {
    width: 100%;
    height: 4rem;
    object-fit: contain;
    transform: scale(.94);
    transition: 0.2s ease-in-out;
    margin-bottom: 1.5rem;
}

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

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


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

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

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

.split-image,
.split-info {
    width: 50%;
    border-radius: 3px;
    margin-top: -5rem;
    margin-bottom: 5rem;

}

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

/* Specifika bredder */
.split-wrapper .w-40 {
    width: 40%;
}

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

.rounded-image {
    position: relative;
    overflow: visible;
    z-index: 1;
    aspect-ratio: 1/1;
}

.rounded-image img {
    border-radius: 55% 45% 47% 53% / 52% 36% 64% 48%;
}

.rounded-image::after,
.rounded-image::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
}

.rounded-image::before {
    z-index: -1;
    right: -0.5rem;
    bottom: -0.5rem;
    background-color: rgb(var(--primary-color), .2);
    border-radius: 61% 39% 46% 54% / 55% 63% 37% 45%;
}

.rounded-image::after {
    z-index: 1;
    left: 0.5rem;
    top: -0.5rem;
    border: 3px solid rgb(var(--primary-color));
    border-radius: 45% 55% 47% 53% / 51% 53% 47% 49%;
}

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

    .split-wrapper .w-60,
    .split-wrapper .w-40 {
        width: 50%;
    }

    .split-content {
        padding: 5rem;
    }
}

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

    .split-image,
    .split-info {

        margin-top: 0rem;
        margin-bottom: 5rem;

    }


    .split-image,
    .split-wrapper .w-60,
    .split-wrapper .w-40,
    .split-info {
        width: 100%;
    }
}

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

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

/* 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 {
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.bg-video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Header / Navigation
========================================================================== */
/* Header */
header {
    background-color: rgb(var(--white-color));
}

.IndexPage header:not(.scrolled) {
    background-color: transparent;
}

header .container {
    padding: 0 5rem;
    margin: 0 auto;
}

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

.IndexPage header:not(.scrolled) .header-logo img {
    filter: brightness(0) invert(1);
}

/* Nav */

.TemplateMenu a {
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 0.1em;
    font-size: 1.2rem;
    padding: 0 2rem;
    color: rgb(var(--gray-dark-color));
}

.TemplateMenu a:hover,
header.scrolled .TemplateMenu a:hover {
    color: rgb(var(--primary-color));
}

/* Dropdown */
.TemplateMenu ul a { 
    font-size: 1.4rem;
    text-transform: none;
    letter-spacing: 0;
    line-height: 1.5em;
    padding: 1rem 2rem;
}

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

.header-cta-wrapper .btn {
    min-width: unset;
    padding: 0.8rem 3rem;
    white-space: nowrap;
}

/* Mobilmeny */
.mobile-menu .TemplateMenu ul {
    background-color: rgb(var(--gray-light-color));
    padding: 1rem 0;
}

@media only screen and (min-width: 1301px) {

    /* Nav */
    .IndexPage header:not(.scrolled) .TemplateMenu>li>a {
        color: rgb(var(--white-color));
    }

    /* Dropdown */
    .TemplateMenu ul {
        border-radius: 5px;
        box-shadow: 0 1rem 3rem rgb(var(--black-color), .2);
        border-top: 2px solid rgb(var(--primary-color));
    }

    .TemplateMenu ul::after,
    .TemplateMenu ul::before {
        bottom: 100%;
        left: 3rem;
        border: solid transparent;
        content: "";
        height: 0;
        width: 0;
        position: absolute;
        pointer-events: none;
    }

    .TemplateMenu ul::after {
        border-color: transparent;
        border-bottom-color: rgb(var(--primary-color));
        border-width: 7px;
        margin-left: -7px;
    }

    .TemplateMenu ul::before {
        border-color: transparent;
        border-bottom-color: rgb(var(--primary-color));
        border-width: 8px;
        margin-left: -8px;
    }
}

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

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

/* ==========================================================================
Startsida
========================================================================== */
/* Top Section
========================================================================== */
.top-section {
    margin-top: calc(-1 * var(--menu-height));
}

.top-section .section-block {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 70vh;
    background-color: rgb(var(--black-color), .5);
    /* background-image: url(/assets/images/wave-white.svg);
    background-size: 100% 15rem;
    background-position: center bottom;
    background-repeat: no-repeat;*/
}

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

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

.top-section h1 {
    font-size: 6.5rem;
    font-weight: 700;
}

.top-section p {
    color: rgb(var(--white-color));
    text-align: left;
    max-width: 55rem;
}

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

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

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

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

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

    .top-section p {
        font-size: 2rem;
    }
}

/* Sektion Intro (med reviews)
========================================================================== */
.review-slider {
    max-width: 70rem;
    margin: 3rem auto 0;
}

/* Sektion Produkter
========================================================================== */
.waves .section-block {
    padding-bottom: 15rem;
    background-image: url(/assets/images/wave-white-top.svg), url(/assets/images/wave-white.svg);
    background-size: 100% 10rem;
    background-repeat: no-repeat;
    background-position: center top, center bottom;
}

/* Sektion Produkter
========================================================================== */
.waves-top .section-block {
    padding-top: 15rem;
    padding-bottom: 5rem;
    background-image: url(/assets/images/wave-white-top.svg);
    background-size: 100% 10rem;
    background-repeat: no-repeat;
    background-position: center top, center bottom;
}


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

/* ==========================================================================
Undersida: Enskild Tjanst
========================================================================== */

/* Split */
.section-service-intro .split-content {
    padding-left: 0;
}

.section-service-intro .split-image,
.section-service-intro .split-info {
    align-self: flex-start;
    position: sticky;
    top: calc(var(--menu-height) * 2);
    padding: 1rem;
    background-color: rgb(var(--white-color));
    border-radius: 1rem;
}

.section-service-intro .split-info {
    padding: 8rem;
}

.section-service-intro .split-image img {
    border-radius: 5px;
}

/* Info list */
.info-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin: auto 0 0;
    padding: 1rem 0 0;
    list-style: none;
}

.info-list.w-100 {
    flex-direction: column;
    align-items: flex-start;
}

.info-list li {
    margin: 0 3rem 1rem 0;
    font-size: 1.4rem;
    color: rgb(var(--gray-dark-color));
}

.info-list li.bg-primary-light,
.info-list li.bg-gray-light {
    border-radius: 5px;
    padding: 0rem 1rem;
    margin: 0 1rem 1rem 0;
}

.contact-section .info-list li {
    font-size: 1.6rem;
}

@media only screen and (max-width: 1000px) {
    .section-service-intro .split-info {
        margin: 0rem;
        padding: 4rem 2rem;
    }
}

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

    .section-service-intro li.bg-primary-light {
        margin: 0 0.5rem 1rem 0;
        font-size: 1.2rem;
    }
}

/* Fragor och svar
========================================================================== */
.accordion-wrapper {
    max-width: 100rem;
    margin: 5rem auto 0;
}

.accordion-item {
    background-color: rgb(var(--white-color));
    padding: 2rem;
    margin: 0 0 3rem;
    border-radius: 1rem;
    box-shadow: 0 1rem 2rem rgb(var(--black-color), .05);
}

.accordion-header {
    position: relative;
    padding: 0 2rem;
    cursor: pointer;
}

.accordion-header::after {
    content: "\f078";
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    top: -2px;
    right: 2rem;
    font-size: 1.7rem;
    font-family: "Font Awesome 5 Pro";
    background-color: rgb(var(--primary-color), .2);
    color: rgb(var(--primary-color));
    border-radius: 50%;
    transition: .5s ease;
}

.accordion-item.active .accordion-header::after {
    transform: rotate(180deg);
}

.accordion-header p {
    color: rgb(var(--black-color));
    font-weight: 600;
    padding: 0 4rem 0 0;
    line-height: 1.5;
}

.accordion-body {
    padding: 2rem 0;
    margin: 2rem 2rem 0;
    border-top: 1px solid rgb(var(--gray-light-color));
}

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

    .accordion-header {
        padding: 0;
    }

    .accordion-header::after {
        top: 5px;
        right: 0;
    }

    .accordion-header p {
        padding: 0 4rem 0 0;
    }

    .accordion-body {
        margin: 2rem 0 0;
    }
}

/* ==========================================================================
Undersida Enskild Nyhet
========================================================================== */

/* Sektion Hero
========================================================================== */
.news-hero .section-block {
    background-color: rgb(var(--black-color), .5);
    background-image: url(/assets/images/wave-white.svg);
    background-size: 100% 5rem;
    background-repeat: no-repeat;
    background-position: center bottom;
}

.news-hero .section-block-wrapper {
    max-width: 100rem;
}

.news-hero h1 {
    color: rgb(var(--white-color));
}

.previous-page {
    font-size: 1.4rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10vh;
    color: rgb(var(--white-color));
}

.previous-page::before {
    content: " \f104";
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 2rem;
    height: 2rem;
    margin-right: 0.5rem;
    background-color: rgb(var(--white-color));
    color: rgb(var(--black-color));
    border-radius: 50%;
    font-family: "Font Awesome 5 Pro";
    font-size: 0.7em;
    transition: all 0.4s ease;
    text-decoration: none;
}

/* Sektion Article
========================================================================== */
.section-article .section-block-wrapper {
    max-width: 100rem;
}

.section-article p {
    font-size: 1.8rem;
    line-height: 2;
    padding: 1rem 0 3rem;
}

.section-article ul {
    margin: 1rem 0 3rem;
}

.section-article li {
    font-size: 1.8rem;
    line-height: 2;
    color: rgb(var(--gray-dark-color));
}

.section-article figure {
    margin: 2rem 0 5rem;
    padding: 0;
}

.section-article figure img {
    border-radius: 1rem;
    border: 1px solid rgb(var(--gray-light-color));
}



/* Innehall */
.tab-item {
    padding: 0.5rem 0;
}

.tab-name {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px dotted rgb(var(--primary-color));
    margin-bottom: 0rem;
}

.tab-item .price {
    padding-left: 2rem;
}

.tab-item .description {
    font-size: 1.2rem;
}

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

.ContactForm p {
    color: rgb(var(--primary-color));
    line-height: 1.8;
    font-weight: 600;
    font-size: 1.4rem;
}

.ContactForm input[type="text"],
.ContactForm textarea {
    border: none;
    border-radius: 1rem;
    border: 1px solid rgb(var(--gray-color), .7);
    background-color: rgb(var(--white-color));
}

/* ==========================================================================
Footer
========================================================================== */
.footer {
    background-color: rgb(var(--gray-light-color));
}

.footer-container {
    max-width: 140rem;
    padding: 0 5rem;
    margin: 0 auto;
}

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

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

.footer-menu:first-child {
    width: 40%;
}

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

.footer-top :is(p, a, li) {
    color: rgb(var(--black-color), .7);
    font-weight: 400;
    font-size: 1.4rem;
}

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

.footer p.small-title {
    font-size: 1.7rem;

    font-weight: 500;
    color: rgb(var(--primary-color));
}

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

.footer-bottom p {
    font-size: 1.4rem;
    color: rgb(var(--black-color), .5);
}

.footer-bottom .circle-icon,
.footer-bottom .circle-icon:hover {
    color: rgb(var(--white-color));
}

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

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


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

    .footer-container {
        padding: 0 3rem;
    }

    /* Footer top */
    .footer-menu {
        width: 48%;
    }

    .footer-menu:first-child {
        width: 100%;
    }

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

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

    /* Footer top */
    .footer-menu,
    .footer-menu:first-child {
        width: 100%;
    }

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

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

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