.wh-top {
    position: relative;
    display: block;
    font-size: 0px;
    padding-top: 260px;
    width: calc(100% - 100px);
    max-width: 1096px;
    margin: 0px auto 150px;
    color: #131922;
}

.wh-top > * {
    font-size: 14px;
}

.wh-top-title {
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: 50%;
    font-size: 57px;
    padding-bottom: 20px;
    letter-spacing: 2px;
    margin: 0px;
    line-height: 45px;
    text-transform: capitalize;
    color: #ed1c24;
    /* color: #131922; */
}

.wh-top-title-after {
    position: absolute;
    display: block;
    width: 115px;
    height: 2px;
    bottom: 0px;
    left: 0px;
    overflow: hidden;
}

.wh-top-title.ch .wh-top-title-after {
    width: 350px;
}

.wh-top-title-after:before {
    content: '';
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    background: #ed1c24;
    /* background: #131922; */
    bottom: 0px;
    left: -100%;
}

.shown .wh-top-title-after:before {
    animation: slideRight 3s infinite;
    animation-delay: 1s;
}

@keyframes slideRight {
    0%
    {
        left: -100%;
    }
    25%
    {
        left: 0%;
    }
    75%
    {
        left: 0%;
    }
    100%
    {
        left: 110%;
    }
}

.wh-list {
    position: relative;
    display: block;
    height: 360px;
    overflow: visible;
    padding: 40px 0px;
    text-align: center;
    font-size: 0px;
    margin-bottom: 150px;
}

.wh-list:nth-child(even) {
    background: #e5f1eb;
}

.wh-list > * {
    font-size: 16px;
}

.wh-furniture-pattern {
    position: absolute;
    display: block;
    width: 200px;
    height: 200px;
    background: url('../../img/front/home/wood_pattern1.svg') no-repeat;
    background-size: contain !important;
    background-position: 50% !important;
    left: calc((100% - 200px) / 2) !important;
    top: 150px !important;
}

.wh-employees-pattern {
    position: absolute;
    display: block;
    width: 80px;
    height: 80px;
    background: url('../../img/front/home/wood_pattern2.svg') no-repeat;
    background-size: contain !important;
    background-position: 50% !important;
    left: 115px !important;
    top: 50px !important;
}

.wh-production-pattern {
    position: absolute;
    display: block;
    width: 200px;
    height: 200px;
    background: url('../../img/front/home/wood_pattern1.svg') no-repeat;
    background-size: contain !important;
    background-position: 50% !important;
    left: 110px !important;
    bottom: -150px !important;
}

.wh-communication-pattern {
    position: absolute;
    display: block;
    width: 80px;
    height: 80px;
    background: url('../../img/front/home/wood_pattern2.svg') no-repeat;
    background-size: contain !important;
    background-position: 50% !important;
    left: calc((100% - 200px) / 2) !important;
    bottom: -50px !important;
}


.wh-management-system-pattern {
    position: absolute;
    display: block;
    width: 200px;
    height: 200px;
    background: url('../../img/front/home/wood_pattern1.svg') no-repeat;
    background-size: contain !important;
    background-position: 50% !important;
    left: auto !important;
    right: 110px !important;
    bottom: -100px !important;
}

.wh-list-desc {
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: calc(50% - 12px);
    max-width: 424px;
    margin-right: 136px;
    line-height: 26px;
    letter-spacing: 1px;
    text-align: left;
    padding-top: 50px;
}

.wh-list-desc.first {
    padding-top: 0px;
}

.wh-list-icon {
    position: relative;
    display: block;
    margin: 0px auto 45px;
}

.wh-list-icon.furniture {
    width: 120px !important;
    height: 99px !important;
}

.wh-list-icon.employees {
    width: 123px !important;
    height: 112px !important;
}

.wh-list-icon.production {
    width: 190px !important;
    height: 120px !important;
}

.wh-list-icon.communication {
    width: 128px !important;
    height: 46px !important;
}

.wh-list-icon.management_system {
    width: 80px !important;
    height: 80px !important;
}

.wh-list-image {
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: calc(50% - 12px);
    max-width: 536px;
}

.wh-next {
    position: relative;
    display: block;
    width: 100%;
    /* height: 497px; */
    height: 300px;
    background: url('../../img/front/why_us/our_business.jpg') no-repeat;
    background-size: cover !important;
    background-position: 50% !important;
    font-size: 38px;
    line-height: 46px;
    text-align: center;
    color: #fff !important;
    letter-spacing: 2px;
}

.wh-link {
    position: relative;
    display: block;
    text-align: center;
}

.wh-next .wh-link:before {
    content: '';
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: 26px;
    height: 55px;
    background: url('../../img/front/who_we_are/right_arrow.svg') no-repeat;
    background-size: contain !important;
    background-position: 50% !important;
    margin-right: 10px;

    -webkit-transition: margin-right 0.4s;
    -moz-transition: margin-right 0.4s;
    -ms-transition: margin-right 0.4s;
    transition: margin-right 0.4s;

    -webkit-transform: scaleX(-1);
    -moz-transform: scaleX(-1);
    -ms-transform: scaleX(-1);
    transform: scaleX(-1);
}

.wh-next .wh-link:hover:before {
    margin-right: 25px;

    -webkit-transition: margin-right 0.4s;
    -moz-transition: margin-right 0.4s;
    -ms-transition: margin-right 0.4s;
    transition: margin-right 0.4s;
}



@media screen and (max-width: 1400px) {

}

@media screen and (max-width: 1200px) {
    .wh-list {
        padding: 0px 50px;
        margin: 0px auto;
    }

    .wh-list-desc {
        margin-right: calc(100% - (424px + 536px));
    }
}

/* Tablet */
@media screen and (max-width: 1024px) {
    .wh-link-item {
        height: 390px;
    }

    .wh-top {
        padding-top: 200px;
        margin: 0px auto 80px;
    }

    .wh-top-title {
        display: block;
        width: 100%;
        font-size: 50px;
    }

    .wh-top-title-after {
        width: 100px;
    }

    .wh-top-title.ch .wh-top-title-after {
        width: 310px;
    }

    .wh-list {
        height: auto;
        padding: 50px;
    }

    .wh-list-desc {
        margin-right: 24px;
    }

    .wh-next {
        height: 390px;
    }
}

/* Mobile */
@media screen and (max-width: 768px) {
    .wh-list-desc {
        margin-bottom: 30px;
        margin-right: 0px;
        display: block;
        width: 100%;
        max-width: unset;
        /* text-align: center; */
    }

    .wh-furniture-pattern {
        left: -100px !important;
        top: 200px !important;
    }

    .wh-list-image {
        width: calc(100% + 40px);
        display: block;
        margin: 0px auto;
        max-width: unset;
        left: -20px !important;
    }

    .wh-employees-pattern {
        right: auto !important;
        left: -10px !important;
    }

    .wh-production-pattern {
        left: auto !important;
        right: -120px !important;
    }

    .wh-communication-pattern {
        left: -10px !important;
        top: 20px !important;
    }

    .wh-management-system-pattern {
        right: -80px !important;
        top: 200px !important;
    }
}

@media screen and (max-width : 500px) {
    .wh-top {
        padding-top: 150px;
        margin: 0px auto 40px;
        width: calc(100% - 40px);
    }

    .wh-top-title {
        font-size: 40px;
        padding-bottom: 10px;
        margin-bottom: 50px;
    }

    .wh-top-title-after {
        width: 80px;
    }

    .wh-top-title.ch .wh-top-title-after {
        width: 250px;
    }

    .wh-list:first-child {
        padding-top: 50px;
    }

    .wh-list {
        padding: 120px 20px 0px;
    }

    .wh-list:last-child {
        margin-bottom: 100px;
    }

    .wh-list-icon {
        margin: 0px auto 40px;
    }

    .wh-list-desc {
        padding-top: 40px;
        margin-bottom: 60px;
    }

    .wh-next {
        height: 200px;
        font-size: 27px;
        line-height: 48px;
    }

    .wh-next .wh-link:before {
        width: 20px;
    }
}
