/* Brokerway */

/* Typsnitt – Houschka Rounded  */
@import url("https://use.typekit.net/yvr5trg.css");

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

    /* 	Colors */
    --primary-color: 238, 144, 17;
    --primary-light-color: 247, 182, 99;

    --accent-turqoise-light-color: 0, 204, 204;
    --accent-turqoise-color: 9, 112, 133;
    --accent-yellow-color: 251, 179, 87;
    --accent-yellow-dark-color: 176, 126, 61;
    --accent-red-color: 247, 59, 74;
    --accent-red-dark-color: 194, 46, 57;
    --accent-green-color: 43, 188, 108;
    --accent-green-dark-color: 35, 146, 85;
    --accent-blue-color: 46, 136, 196;
    --accent-blue-dark-color: 39, 105, 154;
    --accent-orange-color: 238, 142, 13;
    --accent-purple-color: 158, 26, 165;

    --black-color: 0, 0, 0;
    --gray-dark-color: 51, 51, 51;
    --gray-color: 153, 153, 153;
    --gray-light-color: 245, 245, 245;
    --white-color: 255, 255, 255;

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

    /* 	Mobile nav */
    --activate-mobile-menu: 1000;
    --mobile-menu-height: 6rem;
    --mobile-menu-bg: 255, 255, 255;
    --menu-color: rgb(var(--white-color));

    /* Others */
    --box-shadow: 0 1rem 1.5rem rgb(var(--black-color), .1);
}

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

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

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

/* Specifika margins */
.mt-2 .section-block,
.mt-2:not(.section-wrapper) {
    margin-top: 2rem;
}

.mt-5 .section-block,
.mt-5:not(.section-wrapper) {
    margin-top: 5rem;
}

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

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

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

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

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

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

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

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

.mw-20ch {
    max-width: 20ch;
}

.mh-2 .section-block {
    padding: 1.5rem;
    background: white
}

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

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

    /* Specifika paddings */
    .pl-0 .section-block {
        padding-left: 2rem;
    }
}

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

/* Rubriker */
.big-title {
    font-size: 8rem;
    line-height: 1.2;
    font-weight: 600;
    padding-bottom: 2rem;
}

.section-title {
    font-size: 4rem;
    padding-bottom: 2rem;
    line-height: 1.2;
    font-weight: 600;
}

.small-title {
    font-size: 2.7rem;
    line-height: 1.3;
    font-weight: 600;
}

.text-label {
    font-size: var(--base-size);
    padding-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0;
    font-weight: 300;
    color: rgb(var(--gray-color));
    line-height: 1.4;
}

.f-2{
    font-size: 2rem;
}
.f-2-2{
    font-size: 2.2rem;
}

/* BrÃ¶dtext och lankar */
p {
    font-weight: 300;
    padding-bottom: 1.2em;
}

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

/* Ovriga klasser */
.text-bold {
    font-weight: 800;
}

.text-block {
    max-width: 90rem;
}

.text-block-center {
    max-width: 95rem;
    margin: 0 auto;
}

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

/* Listor */
.styled-list li {
    padding-bottom: .8em;
}

.styled-list li::marker {
    color: rgb(var(--primary-color));
}

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

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

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

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

    .big-title {
        font-size: 4rem;
    }
}

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

.btn-wrapper.center {
    justify-content: center;
}
.btn-center{
    justify-content: center;
    margin: auto;
    text-align: center;
    padding: 3rem;
}

.btn-wrapper.flex-start {
    justify-content: flex-start;
}

/* Knappar */
.btn,
.ContactSubmit {
    min-width: 20rem;
    padding: 1.6rem 2rem;
    font-weight: 500;
    font-size: 1.4rem;
    border-radius: .6rem;
    text-align: center;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
}

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

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

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

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

/* Bouncing arrow */
.bouncing-arrow {
    position: absolute;
    left: 50%;
    bottom: 4rem;
    transform: translatex(-50%);
    animation: bounce 2s infinite;
}

.bouncing-arrow i {
    color: rgb(var(--white-color));
    font-size: 4rem;
    font-weight: 500;
}

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

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

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

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

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

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

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

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

.bg-gradient-orange-purple {
    background: linear-gradient(45deg, rgb(var(--accent-orange-color)), rgb(var(--accent-purple-color)));
}

.bg-gradient-accent-turqoise {
    background: linear-gradient(45deg,rgb(var(--accent-turqoise-color)), rgb(var(--accent-turqoise-light-color)));
}

.bg-gradient-accent-yellow {
    background: linear-gradient(45deg,rgb(var(--accent-yellow-dark-color)), rgb(var(--accent-yellow-color)));
}

.bg-gradient-accent-blue {
    background: linear-gradient(45deg,rgb(var(--accent-blue-dark-color)), rgb(var(--accent-blue-color)));
}

.bg-gradient-accent-red {
    background: linear-gradient(45deg,rgb(var(--accent-red-dark-color)), rgb(var(--accent-red-color)));
}

.bg-gradient-accent-green {
    background: linear-gradient(45deg,rgb(var(--accent-green-dark-color)), rgb(var(--accent-green-color)));
}

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

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

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

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

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

/* Specifika bredder */
.cards-wrapper.w-100 .card-item {
    width: 100%;
}

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

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

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

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

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


/* Cards 1 */
.cards-1 .card-item {
    padding: 2rem 2rem;
    border-radius: 1rem;
    background: rgb(var(--white-color));
    box-shadow: var(--box-shadow);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.cards-1 .card-header {
    padding-bottom: 2rem;
}

.cards-1 .card-item .image-wrapper {
    margin-bottom: 2rem;
    height: 25rem;
    overflow: hidden;
    width: 100%;
}

.cards-1 .card-footer {
    padding: 2rem 0 0;
    border-top: 1px solid rgb(var(--gray-dark-color));
    width: 100%;
    margin: auto 0 0;
}

.cards-1 .card-footer:hover {
    color: rgb(var(--primary-color));
}

.cards-1 .card-footer p {
    width: 60%;
    padding: 0;
    font-size: 1.6rem;
    font-style: italic;
}

.cards-1 .overflow-wrapper {
    overflow: hidden;
}

.cards-1 .overflow-wrapper .overflow-text {
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.cards-1 .overflow-wrapper .overflow-text p {
    padding: 0;
}

.cards-1 .card-header p {
    font-size: 1.5rem;
}

@media only screen and (max-width: 750px) {
    .cards-1.w-33 .card-item {
        margin-right: 1rem;
    }
}

/* Cards 2 */
.cards-2 .card-item {
    position: relative;
    background-color: rgb(var(--white-color));
    box-shadow: var(--box-shadow);
    padding: 2rem 3rem 2rem;
    overflow: hidden;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    transition: all .3s ease;
}

.cards-2 .card-item::after {
    content: '';
    display: block;
    width: 100%;
    height: 5px;
    background-image: linear-gradient(90deg, rgb(var(--primary-color)) 0%, rgb(var(--primary-light-color)) 100%);
    position: absolute;
    bottom: 0;
    left: 0;
}

.cards-2 .card-item:hover {
    text-decoration: none;
    transform: translateY(-1rem);
}

.cards-2 .card-item .icon-wrapper {
    margin-bottom: 2rem;
}

.cards-2 .card-item .image-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 3rem;
    width: 100%;
}

.cards-2 .card-item .image-wrapper img {
    height: 11rem;
}

.cards-2 .text-wrapper {
    margin-bottom: 4rem;
}

.cards-2 .card-item .small-title {
    text-transform: uppercase;
    font-size: 2rem;
    letter-spacing: 0;
    color: rgb(var(--black-color));
    font-weight: 600;
    padding-bottom: .5rem;
}

.cards-2 .card-item p {
    padding: 0;
    color: rgb(var(--gray-dark-color));
    transition: all .3s ease;
}

.cards-2 .overflow-wrapper {
    overflow: hidden;
}

.cards-2 .overflow-wrapper .overflow-text {
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.cards-2 .overflow-wrapper .overflow-text p {
    padding: 0;
}

.cards-2 .card-link {
    color: rgb(var(--gray-dark-color));
    margin: auto 0 0;
    display: block;
    width: 100%;
}

.cards-2 .card-item:hover .card-link {
    color: rgb(var(--primary-color));
}

/* custom colors */
.cards-2 .card-item.accent-yellow::after {
    background-image: linear-gradient(90deg, rgb(var(--accent-yellow-dark-color)) 0%, rgb(var(--accent-yellow-color)) 100%);
}

.cards-2 .card-item.accent-yellow:hover .card-link {
    color: rgb(var(--accent-yellow-dark-color));
}

.cards-2 .card-item.accent-red::after {
    background-image: linear-gradient(90deg, rgb(var(--accent-red-dark-color)) 0%, rgb(var(--accent-red-color)) 100%);
}

.cards-2 .card-item.accent-red:hover .card-link {
    color: rgb(var(--accent-red-color));
}

.cards-2 .card-item.accent-green::after {
    background-image: linear-gradient(90deg, rgb(var(--accent-green-dark-color)) 0%, rgb(var(--accent-green-color)) 100%);
}

.cards-2 .card-item.accent-green:hover .card-link {
    color: rgb(var(--accent-green-dark-color));
}

.cards-2 .card-item.accent-blue::after {
    background-image: linear-gradient(90deg, rgb(var(--accent-blue-dark-color)) 0%, rgb(var(--accent-blue-color)) 100%);
}

.cards-2 .card-item.accent-blue:hover .card-link {
    color: rgb(var(--accent-blue-color));
}

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

/* Cards 3 */
.cards-3 .card-item {
    width: calc(100% / 4 - 2rem);
    margin: 1rem;
    display: inline-block;
    align-self: center;
    text-align: left;
    padding: 5rem 2rem;
    border-radius: .5rem;
    min-height: 25rem;
    background-color: rgb(var(--white-color));
    box-shadow: none;
    -moz-transition: 0.3s ease-in-out;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    transform: scale(1);
    position: relative;
    text-decoration: none !important;
}

.cards-3 .card-item:hover {
    background-color: rgb(var(--gray-light-color));
}

.cards-3 .card-item::after {
    counter-increment: section;
    content: " 0"counter(section) " ";
    font-size: 2.5rem;
    position: absolute;
    top: 2rem;
    left: 2rem;
    font-weight: 900;
    background-color: rgb(var(--black-color));
    color: rgb(var(--white-color));
    box-shadow: var(--box-shadow);
    height: 6rem;
    width: 6rem;
    border-radius: 1rem;
    justify-content: center;
    display: flex;
    align-items: center;
    z-index: 1;
    -moz-transition: 0.3s ease-in-out;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

.cards-3 .card-item .icon-wrapper i {
    font-size: 7rem;
    color: rgb(var(--primary-light-color));
}

.cards-3 .card-item .icon-wrapper,
.cards-3 .card-item .small-title {
    text-align: center;
    color: rgb(var(--black-color));
    margin: 0 auto;
}

.cards-3 .card-item .small-title {
    font-size: 1.8rem;
    color: rgb(var(--black-color));
    text-transform: none;
    font-weight: 300;
    margin-top: 2rem;
    padding-bottom: 1.5rem;
}

.cards-3 .card-item p {
    padding: 0;
}

/* Cards 14 */
.cards-14 .card-item {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
    padding: 2rem;
    transition: all .3s ease;
}

.cards-14 a.card-item:hover {
    text-decoration: none;
    background-color: rgb(var(--black-color), .1);
    transition: all .3s ease;
}

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

.cards-14 p {
    padding-bottom: 0;
    font-size: 1.4rem;
}

.cards-14 .contact-info {
    font-size: 1.6rem;
    font-weight: 400;
}

@media only screen and (max-width: 500px) {
    .cards-14 .card-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem 0;
    }

    .cards-14 a.card-item:hover {
        background-color: transparent;
    }
}

/* Cards 7*/
.cards-7 .card-item {
    text-decoration: none;
    border-radius: .8rem;
    box-shadow: 0 1rem 3rem rgb(var(--black-color), .1);
    background: rgb(var(--white-color));
    overflow: hidden;
}

.cards-7 .text-wrapper {
    padding: 2rem 3rem;
}

.cards-7 .small-title {
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    font-size: 2rem;
    border-bottom: 1px solid rgb(var(--primary-color));
}

/* Bakgrundsbild
========================================================================== */
.bg-image {
    position: relative;
    background: transparent;
}

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

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

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

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

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

.split-image {
    width: 50%;
}

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

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

/* Video split */
.split-image.split-video {
    display: flex;
    align-items: center;
}

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

/* paddings */
.split-content.pl-0 {
    padding-left: 0;
}


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

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

@media screen and (max-width: 1200px) {
    .split-wrapper.reverse {
        flex-direction: column-reverse;
    }

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

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

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

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

    .split-content.light-gray {
        background-color: transparent;
    }
}

/* Parallax
========================================================================== */
/* Halvsektionsparallax */
.parallax-half {
    position: relative;
}

.parallax-half::after {
    content: '';
    z-index: 1;
    position: absolute;
    width: 100%;
    height: 65%;
    top: 0;
    left: 0;
    background-attachment: fixed;
    background-size: cover;
}

.parallax-half .section-block {
    z-index: 2;
    position: relative;
    padding-top: 10rem;
    background-image: linear-gradient(to bottom, rgba(var(--black-color), 0.4) 60%, rgb(var(--black-color)) 60%);
}

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

/* Bakgrundsvideo
========================================================================== */
.bg-video {
    position: relative;
}

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

.bg-video-wrapper video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
}

/* Header / Navigation
========================================================================== */
header {
    background-color: transparent;
}

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

/* header logo */
.header-logo {
    flex-basis: 0;
    flex: 1 1 0px;
    padding: .5rem 0;
}

header .header-logo svg {
    overflow: visible;
    width: 20rem;
}

#brokerway-text {
    fill: rgb(var(--white-color));
    animation: 1s animate;
}

.scrolled #brokerway-text {
    fill: rgb(var(--black-color));
}

.cls-1 {
    fill: rgb(var(--primary-color));
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear;
}

.cls-1:first-child {
    animation: .8s animate;
}

@media only screen and (min-width: 800px) {
    @keyframes animate {
        from {
            transform: translate(-10rem);
        }

        to {
            transform: translate(0);
        }
    }
}

/* nav */
nav.mainmenu a {
    font-weight: 600;
    font-size: 1.35rem;
    color: rgb(var(--white-color));
}

header.scrolled .TemplateMenu a {
    color: rgb(var(--gray-dark-color));
}

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

.EditMode .TemplateMenu a {
    line-height: normal;
    padding: 2rem;
}

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

.TemplateMenu ul a:hover {
    background-color: rgb(var(--primary-light-color));
    color: rgb(var(--black-color));
}

.TemplateMenu ul a {
    color: inherit;
    line-height: 3.5rem;
}

ul.arrown-down::after {
    width: 0;
    content: '';
    height: 0;
    border-right: 5px solid transparent;
    border-bottom: 5px solid rgb(var(--black-color));
    display: block;
    border-left: 5px solid transparent;
    top: -5px;
    position: absolute;
}

/* CTA  */
.header-cta-wrapper {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-basis: 0;
    flex: 1 1 0px;
    padding: 0;
    margin: 0;
    list-style: none;
}

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

/* Mobilmeny */
.mobile-menu.active-menu #brokerway-text {
    fill: rgb(var(--black-color));
}

.mobile-menu .hamburger {
    background-color: rgb(var(--black-color));
    border-radius: .5rem;
}

.mobile-menu .TemplateMenu a {
    text-align: right;
    padding-right: 4rem;
    font-size: 2rem;
    color: rgb(var(--gray-dark-color));
    font-weight: 300;
}

.mobile-menu .TemplateMenu a.toplevel {
    font-weight: 700;
}

.mobile-menu .TemplateMenu ul {
    background-color: transparent;
}

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

.mobile-menu.active-menu.scrolled #brokerway-text {
    fill: rgb(var(--white-color));
}

.mobile-menu .TemplateMenu>li>a,
.mobile-menu.scrolled .TemplateMenu>li>a {
    line-height: 7rem;
}

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

    header .header-logo svg {
        width: 11rem;
    }

    .header-cta-wrapper .btn {
        padding: 1rem;
    }
}

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

/* Top-section
========================================================================== */
.top-section {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    color: rgb(var(--white-color));
    background: linear-gradient(90deg, rgb(var(--black-color), .3) 0%, rgb(var(--black-color), .3) 100%);
    margin-top: calc(-1 * var(--menu-height));
}

.top-section .section-block {
    padding: 0;
}

.top-section h1 {
    font-size: 2.4rem;
    font-weight: 400;
    padding-bottom: 2rem;
    color: rgb(var(--white-color));
    text-align: center;
}

.usp-2 {
    display: block;
    font-size: 8rem;
}

.top-section p {
    color: rgb(var(--white-color));
    font-weight: 300;
    max-width: 50rem;
}

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

    .usp-2 {
        font-size: 6rem;
    }
}

@media only screen and (max-width: 580px) {
    .usp-2 {
        font-size: 4.5rem;
        margin-top: 2rem;
    }
}

@media only screen and (max-width: 375px) {
    .top-section h1 {
        font-size: 1.6rem;
    }

    .usp-2 {
        font-size: 3rem;
        margin-top: 1rem;
    }
}

/* Intro
========================================================================== */
.section-about .small-title {
    max-width: 40ch;
    margin: 0 auto;
}

/* Senaste nyheterna
========================================================================== */
.section-latest {
    overflow: hidden;
    background-image: url('/assets/images/stock-market-2000.jpg');
}

.section-latest .text-label,
.section-latest .section-title {
    color: rgb(var(--white-color));
}

.date {
    font-size: 1.4rem;
    color: rgb(var(--gray-color));
}

.scroll-wrapper .slick-list {
    overflow: visible;
}

.scroll-wrapper .slick-track {
    display: flex !important;
}

.slick-track .slick-slide {
    display: flex !important;
    flex-wrap: wrap;
    align-self: stretch;
    height: auto;
}

/* slick knappar */
.scroll-wrapper .slick-arrow {
    
    top: 0;
    width: 4rem;
    height: 4rem;
    font-size: 0;
    background-color: rgb(var(--primary-color));
    border: 1px solid rgb(var(--primary-color));
    border-radius: 50%;
    cursor: pointer;
    transition: .4s;
}

.scroll-wrapper .slick-arrow:not(.slick-disabled):hover,
.scroll-wrapper .slick-arrow:not(.slick-disabled):focus {
    background-color: transparent;
}

.scroll-wrapper .slick-arrow.slick-disabled {
    opacity: .5;
}

.scroll-wrapper .slick-prev {
    left: 0;
}

.scroll-wrapper .slick-next {
    left: 5rem;
}

.scroll-wrapper .slick-prev:before,
.scroll-wrapper .slick-next:before {
    color: rgb(var(--black-color));
    font-size: 2rem;
    font-family: 'Font Awesome 5 Pro';
}

.scroll-wrapper .slick-prev::before {
    content: '\f104';
}

.scroll-wrapper .slick-next::before {
    content: '\f105';
}

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

/* Custom navs
========================================================================== */
.nav-white header {
    background-color: rgb(var(--white-color));
}

.nav-white #brokerway-text,
.nav-white .mobile-menu.scrolled #brokerway-text {
    fill: rgb(var(--black-color));
}

.nav-white nav.mainmenu a:not(:hover) {
    color: rgb(var(--black-color));
}

.nav-white .hamburger-inner,
.nav-white .hamburger-inner::after,
.nav-white .hamburger-inner::before {
    color: rgb(var(--black-color));
    background-color: rgb(var(--black-color));
}

.nav-white .cta-menu .cta-link {
    color: rgb(var(--black-color));
}

/* Mobilmeny */
.nav-white .mobile-menu .hamburger-inner,
.nav-white .mobile-menu .hamburger-inner::after,
.nav-white .mobile-menu .hamburger-inner::before {
    background-color: rgb(var(--white-color));
}

.nav-white .mobile-menu nav.mainmenu a:not(:hover) {
    color: rgb(var(--black-color));
}

/* Hero
========================================================================== */
.EditMode .LayoutPage .hero .section-block {
    padding-top: 20rem;
}

.hero .section-block {
    padding: 0;
    min-height: 30vh;
    height: auto;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-form .section-block {
    padding: 0;
    min-height: 100vh !important;
    height: auto;
    position: relative;
    display: flex;
    align-items: center;
}

.hero.bg-video .section-block {
    background-color: rgb(var(--black-color), .4);
}

.hero .section-title {
    font-size: 8rem;
    text-transform: uppercase;
    padding: 0;
    color: rgb(var(--white-color));
}

.hero-form  .section-title {
    font-size: 8rem;
    text-transform: uppercase;
    padding: 0;
    padding-bottom: 8rem;
    color: rgb(var(--white-color));
}

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

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

/* ==========================================================================
Undersida: Products
========================================================================== */
.hero-products-all .split-image {
    max-width: 50rem;
}

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

/* ==========================================================================
Undersida: Products > Single products
========================================================================== */
.hero-product .section-block {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background-size: 40rem auto;
    background-position: right bottom;
    background-repeat: no-repeat;
    padding-bottom: 30rem;
}

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

.ca .section-block {
    background-image: url(/assets/images/icons/ca.png);
}

.clear .section-block {
    background-image: url(/assets/images/icons/clear.png);
}

.dc .section-block {
    background-image: url(/assets/images/icons/safe-800px.png);
}

.set .section-block {
    background-image: url(/assets/images/icons/set.png);
}

@media only screen and (max-width: 700px) {
    .hero-product .section-block {
        background-size: 28rem auto;
    }
}

/* ==========================================================================
Undersida: About us
========================================================================== */
.hero-video {
    background: transparent;
}

/* ==========================================================================
Undersida: News
========================================================================== */
.section-news .small-title {
    font-size: 2rem;
}

.section-news .card-item p {
    font-size: 1.4rem;
}

/* ==========================================================================
Undersida: News > News page
========================================================================== */
.section-page .section-block {
    padding-top: 4rem;
}

.section-page .section-title {
    max-width: 70rem;
}

.section-page p {
    max-width: 100rem;
}

/* ==========================================================================
Undersida: Contact us
========================================================================== */

/* Kontaktformular + uppgifter
========================================================================== */

.contact-box{
    background:rgba(94, 94, 94, 0.248);
    padding: 4rem;
}



.LayoutPage .grecaptcha-badge {
    box-shadow: none !important;
    display: none !important;
}

.section-contact .section-block-wrapper {
    align-items: center;
}

.section-contact .col-1 {
    box-shadow: var(--box-shadow);
    padding: 2rem;
}

.ContactForm {
    max-width: 80rem;
    margin: 0 auto;
}

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

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

@media only screen and (max-width: 500px) {
    .section-contact .col-1 {
        box-shadow: none;
        padding:2rem 0;
    }
}




/* Karta
========================================================================== */
.section-map {
    font-size: 0;
}

.section-map iframe {
    width: 100%;
    height: 45rem;
    border: none;
}

/* ==========================================================================
Footer
========================================================================== */
.footer {
    background-color: rgb(var(--black-color));
    color: rgb(var(--white-color));
}

.footer-container {
    max-width: 160rem;
    padding: 2rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Footer top */
.footer-top {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgb(var(--white-color), .2);
}

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

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

.footer a {
    text-decoration: none;
    transition: .2s ease;
    color: rgb(var(--white-color));
    font-size: 1.4rem;
}

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

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

.footer li,
.footer p,
.footer a {
    text-align: center;
}

.partner-logo{
    position: absolute;
    right: 0;
    max-width: 23rem;
    margin-right: 2rem;

}

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

.footer-bottom p {
    font-size: 1.3rem;
    padding: 0;
}

/* WebbEss Stamp  */
.footer .webbess-stamp {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin-top: 1rem;
    font-size: 1.2rem;
    font-weight: normal;
}

.webbess-stamp img {
    width: 3rem;
    margin-left: 1rem;
	filter: invert();
}
@media only screen and (max-width: 1100px) {
.partner-logo{
    position: relative;
    margin-right: 0;
}
}

@media only screen and (max-width: 750px) {
    /* Footer top */
    .footer li {
        display: block;
    }
}

@media only screen and (max-width: 510px) {
    /* Footer top */
    .footer-top {
        padding: 1.5rem 0;
    }

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