/* C2 Management i Stockholm AB */

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

/* ==========================================================================
Generellt
========================================================================== */
:root {
    /* 	Colors */
    --primary-color: 65, 117, 160;
    --secondary-color: 243, 168, 70;

    --black-color: 17, 17, 17;
    --gray-dark-color: 58, 58, 58;
    --gray-color: 235, 232, 223;
    --gray-light-color: 235, 232, 223;
    --white-color: 241, 241, 239;

    /* 	Layout  */
    --col-padding: 3rem;
    --menu-height: 8rem;
    --menu-height-scrolled: 8rem;
    --section-width: 130rem;

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

    /* 	Mobile nav */
    --activate-mobile-menu: 1050;
    --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
========================================================================== */
body {
    background: rgb(var(--white-color));
}

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

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

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

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

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

.mb-3 {
    margin-bottom: 3rem;
}
.mx-2{
    margin-top: 2rem;
    margin-bottom: 2rem;
}

/* Ovriga klasser */
.justify-center {
    justify-content: center;
}

.inline {
    display: inline;
}

/* Bredder */
.mw-900 .section-block-wrapper {
    max-width: 80rem;
}

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

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

.section-title {
    padding-bottom: .5em;
    font-size: 3.7rem;
    font-weight: 500;
    line-height: 1.2;
}

.small-title {
    padding-bottom: .3em;
    font-size: 2.2rem;
    font-weight: 400;
    line-height: 1.4;
    color: rgb(var(--black-color));
}

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


/* Listor */
.list-properties {
    padding: 1rem;
    margin-top: 0;
    list-style: none;
    background: rgb(var(--white-color));
}

.list-properties li {
    display: flex;
    justify-content: space-between;
    padding-bottom: .2rem;
    margin-bottom: .2rem;
    font-size: 1.5rem;
    border-bottom: 1px solid rgb(var(--gray-dark-color));
}

.list-properties li span {
    padding: 0 .5rem;
}

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

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

/* 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-italic {
    font-style: italic;
}

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

.box-center {
    margin: 0 auto !important;
    width: max-content !important;
    display: block !important;
    margin-top: 3rem !important;
}

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

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

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

/* Knappar */
.btn,
.ContactSubmit {
    min-width: 20rem;
    padding: 1.5rem 2rem;
    margin: 7px;
    font-size: 1.5rem;
    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,
.ContactSubmit {
    color: rgb(var(--white-color));
    border: 1px solid rgb(var(--secondary-color));
    background-color: rgb(var(--secondary-color));
}

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

/* Lank med ikon */
.icon-links {
    padding: 5px 10px;
    font-size: 1.4rem;
    color: rgb(var(--black-color));
    line-height: 1;
    border-radius: 2rem;
    text-decoration: none;
    transition: all .3s ease;
}

.icon-links:hover {
    color: rgb(var(--white-color));
    background-color: rgb(var(--black-color));
}

.icon-links i,
.icon-links em {
    margin-right: 5px;
}

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

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

.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-secondary {
    color: rgb(var(--secondary-color));
}

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

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

/* Grafiska element
========================================================================== */
/* Box shadow */
.box-shadow {
    box-shadow: 0 1rem 3rem rgba(var(--black-color), .1);
}

/* Badge */
.badge {
    position: absolute;
    top: 1rem;
    left: 0;
    padding: .5rem 1.5rem;
    font-size: 1.3rem;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 0 .5rem .5rem 0;
    color: rgb(var(--white-color));
    background: rgb(var(--primary-color));
}

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

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

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

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

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

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

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

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

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

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

    /* Bredder */
    .cards-wrapper.w-25 .card-item,
    .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;
    }

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

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

    /* Paddings */
    .card-item.p-3,
    .card-item .p-3 {
        padding: 2rem;
    }
}

/* Card 1-1 */
.card-1-1 a.card-item.bg-gray:hover,
.card-1-1 a.card-item.bg-white:hover,
.card-1-1 a.card-item.bg-gray-light:hover,
.card-2-1 a.card-item.bg-gray:hover {
    background: rgb(var(--gray-light-color), .5);
}
.card-1-1 a.card-item.bg-gray
.card-1-1 a.card-item.bg-gray {
    background: rgb(var(--gray-light-color));
}

.card-1-1 i {
    margin-right: 1rem;
}


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

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

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

/* Card 3-1 */
.card-3-1 .contact-item a {
    display: block;
    word-break: break-all;
    font-size: var(--base-size);
    color: rgb(var(--primary-color));
}

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

.card-3-4 .card-item.reverse {
    flex-direction: row-reverse;
}

.card-3-4 .image-wrapper {
    width: 16rem;
    height: 16rem;
    margin: 1rem;
    padding: 2rem;
    border-radius: 50%;
}

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

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

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

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

.split-image img.contain {
    object-fit: contain;
}

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

/* Top header */
.top-header {
    z-index: 1;
    position: relative;
    width: 100%;
    max-width: var(--section-width);
    height: 4rem;
    margin: 0 auto;
    border-bottom: 1px solid rgb(var(--gray-light-color));
    overflow: hidden;
    transition: .3s ease;
}

.scrolled .top-header {
    height: 0;
}

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

.top-header a {
    padding: 0 1rem;
    font-size: 1.4rem;
    text-decoration: none;
    transition: .2s ease;
}

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

.top-header i {
    margin-right: 5px;
}

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

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

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

.mobile-menu .TemplateMenu ul {
    overflow: scroll;
}

/* Dropdown */
.EditMode .TemplateMenu ul a {
    text-overflow: ellipsis;
    white-space: nowrap;
}

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

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

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

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

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

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

.top-section .section-title {
    max-width: 65rem;
    font-size: 5rem;
    font-weight: 600;
}

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

.top-section .of-wrapper img {
    object-position: center 20%;
}

/* Bouncing arrow */
.bouncing-arrow-wrapper {
    position: absolute;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    width: 20rem;
    height: 6.8rem;
    background-image: url(/assets/images/graphics/arrow-bg.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center bottom;
    transform: translateX(-5rem);
}

.bouncing-arrow {
    position: relative;
    bottom: -2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    background-color: rgb(var(--secondary-color));
    text-decoration: none;
}

.bouncing-arrow i {
    color: rgb(var(--white-color));
    font-size: 2rem;
    font-weight: 300;
    transform: translatex(-50%);
    animation: bounce 2s infinite;
}

.arrow-animate {
    position: absolute;
    left: 50%;
    bottom: -4rem;
    width: 9rem;
    transform: translateX(-50%);
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-3px);
    }
}

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

    .btn-wrapper {
        margin-bottom: 4rem;
    }
}

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

.scroll-wrapper.cards-wrapper .card-item[aria-hidden="true"] {
    opacity: .5;
    transform: scale(.9);
}

/* Card item */
.scroll-wrapper .card-item {
    display: flex;
    flex-direction: column;
    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(--secondary-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;
}

/* Nyheter / Bocker
========================================================================== */
.section-news .section-block-wrapper {
    align-items: center;
}

.section-news .col-0 {
    width: calc(50% - 2rem);
    padding: 3rem;
    margin-right: 2rem;
    border-radius: 2rem;
    background: rgb(var(--gray-color));
}

.section-news .col-1 {
    width: calc(50% - 2rem);
    padding: 3rem;
    margin-left: 2rem;
    border-radius: 2rem;
    background: rgb(var(--gray-color));
}

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

    .section-news .col-0,
    .section-news .col-1 {
        width: 100%;
        margin-right: 0;
        margin-left: 0;
        margin-bottom: 2rem;
    }
}

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

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

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

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

.hero .small-title {
    font-size: 2.2rem;
    font-weight: 600;
}

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

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

/* ==========================================================================
Undersida: IT-losning / Konsulttjanster
========================================================================== */
.cols-2 {
    column-count: 2;
}

@media only screen and (max-width: 450px) {
    .cols-2 {
        column-count: 1;
    }
}

/* FAQ
========================================================================== */
.accordion-wrapper {
    display: flex;
    flex-wrap: wrap;
}

.accordion-item {
    width: 100%;
    margin-bottom: 1rem;
    border-radius: 1rem;
    background: rgb(var(--gray-light-color));
    transition: .3s ease;
}

.accordion-header {
    position: relative;
    width: 100%;
    padding: 2rem 4rem 2rem 2rem;
    text-decoration: none;
}

.accordion-header::after {
    content: "\f078";
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 1.7rem;
    font-weight: 700;
    font-family: "Font Awesome 5 Pro";
    color: rgb(var(--secondary-color));
    transition: .5s ease;
}

.accordion-item.active .accordion-header::after {
    transform: rotate(180deg);
}

.accordion-body {
    padding: 0 2rem 2rem;
}

.accordion-body p {
    font-size: 1.5rem;
}

@media only screen and (max-width: 800px) {
    .accordion-wrapper.w-50 .accordion-item {
        width: 100%;
        margin: 1rem 0;
    }
}

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

    .accordion-header::after {
        right: 1rem;
    }

    .accordion-body {
        padding: 0 1.5rem 1.5rem;
    }
}

/* ==========================================================================
Undersida: Nyheter
========================================================================== */
.newsletter-form label {
    display: none;
}

.newsletter-form input {
    display: block;
    width: 100%;
    max-width: 30rem;
    height: 4rem;
    padding: 0 1rem 0 2rem;
    border-radius: 2rem;
    border: 1px solid rgb(var(--gray-color));
}

.newsletter-form .btn {
    display: block;
    width: 100%;
    max-width: 30rem;
    margin: 7px 0 0;
    cursor: pointer;
}

/* ==========================================================================
Undersida: Nyheter > Bocker
========================================================================== */
.section-books .card-3-4 .card-item:hover {
    transform: scale(1.02);
}

.section-books .card-3-4 .image-wrapper {
    width: 12rem;
}

/* Bestallningsformular */
.section-books .ContactForm {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 3rem;
    box-shadow: 0 1rem 3rem rgba(var(--black-color), .1);
}

.section-books .ContactForm .ContactFormField,
.section-books .ContactForm .ContactFormName,
.section-books .ContactForm .ContactFormEmail {
    flex: 1 1 45%;
}

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

    .section-books .ContactForm .ContactFormField,
    .section-books .ContactForm .ContactFormName,
    .section-books .ContactForm .ContactFormEmail {
        flex: 1 1 100%;
    }
}

@media only screen and (max-width: 580px) {
    .section-books .card-3-4 .card-item {
        flex-direction: column;
        padding: 1rem;
    }
}

/* ==========================================================================
Undersida: Nyheter > C2-bloggen > Bloggundersidor
========================================================================== */
.blog-hero .section-block {
    display: flex;
    align-items: center;
    min-height: 25rem;
    text-align: center;
    background-color: rgb(var(--gray-color));
}

.blog-content .blog-image {
    margin: 2rem auto;
}

.blog-content .card-3-4 .image-wrapper {
    width: 6rem;
    height: 6rem;
    margin: 1rem 0;
    padding: 0;
}

.blog-content .card-3-4 .card-body {
    padding: 0 0 0 1.5rem;
}

.blog-content .card-3-4 p {
    font-size: 1.7rem;
}
.blog-images .card-item{
    max-height: 42rem ;
}
@media only screen and (max-width: 750px) {
    .blog-content .card-3-4 .image-wrapper {
        width: 4.5rem;
        height: 4.5rem;
    }

    .blog-content .card-3-4.mb-3 {
        margin-bottom: 2rem;
    }

    .blog-content .card-3-4 p {
        font-size: 1.5rem;
    }
    .blog-images .card-item{
    max-height: 100%;
}
}

/* ==========================================================================
Undersida: Om oss
========================================================================== */
.section-certifications .cards-wrapper {
    max-width: 100rem;
    margin: 0 auto;
}

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

    .card-3-4 .card-item,
    .card-3-4 .card-item.reverse {
        flex-direction: column;
    }

    .card-3-4 .card-body,
    .card-3-4 .reverse .card-body {
        padding: 1rem;
    }
}

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

/* Footer logos */
.footer-logos {
    display: flex;
    flex-wrap: wrap;
}

.footer-logos .logo-item {
    height: 10rem;
    border-radius: 0 0 6px 6px;
    border: 1px solid rgb(var(--gray-light-color));
    border-top: none;
    padding: 4px;
    margin: 0 1rem 1rem 0;
}

.footer-logos .logo-item a {
    width: 100%;
    height: 100%;
}

.footer-logos .logo-item img {
    height: 100%;
}

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

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

.footer .text-label {
    padding: 0 0 1rem;
    line-height: 1;
}

.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(.icon-links, .btn):hover {
    text-decoration: none;
    color: rgb(var(--secondary-color));
}

/* Nyhetsbrev */
.footer-form label {
    display: none;
}

.footer-form input {
    width: 100%;
    height: 4rem;
    padding: 0 1rem 0 2rem;
    border-radius: 2rem;
    border: 1px solid rgb(var(--gray-color));
}

.footer-form .btn {
    display: block;
    width: 100%;
    margin: 7px 0 0;
    cursor: pointer;
}

/* Social Menu */
.social-menu {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    border-bottom: 1px solid rgb(var(--gray-color));
}

.social-menu li {
    margin: 1rem 1rem 1rem 0;
}

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

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

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

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

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

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

    /* Footer logos */
    .footer-logos .logo-item {
        border-top: 1px solid rgb(var(--gray-light-color));
        border-radius: 6px;
    }

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

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

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