/* Hedera Doctor */

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

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

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

@font-face {
    font-family: 'Sofia Pro Bold';
    font-style: normal;
    font-weight: normal;
    src: local('Sofia Pro Bold'), url('/assets/fonts/Sofia Pro Bold Az.woff') format('woff');
}

@font-face {
    font-family: 'Sofia Pro Black';
    font-style: normal;
    font-weight: normal;
    src: local('Sofia Pro Black'), url('/assets/fonts/Sofia Pro Black Az.woff') format('woff');
}

/* ==========================================================================
Generellt
========================================================================== */
:root {
    /* 	Colors */
    --primary-color: 83, 181, 227;
    --secondary-color: 113, 183, 171;

    --accent-hederagroup-color: 75, 132, 61;
    --accent-hederaassistans-color: 242, 142, 1;
    --accent-lilab-color: 211, 174, 208;

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

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

    /* 	Mobile nav */
    --activate-mobile-menu: 1200;
    --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;
}
.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;
}

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

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

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

/* Bredder */
.mw-none .section-block-wrapper {
    max-width: none;
}
.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;
}

/* Ovriga klasser */


@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;
    color: rgb(var(--gray-dark-color));
}

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

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

.small-title {
    padding-bottom: .3em;
    font-size: 2.5rem;
    font-weight: 500;
    line-height: 1.4;
    font-family: 'Sofia Pro Medium', sans-serif;
}
.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: 75rem;
    margin-left: auto;
    margin-right: auto;
}

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

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

.text-small {
    font-size: 1.5rem;
}

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

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

/* 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(--secondary-color));
    transition: .3s ease;
}

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

.circle-icon em:before,
.circle-icon i:before {
    font-size: 1.4rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

/* Object position */
.of-wrapper img.op-50-31 {
    object-position: 50% 31%;
}

/* Video ratio */
.video-ratio {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}

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

/* Bakgrundsbilder och videos
========================================================================== */
.bg-image,
.bg-video {
    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;
}

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

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

/* 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-25-0 .card-item {
    width: calc(100% / 4);
}

.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: 1200px) {
    .cards-wrapper.w-25 .card-item {
        width: calc((100% / 2) - 2rem);
    }
}

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

/* Card 2-4 */
.card-2-4 .card-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

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

/* Card 2-6 */
.card-2-6 .icon-wrapper {
    position: relative;
    color: rgb(var(--primary-color));
}

.card-2-6 .icon-wrapper::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgb(var(--secondary-color));
    transform: translateY(-50%);
}

.card-2-6 .icon-wrapper i {
    z-index: 1;
    position: relative;
    padding: 2rem;
    font-size: 5rem;
    background: rgb(var(--white-color));
}

@media only screen and (max-width: 800px) {
    .card-2-6.w-25-0 .card-item {
        width: calc(100% / 2);
        margin: 2rem 0;
    }
}

@media only screen and (max-width: 480px) {
    .card-2-6 .icon-wrapper i {
        font-size: 3rem;
    }
}

/* Card 2-7 */
.cards-wrapper.card-2-7 .card-item {
    margin-top: 5rem;
}

.card-2-7 .card-header {
    width: 95%;
    padding: 1rem;
    margin: -4rem auto 0;
    text-align: center;
    background: rgb(var(--primary-color));
}

.card-2-7 .card-header p {
    padding: 0;
    font-size: 2.2rem;
}

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

.card-2-7 .card-footer .btn-wrapper {
    margin: 0 0 2rem;
}

.card-2-7 .logo-wrapper {
    display: block;
    height: 5rem;
    margin: 0 auto;
    text-align: center;
    text-decoration: none;
}

.card-2-7 .logo-wrapper img.contain {
    object-fit: scale-down;
}

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

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

header:not(.mobile-menu) .header-logo img {
    max-width: 25rem;
}

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

/* Dropdown */
header:not(.mobile-menu) .TemplateMenu ul {
    border-left: 1px solid rgb(var(--gray-light-color));
    border-bottom: 1px solid rgb(var(--gray-light-color));
}

/* 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.4;
    white-space: nowrap;
}

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

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

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

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

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

.top-section .section-title {
    font-size: 6rem;
    font-family: 'Sofia Pro Black', sans-serif;
}

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

/* Instagram
========================================================================== */
.eapps-instagram-feed-posts-item {
    border-radius: 1rem;
    overflow: hidden;
}

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

/* Hero - Grundkod
========================================================================== */
.hero {
    display: flex;
    align-items: center;
    min-height: 50rem;
    text-align: center;
}

.hero.bg-image {
    background-color: rgb(var(--black-color), .5);
}

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

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

.hero.bg-image .section-title {
    color: rgb(var(--white-color));
}

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

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

/* Text till vanster, formular till hoger
========================================================================== */
.section-text-form .section-block-wrapper {
    justify-content: space-between;
}

.section-text-form .col-1 {
    width: 50rem;
    padding: 3rem;
    border-radius: 2rem;
    background: rgb(var(--secondary-color));
}

.section-text-form .ContactForm p {
    display: none;
}

.ContactForm input[type="text"],
.ContactForm textarea {
    padding: 1.2rem 1.5rem;
    font-size: 1.5rem;
    border: none;
    border-radius: 5px;
}

select {
    width: 100%;
    height: 4rem;
    padding: 0 1rem;
    border-radius: 1rem;
    border: none;
}

.section-text-form .ContactSubmit,
.section-form .ContactSubmit,
.section-contact .ContactSubmit {
    color: rgb(var(--secondary-color));
    border-color: rgb(var(--white-color));
    background: rgb(var(--white-color));
}

.section-text-form .ContactSubmit:hover,
.section-form .ContactSubmit:hover,
.section-contact .ContactSubmit:hover {
    color: rgb(var(--white-color));
    border-color: rgb(var(--white-color));
    background: transparent;
}

/* ==========================================================================
Undersida: For vardgivare / For konsulter
========================================================================== */

/* Special-formular
========================================================================== */
.heading-option-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.heading-option-wrapper select {
    width: auto;
    height: 3rem;
    margin-left: 2rem;
    font-size: 1.6rem;
}

/* Formularen */
.section-form .section-block {
    padding-top: 0;
    background: rgb(var(--gray-light-color));
}

.section-form .section-block-wrapper {
    width: 50rem;
    padding: 3rem;
    border-radius: 2rem;
    background: rgb(var(--secondary-color));
}



/* ==========================================================================
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%;
}
.section-anons .info-wrapper{
    border-left: none;
}
}


/* ==========================================================================
Undersida: Kontakt 
========================================================================== */
.section-contact .col-0 {
    margin-bottom: 5rem;
}

.section-contact .col-1 {
    width: calc(100% - 50rem);
}

.section-contact .col-1 iframe {
    height: 62rem;
}

.section-contact .col-2 {
    width: 50rem;
    padding: 3rem;
    border-radius: 2rem;
    background: rgb(var(--secondary-color));
}

.section-contact .ContactForm p {
    display: block;
}

@media only screen and (max-width: 980px) {
    .section-contact .col-0 {
        margin-bottom: 3rem;
    }

    .section-contact .col-1 {
        order: 3;
        width: 100%;
        margin-top: 3rem; 
    }
    
    .section-contact .col-2 {
        order: 2;
        width: 100%;
    }
} 

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

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

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

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

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

.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(--secondary-color));
}

/* Footer middle */
.footer-logos {
    display: flex;
    justify-content: center;
    text-align: center;
    padding: 0;
    margin-bottom: 0;
    list-style: none;
}

.footer-logos li { 
    margin: 0 1.5rem;
}

.footer-logos .image-wrapper {
    height: 8rem;
    margin-bottom: 5px
}

.footer-logos .image-wrapper img {
    width: auto;
    height: 100%;
}

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

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

@media only screen and (max-width: 500px) {
    .footer-logos {
        flex-direction: column;
    }
}