﻿:where(.card table, .card .basicGrid) {
    width: 100%;
}

*, ::after, ::before {
    box-sizing: border-box;
}

a,
button {
    cursor: revert;
}

button {
    border: none;
    margin: 0;
    padding: 0;
    width: auto;
    overflow: visible;
    background: transparent;
    /* inherit font & color from ancestor */
    color: inherit;
    font: inherit;
    /* Normalize `line-height`. Cannot be changed from `normal` in Firefox 4+. */
    line-height: normal;
    /* Corrects font smoothing for webkit */
    -webkit-font-smoothing: inherit;
    -moz-osx-font-smoothing: inherit;
    /* Corrects inability to style clickable `input` types in iOS */
    -webkit-appearance: none;
}

video {
    display: flex;
    width: 100%;
    border-radius: var(--normalRadius);
    cursor: pointer;
}

blockquote::before,
q::before,
blockquote::after,
q::after {
    content: '';
    content: none;
}

:focus-visible {
    outline: 1px solid var(--brandColor-2);
}

html {
    text-size-adjust: none;
}

meter {
    appearance: revert;
}


::placeholder {
    color: unset;
}

table {
    border-collapse: collapse;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
    font-style: italic;
    background-repeat: no-repeat;
    background-size: cover;
    shape-margin: 1rem;
}


/* fonts */
@font-face {
    font-family: 'Exo 2', sans-serif;
    src: url('/fonts/Exo2-VariableFont_wght.ttf') format('truetype');
}

@font-face {
    font-family: "Inter", sans-serif;
    src: url('/fonts/Inter-Variable.ttf') format('truetype');
}

:root {
    /* fonts */
    --uiFont: "Inter", sans-serif; /* for paragraphs */
    --titleFont: 'Exo 2', sans-serif; /* for brand titles */
    /* font weights */
    --lightWeight: 200;
    --regularWeight: 400;
    --boldWeight: 600;
    --highWeight: 800;
    /* font sizes */
    --smallFont: 12px;
    --normalFont: 16px;
    --largeFont: 26px;
    --hugeFont: 52px;
    --strongFont: 600;
    /* colours */
    --brandColor-1: #2C5F2D; /* forest green */
    --brandColor-2: #97BC62; /* moss green */
    --brandColor-3: #31473A; /* dark green CTA */
    --brandGradient-1: linear-gradient(27deg, rgba(44,95,45,1) 17%, rgba(151,188,98,1) 100%);
    --lightGray: #F4F4F4; /* UI backgrouynd */
    --white: #ffffff;
    --black: #23272E;
    --gray: #747474;
    --grayHighlight: #F3F4F8;
    --lightAlertColor: #6b000033;
    --alertColor: #6b0000;
    /* elemnent sizes */
    --sideBar: 300px;
    /* whitespaces */
    --smallSpace: 10px;
    --mediumSpace: 20px;
    --largeSpace: 40px;
    --hugeSpace: 60px;
    --listSpace: 10px 20px;
    /* borders and radiusses */
    --smallRadius: 6px;
    --normalRadius: 8px;
    --largeRadius: 20px;
}

h1 {
    font-size: var(--hugeFont);
    font-family: var(--titleFont);
}

h2 {
    font-size: var(--largeFont);
    font-family: var(--titleFont);
    font-weight: 400;
}

h3 {
    font-size: calc(var(--normalFont) * 1.3);
    font-family: var(--uiFont);
    font-weight: 400;
}

h4 {
    font-size: var(--normalFont);
    font-family: var(--uiFont);
}

h1, h2, h3, h4 {
    margin: 0;
    margin-bottom: 20px;
    color: var(--black);
    line-height: 120%;
}

p {
    line-height: 150%;
    font-family: var(--uiFont);
    margin: 0 0 20px 0;
}

h4 + p {
    margin-bottom: 30px;
}

/* structure */
body {
    font-family: var(--uiFont);
    font-size: var(--normalFont);
    font-weight: var(--regularFont);
    background-color: var(--lightGray);
    display: flex;
    flex-direction: row;
    width: 100%;
    margin: 0;
}



.brand {
    display: flex;
    width: 100%;
    max-width: var(--sideBar);
    position: absolute;
    z-index: 3;
    height: 60px;
    justify-content: center;
    padding-left: 36px;
}

a.brandLogo {
    padding: 0;
    font-family: var(--titleFont);
    color: var(--white);
    text-transform: uppercase;
    font-weight: 600;
    text-decoration: none;
    font-size: var(--largeFont);
    position: relative;
    display: flex;
    align-items: center;
}

    a.brandLogo img {
        height: 100%;
        max-height: 36px;
        width: auto;
    }

@media (max-width: 991px) {
    .brand {
        position: fixed;
        top: 0;
        left: 0;
        z-index: 3;
    }

    a.brandLogo {
        position: relative;
        top: 0;
        left: 0;
        padding-right: var(--hugeSpace);
        display: flex;
        align-items: center;
    }
}

span.beta {
    font-size: 8px;
    font-weight: 600;
    font-family: var(--uiFont);
    background-color: var(--white);
    color: var(--brandColor-1);
    padding: 3px 5px;
    border-radius: 4px;
    position: relative;
    margin-bottom: 5px;
    opacity: .6;
    letter-spacing: 1px;
}

.mainContainer {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
}

.sideBar {
    display: flex;
    flex-direction: column;
}

:where(.sideBar div) {
    display: flex;
    flex-direction: column;
}

footer {
    background: linear-gradient(90deg, var(--brandColor-1) 0%, var(--brandColor-2) 140%);
    display: flex;
    justify-content: flex-start;
    color: var(--white);
}

.footerContainer {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: calc(var(--wideContainer) - var(--mediumSpace));
}

footer a {
    color: var(--brandColor-2);
}

    footer a.brandLogo {
        padding: 0;
        background-color: transparent;
        margin-bottom: var(--mediumSpace);
    }

.firstColumn, .secondColumn {
    display: flex;
    flex-direction: column;
    width: 50%;
}

@media screen and (min-width: 991px) {
    .sideBar {
        display: flex;
        width: 100%;
        max-width: 20%;
        background-color: var(--white);
        align-items: flex-end;
        
    }
}

.logSidebar {
    display: flex;
    background-color: var(--white);
    align-items: flex-end;
    padding: var(--mediumSpace);
    padding-top: 0;
}

@media screen and (min-width: 1800px) {
    .sideBar {
        max-width: 30%;
    }
}

@media screen and (max-width: 1600px) {
    .sideBar {
        width: 100%;
        max-width: 300px;
    }
}

@media screen and (max-width: 990px) {
    .sideBar {
        /*width: 0;*/
        width: 100%;
        height: 60px;
        max-width: unset;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 8;
        display: flex;
        background: linear-gradient(90deg, var(--brandColor-1) 0%, var(--brandColor-2) 100%);
    }

    .logSidebar {
        padding-top: var(--smallSpace);
        border-top-left-radius: var(--normalRadius);
        border-bottom-left-radius: var(--normalRadius);
        box-shadow: rgba(0, 0, 0, 0.1) 0px 54px 500px, rgba(0, 0, 0, 0.1) 0px -12px 300px, rgba(0, 0, 0, 0.1) 0px 4px 6px, rgba(0, 0, 0, 0.1) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
        position: fixed;
        width: 100%;
        max-width: 300px;
        right: 0;
        top: 0;
        bottom: 0;
        scroll-behavior: smooth;
        overflow: scroll;
    }
}

.scrollableNav {
    width: 100%;
    max-width: var(--sideBar);

}

.langeChange .selected {
    font-weight: bold;
}

.langeChange .notselected {
    cursor: pointer;
}

.mainContent {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 100vh;
    background-color: var(--brandColor-1);
}

main {
    display: flex;
    flex-direction: column;
    gap: var(--largeSpace);
    width: 100%;
    padding: var(--largeSpace);
    background-color: var(--lightGray);
    min-height: 80vh;
}

@media screen and (min-width: 2561px) {
    main {
        min-height: 90vh;
    }
}

    main > * {
        max-width: 1300px;
    }

    main > h1 {
        margin: 0;
    }

    main > h1 {
        background: -webkit-linear-gradient(0deg, var(--brandColor-1) 0%, var(--brandColor-2) 30%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

.accountOptions {
    display: flex;
    flex-direction: row;
    width: 100%;
    gap: var(--smallSpace);
    min-height: 40px;
    align-items: center;
}

/* login */
a.navLink.loginBtn {
    display: flex;
    padding: 4px 12px 4px 4px;
    width: fit-content;
    font-size: var(--smallFont);
    text-transform: uppercase;
    border-radius: 9999px;
    color: var(--brandColor-1);
    background-color: #2c5f2d1f;
    border: 1px solid var(--brandColor-1);
    transition: all .3s ease-in-out;
}

    a.navLink.loginBtn.active {
        background: linear-gradient(90deg, #97bc6233, var(--brandColor-2) 80%, var(--brandColor-2) 100%);
        transition: all .3s ease-in-out;
    }

    a.navLink.loginBtn:hover {
        background-color: var(--brandColor-2);
        color: var(--white);
        transition: all .3s ease-in-out;
    }

    a.navLink.loginBtn svg path {
        stroke: var(--brandColor-1);
        transition: all .3s ease-in-out;
    }
    a.navLink.loginBtn:hover svg path {
        stroke: var(--white);
        transition: all .3s ease-in-out;
    }

    a.navLink.logoutBtn svg, a.navLink.loginBtn svg {
        width: 12px;
        height: 12px;
    }

a.navLink.logoutBtn {
    display: flex;
    padding: 4px 12px 4px 4px;
    width: fit-content;
    font-size: var(--smallFont);
    text-transform: uppercase;
    border-radius: 9999px;
    background-color: var(--white);
    color: var(--alertColor);
    border: 1px solid var(--black);
    transition: all .3s ease-in-out;
}

    a.navLink.logoutBtn:hover {
        background-color: var(--alertColor);
        color: var(--white);
    }

    a.navLink.logoutBtn svg {

    }

    a.navLink.logoutBtn svg path {
    stroke: var(--alertColor);
    transition: all .3s;
    }

    a.navLink.logoutBtn:hover svg path {
    stroke: var(--white);
    }

.loginOptions p {
    margin-bottom: var(--smallSpace);
}

/* language selection */
ul.langChange {
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--smallSpace);
}

ul.langChange li {
    display: flex;
    padding: 4px 8px;
    width: fit-content;
    font-size: var(--smallFont);
    text-transform: uppercase;
    border-radius: 9999px;
    color: var(--brandColor-1);
    background-color: #2c5f2d1f;
    border: 1px solid var(--brandColor-1);
    align-self: flex-start;
    transition: all .3s ease-in-out;
    min-width: 40px;
    justify-content: center;
    cursor: pointer;
}


    ul.langChange li.selected {
        background-color: var(--brandColor-1);
        color: var(--white);
        transition: all .3s ease-in-out;
    }

    ul.langChange li.notselected:hover {
        background-color: var(--brandColor-2);
        color: var(--white);
    }


/* navigation */
.toggleNavbar {
    appearance: none;
    cursor: pointer;
    width: 50px;
    height: 40px;
    color: white;
    position: fixed;
    top: 6px;
    right: 8px;
    border: none;
    background: url("img/menu-white.svg") no-repeat center/1.75rem;
    z-index: 4;
}

    .toggleNavbar:checked {
        background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%44, 95, 45,1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") no-repeat center/1.75rem;
        background: url("img/menu-brand.svg") no-repeat center/1.75rem;
    }

        .toggleNavbar:checked ~ .scrollableNav {
            display: flex;
            position: fixed;
            right: 0;
            z-index: 3;
            top: 0;
            animation-name: fadeInFromNone;
            animation-duration: .65s;
            padding: 0;
            min-height: 100vh;
        }

.scrollableNav {
    display: none;
    padding: var(--mediumSpace);
}

    .scrollableNav nav {
        gap: 10px;
        width: 100%;
        flex-direction: column;
        margin-top: var(--smallSpace);
    }

@media (min-width: 991px) {
    .toggleNavbar {
        display: none;
        position: absolute;
    }

    .scrollableNav {
        /* Never collapse the sidebar for wide screens */
        display: flex;
        /* Allow sidebar to scroll for tall menus */
        overflow-y: auto;
    }
}

nav {
    display: flex;
    flex-direction: column;
}

.navTitle {
    font-family: var(--titleFont);
    color: var(--gray);
    padding-left: 1px;
    font-size: var(--smallFont);
    margin-top: var(--smallSpace);
    letter-spacing: calc(1px / 2);
    text-transform: uppercase;
    opacity: .7;
}

.navLink {
    gap: var(--smallSpace);
    font-family: var(--uiFont);
    font-weight: var(--lightFont);
    color: var(--gray);
    font-size: var(--normalFont);
    padding: var(--listSpace);
    border-radius: var(--smallRadius);
    display: flex;
    align-items: center;
    letter-spacing: calc(1px / 2);
    text-decoration: none;
    line-height: 100%;
}

a.navLink.active {
    color: var(--black);
    /*background-color: var(--grayHighlight); */
    background: linear-gradient(90deg, #97bc6233, var(--white) 80%, #ffffff 100%);
}

iframe {
    border-radius: var(--normalRadius);
}

/* links & buttons */
main a {
    text-decoration: underline;
    text-underline-position: under;
}


button {
    /*    margin-left: var(--smallSpace);*/
    text-transform: uppercase;
}

    a, button.txtButton {
        color: var(--brandColor-1);
        font-size: var(--normalFont);
        font-family: var(--uiFont);
        /*letter-spacing: 1px;*/
        border: 0;
        padding: 0;
        background: none;
        text-decoration: underline;
        /*text-underline-position: under;*/
        text-align: left;
        text-transform: unset;
    }

        button.txtButton:hover {
            background-color: transparent;
            cursor: pointer;
            color: inherit;
        }

    .button, button:first-of-type {
        margin-left: 0 !important;
    }


    button svg {
        stroke: var(--brandColor-1);
    }

    button.addLogin {
        background-color: transparent;
        border: none;
        max-width: 200px;
        padding: 0;
    }
        button.addLogin.imgButton:hover {
            background: unset;
        }

div#qrCode {
    margin-bottom: var(--smallSpace);
}

.externalLogins {
    display: flex;
    flex-direction: column;
    gap: var(--smallSpace);
}

.createNew svg {
    width: 10px !important;
    height: 10px !important;
    margin-left: 4px;
}

.createNew svg {
    stroke: var(--brandColor-1);
    transition: all 0.5s;
}

.createNew:hover svg {
    stroke: var(--white);
}

.button, button, button.createNew {
    padding: var(--listSpace);
    background-color: #2c5f2d1f;
    border-radius: var(--normalRadius);
    color: var(--brandColor-1);
    text-decoration: none;
    border: 1px solid var(--brandColor-1);
    transition: all 0.5s;
    width: fit-content;
    font-size: var(--smallFont);
    letter-spacing: 1px;
    margin-left: var(--smallSpace);
}

    .button, button.createNew {
        text-transform: uppercase;
    }

        .button:hover, button:hover, button.createNew:hover {
            color: var(--white);
            background-color: var(--brandColor-1);
        }

    button.saveButton {
        background-color: var(--brandColor-3);
        color: var(--white);
        align-self: flex-start;
    }

    button.alertButton {
        background-color: var(--lightAlertColor);
        border-color: var(--alertColor);
        color: var(--alertColor);
    }

        button.alertButton:hover {
            background-color: var(--alertColor);
            color: var(--white);
        }

    button:hover {
        cursor: pointer;
    }

.alert.alert-danger {
    display: flex;
    width: fit-content;
    flex-wrap: wrap;
    padding: var(--smallSpace);
    background-color: var(--alertColor);
    color: var(--white);
    border-radius: var(--normalRadius);
    border: 0;
}

/* forms and inputs */
form {
    display: flex;
    flex-direction: column;
    gap: var(--mediumSpace);
}

input.formInput::placeholder {
    color: var(--Gray);
    opacity: .5;
}

.formGroup {
    display: flex;
    flex-direction: column;
}

div#notificationsettings {
    display: flex;
    gap: var(--mediumSpace);
}

select {
    padding: var(--smallSpace);
    background-color: var(--lightGray);
    border-radius: var(--smallRadius);
    max-width: 700px;
    border: 0;
    font-size: var(--normalFont);
}


.valid.modified:not([type=checkbox]) {
    outline: 1px solid #26b050;
}

.invalid {
    outline: 1px solid #e50000;
}

.formLabel {
    font-family: var(--titleFont);
    color: var(--gray);
    padding: var(--smallSpace) 0;
    font-size: var(--smallFont);
    letter-spacing: calc(1px / 2);
    text-transform: uppercase;
    opacity: 1;
}

input.formInput {
    padding: var(--smallSpace);
    background-color: var(--lightGray);
    border-radius: var(--smallRadius);
    max-width: 700px;
    font-family: var(--uiFont);
    font-size: var(--normalFont);
    border: none;
}

input:disabled.formInput {
    background: #c9c9c9;
    color: #000;
    pointer-events: none;
}

.rememberMe .formLabel {
    display: flex;
    align-items: center;
    gap: 4px;
}

.text-danger {
    padding: 4px 8px;
    background-color: #940000;
    width: fit-content;
    border-radius: var(--normalRadius);
    color: #fff;
    margin-top: 8px;
}

input[type="color"]:hover {
    cursor: pointer;
}

/* content: settings */
.settingsNav {
    flex-direction: row;
    gap: var(--mediumSpace);
    flex-wrap: wrap;
}

    .settingsNav a.navLink {
        text-decoration: none;
    }

@media screen and (max-width: 991px) {
    .settingsNav {
        gap: var(--smallSpace);
    }
}

.settingsNav a.navLink {
    padding: 0;
}

    .settingsNav a.navLink.active {
        background-color: transparent;
        text-decoration: underline;
        text-underline-position: under;
    }

.contentHeader {
    border-top: 1px solid var(--lightGray);
    padding-top: var(--mediumSpace);
    display: flex;
}

/* cards */
.card {
    position: relative;
    display: flex;
    flex-direction: column;
    background-color: var(--white);
    padding: var(--mediumSpace);
    border-radius: var(--normalRadius);
    position: relative;
    gap: var(--mediumSpace);
}


.cardHeader {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0 var(--mediumSpace) 0 var(--smallSpace) 0;
}

.cardContent {
    display: flex;
    flex-direction: column;
    max-width: 800px;
}

.cardHeader h2 {
    margin-bottom: 0;
}

.cardTitle h2 {
    color: var(--brandColor-1);
    margin-bottom: var(--smallSpace);
}

.takeNotice {
    display: flex;
    justify-content: center;
    line-height: 1;
    align-items: center;
    color: var(--black);
    border-radius: 9999px;
    width: fit-content;
    text-transform: uppercase;
    margin-right: 4px;
    font-weight: 600;
}

.contactDetail {
    display: flex;
    align-items: center;
}

.contactDetails {
    display: flex;
    gap: var(--mediumSpace);
    flex-direction: column;
}

.cardIcon svg {
    max-width: 40px;
}

@media (max-width: 600px) {
    .cardHeader {
        justify-content: flex-start;
        padding: 0;
        gap: var(--smallSpace);
        flex-wrap: wrap;
    }
}

.gapContent {
    display: flex;
    flex-direction: column;
    gap: var(--mediumSpace);
}

/* errors */
#blazor-error-ui {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }

/* tabletest */

.table {
    width: 100%;
}

    .table > tbody {
        vertical-align: inherit;
    }

    .table > thead {
        vertical-align: bottom;
    }

.caption-top {
    caption-side: top;
}

.table-borderless > :not(caption) > * > * {
    border-bottom-width: 0;
}

.table-borderless > :not(:first-child) {
    border-top-width: 0;
}

.gridActions {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.gridContactCount {
    display: flex;
    align-items: center;
}

.totalContacts {
    padding: 4px 0;
}

.click-area {
    position: absolute;
    top: 0;
    left: 0;
    right: 200px;
    bottom: 0;
    cursor: pointer;
}

@media screen and (max-width: 768px) {
    .click-area {
        right: 125px;
    }
}

.newContacts {
    font-weight: 600;
    background-color: var(--brandColor-2);
    padding: 4px 6px;
    display: flex;
    justify-content: center;
    line-height: 1;
    align-items: center;
    margin-left: 4px;
    color: var(--black);
    font-size: 14px;
    border-radius: 9999px;
}

    .newContacts span {
        font-weight: 400;
        text-transform: uppercase;
        font-size: 10px;
        line-height: 10px;
        align-items: center;
        display: flex;
        margin-left: 2px;
    }

/* first contact page */

.notseen {
    font-weight: bold !important;
}

.firstContactHeader span {
}

span.paintItBlack {
    color: var(--black) !important;
    background: var(--black);
    -webkit-background-clip: text;
    -webkit-text-fill-color: var(--black);
    font-weight: 400;
}

.cardDetail h1, .cardDetail h2, .cardDetail h3, .cardDetail h4 {
    margin-bottom: 0;
}

.cardDetail {
    display: flex;
    align-items: center;
}

    .cardDetail h2 {
        text-transform: uppercase;
        font-size: var(--smallFont);
    }

    .cardDetail button {
        margin-left: var(--smallSpace);
    }

.firstContactHeader h1 {
    color: var(--black);
    color: var(--black);
    background: -webkit-linear-gradient(0deg, var(--brandColor-1) 0%, var(--brandColor-2) 30%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.firstContactHeader span:first-of-type {
    margin-left: 0;
}

.firstContactHeader span:last-of-type {
    margin-right: 0;
}


span.timeStamp {
    padding: var(--listSpace);
    background-color: var(--brandColor-3);
    border-radius: var(--normalRadius);
    color: var(--white);
    font-size: var(--smallFont);
    margin-bottom: var(--smallSpace);
    display: inline-block;
}

.contactPriceRange {
    font-size: var(--largeFont);
}

/* style your Deal Conduit */

.colorSelection {
    display: flex;
    flex-wrap: wrap;
}

    .colorSelection .formGroup {
        display: flex;
        width: 100%;
        flex-direction: column;
        max-width: 240px;
    }


/* public site */
:root {
    --wideContainer: 900px;
    --normalContainer: 800px;
}

.publicSite {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: calc(var(--wideContainer) - var(--mediumSpace));
    gap: var(--hugeSpace);
}

    .publicSite section {
        display: flex;
        flex-direction: column;
        gap: var(--mediumSpace);
        width: 100%;
    }

    .publicSite h1 {
        background: -webkit-linear-gradient(0deg, var(--brandColor-1) 0%, var(--brandColor-2) 80%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        font-size: var(--hugeFont);
    }

.normalContent {
    display: flex;
    max-width: var(--normalContainer);
}

.wideContent {
    display: flex;
    width: 100%;
    max-width: var(--wideContainer);
}

.backgroundCard {
    display: flex;
    flex-direction: column;
    border-radius: var(--normalRadius);
    position: relative;
    gap: var(--mediumSpace);
    overflow: hidden;
    max-width: calc(var(--wideContainer) - var(--mediumSpace));
}

.landingHero {
    background-image: url(img/landingHero.jpg);
    background-position: 50% 50%;
}

.cardBackground {
    min-height: 400px;
    background-size: cover;
    align-items: center;
    display: flex;
    padding: var(--largeSpace);
    position: relative;
}


    .cardBackground h2 {
        color: var(--white);
        font-size: 32px;
        font-weight: 600;
        font-family: var(--titleFont);
        max-width: 50%;
        position: relative;
    }

        .cardBackground h2:before {
            content: '"';
            font-size: 70px;
            position: absolute;
            top: -40px;
            left: -4px;
            font-family: auto;
            color: var(--brandColor-2);
        }

/* homepage features */
.moreDetails {
    display: flex;
    width: 100%;
    justify-content: center;
}

/* cards */
.multipleCards {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: var(--mediumSpace);
}

.card.ofMany {
    width: 100%;
    max-width: calc((var(--wideContainer) / 3) - var(--mediumSpace));
}

.cardTitle {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: var(--mediumSpace);
}

.cardText {
    display: flex;
    text-align: center;
}




/* pricing */
span.betaPhase {
    font-weight: 600;
    color: var(--brandColor-1);
}

.pricingCards {
    display: flex;
    gap: var(--mediumSpace);
    flex-wrap: wrap;
}

.card.ofTwo {
    width: 100%;
    max-width: calc(50% - var(--smallSpace));
}

ul {
    margin: 0 0 var(--smallSpace) 0;
}

.pricingHero {
    background-image: url(img/pricing.jpg);
    justify-content: center;
    flex-direction: column;
    align-items: flex-start;
    background-position: 50% 50%;
}

.pricingHero h2 {
    max-width: 70%

}

span.discountPercentage {
    display: flex;
    font-size: var(--hugeFont);
    font-weight: 600;
    margin-top: var(--smallSpace);
    font-family: var(--titleFont);
    color: var(--white);
    border-bottom: 2px solid var(--brandColor-2);
    padding-bottom: var(--smallSpace);
}

.subHeader {
    display: flex;
    font-family: var(--uiFont);
    font-size: var(--largeFont);
    font-weight: 600;
}

.subPrice {
    font-family: var(--titleFont);
    font-size: var(--hugeFont);
    font-weight: 600;
    color: var(--brandColor-1);
    line-height: 1;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
}

span.perMonth {
    font-family: var(--uiFont);
    font-size: var(--normalFont);
    color: var(--gray);
    margin-left: 6px;
    padding-bottom: 3px;
}

.subCTA {
    display: flex;
}

.subFeatures {
    display: flex;
    flex-direction: column;
}

.subFeature {
    display: flex;
    gap: var(--smallSpace);
}
    .subFeature svg {
        margin-right: 8px;
    }

    .subFeature svg path {
        stroke: var(--brandColor-1);
        stroke-width: 2;
    }

.subscriptionContent {
    display: flex;
    flex-direction: column;
    max-width: 650px;
}

/* dashboard */
.dashboardHeader {
    display: flex;
    align-items: center;
}

    .dashboardHeader h1 {
        background: -webkit-linear-gradient(0deg, var(--brandColor-1) 0%, var(--brandColor-2) 30%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

.contactCount {
    display: flex;
    position: relative;
    min-height: calc(100px + var(--mediumSpace));
    min-width: calc(100px + var(--mediumSpace));
    margin-right: var(--smallSpace);
}

.count {
    width: 100px;
    height: 100px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background-color: var(--brandColor-1);
    margin: auto;
    transform: scale(1, 1);
    display: flex;
    justify-content: center;
    align-items: center;
}

    .count.pulse {
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
        -webkit-animation: pulse 3s infinite;
        animation: pulse 3s infinite;
        background-color: var(--brandColor-2);
    }

.countContent {
    font-size: var(--hugeFont);
    color: var(--white);
    font-weight: 600;
}

.offerContent ol {

    margin-left: 0;
    margin-block-start: 0;
    padding-inline-start: var(--smallSpace);
}

.offerContent li {
    display: list-item;
    text-align: -webkit-match-parent;
    unicode-bidi: isolate;
    margin-bottom: var(--smallSpace);
    color: var(--fontColor-1);
}

@-webkit-keyframes pulse {
    0% {
        transform: scale(1, 1);
    }

    25% {
        transform: scale(1, 1);
    }

    50% {
        transform: scale(1.2, 1.2);
    }

    100% {
        transform: scale(1, 1);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1, 1);
    }

    25% {
        transform: scale(1, 1);
    }

    50% {
        transform: scale(1.2, 1.2);
    }

    100% {
        transform: scale(1, 1);
    }
}

/* scrollbar */
/* width */
::-webkit-scrollbar {
    width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: var(--normalRadius)
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--brandColor-2);
    border-radius: var(--normalRadius);
}

    /* Handle on hover */
    ::-webkit-scrollbar-thumb:hover {
        background: #555;
    }


/* animations */
@keyframes fadeInFromNone {
    0% {
        opacity: 0;
    }

    1% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}


/* animations */
@keyframes fadeInFromNone {
    0% {
        opacity: 0;
    }

    1% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}
@keyframes slideInFromLeft {
    0% {
        transform: translateX(+100%);
    }

    100% {
        transform: translateX(0);
    }
}


.fadeInFromNone {
    animation-name: fadeInFromNone;
    animation-duration: .5s;
    -webkit-backface-visibility: hidden;
    -webkit-transform-style: preserve-3d;
}

/*.card {
    animation-name: fadeInFromNone;
    animation-duration: .35s;
    animation-iteration-count: 1;
}*/



/* desktop */
@media screen and (min-width: 991px) {
    main, footer {
        padding: var(--hugeSpace);
    }
    .sideBar:before {
        height: var(--hugeSpace);
        width: 100vw;
        background: linear-gradient(90deg, var(--brandColor-2) 50%, var(--brandColor-1) 101%);
        z-index: 2;
        display: flex;
        content: '';
        position: relative;
        left: 0;
        top: 0;
    }
}


/* navcollapse */
@media screen and (max-width: 990px) {
    :root {
        --listSpace: 6px 12px;
        --hugeFont: 42px;
        --largeFont: 24px;
    }

    body {
        padding-top: var(--hugeSpace);
    }

    .publicSite section {
        gap: var(--smallSpace);
    }

    .pricingHero h2, .landingHero h2 {
        font-size: var(--hugeFont);
        font-weight: 600;
        max-width: 70%;
    }

    .sideBar:before {
        z-index: 3;
        position: fixed;
    }
}

@media screen and (max-width: 768px) {
    :root {
        --listSpace: 6px 12px;
        --hugeFont: 32px;
    }

    main, .footerContainer {
        padding: var(--largeSpace) var(--mediumSpace);
    }
    .card {
        padding: var(--smallSpace);
    }
    .brand {
        padding-left: var(--mediumSpace);
    }
}

@media screen and (max-width: 640px) {
    :root {
        --hugeFont: 28px;
        --largeFont: 24px;
    }
    .card.ofMany {
        max-width: unset;
    }
    .card.ofTwo {
        width: 100%;
        max-width: unset;
    }
}

