/* ==========================================================================
   SAFETY PAGE SPECIFIC STYLES
   ========================================================================== */

/* INTRO SECTION
   ========================================================================== */
.intro-section {
    text-align: center;
    margin-bottom: 80px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.intro-title {
    /* font-size: 1.8rem;
    font-weight: bold;*/

    color: var(--color-text-primary);
    letter-spacing: 2px;
}

.intro-title img {
    height: 29px;
}

.intro-subtitle {
    /* font-size: 12px;
    color: var(--color-text-light);*/

    margin-bottom: 40px;
}

.intro-subtitle img {
    height: 12px;
}

.intro-text {
    font-size: 15px;
    line-height: 2;
    color: var(--color-text-primary);
    text-align: center;
}

/* CONTENT SECTIONS
   ========================================================================== */
.content-section {
    margin-bottom: 80px;
    display: flex;
    align-items: center;
    gap: 40px;
}


.content-image {
    flex: 1;
}

.sec01 .content-image {
    flex: 1.5;
}

.content-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.content-text {
    flex: 1;

}

.content-text-inner {
    display: flex;
    align-items: end;
    gap: 16px;
    margin-bottom: 20px;
    vertical-align: bottom;
}


.content-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--color-brand-number);
    font-family: 'Urwdin din demi';
    vertical-align: bottom;
    height: 38px;
    line-height: 1;
}

.content-number img {
    height: 50px;
}

.content-title {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--color-text-primary);
    vertical-align: bottom;
    height: 19px;
    line-height: 1;
}

.content-title img {
    height: 19px;
}

.content-description {
    font-size: 14px;
    line-height: 1.8;
    color: var(--color-text-primary);
}

/* SECTION 01
   ================*/
.content-section.sec01 {
    align-items: end;
}

.sec01 .content-text {
    flex: 1;
    padding: 20px 20px 0;
}

.sec01 .content-description {
    max-width: 80%;
}

/* SECTION 02
   ================*/
.content-section.sec02 {

    align-items: end;
    gap: 72px;
    flex-direction: row !important;
    padding-left: 55px;

}

.sec02 .content-text-inner {
    justify-content: flex-end;
}

.sec02 .content-text {
    flex: 1;
    padding: 0;
    align-items: flex-end;
}

.sec02 .content-text-right {
    flex: 3;
    display: flex;
    flex-direction: column;
    padding: 0 200px 0 0;
    align-items: flex-start;
}

.sec02 .content-text-right .content-image {
    margin-top: 60px;
}

/* SECTION 03
   ================*/

.content-section.sec03 {

    gap: 40px;
    justify-content: center;
    align-items: flex-end;
}

.sec03 .content-text {
    padding: 0 0 0 100px;
}

.sec03 .content-text-inner {}

.sec03 .content-image {
    flex: 1.5;
}

.sec03 .content-image img {
    height: 400px;
}

/* SECTION 04
   ================*/

.content-section.sec04 {
    display: flex;
    gap: 40px;
    justify-content: center;
    align-items: flex-end;
}

.sec04 .content-text {
    padding: 0 100px 0 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.sec04 .content-image {
    flex: 1.5;
}

.sec04 .content-text .content-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

/* SECTION 05
   ================*/
.container.sec05 {
    padding: 0;
}

.sec05 .content-section {
    display: flex;
    gap: 40px;
    justify-content: center;
    align-items: flex-end;

}

.multi-image-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;

}

.small-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* FINAL SECTION
   ========================================================================== */
.final-section {
    text-align: center;
    margin: 100px 0 60px 0;
    padding: 40px;

}

.final-text {
    font-size: var(--font-size-xl);
    font-weight: bold;
    color: var(--color-text-primary);
    letter-spacing: 1px;
}

.final-text img {
    height: 20px;
}

/* PLACEHOLDER IMAGES
   ========================================================================== */
.placeholder-image {
    width: 100%;
    height: 300px;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--color-text-light);
    border: 1px solid var(--color-border-light);
}

.placeholder-image.herbs {
    background: linear-gradient(45deg, #90EE90, #228B22);
    color: white;
}

.placeholder-image.lab {
    background: linear-gradient(45deg, #E6E6FA, #9370DB);
    color: white;
}

.placeholder-image.meeting {
    background: linear-gradient(45deg, #F0E68C, var(--color-brand-gold));
    color: white;
}

.placeholder-image.factory {
    background: linear-gradient(45deg, #87CEEB, #4682B4);
    color: white;
}

.placeholder-image.products {
    background: linear-gradient(45deg, #DDA0DD, var(--color-brand-brown));
    color: white;
}

.placeholder-image.small {
    height: 200px;
}

/* RESPONSIVE
   ========================================================================== */
@media (max-width: 768px) {

    .content-section,
    .special-layout-02 {
        flex-direction: column !important;
        gap: 20px;
        margin-bottom: 40px;
    }

    .content-section:nth-child(even) {
        flex-direction: column !important;
    }

    .multi-image-section {
        grid-template-columns: 1fr;
    }

    .intro-title {
        padding: 0 24px;
    }

    .intro-title img {
        height: auto;
        max-width: 100%;
    }

    .intro-section {
        margin-bottom: 55px;
    }

    .intro-text {
        line-height: 1.8;
        font-size: 14px;
        color: var(--color-text-primary);
        text-align: left;
        padding: 0 24px;
    }

    .content-text-inner {
        gap: 10px;
    }

    .sec01 .content-description {
        max-width: 100%;
    }

    .sec01 .content-text {
        flex: 1;
        padding: 0 20px 0;
    }

    .content-section.sec02 {
        display: block;
        padding-left: 24px;
        position: relative;
        margin-bottom: 160px;
    }

    .sec02 .content-image {
        width: 45%;
        float: left;
    }

    .sec02 .content-text-right {
        display: inline-block;
        padding: 0;
        width: 45%;
    }

    .sec02 .content-text-right .content-image {
        float: none;
        clear: both;
        margin-top: 12px;
    }

    .sec02 .content-text-right .content-image img {
        width: calc(100vw - 24px);
        position: absolute;
        left: 24px;
    }

    .sec02 .content-description {
        display: inline-block;
        font-size: 14px;
        line-height: 1.8;
        color: var(--color-text-primary);

    }

    .sec02 .content-text-inner {
        justify-content: flex-start;
    }

    .sec02 .content-image img {
        width: 140px;
        height: auto;
        object-fit: cover;
    }

    .content-section.sec03 {
        gap: 40px;
        justify-content: center;
        align-items: flex-start;
    }

    .sec03 .content-text {
        padding: 0 0 0 24px;
    }

    .sec03 .content-image img {
        height: 160px;
        object-fit: cover;
        width: 100vw;
    }

    .content-section.sec04 {
        display: flex;
        gap: 40px;
        justify-content: center;
        align-items: flex-end;
        flex-direction: column-reverse !important;
        /*margin-left: 24px;*/
    }

    .content-section.sec04>.content-image {}

    .sec04 .content-text {
        padding: 0 0 0 24px;
        display: block;
        flex-direction: column;
        justify-content: space-between;
    }

    .sec04 .content-text-inner {
        padding: 0 24px 0 0;

    }

    .sec04 .content-title img {
        height: auto;
        max-height: 19px;
        width: 100%
    }

    .sec04 .content-description {
        width: 45%;
        float: left;
    }

    .sec04 .content-text .content-image {
        margin-top: 0 !important;
        position: relative;
    }

    .sec04 .content-text .content-image img {
        width: 160px;
        position: absolute;
        right: 0;
    }

    .container.sec05 {
        padding: 0 24px;
    }

    .sec05 .content-section {
        display: flex;
        gap: 40px;
        justify-content: center;
        align-items: flex-end;
        flex-direction: column-reverse !important;
        margin-bottom: 0;
    }

    .sec05 .content-title img {
        height: auto;
        max-height: 19px;
        width: 100%
    }

    .sec05 .multi-image-section {
        grid-template-columns: 1fr 1fr;
        gap: 17px;
    }

    .sec05 .cta-section {
        margin: 50px 0 56px 0;
    }
}