main {
    display: flex;
    flex-direction: column;
    padding: 0 60px;
    --one_big_img_width: 463px;
    --three_big_img_width: 460px;
    --four_box_width: 452px;
}

main .list {
    margin-bottom: 40px;
}

main h2 {
    font-size: 64px;
    font-family: 'cont';
    margin-bottom: 20px;
    color: #0d0e0d;
    font-weight: normal;
}

main .list h3 {
    font-family: 'cont';
}

main .big-box {
    display: flex;
    flex-wrap: wrap;
}

.one-box .img-box::before {
    padding-top: 100%;
}

.one-box .one-text,
.two-box .two-text {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    font-size: 12px;
    color: #0d0e0d;
    font-weight: 700;
}

.two-box .two-text:hover h3,
.one-box .one-text:hover h3 {
    color: #135e96;
}

.two-box .two-text h3,
.one-box .one-text h3 {
    font-size: 24px;
}

.one-big-box {
    display: flex;
}

.one-big-box .img-box {
    width: var(--one_big_img_width);
}

.one-big-box .img-box::before {
    padding-top: 129.38%;
}

.one-big-box .one-big-text {
    width: calc(100% - var(--one_big_img_width));
    background-color: #d4d2cd;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5%;
    text-align: center;
    color: #0d0e0d;
    gap: 5%;
    font-size: 38px;
    line-height: 1.2;
    font-size: 16px;
}

.one-big-box .one-big-text i {
    color: #fff;
    font-size: 16px;
}

.one-big-box .one-big-text h3 {
    font-size: 48px;
}

.one-big-box .one-big-text:hover h3 {
    color: #135e96;
}

.two-box .img-box::before {
    padding-top: 120%;
}

.three-top-box {
    width: 100%;
    display: flex;
    margin-bottom: 30px;
}

.three-top-box:nth-child(even) {
    flex-direction: row-reverse;
}

.three-top-box .img-box {
    min-width: var(--three_big_img_width);
    width: var(--three_big_img_width);
    max-width: var(--three_big_img_width);
}

.three-top-box .img-box::before {
    padding-top: 89%;
}

.three-top-box .three-top-text {
    width: calc(100% - var(--three_big_img_width));
    background-color: #a99478;
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 3% 6%;
    justify-content: center;
    align-items: center;
    gap: 5%;
    color: #fff;
    text-align: center;
    font-size: 15px;
}

.three-top-box .three-top-text h3 {
    color: #333;
    font-size: 38px;
}

.three-top-box .three-top-text button {
    color: #fff;
    background-color: #232432;
    padding: 15px 35px;
    font-size: 15px;
}

.four_item .big-box {
    justify-content: space-evenly;
}

.four_item .big-box .left-box,
.four_item .big-box .right-box {
    width: var(--four_box_width);
}

.four_item .big-box .right-box h2 {
    text-align: center;
    font-size: 36px;
}

.four-box {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
}

.four-box .img-box::before {
    padding-top: 140%;
}

.four-box .four-text {
    background-color: #fff;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    color: #0d0e0d;
    font-size: 28px;
}

.four-box .four-text i {
    font-size: 15px;
}

@media screen and (min-width:770px) {
    .one-box {
        width: calc((100% - 50px) / 3);
        margin-right: 25px;
        margin-bottom: 25px;
    }

    .one-box:nth-of-type(3n) {
        margin-right: 0px;
    }

    .two-box {
        width: calc((100% - 75px) / 4);
        margin-right: 25px;
        margin-bottom: 20px;
    }

    .two-box:nth-of-type(4n) {
        margin-right: 0;
    }
}

@media screen and (max-width:769px) {
    main {
        padding: 0 5px;
        --one_big_img_width: 100%;
        --three_big_img_width: 40%;
        --four_box_width: 49%;
    }

    main h2 {
        font-size: 38px;
        text-align: center;
    }

    .one-box {
        margin-bottom: 30px;
    }

    .one-big-box {
        flex-direction: column;
    }

    .one-big-box .one-big-text {
        width: 100%;
        gap: 20px;
    }

    .one-big-box .one-big-text h3 {
        font-size: 28px;
    }

    .two-box {
        width: calc((100% - 10px) / 2);
        margin-right: 10px;
        margin-bottom: 20px;
    }

    .two-box:nth-of-type(2n) {
        margin-right: 0;
    }

    .two-box .two-text h3,
    .one-box .one-text h3 {
        font-size: 19px;
    }

    .three-top-box .img-box::before {
        padding-top: 120%;
    }

    .three-top-box .three-top-text {
        padding: 2%;
        gap: 0;
        justify-content: space-around;
    }

    .three-top-box .three-top-text h3 {
        font-size: 18px;
    }

    .three-top-box .three-top-text button {
        padding: 8px 18px;
    }

    .four-box .four-text {
        font-size: 15px;
        gap: 10px;
    }

    .four-box .four-text i {
        font-size: 12px;
    }
}