/* ikredit Finansservice AB Facelift*/ 

/* @import url('https://fonts.googleapis.com/css?family=PT+Sans:400,700|Titillium+Web:300,400,600,700'); */

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

    /* 	Colors */
    --primary-color: 64, 198, 234;
    --primary-dark-color: 14, 104, 129;
    /* --secondary-color: 102, 209, 238; */

    --black-color: 0, 0, 0;
    --gray-color: 64, 64, 64;
    --grey-dark-color: 73, 73, 73;
    --gray-light-color: 243, 243, 243;
    --white-color: 255, 255, 255;

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

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

/* Bredder */

.mw-1000 .section-block-wrapper,
.mw-1000:not(.section-wrapper) {
    max-width: 100rem;
}

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

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

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

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

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

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

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

.pl-3 {
    padding-left: 3rem;
}

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

.py-5 .section-block {
    padding: 5rem 0;
}
/* Margins */
.mt-3 {
    margin-top: 3rem !important;
}
.mb-2 {
    margin-bottom: 2rem;
}

.mt--10 {
    margin-top: -10rem;
}

.EditMode .mt--10 {
    margin: 0 !important;
}

@media only screen and (max-width: 1024px) {
    .section-block {
        padding: 8rem 3rem;
    }
}

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

    .mt--10 {
        margin-top: -5rem;
    }
}

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

/* Rubriker */
.text-label {
    padding-bottom: 1em;
    font-size: 1.4rem;
    font-weight: 800;
    text-transform: uppercase;
}

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

.small-title {
    padding-bottom: 0.3em;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.4;
}

.small-title-small {
    padding-bottom: 0.3em;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.4;
}

.ingress {
    font-size: calc(var(--base-size) * 1.2);
    font-weight: 700;
}
 
/* Brodtext och lankar */
p,
li {
    color: rgb(var(--gray-dark-color));
}

a.inline {
    display: inline;
}

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

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



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

.list-check.text-white li,
.list-check.text-white li::before {
    color: rgb(var(--white-color));
}

/* Ovriga klasser */
.align-center .section-block-wrapper {
    align-items: center;
}
.text-block {
    max-width: 70rem;
}

.text-block-center {
    max-width: 75rem;
    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 länkar
========================================================================== */
.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;
    font-weight: 600;
    border-radius: 2rem;
    text-align: center;
    text-decoration: none;
    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;
}

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

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

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

.btn-white-filled:hover {
    color: rgb(var(--white-color));
    border: 1px solid rgb(var(--white-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;
}

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

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

.bg-gray-light {
    background-color: rgb(var(--gray-light-color));
}
.bg-primary {
    background-color: rgb(var(--primary-color));
}
.bg-primary-dark {
    background-color: rgb(var(--primary-dark-color));
}
.bg-gradient-primarylight-white {
    background-image: linear-gradient(to top, rgb(var(--white-color)) 50%, rgb(var(--primary-dark-color), 0.2) 50%);
}

/* Textfärger */
.text-white {
    color: rgb(var(--white-color));
}

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

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

/* Grafiska delar
========================================================================== */
/* Borders */
.border-left-white {
    border-left: 1rem solid rgb(var(--white-color));
}
  
.border-right-white {
    border-right: 1rem solid rgb(var(--white-color));
}

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

.border-left-primary {
    border-left: .5rem solid rgb(var(--primary-color));
}

/* Border radius */
.br-1 {
    border-radius: 1rem;
}

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

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

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

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

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

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

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


/* Ruta med box-shadow hogst upp */
.cutout-shadow-wrapper {
    position: relative;
    z-index: 2;
}

.cutout-shadow-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 20rem;
    box-shadow: 0 1rem 2rem rgba(var(--black-color),.1);
}

.cutout-shadow {
    z-index: 1;
    position: relative;
    padding: 5rem;
    background-color: rgb(var(--white-color));
    border-radius: .5rem .5rem 0 0;
}

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


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

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

/* Crossfade */
.bg-crossfade {
    position: relative;
    background: linear-gradient(90deg, rgba(var(--black-color), .2) 0%, rgba(var(--black-color), .5) 0%, rgba(var(--black-color), 0) 100%);
}

.fade-slider {
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.fade-slider div {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.fade-slider.slick-slider {
    position: absolute;
}


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

.parallax .section-block {
    min-height: 40rem;
    background-color: rgb(var(--black-color), .4)
}
.parallax-finansiering {
    background-image: url('/assets/images/mekaniker-2000px.jpg');
}

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

/* 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: .2s ease;
    overflow: hidden;
}

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

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

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

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

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

.cards-wrapper .card-item.w-50-0 {
    width: calc((100% / 2));
}

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

@media only screen and (max-width: 1050px) {
    .cards-wrapper.w-25-0 .card-item {
        width: calc((100% / 3));
    }

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

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

@media only screen and (max-width: 480px) {
    .cards-wrapper.w-25-0 .card-item {
        width: 100%;
    }
}


/* Card 2-1 */
.card-2-1 a.card-item:hover {
    background: rgb(var(--primary-light-color));
}

.card-2-1 .card-header {
    margin-bottom: 2rem;
    font-size: 5rem;
}

/* Card 3-1 */
.card-3-1 .card-item.bg-gray-light {
    border: 1px solid rgb(var(--gray-light-color));
}

.card-3-1 .card-item.bg-white {
    border: 1px solid rgb(var(--white-color));
}

.card-3-1 a.card-item.bg-white:hover {
    background-color: rgb(var(--gray-light-color));
}

.card-3-1 a.card-item.bg-gray-light:hover {
    background-color: rgb(var(--white-color));
}

.card-3-1 .card-footer.p-2 {
    padding-top: 0;
}

@media only screen and (max-width: 680px) {
    .card-3-1 .p-2 {
        padding: 1rem;
    }

    .card-3-1 .btn {
        padding: 0.6rem 2rem;
    }
}

/* Card 3-6 */
.card-3-6 .card-item {
    position: relative;
    padding: 25rem 3rem 3rem;
    min-height: 40rem;
}

.card-3-6 .image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.card-3-6 .image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, .2) 60%, rgba(0, 0, 0, .8) 100%);
}

.card-3-6 img {
    transition: .3s ease-in-out;
}

.card-3-6 .card-item:hover img {
    transform: scale(1.04);
}

.card-3-6 .card-body {
    z-index: 1;
    position: relative;
}

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

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

@media screen and (max-width: 1300px) {
    .split-content {
        padding-top: 3rem;
        padding-bottom: 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 {
        width: 100%;
        min-height: 20rem;
    }

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

    /* Split med primary bakgrund*/
    .section-wrapper.bg-primary-dark .split-content {
        padding: 8rem 0 3rem;
    }
    
    .section-wrapper.bg-primary-dark .split-image {
        padding-bottom: 8rem;
    }

    /* Borders på split-image */
    .split-image.border-left-white,
    .split-image .border-right-white  {
        border: none;
    }
}

@media screen and (max-width: 580px) {
    /* Split med primary bakgrund*/
    .section-wrapper.bg-primary-dark .split-content {
        padding: 5rem 0 2rem;
    }
    
    .section-wrapper.bg-primary-dark .split-image {
        padding-bottom: 5rem;
    }
}

/* Header / Navigation
========================================================================== */
header {
    border-bottom: 1px solid rgb(var(--gray-light-color));
}

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

/* Nav */
.TemplateMenu a {
    font-weight: 600;
    font-size: 1.4rem;
    color: rgb(var(--black-color));
}

.TemplateMenu > li:nth-child(1) {
    display: none;
}

.EditMode .TemplateMenu ul {
    width: 40rem;
}

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

.header-cta-wrapper .flag {
    width: 3.5rem;
    margin-left: 1.5rem;
}

@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;
    justify-content: center;
    align-items: center;
    min-height: 85vh;
    background-color: rgb(var(--black-color), .3);
}

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

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

.top-section .section-title {
    font-size: 5rem;
    font-weight: 600;
    color: rgb(var(--white-color));
}

.top-section p {
    max-width: 60rem;
    font-size: 2rem;
    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: 580px) {
    .top-section .section-block {
        min-height: 75vh;
    }

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

    .top-section p {
        font-size: 1.5rem;
    }
}

/* ==========================================================================
Undersidor - Galler samtliga undersidor
========================================================================== */

/* Hero
========================================================================== */
.hero .section-block {
    display: flex;
    align-items: center;
    min-height: 45rem;
    background-color: rgb(var(--black-color), .45);
}

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

.hero .section-title {
    display: block;
    padding-bottom: 0;
    font-size: 7rem;
    color: rgb(var(--white-color));
}

.hero .small-title {
    display: block;
    padding-bottom: 0;
    color: rgb(var(--white-color));
} 

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

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

.hero-2 {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 50rem;
}

.hero-2::after {
    content: '';
    position: absolute;
    display: block;
    width: 100%;
    height: 15rem;
    background-image: url(/assets/images/waves/wave-bottom.png);
    background-size: 100% 100%;
    bottom: 0;
    left: 0;
}

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

.hero-2 .section-title {
    font-size: 6rem;
    text-align: center;
}

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

/* Introsektion på samtliga undersidor med text
========================================================================== */
@media only screen and (max-width: 980px) {
    .section-intro .text-block-center {
        max-width: 100%;
    }

    .section-intro .pt-4 {
        padding-top: 2rem;
    }
}

/* Formular
========================================================================== */
.ContactForm {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 70rem;
    margin: 3rem auto 0;
}

.ContactForm div {
    width: 49%;
}

.ContactForm .ContactFormMessage {
    width: 100%;
}

.ContactForm p {
    line-height: 1.8;
    font-weight: 600;
    font-size: 1.4rem; 
}

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

.ContactSubmit {
    margin: 0;
}

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

/* ==========================================================================
Undersida: Karriar
========================================================================== */
.section-text-form .section-block-wrapper {
    align-items: flex-start;
}

.section-text-form .col-0 {
    width: calc(100% - 35rem);
}

.section-text-form .col-1 {
    width: 35rem;
    padding: 2rem;
    background: rgb(var(--gray-light-color));
}

.section-text-form .ContactForm {
    margin: 0;
}

.section-text-form .ContactForm div {
    width: 100%;
}

.section-text-form .ContactForm input[type="text"]:not(.illegal),
.section-text-form .ContactForm textarea:not(.illegal) {
    background: rgb(var(--white-color))
}

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

/* ==========================================================================
Undersida: Kontakt
========================================================================== */
.section-contact a {
    text-decoration: none;
    color: rgb(var(--primary-color));
}

/* Medarbetare
========================================================================== */
.section-contacts .cards-wrapper {
    margin: 0;
}

.section-contacts .card-item {
    padding: 5rem 2rem;
    border-right: 1px solid rgb(var(--gray-light-color));
    border-bottom: 1px solid rgb(var(--gray-light-color));
}

.section-contacts .small-title {
    font-size: 2rem;
}

.section-contacts a {
    text-decoration: none;
}

/* ==========================================================================
Undersida: Kundcase
========================================================================== */
.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;
}

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

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


/* ==========================================================================
Undersidor: Artiklar
========================================================================== */
.article-hero .text-block-center {
    max-width: 90rem;
}

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

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

@media only screen and (max-width: 580px) {
    .article-hero .section-title {
        font-size: 2.7rem;
    }
}
/* ==========================================================================
Undersida Finansiering
========================================================================== */
.section-finansiering-form .ContactForm p{
display: none;
}
.section-finansiering-form .submit-button-container{
    margin: auto;
}
/* ==========================================================================
Footer
========================================================================== */
.footer {
    background-color: rgb(var(--gray-color));
    padding: 0 5rem;
}

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

/* Footer top */
.footer-top {
    text-align: center;
    margin: auto;
    padding: 4rem 0 5rem;
    ;
}

.footer-top .section-title {
    font-family: "Times new roman", serif;
}


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

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

.footer li {
    display: inline-block;
    margin-right: 4rem;
}

.footer em {
    color: rgb(var(--primary-color));
    margin-right: 0.5rem;
}

.footer a: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: 0.1rem solid rgb(var(--white-color), .7);
}

.footer-bottom p,
.footer-bottom a:not(.circle-icon) {
    display: inline-block;
    font-size: 1.4rem;
    line-height: 1.6;
    color: rgb(var(--white-color));
}

/* WebbEss Stamp  */
.footer .webbess-stamp {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.webbess-stamp img {
    width: 2.5rem;
    margin-left: 1rem;
    filter: invert();
}

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

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

    .footer li {
        display: block;
        margin-right: 0;
    }
}

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

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

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

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