/* Makeup Artist Tiina */

/* Typsnitt */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;1,300;1,400;1,500;1,600&display=swap');

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

    /* 	Colors */
    --primary-color: 225, 196, 172;
    --primary-light-color: 240, 227, 217;

    --black-color: 17, 17, 17;
    --gray-dark-color: 35, 30, 31;
    --gray-color: 150, 150, 150;
    --gray-light-color: 245, 245, 245;
    --white-color: 255, 255, 255;

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

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

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

.section-block-wrapper {
    max-width: var(--section-width);
}

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

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

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

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

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

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

/* Rubriker */
.text-label {
    padding-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    font-family: 'Poppins', sans-serif;
}

.section-title {
    padding-bottom: 1.5rem;
    font-size: 5rem;
    font-weight: 600;
    line-height: 1.2;
    color: rgb(var(--black-color));
    font-family: 'Playfair Display', serif;
}

.small-title {
    padding-bottom: 1rem;
    font-size: 2.6rem;
    line-height: 1.4;
    font-family: 'Playfair Display', serif;
    color: rgb(var(--black-color));
}

/* Brodtext och lankar */
a {
    color: rgb(var(--gray-dark-color));
    text-decoration: none;
}

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

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

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

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

/* Listor */
.list-pills {
    display: flex;
    flex-wrap: wrap;
    max-width: 100rem;
    padding: 0;
    margin: 0 auto 2rem;
    list-style: none;
}

.list-pills li {
    margin: 0 1.5rem .5rem 0;
    font-size: 1.4rem;
    color: rgb(var(--black-color));
}

.list-pills li::before {
    content: '\f00c';
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 2rem;
    height: 2rem;
    margin-right: .6rem;
    border-radius: 50%;
    font-size: 1.2rem;
    font-family: 'Font Awesome 5 Pro';
    border-radius: 50%;
    color: rgb(var(--white-color));
    background: rgb(var(--primary-color));
}

/* row list */
.row-list {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    list-style: none;
}

.row-list li {
    margin: 0 1rem 5px 0;
}

.row-list li::before {
    content: '\2022';
    margin: 0 1rem 0 0;
}

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

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

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

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

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

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

/* Knappar */
.btn,
.ContactSubmit {
    min-width: 20rem;
    padding: 1.4rem 3rem;
    margin: .5rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.2rem;
    text-align: center;
    text-decoration: none;
    transition: all .4s ease;
    border-radius: 3rem;
}

.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,
.btn-white-border:hover,
.ContactSubmit:hover {
    color: rgb(var(--black-color));
    border: 1px solid rgb(var(--primary-color), .8);
    background-color: rgb(var(--primary-color), .8);
}

.btn-white-border,
.btn-secondary-filled:hover {
    color: rgb(var(--white-color));
    border: 1px solid rgb(var(--white-color));
    background-color: transparent;
}

/* Arrow link */
.arrow-link {
    padding-right: 1rem;
    font-weight: 500;
}

.arrow-link::after {
    content: ' \f178';
    display: inline-block;
    margin-left: .5rem;
    font-family: 'Font Awesome 5 Pro';
    transition: transform .4s ease;
}

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

/* Bouncing arrow */
.bouncing-arrow-wrapper {
    position: absolute;
    right: 5rem;
    bottom: 0rem;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    width: 15rem;
    height: 6rem;
    background-image: url(/assets/images/arrow-bg.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center bottom;
}

.bouncing-arrow {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 4rem;
    height: 4rem;
    text-decoration: none;
}

.bouncing-arrow i {
    color: rgb(var(--primary-color));
    font-size: 2rem;
    font-weight: 300;
    transform: translatex(-50%);
    animation: bounce 2s infinite;
}

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

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

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

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

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

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

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

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

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

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

.bg-gradient-primary-light {
    background-image: linear-gradient(
        to bottom, rgba(var(--primary-color), 0.2) 40%, rgb(var(--gray-dark-color)) 40% );
}

.bg-gradient-white-gray-dark {
    background-image: linear-gradient(to bottom, rgb(var(--white-color)) 40%, rgb(var(--gray-dark-color)) 40%);
}

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

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

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


/* Bakgrundsvideo
========================================================================== */
.bg-video {
    position: relative;
    overflow: hidden;
    margin-top: calc(-1 * var(--menu-height));
}

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

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

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

/* Grafiska element
========================================================================== */
/* Bakgrunder */
.bg-wave-primary-bottom .section-block {
    background-image: url(/assets/images/wave-bottom.png);
    background-size: 100% 50rem;
    background-repeat: no-repeat;
    background-position: center bottom;
}

/* Bakgrunder */
.bg-wave-primary-top .section-block {
    background-image: url(/assets/images/wave-top.png);
    background-size: 100% 50rem;
    background-repeat: no-repeat;
    background-position: center top;
}

@media screen and (max-width: 580px) {
    .bg-wave-primary-bottom .section-block,
    .bg-wave-primary-top .section-block {
        background-size: 100% 20rem;
    }
}

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

/* Specifika bredder */
.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: 1050px) {
    .cards-wrapper.w-33 .card-item {
        width: calc((100% / 2) - 2rem);
    }
}

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

/* Card 2-1 */
.card-2-1 .card-item {
    border-radius: 5px;
    border: 1px solid rgb(var(--primary-light-color));
    background-color: rgb(var(--white-color));
    overflow: hidden;
}

.card-2-1 .card-header {
    padding: 1rem;
    background-image: linear-gradient(to bottom, rgb(var(--primary-light-color)) 50%, rgb(var(--white-color)) 50%);
}

.card-2-1 .card-header img {
    width: 5rem;
    height: 5rem;
    padding: 1rem;
    margin: 0 auto;
    border-radius: 50%;
    border: 3px solid rgb(var(--gray-light-color));
    background: rgb(var(--secondary-color));
}

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

.card-2-1 .card-body p,
.card-2-1 .card-footer p {
    font-size: 1.4rem;
}

.card-2-1 .card-footer {
    padding: 0 2rem 2rem;
}

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

    .card-2-1 .card-footer {
        padding: 0 1rem 1rem;
    }
}


/* Cards 7 */
.cards-7 .card-item {
    display: flex;
    flex-direction: column;
    border-radius: 3px;
    overflow: hidden;
    background-color: rgb(var(--white-color));
}

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

.cards-7 .btn-wrapper {
    margin: auto 0 0;
    padding: 0 2rem 2rem;
}

/* 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: rgba(var(--primary-color));
    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: 750px) {
    .cards-14 i {
        width: 3rem;
        font-size: 2rem;
    }
    
    .cards-14 p {
        font-size: 1.2rem;
    }
    
    .cards-14 .contact-info {
        font-size: 1.4rem;
    } 
}

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

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

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

.split-image {
    width: 50%;
    z-index: 1;
}

.split-image.h-70 {
    height: 70rem;
}

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

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

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

/* Ruta bakom */
.split-image.box-primary-top-left,
.split-image.box-primary-top-right {
    overflow: visible;
}

.box-primary-top-left::after,
.box-primary-top-right::after {
    content: '';
    z-index: -1;
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgb(var(--primary-color), .8);
}

.box-primary-top-right::after {
    top: -3rem;
    right: -3rem;
}

.box-primary-top-left::after {
    top: -3rem;
    left: -3rem;
}

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

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

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

    .split-content.bg {
        padding: 5rem 3rem;
    }

    .split-content {
        padding: 0 0 5rem;
    }

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

    /* Ruta bakom */
    .box-primary-top-left::after {
        top: -2rem;
        left: -2rem;
    }

    .box-primary-top-right::after {
        top: -2rem;
        right: -2rem;
    }
}

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

    .split-content,   .split-content.bg  {
        padding: 0 0 3rem 0;
    }

    /* Ruta bakom */
    .box-primary-top-left::after {
        top: -1rem;
        left: -1rem;
    }

    /* Ruta bakom */
    .box-primary-top-right::after {
        top: -1rem;
        right: -1rem;
    }
}

/* Header / Navigation
========================================================================== */
header {
    background-color: rgb(var(--gray-dark-color));
    transition: all 0.2s ease;
}

header.scrolled {
    box-shadow: 0 1rem 3rem rgb(var(--black-color), 0.1);
}

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

.header-logo img {
    padding: 0;
}

/* Nav */
.TemplateMenu a {
    text-transform: uppercase;
    font-weight: 300;
    font-size: 1.2rem;
    letter-spacing: 0.3rem;
    color: rgb(var(--white-color));
}

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

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

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

/* Mobilmeny */
.mobile-menu .container {
    height: var(--mobile-menu-height);
}

.mobile-menu .header-cta-wrapper {
    margin: 0 1rem 0 0;
}

@media only screen and (max-width: 580px) {
    .header-cta-wrapper .btn {
        min-width: unset;
        padding: 0.7rem 1.5rem;
        letter-spacing: 0;
    }
}

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

/* Top-section
========================================================================== */
.top-section {
    margin-top: calc(-1 * var(--menu-height));
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding-bottom: 5rem;
    min-height: 95vh;
    background-color: rgb(var(--black-color), .5);
}

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

.top-section .section-title {
    color: rgb(var(--white-color));
    font-size: 9rem;
    font-weight: 300;
    max-width: 65rem;
}

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

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

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

/* Hero - Grundkod
========================================================================== */
.hero {
    border: 5rem solid rgb(var(--white-color));
    border-bottom: none;
}

.hero .section-block {
    display: flex;
    align-items: center;
    min-height: 50vh;
    background-color: rgb(var(--black-color), .2);
}

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

@media only screen and (max-width: 1024px) {
    .hero {
        border-width: 3rem;
    }
}

@media only screen and (max-width: 580px) {
    .hero {
        border: none;
    }

    .hero .section-block {
        min-height: 20rem;
    }
}

/* ==========================================================================
Undersida - referenser
========================================================================== */
.gallery-split .split-image {
    overflow: hidden;
}

.gallery-split .split-image .image-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-split .split-image img {
    padding: 3rem;
}

/* Slick Settings */
.slick-list,
.slick-track {
    height: 100%;
}

.slick-dots {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    display: block;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
    transform: translateX(-50%);
    height: 1.5rem;
}

.slick-dots li {
    position: relative;
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 2px 5px;
    padding: 0;
    cursor: pointer;
}

.slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 10px;
    height: 10px;
    padding: 0;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}

.slick-dots li button:hover,
.slick-dots li button:focus {
    outline: none;
}

.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
    opacity: 1;
}

.slick-dots li button:before {
    position: relative;
    width: 7px;
    height: 7px;
    content: "";
    text-align: center;
    opacity: 0.4;
    border-radius: 4px;
    background-color: rgb(var(--black-color));
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: all 0.2s ease;
}

.slick-dots li.slick-active button:before {
    opacity: 1;
    background-color: rgb(var(--primary-color));
}

/* ==========================================================================
Undersida: Kontakta mig
========================================================================== */
.section-contact .col-0 {
    margin-bottom: 5rem;
}

.section-contact .col-2 {
    position: relative;
    width: calc(50% - 10rem);
    margin: 5rem;
    padding: 3rem;
    background: rgb(var(--white-color));
    box-shadow: 1px 1px 6px rgb(var(--black-color), .1);
}  

.section-contact .col-2::after {
    content: '';
    z-index: -1;
    position: absolute;
    top: -4rem;
    right: -5rem;
    width: 100%;
    height: 100%;
    background-color: rgb(var(--primary-color), .8);
}

.section-contact .ContactForm p {
    display: none;
}

.Contact .ContactSubmit {
    font-size: 1.2rem;
    margin: 0;
}

@media only screen and (max-width: 980px) {
    .section-contact .col-0 {
        margin-bottom: 3rem;
    }

    .section-contact .col-2 {
        width: calc(100% - 5rem);
        margin: 10rem 5rem 0 0;
    }
}

@media only screen and (max-width: 580px) {
    .section-contact .col-2 {
        width: 100%;
        margin: 7rem  0 0;
        padding: 1rem;
    }  
    
    .section-contact .col-2::after {
        display: none;
    }
}   

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

.footer-container {
    max-width: var(--section-width);
    margin: 0 auto;
}

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

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

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

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

.footer-top p,
.footer-top a,
.footer-top li {
    color: rgb(var(--white-color), .7);
    font-weight: 400;
    font-size: 1.4rem;
}

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

.footer p.small-title {
    font-size: 1.4rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    font-weight: 600;
    color: rgb(var(--primary-color)) !important;
}

.socials {
    display: flex;
    margin-top: 3rem;
}

.footer .circle-icon {
    width: 3rem;
    height: 3rem;
    font-size: 0;
    border: 1px solid rgb(var(--primary-color));
    background-color: transparent;
    color: rgb(var(--primary-color));
}

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

.footer em::before {
    font-size: 1.4rem;
}

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

.footer-bottom p,
.footer-bottom a {
    font-size: 1.3rem;
    color: rgb(var(--white-color), .5);
}

/* WebbEss Stamp  */
.webbess-stamp {
    display: flex;
    align-items: center;
    padding: 0;
    font-size: 1.3rem;
    font-weight: 300;

}

.webbess-stamp img {
    width: 2.5rem;
    margin-left: 1rem;
    filter: invert();
    opacity: .5;
}


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

    .footer {
        padding: 0 3rem;
    }

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

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

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

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