/* Rosgatan 70 Beauty Spa */

/* Typsnitt */
@import url("https://fonts.googleapis.com/css2?family=Albert+Sans:ital,wght@0,400;0,600;0,700;1,400;1,700&display=swap");

/* Animationer */
@import url("https://unpkg.com/aos@2.3.1/dist/aos.css");

/* Modal */
@import url('https://cdnjs.cloudflare.com/ajax/libs/jquery-modal/0.9.1/jquery.modal.min.css');

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

    /* 	Colors */
    --primary-color: 36, 166, 145;
    --primary-light-color: 215, 235, 231;
    --primary-dark-color: 105, 181, 163;

    --secondary-color: 37, 45, 102;

    --accent-red-color: 253, 215, 222;

    --black-color: 0, 0, 0;
    --gray-dark-color: 64, 64, 64;
    --gray-light-color: 242, 242, 242;
    --white-color: 255, 255, 255;

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

    /* 	Mobile nav */
    --activate-mobile-menu: 1000;
    --mobile-menu-height: 5rem;
    --mobile-menu-bg: var(--white-color);
    --menu-color: rgb(var(--black-color));
}

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

.section-block-wrapper {
    max-width: var(--section-width);
}

/* Paddings */
.p-3 .section-block,
.p-3:not(.section-wrapper) {
    padding: 3rem !important;
}

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

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

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

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

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

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

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

@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: 'Albert Sans', sans-serif;
}

/* Rubriker */
.text-label {
    font-size: 1.4rem;
    font-weight: 600;
    text-transform: uppercase;
    padding-bottom: 2rem;
    line-height: 1.5;
    letter-spacing: 0.2em;
}

.section-title {
    font-size: 4rem;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: normal;
    padding-bottom: 3rem;
}

.small-title {
    font-size: 2.5rem;
    line-height: 1.4;
    padding-bottom: 0.7em;
}

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

/* Brodtext och lankar */
ul.list-check {
    margin-inline-start: 0px;
}

p,
li {
    font-weight: 400;
    line-height: 1.7;
    color: rgb(var(--gray-dark-color));
}

a {
    font-size: inherit;
    font-weight: 400;
    text-decoration: underline;
    color: inherit;
}

a:hover {
    text-decoration: none;
}

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

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

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

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

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

/* List-check */
.list-check {
    padding: 0 0 0 3rem;
    list-style: none;
}

.list-check li {
    position: relative;
    padding: 0 0 5px;
}

.list-check li::before {
    position: absolute;
    content: "\f00c";
    left: -3rem;
    color: rgb(var(--primary-color));
    font-weight: 700;
    font-size: 1.6rem;
    font-family: "Font Awesome 5 Pro";
}

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

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

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

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

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

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

/* Knappar */
.btn,
.ContactSubmit {
    display: inline-block;
    max-width: 50rem;
    width: auto;
    padding: 1.8rem 4rem;
    font-size: 1.3rem !important;
    font-weight: 600;
    border-radius: 5rem;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 3px;
    line-height: 1em;
    transition: all 0.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 {
    border: 1px solid rgb(var(--primary-light-color));
    background-color: rgb(var(--primary-light-color));
    color: rgb(var(--black-color));
}

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

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

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

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

/* 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 0.4s ease;
}

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

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

    .btn,
    .ContactSubmit {
        display: block;
        width: 100%;
        padding: 1.3rem 3rem;
    }
}


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

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

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

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

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

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

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

/* Grafiska element
========================================================================== */
/* Borders */
.border-left-white {
    border-left: 1rem solid rgb(var(--white-color));
}

.border-right-white {
    border-right: 1rem solid rgb(var(--white-color));
}

/* Bakgrundsbild
========================================================================== */
.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;
}

.card-item {
    transition: all 0.3s ease;
    text-decoration: none;
}

/* Specifika bredder */
.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: 1rem 0;
}

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

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

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

/* Card 2-2 */
.card-2-2 .card-item {
    border-radius: 5px;
    padding-top: 0;
}

.card-2-2 a.card-item:hover {
    background-color: rgb(var(--primary-dark-color));
}

.card-2-2 .card-header {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 7rem;
    height: 7rem;
    margin: 0 0 2rem 0;
    border-radius: 0 0 1rem 1rem;
}

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

.card-2-2 .card-body {
    flex: 1 1 0px;
}

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

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

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

/* Card 2-5 */
.card-2-5 .card-item {
    display: flex;
    padding: 0 1rem 1rem;
    border-radius: 5px;
    transition: 0.3s ease;
}

.card-2-5 a.card-item:hover {
    background-color: rgb(var(--primary-light-color));
}

.card-2-5 .card-header {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 4.5rem;
    height: 4.5rem;
    border-radius: 0 0 1rem 1rem;
}

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

.card-2-5 .card-body {
    padding: 1rem 2rem;
}

/* Card-2-6 */
.card-2-6 .card-item {
    position: relative;
    border-radius: 3px;
    overflow: hidden;
}

/* Card 3-1 */
.card-3-1 .card-item:not {
    border-radius: 5px;
    transition: transform 0.2s;
    /* Animation */
}

.section-services .card-3-1 .card-item {
    border-radius: initial;
    transition: none;
}

.card-3-1 .card-item:hover {
    transform: scale(1.1);
}

.section-services .card-3-1 .card-item:hover {
    transform: none;
}

.card-3-1 .image-wrapper {
    height: 30rem;
}

/* 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: 95rem;
    max-height: 90vh;
    padding: 3rem;
    border-radius: 10px;
    overflow: auto;
    background: rgb(var(--white-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 .fal {
    color: rgb(var(--primary-color));
}



/* Modal
========================================================================== */
/* .modal {
    max-width: 75rem;
    width: 100%;
    max-height: 75vh;
    padding: 0;
    border-radius: 2rem;
    box-shadow: none;
    overflow: auto;
}

.blocker {
    z-index: 100;
}

.modal a.close-modal {
    display: none;
}

.modal .custom-close-modal {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 3rem;
}

.modal .card-item {
    text-align: center;
    width: calc(100% / 2 - .5rem);
    padding: 4rem 0;
} 

 .modal .card-item .section-title {
    font-size: 8rem;
}

.modal .card-item p {
    font-size: 200px;
} */

@media only screen and (max-width: 980px) {
    .modal .card-item {
        width: 100%;
    }

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

/* 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%;
}

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

@media screen and (max-width: 1100px) {
    .split-content {
        width: 100%;
        padding: 5rem 0rem 3rem;
    }

    .split-content.bg {
        padding: 4rem;
    }

    .split-image {
        width: 100%;
        min-height: 20rem;
    }

    /* Border på bild */
    .split-image.border-right-white,
    .split-image.border-left-white {
        border: 1rem solid rgb(var(--white-color));
    }
}

@media screen and (max-width: 580px) {
    .split-content {
        padding: 5rem 0 3rem;
    }

    .split-content.bg {
        padding: 3rem 2rem;
    }

    /* Bakgrundsfarg */
    .bg-primary-light .split-content {
        padding-top: 3rem;
    }
}

/* Header / Navigation
========================================================================== */
header .container {
    display: grid;
    grid-template-columns: 1fr 0 auto 1fr;
    padding: 0 5rem;
}

/* Logo */
.header-logo {
    margin: 0 auto 0 0;
}

.header-logo a {
    font-size: 2.3rem;
    font-weight: 700;
    line-height: 1.1;
    color: rgb(var(--primary-color));
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.header-logo span {
    display: block;
    font-size: 2rem;
    font-weight: 500;
    color: rgb(var(--primary-color));
    text-transform: none;
    letter-spacing: 0;
}

/* Nav */
.TemplateMenu a {
    font-weight: 600;
    font-size: 1.4rem;
    color: rgb(var(--black-color));
}

.TemplateMenu>li>a:hover {
    color: rgb(var(--primary-color));
}

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

.header-cta-wrapper li {
    margin: 0 0.5rem;
}

.header-cta-wrapper .btn {
    min-width: unset;
    padding: 1rem 2rem;
    line-height: 1;
}

/* Mobilmeny */
header.mobile-menu .container {
    display: flex;
}

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

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

    .header-logo a,
    .header-logo span {
        font-size: 1.8rem;
    }
}

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

    .header-cta-wrapper .btn {
        min-width: unset;
        padding: 0.7rem 1.5rem;
    }

    .header-logo a,
    .header-logo span {
        font-size: 1.3rem;
    }
}

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

    .header-logo a,
    .header-logo span {
        font-size: 1.3rem;
    }
}

/* ==========================================================================
Startsida
========================================================================== */
/* Top-section
========================================================================== */
.top-section .split-wrapper {
    min-height: calc(100vh - var(--menu-height));
}

.top-section .section-title {
    font-size: 5rem;
    font-weight: 700;
}

.top-section p {
    font-size: 1.8rem;
    color: rgb(var(--black-color));
}

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

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

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

/* Sektion Resensioner (.section-reviews)
========================================================================== */
.section-reviews {
    overflow: hidden;
}

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

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

/* Card */
.scroll-wrapper.cards-wrapper .card-item {
    display: flex;
    height: auto;
}

.rating p {
    font-size: 1.4rem;
}

.rating .card-header {
    margin-bottom: 2rem;
}

.rating i {
    font-size: 1.4rem;
}

/* Card item */
.scroll-wrapper .card-item {
    display: flex;
    flex-direction: column;
    margin: 0 2rem 0 0;
}

/* Slick Arrow */
.scroll-wrapper .slick-arrow {
    position: absolute;
    top: auto;
    bottom: -4rem;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background-color: rgb(var(--primary-color));
}

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

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

.scroll-wrapper .slick-prev {
    left: auto;
    right: 6rem;
}

/* ==========================================================================
Undersidor - Generellt
========================================================================== */
/* Hero - Grundkod
========================================================================== */
.hero .section-block {
    display: flex;
    align-items: center;
    min-height: 40rem;
    background: rgb(var(--black-color), 0.4);
}

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

.hero .section-title {
    font-size: 5rem;
    padding: 0;
    text-align: center;
}

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

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


/* ==========================================================================
Undersida: Kontakt
========================================================================== */
.section-contact .Contact {
    padding: 3rem;
    background: rgb(var(--gray-light-color));
    border-radius: 0.5rem;
}

.section-contact .col-1 {
    position: relative;
    border-radius: 1rem;
}

.ContactForm input[type="text"],
.ContactForm input[type="email"],
.ContactForm textarea {
    border-radius: 1rem;
}

.ContactForm input[type="text"]:not(.illegal),
.ContactForm textarea:not(.illegal),
.ContactForm input[type="email"]:not(.illegal) {
    background-color: rgb(var(--white-color));
    border-color: rgb(var(--white-color));
}

.submit-button-container {
    text-align: center;
}

.ContactForm .ContactSubmit {
    width: 100%;
}

.section-map iframe {
    border: 2rem solid rgb(var(--gray-light-color));
}

.section-map {
    font-size: 0;
}

@media only screen and (max-width: 980px) {
    .section-contact .col-1 {
        margin-top: 5rem;
    }

    .section-contact .Contact {
        padding: 2rem;
    }
}

@media only screen and (max-width: 580px) {
    .section-map iframe {
        height: 30rem;
    }
}

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

.footer-container {
    max-width: var(--section-width);
    margin: 0 auto;
}

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

.footer-menu {
    width: 20%;
    margin: 0 0 3rem;
}

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

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

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

.footer-top li,
.footer-top p,
.footer-top a:not(.circle-icon) {
    color: rgb(var(--white-color));
}

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

.footer-bottom p,
.footer-bottom a {
    font-size: 1.4rem;
    line-height: 1.6;
    color: rgb(var(--white-color));
}

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

.webbess-stamp img {
    width: 2.5rem;
    margin-left: 1rem;
    filter: invert();
}

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

    /* 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%;
    }
}

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