/*
    Liminal Advisory - https://liminaladvisory.ca
*/
:root {
--primary-color: #1a3a22;
--primary-color-rgb: 19, 40, 23;
--light-primary-color: #3fa86d;
--light-primary-color-rgb: 63, 168, 109;
--dark-primary-color: #0d1a0f;
--dark-primary-color-rgb: 13, 26, 15;

--secondary-color: #948571;
--secondary-color-rgb: 148, 133, 113;
--light-secondary-color: #d9d4cd;
--light-secondary-color-rgb: 217, 212, 205;

/* fonts */
--font-family: 'Montserrat', sans-serif;
--font-family: 'Inter', sans-serif;
}
/* global */
body,
html {
    margin: 0;
    padding: 0;
}
body {
    background-color: #ffffff;
    font-family: var(--font-family);
}
/* colors */
/* colors: text */
.text-primary {
    color: var(--primary-color);
}
.text-primary-clip-gradient {
    color: transparent;
    background: -webkit-linear-gradient(var(--light-primary-color), var(--light-primary-color));
    background: linear-gradient(var(--light-primary-color), var(--light-primary-color));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.text-light-primary {
    color: var(--light-primary-color) !important;
}
.text-dark-primary {
    color: var(--dark-primary-color);
}
.text-secondary {
    color: var(--secondary-color);
}
.text-light-secondary {
    color: var(--light-secondary-color);
}
.text-white {
    color: #ffffff;
}
.text-dark {
    color: rgba(0,0,0,0.8);
}
.text-black {
    color: rgba(0,0,0,1);
}
.text-muted {
    color: rgba(0,0,0,0.5);
}
.text-light {
    color: rgba(255,255,255,0.5);
}
.text-grey {
    color: #999999;
}
.text-dark-grey {
    color: #666666;
}
/* image */
.img-fluid {
    width: 100%;
    height: auto;
}
/* colors: background */
.bg-primary {
    background-color: var(--primary-color);
}
.bg-primary-gradient-opacity {
    background: rgba(var(--primary-color-rgb), 0.75);
    background: linear-gradient(145deg, rgba(var(--primary-color-rgb), 0.65), rgba(var(--primary-color-rgb), 1));
}
.bg-primary-gradient {
    background: linear-gradient(145deg,var(--dark-primary-color), var(--primary-color));
}
.bg-dark-primary {
    background-color: var(--dark-primary-color);
}
.bg-light-primary {
    background-color: var(--light-primary-color);
}
.bg-dark-primary {
    background-color: var(--dark-primary-color);
}
.bg-secondary {
    background-color: var(--secondary-color);
}
.bg-secondary-light {
    background-color: var(--light-secondary-color);
}
.bg-primary-gradient-black {
    background: linear-gradient(145deg,var(--dark-primary-color),var(--dark-primary-color));
}
/* header */
header {
    position: absolute;
    text-align: center;
    width: 100%;
    z-index: 3;
}
header img {
    max-width: 20rem;
    transition: max-width 0.5s ease-in-out;
}
header.scrolled {
    background-color: var(--primary-color);
}
header.scrolled img {
    max-width: 15rem;
}
/* footer */
footer img {
    max-width: 18rem;
}
/* hero */
.hero {
    background-color: var(--primary-color);
    color: #ffffff;
    text-align: center;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    position: relative;
    box-sizing: border-box;
}
.hero.bg-1 {
    background: linear-gradient(rgba(0,0,0,0.35),rgba(var(--dark-primary-color-rgb),1)), url('bg/bg-1.jpg') no-repeat center center;
    /* filter: grayscale(60%) sepia(60%) hue-rotate(80deg) saturate(180%); */
    background-size: cover;
}
.hero.bg-4 {
    background: linear-gradient(rgba(0,0,0,0.35),rgba(var(--dark-primary-color-rgb),1)), url('bg/bg-4.jpg') no-repeat center center;
    /* filter: grayscale(60%) sepia(60%) hue-rotate(80deg) saturate(180%); */
    background-size: cover;
}
.hero.bg-5 {
    background: linear-gradient(rgba(0,0,0,0.35),rgba(var(--dark-primary-color-rgb),1)), url('bg/bg-5.jpg') no-repeat center center;
    /* filter: grayscale(60%) sepia(60%) hue-rotate(80deg) saturate(180%); */
    background-size: cover;
}
.hero img {
    max-width: 40rem;
    margin-bottom: 1rem;
    z-index: 2;
    position: relative;
}
.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
    /* text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5); */
    z-index: 2;
    position: relative;
}
.hero p {
    font-size: 1.75rem;
    z-index: 2;
    font-weight: 500;
    position: relative;
    line-height: 2;
    max-width: 700px;
    color: #dddddd;
}
.hero .arrow {
    color: rgba(255,255,255,0.5);
    border: 1px solid #7e7e7e;
    border-radius: 1.5rem;
    margin-top: 3rem;
    padding: 0.75rem 0.25rem 0.5rem 0.25rem;
    transition: color 0.3s ease, border-color 0.3s ease;
}
.hero .arrow:hover {
    color: rgba(255,255,255,0.8);
    border-color: #ffffff;
}
@media(max-width: 768px) {
    .hero {
        text-align: left;
    }
    .hero .break {
        display: block;
    }
    .hero h1 {
        font-size: 2.5rem;
        width: 100%;
    }
    .hero p {
        font-size: 1.25rem;
    }
    header img {
        max-width: 15rem;
    }
    footer img {
        max-width: 12rem;
    }
}
/* content */
.container {
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
}
/* content */
.content {
    padding: 5rem;
}
.content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}
.content p {
    font-size: 1.2rem;
    line-height: 2;
}
.content .circle {
    border-radius: 50%;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media(max-width: 768px) {
    .content {
        padding: 2rem;
    }
    .content h2 {
        font-size: 2.5rem;
    }
}
/* buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: 0;
    border: 1px solid transparent;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
    font-family: var(--font-family);
}
.btn-primary {
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    background-color: rgba(255,255,255,0.5);
}
.btn-primary:hover {
    background-color: var(--primary-color);
    color: #ffffff;
}
.btn-secondary {
    border: 1px solid var(--primary-color);
    background-color: var(--primary-color);
    color: #ffffff;
}
.btn-secondary:hover {
    background-color: rgba(255,255,255,0.5);
    color: var(--primary-color);
}
.btn-submit {
    background-color: var(--secondary-color);
    color: #ffffff;
}
.btn-submit:hover {
    background-color: var(--light-secondary-color);
    color: var(--primary-color);
}
/* form */
label {
    display: block;
    margin-bottom: 1rem;
    color: rgba(255,255,255,0.75);
    font-weight: 700;
}
.form-control {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid rgba(255,255,255,0.25);
    background: #0b190e;
    color: #ffffff;
    font-size: 1rem;
    box-sizing: border-box;
    font-family: var(--font-family)
}
.form-control:focus {
    border-color: rgba(255,255,255,0.5);
    background: #0b190e;
    outline: none;
    box-shadow: 0 0 0 2px rgba(var(--primary-color-rgb), 0.2);
}
address {
    font-size: 1.2rem;
    line-height: 1.5;
    color: rgba(0,0,0,0.8);
    font-style: normal;
}
/* images */
.portrait {
    width: 100%;
    max-height: 350px;
    overflow: hidden;
    height: auto;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
    background: radial-gradient(circle at center, #ffffff, #dddddd);
    /* clip-path: polygon(0% 0%, 85% 0%, 100% 15%, 100% 100%, 15% 100%, 0% 85%);     */
}
.portrait img {
    width: auto;
    max-height: 350px;
    display: block;
    margin: 0 auto;
}
.portrait:hover {
    filter: grayscale(0%);
    border-color: #cccccc;
}
.bg-2 {
    background-image: linear-gradient(145deg, rgba(255,255,255,0.95), rgba(255,255,255,0.92)), url('bg/bg-2.jpg');
    background-size: cover;
    background-position: center;
}
.bg-3 {
    background-image: linear-gradient(145deg, rgba(255,255,255,0.90), rgba(255,255,255,0.87)), url('bg/bg-3.jpg');
    background-size: cover;
    background-position: center;
}
.bg-lines {
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' version='1.1' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:svgjs='http://svgjs.dev/svgjs' width='1440' height='560' preserveAspectRatio='none' viewBox='0 0 1440 560'%3e%3cg mask='url(%26quot%3b%23SvgjsMask1007%26quot%3b)' fill='none'%3e%3cpath d='M705.33 592.73C854.27 530.95 880.11 74.54 1082.36 69.42 1284.6 64.3 1349.37 290.22 1459.38 299.02' stroke='rgba(28%2c 59%2c 36%2c 1)' stroke-width='2'%3e%3c/path%3e%3cpath d='M791.38 625.32C916.42 609.99 953.87 352.65 1197.97 327.68 1442.07 302.71 1485.39 85.62 1604.56 75.68' stroke='rgba(28%2c 59%2c 36%2c 1)' stroke-width='2'%3e%3c/path%3e%3cpath d='M603.17 603.45C750.59 536.63 675.55 75.01 967.46 68.24 1259.36 61.47 1511.3 191.01 1696.03 191.44' stroke='rgba(28%2c 59%2c 36%2c 1)' stroke-width='2'%3e%3c/path%3e%3cpath d='M733.23 640.12C849.52 589.36 802.95 224.28 1023.58 223.82 1244.22 223.36 1443.87 491.43 1604.29 498.22' stroke='rgba(28%2c 59%2c 36%2c 1)' stroke-width='2'%3e%3c/path%3e%3cpath d='M520.16 588.47C687.8 540.44 732.99 77.32 985.91 69.21 1238.84 61.1 1331.23 191.37 1451.67 192.41' stroke='rgba(28%2c 59%2c 36%2c 1)' stroke-width='2'%3e%3c/path%3e%3c/g%3e%3cdefs%3e%3cmask id='SvgjsMask1007'%3e%3crect width='1440' height='560' fill='white'%3e%3c/rect%3e%3c/mask%3e%3c/defs%3e%3c/svg%3e"), linear-gradient(145deg,var(--dark-primary-color),var(--primary-color));
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom right;
}
@media(max-width: 768px) {
    .bg-3 {
        background-image: linear-gradient(145deg, rgba(255,255,255,0.90), rgba(255,255,255,0.87)), url('bg/bg-3m.jpg');
    }
}
.grayscale {
    filter: grayscale(100%);
}
/* animations */
@keyframes slideFadeInUp {
    0% {
        opacity: 0;
        transform: translateY(60px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
.slide-fade-in-up {
    opacity: 0;
    animation: slideFadeInUp 0.8s cubic-bezier(0.4, 0.2, 0.2, 1) both;
}
.stagger-1 {
    animation-delay: 0.3s;
}
.stagger-2 {
    animation-delay: 0.9s;
}
.stagger-3 {
    animation-delay: 1.5s;
}
.stagger-4 {
    animation-delay: 2s;
}
.stagger-5 {
    animation-delay: 2.5s;
}
/* text: alignment */
.text-start {
    text-align: left;
}
.text-center {
    text-align: center;
}
.text-end {
    text-align: right;
}
.text-justify {
    text-align: justify;
}
@media(max-width: 768px) {
    .text-justify {
        text-align: left;
    }
}
/* position */
.position-sticky {
    position: sticky;
    top: 2rem;
    z-index: 10;
}
/* text: decoration */
.text-decoration-none {
    text-decoration: none;
}
.text-decoration-underline {
    text-decoration: underline;
}
.fw-bold {
    font-weight: bold;
}
.fw-normal {
    font-weight: normal;
}
.fs-italic {
    font-style: italic;
}
/* font size */
.fs-xs {
    font-size: 0.8rem !important;
}
.fs-sm {
    font-size: 1rem !important;
}
.fs-md {
    font-size: 1.2rem;
}
.fs-lg {
    font-size: 1.5rem;
}
.fs-xl {
    font-size: 2rem;
}
.fs-xxl {
    font-size: 2.5rem;
}
/* font: letter spacing */
.ls-xs {
    letter-spacing: 0.05rem;
}
.ls-sm {
    letter-spacing: 0.1rem;
}
.ls-md {
    letter-spacing: 0.15rem;
}
.ls-lg {
    letter-spacing: 0.2rem;
}
.ls-xl {
    letter-spacing: 0.25rem;
}
.ls-xxl {
    letter-spacing: 0.3rem;
}
/* border: radius */
.border-circle {
    border-radius: 50%;
}
/* border */
.border-left {
    border-left: 1px solid #000000;
}
.border-right {
    border-right: 1px solid #000000;
}
.border-top {
    border-top: 1px solid #000000;
}
.border-bottom {
    border-bottom: 1px solid #000000;
}
/* border: color */
.border-primary {
    border-color: var(--primary-color);
}
.border-light-primary {
    border-color: var(--light-primary-color);
}
.border-dark-primary {
    border-color: var(--dark-primary-color);
}
.border-secondary {
    border-color: var(--secondary-color);
}
.border-secondary-light {
    border-color: var(--light-secondary-color);
}
.border-light {
    border-color: rgba(0,0,0,0.25);
}
/* border: size */
.border-sm {
    border-width: 1px;
}
.border-md {
    border-width: 3px;
}
.border-lg {
    border-width: 5px;
}
.border-xl {
    border-width: 7px;
}
.border-xxl {
    border-width: 9px;
}
/* padding */
.p-xs {
    padding: 0.5rem;
}
.p-sm {
    padding: 1rem;
}
.p-md {
    padding: 1.5rem;
}
.p-lg {
    padding: 2rem;
}
.p-xl {
    padding: 2.5rem;
}
.pt-sm,
.py-sm {
    padding-top: 3rem;
}
.pb-sm,
.py-sm {
    padding-bottom: 3rem;
}
.pt-md,
.py-md {
    padding-top: 5rem;
}
.pb-md,
.py-md {
    padding-bottom: 5rem;
}
.pt-lg,
.py-lg {
    padding-top: 7rem;
}
.pb-lg,
.py-lg {
    padding-bottom: 7rem;
}
.pt-xl,
.py-xl {
    padding-top: 9rem;
}
.pb-xl,
.py-xl {
    padding-bottom: 9rem;
}
.pt-xxl,
.py-xxl {
    padding-top: 12rem;
}
.pb-xxl,
.py-xxl {
    padding-bottom: 12rem;
}
.ps-sm,
.px-sm {
    padding-left: 3rem;
}
.pe-sm,
.px-sm {
    padding-right: 3rem;
}
.ps-md,
.px-md {
    padding-left: 5rem;
}
.pe-md,
.px-md {
    padding-right: 5rem;
}
.ps-lg,
.px-lg {
    padding-left: 7rem;
}
.pe-lg,
.px-lg {
    padding-right: 7rem;
}
.ps-xl,
.px-xl {
    padding-left: 9rem;
}
.pe-xl,
.px-xl {
    padding-right: 9rem;
}
.ps-xxl,
.px-xxl {
    padding-left: 12rem;
}
.pe-xxl,
.px-xxl {
    padding-right: 12rem;
}
.mt-sm,
.my-sm {
    margin-top: 3rem;
}
.mb-sm,
.my-sm {
    margin-bottom: 3rem;
}
.mt-md,
.my-md {
    margin-top: 5rem;
}
.mb-md,
.my-md {
    margin-bottom: 5rem;
}
.mt-lg,
.my-lg {
    margin-top: 7rem;
}
.mb-lg,
.my-lg {
    margin-bottom: 7rem;
}
.mt-xl,
.my-xl {
    margin-top: 9rem;
}
.mb-xl,
.my-xl {
    margin-bottom: 9rem;
}
.mt-xxl,
.my-xxl {
    margin-top: 12rem;
}
.mb-xxl,
.my-xxl {
    margin-bottom: 12rem;
}
.ms-sm,
.mx-sm {
    margin-left: 3rem;
}
.me-sm,
.mx-sm {
    margin-right: 3rem;
}
.ms-md,
.mx-md {
    margin-left: 5rem;
}
.me-md,
.mx-md {
    margin-right: 5rem;
}
.ms-lg,
.mx-lg {
    margin-left: 7rem;
}
.me-lg,
.mx-lg {
    margin-right: 7rem;
}
.ms-xl,
.mx-xl {
    margin-left: 9rem;
}
.me-xl,
.mx-xl {
    margin-right: 9rem;
}
.ms-xxl,
.mx-xxl {
    margin-left: 12rem;
}
.me-xxl,
.mx-xxl {
    margin-right: 12rem;
}
