/* Sest Interiors */

/* ==========================================================================
Generellt
========================================================================== */
:root {
    /* 	Colors */
    --primary-color: 245, 92, 83;

    --black-color: 17, 17, 17;
    --gray-dark-color: 58, 58, 58;
    --gray-color: 222, 224, 224;
    --gray-light-color: 239, 237, 233;
    --white-color: 255, 255, 255;

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

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

    /* 	Mobile nav */
    --activate-mobile-menu: 99999;
    --mobile-menu-height: 11rem;
    --mobile-menu-bg: var(--white-color);
    --menu-color: var(--black-color);
}

@media only screen and (max-width: 580px) {
    :root {
        --base-size: 1.5rem;
    }
}

/* Layout
========================================================================== */
main {
    min-height: calc(100vh - var(--mobile-menu-height) - 8rem);
}

.section-block {
    padding: 5rem 5rem;
}

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

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

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

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

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

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

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

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

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

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

/* Övriga klasser */
.align-center {
    align-content: center;
}

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

/* Rubriker */
.section-title {
    padding-bottom: 0.2em;
    font-size: 3.7rem;
    font-weight: 500;
    line-height: 1.2;
    text-transform: uppercase;
}

.small-title {
    padding-bottom: .3em;
    font-size: 2.2rem;
    font-weight: 500;
    line-height: 1.4;
    text-transform: uppercase;
}

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

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

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

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

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

.text-italic {
    font-style: italic;
}

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

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

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

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

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

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

/* Knappar */
.btn,
.ContactSubmit {
    min-width: 15rem;
    padding: 1.2rem 2.5rem;
    font-size: 1.4rem;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    border: 1px solid;
    transition: all .4s ease;
}

.btn-white-filled,
.ContactSubmit {
    color: rgb(var(--black-color));
    border-color: rgb(var(--white-color));
    background-color: rgb(var(--white-color));
}

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

/* Arrow link */
.arrow-link {
    margin: 1rem 2rem 0 0;
    font-size: 1.4rem;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
}

.arrow-link::after {
    content: ' \f061';
    display: inline-block;
    margin-left: 1rem;
    font-weight: 400;
    font-family: 'Font Awesome 5 Pro';
    color: rgb(var(--primary-color));
    transition: transform .4s ease;
}

.arrow-link:hover::after {
    transform: translateX(5px);
    transition: transform .4s ease;
}

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

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

.circle-icon:hover {
    background-color: rgb(var(--gray-dark-color));
}

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

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

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

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

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

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

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

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

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

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

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

.bg-image {
    background-color: rgb(var(--black-color), .3);
    min-height: calc(100vh - var(--mobile-menu-height));
}

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

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

/* Cards
========================================================================== */
.cards-wrapper {
    display: flex;
    flex-wrap: wrap;
    margin-right: -1rem;
    margin-left: -1rem;
}

.cards-wrapper .card-item {
    text-decoration: none;
    transition: .3s ease;
}

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

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

    /* 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) {

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

    /* Paddings */
    .cards-wrapper .p-4 {
        padding: 2rem;
    }

    .cards-wrapper .p-3,
    .cards-wrapper .p-2 {
        padding: 1rem;
    }
}

/* Card 1-1 */
.card-1-1 .card-item {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 1rem;

}

.card-1-1 .card-item:hover {
    background-color: rgb(var(--gray-dark-color));
}

.card-1-1 .card-item.centered {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* Card 2-2 */
.card-2-2 {
    justify-content: flex-end;
}

.card-2-2 .border-top-black {
    padding-top: 1.5rem;
    margin-top: 1.5rem;
}

/* Card 2-4 */
.card-2-4 .card-item {
    display: flex;
    align-items: center;
    padding: 5px;
}

.card-2-4 a.card-item:hover {
    background: rgb(var(--white-color));
}

.card-2-4 .card-header {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
}

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

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

.card-2-4 .text-small {
    font-size: 1.4rem;
}

@media only screen and (max-width: 420px) {
    .card-2-4 .card-header {
        width: 4rem;
        height: 4rem;
    }

    .card-2-4 .card-body {
        padding: 1rem;
    }
}

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

.card-3-4 .image-wrapper {
    width: 23rem;
    height: 23rem;
    margin-right: 3rem;
}

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

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

    .card-3-4 .image-wrapper {
        margin-bottom: 2rem;
    }
}

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

/* Övriga klasser */
.split-wrapper .content-image {
    padding: 0 1rem;
}

/* Split image med grid */
.split-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 1rem;
    width: 50%;
    min-height: 45rem;
}

.split-image-grid .grid-image {
    position: relative;
    width: 100%;
}

.split-image-grid>.grid-image:nth-child(1) {
    grid-column: 1 / 1;
    -ms-grid-column: 1;
    grid-row: 1 / 3;
    -ms-grid-row: 1;
}

.split-image-grid>.grid-image:nth-child(2) {
    grid-column: 2 / 2;
    -ms-grid-column: 2;
    grid-row: 1 / 1;
    -ms-grid-row: 1;
}

.split-image-grid>.grid-image:nth-child(3) {
    grid-column: 2 / 2;
    -ms-grid-column: 2;
    grid-row: 2 / 2;
    -ms-grid-row: 2;
}

.split-image-grid .split-image {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

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

    .split-wrapper,
    .split-wrapper.reverse {
        flex-direction: column;
        background: transparent;
    }

    .split-content {
        width: 100%;
        padding: 0 0 3rem;
        background: transparent;
    }

    .split-image {
        width: 100%;
    }

    .split-wrapper .pt-0 {
        padding: 2rem 0;
    }

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

    .split-image-grid {
        display: -ms-grid;
        display: grid;
        grid-template-columns: 1fr 1fr;
        -ms-grid-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr;
        -ms-grid-rows: 1fr 1fr;
        gap: 1rem;
        width: 100%;
        min-height: 30rem;
        margin: -1rem 0;
    }

    .split-image-grid .grid-image {
        position: relative;
        width: 100%;
    }

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

    .split-image-grid>.grid-image:nth-child(1) {
        grid-column: 1 / 1;
        -ms-grid-column: 1;
        grid-row: 1 / 3;
        -ms-grid-row: 1;
    }

    .split-image-grid>.grid-image:nth-child(2) {
        grid-column: 2 / 2;
        -ms-grid-column: 2;
        grid-row: 1 / 1;
        -ms-grid-row: 1;
    }

    .split-image-grid>.grid-image:nth-child(3) {
        grid-column: 2 / 2;
        -ms-grid-column: 2;
        grid-row: 2 / 2;
        -ms-grid-row: 2;
    }

    .split-image-grid .split-image {
        position: absolute;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
    }
}

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

.EditMode.WebbEssDIY header {
    top: 10px !important;
}

header .container {
    max-width: none;
}

/* Logga */
.header-logo img {
    transition: none;
    padding: 2rem 0;
}

.mobile-menu .mainmenu {
    width: 37rem;
    left: unset;
    right: 0px;
    box-shadow: 0 0 10px rgb(var(--black-color), .05);
}

.mobile-menu .TemplateMenu {
    padding: 0 5rem 0 0;
    text-align: right;
}

.mobile-menu .TemplateMenu a {
    text-transform: uppercase;
}

.mobile-menu .TemplateMenu>li>a,
.mobile-menu.scrolled .TemplateMenu>li>a {
    font-size: 2rem;
    font-weight: 400;
    line-height: 2.5;
    color: rgb(var(--black-color));
}

.mobile-menu .TemplateMenu ul a {
    font-size: 1.7rem;
    font-weight: 300;
    line-height: 2.5;
    color: rgb(var(--gray-dark-color));
}

.mobile-menu .TemplateMenu li.active>a,
.mobile-menu .TemplateMenu a:hover,
.mobile-menu .TemplateMenu ul a:hover {
    color: rgb(var(--primary-color));
}

@media only screen and (max-width: 1600px) {
    .mobile-menu .mainmenu {
        padding-top: var(--mobile-menu-height);
    }
}

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

    /* Nav */
    .mobile-menu .TemplateMenu {
        padding: 0 2rem 0 0;
    }
}

@media only screen and (max-width: 580px) {
    :root {
        --mobile-menu-height: 9rem;
    }

    /* Nav */
    .mobile-menu .TemplateMenu {
        padding: 0 1rem 0 0;
    }
}

/* ==========================================================================
Startsida
========================================================================== */
/* .IndexPage {
    --menu-color: var(--white-color);
} */

.IndexPage footer {
    display: none;
}

/* Top-section
========================================================================== */
.top-section {
    display: flex;
    align-items: flex-end;
    min-height: calc(100vh - var(--mobile-menu-height));
    background-color: rgb(var(--black-color), .2);
}

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

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

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

.top-section .btn-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.top-section .btn {
    max-width: 32rem;
    padding: 1.3rem 1.7rem;
    margin: 0.5rem;
}

/*@media (min-width: 1154px) {
    .top-section .btn-wrapper .btn:last-of-type {
        width: 100%;
        max-width: 15rem;
        margin: auto;
        margin-bottom: 0.5rem;
    }
} */

.top-section .text-small {
    font-size: 1rem;
}


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

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

    .top-section .btn-wrapper {
        flex-direction: column;
    }

    /*.top-section .btn-wrapper .btn:last-of-type {
        margin-left: 0;
        margin-top: 2rem;
    }*/

    .top-section .btn-black-filled {
        background-color: rgb(var(--black-color), .7);
    }
}

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

}

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

/* Hero - Grundkod
========================================================================== */
.hero {
    display: flex;
    align-items: flex-end;
    min-height: 60vh;
    padding-top: var(--mobile-menu-height);
    margin-top: calc(-1 * var(--mobile-menu-height));
    background-color: rgb(var(--black-color), .2);
}

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

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

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

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

/* CTA-sektion
========================================================================== */
.section-cta {
    background: rgb(var(--primary-color));
}

.section-cta .cta-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

@media only screen and (max-width: 1000px) {
    .cta-inner {
        flex-direction: column;
    }
}

/* From vision to reality - Vanlig slick
========================================================================== */
.section-scroll {
    overflow: hidden;
}

.scroll-wrapper.cards-wrapper .slick-list {
    width: 100%;
    overflow: visible;
}

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

.scroll-wrapper .slick-slide {
    height: auto;
    min-height: unset;
}

.scroll-wrapper .split-wrapper {
    height: 100%;
}

.scroll-wrapper.cards-wrapper {
    max-width: var(--section-width);
    margin: 0 auto 2rem;
}

.scroll-wrapper.cards-wrapper .card-item {
    display: flex;
    flex-direction: column;
    height: auto;
    margin: 0 1rem 0 0;
}

.scroll-wrapper .slick-slide {
    transition: all .3s ease;
}

.scroll-wrapper .slick-slide[aria-hidden="true"] {
    opacity: .5;
}

/* Slick dots */
.scroll-wrapper .slick-dots {
    position: absolute;
    bottom: -3rem;
    left: 50%;
    padding: 0;
    margin: 0;
    transform: translateX(-50%);
}

.slick-dots li::before {
    content: '\f0c8';
    font-size: 1.2rem;
    color: rgb(var(--gray-color));
}

.scroll-wrapper li.slick-active::before {
    opacity: 1;
    color: rgb(var(--primary-color));
    transition: all .2s ease;
}

/* @media only screen and (max-width: 1700px) {
    .scroll-wrapper.cards-wrapper {
        margin: 0 16rem 3rem;
    }
} */

/* Unique Pieces - Slick med smoothscroll
========================================================================== */
.smoothscrolling-wrapper.cards-wrapper .card-item {
    margin: 0;
}

.smoothscrolling-wrapper.cards-wrapper .card-item.mr-1 {
    margin-right: 1rem;
}

.smoothscrolling-wrapper.cards-wrapper .card-item[aria-hidden="true"] {
    opacity: 1;
    transform: none;
}

/* References
========================================================================== */
.section-references .text-white {
    font-size: 2.1rem;
    line-height: 1.5;
}

@media only screen and (max-width: 580px) {
    .section-references .text-white {
        font-size: 1.5rem;
    }
}

/* ==========================================================================
Undersida: Contact
========================================================================== */
.section-contact .col-1 .col-wrapper,
.section-contact .col-1 .code-part,
.section-contact .col-1 .block-object {
    height: 100%;
}

@media only screen and (max-width: 980px) {
    .section-contact .section-block-wrapper {
        flex-direction: column-reverse;
    }

    .section-contact .col-1 iframe {
        height: 40rem;
    }
}

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

footer .footer-container {
    max-width: none;
}

/* Sociala medier */
.footer-socials {
    text-align: center;
}

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

.footer-bottom p,
.footer-bottom a a:not(.circle-icon) {
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgb(var(--gray-dark-color));
}

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

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

    .footer-bottom {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 2rem 0;
    }

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