/* MPG Bostad */

/* Typsnitt Open Sans + Boska (fontshare)*/
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@200;300;400;500;600;700&display=swap');

@import url('https://api.fontshare.com/css?f[]=boska@400,401,500,501&display=swap');

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

/* ==========================================================================
Generellt 
========================================================================== */
:root {
    /* 	Layout  */
    --col-padding: 3rem;
    --menu-height: 10rem;
    --menu-height-scrolled: 10rem;

    /* 	Colors */
    /* --primary-color: 201, 136, 53; */
    --primary-color: 146, 146, 146;
    --black-color: 0, 0, 0;
    --gray-dark-color: 64, 67, 77;
    --gray-color: 162, 167, 170;
    --gray-light-color: 240, 240, 240;
    --brown-grey-color: 113, 112, 108;
    --white-color: 255, 255, 255;

    --accent-green-color: 85, 107, 95;

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

    /* 	Mobile nav */
    --activate-mobile-menu: 1200;
    --mobile-menu-height: 8rem;
    --mobile-menu-bg: 255, 255, 255;
}

/* Layout
========================================================================== */
body {
    counter-reset: section;
    
}

.section-block {
    padding: 11rem 4rem;
}

.section-block-wrapper {
    max-width: 150rem;
}

/* Specifika bredder */
.mw-none .section-block-wrapper {
    max-width: none;
}

.mw-1500 .section-block-wrapper {
    max-width: 150rem;
}
.mw-1700 .section-block-wrapper {
    max-width: 170rem;
}

.mw-1000 .section-block-wrapper {
    max-width: 100rem;
}

/* Speciella paddings */
.p-0 .section-block,
.p-0.pb-4:not(.section-wrapper) {
    padding: 0;
}

.p-2{
    padding: 2rem;
}

.p--0 .section-block{
    padding-top: 0;
    padding-bottom: 0;
}
.pb-0 .section-block {
    padding-bottom: 0;
}

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

.pb-2 {
    padding-bottom: 2rem;
}

.pb-5 {
    padding-bottom: 5rem;
}

.pl-0 .section-block {
    padding-left: 0rem;
}
.pl-2{
    padding-left: 3rem;
}
.pl-4{
    padding-left: 4rem;
}

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

.pt-1,
.pt-1 .section-block {
    padding-top: 1rem;
}

.pt-2,
.pt-2 .section-block {
    padding-top: 2rem;
}

.pt-5 {
    padding-top: 5rem;
}

/* Speciella margins */
.mt-0{
    margin-top: 0;
}
.mt-2{
    margin-top: 2rem;
}
.mt-3{
    margin-top: 3rem !important;
}
.mt-5 {
    margin-top: 5rem;
}
@media only screen and (max-width: 980px) {
.pl-2{
    padding-left: 0rem;
}
.pl-4{
    padding-left: 0rem;
}
}
@media only screen and (max-width: 1024px) {
.p--0 .section-block{
    padding-top: 2rem;
    padding-bottom: 2rem;
}
}

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

  
}

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


/* Text och typsnitt
========================================================================== */
body {
    font-family: 'Open Sans', sans-serif;
    color: rgb(var(--gray-dark-color));
}

/* Rubriker */
.section-title {
    font-size: 4.7rem;
    line-height: 1.4;
    font-weight: 500;
    padding-bottom: 2rem;
    font-family: 'Boska', serif;
}

.small-title {
    font-size: 2.3rem;
    font-weight: 400;
    line-height: 1.4;
    padding-bottom: 1rem;
}

.ingress {
    font-size: 2.4rem;
    font-weight: 600;
    line-height: 1.6;
}

.text-label {
    font-size: 1.5rem;
    color: rgb(var(--gray-color));
    padding-bottom: 1rem;
}

.text-title{
    font-weight: 300;
    color: rgb(var(--gray-dark-color));
    font-size: rem;
}

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

a {
    text-decoration: none;
    font-size: 1.6rem;
    color: var(--primary-color);
    font-weight: 600;
}

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

/* ovriga klasser */
.text-block-center {
    max-width: 85rem;
    margin: 0 auto;
}

.text-block {
    max-width: 85rem;
    padding: 4rem 4rem 0;
}

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

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

.text-normal{
    font-size: 1.6rem;
    font-weight: 300;
}

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

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

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

    .text-block {
        padding: 0;
        margin-top: 3rem;
    }

    .ingress {
        font-size: 2.2rem;
    }
}

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

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

    .ingress {
        font-size: 2rem;
    }
}

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

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

.btn-wrapper.right {
    justify-content: flex-end;
    margin-right: 3rem;
}

.btn,
.ContactSubmit {
    display: inline-block;
    min-width: 20rem;
    padding: 2rem;
    font-weight: 500;
    font-size: 1.3rem;
    text-align: center;
    text-decoration: none;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
}

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

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

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

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

.btn-white-filled {
    color: rgb(var(--black-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;
}

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

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

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

/* Lank med pil */
.arrow-link {
    padding-right: 1rem;
    font-weight: 400;
    font-size: 1.5rem;
}

.arrow-link::after {
    content: ' \f178';
    display: inline-block;
    margin-left: .5rem;
    font-family: 'Font Awesome 5 Pro';
    transition: transform .3s ease;
}

.arrow-link:hover::after {
    transform: translateX(1rem);
    transition: transform .3s ease;
}

/* Cirkelikon */
.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.6rem;
    height: 3.6rem;
    padding: 0;
    margin: .5rem;
    font-size: 0;
    color: rgb(var(--black-color));
    text-decoration: none;
    background-color: transparent;
    transition: .3s ease;
}

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

.social-icon em:before,
.social-icon i:before {
    font-size: var(--base-size);
}

/* Cirkelikon */
.circle-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    padding: 0;
    margin: .5rem;
    font-size: 0;
    color: rgb(var(--white-color)) !important;
    text-decoration: none;
    border-radius: 50%;
    background-color: rgb(var(--primary-color));
    transition: .3s ease;
}

.circle-icon:hover {
    color: rgb(var(--white-color)) !important;
    background-color: rgb(var(--secondary-color));
}

.circle-icon em:before,
.circle-icon i:before {
    font-size: var(--base-size);
}

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

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

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

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

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

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

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

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

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



.border-black{
    border: 0.1rem solid rgb(var(--black-color));
}

/* Bakgrundsbild
========================================================================== */
.bg-image {
    position: relative;
    background: linear-gradient(90deg, rgb(var(--black-color), .2) 0%, rgb(var(--black-color), .5) 0%, rgb(var(--black-color), 0) 100%);
}

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

/* Parallax
========================================================================== */
.parallax {
    min-height: 40rem;
    background-position: center;
    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;
}

/* Specifika 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: calc(100% - 2rem);
    margin: 1rem;
}

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

@media only screen and (max-width: 750px) {
    .cards-wrapper.w-50 .card-item,
    .cards-wrapper.w-33 .card-item,
    .cards-wrapper.w-25 .card-item {
        width: 100%;
        margin: 1rem 0;
    }
}

/* Cards 4*/
.cards-4 .card-item {
    padding: 5rem 5rem 0;
    background-color: rgb(var(--white-color));
    text-decoration: none;
    transition: 0.3s ease-in-out;
}

.cards-4 .icon-wrapper i {
    margin-bottom: 2rem;
    font-size: 6rem;
    color: rgb(var(--primary-color));
}

.cards-4 .text-wrapper {
    width: 100%;
    margin-top: 2rem;
    padding-top: 3rem;
    border-top: 1px solid rgb(var(--black-color));
}

.cards-4 p {
    font-size: 1.7rem;
}

@media only screen and (max-width: 780px) {
    .cards-4 .card-item {
        padding: 1rem;
    }
}

/* Cards 6*/
.cards-6 .card-item {
    position: relative;
    padding: 8rem 3rem 4rem;
    text-decoration: none;
    border: 1px solid rgb(var(--black-color));

}

.cards-6 .card-item::after {
    counter-increment: section;
    content: " 0"counter(section) " ";
    font-size: 3rem;
    position: absolute;
    top: -1rem;
    left: -1rem;
    font-weight: 500;
    color: rgb(var(--primary-color));
    border: 1px solid rgb(var(--black-color));
    height: 6rem;
    width: 6rem;
    justify-content: center;
    display: flex;
    align-items: center;
    z-index: 1;
    font-family: 'Boska', serif;
}

.cards-6 .image-wrapper {
    z-index: 1;
}

.cards-6 .text-wrapper .small-title {
    font-size: 2.2rem;
}

.cards-6 .text-wrapper p {
    font-size: 1.6rem;
}

/* cards-10 */
.cards-10 .card-item.first {
    width: 55%;
}

.cards-10 .card-item.second {
    width: 41%;
}

.cards-10 .card-item.first .image-wrapper,
.cards-10 .card-item.second .image-wrapper {
    height: 65rem;
}

.cards-10 .card-item {
    height: 40rem;
    position: relative;
    overflow: hidden;
}

.cards-10 p {
    font-size: 1.6rem;
}

.cards-10 .card-item .image-wrapper {
    height: 40rem;
}

.cards-10 .card-item .text-wrapper {
    padding: 3rem 2rem;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    transition: all 0.5s ease;
}

.cards-10 .card-item:hover .text-wrapper {
    background: rgba(0, 0, 0, 0.9);
    bottom: 2rem;
}

@media only screen and (max-width: 750px) {
    .cards-10 .card-item {
        margin: 1rem !important;
    }

    .cards-10 .card-item .text-wrapper {
        padding: 2rem 1rem;
    }
}

/* Cards 14 */
.cards-14 .card-item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 2rem;
    transition: all 0.3s ease;
    background-color: rgb(var(--white-color));
}

.cards-14 a.card-item:hover {
    text-decoration: none;
    background-color: rgb(var(--black-color).1);
}

.cards-14 .icon-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-right: 2rem;
}

.cards-14 i {
    font-size: 3rem;
}

@media only screen and (max-width: 580px) {
    .cards-14 .card-item {
        padding-left: 0;
    }
}

/* Logos 1 */
.logos-1-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logos-1-wrapper .logo-item {
    width: 23%;
    margin: 0 1%;
    text-align: center;
    background: rgb(var(--gray-light-color));
    padding: 2rem;
}

.logos-1-wrapper img {
    width: auto;
    max-height: 12rem;
    filter: grayscale() opacity(.5);
    transform: scale(.94);
    transition: 0.2s ease-in-out;
}

.logos-1-wrapper img:hover {
    opacity: 1;
    filter: none;
    transform: scale(1);
}

@media only screen and (max-width: 580px) {
    .logos-1-wrapper img {
        max-height: 8rem;
    }
}

@media only screen and (max-width: 500px) {
    .logos-1-wrapper {
        flex-wrap: wrap;
    }

    .logos-1-wrapper .logo-item {
        width: 100%;
    }
}

/* Split wrapper
========================================================================== */
.split-wrapper {
    display: flex;
    flex-wrap: wrap;
}

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

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

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

.split-image {
    width: 50%;
}

.split-image.offset img {
    outline: 1px solid rgb(var(--white-color));
    outline-offset: -11px;
}

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

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

/* Speciella margins */
.split-wrapper .mt--5rem {
    z-index: 1;
    position: relative;
    margin-top: -5rem;
}

@media screen and (max-width: 1100px) {
    .split-content {
        width: 100%;
        padding: 5rem 1rem 5rem;
    }

    .split-content.bg-gray {
        padding: 5rem;
    }

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

    .split-wrapper .mt--5rem {
        margin-top: 0;
    }
}

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

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



/* Header / Navigation
========================================================================== */

/* Header */
header {
    background-color: rgb(var(--white-color));
}

header .container {
    max-width: 180rem;
    margin: 0 auto;
}

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

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

/* .header-logo .symbol-text img {
    order: 0;
}

.header-logo .symbol-text {
    display: flex;
    align-items: center;
}

.header-logo .text-logo {
    font-size: 2rem;
    color: rgb(var(--black-color));
    text-transform: uppercase;
    font-weight: 400;
    padding-left: 1rem;
    order: 1;
} */

/* nav */
nav.mainmenu {
    flex-grow: 1;
    padding-left: 2rem;
}

.TemplateMenu a {
    font-weight: 500;
    font-size: 1.6rem;
    padding: 0 1.4rem;
    color: rgb(var(--black-color));
    font-family: 'Boska', serif;
}

.TemplateMenu a:hover {
    color: rgb(var(--gray-color));
}

/* header cta  */
.header-cta-wrapper {
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
    list-style: none;
}

.header-cta-wrapper .btn {
    min-width: unset;
    padding: .6rem 3rem;
    margin: 0 .5rem;
}

/* mobilmenyn */
.mobile-menu .header-cta-wrapper .btn {
    display: none;
}

.mobile-menu .header-cta-wrapper {
    margin-left: 2rem;
}

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

@media only screen and (max-width: 400px) {
    .header-logo .text-logo {
        font-size: 1.7rem;
    }
}

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

/* Top-section
========================================================================== */
.topsection {
    display: flex;
    align-items: flex-end;
    min-height: calc(100vh - 15rem);
    padding-left: 5rem;
    margin-top: 0;
    background: rgb(var(--black-color), .4);
}

.topsection h1 {
    color: rgb(var(--white-color));
    padding-bottom: 0;
}

.topsection .section-title {
    max-width: 40ch;
    font-size: 4.3rem;
}

.topsection .arrow-link {
    text-transform: none;
    letter-spacing: normal;
    font-weight: 600;
}

.topsection .btn-wrapper a:first-child {
    margin-right: 1rem;
}

@media only screen and (max-width: 1000px) {
    .topsection {
        padding-left: 0;
        min-height: calc(100vh - 10rem);
    }

    .topsection h1 {
        font-size: 4.5rem;
    }

    .topsection p {
        font-size: 1.8rem;
        line-height: 1.5;
    }
}

@media only screen and (max-width: 500px) {
    .topsection h1 {
        font-size: 2.8rem;
    }

    .topsection .btn {
        font-size: 1.3rem;
        padding: 1.5rem 2rem;
        margin-bottom: 1rem;
    }

    .topsection {
        min-height: calc(100vh - 12rem);
    }
}

/* Senaste projekten
========================================================================== */
.section-projects {
    overflow: hidden;
    padding: 10rem 2rem 5rem;
}

.section-projects .section-title {
    max-width: 40ch;
    padding-left: 5rem;
    padding-bottom: 5rem;
}

.section-projects .btn-wrapper {
    margin-left: 5.2rem;
}

/* Slick wrapper */
.slick-slider {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

/* Slick list (innehallet i slidern, i detta fall image-wrapper) */
.slick-list {
    display: inline-block;
    width: calc(100% - 8.5rem);
}

/* Pilar */
.slick-arrow {
    opacity: .8;
    position: relative;
    width: 4rem;
    height: 2rem;
    font-size: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    transition: .2s ease;
}

.slick-arrow:hover {
    opacity: 1;
}

.slick-arrow::after {
    position: absolute;
    top: 50%;
    left: 50%;
    color: rgb(var(--black-color));
    font-weight: 700;
    font-size: 2.5rem;
    font-family: 'Font Awesome 5 Pro';
    transform: translate(-50%, -50%);
}

.slick-prev::after {
    content: '\f104'
}

.slick-next::after {
    content: '\f105'
}

/* Dots */
.slick-dots {
    display: flex;
    justify-content: center;
}

.slick-dots li {
    position: relative;
    width: 2rem;
    height: 2rem;
    list-style: none;
    cursor: pointer;
}

.slick-dots li::before {
    content: '\f111';
    position: absolute;
    top: 50%;
    left: 50%;
    color: rgb(var(--gray-dark-color));
    font-weight: 700;
    font-size: .8rem;
    font-family: 'Font Awesome 5 Pro';
    transform: translate(-50%, -50%);
}

.slick-dots li:not(.slick-active) {
    opacity: .8;
    transition: .2s ease;
}

.slick-dots li:not(.slick-active):hover {
    opacity: 1;
}

.slick-dots li.slick-active::before {
    color: rgb(var(--primary-color));
}

@media only screen and (max-width: 750px) {
    .section-projects .section-title {
        padding-left: 0;
        padding-bottom: 2rem;
    }

    .section-projects .btn {
        width: 85%;
        margin-top: 2rem;
    }

    .section-projects .slick-list {
        width: 100%;
    }

    .section-projects .slick-arrow {
        position: absolute;
        bottom: -2rem;
        cursor: pointer;
        transition: .4s;
    }

    .section-projects .slick-prev {
        left: 0;
    }

    .section-projects .slick-next {
        right: 0;
    }
}

/* Parallax startsidan
========================================================================== */
.section-info {
    background-image: url('/assets/images/koltrasten-jarlaplan1-2000px.jpg');
}

/* Om oss
========================================================================== */
.section-about .section-block {
    background-color: rgb(var(--black-color), .4);
}

.section-about p {
    max-width: 50ch;
}

.section-about .btn {
    margin-right: 1rem;
}

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

/* Hero – Grundkod
========================================================================== */
.hero {
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    min-height: 50vh;
    overflow: hidden;
    max-width: 100% !important;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: scroll;
    border-left: 4rem solid rgb(var(--white-color));
    border-right: 4rem solid rgb(var(--white-color));
    background-image: linear-gradient(to right,
            rgb(var(--black-color), .3),
            rgb(var(--black-color), .0));
}

.hero h1 {
    font-family: 'Boska', serif;
    font-size: 5rem;
}

.hero.galleri {
    background-position: center bottom 10%;
}

@media only screen and (max-width: 750px) {
    .hero {
        min-height: 35vh;
    }

    .hero .section-block {
        padding-bottom: 4rem;
    }
}

@media only screen and (max-width: 580px) {
    .hero {
        border-left: 2rem solid rgb(var(--white-color));
        border-right: 2rem solid rgb(var(--white-color));
    }

    .hero h1 {
        font-size: 4rem;
    }
}

@media only screen and (max-width: 380px) {
    .hero h1 {
        font-size: 2.6rem;
    }
}


/* ==========================================================================
Undersida Vanliga frågor
========================================================================== */

.accordion-wrapper {
    display: flex;
    flex-wrap: wrap;
}

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

.accordion-item {
    width: 100%;
    padding-bottom: 2rem;
}

.accordion-header {
    position: relative;
    width: 100%;
    padding: 0 5rem 1rem 2rem;
    text-decoration: none;
    border-bottom: 1px solid rgb(var(--primary-color));
}

.accordion-header::after {
    content: "\f078";
    position: absolute;
    top: .3rem;
    right: 2rem;
    font-size: 1.7rem;
    font-family: "Font Awesome 5 Pro";
    transition: .5s ease;
}

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

.accordion-body {
    padding: 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: 0 3rem 1rem .5rem;
    }

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

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


/* ==========================================================================
Kontakta oss
========================================================================== */

/* formularet 
======================================================== */
.section-contact .section-block-wrapper {
    position: relative;
    top: -5rem;
    padding: 3rem;
    border: 1px solid rgb(var(--gray-dark-color));
    background-color: rgb(var(--white-color));
    max-width: 60rem;
    right: 20rem;
}

.section-contact2 .section-block-wrapper {
    position: relative;
    padding: 3rem;
    max-width: 135rem;
}
.section-contact2 .col-1 {
padding-left: 0;
}


.ContactForm p {
    color: rgb(var(--black-color).8);
    line-height: 1.8;
    font-weight: 600;
    font-size: 1.4rem;
}

.asterix p:after {
    content: "*";
    margin-left: 6px;
    color: red;
}

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

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

.kontakt-info-text{
    max-width: 80rem;
    padding: 2rem;
    margin: 5rem auto 0;
    border: 1px solid rgb(var(--gray-dark-color));
    background-color: rgb(var(--white-color));
    box-shadow: 1px 1px 1px grey;
 
}

#info-boxen .section-block {
    padding: 0rem 4rem;
}

.info-form{
    position: relative;
    top: -5rem;
    padding: 3rem;
    border: 1px solid rgb(var(--gray-dark-color));
    background-color: rgb(var(--white-color));
    max-width: 60rem;
    
   
}

.section-contact2 .btn {
    width: 100%;
}

/* ==========================================================================
Undersida: Felanmalan
========================================================================== */
.section-felanmalan .ContactForm {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 100rem;
    margin: 5rem auto 0;
}

.section-felanmalan .ContactForm div {
    width: 49%;
}

.section-felanmalan .ContactForm .ContactFormMessage {
    width: 100%;
}

 .section-felanmalan .ContactForm input[type="text"],
.section-felanmalan .ContactForm textarea {
    background-color: rgb(var(--gray-light-color));
    border: 1px solid rgb(var(--black-color), .5);
} 
.section-felanmalan .submit-button-container{
    width: 100% !important;
}
.ContactForm input.illegal, .ContactForm textarea.illegal,
.section-felanmalan .ContactForm input[type="text"].illegal {
    background-color: #FFECEC;
}
@media only screen and (max-width: 600px) {
    .section-felanmalan .ContactForm div {
        width: 100%;
    }
}  

/* ==========================================================================
Footer
========================================================================== */
.footer {
    background-color: rgb(var(--primary-color), .09);
}

.footer-container {
    padding: 0 4rem;
    max-width: 120rem;
    margin: 0 auto;
}


/* Footer top */
.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 8rem 0 4rem;
    border-bottom: 1px solid rgb(var(--gray-light-color));
}

.footer-menu {
    padding: 0 4rem;
    width: 33%;
}

.footer-menu:first-child {
    padding-left: 0;
}

.footer-menu:first-child p {
    padding-bottom: 0;
}

.footer-menu:last-child {
    padding-right: 0;
}

.footer-top img {
    width: 8rem;
    margin-bottom: 1.5rem;
}

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

.footer p,
.footer a,
.footer li {
    font-weight: 300;
    color: rgb(var(--gray-dark-color));
    font-size: 1.6rem;
}

.footer a:hover {
    color: rgb(var(--black-color));
}


.footer .small-title {
    font-size: 2rem;
    letter-spacing: normal;
    color: rgb(var(--black-color));
}

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

.footer-bottom p,
.footer-bottom a {
    font-size: 1.3rem;
}

/* WebbEss Stamp  */
.webbess-stamp {
    display: flex;
    align-items: center;
    padding: 0;
    font-size: 1.3rem;
    font-weight: normal;
}

.webbess-stamp img {
    width: 3rem;
    margin-left: 1rem;
    opacity: .6;
}


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

    /* Footer top */
    .footer-menu {
        padding: 2rem;
    }

    .footer-menu,
    .footer-menu:first-child,
    .footer-menu:last-child {
        width: 50%;
    }

    .footer-menu:last-child {
        padding-left: 0;
    }

    .footer-menu-large p {
        max-width: 55rem;
    }
}

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

    /* Footer top */
    .footer-menu,
    .footer-menu:first-child,
    .footer-menu:last-child {
        width: 100%;
        padding: 2rem 0 0;
    }

    /* Footer bottom */
    .footer-bottom {
        flex-direction: column-reverse;
        align-items: flex-start;
        padding: 2rem 0;
    }

    .footer-bottom .socials {
        margin-bottom: 1.5rem;
    }
}

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

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

    /* Footer bottom */
    .footer-bottom {
        padding: 2rem 0;
    }
}