/* Medetect AB */

/* Typsnitt */
@import url('https://fonts.googleapis.com/css2?family=Gantari:ital,wght@0,400;0,600;0,700;1,400;1,700&family=Playfair+Display:ital@0;1&display=swap');

/* Animationer */
@import url('https://unpkg.com/aos@2.3.1/dist/aos.css');

/* ==========================================================================
Generellt 
========================================================================== */
:root {
    /* 	Layout  */
    --col-padding: 3rem;
    --menu-height: 6rem;
    --menu-height-scrolled: 6rem;
    --section-width: 140rem;

    /* 	Colors */
    --primary-color: 255, 133, 0;
    --primary-dark-color: 255, 84, 0;
    --secondary-color: 54, 83, 147;
    --secondary-dark-color: 33, 51, 89;

    --black-color: 0, 0, 0;
    --gray-dark-color: 58, 58, 58;
    --gray-light-color: 242, 242, 242;
    --white-color: 255, 255, 255;

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

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

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

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

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

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

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

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

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

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

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

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

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

@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: 'Gantari', sans-serif;
}

/* Rubriker */
.text-label {
    font-size: 1.4rem;
    font-weight: 600;
    text-transform: uppercase;
    padding-bottom: 1em;
    letter-spacing: .1em;
    color: rgb(var(--secondary-dark-color));
}

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

.small-title {
    font-size: 2.5rem;
    line-height: 1.4;
    padding-bottom: .7em;
    color: rgb(var(--secondary-dark-color));
}

.text-title {
    font-size: var(--base-size);
    font-weight: 700;
}

.ingress {
    font-size: calc(var(--base-size) * 1.2);
    font-weight: 700;
}

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

a {
    font-size: inherit;
    font-weight: 400;
    text-decoration: underline;
    color: inherit;
}

a:hover {
    text-decoration: none;
}

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

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

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

.text-regular {
    font-weight: 400;
}

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

.font-serif {
    font-family: 'Playfair Display';
    font-weight: 400;
}

em.font-serif {
    font-size: .87em;
}

/* List-check */
.list-check {
    list-style: none;
    padding: 0 0 0 2rem;
}

.list-check li {
    position: relative;
    padding: 0;
}

.list-check li::before {
    position: absolute;
    left: -2rem;
    top: 3px;
    content: '\f00c';
    color: rgb(var(--primary-color));
    font-weight: 400;
    font-size: .8em;
    font-family: 'Font Awesome 5 Pro';
}

/* List-chevron */
.list-chevron {
    list-style: none;
    padding: 0 0 0 2rem;
}

.list-chevron li {
    position: relative;
    padding: 0;
}

.list-chevron li::before {
    position: absolute;
    left: -2rem;
    top: 3px;
    content: '\f054';
    color: rgb(var(--primary-color));
    font-weight: 400;
    font-size: .8em;
    font-family: 'Font Awesome 5 Pro';
}

@media only screen and (max-width: 1200px) {
    .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;
    }
}

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

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

/* Knappar */
.btn,
.ContactSubmit {
    min-width: 10rem;
    padding: 1.3rem 2rem;
    font-size: 1.4rem;
    font-weight: 600;
    border-radius: 3rem;
    line-height: 1;
    text-align: center;
    text-decoration: none;
    transition: all .4s ease;
}

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

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

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

.btn-secondary-filled:hover {
    border: 1px solid rgb(var(--secondary-color));
    background-color: transparent;
    color: rgb(var(--secondary-color));
}

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

/* Arrow link */
.arrow-link {
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1;
    padding-right: 1rem;
    color: rgb(var(--gray-dark-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: 3.5rem;
    height: 3.5rem;
    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-dark-color));
}

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

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

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

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

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

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

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

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

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

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

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

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

/* BG Pattern */
.bg-pattern {
    background-image: url(/assets/images/histology-bg-top.jpg), url(/assets/images/histology-bg-bottom.jpg);
    background-position: left top, right bottom;
    background-size: 50%, auto;
    background-repeat: no-repeat;
}

@media only screen and (max-width: 1024px) {
    .bg-pattern {
        background-size: 100%;
    }
}

/* Parallax */
.parallax {
    min-height: 40rem;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

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

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

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

@media only screen and (max-width: 1200px) {
    .card-item.p-4 {
        padding: 2rem;
    }
}

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

/* Styling for arrow-link pa card */
.card-item .arrow-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0;
    transition: all .3s ease;
}

.card-item .arrow-link::after {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    background-color: rgb(var(--black-color));
    color: rgba(var(--white-color));
    transition: all .3s ease;
    border-radius: 50%;
}

.card-item:hover .arrow-link::after {
    transform: none;
    color: rgb(var(--black-color));
    background-color: rgb(var(--white-color));
    transition: all .3s ease;
}

/* Card 1-1 - Tjanster */
.card-1-1 .card-item {
    background-color: rgb(var(--white-color));
    border: 1px solid rgb(var(--gray-light-color));
    border-radius: 2rem;
    box-shadow: 0 1rem 2rem rgb(var(--black-color), .1);
    transition: all .3s ease;
}

.card-1-1 a.card-item:hover {
    background-color: rgb(var(--primary-color));
    border-color: rgb(var(--primary-dark-color));
    box-shadow: 0 1rem 2rem rgb(var(--primary-dark-color), .3);
    transition: all .3s ease;
}

.card-1-1 a.card-item:hover *,
.card-1-1 a.card-item:hover *::before {
    color: rgb(var(--white-color));
}

/* Card 3-1 - Image gallery */
.card-3-1 .card-item {
    background-color: rgb(var(--white-color));
    border: 1px solid rgb(var(--gray-light-color));
    border-radius: 2rem;
    box-shadow: 0 1rem 2rem rgb(var(--black-color), .1);
    transition: all .3s ease;
    overflow: hidden;
}

.card-3-1 .image-wrapper {
    position: relative;
    padding-top: 66.67%;
    overflow: hidden;
}

.card-3-1 .image-wrapper img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-position: right bottom;
}

/* Cards 3-2 - medarbetarkort */
.card-3-2 .card-item {
    display: flex;
    flex-direction: column;
    border-radius: 3px;
}

.card-3-2 .image-wrapper {
    width: 25rem;
    margin: -3rem auto 0;
    border-radius: 4px;
    border: 2px solid rgb(var(--gray-light-color));
}

.card-3-2 img {
    object-position: top;
    border-radius: 2px;
}

.card-3-2 .card-body {
    flex-grow: 1;
    width: 100%;
    padding: 2rem;
    text-align: center;
}

.card-3-2 .contact-options a {
    display: block;
    font-size: 1.4rem;
    font-style: normal;
    color: rgb(var(--gray-dark-color));
    padding: 0 0 1rem;
}

.card-3-2 a i {
    display: inline-block;
    margin: 0 1rem 0 0;
}

/* Split wrapper
========================================================================== */
.split-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

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

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

.split-image {
    width: 50%;
    border-radius: 2rem;
}

.split-image figcaption {
    font-size: 1.4rem;
    text-align: center;
    padding: 8px 0 0;
    color: rgb(var(--gray-dark-color));
}

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

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

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

.split-wrapper .sticky {
    position: sticky;
    align-self: flex-start;
    top: 25%;
}

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

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

    .split-content {
        padding: 4rem;
    }
}

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

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

    .split-content {
        padding: 3rem;
    }

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

    .split-wrapper .sticky {
        position: relative;
        top: auto;
    }
}

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

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

/* Header / Navigation
========================================================================== */
header {
    padding: 0;
    border-bottom: 1px solid transparent;
}

header.scrolled,
.SubPage header {
    border-color: rgb(var(--gray-light-color));
}

header .container {
    max-width: none;
    padding: 0 5rem;
}

/* top header */
.top-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 8rem;
    padding: 0.5rem 5rem;
    overflow: hidden;
    background-image: linear-gradient(66deg, rgb(var(--white-color)) 23rem, rgb(var(--secondary-dark-color)) 45rem);
    transition: .3s ease;
}

.top-header img {
    width: 20rem;
}

.top-header ul {
    display: flex;
    justify-content: flex-end;
    margin: 0;
    list-style: none;
}

.top-header a {
    padding: 1rem 2rem;
    font-size: 1.4rem;
}

/* Logo */
.header-logo {
    margin: 0 auto 0 0;
    display: none;
}

/* Nav */
.mainmenu {
    margin: 0 0 0 auto;
}

.TemplateMenu a {
    font-weight: 400;
    font-size: 1.6rem;
    color: rgb(var(--gray-dark-color));
}

.expandable::after {
    content: '\f078';
}

.parent.expandable::after {
    content: '\f054';
}

/* Dropdown */
header:not(.mobile-menu) .TemplateMenu ul {
    left: auto;
    right: 0;
    background-color: rgb(var(--gray-light-color));
}

header:not(.mobile-menu) .TemplateMenu ul a {
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1.3;
    padding: 1rem 2rem;
    color: rgb(var(--gray-color));
}

header:not(.mobile-menu) .TemplateMenu ul a:hover {
    background-color: rgb(var(--primary-color));
    color: rgb(var(--black-color));
}

/* hover effect */
header:not(.mobile-menu) .TemplateMenu a:hover::before,
header:not(.mobile-menu) .TemplateMenu li.active a::before {
    visibility: visible;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}

header:not(.mobile-menu) .TemplateMenu a::before {
    background-color: rgb(var(--primary-color));
    visibility: hidden;
    position: absolute;
    content: "";
    height: 3px;
    top: 47px;
    width: 50%;
    left: 50%;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}

.TemplateMenu ul a::before,
.mobile-menu .TemplateMenu a::before {
    display: none;
}

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

.header-cta-wrapper li {
    margin: 0 .5rem;
}

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

/* Mobilmeny */
.mobile-menu {
    background: rgb(var(--white-color));
}

.mobile-menu .top-header {
    display: none;
}

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

.mobile-menu .header-logo {
    display: block;
}

.mobile-menu .header-logo img {
    padding: 2rem 0;
}

@media only screen and (max-width: 1300px) {
    header .container {
        padding: 0 2rem;
    }
}

@media only screen and (max-width: 580px) {
    header .container {
        padding: 0 1rem;
    }

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

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

/* Top-section
========================================================================== */
.top-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 16rem);
    background-color: rgb(var(--black-color), .0);
    margin: 0 2rem 2rem;
}

.top-section::after {
    position: absolute;
    content: '';
    width: calc(100% + 10px);
    height: calc(100% + 10px);
    display: block;
    top: -5px;
    left: -5px;
    box-shadow: inset 0rem 0rem 2rem 3rem rgb(var(--white-color));
}

.top-section .text-block {
    max-width: 80rem;
    text-align: center;
}

.top-section .section-title {
    font-size: 5rem;
    font-weight: 700;
    padding: 0 0 .1em;
    text-shadow: -2px 4px 5px rgb(var(--black-color));
}

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

@media only screen and (max-width: 1000px) {
    .top-section {
        box-shadow: none;
        margin: 0;
    }
}

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

/* Section Service parallax
========================================================================== */
.section-sevice-img {
    background-image: url('/assets/images/service-2000px.png');
    background-position: top;
}

/* Sektion med slider
========================================================================== */

/* Resizer */
/* For att kunna slida mellan tva bilder - Before and after slider */
.before-after-slider {
    width: 100%;
    position: relative;
}

.before-after-slider img {
    display: block;
    width: 100%;
    max-width: unset;
}

.after-image {
    display: block
}

.before-image {
    position: absolute;
    height: 100%;
    width: 50%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 2;
}

.resizer {
    position: absolute;
    z-index: 5;
    top: 0;
    left: 50%;
    height: 100%;
    width: 4px;
    background: rgb(var(--white-color));
    /*Stop vertical scrolling on touch*/
    -ms-touch-action: pan-y;
    touch-action: pan-y;
}

.resizer::after {
    position: absolute;
    content: '\f337';
    display: flex;
    justify-content: center;
    align-items: center;
    top: 50%;
    left: 50%;
    width: 4rem;
    height: 4rem;
    font-family: 'Font Awesome 5 Pro';
    font-size: var(--base-size);
    font-weight: 400;
    border-radius: 50%;
    color: rgb(var(--white-color));
    background: rgb(var(--primary-color));
    border: 3px solid rgb(var(--white-color));
    transform: translate(-50%, -50%);
    cursor: pointer;
}

/* For att kunna zooma in pa produktbilder vid anvandning av dator */
body:not(.isMobile) .slider-head .image-wrapper {
    overflow: hidden;
    cursor: zoom-in;
}

body:not(.isMobile) .slider-head .image-wrapper img {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease-out;
}

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

/* Hero - Grundkod
========================================================================== */
.hero .section-block {
    display: flex;
    align-items: center;
    padding-top: 7rem;
    padding-bottom: 7rem;
}

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

.hero .section-title {
    padding-bottom: 0;
}

/* Subnavigering
========================================================================== */
.section-sub-header {
    position: sticky;
    z-index: 1;
    top: calc(var(--menu-height) + 8rem + 2px);
    background-color: rgb(var(--white-color));
    border-bottom: 1px solid rgb(var(--gray-light-color));
    overflow: auto;
    white-space: nowrap;
}

.EditMode .section-sub-header {
    position: relative;
    top: unset;
}

.section-sub-header .section-block {
    padding-top: 0;
    padding-bottom: 0;
}

.section-sub-header .section-block-wrapper {
    max-width: none;
}

.mobile-menu+main .section-sub-header {
    top: var(--mobile-menu-height);
}

.sub-header ul {
    display: flex;
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.sub-header ul li {
    display: inline-block;
}

.sub-header a {
    font-size: 1.4rem;
    font-weight: 300;
    text-decoration: none;
    line-height: 4rem;
    color: rgb(var(--gray-dark-color));
    padding: 0 1rem;
    transition: all .3s ease;
}

.sub-header a:hover {
    color: rgb(var(--primary-color));
}

.parent-level::after {
    content: '\f054';
    font-family: 'Font Awesome 5 Pro';
    font-weight: 700;
    font-size: .7em;
    color: rgb(var(--black-color));
}

.parent-level a {
    font-weight: 700;
    color: rgb(var(--black-color));
}

.sub-header .active {
    margin: 0 auto 0 0;
}

/* ==========================================================================
Undersida: Image Gallery
========================================================================== */
@media only screen and (max-width: 1000px) {
    .gallery.cards-wrapper .card-item {
        width: calc(100% / 2 - 2rem);
        margin: 1rem;
    }
}

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

/* ==========================================================================
Undersida: Academic Collaborations > Enskild undersida
========================================================================== */
/* CTA split
========================================================================== */
.cta-split {
    justify-content: space-between;
}

.cta-split .split-content {
    width: calc(50% - 1.5rem);
    border-radius: 2rem;
}

@media only screen and (max-width: 1000px) {
    .cta-split .split-content {
        width: 100%;
        margin: 1.5rem 0;
    }
}

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

/* ==========================================================================
Undersida News
========================================================================== */
.publication-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.publication-list li {
    margin: 0 0 4rem;
}

.publication-list a {
    color: rgb(var(--secondary-color));
    text-decoration: none;
    font-weight: 700;
}


/* ==========================================================================
Undersida Career
========================================================================== */
.section-form-intro .section-block {
    padding-top: 5rem;
}

.section-application .col-wrapper {
    max-width: 70rem;
    border-radius: 2rem;
    background-color: rgb(var(--white-color));
    box-shadow: 0 1.5rem 3rem rgb(var(--black-color), .1);
    margin: -7rem auto 0;
    overflow: hidden;
}

.section-application .text-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 7rem;
}

.section-application .ContactForm {
    display: none;
}

/* ==========================================================================
Undersida Contact
========================================================================== */
.section-form-intro .section-block {
    padding-top: 5rem;
}

.section-form .col-wrapper {
    max-width: 70rem;
    border-radius: 2rem;
    background-color: rgb(var(--white-color));
    box-shadow: 0 1.5rem 3rem rgb(var(--black-color), .1);
    margin: -7rem auto 0;
    overflow: hidden;
}

.section-form .text-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 7rem;
}

.section-form .Contact,
.form-wrapper {
    padding: 3rem;
}

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

    .section-form .Contact,
    .form-wrapper {
        padding: 2rem;
    }
}

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

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

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

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

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

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

.footer-top li,
.footer-top p,
.footer-top a:not(.circle-icon) {
    color: rgb(var(--white-color));
}

/* Partners */
.partners {
    display: flex;
    flex-wrap: wrap;
    margin: 1rem 0;
    border-bottom: 1px solid rgb(var(--white-color), .2);
}

.partner-logo {
    height: 4.5rem;
    border-radius: 8px;
    border: 1px solid rgb(var(--gray-color));
    padding: 4px;
    margin: 0 1rem 1rem 0;
    background-color: rgb(var(--white-color));
    border: 1px solid rgb(var(--white-color));
}

.partner-logo img {
    height: 100%;
}

.footer .circle-icon {
    width: 4.5rem;
    height: 4.5rem;
    margin: 0 1rem 1rem 0;
    background-color: rgb(var(--primary-color));
    color: rgb(var(--white-color));
    border: 1px solid rgb(var(--primary-color));
}

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

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

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

@media only screen and (max-width: 1024px) {
    .footer {
        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%;
    }
}

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