/* Application Detail Page Specific Styles */

/* Primary Color Variables */
:root {
    --primary-color: #024EA8;
    --secondary-color: #004686;
    --accent-color: #00B189;
    --accent-hover: #059669;
    --text-color: #333333;
    --text-light: #8A8F95;
    --light-bg: #f9fbfc;
    --border-color: #d0d5db;
    --white: #ffffff;
    --dark: #333333;
    --gray-dark: #5e6266;
}

/* Base Styles */
.application-detail {
    font-family: "Open Sans", sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

.section-padding {
    padding: 60px 0;
}

.bg-light {
    background-color: var(--light-bg);
}

.text-center {
    text-align: center;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 15px;
}

/* Typography */
.section-title {
    font-family: 'Proxima Nova', sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 60px;
    margin-bottom: 1rem;
    color: var(--dark);
}

.section-subtitle, .section-description {
    font-family: "Open Sans", sans-serif;
    font-size: 20px !important;
    font-weight: 400 !important;
    line-height: 28px !important;
    color: var(--text-light) !important;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Section Layouts */
.challenges-section, .solution-section, .benefits-section, .results-section, .recommended-products, .faq-section {
    padding: 60px 0;
}

.challenges-section {
    background-color: #fff;
}

.solution-section {
    background-color: #f9fbfc;
}

.benefits-section {
    background-color: #fff;
    padding: 80px 0;
}

.results-section {
    background-color: #f9fbfc;
    padding: 80px 0;
}

/* Hero Section */
.application-detail-hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

/* Add dark overlay by default for automotive pages */
.application-detail-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    z-index: 1;
}

.hero-overlay--light {
    background: rgba(0, 0, 0, 0.3);
}

.hero-overlay--medium {
    background: rgba(0, 0, 0, 0.5);
}

.hero-overlay--dark {
    background: rgba(0, 0, 0, 0.7);
}

.hero-content {
    color: white;
    max-width: 800px;
    position: relative;
    z-index: 2;
}

.hero-breadcrumb {
    margin-bottom: 1rem;
}

.breadcrumb-text {
    font-size: 16px;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title {
    font-size: 72px;
    line-height: 84px;
    font-weight: 700;
    font-family: 'proxima-nova', sans-serif;
    color: #ffffff !important;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 20px;
    line-height: 28px;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.hero-btn {
    padding: 16px 32px;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    min-width: 180px;
    text-align: center;
}

.hero-btn-primary {
    background: var(--secondary-color);
    color: white;
    border-color: var(--secondary-color);
}

.hero-btn-primary:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    text-decoration: none;
}

.hero-btn-outline {
    background: transparent;
    color: white;
    border-color: white;
}

.hero-btn-outline:hover {
    background: white;
    color: var(--primary-color);
    border-color: white;
    text-decoration: none;
}

/* Overview Section */
.overview-content {
    padding-right: 2rem;
}

.overview-text {
    font-size: 20px;
    line-height: 28px;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.key-points {
    list-style: none;
    padding-left: 0;
}

.key-points li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-color);
}

.key-points li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

.overview-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.image-caption {
    text-align: center;
    font-size: 16px;
    color: var(--text-light);
    margin-top: 1rem;
    font-style: italic;
}

/* Benefits Section */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.benefit-card:hover .benefit-icon {
    background: var(--accent-hover);
    transform: scale(1.05);
}

.benefit-icon {
    width: 0px;
    height: 0px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
}

.benefit-icon img {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
}

.benefit-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--gray-dark);
}

.benefit-description {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
}

/* Applications Showcase */
.applications-showcase {
    display: grid;
    gap: 3rem;
    margin-top: 3rem;
}

.application-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    padding: 2rem 0;
    border-bottom: 1px solid var(--border-color);
}

.application-item:nth-child(even) {
    direction: rtl;
}

.application-item:nth-child(even) .application-content {
    direction: ltr;
}

.application-item:last-child {
    border-bottom: none;
}

.application-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.application-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--gray-dark);
}

.application-description {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.application-features {
    list-style: none;
    padding-left: 0;
}

.application-features li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 8px;
    font-size: 16px;
    color: var(--text-color);
}

.application-features li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.product-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.product-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-content {
    padding: 1.5rem;
}

.product-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 28px;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.product-description {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.product-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    margin-top: 20px;
}

.product-link:hover {
    color: var(--accent-hover);
    text-decoration: underline;
}

/* Technical Specifications */
.specifications-table {
    max-width: 800px;
    margin: 0 auto 2rem;
}

.spec-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.spec-table td {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.spec-table tr:last-child td {
    border-bottom: none;
}

.spec-parameter {
    font-weight: 600;
    color: var(--text-color);
    background: #f8fafc;
    width: 40%;
}

.spec-value {
    color: var(--text-light);
}

.specifications-notes {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 8px;
    font-size: 16px;
    color: var(--text-light);
}

/* Case Studies */
.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.case-study-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.case-study-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.case-study-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.case-study-content {
    padding: 1.5rem;
}

.industry-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.industry-tag {
    display: inline-block;
    padding: 4px 12px;
    background: var(--secondary-color);
    color: white;
    border-radius: 16px;
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.case-study-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--gray-dark);
}

.case-study-excerpt {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.case-study-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    margin-top: 20px;
}

.case-study-link:hover {
    color: var(--accent-hover);
    text-decoration: underline;
}

/* Related Industries */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.industry-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.industry-card:hover .industry-icon {
    background: var(--accent-hover);
    transform: scale(1.05);
}

.industry-icon {
    width: 80px;
    height: 80px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
}

.industry-icon img {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
}

.industry-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--gray-dark);
}

.industry-description {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.industry-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
}

.industry-link:hover {
    color: var(--accent-hover);
    text-decoration: underline;
}

/* Resources Section */
.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.resource-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.resource-thumbnail img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.resource-content {
    padding: 1.5rem;
}

.resource-type {
    display: inline-block;
    padding: 4px 12px;
    background: var(--light-bg);
    color: var(--text-color);
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.resource-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--gray-dark);
}

.resource-description {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.resource-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
}

.resource-link:hover {
    color: var(--accent-hover);
    text-decoration: underline;
}

/* CTA Section */
.cta-section {
    background: var(--secondary-color);
    color: white;
    padding: 80px 0;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    background: none;
    font-family: inherit;
    font-size: inherit;
}

.btn--primary {
    background: var(--accent-color);
    color: white;
    border-color: var(--accent-color);
}

.btn--primary:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
    color: white;
    text-decoration: none;
}

.btn--outline {
    background: transparent;
    color: white;
    border-color: white;
}

.btn--outline:hover {
    background: white;
    color: var(--primary-color);
    border-color: white;
    text-decoration: none;
}

/* Video Button Styles */
.hero-video-btn {
    position: relative;
}

.hero-video-btn:after {
    content: '▶';
    margin-left: 8px;
    font-size: 0.9em;
}

/* Legacy button classes for compatibility */
.btn-primary {
    background: var(--secondary-color) !important;
    color: white !important;
    border-color: var(--secondary-color) !important;
}

.btn-primary:hover {
    background: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: white !important;
    text-decoration: none;
}

.btn-outline {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-outline:hover {
    background: white;
    color: var(--secondary-color);
    border-color: white;
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
        line-height: 3.5rem;
    }
    
    .section-title {
        font-size: 2.5rem;
        line-height: 3rem;
    }
    
    .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .overview-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }
    
    .application-item {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .application-item:nth-child(even) {
        direction: ltr;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .hero-btn {
        width: 100%;
        max-width: 300px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .benefits-grid,
    .products-grid,
    .industries-grid,
    .resources-grid {
        grid-template-columns: 1fr;
    }
    
    .case-studies-grid {
        grid-template-columns: 1fr;
    }
}
.hero-content {
    color: white;
    max-width: 70%;
}
.hero-btn-primary {
    background: transparent;
    color: white;
    border-color: white;
}
.overview-image img {
    box-shadow: unset;
}
.benefit-icon,
.application-icon {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
}

.icon-circle {
    width: 80px;
    height: 80px;
    background: #00B189;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.icon-circle img {
    max-width: 40px;
    max-height: 40px;
    filter: brightness(0) invert(1);
}

.icon-circle:hover {
    background: #059669;
    transform: scale(1.05);
}

/* Video Modal Styles */
#videoModal .modal-dialog {
    max-width: 800px;
}

#videoModal .modal-content {
    background: transparent;
    border: none;
}

#videoModal .modal-header {
    border: none;
    padding: 15px 0;
}

#videoModal .close {
    color: #fff;
    opacity: 1;
    font-size: 2rem;
    margin-left: auto;
}

#videoModal .modal-body {
    padding: 0;
}

/* Results Card Styling */
.results-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.results-metrics {
    display: flex;
    justify-content: space-around;
    margin-top: 30px;
    flex-wrap: wrap;
}

.metric-item {
    text-align: center;
    min-width: 120px;
    margin: 10px;
}

.metric-value {
    font-size: 48px;
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1;
    margin-bottom: 8px;
}

.metric-label {
    font-size: 16px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* FAQ Section - Clean Minimal Design from CO2 Template */
.faq-section {
    padding: 80px 0;
    background: white;
}

.faq-section .section-title {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 36px !important;
    font-weight: 700 !important;
    color: #333333 !important;
    text-align: center;
    margin-bottom: 3rem !important;
}

.faq-accordion {
    max-width: 1150px;
    margin: 0 auto;
}

/* Clean minimal FAQ items with only border separation */
.faq-item {
    border-bottom: 1px solid var(--border-color, #d0d5db);
    margin-bottom: 0;
    margin: 20px 0;
    background: transparent !important;
    padding: 0 !important;
}

/* Remove any background styling */
.faq-item:first-child {
    border-top: none;
}

.faq-item.active {
    background: transparent !important;
}

.faq-question {
    width: 100%;
    background: none !important;
    border: none;
    padding: 20px;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    color: var(--gray-dark, #5e6266);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    transition: color 0.3s ease;
    outline: none;
}

.faq-question:hover {
    color: var(--accent-color, #00B189);
    background: none !important;
}

.faq-question:focus {
    outline: none;
    background: none !important;
}

/* Plus/minus toggle indicator */
.faq-toggle {
    position: relative;
    font-size: 24px;
    font-weight: 300;
    transition: transform 0.3s ease;
    display: inline-block;
    width: 24px;
    height: 24px;
    line-height: 1;
    text-align: center;
}

.faq-question[aria-expanded="true"] .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 20px 20px 20px;
    color: var(--text-light, #8A8F95);
    line-height: 1.6;
    display: none;
    background: transparent !important;
}

.faq-answer.active {
    display: block;
    background: transparent !important;
}

/* Clean answer content styling */
.faq-answer p {
    margin-bottom: 15px;
    color: var(--text-light, #8A8F95);
    line-height: 1.6;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul,
.faq-answer ol {
    margin: 0.75rem 0;
    padding-left: 1.25rem;
    color: var(--text-light, #8A8F95);
}

.faq-answer li {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light, #8A8F95);
    margin-bottom: 0.4rem;
}

.faq-answer strong {
    font-weight: 600;
    color: #4a5568;
}

/* Force override any blue backgrounds */
.faq-section *,
.faq-item *,
.faq-question[aria-expanded="true"],
.faq-item:has(.faq-question[aria-expanded="true"]) {
    background-color: transparent !important;
    background: none !important;
}

/* Product Category Landing Page Specific Styles - August 21, 2025 */

/* Primary Color Override */
:root {
    --primary-color-override: #000000;
    --primary-button-bg: #FFFFFF;
}

/* Typography Overrides */
h1, .h1 {
    color: #ffffff !important;
    font-size: 72px;
    line-height: 84px;
    font-weight: 700;
    font-family: 'proxima-nova', sans-serif;
}


h2, .h2 {
    font-size: 48px;
    line-height: 60px;
    font-weight: 700;
    font-family: "Proxima Nova", sans-serif;
    color: #333333 !important;
}
.h6, h6 {
    font-size: 24px;
    line-height: 30px;
    font-weight: 700;
}
h1, .h1, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
    font-weight: 700;
    font-family: "Proxima Nova", sans-serif;
}

p {
    font-size: 20px !important;
    line-height: 28px !important;
    font-weight: 400 !important;
    font-family: "Open Sans", sans-serif !important;
    color: #8a8f95 !important;
    padding: 20px;
}

/* Hero Title Styling */
.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: black 2px 2px;
}

/* Page Banner Content Text Shadow */
.page-banner__content .title {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5) !important;
}
.cta-section {
    background: var(--light) !important;
    color: var(--gray-dark) !important;
    padding: 80px 0;
    border-bottom: 2px solid white;
}

.content-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark);
}
.case-study-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--gray-dark);
}
[type="button"]:not(:disabled), [type="reset"]:not(:disabled), [type="submit"]:not(:disabled), button:not(:disabled) {
    cursor: pointer;
}
.content-link, .case-study-link {
    margin-top: 20px;
}
.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--gray-dark);
}
.btn .btn-border {
    color: #FFFFFF;
    border-color: #004686;
    background-color: #004686 !important;
}
.faq-question {
    color: #2d3748;
}
.technology-section .btn-technology {
    margin-top: 20px;
    background-color: #10b981 !important;
}
.product-title {
    color: var(--dark) !important;
}
.section-subtitle {
    margin-left: unset;
}
.text-center {
    margin-left: auto;
    margin-right: auto;
}
.application-title {
    color: var(--gray-dark);
}
h3, .h3 {
    font-family: "Proxima Nova", sans-serif !important;
    font-size: 24px !important;
    font-weight: 400 !important;
}
.section-title {
    font-family: 'Proxima Nova', sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 60px;
    margin-bottom: 1rem;
    color: var(--dark);
}
h2, .h2, .section-title {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 36px !important;
    font-weight: 700 !important;
    margin-bottom: 1rem !important;
    color: var(--dark) !important;
}
.btn-grn {
    background-color: #10b981 !important;
    border-color: #10b981 !important;

}
.challenges-media img {
    width: 500px;
    margin-left: 10%;
}
.solution-media img {
    width: 500px;
}
.col-lg-4.col-md-6.col-12 {
    padding: .5rem;
}
.vid-cls-btn {
    position: relative;
    left: 800px;
}
.text-center {
    margin-left: auto;
    margin-right: auto;
    max-width: 50vw;
}