/*  Art´n Dito Johan Sjolin AB */

/* fonts */
@import url("https://use.typekit.net/lcz3zxm.css");

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

/* ==========================================================================
Generellt
========================================================================== */
:root {
    /* 	Colors */
    --primary-color: 51, 51, 51;

    --black-color: 17, 17, 17;
    --gray-color: 110, 110, 110;
    --gray-light-color: 243, 241, 237;
    --white-color: 255, 255, 255;

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

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

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

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

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

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

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

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

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

@media only screen and (max-width: 1070px) {
    .section-block {
        padding: 8rem 3rem;
    }
}

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

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

/* Rubriker */
.text-label {
    padding-bottom: 2.5rem;
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.3;
    letter-spacing: 0.25em;
    color: rgb(var(--primary-color));
}

.section-title {
    padding-bottom: 4rem;
    font-size: 4rem;
    font-weight: 300;
    line-height: 1.3;
    font-family: ethnocentric, sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.3rem;
    color: rgb(var(--primary-color));
}

.small-title {
    letter-spacing: 0.1em;
    font-weight: 400;
    font-size: 4rem;
    padding-bottom: 0;
    font-family: ethnocentric, sans-serif;
    text-transform: uppercase;
}

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

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

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

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

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

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

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

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

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

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

.cards-wrapper:not(.w-100) {
    margin-left: -1rem;
    margin-right: -1rem;
}

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

/* Cards lift */
.cards-lift {
    padding-top: 4rem;
}

.cards-wrapper.cards-lift .lifted {
    margin-top: -5rem;
    margin-bottom: 5rem;
}

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

    .cards-wrapper:not(.w-100) {
        margin-left: 0;
        margin-right: 0;
    }

    .cards-lift {
        padding-top: 0;
    }
}

/* Card 3-1 */
.card-3-1 .image-wrapper {
    height: 45rem;
}

.card-3-1 .image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(var(--black-color), .4);
}

.card-3-1 .small-title {
    z-index: 1;
    position: absolute;
    bottom: 3rem;
    left: 3rem;
    letter-spacing: 0.1em;
    font-weight: 400;
    padding-bottom: 0;
}

/* Card 3-6 */
.card-3-6 .card-item {
    position: relative;
    padding: 42rem 3rem 3rem;
}

.card-3-6 .image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

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

.card-3-6 .card-item:hover .image-wrapper::after {
    background: rgba(var(--black-color), .7);
}

.card-3-6 .card-body {
    z-index: 1;
    position: absolute;
    bottom: 3rem;
    right: 2rem;
    left: 2rem;
}

.card-3-6 .small-title {
    padding-bottom: 2rem;
    font-size: 2.5rem;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.3rem;
    font-family: proxima-nova, sans-serif;
    text-transform: none;
}

@media only screen and (max-width: 1200px) {
    .card-3-6 .small-title {
        padding-bottom: 1rem;
    }
}

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

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

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

.split-image {
    width: 50%;
}

.split-wrapper .align-center {
    align-self: center;
}

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

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

/* Speciella hojder */
.split-image .h-60 {
    max-height: 60rem;
}

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

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

    .split-wrapper .align-center {
        align-self: flex-start;
    }

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

    .split-image {
        width: 100%;
    }
}

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

/* Header / Navigation
========================================================================== */
header .container {
    max-width: 100%;
}

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

.header-logo img {
    min-height: 16rem;
    position: absolute;
    top: 1rem;
    transition: .4s ease;
}

/* Header scrolled */
header.scrolled {
    box-shadow: 0 0 3rem rgba(var(--black-color), .1);
}

header.scrolled .header-logo img {
    min-height: var(--menu-height-scrolled);
    position: unset;
}

/* Nav */
.TemplateMenu a {
    font-size: 1.3rem;
    color: rgb(var(--black-color));
    letter-spacing: 0.2rem;
}

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

/* Mobilmeny */
.mobile-menu .TemplateMenu>li {
    padding: 2rem 3rem;
}

.mobile-menu .TemplateMenu>li>a {
    font-size: 2rem;
}

.mobile-menu.active-menu .header-logo img {
    min-height: var(--menu-height-scrolled);
    position: unset;
}

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

@media only screen and (max-width: 600px) {
    .header-logo img {
        min-height: var(--mobile-menu-height);
        position: unset;
    }
}

/* 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: 30rem;
    background-image: linear-gradient(to bottom, rgba(var(--black-color), 0.6) 60%, rgb(var(--white-color)) 60%);
}

/* Bilder */
.parallax-recording::after {
    background-image: url(/assets/images/nytagning-2000px.jpg);
}

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

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

/* Top-section
========================================================================== */
.top-section {
    display: flex;
    align-items: center;
    min-height: calc(75vh - var(--menu-height));
    padding-top: var(--menu-height);
    margin-top: calc(var(--menu-height) * -1);
}

.top-section .section-title {
    font-size: 5rem;
    font-weight: 400;
    color: rgb(var(--black-color));
    line-height: 1.1;
    padding-bottom: 3rem;
}

.top-section .section-block p {
    max-width: 70rem;
}

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

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

/* Filmer
========================================================================== */
.section-slider {
    overflow: hidden;
}

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

.section-slider .card-item {
    padding: 1rem;
}

/* Om oss
========================================================================== */
@media only screen and (max-width: 1440px) {
    .section-about .h-60 {
        max-height: 90rem;
    }

    .section-about .split-content {
        padding-top: 5rem;
    }
}

@media only screen and (max-width: 1300px) {
    .section-about .h-60 {
        max-height: 50rem;
    }

    .section-about .split-image {
        padding-right: 2rem;
        display: flex;
        align-items: center;
    }
}

/* Referenser
========================================================================== */
.section-scroll {
    overflow: hidden;
}

/* Slider */
.scroll-wrapper.cards-wrapper {
    margin-bottom: 5rem;
}

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

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

.scroll-wrapper.cards-wrapper .card-item {
    display: flex;
    height: auto;
    width: 400px;
}

/* Card item */
.scroll-wrapper .card-item {
    margin: 0 2rem 0 0;
}

/* Slick Arrow */
.scroll-wrapper .slick-arrow {
    position: absolute;
    top: -8rem;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background-color: rgb(var(--white-color));
    border: 1px solid rgb(var(--black-color));
}

.scroll-wrapper .slick-arrow::after {
    font-weight: 300;
    color: rgb(var(--black-color));
}

.scroll-wrapper .slick-next {
    right: 1rem;
}

.scroll-wrapper .slick-prev {
    left: auto;
    right:
        6rem;
}

@media only screen and (max-width: 1100px) {
    .section-scroll .section-title {
        padding-bottom: 12rem;
    }
}

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

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

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

.footer-menu-large {
    width: 25%;
}

.footer-menu .logo-item {
    height: 10rem;
}

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

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

.footer-submenu {
    padding: 0;
    margin: 0 0 3rem;
    list-style: none;
}

.footer-top li,
.footer-top p,
.footer-top a:not(.circle-icon) {
    text-decoration: none;
    font-size: 1.5rem;
}

.footer a:not(.circle-icon):hover {
    text-decoration: underline;
}

/* Social Menu */
.footer .social-menu {
    list-style: none;
    padding: 0;
}

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

.footer-bottom p,
.footer-bottom a {
    font-size: 1.4rem;
    line-height: 1.6;
}

/* WebbEss Stamp  */
.footer .webbess-stamp {
    display: flex;
    align-items: center;
    text-decoration: none;
}

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

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

    .footer-menu,
    .footer-menu-large {
        width: 49%;
    }
}

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

    .footer-menu,
    .footer-menu-large {
        width: 100%;
    }
}

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

    .footer-bottom {
        flex-direction: column-reverse;
        text-align: center;
    }

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