.section,
.section1,
.section2 {
    width: 1200px;
    margin: 40px auto 0;
}

.section_list {
    display: flex;
    gap: 30px;
    width: 100%;
    margin-top: 140px;
}

.section_list_item {
    width: 50%;
    min-width: 0;
}

/* MAIN */
.swiper-main {
    width: 100%;
    height: 400px;
}

.swiper-main .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* THUMB */
.swiper-thumbs {
    margin-top: 10px;
    height: auto;
    max-height: 110px;
}

.swiper-thumbs .swiper-slide {
    opacity: 0.5;
    cursor: pointer;
}

.swiper-thumbs .swiper-slide-thumb-active {
    opacity: 1;
    border: 2px solid #f5911f;
}

.swiper-thumbs .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: fill;
}

.swiper-button-next,
.swiper-button-prev {
    width: 35px !important;
    height: 35px !important;
    background-color: var(--background-F5911F);
    border-radius: 50%;
    padding: 4px;
    box-sizing: border-box;
}

.swiper-navigation-icon {
    color: var(--color-white);
    height: 25px !important;
    width: 25px !important;
}

.swiper-pagination-bullet-active {
    background-color: var(--background-F5911F) !important;
}

.section_list_item_title {
    font-size: 26px;
    font-weight: 700;
    line-height: 30px;
    color: var(--color-black);
}

.section_list_item_content {
    font-size: 18px;
    font-weight: 500;
    color: var(--color-black);
    line-height: 24px;
    text-align: justify;
    margin-top: 15px;
}

.section_detail {
    margin-top: 20px;
}

.section1_title {
    font-size: 26px;
    font-weight: 700;
    color: var(--color-black);
    text-transform: capitalize;
}

.productSwiper {
    overflow: hidden;
}

.product_card {
    border: 2px solid #f7931e;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    height: 250px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;

    transition: 0.3s;
}

.product_card > img {
    transition: transform 0.5s;
}

.product_card:hover > img {
    transform: scale(1.1);
}

.product_card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* BUTTON */
.product-prev,
.product-next {
    width: 40px;
    height: 40px;
    background: var(--background-F5911F);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    cursor: pointer;
    border: 1px solid #eee;
}

.product-prev {
    left: 0px;
}

.product-next {
    right: 0px;
}

/* ICON */
.product-prev::after {
    content: "‹";
    font-size: 63px;
    color: white;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 31px;
}

.product-next::after {
    content: "›";
    font-size: 63px;
    color: white;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 31px;
}

.section1_product {
    margin-top: 20px;
}

.section2 {
    margin-top: 50px;
}

.section2_list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.section2_list_item_title {
    font-size: 26px;
    color: var(--color-FF9E30);
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    padding: 0px 10%;
}

.section2_list_item_body {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 10px;
}

.section2_list_item_body_card_title {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-FF9E30);
    text-transform: uppercase;
    text-align: center;
}

.section2_list_item_body_card > img {
    width: 100%;
    height: auto;
    object-fit: fill;
}

.section2_list_item_body_card > span {
    font-size: 14px;
    font-weight: 400;
    color: var(--color-FF9E30);
    line-height: 20px;
    text-align: center;
    margin-top: 5px;
    display: block;
}

.section2_list_item_title1 {
    text-align: center;
    height: 60px;
    width: auto;
}

.section2_list_item_title1 > img {
    width: 45%;
    height: auto;
    object-fit: contain;
}

.section2_list_item_content {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-black);
    margin-top: 12px;
    line-height: 38px;
    text-align: justify;
}

@media only screen and (max-width: 1199px) {
    .section,
    .section1,
    .section2 {
        width: 1000px;
    }
}

@media only screen and (max-width: 999px) {
    .section,
    .section1,
    .section2 {
        width: 100%;
        padding: 0px 10px;
        box-sizing: border-box;
    }
    .section_list {
        margin-top: 70px;
        flex-wrap: wrap;
    }
    .section_list_item {
        width: 100%;
    }
    .section2 {
        margin-top: 20px;
    }
    .section2_list {
        grid-template-columns: repeat(1, 1fr);
    }
    .section2_list_item_title {
        padding: 0px;
        font-size: 22px;
    }

    .section2_list_item_body_card > img {
        width: 100%;
        height: auto;
    }

    .section2_list_item_content {
        font-size: 18px;
        margin-top: 0px;
    }
}
