/* Scenta */

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

/* ==========================================================================
Generellt 
========================================================================== */
:root {
    /* 	Colors */
    --primary-color: 240, 194, 178;

    --black-color: 1, 1, 1;
    --gray-dark-color: 58, 58, 58;
    --gray-color: 125, 125, 125;
    --gray-light-color: 236, 236, 236;
    --white-color: 255, 255, 255;

    /* 	Layout  */
    --section-width: 140rem;
    --col-padding: 3rem;
    --menu-height: 9rem;
    --menu-height-scrolled: 9rem;

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

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

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

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

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

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

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

/* Bredder */
.mw-760 .section-block-wrapper {
    max-width: 76rem;
}

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

@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: "Google Sans", sans-serif;
}

/* Rubriker */
.text-label {
    padding-bottom: 1em;
    font-size: 1.3rem;
    font-weight: 500;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: rgb(var(--black-color));
}

.section-title {
    padding-bottom: .3em;
    font-size: 4rem;
    font-weight: 400;
    line-height: 1.2;
    text-transform: uppercase;
    color: rgb(var(--black-color));
}

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

.small-title {
    padding-bottom: .2em;
    font-size: 3.2rem;
    font-weight: 400;
    line-height: 1.4;
    color: rgb(var(--black-color));
}

.ingress {
    font-size: 1.9rem;
    line-height: 1.5;
}

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

.text-smaller {
    font-size: 1.5rem;
}

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

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

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

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

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

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

    /* Rubriker */
    .section-title,
    .section-title.bigger {
        font-size: 4.2rem;
    }

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

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

    /* Rubriker */
    .section-title,
    .section-title.bigger {
        font-size: 3.4rem;
    }

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

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

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

/* Knappar */
.btn {
    display: inline-block;
    min-width: 15rem;
    padding: 1.2rem 2rem;
    margin: 5px;
    font-weight: 600;
    font-size: 1.3rem;
    border-radius: 3rem;
    text-align: center;
    text-decoration: none;
    font-family: inherit;
    transition: all .4s ease;
}

.btn i {
    margin-right: 5px;
    font-size: 1.5rem;
}

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

a.btn-primary-filled:hover {
    color: rgb(var(--primary-color));
    background-color: transparent;
}

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

.btn-white-border:hover {
    background-color: transparent;
    background-color: rgb(var(--white-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));
    background-color: transparent;
}

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

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

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

/* Grafiska element
========================================================================== */
/* Borders */
.border-gray-light-1 {
    border: 1px solid rgb(var(--gray-light-color));
}

/* Border radius */
.br-2 {
    border-radius: 2rem;
}

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

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

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

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

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

.card-item {
    text-decoration: none;
}

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

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

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

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

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

    /* Bredder */
    .cards-wrapper.w-25 .card-item,
    .cards-wrapper.w-33 .card-item {
        width: calc((100% / 2) - 4rem);
    }
}

@media only screen and (max-width: 750px) {
    .cards-wrapper:not(.w-100) {
        margin-left: 0;
        margin-right: 0;
    }

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

/* Card-2-1 */
.card-2-1 .icon-wrapper i {
    padding-bottom: 1rem;
    font-size: 2rem;
}

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

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

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

.split-image {
    width: 50%;
}

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

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

@media screen and (max-width: 1000px) {
    .split-content {
        width: 100%;
    }

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

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

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

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

/* Top header */
.top-header {
    z-index: 1;
    position: relative;
    display: flex;
    align-items: center;
    width: calc(100% + 10rem);
    height: 4rem;
    margin-left: -5rem;
    margin-right: -5rem;
    background-color: rgb(var(--black-color));
    overflow: hidden;
    transition: .3s ease;
}

.scrolled .top-header {
    height: 0;
}

.ticker-track {
    display: flex;
    white-space: nowrap;
    animation: ticker-scroll 28s linear infinite;
    will-change: transform;
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    padding: 0 2.5rem;
    font-size: 1.3rem;
    font-weight: 500;
    color: rgb(var(--white-color));
}

.ticker-item i {
    margin-right: 7px;
}

@keyframes ticker-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Logo */
.header-logo {
    flex: 1 1 0;
    margin-right: 2rem;
}

header:not(.mobile-menu) .header-logo img {
    padding: 2.5rem 0;
}

/* Nav */
.TemplateMenu a {
    padding: 0 3rem;
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: .05em;
    color: rgb(var(--black-color));
    text-transform: uppercase;
}

/* Dolj hem */
header:not(.mobile-menu) .TemplateMenu>li:nth-child(1) {
    display: none;
}

/* 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 li {
    margin: 0 .5rem;
}

.header-cta-wrapper .btn {
    min-width: unset;
    padding: .7rem 1.1rem;
    margin: 0;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1;
    white-space: nowrap;
}

.header-cta-wrapper .btn i {
    font-size: 1.4rem;
}

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

    /* Top header */
    .top-header {
        width: calc(100% + 4rem);
        margin-left: -2rem;
        margin-right: -2rem;
    }
}

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

    /* Top header */
    .top-header {
        width: calc(100% + 2rem);
        padding: 0 1rem;
        margin-left: -1rem;
        margin-right: -1rem;
    }

    /* CTA */
    .header-cta-wrapper .btn {
        padding: 0.7rem 1.5rem;
        letter-spacing: 0;
    }
}

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

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

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

.top-section .text-block {
    max-width: 85rem;
}

.top-section .section-title {
    font-size: 8rem;
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
}

.top-section p:not(.btn) {
    max-width: 38rem;
}

.top-section .btn span {
    display: inline-block;
}

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

@media only screen and (max-width: 680px) {
    .top-section .section-title {
        font-size: 3.2rem;
        line-height: 1.2;
    }

    .top-section .btn {
        padding: 1rem;
        line-height: 1.4;
    }
}

/* Parfymer
========================================================================== */
.perfumes-wrapper {
    width: 100%;
}

.perfumes-wrapper .card-body {
    padding-top: 1rem;
}

.perfumes-wrapper .image-wrapper {
    aspect-ratio: 1 / 1;
}

.perfumes-wrapper .image-wrapper img {
    transition: .4s ease-in-out;
}

.perfumes-wrapper .card-item:hover .image-wrapper img {
    transform: scale(1.15);
}

.perfumes-wrapper .text-label {
    font-weight: 400;
}

.perfumes-wrapper .text-smaller {
    font-size: 1.3rem;
    color: rgb(var(--gray-color));
}

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

/* Hero
========================================================================== */
.hero .section-block {
    padding-bottom: 0;
}

/* ==========================================================================
Footer
========================================================================== */
.footer {
    --base-size: 1.4rem;
    padding: 0 5rem;
    background-color: rgb(var(--black-color));
}

/* Footer top */
.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 8rem 0 5rem;
}

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

.footer-menu-large {
    width: 32rem;
}

.footer .text-label {
    padding: 0 0 1rem;
    line-height: 1;
    color: rgb(var(--white-color));
}

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

.footer-logo {
    width: 25rem;
    max-width: 100%;
    margin-bottom: 3rem;
    filter: invert();
}

.footer-top li,
.footer-top p,
.footer-top a {
    color: rgb(var(--gray-color));
    line-height: 2;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: none;
    color: rgb(var(--white-color));
}

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

.footer-bottom p,
.footer-bottom a {
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgb(var(--white-color), .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;
    filter: invert();
}

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

    /* Footer top */
    .footer-menu {
        width: calc(100% / 3);
    }

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

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

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

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

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

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

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

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