/* Briga Vård och Omsorg AB */

/* Typsnitt */
@import url("https://use.typekit.net/qat1fji.css");

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

    /* 	Colors */
    --primary-color: 101, 170, 219;
    --secondary-color: 91, 186, 147;

    --gray-light-color: 242, 242, 242;
    --white-color: 255, 255, 255;

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

    /* Others */
    --box-shadow: 0 1rem 3rem rgb(0, 0, 0, .1);

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

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

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

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

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

.pb {
    padding-bottom: 0;
}

.pt-2 {
    padding-top: 2rem;
}

.m-0 {
    margin: 0rem;
}

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

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

/* Rubriker */
.text-label {
    position: relative;
    padding-bottom: .9em;
    font-family: calibri, sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
}

.section-title {
    padding-bottom: .3em;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: rgb(var(--black-color));
}

.sub-title {
    padding-bottom: .3em;
    font-size: 2.7rem;
    font-weight: 700;
    line-height: 1.2;
    color: rgb(var(--black-color));
}

.small-title {
    padding-bottom: .5em;
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.4;
    color: rgb(var(--black-color));
}

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

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

/* ovriga klasser */
.text-bold {
    font-weight: 700;
}

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

.justify-center {
    justify-content: center !important;
    align-items: center !important;
    margin: auto !important;
}

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

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

    .sub-title {
        font-size: 2.8rem;
    }

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

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

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

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

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

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

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

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

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

.btn::after {
    content: ' \2023';
    display: inline-block;
    margin-left: .5rem;
    transition: transform .4s ease;
}

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

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

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

.ContactSubmit:hover {
    background-color: rgb(var(--secondary-color));
    border: 1px solid rgb(var(--secondary-color));
    color: rgb(var(--black-color));
}

/* Arrow link */
.arrow-link {
    padding-right: 1rem;
}

.arrow-link::after {
    content: ' \f178';
    display: inline-block;
    margin-left: .5rem;
    font-family: 'Font Awesome 5 Pro';
    font-size: .7em;
    transition: transform .4s ease;
}

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

/* 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(--white-color));
    text-decoration: none;
    border-radius: 50%;
    background-color: rgb(var(--primary-color));
    transition: .3s ease;
}

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

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

/* Bouncing arrow */
.bouncing-arrow {
    position: absolute;
    z-index: 1;
    right: 5rem;
    bottom: -1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 6rem;
    height: 6rem;
    border-radius: 50% 50% 0 0;
    background-color: rgb(var(--white-color));
}

.bouncing-arrow::after {
    position: absolute;
    z-index: -1;
    content: '';
    width: 5rem;
    height: 5rem;
    top: .5rem;
    left: .5rem;
    border-radius: 50%;
    background-color: rgb(var(--secondary-color));
}

.bouncing-arrow i {
    color: rgb(var(--white-color));
    font-size: 3rem;
    font-weight: 500;
    animation: bounce 3s infinite;
}

@keyframes bounce {

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

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

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

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

    .bouncing-arrow {
        width: 4rem;
        height: 4rem;
        right: 3rem;
        bottom: 0;
    }

    .bouncing-arrow::after {
        width: 3.2rem;
        height: 3.2rem;
        top: .4rem;
        left: .4rem;
    }

    .bouncing-arrow i {
        font-size: 2rem;
    }
}

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

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

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

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

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

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

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

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

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


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

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

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

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

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

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

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

.cards-1 .card-item {
    padding: 5rem 4rem 4rem;
    border-radius: 5px;
}

.cards-1 .card-header {
    padding-bottom: 2rem;
}

/* Cards 2 */
.cards-2 {
    justify-content: center;
    margin-top: 3rem;
}

.cards-2 .card-item {
    padding: 0;
    border-radius: 3px;
    cursor: pointer;
    transition: 0.2s ease-in-out;
    box-shadow: 0 1rem 3rem rgba(17, 17, 17, .12);
    overflow: hidden;
    background-color: rgb(var(--white-color));
}

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

.cards-2 .icon-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 18rem;
    padding: 2rem;
    text-align: right;
    background-color: rgb(var(--primary-color));
    transition: 0.2s ease-in-out;
}

.cards-2 .icon-wrapper::after {
    position: absolute;
    content: '';
    pointer-events: none;
    width: 100%;
    height: 100%;
    background: no-repeat center 100% url(/assets/images/wave.svg);
    top: 0;
    left: 0;
}

.cards-2 img {
    width: 10rem;
}

.cards-2 .icon-wrapper i {
    color: #000;
    font-size: 6rem;
}

.cards-2 .text-wrapper {
    padding: 1.5rem 2.5rem 2.5rem;
    background-color: rgb(var(--white-color));
}

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

.cards-2 .card-item:hover {
    transform: translateY(-1rem);
    transition: 0.2s ease-in-out;
}

/* Cards 13 */
.cards-13 .card-item {
    padding: 4rem;
    outline: 1px solid rgb(var(--white-color));
    outline-offset: -1rem;
    text-decoration: none;
    background-color: rgb(var(--gray-light-color));
}

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

/* 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%;
    border-radius: 2px;
}

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

/* Speciella margins */
.split-wrapper .mt--20 {
    margin-top: -20rem;
}

/* 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 {
        padding: 0rem 0 5rem;
    }

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

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

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

    /* Speciella margins */
    .split-wrapper .mt--20 {
        margin-top: 0;
    }
}

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

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

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

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

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

/* bildspel */
.crossfade {
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.crossfade div {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-attachment: scroll;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

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

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

/* Header / Navigation
========================================================================== */
header {
    background-color: transparent;
    transition: all .2s ease;
}

header.scrolled,
.SubPage header,
.mobile-menu header {
    background-color: rgb(var(--white-color));
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, .1);
    transition: all .2s ease;
}

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

.header-logo img {
    padding: 0;
    height: 8rem;
}

/* nav */
nav.mainmenu a {
    font-weight: 500;
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: rgb(var(--white-color));
}



/* Ta bort klick */
.TemplateMenu a[href="/17/2/tjanster/"],
.TemplateMenu a[href="/17/7/om-oss/"],
.TemplateMenu a[href="/17/14/jobba-hos-oss/"] {
    pointer-events: none;
}

.SubPage header nav.mainmenu a,
header.scrolled nav.mainmenu a {
    color: #333;
}

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


/* Lankar i dropdown svarta */
.TemplateMenu ul li a {
    color: rgb(var(--gray-dark-color));
}


.TemplateMenu ul {
    width: 25rem;
}

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

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



/* Mobilmeny */
@media only screen and (max-width: 1000px) {
    nav.mainmenu a {
        color: rgb(var(--gray-dark-color));
    }

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

@media only screen and (max-width: 550px) {
    .header-cta-wrapper .btn {
        display: none;
    }
}

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

/* Top-section
========================================================================== */
.top-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    max-width: 100% !important;
    min-height: 98vh;
    background-color: rgba(0, 0, 0, 0.5);
    margin-top: calc(-1 * var(--menu-height));
    background-image: url(/assets/images/wave-top.svg);
    background-size: 100% 15rem;
    background-repeat: no-repeat;
    background-position: center bottom;
}

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

.top-section h1 {
    font-family: calibri, sans-serif;
    font-size: 3rem;
    font-weight: 400;
    line-height: 1.3em;
    color: rgb(var(--white-color));
    padding-bottom: .5em;
}

.top-section p {
    color: rgb(var(--white-color));
    max-width: 50ch;
    font-weight: 400;
}

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

    .top-section {
        min-height: 90vh;
        background-size: 100% 10rem;
    }

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

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

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

    .top-section .btn-wrapper {
        flex-direction: column;
    }

    .top-section .btn-wrapper a {
        margin: 1rem 0;
    }
}

/* Sektion Tjanster (.section-services)
========================================================================== */
.section-services {
    background-image: linear-gradient(to bottom, rgb(var(--white-color)) 10rem, rgb(var(--gray-light-color)) 10rem);
}

/* Sektion Om oss (.section-about) 
========================================================================== */
.about-split .split-image img {
    background: no-repeat center 100% url(/assets/images/wave.svg);
}


/* ==========================================================================
Undersidor 
========================================================================== */
.hero {
    min-height: 55vh;
}

/* Hero-1
========================================================================== */
.hero-1 {
    background-color: rgba(0, 0, 0, 0.5);
    background-image: url(/assets/images/wave-top.svg);
    background-size: 100% 15rem;
    background-repeat: no-repeat;
    background-position: center bottom;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero h1,
.hero .section-title {
    color: rgb(var(--white-color));
    font-size: 5rem;
    font-weight: 500;
    text-align: center;
    font-family: calibri, sans-serif;
}

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

    .hero h1,
    .hero .section-title {
        font-size: 2.8rem;
    }

    .hero {
        min-height: 45vh;
    }
}

/* Hero-2 (solid)
========================================================================== */
.hero-solid {
    background-color: rgb(var(--primary-color), .3);
}

.hero-solid {
    min-height: 40vh;
}

.hero-solid .section-block {
    padding-top: 12rem;
}

h1 span {
    display: block;
}

.header-white nav.mainmenu a,
.EditMode nav.mainmenu a,
.hero .section-title {
    color: #333;
}

@media only screen and (max-width: 550px) {
    .hero-solid .section-block {
        padding: 10rem 2rem;
    }
}

.small-img {
    width: 15rem;
    margin: 2rem 0;
}

/* ==========================================================================
Undersida: Kontakt
========================================================================== */
.section-contact .split-content {
    background: rgb(var(--white-color));
    width: 48%;
    margin: 1%;
    display: block;
}

.section-contact .split-content:last-child {
    background: #000;
    border-radius: 5px;
}

.section-contact .split-content:last-child *:not(.btn) {
    color: rgb(var(--white-color));
}

.section-contact .split-content .subheading {
    font-size: 3rem;
    max-width: 60rem;
}

.contact-option {
    display: block;
    padding: 1rem 0;
}

.contact-option a {
    line-height: 3;
}

.contact-option .fas {
    margin-right: 1rem;
    margin-bottom: 1rem;
}

.section-contact .contact-option:hover::before {
    text-decoration: none;
}

.section-contact .contact-option,
.section-contact .contact-option::before {
    color: #3e3e3e !important;
    text-decoration: none !important;
}

.section-contact .contact-option:hover {
    color: rgb(var(--primary-color)) !important;
}

@media only screen and (max-width:950px) {
    .section-contact .split-content {
        width: 100%;
        order: 0;
        padding: 5rem;
    }

    .section-contact .split-image {
        width: 100%;
        order: 1;
    }
}

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

    .section-contact .split-content {
        padding: 5rem 2.5rem;
    }

    .section-contact .split-content:first-child {
        padding-left: 0;
    }
}


/* Kontaktform
========================================================================== */
.ContactForm {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 3rem;
}

.ContactForm div {
    width: 49%;
}

.ContactForm .ContactFormMessage {
    width: 100%;
}

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

.ContactForm .ContactSubmit {
    font-size: var(--base-size);
}

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

@media only screen and (max-width: 600px) {
    .ContactForm div {
        width: 100%;
    }
}

/* ==========================================================================
Undersida: Kontoret, medarbetarkort
========================================================================== */
.section-coworkers .card-item {
    background-color: rgb(var(--primary-color), .3);
}

.section-coworkers a {
    display: block;
    margin-bottom: 1rem;
    color: rgb(var(--black-color));
}

.section-coworkers a:hover {
    text-decoration: underline;
}

.section-coworkers .fas {
    margin-right: 1rem;
}


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

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

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

.footer li,
.footer a,
.footer p {
    color: rgb(var(--gray-dark-color));
}

.footer a:hover {
    text-decoration: underline;
}

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

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

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

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

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

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

.socials {
    margin: 0 0 2rem;
}

.socials .circle-icon {
    width: 3rem;
    height: 3rem;
    color: rgb(var(--primary-color));
    background-color: rgb(var(--white-color));
    margin: 0 1rem 1rem 0;
}

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

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


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

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


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

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

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

    .footer-container {
        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%;
    }

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