/* Hansen Lau Sten & Platt AB */

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

/* ==========================================================================
Generellt 
========================================================================== */
:root {
    /* 	Layout  */
    --col-padding: 5rem;
    --section-width: 140rem;
    --menu-height: 7.2rem;
    --menu-height-scrolled: 7.2rem;

    /* 	Colors */
    --primary-color: 240, 119, 37;

    --black-color: 17, 17, 17;
    --gray-dark-color: 58, 58, 58;
    --gray-color: 142, 142, 142;
    --gray-light-color: 240, 240, 240;
    --white-color: 255, 255, 255; 

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

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

/* Layout
========================================================================== */
.section-block {
    padding: 10rem 4rem;
}

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

/* Margins */
.mb-3 {
    margin-bottom: 3rem;
}

/* Övriga klasser */
.hidden-items {
    display: none;
}

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

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

/* Rubriker */
.section-title {
    padding-bottom: 2rem;
    font-size: 4rem;
    font-weight: 500;
    color: rgb(var(--black-color));
}

.small-title {
    font-size: 2.5rem;
    letter-spacing: .1rem;
    color: rgb(var(--black-color));
}

/* Brödtext och länkar */
p {
    font-weight: 300;
}

/* Övriga klasser */
.text-block {
    max-width: 75rem;
}

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

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

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

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

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

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

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

.btn,
.ContactSubmit {
    padding: 1.4rem 3.5rem;
    margin: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    border-radius: 8px;
    text-decoration: none;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
}

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

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

.btn-primary-filled,
.ContactSubmit { 
    color: rgb(var(--white-color));
    background: rgb(var(--black-color));
    border: 0.1rem solid rgb(var(--white-color), .5);
}

/* Lank med ikon */
.icon-links {
    padding: .5rem 1rem;
    margin: .3rem 1rem; 
    font-size: 1.3rem;
    border-radius: 2rem;
    color: rgb(var(--black-color));
    text-decoration: none;
    background: rgb(var(--white-color));
    transition: .2s ease;
}

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

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

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

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

/* Bakgrundsbilder och videos
========================================================================== */
.bg-image {
    position: relative;
    margin-top: calc(-1 * var(--menu-height));
    background: rgb(var(--black-color));
}

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

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

/* 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-100 .card-item {
    width: 100%;
    margin: 1rem 0;
}

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

@media only screen and (max-width: 1050px) {
    .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.w-25 .card-item,
    .cards-wrapper.w-33 .card-item {
        width: 100%;
        margin: 1rem 0;
    }
}

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

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

.card-2-4 a {
    text-decoration: none;
}

.card-2-4 .card-header {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 7rem;
    height: 7rem;
    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;
}

/* Cards 15  */
.cards-15 .card-item {
    position: relative;
    display: flex;
    align-items: flex-end;
    min-height: 35rem;
    margin: 3rem 0;
}

.cards-15 .image-wrapper {
    position: absolute;
    margin: auto;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 1rem;
}

.cards-15 .image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(var(--black-color), .2);
    transition: .3s ease;
}

.cards-15 .card-item:hover .image-wrapper::after {
    background: rgba(var(--black-color), .4);
}

.cards-15 .text-wrapper {
    z-index: 1;
    position: relative;
    padding: 3rem 2rem 2rem 5rem; 
}

.cards-15 .small-title,
.cards-15 p {
    color: rgb(var(--white-color));
}

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

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

.split-wrapper .align-end {
    align-self: flex-end;
}

/* Ruta bakom text */
.split-wrapper.box {
    margin-bottom: 3rem;
}

.split-wrapper.box .split-content {
    position: relative;
    margin-top: 3rem;
}

.split-wrapper.box .text-block {
    z-index: 1;
    position: relative;
}

.split-wrapper.box .split-content::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: calc(100% + 80%);
    height: calc(100% + 3rem);
    border-radius: 0 0 0 1.5rem;
}

.split-wrapper.box.reverse .split-content::after {
    left: -80%;
    border-radius: 0 0 1.5rem 0; 
}

.split-wrapper.box-white .split-content::after {
    background: rgb(var(--white-color));
}

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

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

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

    /* Ruta bakom text */
    .split-wrapper.box .split-content {
        padding: 3rem 0;
        margin: 0;
    }

    .split-wrapper.box .split-content::after,
    .split-wrapper.box.reverse .split-content::after {
        left: -2.5rem;
        width: calc(100% + 5rem);
        height: calc(100% + 5rem);
        border-radius: 0;
    }
}

@media screen and (max-width: 580px) {
    .split-wrapper.box .split-content::after,
    .split-wrapper.box.reverse .split-content::after {
        left: -2rem;
        width: calc(100% + 4rem);
        height: calc(100% + 4rem);
    }
}

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

.IndexPage header:not(.scrolled) {
    background-color: transparent;
    border-bottom: 1px solid transparent;
}

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

header:not(.scrolled, .active-menu) .header-logo {
    filter: invert();
}

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

.IndexPage header:not(.scrolled, .mobile-menu) .TemplateMenu a:not(:hover) {
    color: rgb(var(--white-color));
}

/* CTA  */
.header-cta-wrapper {
    position: relative;
    z-index: 9;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex: 1 1 0;
    padding: 0;
    margin: 0;
    list-style: none;
}

.header-cta-wrapper .btn {
    min-width: unset;
    padding: 1.2rem 2rem;
    margin: 0;
    line-height: 1;
    white-space: nowrap;
}

/* Mobilmeny */
.mobile-menu .TemplateMenu {
    text-align: center;
}

@media only screen and (max-width: 580px) {
    /* CTA  */
    .header-cta-wrapper .btn {
        padding: 0.7rem 1.5rem;
    }
}

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

/* Top-section
========================================================================== */
.top-section {
    position: relative; 
    display: flex;
    justify-content: center;
    align-items: center; 
    min-height: 95vh;
    background-color: rgb(var(--black-color) , .6);
    background-image: url(/assets/images/graphics/wave-2.svg);
    background-size: 100% 10rem;
    background-repeat: no-repeat;
    background-position: center bottom; 
} 

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

.partner-logo {
    max-width: 15rem;
    margin: 0 auto 3rem;
}

.top-section .section-title {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1;
}

/* Bouncing arrow */
.bouncing-arrow-wrapper {
    position: absolute;
    left: 50%;
    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(-50%);
}

.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(--black-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: 1024px) {
    .top-section .section-title {
        font-size: 4rem;
    }

    .bouncing-arrow-wrapper {
        display: none; 
    }
}

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

/* Tidigare projekt
========================================================================== */
.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;
    justify-content: flex-end;
    align-items: flex-start;
    height: 45rem; 
    margin: 0 1rem;
    transition: all .3s ease;
}

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

@media only screen and (max-width: 750px) {
    .scroll-wrapper.cards-wrapper .card-item {
        margin: 0;
    }
}

/* Om oss
========================================================================== */
/* .about-slider {
    padding-top: 30px;
}

.about-slider:hover {
    cursor: pointer;
}

ul.slick-dots {
    text-align: center !important;
    bottom: -50px;
} */

/* Tidigare Projekt
========================================================================== */
/* .tidigare-projekt {
    background-image:
        linear-gradient(to bottom, rgba(var(--black-color), .85), rgba(var(--black-color), .85)),
        url('/assets/images/background/hansenlau-header-background-1799px.jpg');
    position: relative;
}

.simple-pagination ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0;
    margin: 0;
    list-style: none;
}

.simple-pagination li {
    margin: 0 .3rem;
}

.simple-pagination a,
.simple-pagination span {
    font-size: 16px;
    line-height: 20px;
    padding: .2rem 1rem;
    border-radius: 5px;
    border: 1px solid rgb(var(--primary-color));
    background: -webkit-linear-gradient(top, rgb(var(--white-color)), rgb(var(--white-color)) 100%);
}

.simple-pagination li.active span,
.simple-pagination li.active a,
.simple-pagination li.disabled span,
.simple-pagination li.disabled a {
    border: 1px solid rgb(var(--primary-color)); 
    background: rgb(var(--primary-color));
    border-radius: 5px;
} */

/* Kontakt
========================================================================== */
.section-contact .section-block-wrapper {
    justify-content: space-between;
}

.section-contact .col-2 {
    max-width: 50rem;
    padding: 3rem;
    background: rgb(var(--gray-light-color));
    border-radius: 1.5rem;
}

@media only screen and (max-width: 980px) {
    .section-contact .col-2 {
        max-width: 100%;
        margin-top: 5rem;
    }
}

/* ==========================================================================
Footer
========================================================================== */
footer {
    padding-top: 5rem; 
    background: rgb(var(--gray-light-color));
}

.footer-container {
    padding: 0 2rem;
    --base-size: 1.5rem;
}
 
/* Footer top */
.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; 
    padding: 2rem;
}

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

.footer-menu.logos .footer-submenu {
    display: flex;
    align-items: center; 
}

.footer-menu .footer-logo {
    height: 16rem;
    margin: 1rem; 
} 

.footer a {
    text-decoration: none;
    transition: .2s ease;
}

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

/* Footer bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    margin-top: 1rem; 
    border-top: 1px solid rgb(var(--black-color)); 
}

.footer-bottom p {
    font-size: 1.4rem;
} 

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

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

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

    /* Footer heading */
    .footer-heading .section-title {
        font-size: 4.5rem;
    }

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

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

    /* Footer heading */
    .footer-heading .section-title {
        font-size: 2.0rem;
    }

    .footer-heading p {
        font-size: var(--base-size);
    }

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

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

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

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

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