/*  Salong Maria */

/* Typsnitt – Quattrocento + Roboto */
@import url('https://fonts.googleapis.com/css2?family=Quattrocento&family=Roboto:ital,wght@0,100;0,300;0,500;1,100;1,300&display=swap');

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

/* ==========================================================================
Generellt 
========================================================================== */
:root {
    /* 	Layout  */
    --col-padding: 3rem;
    --menu-height: 9rem;
    --menu-height-scrolled: 8rem;

    /* 	Colors */
    --black-color: 0, 0, 0;
    --gray-dark-color: 80, 60, 60;
    --gray-color: 122, 122, 122;
    --gray-light-color: 240, 240, 240;
    --white-color: 255, 255, 255;

    --accent-green-color: 232, 232, 228;
    --accent-orange-color: 254, 200, 154;
    --accent-red-color: 223 212 210;

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

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

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

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

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

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

.pb-2 {
    padding-bottom: 2rem;
}

.pb-4 {
    padding-bottom: 4rem;
}

.pb-5 {
    padding-bottom: 5rem;
}

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

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

.mw-1000 {
    max-width: 100rem;
}

.mw-1300 .section-block-wrapper {
    max-width: 130rem;
}

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

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

/* Text och typsnitt
========================================================================== */
body {
    font-family: 'Roboto', sans-serif;
    color: rgb(var(--gray-dark-color));
}

/* rubriker */
.section-title {
    font-size: 4.5rem;
    line-height: 1.2;
    font-weight: 400;
    padding-bottom: 2rem;
    font-family: 'Quattrocento', serif;
}

.small-title {
    font-size: 2.5rem;
    line-height: 1.4;
    font-weight: 600;
    margin-bottom: 1rem;
    color: rgb(var(--black-color));
    font-family: 'Quattrocento', serif;
}

.text-label {
    font-size: 1.6rem;
    line-height: 1.3;
    font-family: inherit;
    padding-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    font-weight: 100;
    color: rgb(var(--primary-color));
}

/* Text */
p {
    font-weight: 300;
    color: rgb(var(--black-color));
}

a {
    color: rgb(var(--primary-color));
    font-size: 1.6rem;
    font-weight: 300;
    text-decoration: none;
}

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

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

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

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

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

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

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

@media only screen and (max-width: 580px) {
    .text-label {
        font-size: 1.2rem;
    }
}

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

/* Listor */
.list-circle {
    list-style: none;
    font-weight: 300;
}

.list-circle li {
    position: relative;
}

.list-circle li::before {
    content: '\f111';
    position: absolute;
    top: 1.3rem;
    left: -2.5rem;
    color: rgb(var(--accent-orange-color));
    font-weight: 700;
    font-size: .8rem;
    font-family: 'Font Awesome 5 Pro';
    transform: translateY(-50%);
}

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

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

/* Knappar */
.btn,
.ContactSubmit {
    display: inline-block;
    min-width: 20rem;
    padding: 1.6rem 3rem;
    font-weight: 500;
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    text-align: center;
    text-decoration: none;
    line-height: 1;
    border-radius: 4rem;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
}

.btn::after {
    content: ' \2023';
    display: inline-block;
    margin-left: .5rem;
    transition: transform .4s ease;
}

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

.btn-accent-orange-filled {
    color: rgb(var(--gray-dark-color));
    border: 1px solid rgb(var(--accent-orange-color));
    background-color: rgb(var(--accent-orange-color));
}

/* Arrow link */
.arrow-link {
    padding-right: 1rem;
    font-weight: 500;
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: rgb(var(--black-color));
}

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

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

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

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

.circle-icon em:before {
    font-size: var(--base-size);
}

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

/* Farger  
========================================================================== */
/* Bakgrundsfarger */
.bg-lighter-gray {
    background-color: rgb(var(--accent-green-color), .6);
}

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

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

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

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

/* Grafiska element
========================================================================== */
.b-3-white {
    border: 3rem solid rgb(var(--white-color));
}

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

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

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

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

/* Cards 1 */
.cards-1 .card-item {
    display: flex;
    flex-direction: column;
    padding: 4rem;
    background-color: rgb(var(--accent-red-color));
}

.cards-1 .text-wrapper {
    flex-grow: 1;
}

/* Cards 7*/
.cards-7 .card-item {
    text-decoration: none;
    border-radius: .8rem;
    box-shadow: 0 1rem 3rem rgb(var(--black-color), .1);
    background: rgb(var(--white-color));
    overflow: hidden;
}

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

.cards-7 .small-title {
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    font-size: 2rem;
}

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

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

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

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

.split-image {
    width: 50%;
    border-radius: 3px;
}

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

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

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

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

@media screen and (max-width: 1100px) {
    .split-content {
        padding: 0 0 4rem;
    }
    
    .split-content,
    .split-wrapper .w-60,
    .split-wrapper .w-40 {
        width: 100%;
    }

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

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

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

/* Bakgrundsbild
========================================================================== */
.bg-image {
    position: relative;
    margin-top: calc(-1 * var(--menu-height));
    background-position: bottom;
}

/* Bakgrundsvideo
========================================================================== */
.bg-video {
    position: relative;
}

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

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

/* Header / Navigation
========================================================================== */
header {
    z-index: 15;
    background-color: transparent;
    transition: all .2s ease;
}

header.scrolled {
    background-color: rgb(var(--white-color));
    box-shadow: 0 1rem 3rem rgb(var(--black-color), .1);
    transition: all .2s ease;
}

header .container {
    height: 100%;
    padding: 0 2rem;
}

/* Logo */
.header-logo {
    flex-basis: 0;
    flex: 1 1 0px;
    display: flex;
    align-items: center;
}

.logo {
    display: inline-block;
    width: 17rem;
    padding-right: 1rem;
    filter: brightness(0) invert(1);
}

header.scrolled .logo,
header.active-menu .logo,
.SubPage header .header-logo .logo {
    filter: brightness(0.5);
}

.header-logo .text-logo {
    display: inline-block;
    padding: 0.7rem 0 0.7rem 1rem;
    font-size: 1.2rem;
    font-weight: 400;
    font-family: 'Quattrocento', serif;
    color: rgb(var(--gray-light-color));
    border-left: 1px solid rgb(var(--gray-color));
}
   
header.scrolled .header-logo .text-logo,
header.active-menu .header-logo .text-logo,
.SubPage .header-logo .text-logo {
    color: rgb(var(--gray-dark-color));
    border-left: 1px solid rgb(var(--gray-light-color));
}

.EditMode .header-logo .text-logo {
    display: none;
}

/* nav */
nav.mainmenu a {
    font-weight: 400;
    font-size: 1.4rem;
    color: rgb(var(--white-color));
    font-family: 'Quattrocento', serif;
}

header.scrolled nav.mainmenu a {
    color: rgb(var(--gray-color));
}

header.scrolled nav.mainmenu a:hover,
nav.mainmenu a:hover {
    color: rgb(var(--black-color));
}

.SubPage nav.mainmenu a {
    color: rgb(var(--gray-dark-color));
}

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

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

/* mobilmenyn  */
.mobile-menu .logo {
    width: unset;
}

header.mobile-menu.scrolled .header-logo img,
.mobile-menu .header-logo img {
    max-height: 5rem;
}

.mobile-menu nav.mainmenu a {
    color: rgb(var(--black-color));
}

.mobile-menu .circle-icon {
    width: 3rem;
    height: 3rem;
}

.mobile-menu .header-cta-wrapper .btn {
    padding: 1rem 1.5rem;
}


.hamburger-inner, .hamburger-inner::after, .hamburger-inner::before {
    background-color: rgb(var(--accent-orange-color));
}

@media only screen and (max-width: 1024px) {
    .mobile-menu .container {
        padding: 0 1rem;
    }
}

@media only screen and (max-width: 680px) {
    .mobile-menu .circle-icon,
    .header-logo .text-logo {
        display: none;
    }

    .mobile-menu .circle-icon.mobile{
        display: flex;
    }

    header .header-cta-wrapper .btn{
min-width:9rem;
    }
}  

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

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

.top-section .top-logo {
    max-width: 40rem;
    margin: 0 auto 2rem;
}

.top-section h1,
.top-section p {
    text-align: center;
    margin: 0 auto;
    max-width: 60rem;
}

.top-section h1 {
    padding-bottom: 2rem;
    font-size: 5.5rem;
}

.top-section .text-label {
    max-width: 50rem;
    font-size: 2rem;
}

@media only screen and (max-width: 1550px) {
    .top-section .top-logo {
        max-width: 30rem;
    }
}

@media only screen and (max-width: 1200px) {
    .top-section .top-logo {
        max-width: 20rem;
    }
}

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

/* Utvalda bilder, instagram
========================================================================== */
.insta-widget {
    position: relative;
    overflow: hidden;
}

/* Styling fÃ¶r sjÃ¤lva carden */
.insta-widget .eapps-instagram-feed-posts-item-image {
    border: 1rem solid rgb(var(--white-color));
    box-shadow: 0 1rem 2rem rgb(var(--black-color), .1);
}

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

/* Hero - Grundkod
========================================================================== */
.hero {
    margin-top: calc(-1 * var(--menu-height));
}

.hero .section-block {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
    padding: 15rem 4rem 10rem;
}

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

.hero .image-wrapper,
.hero .image-wrapper img {
    max-height: 30rem;
    box-shadow: 0 2rem 4rem rgb(var(--black-color), 0.1);
}

.hero .text-block-center {
    max-width: 80rem;
}

@media only screen and (max-width: 580px) {
    .hero {
        min-height: 30vh;
        background-image: linear-gradient(to bottom, rgb(var(--accent-green-color)) 70%, rgb(var(--white-color)) 60%);
    }

    .hero .section-block {
        padding: 15rem 2rem 6rem;
    }
}

/* ==========================================================================
Undersida: Utbildning
========================================================================== */

/* Tva kolumner med text - col-1 med gra bakgrund
========================================================================== */
.section-education .section-block {
    padding-top: 0;
}

.section-education .section-block-wrapper {
    max-width: 130rem;
}

.section-education .col-0 {
    padding: 4rem 2rem 4rem 0;
}

.section-education .col-1 {
    padding: 4rem;
    background: rgb(var(--gray-light-color));
}

@media only screen and (max-width: 1100px) {
    .section-education .col-0 {
        width: 100%;
        padding: 0;
    }
    
    .section-education .col-1 {
        padding: 2rem;
        margin-top: 5rem;
    }
}

/* ==========================================================================
Footer
========================================================================== */
.footer {
    background-color: rgb(var(--accent-green-color));
}

.footer-container {
    max-width: 160rem;
    padding: 0 2rem;
    margin: 0 auto;
}

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

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

.footer img {
    max-width: 100%;
    width: 20rem;
}

.footer .small-title {
    font-size: 2rem;
    letter-spacing: normal;
}

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

.footer-top p,
.footer-top li,
.footer-top a:not(.circle-icon) {
    color: rgb(var(--gray-color));
    font-size: 1.6rem;
    font-weight: 300;
}

.footer a {
    position: relative;
}

.footer a:hover:not(.social-icon) {
    color: rgb(var(--black-color));
    text-decoration: underline;
}

.footer .socials {
    display: flex;
    flex-direction: column;
}

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

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

/* WebbEss Stamp  */
.footer .webbess-stamp {
    display: flex;
    align-items: center;
    padding: 0;
    font-size: 1.3rem;
    font-weight: normal;
    opacity: .6;
    font-weight: 400;
}

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


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

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

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

    /* 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 top */
    .footer-top {
        padding: 8rem 0 4rem 0;
    }

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