@import "tailwindcss";

body {
    background-color: #ffffff;
}
h1,
h2,
h3,
h4,
p,
li {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    -webkit-text-rendering: optimizeLegibility;
    -moz-text-rendering: optimizeLegibility;
}
a {
    color: #3a3a3a;
    font-family: "aktiv-grotesk", "san-serif";
    font-weight: 400;
    text-decoration: none;
}
a:link {
    color: #3a3a3a;
    font-family: "aktiv-grotesk", "san-serif";
    font-weight: 400;
    text-decoration: none;
}
a:hover {
    color: #7a7a7a;
    font-family: "aktiv-grotesk", "san-serif";
    transition-duration: 300ms;
    text-decoration: none;
}
img {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
ul {
    padding: 0;
    margin: 0;
}
.button {
    font-family: "aktiv-grotesk", "san-serif";
    font-weight: 400;
    padding: 24px;
    background-color: #4354f9;
    font-size: 1rem;
    border: none;
    border-radius: 14px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}
.button:hover {
    background-color: #3a3a3a;
    transition-duration: 300ms;
}
.button a {
    color: #ffffff;
}
/* Flexbox */
.flex-parent {
    display: flex;
    flex-direction: row;
    width: 100%;
}
.flex-child {
    flex: 1;
}
/* Navigation */
nav {
    width: 100%;
    height: 100px;
}
nav ul {
    padding: 30px 0 0 0;
}
nav a {
    color: #3a3a3a;
    font-family: "aktiv-grotesk", "san-serif";
    font-size: 1.1rem;
    text-decoration: none;
    transition-duration: 300ms;
}
nav a:hover {
    color: #7a7a7a;
    text-decoration: none;
}
.primary-nav {
    display: flex;
    width: 90%;
    margin: 0 auto;
}
.primary-nav a {
    font-weight: 400;
}
.primary-nav img {
    width: 35px;
    margin-right: 15px;
}
.left {
    margin-right: auto;
    padding-top: 4px;
}
.left a {
    /* font-weight: 500; */
    letter-spacing: 0.02rem;
}
.right {
    margin-left: 40px;
    padding-top: 8px;
}
#container {
    width: 100%;
    margin: 0 auto;
    padding: 0;
}
/* Homepage */
main {
    width: 90%;
    margin: 0 auto;
    padding: 0;
}
.home-wrapper {
    width: 100%;
    padding: 0;
}
.home-intro {
    display: block;
}
.home-intro div {
    max-width: 70%;
    margin-top: 32px;
}
.home-intro h1:nth-child(2) {
    color: #999999;
}
.home-intro h1 {
    font-family: "aktiv-grotesk", "sans-serif";
    font-weight: 500;
    font-size: 4.4rem;
    color: #3a3a3a;
    letter-spacing: -1px;
    line-height: 130%;
}
.home-intro p {
    font-family: "aktiv-grotesk", "sans-serif";
    font-weight: 500;
    font-size: 2.3rem;
    color: #3a3a3a;
    line-height: 120%;
    letter-spacing: -1px;
    margin-bottom: 8px;
}
/* Case Study */
.card {
    margin: 8px;
}
.card-thumbnail {
    padding: 0;
    min-height: 460px;
    border: 1px solid #f3f3f3;
    border-radius: 18px;
}
.card-description {
    max-width: 94%;
}
.card-description h1 {
    font-family: "aktiv-grotesk", "sans-serif";
    font-weight: 500;
    font-size: 2.3rem;
    color: #3a3a3a;
    letter-spacing: -1px;
    margin-bottom: 8px;
}
.card-description h2 {
    font-family: "aktiv-grotesk", "sans-serif";
    font-weight: 500;
    font-size: 1.3rem;
    color: #6a6a6a;
    letter-spacing: -0.25px;
    margin-bottom: 16px;
}
.card-description h3 {
    font-family: "aktiv-grotesk", "sans-serif";
    font-weight: 500;
    font-size: 1rem;
    color: #8a8a8a;
    letter-spacing: -0.25px;
    margin-bottom: 8px;
}
/* Scroll Indicator */
.scroll-parent {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}
.scroll-child {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.scroll-child p {
    font-family: "aktiv-grotesk", "sans-serif";
    font-weight: 500;
    font-size: 1rem;
    color: #3a3a3a;
    margin-bottom: 16px;
}
.scroll__icon--1 {
    animation: down 1500ms infinite;
    transform: translateY(-10px);
}
@keyframes down {
    0% {
        transform: translateY(-10px);
    }
    20% {
        transform: translateY(0px);
    }
}
/* Case Study, Intro */
.intro-container {
    max-width: 90%;
    margin: 0 auto;
    padding: 0;
}
.intro-wrapper {
    display: flex;
    background-color: #fcfcfc;
    min-height: 700px;
    width: 100%;
    margin: 0 auto;
    border-radius: 16px;
}
.intro-col {
    flex: 1;
}
.intro-col-wrapper {
    padding: 100px 40px 100px 100px;
    margin: 0;
}
.intro-detail {
    max-width: 580px;
}
.intro-detail h1 {
    color: #3a3a3a;
    font-size: 40px;
    font-family: "aktiv-grotesk", "sans-serif";
    font-weight: 500;
    margin: 0;
    padding-bottom: 20px;
    letter-spacing: -0.5px;
}
.intro-detail h2 {
    color: #858585;
    font-family: "aktiv-grotesk", "sans-serif";
    font-weight: 400;
    font-size: 0.9rem;
    line-height: 1.5rem;
    margin: 0 0 24px 0;
}
.intro-detail h3 {
    font-family: "aktiv-grotesk", "sans-serif";
    font-weight: 500;
    font-size: 0.7rem;
    line-height: 1.7rem;
    text-align: justify;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #999;
    margin: 0;
}
/* Case Study, Content */
.case-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
}
.case-wrapper {
    max-width: 680px;
    margin: 0 auto;
    padding: 24px 0;
}
.case-wrapper h1 {
    color: #333;
    font-size: 2.2rem;
    font-family: "aktiv-grotesk", "sans-serif";
    font-weight: 500;
    font-style: normal;
    margin-top: 8px;
}
.case-wrapper h2 {
    color: #333;
    font-size: 1.8rem;
    font-family: "aktiv-grotesk", "sans-serif";
    font-weight: 500;
    font-style: normal;
    margin-top: 8px;
}
.case-wrapper p {
    color: #666666;
    font-family: "aktiv-grotesk", "sans-serif";
    font-weight: 500;
    font-size: 20px;
    line-height: 160%;
    margin: 0 0 24px 0;
}
.case-image {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}
/* About */
.about-wrapper {
    width: 100%;
    height: 650px;
}
.about-bio {
    max-width: 800px;
    padding-top: 56px;
    padding-left: 70px;
}
.about-bio a {
    font-weight: 500;
}
.about-bio h1 {
    font-family: "aktiv-grotesk", "sans-serif";
    font-weight: 500;
    font-size: 2.3rem;
    color: #3a3a3a;
    line-height: 120%;
    letter-spacing: -1px;
    margin-bottom: 8px;
}
.about-bio h2 {
    font-family: "aktiv-grotesk", "sans-serif";
    font-weight: 500;
    font-size: 1.4rem;
    color: #3a3a3a;
    line-height: 120%;
}
.about-bio div {
    margin-top: 24px;
}
.about-links h2 {
    margin-bottom: 8px;
}
/* Footer */
footer {
    width: 100%;
    margin: 48px auto 0 auto;
    height: 200px;
    background-color: #fafafa;
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer-home {
    width: 80%;
    margin: 0 auto;
}
.footer-home h1 {
    font-family: "aktiv-grotesk", "sans-serif";
    font-weight: 400;
    font-size: 1.15rem;
    line-height: 1.7rem;
    text-align: center;
    color: #000;
    margin: 0;
}
/* Fade In */
.fade-in {
    opacity: 0;
    /* Invisible upon start */
    -webkit-animation: fadeIn ease-in 1;
    /* Call our keyframe named fadeIn, use animation ease-in and repeat it only 1 time */
    -moz-animation: fadeIn ease-in 1;
    animation: fadeIn ease-in 1;
    -webkit-animation-fill-mode: forwards;
    /* This makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/
    -moz-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-duration: 1s;
    -moz-animation-duration: 1s;
    animation-duration: 1s;
}
@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
        opacity: 1\9;
        /* IE9 only */
    }
    to {
        opacity: 1;
    }
}
@-moz-keyframes fadeIn {
    from {
        opacity: 0;
        opacity: 1\9;
        /* IE9 only */
    }
    to {
        opacity: 1;
    }
}
@keyframes fadeIn {
    from {
        opacity: 0;
        opacity: 1\9;
        /* IE9 only */
    }
    to {
        opacity: 1;
    }
}
/* Gradient */
.gradient {
    position: absolute;
    top: 10%;
    left: 20%;
    transform: translate(100%, 0%);
    width: 600px;
    height: 600px;
    border-radius: 50% 22% 40% 80%;
    filter: blur(100px);
    background: radial-gradient(
        circle at 50% 50%,
        rgba(76, 0, 255, 1),
        rgba(76, 0, 255, 0)
    );
    opacity: 0.2;
}
/* Background Images */
.placeholder-bg {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #f8f8f8;
}
.loanapprovalguide {
    background-image: url("../images/home/loanhero_c.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #f8f8f8;
}
.loanapprovalguide2 {
    background-image: url("../images/pqno/hero_a2.svg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #f8f8f8;
}
.choreo {
    background-image: url("../images/choreo/jan28-mock-no1.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #f8f8f8;
}
.kikker {
    background-image: url("../images/kikker/kikker1.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #f8f8f8;
}
.joan {
    background-image: url("../images/home/joan/joan-home-3.png");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #f8f8f8;
}
.lychee {
    background-image: url("../images/lychee/lychee-home.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #f8f8f8;
}
.verde {
    background-image: url("../images/verde/verde-home-2.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #f8f8f8;
}
.bloom {
    background-image: url("../images/bloom/bloom-home-3.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #f8f8f8;
}
.credible {
    background-image: url("../images/home/credible.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #f8f8f8;
}
.is {
    background-image: url("../images/is_redesign.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #f8f8f8;
}
.lihp {
    background-image: url("../images/credible/credible_lihp_3.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #f8f8f8;
}
.pl_lp {
    background-image: url("../images/home/pl_lp.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #f8f8f8;
}
.pqno {
    background-image: url("../images/pqno/hero_a2.svg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #f8f8f8;
}
.rtfo {
    background-image: url("../images/home/rtfo.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #f8f8f8;
}
.debt_mgmt {
    background-image: url("../images/debtmgmt_a.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #f8f8f8;
}
.walkthrough {
    background-image: url("../images/walkthrough-thumb.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #f8f8f8;
}
