/* Navbar */
.navbar-cta-link-container {
    margin: var(--spacing-3) 0;
}

.navbar-cta-link-container a {
    color: white;
    text-decoration: none;
    font-family: var(--font-family-main-1);
    font-size: var(--font-size-4);
    font-weight: 600;
    line-height: var(--line-height-4); 
}

.navbar-cta-link-container a:hover {
    color: #FF5288;
    text-decoration: underline;
}

.navbar-cta-link-container a i {
    font-size: var(--font-size-5);
    margin-left: var(--spacing-3);
}

@media (max-width: 361px) {
    .navbar-cta-link-container a {
        font-size: var(--font-size-1);
    }
}

/* Hero section */
.hero-content-container {
    min-height: 75vh;
}

@media (min-width: 600px) and (max-width: 1024px) {
    .hero-content-container {
        min-height: 85vh;
    }
}

@media (max-width: 960px) {
    .hero-content-container {
        margin-top: 70px;
    }
}

.hero-pile-container {
    display: flex;
    align-items: flex-start;
    align-content: flex-start;
    gap: var(--spacing-4) var(--spacing-4);
    align-self: stretch;
    flex-wrap: wrap;
}

.hero-sub-title {
    color: var(--dev-blue-50);
    font-family: var(--font-family-main-1);
    font-size: var(--font-size-6);
    line-height: var(--line-height-6); 
}

.hero-image-container img {
    max-width: 400px;
    max-height: 400px;
}

@media (max-width: 599px) {
    .hero-sub-title {
        font-size: var(--font-size-3);
        line-height: var(--line-height-3); 
    }

    .hero-image-container img {
        max-width: 300px;
        max-height: 300px;
    }

    .hero-pile-container {
        gap: 7px 7px;
    }
}

@media (min-width: 1280px) {
    .hero-image-container img {
        max-width: 500px;
        max-height: 500px;
    }
}

/* Case study content */
.case-study-content-container {
    width: 60vw;
    margin: auto;
}

.case-study-title {
    color: white;
    font-family: var(--font-family-main-2);
    font-size: 26px;
    font-weight: bold;
    line-height: 34px;
    margin-bottom: var(--spacing-5);
}

.case-study-description {
    color: var(--dev-blue-200);
    font-family: var(--font-family-main-1);
    font-size: var(--font-size-4);
    line-height: var(--line-height-4);
    margin-bottom: var(--spacing-10);
}

.case-study-image-container {
    margin-bottom: var(--spacing-10);
}

.case-study-highlighted-box {
    display: flex;
    padding: var(--spacing-7);
    align-items: flex-start;
    flex-direction: column;
    gap: var(--spacing-7);
    align-self: stretch;
    border-radius: 20px;
    border: 1px solid #494A7F;
    background: #242446;
    backdrop-filter: blur(25px);
    margin-bottom: var(--spacing-8);
}

.case-study-highlighted-box .title {
    color: white;
    font-family: var(--font-family-main-2);
    font-size: var(--font-size-4);
    font-weight: bold;;
}

.case-study-highlighted-box .description-container .description-box {
    color: var(--dev-blue-200);
    font-family: var(--font-family-main-1);
    font-size: var(--font-size-3);
    line-height: var(--line-height-4);
}

.case-study-highlighted-box .description-container .description-box:not(:last-child) {
    margin-bottom: var(--spacing-8);
}

.font-lexend {
    font-family: var(--font-family-main-2);
}

.case-study-link-type-1 {
    color: var(--dev-blue-200);;
}

.case-study-link-type-1:hover {
    color: white;
}

.case-study-quote-box {
    border-radius: 20px;
    border: 1px solid var(--dev-blue-100);
    background: var(--dev-blue-50);
    display: flex;
    padding: var(--spacing-7);
    align-items: flex-start;
    align-self: stretch;
    flex-direction: column;
    margin-bottom: var(--spacing-10);
}

.case-study-quote-box .quote-text {
    color: var(--dev-blue-800);
    font-family: var(--font-family-main-1);
    font-size: var(--font-size-4);
    font-style: italic;
    font-weight: bold;
    line-height: var(--line-height-4);
    letter-spacing: -0.4px;
}

.case-study-quote-box .quote-member {
    color: var(--dev-blue-800);
    font-family: var(--font-family-main-1);
    font-size: var(--font-size-4);
    font-style: normal;
    font-weight: bold;
    line-height: var(--line-height-4);
    letter-spacing: -0.4px;
}

@media (min-width: 600px) {
    .case-study-highlighted-box .description-container .description-box.fake-list::before {
        content: "\2022\00a0";
        font-size: var(--font-size-3);
    }
}

@media (max-width: 599px) {
    .case-study-content-container {
        width: 90vw;
    }

    .case-study-title {
        font-size: var(--font-size-5);
    }

    .case-study-highlighted-box {
        padding: var(--spacing-6);
    }
}