/* Hepatica Foundation */

/* Animationer */
@import url('/resources/scripts/aos/2.3.1/aos.css');

/* Fonts */
@font-face {
    font-family: roxboroughcf;
    src: url('/assets/fonts/roxboroughcf.ttf');
}

@font-face {
    font-family: articulatcf-normal;
    src: url('/assets/fonts/articulatcf-normal.otf');
}

/* ==========================================================================
Generellt
========================================================================== */
:root {
    /* 	Colors */
    --primary-color: 0, 52, 96;
    --primary-light-color: 23, 152, 205;

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

    /* 	Layout  */
    --col-padding: 3rem;
    --menu-height: 13rem;
    --menu-height-scrolled: 13rem;
    --section-width: 140rem;

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

    /* 	Mobile nav */
    --activate-mobile-menu: 1100;
    --mobile-menu-height: 7.5rem;
    --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;
}

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

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

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

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

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

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

/* 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: 'Onest', sans-serif;
}

/* Rubriker */
.text-label {
    padding-bottom: 1em;
    font-size: 1.4rem;
    font-weight: 600;
    text-transform: uppercase;
    font-family: articulatcf-normal, sans-serif;
}

.section-title {
    padding-bottom: .5em;
    font-size: 4rem;
    font-weight: 600;
    line-height: 1.2;
    font-family: roxboroughcf, sans-serif;
}

.small-title {
    padding-bottom: .3em;
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.4;
    font-family: roxboroughcf, sans-serif;
}

/* Brodtext och lankar */
p,
li {
    color: rgb(var(--gray-dark-color));
}

/* List Row */
.list-row {
    display: flex;
    flex-wrap: wrap;
    margin: 1rem 0 0;
    padding: 0;
    list-style: none;
}

.list-row li {
    font-size: 1.5rem;
}

.list-row li:not(:last-child)::after {
    content: '|';
    display: inline-block;
    margin: 0 1rem;
}

/* List arrow */
.list-arrow {
    padding: 0;
    list-style: none;
}

.list-arrow li::before {
    content: '\f061';
    padding: 0 1rem 0 0;
    color: rgb(var(--primary-color));
    font-weight: 700;
    font-size: 1.3rem;
    font-family: 'Font Awesome 5 Pro';
}

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

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

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

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


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

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

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

.btn-wrapper.center {
    text-align: center
}

/* Knappar */
.btn,
.ContactSubmit {
    min-width: 15rem;
    padding: 1rem 2rem 1.3rem;
    margin: 7px;
    font-size: 1.5rem;
    font-weight: 600;
    border-radius: 2px;
    text-align: center;
    text-decoration: none;
    font-family: roxboroughcf, sans-serif;
    transition: all .4s ease;
}

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

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

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

.btn.arrow-link {
    font-size: 1.4rem;
}

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

.square-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.9rem;
    height: 3.9rem;
    padding: 0;
    font-size: 0;
    color: rgb(var(--white-color));
    text-decoration: none;
    border-radius: 0.2rem;
    background-color: rgb(var(--primary-color));
    transition: .3s ease;
    border: 2px solid rgb(var(--primary-color));
}

.square-icon img {
    max-height: 1.35rem;
    filter: invert(1);
}

.square-icon:hover {
    color: rgb(var(--primary-color));
    background-color: transparent;
}

.square-icon:hover img {
    filter: invert(0);
}

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


/* Cirkelikon */
/* .circle-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    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(--primary-color));
    background-color: rgb(var(--white-color));
}

.circle-icon em:before,
.circle-icon i:before {
    font-size: 1.5rem;
} */

/* Pulse btn */
.pulse-btn {
    position: relative;
}

.pulse-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    border: 2px solid rgb(var(--primary-color));
    transform: translate(-50%, -50%);
    animation: ring 1.5s infinite;
}

@keyframes ring {
    0% {
        width: calc(100% + 4px);
        height: calc(100% + 4px);
        opacity: 1;
    }

    100% {
        width: calc(100% + 4px + 50px);
        height: calc(100% + 4px + 50px);
        opacity: 0;
    }
}

@media only screen and (max-width: 1280px) {
    .square-icon {
        width: 3.3rem;
        height: 3.3rem;
        margin-left: 2px;
    }

    .square-icon:first-of-type {
        margin-left: 9px;
    }
}

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

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

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

.gradient-primary {
    background: linear-gradient(120deg, rgba(var(--primary-color)) 0%, rgba(var(--primary-light-color)) 100%);
}

/* Overlays */
.overlay-gradient {
    position: relative;
}

.overlay-gradient::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, rgba(var(--primary-color), .6) 0%, rgba(var(--primary-light-color), .6) 100%);
}

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

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

/* Grafiska element  
========================================================================== */
/* Object position */
.of-wrapper img.op-80-50 {
    object-position: 80% 50%;
}

.of-wrapper img.op-50-20 {
    object-position: 50% 20%;
}

.of-wrapper img.op-50-80 {
    object-position: 50% 80%;
}

/* Bakgrundsbilder och videos
========================================================================== */
.bg-image {
    position: relative;
    overflow: hidden;
}

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

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

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

.parallax .section-block {
    display: flex;
    align-items: center;
    min-height: 50rem;
    background-color: rgb(var(--black-color), .75)
}

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

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

@media only screen and (max-width: 580px) {
    .parallax p {
        font-size: var(--base-size);
    }
}

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

.cards-wrapper:not(.w-100) {
    margin-left: -1rem;
    margin-right: -1rem;
}

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

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

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

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

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

@media only screen and (max-width: 750px) {
    .cards-wrapper:not(.w-100) {
        margin-left: 0;
        margin-right: 0;
    }

    .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) {
    .cards-wrapper.w-25 .card-item {
        width: 100%;
        margin: 1rem 0;
    }
}

/* Card 2-2 */
.card-2-2 .card-header {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 6rem;
    height: 6rem;
    margin-bottom: 2rem;
    border-radius: 50%;
    background: linear-gradient(120deg, rgba(var(--primary-color)) 0%, rgba(var(--primary-light-color)) 100%);
}

.card-2-2 .card-header i,
.card-2-2 .card-header p {
    padding: 0;
    font-size: 2rem;
    font-weight: 600;
    font-family: 'Onest', sans-serif;
}

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

.card-2-5 .card-header {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    width: 5rem;
    height: 5rem;
    border-radius: 5px;
    background: linear-gradient(120deg, rgba(var(--primary-color)) 0%, rgba(var(--primary-light-color)) 100%);
}

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

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

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

/* Card 3-4 */
.card-3-4 .card-item {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.card-3-4 .image-wrapper {
    width: 25rem;
    height: 100%;
    max-height: 33rem;
}

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

.card-3-4 .contact-item i {
    margin-right: 1rem;
}

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

@media only screen and (max-width: 900px) {
    .card-3-4 .card-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem;
    }

    .card-3-4 .image-wrapper {
        width: 100%;
    }
}

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

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

.split-wrapper .align-end {
    align-self: flex-end;
}

/* Ruta bakom text */
.split-wrapper.box {
    margin-bottom: 3rem;
}

.split-wrapper.box .split-content {
    position: relative;
    margin-top: 3rem;
}

.split-wrapper.box .text-block {
    z-index: 1;
    position: relative;
}

.split-wrapper.box .split-content::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: calc(100% + 80%);
    height: calc(100% + 3rem);
}

.split-wrapper.box-white .split-content::after {
    background: rgb(var(--white-color));
}

.split-wrapper.box-gray-light .split-content::after {
    background: rgb(var(--gray-light-color));
}

.split-wrapper.box.reverse .split-content::after {
    left: -80%;
}

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

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

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

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

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

    /* Ruta bakom text */
    .split-wrapper.box .split-content {
        padding: 3rem 0;
        margin: 0;
    }

    .split-wrapper.box .split-content::after,
    .split-wrapper.box.reverse .split-content::after {
        left: -2.5rem;
        width: calc(100% + 5rem);
        height: calc(100% + 5rem);
    }
}

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

    .split-wrapper.box .split-content::after,
    .split-wrapper.box.reverse .split-content::after {
        left: -2rem;
        width: calc(100% + 4rem);
        height: calc(100% + 4rem);
    }
}

/* Header / Navigation
========================================================================== */
/* Header */
header {
    border-bottom: none;
}

header:not(.scrolled) {
    background-color: transparent;
    border-bottom: none;
}

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

.header-logo a {
    width: 160px;
    height: calc(var(--menu-height) - 1rem);
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url('/assets/images/logos/hepatica-blue.png');
    margin-top: 1rem;
}

header:not(.scrolled) .header-logo a {
    background-image: url('/assets/images/logos/hepatica-white.png');
}

.TemplateMenu>li>ul {
    margin-top: -2rem;
}

/* Nav */
.TemplateMenu a {
    font-weight: 600;
    font-size: 1.4rem;
    color: rgb(var(--black-color));
    font-family: articulatcf-normal, sans-serif;
}

header:not(.scrolled, .mobile-menu) .TemplateMenu>li>a:not(:hover) {
    color: rgb(var(--white-color));
}

header:not(.scrolled, .mobile-menu) .TemplateMenu>li>a:hover {
    color: rgb(var(--primary-light-color));
}

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

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

/* Mobilmeny */
.mobile-menu .header-logo {
    flex: 1 1 0px;
}

@media only screen and (max-width: 1200px) {
    .TemplateMenu>li>ul {
        margin-top: 0rem;
    }

    .header-logo a {
        max-width: 90px;
        height: calc(var(--menu-height) - 6rem);
    }

    .header-cta-wrapper .social-menu {
        display: flex;
    }
}

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

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

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

/* Top-section
========================================================================== */
.top-section {
    display: flex;
    align-items: center;
    min-height: 100vh;
    margin-top: calc(-1 * var(--menu-height));
    background-color: rgb(var(--black-color), .5);
}

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

.top-section .text-block {
    max-width: 80rem;
    margin-top: 20rem;
}

.top-section .section-title {
    font-size: 6rem;
    font-weight: 400;
    line-height: 1.1;
}

.top-section p:not(.text-label) {
    max-width: 65rem;
    margin: 0 auto;
    font-size: 1.7rem;
    color: rgb(var(--white-color));
}

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

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

@media only screen and (max-width: 1100px) {
    .top-section .section-block {
        width: 100%;
        margin-top: 20rem;
    }
}

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

/* Certifikat/Partners
========================================================================== */
.certificates {
    padding: 6rem 3rem;
    border-radius: 5px;
}

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

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

/* Hero - Grundkod
========================================================================== */
.hero {
    display: flex;
    align-items: flex-end;
    min-height: 60vh;
    padding-top: var(--menu-height);
    margin-top: calc(-1 * var(--menu-height));
    background-color: rgb(var(--black-color), .5);
}

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

.hero .section-title {
    font-size: 6rem;
    color: rgb(var(--white-color));
}

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

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

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

/* ==========================================================================
Undersida: Contact us
========================================================================== */
.section-contact .section-block-wrapper {
    justify-content: space-between;
}

.section-contact .col-2 {
    max-width: 50rem;
    padding: 3rem;
    background: rgb(var(--gray-light-color));
}

@media only screen and (max-width: 980px) {
    .section-contact .col-2 {
        max-width: 100%;
        margin-top: 3rem;
    }
}

/* ==========================================================================
Footer 
========================================================================== */
.footer {
    padding: 10rem 5rem 0;
    background: linear-gradient(120deg, rgba(var(--primary-color)) 0%, rgba(var(--primary-light-color)) 100%);
}

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

/* Footer header */
.footer-header {
    width: 100%;
}

.footer-header .section-title {
    color: rgb(var(--white-color));
}

.footer-header p:not(.section-title) {
    font-size: 1.9rem;
    color: rgb(var(--white-color));
}

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

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

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

.footer .small-title {
    padding: 0 0 1rem;
    font-size: 1.9rem;
    line-height: 1;
    color: rgb(var(--white-color));
}

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

.footer-submenu.large {
    column-count: 2;
    column-gap: 10rem;
}

.footer-top li,
.footer-top p,
.footer-top a {
    color: rgb(var(--white-color));
    text-decoration: none;
}

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

.footer .socials li {
    text-align: right;
}

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

.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;
    opacity: .6;
    filter: invert();
}

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

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

    .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-header p:not(.section-title) {
        font-size: 1.6rem;
    }

    .footer .socials li {
        display: inline-block;
    }
}

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

    /* Footer header */
    .footer-header p {
        font-size: 1.7rem;
    }

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

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

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