/* ==== Content01 : What Is Fund ==== */
.cont1 .wrapper {
    display: flex;
    gap: 50px;
    justify-content: space-between;
    flex-wrap: wrap;
}

.cont1 .left {
    flex: 7 1 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.cont1 .right {
    flex: 6 1 0;
    align-self: center;
}

.cont1 .text p {
    color: #414141;
    font-size: 22px;
    font-weight: 500;
    line-height: 1.7;
}

.cont1 .text p strong {
    color: var(--color-black);
    font-weight: 700;
}

.cont1 .text .note {
    margin-top: 15px;
    font-size: var(--font-base);
    color: var(--color-primary);
    font-weight: 400;
}

.cont1 img {
    border-radius: 10px;
    width: 100%;
    height: 410px;
    object-fit: cover;
}

@media (max-width:1440px) {
    .cont1 .wrapper {
        gap: 40px;
    }
}

@media (max-width:1280px) {
    .cont1 .wrapper {
        gap: 30px;
    }

    .cont1 .text p {
        font-size: var(--font-lg);
    }

    .cont1 img {
        height: 360px;
    }
}

@media (max-width:1024px) {
    .cont1 .left {
        flex: 6 1 0;
    }

    .cont1 .right {
        flex: 5 1 0;
    }

    .cont1 .text>p br {
        display: none;
    }

    .cont1 .text>p strong+br {
        display: inline;
    }

    .cont1 .text>p.note br {
        display: none;
    }
}

@media (max-width:768px) {
    .cont1 .wrapper {
        gap: 28px;
    }

    .cont1 .text p {
        font-size: var(--font-lg);
    }
}

@media (max-width:480px) {

    .cont1 .left,
    .cont1 .right {
        flex: 1 1 100%;
    }

    .cont1 .text p {
        font-size: var(--font-base);
    }

    .cont1 img {
        height: auto;
    }
}

/* ==== Content02 : Fund Types ==== */
.cont2 {
    background-color: #F9F9F9;
    border-top: 1px solid #D0D0D0;
    border-bottom: 1px solid #D0D0D0;
}

.cont2 .wrapper {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 30px;
}

.cont2 .box {
    flex: 1 1 0;
    border-radius: 10px;
    padding: 35px 50px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    gap: 15px;
    background-color: white;
}

.box.duty {
    border: 1px solid var(--color-primary);
}

.box.optional {
    border: 1px solid #027273;
}

.cont2 .box-header {
    display: flex;
    align-items: center;
    gap: 30px;
}

.cont2 .box-header h3 {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
}

.box.duty h3 {
    color: var(--color-primary);
}

.box.optional h3 {
    color: #027273;
}

.cont2 .icon {
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: rgba(0, 78, 206, 0.06);
}

.box.optional .icon {
    background-color: rgba(1, 114, 115, 0.06);
}

article:nth-of-type(1) .icon img {
    width: 28px;
    height: auto;
}

article:nth-of-type(2) .icon img {
    width: 40px;
    height: auto;
}

.cont2 .box p {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.6;
    color: #414141;
}

.box.optional p strong {
    font-weight: 600;
    color: #027273;
}

.cont2 .box .note {
    color: var(--color-primary);
    font-size: var(--font-base);
    font-weight: 400;
    line-height: 1.8;
}

.cont2 .btn-wrapper {
    text-align: right;
    margin-top: 30px;
}

.cont2 .btn-wrapper .btn-type03 {
    font-size: var(--font-lg);
    font-weight: 500;
}

@media (max-width:1440px) {
    .cont2 .wrapper {
        gap: 28px;
    }

    .cont2 .box {
        padding: 38px 45px;
    }
}

@media (max-width:1280px) {
    .cont2 .wrapper {
        gap: 24px;
    }

    .cont2 .box {
        padding: 35px 45px;
    }

    .cont2 .btn-wrapper .btn-type03 {
        font-size: var(--font-md);
    }
}

@media (max-width:768px) {
    .cont2 .wrapper {
        gap: 20px;
        flex-direction: column;
    }

    .cont2 .box {
        flex: 1 1 100%;
        padding: 32px;
    }

    .cont2 .box-header {
        gap: 20px;
    }

    .cont2 .box-header h3 {
        font-size: 24px;
    }

    .cont2 .icon {
        width: 76px;
        height: 76px;
    }

    .cont2 .box p {
        font-size: 17px;
        line-height: 1.7;
    }

    .cont2 .btn-wrapper {
        text-align: center;
    }

    .cont2 .btn-wrapper .btn-type03 {
        font-size: var(--font-lg);
    }
}

@media (max-width:480px) {
    .cont2 .wrapper {
        gap: 14px;
    }

    .cont2 .box {
        padding: 20px;
        gap: 10px;
    }

    .cont2 .box-header {
        gap: 14px;
    }

    .cont2 .box-header h3 {
        font-size: 20px;
    }

    .cont2 .icon {
        width: 56px;
        height: 56px;
    }

    article:nth-of-type(1) .icon img {
        width: 25px;
        height: auto;
    }

    article:nth-of-type(2) .icon img {
        width: 35px;
    }

    .cont2 .box p {
        font-size: 15px;
        line-height: 1.7;
    }

    .cont2 .box p br {
        display: none;
    }

    .cont2 .box .note {
        font-size: var(--font-sm);
    }

    .cont2 .btn-wrapper .btn-type03 {
        font-size: var(--font-md);
    }
}

/* ==== Content03 : Agricultural Operators ==== */
.cont3 .section-header {
    margin-bottom: 20px;
}

.cont3 .header-row {
    flex: 1.9;
}

.cont3 .label {
    margin-bottom: 20px;
    color: #595959;
    font-weight: 500;
    font-size: var(--font-base);
    text-align: left;
}

.cont3 table {
    width: 100%;
    border-collapse: separate;
    border-top: 2px solid var(--color-black);
    border-bottom: 2px solid var(--color-black);
    text-align: center;
}

.cont3 table thead th {
    padding: 20px;
    background-color: #FAFAFA;
    border-bottom: 1px solid var(--color-black);
    font-size: var(--font-md);
    font-weight: 600;
}

.cont3 table thead th:first-child {
    border-right: 1px solid #A0A0A0;
}

.cont3 table tbody td,
.cont3 table tbody th {
    padding: 25px 40px;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.6;
    border-bottom: 1px solid #414141;
}

.cont3 table tbody th {
    background-color: #FAFAFA;
    border-right: 1px solid #A0A0A0;
}

.cont3 table thead th:last-child {
    background-color: #DCEAFE;
}

.cont3 table ul {
    text-align: left;
}

.cont3 table li {
    position: relative;
    padding-left: 14px;
    margin-bottom: 10px;
    font-weight: 400;
}

.cont3 table li:last-child {
    margin-bottom: 0;
}

.cont3 table li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 4px;
    height: 4px;
    background-color: #A0A0A0;
    border-radius: 50%;
}

@media (max-width:1280px) {

    .cont3 table tbody td,
    .cont3 table tbody th {
        padding: 24px 28px;
    }
}

@media (max-width:768px) {
    .cont3 .label {
        font-size: var(--font-sm);
        margin-bottom: 14px;
    }

    .cont3 table tbody td,
    .cont3 table tbody th {
        padding: 18px;
    }
}

@media (max-width:480px) {
    .cont3 table thead th {
        padding: 14px;
    }

    .cont3 table tbody td,
    .cont3 table tbody th {
        padding: 16px;
        font-size: 15px;
    }
}

/* ==== Content04 : Fund Target Products ==== */
.cont4 {
    background-color: #F5F9FF;
    border-top: 1px solid rgba(4, 100, 255, 0.3);
    border-bottom: 1px solid rgba(4, 100, 255, 0.3);
}

.cont4 .box {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 10px;
    border: 1px solid #D0D0D0;
    background-color: white;
}

.cont4 img {
    width: 100%;
    height: 245px;
    display: block;
}

.cont4 .box-list {
    gap: 40px;
    display: flex;
    padding: 40px;
}

.cont4 .item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.cont4 .item .number {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(57, 132, 255, 0.1);
    color: var(--color-primary);
    border-radius: 4px;
    font-size: var(--font-sm);
    font-weight: 600;
    line-height: 1;
}

.cont4 .item p {
    font-size: var(--font-lg);
    font-weight: 500;
    line-height: 1.8;
}

.cont4 .sub-text {
    color: var(--color-primary);
    font-size: var(--font-base);
    font-weight: 400;
}

@media (max-width:1440px) {
    .cont4 .box-list {
        gap: 32px;
        padding: 36px;
    }
}

@media (max-width:1280px) {
    .cont4 .box-list {
        gap: 28px;
        padding: 32px;
    }
}

@media (max-width:1024px) {

    .cont4 .item .number {
        width: 24px;
        height: 24px;
    }

    .cont4 img {
        height: auto;
    }
}

@media (max-width:768px) {
    .cont4 .box-list {
        flex-direction: column;
        gap: 18px;
        padding: 22px;
    }

    .cont4 .item {
        gap: 14px;
    }

    .cont4 .item p {
        font-size: var(--font-md);
        line-height: 1.6;
    }
}

@media (max-width:480px) {
    .cont4 .box-list {
        padding: 20px 15px;
        gap: 14px;
    }

    .cont4 .item p {
        font-size: 15px;
    }

    .cont4 .sub-text {
        font-size: var(--font-sm);
    }

    .cont4 .item .number {
        width: 22px;
        height: 22px;
    }
}

/* ==== Content05 : Fund Organization ==== */
.cont5 .box-wrap {
    border: 1px solid #D0D0D0;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
}

.cont5 .box {
    padding: 30px 40px;
    display: flex;
    flex-direction: row;
    gap: 40px;
    background: #F9F9F9;
}

.cont5 .box-wrap .box .label {
    padding: 6px 14px;
    display: inline-flex;
    align-items: center;
    background: #5e5e5e;
    color: white;
    border-radius: 6px;
    font-size: 28px;
    font-weight: 700;
}

.cont5 .box-wrap .box .desc {
    font-size: var(--font-lg);
    color: var(--color-black);
    line-height: 1.6;
}

.cont5 .box-wrap .desc strong {
    color: var(--color-black);
    font-weight: 700;
}

.cont5 .cards {
    padding: 40px;
    display: flex;
    flex-direction: row;
    gap: 30px;
    flex-wrap: wrap;
}

.cont5 .card {
    flex: 1 1 0;
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cont5 .card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.cont5 .card h3 {
    font-size: 28px;
    font-weight: 700;
}

.cont5 .card .icon {
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.cont5 .card.duty {
    background-color: #FAFCFF;
    border-color: var(--color-primary);
}

.cont5 .card.optional {
    background-color: #FBFFFE;
    border-color: #027273;
}

.cont5 .card.duty h3 {
    color: var(--color-primary);
}

.cont5 .card.optional h3 {
    color: #027273;
}

.cont5 .card.duty .icon {
    background: rgba(0, 78, 206, 0.06);
}

.cont5 .card.optional .icon {
    background: rgba(1, 114, 115, 0.06);
}

.cont5 .card.duty p span {
    color: var(--color-primary);
}

.cont5 .card.optional p span {
    color: #027273;
}

.cont5 .card p {
    font-size: 18px;
    color: var(--color-black);
    line-height: 1.6;
}

.cont5 .card p strong {
    color: var(--color-black);
    font-weight: 600;
}

@media (max-width:1440px) {
    .cont5 .box {
        gap: 140px;
        padding: 36px;
    }

    .cont5 .box-wrap .box .label {
        font-size: 26px;
    }

    .cont5 .box-wrap .box .desc {
        font-size: var(--font-md);
    }

    .cont5 .cards {
        padding: 36px;
        gap: 28px;
    }

    .cont5 .card {
        padding: 36px;
    }

    .cont5 .card h3 {
        font-size: 26px;
    }

    .cont5 .card p {
        font-size: 19px;
    }

    .cont5 .card .icon {
        width: 92px;
        height: 92px;
    }
}

@media (max-width:1280px) {
    .cont5 .box {
        gap: 100px;
        padding: 32px;
    }

    .cont5 .box-wrap .box .label {
        font-size: var(--font-2xl);
    }

    .cont5 .box-wrap .box .desc {
        font-size: 16px;
    }

    .cont5 .cards {
        padding: 32px;
        gap: 24px;
    }

    .cont5 .card {
        padding: 32px;
    }

    .cont5 .card h3 {
        font-size: var(--font-2xl);
    }

    .cont5 .card p {
        font-size: var(--font-base);
    }

    .cont5 .card .icon {
        width: 84px;
        height: 84px;
    }
}

@media (max-width:1024px) {
    .cont5 .box {
        flex-direction: column;
        gap: 14px;
        padding: 28px;
    }

    .cont5 .box-wrap .box .label {
        font-size: var(--font-xl);
    }

    .cont5 .box-wrap .box .desc {
        font-size: 15px;
    }

    .cont5 .cards {
        padding: 28px;
        gap: 20px;
    }

    .cont5 .card {
        flex: 1 1 100%;
        padding: 28px;
    }

    .cont5 .card h3 {
        font-size: var(--font-xl);
    }

    .cont5 .card p {
        font-size: 17px;
        line-height: 1.7;
    }

    .cont5 .card .icon {
        width: 76px;
        height: 76px;
    }

    .cont5 .box .desc br,
    .cont5 .card p br {
        display: none;
    }
}

@media (max-width:768px) {
    .cont5 .box {
        padding: 24px;
        gap: 12px;
    }

    .cont5 .box-wrap .box .label {
        font-size: var(--font-lg);
    }

    .cont5 .box-wrap .box .desc {
        font-size: 14.5px;
        line-height: 1.7;
    }

    .cont5 .cards {
        padding: 22px;
        gap: 18px;
    }

    .cont5 .card {
        padding: 24px;
    }

    .cont5 .card h3 {
        font-size: 21px;
    }

    .cont5 .card p {
        font-size: var(--font-md);
    }

    .cont5 .card .icon {
        width: 68px;
        height: 68px;
    }
}

@media (max-width:480px) {
    .cont5 .box {
        padding: 18px;
    }

    .cont5 .box-wrap .box .label {
        font-size: 18px;
    }

    .cont5 .box-wrap .box .desc {
        font-size: var(--font-base);
    }

    .cont5 .cards {
        padding: 16px;
        gap: 14px;
    }

    .cont5 .card {
        padding: 18px;
    }

    .cont5 .card h3 {
        font-size: var(--font-lg);
    }

    .cont5 .card p {
        font-size: 15px;
    }

    .cont5 .card .icon {
        width: 56px;
        height: 56px;
    }
}

/* ==== Content06 : Fund Introduction Button ==== */
.cont6 {
    border-top: 1px solid #D0D0D0;
    padding: 30px 0;
}

.cont6 .btn-wrapper {
    text-align: center;
}