.section-2 {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 4fr 6fr;
    padding: 40px;
    height: 110vh;
}

.section-2-video-bg {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.section-2-content {
    position: relative;
    z-index: 5;
    grid-column: 1 / 2;
    grid-row: 2 / 3;
    place-self: center;
    /* Căn giữa*/
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 20px;
    height: 810px;
    width: 830px;
    color: #fff;
    margin-bottom: 0;
}

.section-2-text-container {
    background-image: url('../../assets/images/pc/f2/text_bg.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    padding: 20px 70px;
    margin-bottom: 10px;
    position: relative;
    text-align: center;
    width: 100%;
    height: 75%;
}

.section-2-title {
    font-size: 2.8rem;
    font-weight: bold;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
}

.section-2-description {
    font-size: 2.4rem;
    line-height: 1.6;
    color: #fff;
    margin: 0;
    text-align: left;
}

.section-2-divider {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
}

.section-2-weapons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    width: 100%;
    height: 25%;
}

.section-2-weapon-icon {
    width: 21%;
    height: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: visible;
}

.section-2-weapon-icon .weapon-img-normal,
.section-2-weapon-icon .weapon-img-active {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.3s ease;
}

.section-2-weapon-icon .weapon-img-normal {
    opacity: 1;
}

.section-2-weapon-icon .weapon-img-active {
    opacity: 0;
}

.section-2-weapon-icon.active .weapon-img-normal {
    opacity: 0;
}

.section-2-weapon-icon.active .weapon-img-active {
    opacity: 1;
}

.section-2-weapon-icon:hover,
.section-2-weapon-icon.active {
    background: none;
}

@media only screen and (max-width: 1600px) and (max-height: 1200px) {
    .section-2-title {
        font-size: 2.6rem;
    }

    .section-2-description {
        font-size: 2.2rem;
    }

    .section-2-weapons {
        gap: 25px;
    }
}

@media only screen and (max-width: 1600px) {
    .section-2-content {
        width: 630px;
        height: 550px;
    }

    .section-2-text-container {
        padding: 20px 50px;
    }

    .section-2-title {
        font-size: 2.2rem;
    }

    .section-2-description {
        font-size: 1.6rem;
    }

    .section-2-weapons {
        gap: 10px;
    }
}

@media only screen and (max-height: 1000px) {
    .section-2-content {
        width: 630px;
        height: 550px;
    }

    .section-2-title {
        font-size: 2.2rem;
    }

    .section-2-description {
        font-size: 1.6rem;
    }
}

@media only screen and (max-width: 1200px) {
    .section-2 {
        position: relative;
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: 4fr 6fr;
        padding: 15px;
    }

    .section-2-content {
        height: 850px;
        width: 780px;
        padding: 0px;
    }

    .section-2-weapons {
        gap: 20px;
    }

    .section-2-title {
        font-size: 2.8rem;
    }

    .section-2-description {
        font-size: 2.2rem;
        line-height: 1.8;
    }
}

@media only screen and (max-width: 960px) {
    .section-2-content {
        height: 750px;
        width: 680px;
    }

    .section-2-weapons {
        gap: 20px;
    }

    .section-2-title {
        font-size: 2.6rem;
    }

    .section-2-description {
        font-size: 2rem;
    }
}

@media only screen and (max-width: 650px) {
    .section-2-content {
        width: 530px;
        height: 560px;
    }

    .section-2-weapons {
        gap: 10px;
    }

    .section-2-title {
        font-size: 1.9rem;
    }

    .section-2-description {
        font-size: 1.6rem;
    }
}

@media only screen and (max-width: 460px) {
    .section-2-text-container {
        padding: 20px 30px 30px;
    }

    .section-2-content {
        width: 380px;
        height: 450px;
    }

    .section-2-weapons {
        gap: 10px;
    }

    .section-2-title {
        font-size: 1.4rem;
    }

    .section-2-description {
        font-size: 1.2rem;
    }
}

@media only screen and (max-width: 400px) {
    .section-2-content {
        width: 340px;
        height: 400px;
    }

    .section-2-weapons {
        gap: 10px;
    }

    .section-2-title {
        font-size: 1.2rem;
    }

    .section-2-description {
        font-size: 1rem;
    }
}