/* Hedera Life Science */

/* Fonts */
@font-face {
    font-display: swap;
    font-family: 'Sofia Pro Regular';
    src: local('Sofia Pro Regular'), url('/assets/fonts/Sofia Pro Regular Az.woff') format('woff');
}

@font-face {
    font-family: 'Sofia Pro Medium';
    src: local('Sofia Pro Medium'), url('/assets/fonts/Sofia Pro Medium Az.woff') format('woff');
    font-display: swap;
}

/* ==========================================================================
Generellt
========================================================================== */
:root {
    /* 	Colors */
    --primary-color: 226, 5, 19;
    --primary-light-color: 255, 230, 232;

    --hedera-group-color: 71, 139, 92;

    --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: 5rem;
    --menu-height: 8rem;
    --menu-height-scrolled: 8rem;
    --section-width: 140rem;

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

    /* 	Mobile nav */
    --activate-mobile-menu: 980;
    --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-3 .section-block,
.p-3:not(.section-wrapper) {
    padding: 3rem; 
}

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

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

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

/* Margins */
.mb-3 {
    margin-bottom: 3rem;
}
/* Bredder */
.mw-1000 .section-block-wrapper,
.mw-1000:not(.section-wrapper) {
    max-width: 100rem;
}
.mw-1200 .section-block-wrapper,
.mw-1200:not(.section-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: 'Sofia Pro Regular', sans-serif;
}

/* Rubriker */
.text-label {
    padding-bottom: 1em;
    font-size: 1.5rem;
    text-transform: uppercase;
    color: rgb(var(--primary-color));
    font-family: 'Sofia Pro Medium';
}

.section-title {
    padding-bottom: .5em;
    font-size: 4rem;
    line-height: 1.2;
    font-family: 'Sofia Pro Medium';
}

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

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

}

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

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

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

.text-bold {
    font-family: 'Sofia Pro Medium';
}

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

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

/* 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;
    border-radius: 2rem;
    text-align: center;
    text-decoration: none;
    font-family: 'Sofia Pro Medium', sans-serif;
    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;
}

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

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

/* Farger
========================================================================== */
/* Bakgrunder */
.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));
}

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

/* Grafiska element
========================================================================== */
/* Border radius */
.br {
    border-radius: 2rem;
    overflow: hidden;
}


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

.bg-image-wrapper {
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
/* Video */
.bg-video-wrapper video {
    z-index: -1;
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%,-50%);
    object-fit: cover;
}

.top-video.bg-video-wrapper video{
     top: 100%;
}
@media (max-width: 768px) {
    .bg-video {
        height: auto;
        padding-top: 56.25%;
    }

    .bg-video-wrapper {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .bg-video-wrapper video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transform: none;
        min-width: unset;
        min-height: unset;
    }
    .top-video.bg-video-wrapper video{
     top: 0%;
}
}
/* Cards
========================================================================== */
.cards-wrapper {
    display: flex;
    flex-wrap: wrap;
}

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

/* Card item */
.card-item {
    border-radius: 2rem;
}

.card-item.card-highlighted {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* Bredder */
.cards-wrapper.w-33 .card-item {
    width: calc((100% / 3) - 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:not(.w-100) {
        margin-left: 0;
        margin-right: 0;
    }

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

@media only screen and (max-width: 580px) {
    /* Paddings */
    .cards-wrapper .p-3 {
        padding: 2rem;
    } 
}

/* Card 2-2 */
.card-2-2 .card-header {
    display: inline-flex;
    justify-content: center;
    align-items: center; 
    width: 8rem;
    height: 8rem;
    margin-bottom: 1rem;
    border-radius: 1.5rem;
}

.card-2-2 .card-header i {
    font-size: 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,
.split-video {
    width: 50%;
}

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

.split-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

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

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

@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,
    .split-video {
        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));
    background: rgba(255, 255, 255, 0.878);
}



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

/* Nav */
.TemplateMenu a {
    font-size: 1.4rem;
    color: rgb(var(--black-color));
    font-family: 'Sofia Pro Medium', sans-serif;
}

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

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

.mobile-menu .header-cta-wrapper {
    flex: none;
}

@media only screen and (max-width: 580px) {
    /* CTA  */
    .header-cta-wrapper .btn {
        padding: 0.7rem 1.5rem;
    }
}

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

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

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

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

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

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

.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: 580px) {
    .top-section .section-title {
        font-size: 3rem;
    }
    .top-section {
    min-height: calc(60vh - var(--menu-height));
}
}

/* Om oss
========================================================================== */
.section-about .col-0 .block-object,
.section-about .col-1 {
    width: 74rem;
}

.section-about .col-2 {
    width: calc(100% - 74rem);
}

/* Certs */
.certs-wrapper .card-item {
    width: calc((100% / 2) - 1rem);
    padding: 1rem;
    margin: .5rem;
    border: 1px solid rgb(var(--gray-light-color));
}

.certs-wrapper .image-wrapper {
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 12rem;
}

.certs-wrapper .image-wrapper.double img {
    max-width: calc(100% / 2 - .3rem);
    max-height: 100%;
}

.certs-wrapper .card-body {
    margin-top: 1rem;
}

.certs-wrapper p {
    font-size: 1.4rem;
    line-height: 1.2;
}

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

    .section-about .col-0 .block-object,
    .section-about .col-1 {
        width: 70rem;
    }

    .section-about .col-2 {
        width: calc(100% - 70rem);
    }

    /* Certs */
    .certs-wrapper .image-wrapper {
        height: 11rem;
    }
}

@media only screen and (max-width: 1200px) {
    .section-about .col-1 {
        width: 100%;
        padding: 0;
    }

    .section-about .col-2 {
        width: 100%;
        padding: 0;
    }

    .section-about .col-0 .block-object,
    .section-about .col-1 .block-object {
        max-width: 70rem;
        width: 100%;
    }

    /* Certs */
    .section-about .col-2 {
        padding: 5rem;
        margin-top: 5rem;
        border-radius: 2rem;
        background: rgb(var(--gray-light-color));
    }

    .certs-wrapper {
        margin-top: 2rem;
    }

    .certs-wrapper .card-item {
        padding: 2rem;
        background: rgb(var(--white-color));
    }
}

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

    /* Certs */
    .section-about .col-2 {
        padding: 2rem;
    }

    .certs-wrapper {
        margin-top: 1rem;
    }

    .certs-wrapper .card-item {
        padding: 1rem;
    }
}

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

/* Karta
========================================================================== */
@media only screen and (max-width: 680px) {
    .section-map iframe {
        height: 30rem;
    }
}

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

/* Hero - Grundkod
========================================================================== */
.hero {
    min-height: 40rem;
    /*background-image: linear-gradient(180deg, rgb(var(--gray-light-color)) 70%, rgb(var(--white-color)) 100%);*/
    background-color: rgb(var(--black-color), .5);
    display: flex;
    justify-content: center;
    align-items: center;
}

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

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

@media only screen and (max-width: 980px) {
    .hero {
        display: flex;
        align-items: center;
        min-height: 30rem;
    }

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

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

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

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

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

/* ==========================================================================
Undersida: For kunder / For kandidater
========================================================================== */
.section-scroll {
    overflow: hidden;
}

/* Slider */
.scroll-wrapper.cards-wrapper {
    margin-bottom: 5rem;
}

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

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

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

/* Cards */
.scroll-wrapper .card-item {
    margin: 0 2rem 0 0;
}

.step {
    position: relative;
    padding: 0;
    margin-bottom: 2rem; 
    font-size: 7rem;
}

.step::after {
    content: '';
    position: absolute;
    top: calc(50% + 3px);
    right: 0;
    width: calc(100% - 10rem);
    height: 2px;
    background: rgb(var(--primary-color)); 
    transform: translateY(-50%);
}

/* Slick Arrow */
.scroll-wrapper .slick-arrow {
    position: absolute;
    top: auto;
    bottom: -5rem;
    width: 4rem;
    height: 4rem;
    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: 7rem;
}

@media only screen and (max-width: 580px) {
    .scroll-wrapper .slick-next {
        left: 7rem;
        right: auto;
    }

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

/* ==========================================================================
Undersida: Lediga uppdrag
========================================================================== */

/* Sok + filtrering
========================================================================== */
/* Sok */
.search-wrapper {
    position: relative;
    margin-bottom: 3rem;
}

.search-wrapper em {
    position: absolute;
    left: 2rem;
    top: 50%;
    font-size: 2rem;
    transform: translateY(-50%);
}

.search-wrapper input {
    width: 40rem;
    height: 4rem;
    padding: 0 2rem 0 5rem;
    margin: 0 .6rem;
    border: none;
    border-radius: 5rem;
    box-shadow: 1px 1px 5px rgb(var(--black-color), .2);
    transition: .5s ease;
}


.card-item.hidden-search-item {
    display: none;
}

/* Taggar */
.tags-wrapper{
    display: flex;
    flex-direction: row;
}
.tags-heading {
    display: none;
}

.tags-list {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.tag {
    padding: .3rem 1.5rem;
    margin: .6rem .5rem;
    font-size: 1.5rem;
    border: 1px solid rgb(var(--primary-color));
    border-radius: 2rem;
    cursor: pointer;
    transition: .5s ease;
    line-height: 2;
}

.tag:hover,
.tag.tag-picked {
    color: rgb(var(--white-color));
    background: rgb(var(--primary-color));
}

@media only screen and (max-width:580px) {
    /* Sok */
    .search-wrapper input {
        width: 100%;
    }

    /* Taggar */
    .tags-wrapper {
        position: relative;
        max-width: 100%;
        background: transparent;
        cursor: pointer;
    }

    .tags-heading {
        display: block;
        width: 100%;
        padding: 1rem 2rem;
        background-color: rgb(var(--primary-color));
    }

    .tags-heading p {
        display: flex;
        justify-content: space-between;
        padding-bottom: 0;
        color: rgb(var(--white-color));
    }

    .tags-heading i {
        margin-left: 2rem;
    }

    .tags-list {
        display: none;
        z-index: 1;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        text-align: left;
        background: rgb(var(--white-color));
        box-shadow: 1px 1px 10px rgba(var(--black-color), .1);
    }

    .tags-wrapper.opened .tags-list {
        display: block;
    }

    .tags-wrapper .tag {
        display: block;
        padding: 1rem 2rem;
        margin: 0;
        letter-spacing: normal;
        text-transform: initial;
        box-shadow: none;
        border-radius: 0;
    }
}
.section-uppdrag a{
    text-decoration: none;
}
.section-uppdrag .card-body:hover{
    background-color: rgb(var(--gray-light-color), .5);
}
.row-pairs {
  display: flex;
  justify-content: space-between;
}

.row-pairs p {
  flex: 1;
  margin: 0;
}
@media (max-width: 600px) {
  .row-pairs {
    flex-direction: column;
  }
  .tags-wrapper{
    flex-direction: column;
}
}
/* ==========================================================================
Undersida: Anonser
========================================================================== */
.section-anons .col-0,
.section-anons .col-1{
    background-color: rgb(var(--white-color));
    padding: 4rem;
}

.section-anons .col-0{
  padding-right: 1rem;
}
.section-anons .info-wrapper{
    border-left: 0.5rem solid rgb(var(--primary-color));
}
@media only screen and (max-width: 980px) {
.section-anons .col-0{
      max-height: 100%;
      padding-right: 2rem;
      padding-left: 2rem;
}
.section-anons .info-wrapper{
    border-left: none;
}
}
/* ==========================================================================
Undersida: Karriar / Kontakt
========================================================================== */
.section-text-form .col-1 {
    width: calc(100% - 65rem);
}

.section-text-form .col-2 {
    position: sticky;
    top: calc(var(--menu-height) + 2rem);
    width: 65rem;
    align-self: flex-start;
    padding: 5rem;
    border-radius: 2rem;
    background: rgb(var(--gray-light-color));
}

.section-text-form .col-1 .col-wrapper,
.section-text-form .col-1 .block-container,
.section-text-form .col-1 .block-object,
.section-text-form .col-1 iframe {
    height: 100%;
}

.ContactForm .gdpr p {
    display: none;
}

.ContactForm .gdpr label {
    color: rgb(var(--gray-dark-color));
    line-height: 1.2;
    padding-left: 0.3rem;
}

.ContactForm .gdpr input {
    position: relative;
    top: -8px;
}

.ContactForm > div.submit-button-container {
    margin-bottom: 0;
}

@media only screen and (max-width: 1500px) {
    .section-text-form .col-1 {
        width: 50%;
    }

    .section-text-form .col-2 {
        width: 50%;
    }
}

@media only screen and (max-width: 980px) {
    .section-text-form .col-1 {
        width: 100%;
    }

    .section-text-form .col-2 {
        width: 100%;
        margin-top: 5rem;
    }

    .section-text-form .col-1 iframe {
        height: 25rem;
    }
}

@media only screen and (max-width: 480px) {
    .section-text-form .col-2 {
        padding: 2rem;
    }
}

/* ==========================================================================
Footer 
========================================================================== */
.footer {
    padding: 6rem 5rem 0;
    border-top: 1px solid rgb(var(--gray-light-color));
}

/* Footer logo */
.footer-header {
    width: 100%;
    margin-bottom: 3rem;
}

.footer-logo {
    max-width: 35rem;
}

.footer-logo p {
    margin-left: 6.3rem;
}

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

.footer-menu {
    width: calc(30% - 4rem);
}

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

.footer-menu.socials {
    width: 4rem;
}

.footer-menu.footer-menu-large .footer-submenu {
    column-count: 2;
}

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

.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(.circle-icon):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;
    border-top: 1px solid rgb(var(--gray-color));
}

.footer-bottom p,
.footer-bottom a {
    font-size: 1.4rem;
    line-height: 1.6;
}

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

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

    .footer-menu.socials {
        width: 100%;
    }

    .footer-menu.socials .footer-submenu {
        display: flex;
    }
}

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

    .footer-logo {
        margin: 0 auto 3rem;
    }

    /* Footer header */
    .footer-logo p {
        margin-left: 0;
    }

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

    .footer-menu.footer-menu-large .footer-submenu {
        column-count: 1;
    }

    .footer-menu.socials .footer-submenu {
        justify-content: center;
    }

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

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