/* web/assets/css/component/home.css */

#breadcrumb {
    display: none;
}

.bg_video_hero {
    position: relative;
    width: 100% !important;
    max-width: 100% !important;
    height: 1200px;
    padding: 0 !important;
    margin: 0 !important;
    overflow: hidden;
    color: var(--color-white);
    display: flex;
    flex-direction: column;
}

.bg_video_wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.bg_video_media {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 101%;
    min-height: calc(100% + 80px);
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.bg_video_overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
}

.bg_video_inner {
    position: relative;
    z-index: 2;
    height: 100%;
    width: 100%;
    max-width: 1680px;
    margin: 0 auto;
    padding: 80px 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.bg_video_content {
    margin-bottom: 60px;
}

.bg_video_title {
    font-family: var(--base-font-family);
    font-size: clamp(40px, 8vw, 80px);
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.bg_video_text {
    font-size: 16px;
    max-width: 500px;
    line-height: var(--base-line-height);
}

.bg_video_bottom_row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 30px;
    flex-wrap: wrap;
}

.bg_video_buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.bg_video_btn {
    display: inline-flex;
    align-items: center;
    padding: 14px 32px;
    border-radius: 30px;
    font-weight: 600;
    color: var(--color-white);
    transition: 0.3s;
}

.bg_video_btn_blue {
    background-color: var(--FOSS-Blue-link);
}

.bg_video_btn_orange {
    background-color: var(--FOSS-Orange-button);
}

.bg_video_btn:hover {
    opacity: 0.85;
}

.bg_video_arrow {
    margin-left: 10px;
}

.bg_video_logo {
    height: 60px;
    width: auto;
    display: block;
}

@media (max-width: 768px) {
    .bg_video_hero {
        height: 800px;
    }

    .bg_video_bottom_row {
        justify-content: center;
        text-align: center;
    }

    .bg_video_buttons {
        justify-content: center;
    }
}

.home1 {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}

.home1Col {
    font-size: 33px;
    width: fit-content;
    font-weight: bold;
    padding: 10px;
}

.home1Col p:nth-of-type(odd) {
    font-size: 33px;
    line-height: 30px;
}

.home1Col p:nth-of-type(even) {
    font-size: 14px;
    line-height: 20px;
    font-weight: normal;
}

.ComprehensiveApproach {
    font-family: var(--base-font-family);
    color: var(--color-white);
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.ComprehensiveApproach__main-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    max-width: 680px;
    margin: 0;
}

.ComprehensiveApproach__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 30px;
    row-gap: 80px;
}

.ComprehensiveApproach__card {
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    padding-top: 24px;
    display: flex;
    flex-direction: column;
    position: relative;
    min-height: 320px;
    max-width: 415px;
    padding-left: 20px;
    padding-right: 20px;
}

.ComprehensiveApproach__number {
    font-size: 14px;
    font-weight: 300;
    margin-bottom: 30px;
    opacity: 0.8;
}

.ComprehensiveApproach__content h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 24px;
}

.ComprehensiveApproach__content p {
    font-size: 16px;
    font-weight: 300;
    line-height: 20px;
    opacity: 0.9;
    margin-bottom: 20px;
}

.ComprehensiveApproach__arrow {
    margin-top: auto;
    align-self: flex-end;
}

.ComprehensiveApproach__arrow svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    transition: transform 0.3s ease;
}

.ComprehensiveApproach__card:hover .ComprehensiveApproach__arrow svg {
    transform: translateX(8px);
}

@media (max-width: 1280px) {
    .ComprehensiveApproach__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .ComprehensiveApproach__grid {
        grid-template-columns: 1fr;
    }

    .ComprehensiveApproach__main-title {
        font-size: 32px;
    }
}