/* Tyresö Yogacenter AB */

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

/* ==========================================================================
Generellt
========================================================================== */
:root {
    /* 	Colors */
    --primary-color: 83, 185, 188;
    --primary-light-color: 240, 249, 249;
    --primary-dark-color: 218, 238, 238;
    --secondary-color: 250, 174, 153;

    --black-color: 17, 17, 17;
    --gray-color: 130, 130, 130;
    --gray-dark-color: 66, 66, 66;
    --gray-light-color: 243, 241, 237;
    --white-color: 255, 255, 255;

    --accent-purple-color: 218, 210, 238;
    --accent-dark-purple-color: 153, 153, 204;
    --accent-green-color: 157, 214, 216;

    /* 	Layout  */
    --col-padding: 3rem;
    --menu-height: 8rem;
    --menu-height-scrolled: 8rem;
    --section-width: 130rem;

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

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

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

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

/* Paddings */

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

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

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

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

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

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

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

/* Bredder */

.mw-1600 .section-block-wrapper,
.mw-1600:not(.section-wrapper) {
    max-width: 160rem;
}
.mw-1500 .section-block-wrapper,
.mw-1500:not(.section-wrapper) {
    max-width: 150rem;
}
.mw-1000 .section-block-wrapper,
.mw-1000:not(.section-wrapper) {
    max-width: 100rem;
}

/*Ovriga klasser*/
.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: 5rem 2rem;
    }
}

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

/* Rubriker */
.text-label {
    padding-bottom: 1em;
    font-weight: 300;
    font-size: 1.6rem;
    text-transform: uppercase;
    letter-spacing: 0.5rem;
}

.section-title {
    padding-bottom: 2rem;
    font-size: 3.3rem;
    font-weight: 300;
    color: rgb(var(--gray-dark-color));
}

.small-title {
    padding-bottom: 1.5rem;
    font-size: 2.8rem;
    font-weight: 300;
    color: rgb(var(--gray-dark-color));
}

.ingress {
    padding-bottom: .3em;
    font-size: 2.5rem;
    font-weight: 300;
    line-height: 1.4;
}

.ingress2 {
    padding-bottom: .6em;
    font-size: 2rem;
    font-weight: 250;
    line-height: 1.2;

}

/* Brodtext och lankar */
p,
li {
    line-height: 1.8;
    font-size: 1.6rem;
    color: rgb(var(--gray-dark-color));
    font-weight: 400;
}

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

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

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

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

.text-cursive {
    font-family: "Cookie", cursive;
    line-height: 0.9;
}

.text-cursive.section-title {
    font-size: 6rem;
}

.text-cursive.small-title {
    font-size: 3.3rem;
}

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

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

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

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

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

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

    .ingress2 {
        font-size: 1.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 2rem;
    margin: 7px;
    font-size: 1.4rem;
    font-weight: 600;
    border-radius: 2rem;
    text-align: center;
    text-decoration: none;
    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(--primary-color));
    border: 1px solid rgb(var(--primary-color));
    background-color: transparent;
}

.btn-white-border {
    color: rgb(var(--white-color));
    border: 0.3rem solid rgb(var(--white-color));
    background-color: transparent;
}

.btn-white-border:hover {
    color: rgb(var(--white-color));
    background-color: rgb(var(--secondary-color));
}

/* Arrow link */
.arrow-link {
    padding-right: 1rem;
    font-size: var(--base-size);
    color: rgb(var(--white-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;
}

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

/* 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-secondary {
    background-color: rgb(var(--secondary-color));
}

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

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

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

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

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

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

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

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

/* Grafiska element
========================================================================== */
/* Gradient */
.primary-light-gradient {
    padding-top: 0;
    padding-bottom: 0;
    background-image: linear-gradient(to bottom, rgba(var(--white-color), .5), rgba(var(--white-color), .5));
}

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

/* Borders */

.br-2 {
    border-radius: 2rem;
}

/* Ram inuti */
.outline-white {
    outline: 1px solid #fff;
    outline-offset: -1rem;
}

/* Wave */
.wave-primary-bottom .section-block {
    background-image: url(/assets/images/graphics/wave-2.svg);
    background-size: 200%;
    background-repeat: no-repeat;
    background-position: center bottom;
}

@media screen and (max-width: 580px) {
    .wave-primary-bottom .section-block {
        background-size: 100% 20rem;
    }
}

/* Bakgrundsbilder och videos
========================================================================== */
.bg-image {
    position: relative;
    margin-top: calc(-1 * var(--menu-height));
    background: linear-gradient(90deg, rgba(var(--black-color), .2) 0%, rgba(var(--black-color), .5) 0%, rgba(var(--black-color), 0.0) 100%);
}

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

/* Crossfade */
.bg-crossfade {
    position: relative;
    background: linear-gradient(90deg, rgba(var(--black-color), .2) 0%, rgba(var(--black-color), .5) 0%, rgba(var(--black-color), 0) 100%);
}

.fade-slider {
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.fade-slider div {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.fade-slider.slick-slider {
    position: absolute;
}

/* Parallax */
.parallax {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.parallax .section-block {
    min-height: 40rem;
    background-color: rgb(var(--black-color), .4)
}

.parallax-yoga {
    background-image: url('/assets/images/yoga-utomhus-2000px.jpg');
}

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

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

/* Card grow */
.cards-grow .card-item {
    display: flex;
    flex-direction: column;
}

.cards-grow .card-body {
    flex-grow: 1;
}

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

.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) {

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

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

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

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

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

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

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

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

/* Card 1-1 */
.card-1-1 .card-item {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 30rem;
}

.card-1-1 a {
    text-decoration: none;
}

@media only screen and (max-width: 380px) {
    .card-1-1 .card-body a {
        display: block;
    }
}

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

.card-2-4 .card-item {
    display: flex;
}

.card-2-4 a {
    text-decoration: none;
}

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

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

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

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

.card-2-4 .text-small {
    font-size: 1.4rem;
}

@media only screen and (max-width: 420px) {
    .card-2-4 .card-item {
        flex-direction: column;
        align-items: flex-start;
    }

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

/* Card 3-2 */
.cards-wrapper.card-3-2 .card-item {
    margin-top: 5rem;
    border-radius: 1rem;
}

.card-3-2 .image-wrapper {
    display: inline-block;
    max-width: 25rem;
    height: 25rem;
    border-radius: 50%;
    margin-top: -5rem;
    border: 1rem solid rgb(var(--white-color));
}

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

.card-3-2 a {
    text-decoration: none;
}

.card-3-2 .card-item:hover {
    background: rgb(var(--primary-color));
    transition: .3s ease;
}

.card-3-2 .card-item:hover * {
    color: rgb(var(--white-color));
    transition: .3s ease;
}

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

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

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

.split-image {
    width: 50%;
}

/* Speciella bredder */
.split-wrapper .w-60 {
    width: 60%;
}

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

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

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

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

    /* Speciella bredder */
    .split-wrapper .w-60,
    .split-wrapper .w-40 {
        width: 100%;
    }
}

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

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

    .split-content {
        width: 100%;
        max-width: 70rem;
        padding: 3rem;
        background: transparent;
    }

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

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

/* Header / Navigation
========================================================================== */
header {
    border-bottom: 1px solid rgb(var(--gray-light-color));
}

header .container {
    max-height: var(--menu-height);
    align-items: normal;
    max-width: 160rem;
}

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

.header-logo img {
    max-height: none;
    width: 10rem;
}

.header-logo a {
    padding: 1rem;
    padding-bottom: 0;
    margin-top: -1rem;
    transition: .2s ease;
}

header.scrolled .header-logo img {
    width: 100%;
    height: 10rem;
    transition: .2s ease;
}

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

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

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

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

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

    /* Header logo */
    .header-logo img {
        width: 100%;
    }
}

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

    /* Header logo */
    .header-logo a {
        font-size: 1.6rem;
    }

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

/* Modal
========================================================================== */
.modal {
    max-width: 75rem;
    width: 100%;
    max-height: 75vh;
    padding: 4rem;
    border-radius: 0;
    box-shadow: none;
    overflow: auto;
    background: rgb(var(--primary-color));
}

.blocker {
    z-index: 100;
}

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

.modal .custom-close-modal {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 3rem;
    color: rgb(var(--white-color));
}

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

    .blocker {
        padding: 1rem;
    }
}

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

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

.popup-wrapper .small-title {
    font-size: 4rem;
}

.popup-wrapper p {
    font-size: 1.5rem;
}

.popup-wrapper img {
    max-width: 10rem;
    margin-bottom: 2rem;
}

/* Knappar */
.popup-button {
    position: relative;
    width: 5rem;
    height: 5rem;
    background: rgb(var(--primary-color));
    color: rgb(var(--white-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;
    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: 55rem;
    max-height: calc(110vh - 10rem);
    padding: 4rem;
    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-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;
}

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

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

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

/* Top-section
========================================================================== */
.top-section {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 90vh;
}

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

.top-section .logo-wrapper {
    max-width: 16rem;
    margin: auto;
    margin-bottom: 2rem;
}

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

.top-section .section-title {
    font-size: 6rem;
    font-weight: 600;
}

.top-section .small-title {
    color: #fff;
    font-size: 3.5rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 3rem 0 1rem;
}

.top-section p {
    max-width: 60rem;
    margin: 0 auto;
}

.top-section .btn-primary-filled:hover {
    color: rgb(var(--white-color));
}

/* Bouncing arrow */
.bouncing-arrow {
    position: absolute;
    left: 50%;
    bottom: 4rem;
    transform: translatex(-50%);
    animation: bounce 2s infinite;
}

.bouncing-arrow i {
    color: rgb(var(--white-color));
    font-size: 4rem;
    font-weight: 500;
}

@keyframes bounce {

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

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

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

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

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

/* CTA-sektion
========================================================================== */
.cta-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 8rem;
}

.cta-wrapper .text-block {
    max-width: 65rem;
}

.cta-wrapper .btn-wrapper {
    margin-top: 0;
}

@media only screen and (max-width: 1000px) {
    .cta-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }

    .cta-wrapper .btn-wrapper {
        margin-top: 2rem;
    }
}

/* Section Kontakt
========================================================================== */
.section-contact .col-0 {
    width: 70%;
}

.section-contact  .col-1 {
    width: 30%;
    padding: 2rem;
    padding-top: 4rem;
    padding-bottom: 4rem;
    margin: 0;
    box-shadow: 0 1rem 3rem rgba(var(--black-color), .1);
    background: rgba(var(--white-color));
}

/* Formular */
.ContactForm p {
    padding-left: 1rem;
    color: rgb(var(--primary-color));
    line-height: 1.8;
    font-weight: 600;
    font-size: 1.5rem;
}

.ContactForm input[type="text"],
.ContactForm input[type="email"],
.ContactForm textarea {
    border: 1px solid rgb(var(--gray-color), .5);
    border-radius: 10px;
}

@media only screen and (max-width: 1100px) {
    .section-contact .col-0 {
        width: 100%;
    }

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

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

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

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

.hero .section-title {
    font-size: 5rem;
    color: rgb(var(--white-color));
    text-transform: uppercase;
}

.hero .citat {
    padding-top: 2rem;
    font-size: 5rem;
}
@media only screen and (max-width: 780px) {
    .hero .citat {
       margin-top: 2rem;
        font-size: 3rem;
    }
}

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

/* ==========================================================================
Undersida: Yogaklasser & Kurser
========================================================================== */
.section-courses .small-title {
    font-size: 2.8rem;
}

.info-text {
    font-size: 2.2rem;
    font-weight: 300;
    padding-bottom: 1rem;
}

/* ==========================================================================
Undersida: Priser
========================================================================== */
.swish-wrapper {
    display: flex;
}

.swish-wrapper img {
    max-width: 15rem;
    padding-right: 1rem;
}

.swish-wrapper p {
    padding-top: 1rem;
}
.sigill-wrapper{
    max-width: 10rem; 
    margin-bottom: 2rem;
}

/* ==========================================================================
Undersida: Schema
========================================================================== */
.table {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    border: 0.1rem solid rgb(var(--gray-light-color));
    border-bottom: none;
}

.first-cell {
    background: rgb(var(--primary-color));
    padding: 1rem;
    width: 100%;
}

.first-cell .small-title {
    font-size: 2.3rem;
    font-weight: 700;
    padding-right: 1rem;
}

.row {
    display: flex;
    flex-wrap: wrap;
    border-bottom: 0.1rem solid rgb(var(--gray-light-color));
    transition: .2s ease;
}

.row.border-bottom {
    border-bottom: 0.1rem solid rgb(var(--black-color));
}

.cell:nth-child(odd) {
    background-color: rgb(var(--primary-color), .1);
}

.row:nth-child(2) .cell,
.table-heading {
    background: rgb(var(--gray-light-color));
}

.cell {
    display: flex;
    flex-wrap: wrap;
    width: calc(100% / 4);
    padding: 1rem;
}

.section-schema .cell {
    width: calc(100% / 4);
    padding: 1rem;
    text-align: left;
}

.table p {
    padding: 0;
    font-size: 1.5rem;
    align-self: center;
}

@media only screen and (max-width: 750px) {
    .cell:nth-child(odd) {
        background-color: transparent
    }

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

    .row .cell:nth-child(1) {
        max-width: 8rem;
    }

    .row .cell:nth-child(2) {
        max-width: 6rem;
    }

    .row .cell:nth-child(3) {
        width: calc(100% - 23rem);
    }

    .row .cell:nth-child(4) {
        max-width: 9rem;
    }

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

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

/* ==========================================================================
Undersida: Minna Falstrom
========================================================================== */
.section-about .text-block-center {
    max-width: 100rem;
}

.section-about .section-title {
    font-size: 5rem;
}

/* ==========================================================================
Undersida: Sagt av andra
========================================================================== */
.section-reviews i {
    margin-right: 0.5rem;
    margin-left: 0.5rem;
}

.slick-dots {
    padding: 0;
}

/* ==========================================================================
Undersida: Vad är act
========================================================================== */
.section-act .split-content-left {
    margin-left: -15rem
}

.section-act .text-wrapper {
    padding-right: 10rem;
}

.section-act .card-list {
    padding: 1rem;
    margin-left: 2rem;
    padding-bottom: 0;
}

@media only screen and (max-width: 1100px) {
    .section-act .split-content-left {
        margin-left: 0
    }

    .section-act .text-wrapper {
        padding-right: 0
    }
}



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

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

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

.footer .text-label {
    padding: 0 0 1rem;
    line-height: 1;
    font-weight: 600;
}

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

.footer-top li,
.footer-top p,
.footer-top a {
    text-decoration: none;
}

.footer a:not(.icon-links):hover {
    text-decoration: none;
    color: rgb(var(--primary-color));
}

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

/* 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: 1200px) {
    .footer {
        padding: 0 3rem;
    }

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

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

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

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

    .webbess-stamp {
        margin: 0 auto 2rem;
    }
}