/*
Theme Name: Wave
Text Domain: Wave
Version: 2.91
Description: Theme for wave customers
Author: Noli Alickaj
Author URI: https://wavecode.no
*/

html {
    scroll-behavior: smooth;
}

:root {
    --dark: #13191C;
    --green: #353C31;
    --off-green: #CBD5C0;
    --light-green: #EBFFD6;
    --white: #fff;
    --off-white: #f7f7f7;
    --semi-white: #fbfbfb;
}

@font-face {
    font-family: 'Outfit';
    src: url('/wp-content/themes/wave/assets/fonts/outfit/Outfit-Light.woff2') format('woff2'), 
    url('/wp-content/themes/wave/assets/fonts/outfit/Outfit-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Outfit';
    src: url('/wp-content/themes/wave/assets/fonts/outfit/Outfit-Regular.woff2') format('woff2'),
    url('/wp-content/themes/wave/assets/fonts/outfit/Outfit-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Outfit';
    src: url('/wp-content/themes/wave/assets/fonts/outfit/Outfit-Medium.woff2') format('woff2'),
    url('/wp-content/themes/wave/assets/fonts/outfit/Outfit-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Outfit';
    src: url('/wp-content/themes/wave/assets/fonts/outfit/Outfit-SemiBold.woff2') format('woff2'),
    url('/wp-content/themes/wave/assets/fonts/outfit/Outfit-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Outfit';
    src: url('/wp-content/themes/wave/assets/fonts/outfit/Outfit-Bold.woff2') format('woff2'),
    url('/wp-content/themes/wave/assets/fonts/outfit/Outfit-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'GT-Super';
    src: url('/wp-content/themes/wave/assets/fonts/gt-super/GT-Super-Display-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Manrope';
    src: url('/wp-content/themes/wave/assets/fonts/manrope/manrope-300.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Manrope';
    src: url('/wp-content/themes/wave/assets/fonts/manrope/manrope-500.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

h1, h2, h3, h4, h5 {
    font-family: 'GT-Super';
    font-weight: 400;
    margin: 0;
}

p {
    font-size: 18px;
    margin: 0;
}

.postid-504 iframe, .postid-525 iframe {
	margin-bottom: 20px;
	margin-top: 10px;
}

.postid-525 p {
	margin-bottom: 6px;
}

.single-behandling .single-content p {
    margin-bottom: 20px;
}

.single-behandling ul, .single-behandling ol {
    margin: 0;
}

.postid-525 ul li, .postid-525 ol li {
	margin-left: -20px;
	margin-bottom: 10px;
}

*, ::after, ::before {
    box-sizing: border-box;
}

body {
    font-family: 'Outfit';
    font-weight: 300;
    color: var(--green);
    margin: 0;
    padding: 0;
    font-size: 18px;
}

header {
    position: relative;
    z-index: 9999;
}

.width--standard {
    width: 100%;
    max-width: 1540px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 75px;
    padding-right: 75px;
}

.width--narrow {
    width: 100%;
    max-width: 1340px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 75px;
    padding-right: 75px;
}

.width--full {
    width: 100%;
}

.width--l {
    width: 100%;
    max-width: 800px;
}

.width--m {
    width: 100%;
    max-width: 600px;
}

.width--s {
    width: 100%;
    max-width: 470px;
}

.width--xs {
    width: 100%;
    max-width: 248px;
}

.width--hero {
    width: 100%;
    max-width: 450px;
}

.width--media {
    width: 100%;
    max-width: 320px;
}

.font--xl {
    font-size: 70px;
}

.font--l {
    font-size: 50px;
}

.font--m {
    font-size: 35px;
}

.font--s {
    font-size: 24px;
}

.font--xs {
    font-size: 16px;
}

.font--22 {
    font-size: 22px;
}

.font--500 {
    font-weight: 500;
}

.font--400 {
    font-weight: 400;
}

.font--300 {
    font-weight: 300;
}

.word-break--break-all {
    word-break: break-all;
}

.logo {
    max-width: 100px;
}

.fill--dark {
    fill: var(--green);
}

.fill--light {
    fill: var(--white);
}

.fill--light svg{
    fill: var(--white);
}

/* Flex & Grid Alignment */
.flex--row {
    display: flex;
    flex-direction: row;
}
.flex--column {
    display: flex;
    flex-direction: column;
}
.flex--wrap {
    display: flex;
    flex-wrap: wrap;
}
.flex--1 {
    flex: 1;
}

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

.align-items--start {
    align-items: start;
}

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

.justify-content--end {
    justify-content: end;
}

.justify-content--between {
    justify-content: space-between;
}

/* Grid & Flex Gaps, Spacing */
.gap--treatment {
    gap: 100px;
}

.gap--xl {
    gap: 60px;
}

.gap--l {
    gap: 40px;
}

.gap--ml {
    gap: 30px;
}

.gap--m {
    gap: 20px;
}

.gap--s {
    gap: 10px; 
}

.gap--footer {
    gap: 60px;
}

.pad-tb--m {
    padding-top: 50px;
    padding-bottom: 50px;
}

.pad-tb--l {
    padding-top: 75px;
    padding-bottom: 75px;
}

.pad-tb--xl {
    padding-top: 150px;
    padding-bottom: 150px;
}

.pad--m {
    padding: 45px;
}

.pad--s {
    padding: 30px;
}

.pad--quotes {
    padding: 80px 80px;
}

.pad--benefit {
    padding: 30px 25px;
}

.pad--treatment {
    padding: 30px 45px;
}

.pad-t--xxl {
    padding-top: 180px;
}

.pad-t--xl {
    padding-top: 150px;
}

.pad-t--l {
    padding-top: 100px;
}

.pad-t--m {
    padding-top: 50px;
}

.pad-b--xl {
    padding-bottom: 150px;
}

.pad-b--l {
    padding-bottom: 100px;
}

.pad-b--m {
    padding-bottom: 50px;
}

.nav-li--dark {
    color: var(--green);
    text-decoration: none;
}

.nav-li--light {
    color: var(--white);
    text-decoration: none;
}

.nav--mob {
    padding: 16px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

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

.text--capitalize {
    text-transform: capitalize;
}

.background--green {
    background: var(--green);
}

.background--off-green {
    background: var(--off-green);
}

.background--off-white {
    background: var(--off-white);
}

.background--white {
    background: var(--white);
}

.background--semi-white {
    background: var(--semi-white);
}

.background--light-green {
    background: var(--light-green);
}

.position--relative {
    position: relative;
}

.position--absolute {
    position: absolute;
}

.absolute--bottom {
    bottom: 60px;
}

img {
    vertical-align: bottom;
}

.height--85 {
    min-height: 700px;
    height: 85vh;
}

.height--95 {
    min-height: 700px;
    height: 90vh;
}

.height--100 {
    min-height: 600px;
    height: 100vh;
}

.height--450 {
    height: 450px;
}

.object-fit--cover {
    object-fit: cover;
}

.object-position--top {
    object-position: top;
}

.background-position--top-center {
    background-position: top center;
}

.background-position--center-center {
    background-position: center center;
}

.background-size--cover {
    background-size: cover;
}

.aspect--1-1 {
    aspect-ratio: 1;
}

.aspect--3-2 {
    aspect-ratio: 3/2;
}

.aspect--5-2 {
    aspect-ratio: 5/2;
}

.header-transparent {
    margin-bottom: -136px;
}

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

.color--green {
    color: var(--green);
}

.height--full {
    height: 100%;
}

.btn--solid {
    padding: 16px 24px;
    border-radius: 4px;
    font-size: 16px;
    max-width: fit-content;
    text-decoration: none;
    min-width: 190px;
    text-align: center;
    font-weight: 400;
}

.btn--outline {
    padding: 26px 40px;
    font-size: 16px;
    max-width: fit-content;
    text-decoration: none;
    min-width: 190px;
    text-align: center;
    transition: ease 0.2s;
    font-weight: 400;
}

.btn--outline:hover {
    background: var(--green);
    color: var(--white);
}

.border-color--green {
    border: 2px solid var(--green);
}

.border--active {
    border-bottom: 3px solid var(--off-green);
}

.line-height--1-0 {
    line-height: 1;
}

.line-height--1-2 {
    line-height: 1.2;
}

.line-height--1-4 {
    line-height: 1.4;
}

.line-height--1-6 {
    line-height: 1.6;
}

.line-height--1-8 {
    line-height: 1.8;
}

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

.text--underline {
    text-decoration: underline;
}

.content--center {
    margin-left: auto;
    margin-right: auto;
}

.margin-top--s {
    margin-top: 20px;
}

.margin-bottom--s {
    margin-bottom: 10px;
}

.vertical--bias {
    margin-top: -50px;
}

.grid--3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(200px, 1fr));
}

.grid--2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(200px, 1fr));
}

.col-gap--l {
    grid-column-gap: 100px;
    grid-row-gap: 100px;
}

.col-gap--s {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
}

.col-gap--benefit {
    grid-column-gap: 40px;
    grid-row-gap: 20px;
}

strong {
    font-weight: 500;
}

.svg--large svg {
    width: 32px;
}

.svg--medium svg {
    width: 24px;
    height: 16px;
}

.svg--small svg {
    width: 14px;
    height: 10px;
}

.svg-rotate--180 {
    transform: rotate(180deg);
}

/* ---- RESPONSIVE MENU ---- */
.burger {
    display: none;
}

.hamburger .line {
    width: 35px;
    height: 2px;
    border-radius: 14px;
    display: block;
    margin: 8px auto;
}

.hamburger:hover {
    cursor: pointer;
}

#hamburger.is-active .line:nth-child(1) {
    -webkit-transform: translateY(6px) rotate(45deg);
    -ms-transform: translateY(6px) rotate(45deg);
    -o-transform: translateY(6px) rotate(45deg);
    transform: translateY(6px) rotate(45deg);
}

#hamburger.is-active .line:nth-child(2) {
    -webkit-transform: translateY(-4px) rotate(-45deg);
    -ms-transform: translateY(-4px) rotate(-45deg);
    -o-transform: translateY(-4px) rotate(-45deg);
    transform: translateY(-4px) rotate(-45deg);
}

/* CSS for modal container */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
}

/* CSS for modal content */
.modal-content {
    background-color: var(--off-green);
    /* padding: 250px 20px 20px 20px; */ 
    padding-top: 250px;
    width: 100%;
    height: 100vh;
    position: relative;
}

.no-scroll {
    overflow: hidden;
}

/* ---- CONTACT FORM ---- */
.fluentform .ff-el-form-control {
    font-family: 'Outfit' !important;
    font-weight: 300 !important;
    font-size: 16px !important;
    line-height: 2 !important;
    background: var(--off-white);
    border-radius: 0 !important;
    border: none !important;
    color: var(--green) !important;
}

.fluentform .ff-el-form-control:focus {
    color: var(--green) !important;
    background: var(--off-white) !important;
}

#ff_3_dropdown, #ff_4_dropdown {
    background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTEiIGhlaWdodD0iNyIgdmlld0JveD0iMCAwIDExIDciIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik0xLjI5MjUgMEw1LjUgNC4zMjY1OUw5LjcwNzUgMEwxMSAxLjMzMTk4TDUuNSA3TDAgMS4zMzE5OEwxLjI5MjUgMFoiIGZpbGw9IiMzNTNDMzEiLz4KPC9zdmc+Cg==) no-repeat 98% 50%, var(--off-white) !important;
    -moz-appearance: none; 
    -webkit-appearance: none; 
    appearance: none;
    /* and then whatever styles you want*/
    height: 56px !important;
}

.fluentform .ff-el-group {
    margin-bottom: 10px !important;
}

::placeholder {
    color: var(--green) !important;
    opacity: 1 !important;
}

.ff-btn-submit {
    background: var(--off-green) !important;
    color: var(--green) !important;
    font-family: 'Outfit' !important;
    font-weight: 300 !important;
    font-size: 16px !important;
    border-radius: 0 !important;
    padding: 26px 40px !important;
}

.ff_submit_btn_wrapper {
    margin-top: 30px !important;
}

.ff_t_c {
    font-size: 16px !important;
    font-weight: 300 !important;
}

textarea {
    resize: none;
}

/* ---- TABLET ---- */
@media (max-width: 992px) {
    .grid--2, .grid--3 {
        grid-template-columns: repeat(1, minmax(200px, 1fr));
    }

    .col-gap--l {
        grid-column-gap: 50px;
        grid-row-gap: 50px;
    }

    .order--1 {
        order: 1;
    }

    .width--standard {
        padding-left: 50px;
        padding-right: 50px;
    }
    
    .width--narrow {
        padding-left: 50px;
        padding-right: 50px;
    }

    .burger {
        display: flex;
    }

    .nav {
        display: none;
    }

    .collapse-tablet {
        flex-direction: column;
    }

    .gap--treatment {
        gap: 50px;
    }
}

/* MOBILE */
@media (max-width: 768px) {
    .width--standard {
        padding-left: 30px;
        padding-right: 30px;
    }
    
    .width--narrow {
        padding-left: 30px;
        padding-right: 30px;
    }

    .font--xl {
        font-size: 56px;
    }

    .pad-tb--xl {
        padding-top: 100px;
        padding-bottom: 100px;
    }

    .pad--quotes {
        padding: 70px 40px;
    }

    .collapse-mobile {
        flex-direction: column;
    }

    .collapse-align--start {
        align-items: start;
    }

    .gap--footer {
        gap: 10px;
    }

    .modal-content {
        padding-top: 150px;
    }

    .height--85 {
        min-height: 0;
        height: auto;
    }
    .height--95 {
        min-height: 0;
        height: auto;
    }
}

.swiper {
    width: 100%;
    height: 100%;
}

/*
.swiper-wrapper {
    cursor: grab; 
}
*/

.next, .prev {
    cursor: pointer;
}

/* target the active bullet */
span.swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: var(--green);
    width: 10px;
    height: 10px;
}
  
/* target all bullets */
.swiper-pagination-bullet {
    background-color: var(--green);
    width: 10px !important;
    height: 10px !important;
}

.swiper-slide {
    height: auto !important;
    background: var(--off-white);
}

.truncated-text, .full-text {
    white-space: pre-wrap; /* To handle any white spaces and line breaks correctly */
}

.toggle-text {
    color: var(--green);
    font-weight: 400;
    font-size: 16px;
    cursor: pointer;
    text-decoration: underline;
}







.page-template-research, .single-fordypning {
    background: var(--dark);
}
.page-template-research .grid--3 a {
    text-decoration: none;
    display: flex;
    flex-direction: column;
}
.page-template-research .logo path, .single-fordypning .logo path {
    fill: var(--white);
}
.page-template-research main, .single-fordypning main {
    color: var(--white);
}
.page-template-research .nav-li--dark, .single-fordypning .nav-li--dark {
    color: var(--white);
}

.img--research {
    width: 100%;
    height: auto;
    aspect-ratio: 5/3;
    object-fit: cover;
    border-radius: 6px;
}

.page-template-research article .content {
    background: #222A2E;
    padding: 30px 40px;
    border-radius: 6px;
}

.btn--subscribe {
    padding: 16px 24px;
    border-radius: 5px;
    font-size: 18px;
    background: var(--light-green);
    text-decoration: none;
    color: var(--green);
    font-weight: 500;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    width: fit-content;
}

.play--center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}


.single-fordypning .width--standard {
    max-width: 1350px;
}

.single-fordypning .cta, .single-fordypning footer {
    display: none;
}

.video--desc {
    background: #222A2E;
    padding: 50px 50px;
    border-radius: 10px;
}