/**================== ROOT ==================**/
:root {
    --cl-main: #FA9720;
    --cl-hover-main: #FA9720;
    --cl-black: #000000;
    --cl-white: #ffffff;
    --cl-gray: #F8F8F8;
    --cl-light-gray: #dddddd;
    --cl-dark-gray: #DBDBDB;
    --cl-sp-gray: #77787B;
    --cl-light-red: #C60000;
    --cl-dark-red: #990a00;
    --cl-red: #c72528;
    --cl-yl: #BF9352;
    --cl-green: #009739;
    --cl-blue: #0C163A;
    --cl-light-blue: #dbedf9;
    --cl-orange: #D29728;
    --cl-light-orange: #BF9352;
    --font-aws: FontAwesome;
    --font-main: 'Roboto', sans-serif !important;
    --font-sp: 'Oswald', sans-serif !important;
    --ratio-16-9: calc(9 / 16 * 100%);
    --ratio-4-3: calc(3 / 4 * 100%);
    --ratio-3-4: calc(4 / 3 * 100%);
    --ratio-9-16: calc(16 / 9 * 100%);
    --ratio-1-1: 100%;
    --transition-duration: 1s;
    --transition-delay-one: transform var(--transition-duration) cubic-bezier(.165, .84, .44, 1) calc(var(--transition-duration) * 0.1),
    opacity var(--transition-duration) cubic-bezier(.165, .84, .44, 1) calc(var(--transition-duration) * 0.2);
    --transition-delay-two: transform var(--transition-duration) cubic-bezier(.165, .84, .44, 1) calc(var(--transition-duration) * 0.22),
    opacity var(--transition-duration) cubic-bezier(.165, .84, .44, 1) calc(var(--transition-duration) * 0.32);
    --transition-delay-three: transform var(--transition-duration) cubic-bezier(.165, .84, .44, 1) calc(var(--transition-duration) * 0.28),
    opacity var(--transition-duration) cubic-bezier(.165, .84, .44, 1) calc(var(--transition-duration) * 0.38);
    --transition-delay-four: transform var(--transition-duration) cubic-bezier(.165, .84, .44, 1) calc(var(--transition-duration) * 0.34),
    opacity var(--transition-duration) cubic-bezier(.165, .84, .44, 1) calc(var(--transition-duration) * 0.44);
    --transition-delay-five: transform var(--transition-duration) cubic-bezier(.165, .84, .44, 1) calc(var(--transition-duration) * 0.4),
    opacity var(--transition-duration) cubic-bezier(.165, .84, .44, 1) calc(var(--transition-duration) * 0.5);
    --appear-animation: translateY(3.75rem);
    --active-appear-animation: translateY(0);
}

.appear-delay-1 {
    transition: var(--transition-delay-one);
}

.appear-delay-2 {
    transition: var(--transition-delay-two);
}

.appear-delay-3 {
    transition: var(--transition-delay-three);
}

.appear-delay-4 {
    transition: var(--transition-delay-four);
}

.appear-delay-5 {
    transition: var(--transition-delay-five);
}

.CR-show-mb {
    display: none !important;
}

/**================== HEADING TITLE GROUP ==================**/
.CR-heading-title--group {
    position: relative;
}

.CR-heading-title--group.vertical .sub-title {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.CR-heading-title--group.vertical .sub-title:before {
    width: 2px;
    height: 2.875rem  /* 46/16 */;
    background: linear-gradient(180deg, rgba(247,148,29,0) 0%, rgba(247,148,29,1) 100%);
}

.CR-heading-title--group .sub-title {
    color: var(--cl-sp-gray);
    font-size: 1.25rem  /* 20/16 */;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    margin-bottom: 0.625rem  /* 10/16 */;
    gap: 0.625rem  /* 10/16 */;
}

.CR-heading-title--group .sub-title:before {
    content: '';
    background: rgb(247,148,29);
    background: linear-gradient(90deg, rgba(247,148,29,0) 0%, rgba(247,148,29,1) 100%);
    width: 2.875rem  /* 46/16 */;
    height: 2px;
    display: block;
}

.CR-heading-title--group .heading-title {
    color: var(--cl-main);
    font-size: 3.125rem  /* 50/16 */;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
    margin: 0;
}

.CR-heading-title--group .desc {
    color: var(--cl-sp-gray);
    font-size: 1.125rem  /* 18/16 */;
    font-style: normal;
    font-weight: 400;
    line-height: 1.625rem  /* 26/16 */;
    margin: 1rem  /* 16/16 */ 0 0;
    text-align: justify;
}

.CR-heading-title--group .desc b {
    font-weight: 600;
}

.CR-heading-title--group.vertical .desc,
.CR-heading-title--group.vertical .heading-title {
    text-align: center;
}

/**================== BANNER GROUP ==================**/
.admin-bar .CR-banner--group {
    height: calc(100vh - 32px);
}

.CR-banner--group {
    position: relative;
    z-index: 1;
    height: 100vh;
}

.CR-banner--group:after {
    content: '';
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.80) 103.87%);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 60%;
    z-index: 1;
}

.CR-banner--group img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    -o-object-fit: cover;
    object-fit: cover;
    z-index: -1;
}

.CR-banner--group .heading-title {
    color: var(--cl-white);
    font-size: 3.125rem  /* 50/16 */;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
    margin: 0;
}

.CR-banner--group .container {
    z-index: 2;
}

.CR-banner--group .CR-breadcrumb {
    padding-bottom: 5.625rem  /* 90/16 */;
}

.CR-banner--group .CR-breadcrumb * {
    color: var(--cl-white)
}

.CR-banner--group .scroll--box {
    position: absolute;
    right: 3.125rem /* 50/16 */;
    bottom: 3.75rem /* 60/16 */;
    z-index: 2;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.CR-banner--group .scroll--box ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 1.875rem  /* 30/16 */;
}

.CR-banner--group .scroll--box a {
    font-size: 1rem  /* 16/16 */;
    color: var(--cl-white);
}

.CR-banner--group .scroll--box a:hover {
    color: var(--cl-main);
}

.CR-banner--group .scroll--box p {
    color: var(--cl-white);
    font-size: 0.875rem /* 14/16 */;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 3.125rem /* 50/16 */ 0 1.25rem /* 20/16 */;
    writing-mode: vertical-rl;
    text-orientation: upright;
}

.CR-banner--group .scroll--box svg {
    width: 1.5rem  /* 24/16 */;
    height: auto;
    -webkit-transform: translatey(0px);
    -ms-transform: translatey(0px);
    transform: translatey(0px);
    -webkit-animation: CRAniFloating 2.5s ease-in-out infinite;
    animation: CRAniFloating 2.5s ease-in-out infinite;
}

/**================== PARTNER OP SECTION ==================**/
.CR-partner-op--sec {
    padding: 6.25rem  /* 100/16 */ 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.CR-partner-op--sec .list--box {
    margin-top: 3.75rem  /* 60/16 */;
}

.CR-partner-op--sec .list--box .item {
    width: 20%;
}

.CR-partner-op--sec .list--box .item .wrap {
    height: 9.0625rem  /* 145/16 */;
    width: 100%;
    position: relative;
    padding: 1.25rem  /* 20/16 */;
    background: var(--cl-white);
    -webkit-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    -webkit-box-shadow: -1px 4px 29px transparent;
    box-shadow: -1px 4px 29px transparent;
}

.CR-partner-op--sec .list--box .item .wrap:hover  {
    -webkit-box-shadow: -1px 4px 20px rgb(0 0 0 / 15%);
    box-shadow: -1px 4px 20px rgb(0 0 0 / 15%);
}

.CR-partner-op--sec .list--box .item a {
    width: 100%;
    height: 100%;
}

.CR-partner-op--sec .list--box .item img {
    width: auto;
    max-width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

/**================== PRIZE OP SECTION ==================**/
.CR-prize-op--sec {
    padding: 6.25rem  /* 100/16 */ 0 8.4375rem  /* 135/16 */;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.CR-prize-op--sec .CR-custom-arrow-full.left {
    left: -1.5625rem  /* -25/16 */;
}

.CR-prize-op--sec .CR-custom-arrow-full.right {
    right: -1.5625rem  /* -25/16 */;
}

.CR-prize-op--sec .list--box {
    margin: 3.75rem  /* 60/16 */ -4.375rem  /* -70/16 */ 0;
}

.CR-prize-op--sec .item {
    width: 33.33%;
    padding: 0 4.375rem  /* 70/16 */;
}

.CR-prize-op--sec .item .wrap {
    position: relative;
    border-bottom: 3px solid var(--cl-main);
}

.CR-prize-op--sec .item .view {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.CR-prize-op--sec .item .thumb--box {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: 0.3125rem  /* 5/16 */;
    overflow: hidden;
}

.CR-prize-op--sec .item .thumb--box img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.CR-prize-op--sec .item .content--box {
    padding: 1.875rem  /* 30/16 */ 0.625rem  /* 10/16 */ 0.625rem  /* 10/16 */;
}

.CR-prize-op--sec .item .heading-title {
    color: var(--cl-black);
    font-size: 1rem  /* 16/16 */;
    font-style: normal;
    font-weight: 400;
    line-height: 1.25rem  /* 20/16 */;
    text-transform: uppercase;
    text-align: center;
    margin: 0 auto;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    max-height: 2.5rem  /* 40/16 */;
    height: 2.5rem  /* 40/16 */;
}

/**================== HEADER ==================**/
.admin-bar #CR-header .CR-main-search-mb,
.admin-bar #CR-header .CR-main-nav-mb,
.admin-bar #CR-header .main--box {
    top: 32px;
}

#CR-header:hover .main--box,
#CR-header.CR-fixed .main--box {
    /*box-shadow: -1px 4px 29px rgb(0 0 0 / 21%);*/
}

#CR-header .main--box {
    padding: 1.25rem /* 20/16 */ 0.625rem /* 10/16 */;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-transition: 1s ease-in-out;
    -o-transition: 1s ease-in-out;
    transition: 1s ease-in-out;
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    width: 6.25rem  /* 100/16 */;
    z-index: 9999999;
    box-shadow: -1px 4px 29px transparent;
    text-align: center;
    background-color: var(--cl-white);
}

.admin-bar #CR-header.CR-header-v2 {
    top: 32px;
}

#CR-header.CR-header-v2 {
    -webkit-transition: 1s ease-in-out;
    -o-transition: 1s ease-in-out;
    transition: 1s ease-in-out;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 8888;
    box-shadow: -1px 4px 29px transparent;
}

#CR-header.CR-header-v2.CR-hide-head {
    opacity: 0;
    pointer-events: none;
}

#CR-header.CR-header-v2 .logo--box {
    position: absolute;
    width: auto;
    padding: 0.9375rem  /* 15/16 */ 1.875rem  /* 30/16 */ 0.3125rem  /* 5/16 */;
    top: 0;
    left: 0;
}
#CR-header.CR-header-v2 .logo--box img,
#CR-header.CR-header-v2 .logo--box svg {
    width: auto;
    height: 4.5rem;
    position: relative;
    z-index: 21;
}

#CR-header.CR-header-v2 .main--box::before {
    content: ' ';
    position: absolute;
    top: 0;
    left: 0;
    width: 23.5rem;
    height: 7.5rem;
    background: url(../images/bg-logo.png) no-repeat left top / contain;
    z-index: 20;
}

#CR-header.CR-header-v2 .main--box::after {
    content: ' ';
    position: absolute;
    top: 0;
    left: 3.125rem  /* 50/16 */;
    width: 26.375rem  /* 422/16 */;
    height: 4.375rem  /* 70/16 */;
    background: url(../images/bg-hea.png) no-repeat left top / contain;
    z-index: 20;
}

#CR-header.CR-header-v2.CR-fixed .bg--box {
    right: 0;
}

#CR-header.CR-header-v2 .bg--box {
    background: var(--cl-white);
    transition: 1s ease-in-out;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 100%;
    z-index: -1;
    width: auto;
}

#CR-header.CR-header-v2.CR-fixed .CR-toggle-search svg *,
#CR-header.CR-header-v2.CR-fixed .CR-toggle-menu .icon svg * {
    fill: var(--cl-main);
}

#CR-header.CR-header-v2.CR-fixed .lang--box a,
#CR-header.CR-header-v2.CR-fixed .CR-toggle-menu span {
    color: var(--cl-main);
}

#CR-header.CR-header-v2.CR-fixed .right--box .item:not(:last-child):after {
    background: var(--cl-main);
}

#CR-header.CR-header-v2 .main--box {
    width: 100%;
    position: relative;
    z-index: 999999999;
    -webkit-box-orient: unset;
    -webkit-box-direction: unset;
    -ms-flex-direction: unset;
    flex-direction: unset;
    top: unset;
    bottom: unset;
    left: unset;
    right: unset;
    background: transparent;
    padding-top: 1rem;
    padding-bottom:1rem;
    background: linear-gradient(45deg, rgba(255,255,255,1) 50%, rgba(255,255,255,0) 100%);
    transition: 0.5s ease-in-out;
}

#CR-header.CR-header-v2 .main--box .right--box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-right: 1.25rem  /* 20/16 */;
}

#CR-header.CR-header-v2 .right--box .item:not(:last-child) {
    margin-bottom: 0;
    padding-bottom: 0;
    margin-right: 1rem;
    padding-right: 1rem;
    position: relative;
}

#CR-header.CR-header-v2 .right--box .item:not(:last-child):after {
    content:'';
    background: var(--cl-white);
    width: 1px;
    height: 1.25rem  /* 20/16 */;
    right: 0;
    left: unset;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    bottom: unset;
    top: 50%;
    position: absolute;
    transition: 0.5s ease-in-out;
}

#CR-header.CR-header-v2 .CR-toggle-search,
#CR-header.CR-header-v2 .CR-toggle-menu .icon {
    width: 1.875rem  /* 30/16 */;
    height: 1.875rem  /* 30/16 */;
    position: relative;
}

#CR-header.CR-header-v2 .CR-toggle-menu .icon {
    margin-right: 0.25rem;
}

#CR-header.CR-header-v2 .CR-toggle-search svg *,
#CR-header.CR-header-v2 .CR-toggle-menu .icon svg * {
    fill: var(--cl-white);
    height: 0.25rem  /* 4/16 */ !important;
    transition: 0.5s ease-in-out;
}

#CR-header.CR-header-v2 .CR-toggle-menu .icon svg.open * {
    height: 0.4rem !important;
}

#CR-header.CR-header-v2 .CR-toggle-menu span {
    color: var(--cl-white);
    font-size: 0.5rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin: 0;
    writing-mode: vertical-rl;
    text-orientation: upright;
    text-transform: uppercase;
    transition: 0.5s ease-in-out;
}

#CR-header.CR-header-v2 .slogan--box {
    position: absolute;
    left: 18.75rem  /* 300/16 */;
    top: 1.3125rem  /* 21/16 */;
    transition: all 0.3s ease-in-out;
    z-index: 40;
}

#CR-header.CR-header-v2 .slogan--box p {
    color: #f68e2a;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 1.125rem  /* 18/16 */;
}

#CR-header .CR-toggle-search,
#CR-header .CR-toggle-menu {
    width: 100%;
    height: 1.625rem  /* 26/16 */;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
}

#CR-header .CR-toggle-search svg,
#CR-header .CR-toggle-menu svg {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    height: 100%;
    width: auto;
    max-width: 90%;
    -o-object-fit: contain;
    object-fit: contain;
    -webkit-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
}

#CR-header .CR-toggle-search.active .open,
#CR-header .CR-toggle-menu.active .open,
#CR-header .CR-toggle-search .close,
#CR-header .CR-toggle-menu .close {
    opacity: 0;
}

#CR-header .CR-toggle-search.active .close,
#CR-header .CR-toggle-menu.active .close,
#CR-header .CR-toggle-search .open,
#CR-header .CR-toggle-menu .open {
    opacity: 1;
}

#CR-header .search--box {
    position: relative;
    margin-bottom: 1.5625rem  /* 25/16 */;
    padding-bottom: 1.5625rem  /* 25/16 */;
}

#CR-header .lang--box {

}

#CR-header .lang--box a {
    color: var(--cl-white);
    transition: 0.5s ease-in-out;
    text-transform: uppercase;
}

#CR-header .logo--box {
    position: relative;
    width: 100%;
}

#CR-header .logo--box img,
#CR-header .logo--box svg {
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    width: auto;
    max-width: 100%;
    height: 3.125rem  /* 50/16 */;
    -o-object-fit: contain;
    object-fit: contain;
}

#CR-header .CR-main-search-mb {
    z-index: 999998 !important;
}

#CR-header .CR-main-search-mb,
#CR-header .CR-main-nav-mb {
    z-index: 999999;
    top: 0;
    bottom: 0;
    width: 100%;
    left: -100%;
    background-color: var(--cl-main);
    position: fixed;
    visibility: hidden;
    -webkit-transition: 1s ease-in-out;
    -o-transition: 1s ease-in-out;
    transition: 1s ease-in-out;
    -webkit-box-shadow: -1px 4px 15px rgb(0 0 0 / 10%);
    box-shadow: -1px 4px 15px rgb(0 0 0 / 10%);
    padding-left: 16.25rem  /* 260/16 */;
    overflow: hidden;
}

#CR-header .CR-main-search-mb.active,
#CR-header .CR-main-nav-mb.active {
    visibility: visible;
    left: 0;
}

#CR-header .CR-main-search-mb .search--box,
#CR-header .CR-main-nav-mb .mobile--box {
    width: 100%;
    height: 100%;
    position: relative;
}

#CR-header .search--box:after {
    content: '';
    position: absolute;
    width: 1.625rem;
    height: 1px;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    background: var(--cl-sp-gray);
}

.CR-ani-svg--box {
    position: absolute;
    bottom: 0;
    right: 0;
    pointer-events: none;
}

.CR-ani-svg--box svg {
    width: auto;
    height: 31.25rem  /* 500/16 */;
}

.CR-ani-svg--box path {
    -webkit-animation: CRAniDrawLine 6s linear infinite alternate;
    animation: CRAniDrawLine 6s linear infinite alternate;
}

#CR-header .CR-main-search-mb .form--box {
    width: 37.5rem  /* 600/16 */;
}

#CR-header .CR-main-search-mb form {
    position: relative;
    background: transparent;
    border-bottom: 1px solid var(--cl-white) !important;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 0.3125rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    margin: 0;
    overflow: hidden;
    -webkit-box-shadow: 0px 4px 40px transparent;
    box-shadow: 0px 4px 40px transparent;
    -webkit-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
}

#CR-header .CR-main-search-mb form input::placeholder {
    color: var(--cl-white);
}

#CR-header .CR-main-search-mb form input {
    width: 100%;
    height: 3.125rem  /* 50/16 */;
    padding: 0 1.625rem /* 26/16 */;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    font-size: 1rem  /* 16/16 */;
    font-weight: 500;
    font-style: normal;
    letter-spacing: normal;
    line-height: normal;
    text-align: left;
    background: transparent;
    color: var(--cl-white);
}

#CR-header .CR-main-search-mb form button {
    outline: none !important;
    cursor: pointer;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    border: none !important;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    height: 100%;
    right: 0;
    background: none;
    padding: 0 0.9375rem;
    font-size: 1.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: var(--cl-white);
}

#CR-header .CR-main-nav-mb .socials--box {
    margin-top: 2.1875rem  /* 35/16 */;
    padding-top: 2.1875rem  /* 35/16 */;
    border-top: 1px solid rgb(255 255 255 / 50%);
}

#CR-header .CR-main-nav-mb .socials--box li:not(:last-child) {
    margin-right: 2.5rem  /* 40/16 */;
}

#CR-header .CR-main-nav-mb .socials--box a {
    color: var(--cl-white);
    font-size: 1.5rem  /* 24/16 */;
}

#CR-header .CR-main-nav-mb .appear-animation {
    opacity: 0;
    transform: var(--appear-animation);
}

#CR-header .CR-main-nav-mb.active .appear-animation {
    opacity: 1;
    transform: var(--active-appear-animation);
}

#CR-header .main-merged-menu .CR-sub-menu > li,
#CR-header .main-merged-menu > ul > li {
    position: relative;
    padding: 0.625rem  /* 10/16 */ 0 !important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

#CR-header .main-merged-menu > ul > li:before {
    content: '';
    width: 0;
    height: 0.1875rem  /* 3/16 */;
    border-radius: 0.125rem  /* 2/16 */;
    background-color: var(--cl-sp-gray);
    -webkit-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    margin-right: 0;
}

#CR-header .main-merged-menu .current-menu-item:before,
#CR-header .main-merged-menu li:hover:before {
    width: 1.75rem;
    margin-right: 1.875rem;
}

#CR-header .main-merged-menu a {
    color: var(--cl-white);
    font-size: 2.1875rem  /* 35/16 */;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
}

#CR-header .main-merged-menu li:hover a {
    /*text-shadow: 0 0 0 var(--cl-white), 0 0 0 var(--cl-white), 0 0 0 var(--cl-white), 0 0 0 var(--cl-white);*/
    color: var(--cl-sp-gray);
}

#CR-header .main-merged-menu .current-menu-item .item-with-arrow-box > a,
#CR-header .main-merged-menu .current-menu-item > a,
#CR-header .main-merged-menu .current-product_cat-parent .item-with-arrow-box > a,
#CR-header .main-merged-menu .current-product_cat-parent > a,
#CR-header .main-merged-menu .current_page_parent .item-with-arrow-box > a,
#CR-header .main-merged-menu .current_page_parent > a,
#CR-header .main-merged-menu .sub-menu .current-menu-item a {
    color: var(--cl-sp-gray);
    /*text-shadow: 0 0 0 var(--cl-sp-gray), 0 0 0 var(--cl-sp-gray), 0 0 0 var(--cl-sp-gray), 0 0 0 var(--cl-sp-gray);*/
}

/**================== FOOTER ==================**/
#CR-footer {
    background: var(--cl-sp-gray);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

#CR-footer .heading-title {
    position: relative;
    font-style: normal;
    font-weight: 700;
    font-size: 1.25rem  /* 20/16 */;
    line-height: normal;
    margin-bottom: 1rem  /* 16/16 */;
    text-transform: uppercase;
    color: var(--cl-white);
}

#CR-footer .CR-main-footer {
    padding: 3.125rem  /* 50/16 */ 0;
}

#CR-footer .CR-bottom-footer {
    background-color: var(--cl-main);
    padding: 1.25rem  /* 20/16 */ 0;
}

#CR-footer a:hover {
    color: var(--cl-main);
}

#CR-footer a,
#CR-footer p {
    font-style: normal;
    font-weight: 400;
    font-size: 0.9375rem  /* 15/16 */;
    line-height: normal;
    color: var(--cl-white);
}

#CR-footer b {
    font-weight: 600;
}

#CR-footer .logo--box img {
    width: auto;
    max-width: 100%;
    height: 9.375rem  /* 150/16 */;
}
#CR-footer .contact--box b {
    margin-right: 0.5rem;
}

#CR-footer .contact--box li:not(:last-child) {
    margin-bottom: 1rem  /* 16/16 */;
}

#CR-footer .socials--box li:not(:last-child) {
    margin-right: 2.1875rem  /* 35/16 */;
}

#CR-footer .socials--box a {
    font-size: 1.25rem /* 20/16 */;
}

#CR-footer .menu--box ul {
    gap: 1rem  /* 16/16 */;
}

#CR-footer .menu--box a:hover {
    color: var(--cl-black);
}

#CR-footer .copyright--box {
    height: 100%;
}

#CR-footer .svg--box {
    position: absolute;
    top: 0;
    right: 0;
    pointer-events: none;
    z-index: -1;
}

#CR-footer .svg--box svg {
    width: 37.5rem  /* 600/16 */;
    height: auto;
}

#CR-footer .svg--box svg path {
    stroke-width: 0.03125rem  /* 0.5/16 */;
    stroke-opacity: 0.5;
}

#CR-footer .toggle-menu-item-cont--mb {
    display: none;
}

/**================== HOME PAGE ==================**/
#CR-home-page {

}

.admin-bar #CR-home-page .banner--sec .item {
    height: calc(100vh - 32px);
}

#CR-home-page .banner--sec .item {
    position: relative;
    height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex !important;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: 1;
}

#CR-home-page .banner--sec .item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    z-index: -1;
}

#CR-home-page .banner--sec .item .info--box {
    color: var(--cl-white);
    font-size: 3.125rem  /* 50/16 */;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
    width: 55%;
    -webkit-animation:fadeOutLeft 1s both;
    animation:fadeOutLeft 1s both;
}

#CR-home-page .banner--sec .item.slick-active .info--box {
    -webkit-animation:fadeInLeft 1s both 1s;
    animation:fadeInLeft 1s both 1s;
}

#CR-home-page .banner--sec .item .info--box b {
    color: var(--cl-main);
    font-size: 5rem  /* 80/16 */;
    font-weight: 800;
}

#CR-home-page .banner--sec .item .video-main--box {
    -webkit-animation:fadeOutRight 1s both;
    animation:fadeOutRight 1s both;
}

#CR-home-page .banner--sec .item.slick-active .video-main--box {
    -webkit-animation:fadeInRight 1s both 1s;
    animation:fadeInRight 1s both 1s;
}

#CR-home-page .banner--sec .item .video--box {
    width: 18.75rem  /* 300/16 */;
    height: 18.75rem  /* 300/16 */;
    transform: translatey(0px);
    animation: CRAniFloating 2s ease-in-out infinite;
}

#CR-home-page .banner--sec .item .video--box svg {
    width: auto;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    -webkit-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
}

#CR-home-page .banner--sec .item .video--box a:hover svg {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

#CR-home-page .banner--sec .CR-counter-slick-slider--box {
    position: absolute;
    bottom: 3.125rem;
    left: calc((100% - 1304px)/2);
}

#CR-home-page .banner--sec .CR-custom-dots-line-fix .slick-dots {
    position: absolute;
    bottom: 4.0625rem;
    left: calc((100% - 1104px)/2);
    right: unset;
    margin: 0;
    width: auto;
}

#CR-home-page .banner--sec .CR-slider-banner-home {
    margin-bottom: 0;
}

#CR-home-page .banner--sec .scroll--box {
    position: absolute;
    right: 3.125rem /* 50/16 */;
    bottom: 3.75rem /* 60/16 */;
    z-index: 2;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

#CR-home-page .banner--sec .scroll--box ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 1.875rem  /* 30/16 */;
}

#CR-home-page .banner--sec .scroll--box a {
    font-size: 1rem  /* 16/16 */;
    color: var(--cl-white);
}

#CR-home-page .banner--sec .scroll--box a:hover {
    color: var(--cl-main);
}

#CR-home-page .banner--sec .scroll--box p {
    color: var(--cl-white);
    font-size: 0.875rem /* 14/16 */;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 3.125rem /* 50/16 */ 0 1.25rem /* 20/16 */;
    writing-mode: vertical-rl;
    text-orientation: upright;
}

#CR-home-page .banner--sec .scroll--box svg {
    width: 1.5rem  /* 24/16 */;
    height: auto;
    -webkit-transform: translatey(0px);
    -ms-transform: translatey(0px);
    transform: translatey(0px);
    -webkit-animation: CRAniFloating 2.5s ease-in-out infinite;
    animation: CRAniFloating 2.5s ease-in-out infinite;
}

#CR-home-page .intro--sec {
    padding: 4.375rem  /* 70/16 */ 0 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

#CR-home-page .intro--sec .main--box {
    width: 85%;
    margin: 0 auto;
}

#CR-home-page .intro--sec .CR-heading-title--group .heading-title {
    width: 100%;
    margin: 0 auto;
}

#CR-home-page .intro--sec .video--box {
    position: relative;
    margin-top: 4.375rem  /* 70/16 */;
}

#CR-home-page .intro--sec .video--box img {
    width: 100%;
    height: auto;
}

#CR-home-page .intro--sec .video--box svg {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    width: 7.5rem  /* 120/16 */;
    height: 7.5rem  /* 120/16 */;
    -webkit-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
}

#CR-home-page .intro--sec .video--box a:hover svg {
    -webkit-transform: translate(-50%,-50%) scale(1.1);
    -ms-transform: translate(-50%,-50%) scale(1.1);
    transform: translate(-50%,-50%) scale(1.1);
}

#CR-home-page .core--sec {
    padding: 4.375rem  /* 70/16 */ 0;
    background-color: var(--cl-main);
    position: relative;
    z-index: 2;
    overflow: hidden;
}

#CR-home-page .core--sec .bg--box img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    mix-blend-mode: luminosity;
}

#CR-home-page .core--sec .bg--box {
    position: absolute;
    top: 0;
    left: 60%;
    right: 0;
    bottom: 0;
    z-index: -1;
    background: var(--cl-main);
}

#CR-home-page .core--sec .bg--box:before {
    content: '';
    background: -webkit-gradient(linear, left top, right top, from(var(--cl-main)), to(rgba(247, 148, 29, 0.00)));
    background: -o-linear-gradient(left, var(--cl-main) 0%, rgba(247, 148, 29, 0.00) 100%);
    background: linear-gradient(90deg, var(--cl-main) 0%, rgba(247, 148, 29, 0.00) 100%);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
}

#CR-home-page .core--sec .CR-heading-title--group * {
    color: var(--cl-white);
}

#CR-home-page .core--sec .CR-heading-title--group .sub-title:before {
    background: rgb(255 253 251);
    background: linear-gradient(90deg, rgba(247,148,29,0) 0%, rgb(255 255 255) 100%);
}

#CR-home-page .core--sec .CR-btn-style {
    margin-top: 1.875rem  /* 30/16 */;
    background-color: var(--cl-sp-gray);
}

#CR-home-page .core--sec .content--box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100%;
}

#CR-home-page .core--sec .main-list--box {
    position: relative;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    z-index: 1;
    transform: translatey(0px);
    animation: CRAniFloating 3s ease-in-out infinite;
}

#CR-home-page .core--sec .image--box img {
    position: absolute;
    pointer-events: none;
    z-index: -1;
}

#CR-home-page .core--sec .image--box img:first-child {
    top: 0;
    height: 31.25rem  /* 500/16 */;
    width: auto;
    left: -7.5rem  /* -120/16 */;
    padding-top: 5rem  /* 80/16 */;
}

#CR-home-page .core--sec .image--box img:last-child {
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: auto;
    height: 20rem  /* 320/16 */;
    -o-object-fit: contain;
    object-fit: contain;
    left: calc(100% - 6.25rem  /* 100/16 */);
}

#CR-home-page .core--sec .list--box {
    position: relative;
    padding-left: 8.5rem  /* 136/16 */;
    gap: 1.25rem  /* 20/16 */;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    min-height: 31.25rem  /* 500/16 */;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
}

#CR-home-page .core--sec .list--box .item {
    background: var(--cl-white);
    width: 15rem  /* 240/16 */;
    height: 15rem  /* 240/16 */;
    position: relative;
    /*clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);*/
    clip-path: url(#core-svg);
}

#CR-home-page .core--sec .list--box .item .wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    color: var(--cl-white);
    text-transform: uppercase;
    text-align: center;
    padding: 1rem 3.5rem;
}

#CR-home-page .core--sec .list--box .item .wrap:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    background: rgba(0, 0, 0, 0.5);
    width: calc(100% - 1rem);
    height: calc(100% - 1rem);
    clip-path: url(#core-svg);
    z-index: -1;
}

#CR-home-page .core--sec .list--box .item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-position: center;
    object-position: center;
    -o-object-fit: cover;
    object-fit: cover;
    z-index: -2;
}

#CR-home-page .core--sec .list--box .item .num {
    font-size: 3.125rem  /* 50/16 */;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

#CR-home-page .core--sec .list--box .item .desc {
    font-size: 0.75rem  /* 12/16 */;
    font-style: normal;
    font-weight: 700;
    line-height: 1.125rem  /* 18/16 */;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    max-height: 2.25rem  /* 36/16 */;
}

#CR-home-page .core--sec .list--box .item:last-child {
    position: absolute;
    top: 50%;
    left: 0.5rem  /* 8/16 */;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

#CR-home-page .project--sec {
    background-color: var(--cl-sp-gray);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 7.8125rem  /* 125/16 */ 0 11.25rem  /* 180/16 */;
    overflow: hidden;
    position: relative;
    z-index: 2;
    background-blend-mode: color-burn;
}

#CR-home-page .project--sec .CR-heading-title--group .sub-title {
    color: var(--cl-white);
}

#CR-home-page .project--sec .action--box {
    gap: 1.875rem  /* 30/16 */;
}

#CR-home-page .project--sec .action--box ul {
    gap: 1.875rem  /* 30/16 */;
}

#CR-home-page .project--sec .action--box li a.active,
#CR-home-page .project--sec .action--box li a:hover {
    color: var(--cl-main);
}

#CR-home-page .project--sec .action--box li a.active:before {
    width: 2.0625rem;
    margin-right: 0.625rem;
}

#CR-home-page .project--sec .action--box li a:before {
    content: '';
    width: 0;
    height: 1px;
    background: var(--cl-main);
    margin-right: 0;
    -webkit-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
}

#CR-home-page .project--sec .action--box li a {
    color: var(--cl-white);
    font-size: 1.125rem  /* 18/16 */;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

#CR-home-page .project--sec .action--box .CR-btn-style {
    background: var(--cl-main);
}

#CR-home-page .project--sec .main-list--box {
    margin-top: 3.125rem  /* 50/16 */;
}

#CR-home-page .project--sec .CR-project-home-list--box {
    margin: 0 -0.625rem !important;
}

#CR-home-page .project--sec .CR-project-home-list--box .slick-list {
    overflow: inherit;
}

#CR-home-page .project--sec .CR-project-home-list--box .slick-list:before,
#CR-home-page .project--sec .CR-project-home-list--box .slick-list:after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 20rem;
    z-index: 1;
}

#CR-home-page .project--sec .CR-project-home-list--box .slick-list:before {
    background: linear-gradient(90deg, #6B6C70 0%, rgba(112, 113, 116, 0.00) 100%);
    left: -20rem;
}

#CR-home-page .project--sec .CR-project-home-list--box .slick-list:after {
    background: linear-gradient(270deg, #737477 0%, rgba(112, 113, 116, 0.00) 100%);
    right: -20rem;
}

#CR-home-page .project--sec .CR-project-home-list--box.slick-slider {
    display: block !important;
}

#CR-home-page .project--sec .CR-counter-slick-slider--box {
    right: 0;
    left: unset !important;
    bottom: -6.25rem;
    position: absolute;
}

#CR-home-page .project--sec .CR-custom-dots-line-sp .slick-dots {
    bottom: -5.625rem;
    width: calc(100% - 9.375rem);
}

.CR-item-project-home {
    width: 50%;
    padding: 0 0.625rem;
}

.CR-item-project-home .wrap:hover .icon {
    opacity: 1;
}

.CR-item-project-home .thumb--box {
    position: relative;
    aspect-ratio: 16 / 9;
}

.CR-item-project-home .thumb--box img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.CR-item-project-home .cont--box {
    padding: 2.5rem  /* 40/16 */ 0 0;
}

.CR-item-project-home .heading-title {
    font-style: normal;
    font-weight: 700;
    font-size: 1.5625rem  /* 25/16 */;
    line-height: 1.875rem  /* 30/16 */;
    color: var(--cl-white);
    margin: 0;
    text-transform: uppercase;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    max-height: 1.875rem  /* 30/16 */;
}

.CR-item-project-home .address {
    font-style: normal;
    font-weight: 400;
    font-size: 0.875rem  /* 14/16 */;
    line-height: normal;
    color: var(--cl-white);
    margin: 0.3125rem  /* 5/16 */ 0 0;
}

.CR-item-project-home .icon svg {
    width: 1.875rem;
    height: 1.875rem;
}

.CR-item-project-home .icon svg line {
    stroke: var(--cl-white);
}

.CR-item-project-home .icon {
    opacity: 0;
    -webkit-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    position: absolute;
    width: 5rem;
    height: 5rem;
    right: 0;
    bottom: 0;
    background: var(--cl-main);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    pointer-events: none;
}

#CR-home-page .news--sec {
    padding: 3.125rem  /* 50/16 */ 0 6.25rem  /* 100/16 */;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

#CR-home-page .news--sec .filter--box {
    margin: 2.5rem  /* 40/16 */ auto 3.5rem  /* 56/16 */;
}

#CR-home-page .news--sec .filter--box ul {
    gap: 0.625rem  /* 10/16 */;
}

#CR-home-page .news--sec .filter--box a:hover,
#CR-home-page .news--sec .filter--box a.active {
    background: var(--cl-sp-gray);
    color: var(--cl-white);
}

#CR-home-page .news--sec .filter--box a {
    color: var(--cl-sp-gray);
    font-size: 1.125rem  /* 18/16 */;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    padding: 0 1.875rem  /* 30/16 */;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    border-radius: 0.1875rem  /* 3/16 */;
    border: 1px solid var(--cl-sp-gray);
    background: var(--cl-white);
    height: 3.125rem  /* 50/16 */;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

#CR-home-page .news--sec .svg--box {
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
}

#CR-home-page .news--sec .svg--box svg {
    width: auto;
    height: 62.5rem  /* 1000/16 */;
    -o-object-fit: contain;
    object-fit: contain;
}

#CR-home-page .news--sec .CR-custom-arrow-full.right {
    right: -4.375rem  /* -70/16 */;
}

#CR-home-page .news--sec .CR-custom-arrow-full.left {
    left: -4.375rem  /* -70/16 */;
}

#CR-home-page .shareholder--sec {
    padding: 6.25rem  /* 100/16 */ 0;
    position: relative;
    z-index: 2;
    overflow: hidden;
    background-color: var(--cl-main);
}

#CR-home-page .shareholder--sec .head--box {
    position: relative;
    z-index: 1;
}

#CR-home-page .shareholder--sec .main--box {
    width: 85%;
    margin: 0 auto;
}

#CR-home-page .shareholder--sec .CR-heading-title--group * {
    color: var(--cl-white);
}

#CR-home-page .shareholder--sec .CR-heading-title--group .sub-title:before {
    background: rgb(255 253 251);
    background: linear-gradient(90deg, rgba(247,148,29,0) 0%, rgb(255 255 255) 100%);
}

#CR-home-page .shareholder--sec .svg-left--box {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

#CR-home-page .shareholder--sec .svg-right--box {
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
}

#CR-home-page .shareholder--sec .svg-right--box svg,
#CR-home-page .shareholder--sec .svg-left--box svg {
    width: auto;
    height: 56.25rem  /* 900/16 */;
    -o-object-fit: contain;
    object-fit: contain;
}

#CR-home-page .shareholder--sec .CR-chosen-item .chosen-single {
    border: none !important;
}

#CR-home-page .shareholder--sec .main-list--box {
    margin-top: 1.875rem  /* 30/16 */;
}

#CR-home-page .shareholder--sec .main-list--box:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 75%;
    z-index: 1;
    background: linear-gradient(180deg, rgba(247, 148, 29, 0.00) 0%, var(--cl-main) 100%);
    pointer-events: none;
}

#CR-home-page .shareholder--sec .list--box {
    max-height: 41.875rem  /* 670/16 */;
    overflow-y: auto;
    padding-right: 0.5rem;
}

#CR-home-page .shareholder--sec .list--box::-webkit-scrollbar {
    width: 3px;
    border-radius: 2px;
    background-color: #E4E4E4;
}

#CR-home-page .shareholder--sec .list--box::-webkit-scrollbar-track {
    border: none;
}

#CR-home-page .shareholder--sec .list--box::-webkit-scrollbar-thumb {
    background-color: var(--cl-white);
    outline: 1px solid var(--cl-white);
}

#CR-home-page .shareholder--sec .CR-item-shareholder {
    width: 100% !important;
    padding: 0 !important;
}

#CR-home-page .shareholder--sec .CR-item-shareholder * {
    color: var(--cl-white) !important;
}

#CR-home-page .shareholder--sec .CR-item-shareholder .date--box,
#CR-home-page .shareholder--sec .CR-item-shareholder .wrap {
    background: transparent;
}

#CR-home-page .shareholder--sec .CR-item-shareholder .wrap {
    box-shadow: none;
    border-radius: 0;
    padding: 0.25rem 0;
}

#CR-home-page .shareholder--sec .CR-item-shareholder:not(:last-child) .wrap {
    border-bottom: 1px solid rgb(255 255 255 / 50%);
}

#CR-home-page .shareholder--sec .CR-item-shareholder .icon--box {
    border-color: transparent;
}

#CR-home-page .shareholder--sec .CR-item-shareholder .date--box {
    border-right:1px solid rgb(255 255 255 / 50%);
}

#CR-home-page .shareholder--sec .CR-item-shareholder .date--box,
#CR-home-page .shareholder--sec .CR-item-shareholder .icon--box {
    width: 6.25rem  /* 100/16 */;
    min-width: 6.25rem  /* 100/16 */;
    height: 6.25rem  /* 100/16 */;
}

#CR-home-page .shareholder--sec .CR-item-shareholder .icon--box svg {
    fill: var(--cl-white);
}

#CR-home-page .shareholder--sec .CR-item-shareholder .heading-title {
    font-size: 1.125rem  /* 18/16 */;
    font-weight: 700;
    line-height: 1.6875rem  /* 27/16 */;
    max-height: 3.375rem  /* 54/16 */;
}

/**================== ABOUT PAGE ==================**/
#CR-about-page {
    background: var(--cl-white);
}

#CR-about-page .intro--sec {
    padding: 9rem  /* 144/16 */ 0 0;
    background: linear-gradient(180deg, #E2F3FF 0%, rgba(208, 233, 250, 0.00) 100%);
}

#CR-about-page .intro--sec .image--box {
    position: relative;
    z-index: 1;
    margin: -10% 0 0;
}

#CR-about-page .intro--sec .image--box:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 70%;
    z-index: 1;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.00)), color-stop(21.88%, rgba(255, 255, 255, 0.60)), color-stop(66.67%, rgba(255, 255, 255, 0.92)), to(#FFF));
    background: -o-linear-gradient(top, rgba(255, 255, 255, 0.00) 0%, rgba(255, 255, 255, 0.60) 21.88%, rgba(255, 255, 255, 0.92) 66.67%, #FFF 100%);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.00) 0%, rgba(255, 255, 255, 0.60) 21.88%, rgba(255, 255, 255, 0.92) 66.67%, #FFF 100%);
}

#CR-about-page .intro--sec .image--box img {
    width: 100%;
    height: auto;
}

#CR-about-page .intro--sec .main-year--box {

}

#CR-about-page .intro--sec .year--box {
    width: 75%;
    padding: 5rem  /* 80/16 */ 3.75rem  /* 60/16 */ 18.75rem  /* 300/16 */;
    border-width: 0.1875rem  /* 3/16 */;
    border-style: solid;
    border-image: linear-gradient( to bottom, var(--cl-main), rgba(0, 0, 0, 0) ) 1 100%;
    position: relative;
    color: var(--cl-main);
    transform: translatey(0px);
    animation: CRAniFloating 3s ease-in-out infinite;
}

#CR-about-page .intro--sec .year--box:before {
    content: '';
    background: var(--cl-main);
    height: 0.1875rem  /* 3/16 */;
    position: absolute;
    top: -0.1875rem  /* -3/16 */;
    left: 0;
    right: 0;
}

#CR-about-page .intro--sec .year--box .heading-title {
    font-size: 2.8125rem  /* 45/16 */;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
    margin: 0;
}

#CR-about-page .intro--sec .year--box .heading-title b {
    font-size: 10rem  /* 160/16 */;
    font-weight: 700;
    font-family: var(--font-sp);
}

#CR-about-page .intro--sec .year--box .content {
    font-size: 1.5rem  /* 24/16 */;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
}

#CR-about-page .business--sec {
    padding: 2.5rem  /* 40/16 */ 0 10rem  /* 160/16 */;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(247, 148, 29, 0.00)), to(rgb(247 148 29 / 20%)));
    background: -o-linear-gradient(top, rgba(247, 148, 29, 0.00) 0%, rgb(247 148 29 / 20%) 100%);
    background: linear-gradient(180deg, rgba(247, 148, 29, 0.00) 0%, rgb(247 148 29 / 20%) 100%);
    position: relative;
    z-index: 1;
}

#CR-about-page .business--sec .list--box {
    margin: 1.875rem  /* 30/16 */ -0.625rem  /* -10/16 */ -4.375rem  /* -70/16 */;
}

#CR-about-page .business--sec .list--box .item {
    width: 25%;
    padding: 4.375rem  /* 70/16 */ 0.625rem  /* 10/16 */ 0;
}

#CR-about-page .business--sec .list--box .item .wrap {
    background-color: var(--cl-white);
    border-radius: 0.3125rem  /* 5/16 */;
    padding: 6.25rem  /* 100/16 */ 1.875rem  /* 30/16 */ 3.75rem  /* 60/16 */;
    height: 100%;
    position: relative;
}

#CR-about-page .business--sec .list--box .item .wrap:hover .icon--box {
    background-color: var(--cl-main);
}

#CR-about-page .business--sec .list--box .item .icon--box {
    width: 6.25rem  /* 100/16 */;
    height: 6.25rem  /* 100/16 */;
    border-radius: 50%;
    background-color: var(--cl-sp-gray);
    -webkit-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    top: -3.125rem  /* -50/16 */;
    border: 0.5rem  /* 8/16 */ solid #e3ded8;
}

#CR-about-page .business--sec .list--box .item .icon--box img {
    width: auto;
    height: 55%;
    -o-object-fit: contain;
    object-fit: contain;
    max-width: 80%;
}

#CR-about-page .business--sec .list--box .item .wrap:hover .heading-title {
    color: var(--cl-main);
}

#CR-about-page .business--sec .list--box .item .heading-title {
    color: var(--cl-sp-gray);
    text-align: center;
    font-size: 1rem  /* 16/16 */;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    -webkit-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
}

#CR-about-page .business--sec .list--box .item .desc {
    color: var(--cl-sp-gray);
    font-size: 1rem  /* 16/16 */;
    font-style: normal;
    font-weight: 400;
    line-height: 1.375rem  /* 22/16 */;
    text-align: justify;
    text-align-last: center;
}

#CR-about-page .business--sec .svg--box {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1;
    pointer-events: none;
}

#CR-about-page .business--sec .svg--box svg {
    width: 62.5rem  /* 1000/16 */;
    height: auto;
}

#CR-about-page .history--sec {
    background: linear-gradient(180deg, rgba(255, 249, 242, 0.94) 0%, rgba(255, 246, 236, 0.00) 100%);
    position: relative;
    z-index: 1;
}

#CR-about-page .history--sec .intro--box {
    position: relative;
    overflow: hidden;
}

#CR-about-page .history--sec .intro--box .svg--box svg {
    width: 37.5rem  /* 600/16 */;
    height: auto;
}

#CR-about-page .history--sec .intro--box .svg--box svg path {
    stroke-width: 0.03125rem  /* 0.5/16 */;
    stroke-opacity: 0.5;
}

#CR-about-page .history--sec .CR-heading-title--group {
    background-color: var(--cl-sp-gray);
    padding: 3.75rem  /* 60/16 */ 0 6.25rem  /* 100/16 */;
}

#CR-about-page .history--sec .CR-heading-title--group * {
    color: var(--cl-white);
}

#CR-about-page .history--sec .CR-heading-title--group .sub-title:before {
    background: linear-gradient(180deg, rgb(255 255 255 / 0%) 0%, rgb(255 255 255) 100%);
}

#CR-about-page .history--sec .list--box {
    position: relative;
    padding: 9.375rem  /* 150/16 */ 0 4.375rem  /* 70/16 */;
}

#CR-about-page .history--sec .list--box .line {
    background: linear-gradient(180deg, #BFBFBF 0%, rgba(191, 191, 191, 0.44) 60.94%, rgba(191, 191, 191, 0.00) 100%);
    width: 1px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    bottom: 0;
}

#CR-about-page .history--sec .list--box .line svg {
    position: absolute;
    bottom: -3.75rem  /* -60/16 */;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    height: 3.75rem  /* 60/16 */;
    width: auto;
}

#CR-about-page .history--sec .list--box .item:nth-child(even) .wrap {
    flex-direction: row-reverse;
}

#CR-about-page .history--sec .list--box .item:not(:nth-last-child(2)) {
    margin-bottom: 5rem  /* 80/16 */;
}

#CR-about-page .history--sec .list--box .item .wrap {
    margin: 0 -6.25rem  /* -100/16 */;
    position: relative;
    transform: translatey(0px);
    animation: CRAniFloating 5s ease-in-out infinite;
}

#CR-about-page .history--sec .list--box .item .wrap .image--box,
#CR-about-page .history--sec .list--box .item .wrap .content--box {
    width: 50%;
    padding: 0 6.25rem  /* 100/16 */;
}

#CR-about-page .history--sec .list--box .item .wrap .image--box img {
    width: 100%;
    height: auto;
}

#CR-about-page .history--sec .list--box .item .wrap .icon--box {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    z-index: 2;
}

#CR-about-page .history--sec .list--box .item .wrap .icon--box svg {
    width: 2.8125rem  /* 45/16 */;
    height: auto;
}

#CR-about-page .history--sec .list--box .item .heading-title {
    color: var(--cl-main);
    font-size: 1.875rem  /* 30/16 */;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 0;
}

#CR-about-page .history--sec .list--box .item .desc {
    color: var(--cl-sp-gray);
    font-size: 1rem  /* 16/16 */;
    font-style: normal;
    font-weight: 400;
    line-height: 1.375rem  /* 22/16 */;
    margin: 1.25rem  /* 20/16 */ 0 0;
}

#CR-about-page .history--sec .history-image--box {
    position: relative;
    background: #FFE0BB;
    margin: -20% 0 0;
    z-index: -1;
    pointer-events: none;
}

#CR-about-page .history--sec .history-image--box:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 25%;
    background: -webkit-gradient(linear, left top, left bottom, from(#FFF), color-stop(70.63%, rgba(255, 255, 255, 0.90)), to(rgba(255, 255, 255, 0.00)));
    background: -o-linear-gradient(top, #FFF 0%, rgba(255, 255, 255, 0.90) 70.63%, rgba(255, 255, 255, 0.00) 100%);
    background: linear-gradient(180deg, #FFF 0%, rgba(255, 255, 255, 0.90) 70.63%, rgba(255, 255, 255, 0.00) 100%);
    z-index: 1;
}

#CR-about-page .history--sec .history-image--box img {
    width: 100%;
    height: auto;
    mix-blend-mode: luminosity;
}

/**================== SUPPORT PAGE ==================**/
#CR-support-page {
    padding: 0 0 3.125rem /* 50/16 */;
}

/**================== RECRUITMENT PAGE ==================**/
#CR-recruitment-page .info--sec {
    padding: 6.25rem  /* 100/16 */ 0;
    background-color: var(--cl-main);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-blend-mode: hard-light;
}

#CR-recruitment-page .left--box {
    padding-right: 5rem  /* 80/16 */;
}

#CR-recruitment-page .left--box .CR-btn-style {
    margin-top: 1.875rem  /* 30/16 */;
}

#CR-recruitment-page .right--box {
    padding-left: 5rem  /* 80/16 */;
}

#CR-recruitment-page .list--box {
    position: relative;
}

#CR-recruitment-page .list--box:before {
    content: '';
    width: 0.0625rem  /* 1/16 */;
    background: rgb(247,148,29);
    background: linear-gradient(180deg, rgba(247,148,29,0) 0%, rgba(247,148,29,1) 50%, rgba(247,148,29,0) 100%);
    position: absolute;
    left: 1.40625rem  /* 22.5/16 */;
    top: 0;
    bottom: 0;
}

#CR-recruitment-page .list--box .item {
    color: var(--cl-black);
}

#CR-recruitment-page .list--box .item:not(:last-child) {
    margin-bottom: 5rem  /* 80/16 */;
}

#CR-recruitment-page .info--sec .list--box .item .wrap {
    gap: 2.25rem  /* 36/16 */;
}

#CR-recruitment-page .info--sec .list--box .item .icon {
    width: 2.8125rem  /* 45/16 */;
    min-width: 2.8125rem  /* 45/16 */;
}

#CR-recruitment-page .info--sec .list--box .item .icon svg {
    width: 100%;
    height: auto;
}

#CR-recruitment-page .info--sec .list--box .item .heading-title {
    font-size: 2.1875rem  /* 35/16 */;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 0.5rem;
}

#CR-recruitment-page .info--sec .list--box .item .sub-title {
    font-size: 1.125rem /* 18/16 */;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    display: block;
    margin-bottom: 0.5rem;
}

#CR-recruitment-page .info--sec .list--box .item .desc {
    font-size: 0.875rem  /* 14/16 */;
    font-style: normal;
    font-weight: 400;
    line-height: 1.25rem  /* 20/16 */;
    text-align: justify;
}

/**================== NEWS PAGE ==================**/
#CR-news-page {
    padding-bottom: 6.25rem  /* 100/16 */;
}

#CR-news-page .intro--sec {
    padding: 3.75rem  /* 60/16 */ 0 9.375rem  /* 150/16 */;
}

#CR-news-page .intro--sec .hot-news--list {
    gap: 0.75rem  /* 12/16 */;
    margin: 2.8125rem  /* 45/16 */ 0 0;
}

#CR-news-page .intro--sec .hot-news--list .left--box {
    width: 55%;
}

#CR-news-page .intro--sec .hot-news--list .right--box {
    width: 45%;
    gap: 0.75rem /* 12/16 */;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

#CR-news-page .intro--sec .hot-news--list .left--box .CR-item-news .wrap {
    padding-top: var(--ratio-4-3);
}

#CR-news-page .intro--sec .hot-news--list .left--box .CR-item-news .thumb--box {
    padding-top: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#CR-news-page .intro--sec .hot-news--list .left--box .CR-item-news .cont--box {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 30%;
    background: linear-gradient(90deg, #F7941D 0.1%, rgba(247, 148, 29, 0.00) 99.91%);
    padding: 2.5rem  /* 40/16 */ 2.1875rem  /* 35/16 */;
}

#CR-news-page .intro--sec .hot-news--list .left--box .CR-item-news .cont--box * {
    color: var(--cl-white);
}

#CR-news-page .intro--sec .hot-news--list .left--box .CR-item-news .heading-title {
    margin: 0;
    font-size: 1.875rem  /* 30/16 */;
    line-height: 2.1875rem  /* 35/16 */;
    max-height: 6.5625rem  /* 105/16 */;
    height: auto;
}

#CR-news-page .intro--sec .hot-news--list .left--box .CR-item-news .icon svg path:nth-child(1) {
    fill: var(--cl-main);
    stroke: var(--cl-main) !important;
}

#CR-news-page .intro--sec .hot-news--list .left--box .CR-item-news .icon svg path {
    stroke: var(--cl-white);
}

#CR-news-page .intro--sec .hot-news--list .right--box .CR-item-news {
    height: 25%;
}

#CR-news-page .intro--sec .hot-news--list .right--box .CR-item-news .wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    height: 100%;
}

#CR-news-page .intro--sec .hot-news--list .right--box .CR-item-news .thumb--box {
    width: 12.5rem  /* 200/16 */;
    min-width: 12.5rem  /* 200/16 */;
    padding: 0;
    height: 100%;
}

#CR-news-page .intro--sec .hot-news--list .right--box .CR-item-news .cont--box {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

#CR-news-page .intro--sec .hot-news--list .right--box .CR-item-news .terms-date--box {
    margin-bottom: 0.9375rem  /* 15/16 */;
}

#CR-news-page .intro--sec .hot-news--list .right--box .CR-item-news .heading-title {
    -webkit-line-clamp: 2;
    line-clamp: 2;
    max-height: 3rem  /* 48/16 */;
    height: auto;
    margin-bottom: 0;
}

#CR-news-page .intro--sec .hot-news--list .CR-item-news {
    padding: 0;
    width: 100%;
}

#CR-news-page .intro--sec .hot-news--list .CR-item-news .wrap {
    background: transparent;
}

#CR-news-page .intro--sec .hot-news--list .right--box .CR-item-news .icon,
#CR-news-page .intro--sec .hot-news--list .CR-item-news .author {
    display: none;
}

#CR-news-page .list--sec {

}

#CR-news-page .list--sec .filter--box {
    margin-bottom: 3.125rem  /* 50/16 */;
}

#CR-news-page .list--sec .filter--box ul {
    gap: 0.625rem /* 10/16 */;
    width: 100%;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

#CR-news-page .list--sec .filter--box a:hover,
#CR-news-page .list--sec .filter--box .active a{
    background: var(--cl-sp-gray);
    color: var(--cl-white);
}

#CR-news-page .list--sec .filter--box a {
    color: var(--cl-sp-gray);
    font-size: 1.125rem  /* 18/16 */;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    padding: 0 1.875rem  /* 30/16 */;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    border-radius: 0.1875rem  /* 3/16 */;
    border: 1px solid var(--cl-sp-gray);
    background: var(--cl-white);
    height: 3.125rem  /* 50/16 */;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.CR-news-list--box {
    margin: -0.625rem  /* -10/16 */ -0.25rem  /* -4/16 */;
}

.CR-item-news {
    padding: 0.625rem  /* 10/16 */ 0.25rem  /* 4/16 */;
    width: 25%;
}

.CR-item-news .wrap {
    position: relative;
    background-color: var(--cl-gray);
    border-radius: 0.3125rem  /* 5/16 */;
    overflow: hidden;
}

.CR-item-news .view,
.CR-item-news .thumb--box img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.CR-item-news .view {
    z-index: 2;
}

.CR-item-news .thumb--box {
    position: relative;
    padding-top: var(--ratio-1-1);
    width: 100%;
    overflow: hidden;
}

.CR-item-news .thumb--box img {
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}

.CR-item-news .cont--box {
    padding: 1.125rem  /* 18/16 */;
}

.CR-item-news .heading-title {
    color: var(--cl-black);
    font-size: 1.25rem  /* 20/16 */;
    font-style: normal;
    font-weight: 500;
    line-height: 1.5rem  /* 24/16 */;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    max-height: 4.5rem  /* 72/16 */;
    height: 4.5rem  /* 72/16 */;
    margin-bottom: 1.875rem  /* 30/16 */;
}

.CR-item-news .terms-date--box {
    margin-bottom: 1.25rem  /* 20/16 */;
}

.CR-item-news .terms-date--box a:hover {
    color: var(--cl-main);
}

.CR-item-news .terms-date--box a,
.CR-item-news .terms-date--box p,
.CR-item-news .author {
    color: var(--cl-sp-gray);
    font-size: 0.875rem  /* 14/16 */;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 0;
}

.CR-item-news .author {
    text-transform: capitalize;
}

.CR-item-news .terms:after {
    content: '|';
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    color: var(--cl-sp-gray);
}

.CR-item-news .terms {
    padding-right: 0.75rem;
    margin-right: 0.75rem;
    position: relative;
    z-index: 3;
}

.CR-item-news .icon {
    width: 3.125rem  /* 50/16 */;
    height: 3.125rem  /* 50/16 */;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute;
    bottom: 0;
    right: 0;
}

.CR-item-news .icon svg {
    width: 100%;
    height: 100%;
    -o-object-position: center;
    object-position: center;
    -o-object-fit: cover;
    object-fit: cover;
}

/**================== NEWS DETAIL PAGE ==================**/
#CR-news-detail-page {

}

#CR-news-detail-page .CR-news-detail-main .main--box {
    width: 80%;
    margin: 0 auto;
}

.CR-news-page .CR-news-detail-main {
    padding: 5rem  /* 80/16 */ 0 3.75rem  /* 60/16 */;
}

.CR-news-page .CR-news-detail-main .main--box {
    width: 100%;
    margin: 0 auto;
}

.CR-news-page .CR-news-detail-main .main--box .heading-title {
    margin-bottom: 1.875rem  /* 30/16 */;
    color: var(--cl-main);
    font-size: 3.125rem  /* 50/16 */;
    font-style: normal;
    font-weight: 500;
    line-height: 3.75rem  /* 60/16 */;
}

.CR-news-page .CR-news-detail-main .main--box .terms-date--box {
    margin-bottom: 2.125rem  /* 34/16 */;
}

.CR-news-page .CR-news-detail-main .main--box .terms-date--box a:hover {
    color: var(--cl-main);
}

.CR-news-page .CR-news-detail-main .main--box .terms-date--box a,
.CR-news-page .CR-news-detail-main .main--box .terms-date--box span {
    color: var(--cl-sp-gray);
    font-size: 0.875rem  /* 14/16 */;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.CR-news-page .CR-news-detail-main .main--box .terms-date--box svg {
    margin-right: 0.5rem;
    width: auto;
    height: 1rem  /* 16/16 */;
}

.CR-news-page .CR-news-detail-main .main--box .terms-date--box i {
    margin-right: 0.5rem;
}

.CR-news-page .CR-news-detail-main .main--box .terms-date--box .left--box {
    gap: 1.875rem  /* 30/16 */;
}

.CR-news-page .CR-news-detail-main .share--box ul {
    gap: 1rem  /* 16/16 */;
}

.CR-news-page .CR-news-detail-main .view-more--box {
    border-top: 1px solid rgba(102, 102, 102, 0.15);
    border-bottom: 1px solid rgba(102, 102, 102, 0.15);
    padding: 1rem  /* 16/16 */ 0;
}

.CR-news-page .CR-news-detail-main .view-more--box .head {
    margin-right: 1rem;
    min-width: -webkit-max-content;
    min-width: -moz-max-content;
    min-width: max-content;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
}

.CR-news-page .CR-news-detail-main .view-more--box .sub--box {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.CR-news-page .CR-news-detail-main .view-more--box i,
.CR-news-page .CR-news-detail-main .view-more--box a:hover {
    color: var(--cl-main);
}

.CR-news-page .CR-news-detail-main .view-more--box a {
    color: var(--cl-black);
    font-size: 1rem  /* 16/16 */;
    font-style: normal;
    font-weight: 500;
    line-height: 1.5625rem  /* 25/16 */;
    text-transform: uppercase;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    max-height: 1.5625rem  /* 25/16 */;
    padding-right: 1rem;
}

.CR-news-page .CR-news-detail-bottom {
    padding: 3.75rem  /* 60/16 */ 0 6.25rem  /* 100/16 */;
}

.CR-news-page .CR-news-detail-bottom .heading-title--box {
    margin-bottom: 1.875rem  /* 30/16 */;
}

.CR-news-page .CR-news-detail-bottom .CR-custom-dots-line-fix .slick-dots {
    margin-top: 1.875rem  /* 30/16 */;
}

.CR-news-page .CR-news-detail-bottom .slick-slider {
    margin-bottom: 0;
}

/**================== RESPONSIBILITY DETAIL PAGE ==================**/
#CR-responsibility-detail-page .CR-news-detail-main {
    padding-bottom: 6.25rem  /* 100/16 */;
}

#CR-responsibility-detail-page .main--box {
    padding-right: 3.75rem  /* 60/16 */;
}

#CR-responsibility-detail-page .side-bar--box > .heading-title {
    color: var(--cl-white);
    font-size: 1.25rem  /* 20/16 */;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    border-radius: 0.3125rem  /* 5/16 */ 0.3125rem  /* 5/16 */ 0 0;
    background: var(--cl-main);
    padding: 1.25rem  /* 20/16 */ 1.875rem  /* 30/16 */;
    margin-bottom: 1rem  /* 16/16 */;
}

#CR-responsibility-detail-page .side-bar--box .CR-item-responsibility {
    padding: 0;
    width: 100%;
}

#CR-responsibility-detail-page .side-bar--box .CR-item-responsibility:not(:last-child) {
    margin-bottom: 1rem  /* 16/16 */;
}

#CR-responsibility-detail-page .side-bar--box .CR-item-responsibility .thumb--box {
    padding-top: var(--ratio-1-1);
}

#CR-responsibility-detail-page .side-bar--box .CR-item-responsibility .desc {
    display: none;
}

/**================== RESPONSIBILITY PAGE ==================**/
#CR-responsibility-page {
    padding-bottom: 4.0625rem  /* 65/16 */;
}

#CR-responsibility-page .CR-load-more-wrap {
    margin-bottom: 0;
}

#CR-responsibility-page .intro--sec {
    padding: 3.75rem  /* 60/16 */ 0;
}

#CR-responsibility-page .main-list--box {
    width: 100%;
    margin: 0 auto;
}

.CR-responsibility-list--box {
    margin: -0.8125rem  /* -13/16 */ -0.625rem  /* -10/16 */;
}

#CR-responsibility-page .CR-item-responsibility:first-child {
    width: 100%;
}

#CR-responsibility-page .CR-item-responsibility:first-child .wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

#CR-responsibility-page .CR-item-responsibility:first-child .wrap > div {
    width: 50%;
}

#CR-responsibility-page .CR-item-responsibility:first-child .thumb--box {
    padding-top: 0;
    aspect-ratio: 16/9;
}

#CR-responsibility-page .CR-item-responsibility:first-child .cont--box {
    padding: 4.375rem  /* 70/16 */ 8.75rem  /* 140/16 */ 4.375rem  /* 70/16 */ 4.375rem  /* 70/16 */;
}

#CR-responsibility-page .CR-item-responsibility:first-child .heading-title {
    color: var(--cl-main);
    font-size: 1.875rem  /* 30/16 */;
    font-style: normal;
    font-weight: 600;
    line-height: 2.1875rem  /* 35/16 */;
    max-height: 4.375rem  /* 70/16 */;
    height: auto;
    margin-bottom: 0;
}

#CR-responsibility-page .CR-item-responsibility:first-child .author {
    display: none;
}

#CR-responsibility-page .CR-item-responsibility .thumb--box {
    padding-top: var(--ratio-4-3);
}

.CR-item-responsibility {
    padding: 0.8125rem  /* 13/16 */ 0.625rem  /* 10/16 */;
    width: 33.33%;
}

#CR-responsibility-page .CR-item-responsibility:not(:first-child) .desc--box {
    display: none;
}

#CR-responsibility-page .CR-item-responsibility .desc--box {
    padding-top: 1.875rem  /* 30/16 */;
    margin-top: 1.875rem  /* 30/16 */;
    border-top: 1px solid var(--cl-sp-gray);
}

#CR-responsibility-page .CR-item-responsibility .desc {
    color: var(--cl-sp-gray);
    font-size: 1rem  /* 16/16 */;
    font-style: normal;
    font-weight: 400;
    line-height: 1.375rem  /* 22/16 */;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    line-clamp: 5;
    -webkit-box-orient: vertical;
    max-height: 6.875rem  /* 110/16 */;
    position: relative;
}

.CR-item-responsibility .terms-date--box a,
.CR-item-responsibility .terms-date--box p {
    font-size: 1rem  /* 16/16 */;
}

/**================== CONTACT PAGE ==================**/
#CR-contact-page {

}

#CR-contact-page .intro--sec {
    padding: 7.5rem  /* 120/16 */ 0;
    background-color: var(--cl-white);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
}

#CR-contact-page .intro--sec:before {
    content: '';
    background: linear-gradient(180deg, #FFF 0%, rgba(245, 247, 255, 0.74) 54.69%, rgba(245, 247, 255, 0.00) 100%);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 10%;
    z-index: -1;
}

#CR-contact-page .intro--sec .list--box {
    margin: 3.4375rem  /* 55/16 */ auto 0;
    width: 80%;
}

#CR-contact-page .intro--sec .item {
    width: 33.33%;
    padding: 1rem  /* 16/16 */;
}

#CR-contact-page .intro--sec .item .wrap {
    position: relative;
    padding: 2.8125rem  /* 45/16 */ 2.1875rem  /* 35/16 */;
    background-color: var(--cl-white);
    height: 100%;
    -webkit-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
}

#CR-contact-page .intro--sec .item .wrap:hover {
    background-color: var(--cl-main);
}

#CR-contact-page .intro--sec .item .wrap:hover * {
    color: var(--cl-white) !important;
}

#CR-contact-page .intro--sec .item .icon {
    margin-bottom: 1rem /* 16/16 */;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

#CR-contact-page .intro--sec .item .icon i {
    color: var(--cl-main);
    -webkit-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    font-size: 3.125rem  /* 50/16 */;
}

#CR-contact-page .intro--sec .item b {
    color: var(--cl-black);
    text-align: center;
    font-size: 1.125rem  /* 18/16 */;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    display: block;
    padding-bottom: 1.125rem  /* 18/16 */;
    margin-bottom: 1.125rem  /* 18/16 */;
    position: relative;
    -webkit-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
}

#CR-contact-page .intro--sec .item .wrap:hover b:after {
    background-color: var(--cl-white);
}

#CR-contact-page .intro--sec .item b:after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 4.0625rem  /* 65/16 */;
    height: 2px;
    background-color: var(--cl-black);
    -webkit-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
}

#CR-contact-page .intro--sec .item a {
    color: var(--cl-black);
    text-align: center;
    font-size: 0.9375rem  /* 15/16 */;
    font-style: normal;
    font-weight: 400;
    line-height: 1.25rem  /* 20/16 */;
    display: block;
}

#CR-contact-page .form--sec {
    padding: 8.125rem  /* 130/16 */ 0;
}

#CR-contact-page .form--sec .main--box {
    background: var(--cl-gray);
    width: 100%;
    margin: 0 auto;
}

#CR-contact-page .form--sec .CR-heading-title--group {
    margin-bottom: 2.5rem  /* 40/16 */;
}

#CR-contact-page .form--sec .image--box {
    position: relative;
    width: 40%;
}

#CR-contact-page .form--sec .image--box img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

#CR-contact-page .form--sec .form--box {
    width: 60%;
    padding: 4.375rem  /* 70/16 */ 5.625rem  /* 90/16 */;
}

#CR-contact-page .map--sec .acf-map {
    height: 31.25rem  /* 500/16 */;
}

/**================== CORPORATE CULTURE PAGE ==================**/
#CR-corporate-culture-page {
    overflow: hidden;
}

#CR-corporate-culture-page .intro--sec {
    padding: 3.75rem  /* 60/16 */ 0;
}

#CR-corporate-culture-page .intro--sec .CR-heading-title--group {
    width: 60%;
    margin: 0 auto;
}

#CR-corporate-culture-page .intro--sec .list--box {
    margin-top: 5rem  /* 80/16 */;
}

#CR-corporate-culture-page .intro--sec .list--box .items-row {
    gap: 0.625rem  /* 10/16 */;
}

#CR-corporate-culture-page .intro--sec .list--box .items-row:not(:last-child) {
    margin-bottom: 0.625rem  /* 10/16 */;
}

#CR-corporate-culture-page .intro--sec .list--box .left--box {
    width: 40%;
}

#CR-corporate-culture-page .intro--sec .list--box .center--box {
    width: 40%;
    gap: 0.625rem  /* 10/16 */;
}

#CR-corporate-culture-page .intro--sec .list--box .right--box {
    width: 20%;
}

#CR-corporate-culture-page .intro--sec .list--box .left--box .item .wrap {
    aspect-ratio: 4/3;
}

#CR-corporate-culture-page .intro--sec .list--box .center--box .item {
    height: calc(50% - 0.3125rem  /* 5/16 */);
    width: calc(50% - 0.3125rem  /* 5/16 */);
}

#CR-corporate-culture-page .intro--sec .list--box .center--box .item:nth-child(3) {
    width: 100%;
}

#CR-corporate-culture-page .intro--sec .list--box .center--box .item .wrap,
#CR-corporate-culture-page .intro--sec .list--box .right--box .item .wrap {
    height: 100%;
}

#CR-corporate-culture-page .intro--sec .list--box .right--box .item {
    width: 100%;
    height: 100%;
}

#CR-corporate-culture-page .intro--sec .list--box .item {
    width: 100%;
}

#CR-corporate-culture-page .intro--sec .list--box .item .wrap {
    position: relative;
    overflow: hidden;
}

#CR-corporate-culture-page .intro--sec .list--box .item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-position: center;
    object-position: center;
    -o-object-fit: cover;
    object-fit: cover;
}

#CR-corporate-culture-page .main-list--sec {
    padding: 11.25rem  /* 180/16 */ 0 12.5rem  /* 200/16 */;
}

#CR-corporate-culture-page .main-list--sec .list--box {
    width: 90%;
    margin: 0 auto;
}

#CR-corporate-culture-page .main-list--sec .item:not(:last-child) {
    margin-bottom: 18.75rem  /* 300/16 */;
}

#CR-corporate-culture-page .main-list--sec .item:nth-child(even) .wrap {
    flex-direction: row-reverse;
}

#CR-corporate-culture-page .main-list--sec .item .wrap {
    position: relative;
    margin: 0 -4.6875rem  /* -75/16 */;
    z-index: 1;
}

#CR-corporate-culture-page .main-list--sec .item:nth-child(even) .wrap svg {
    -webkit-transform: scaleX(-1);
    -ms-transform: scaleX(-1);
    transform: scaleX(-1);
    left: unset;
    right: 35%;
}

#CR-corporate-culture-page .main-list--sec .item .wrap svg {
    position: absolute;
    top: -5rem  /* -80/16 */;
    left: 30%;
    width: auto;
    height: 46.875rem  /* 750/16 */;
    max-width: 62.5rem  /* 1000/16 */;
    object-fit: contain;
    z-index: -1;
    pointer-events: none;
}

#CR-corporate-culture-page .main-list--sec .item .wrap > div {
    padding: 0 4.6875rem  /* 75/16 */;
    width: 50%;
}

#CR-corporate-culture-page .main-list--sec .item .image--box img {
    width: 100%;
    height: auto;
    border-radius: 0.3125rem  /* 5/16 */;
}

#CR-corporate-culture-page .main-list--sec .item .top--box {
    margin-bottom: 2.5rem  /* 40/16 */;
}

#CR-corporate-culture-page .main-list--sec .item .top--box .num  {
    font-size: 6.25rem /* 100/16 */;
    font-style: italic;
    font-weight: 900;
    line-height: normal;
    text-transform: uppercase;
    margin: -0.625rem /* -10/16 */ 1.25rem /* 20/16 */ 0 0;
    -webkit-text-stroke: 1px var(--cl-main);
    color: var(--cl-white);
}

#CR-corporate-culture-page .main-list--sec .item .top--box .heading-title {
    color: var(--cl-main);
    font-size: 2.8125rem  /* 45/16 */;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    text-transform: uppercase;
}

#CR-corporate-culture-page .main-list--sec .item .top--box .desc {
    font-size: 1.125rem  /* 18/16 */;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 0.625rem  /* 10/16 */ 0 0;
    color: var(--cl-sp-gray);
}

#CR-corporate-culture-page .main-list--sec .item .sub-list--box {
    max-height: 23.125rem  /* 370/16 */;
    overflow-x: hidden;
    overflow-y: auto;
    padding-right: 1.875rem  /* 30/16 */;
}

#CR-corporate-culture-page .main-list--sec .item .sub-item:not(:last-child) {
    margin-bottom: 1.875rem  /* 30/16 */;
}

#CR-corporate-culture-page .main-list--sec .item .sub-heading-title {
    color: var(--cl-main);
    font-size: 1rem  /* 16/16 */;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
    position: relative;
    gap: 0.5rem;
}

#CR-corporate-culture-page .main-list--sec .item .sub-heading-title:before {
    content: '';
    background-color: var(--cl-main);
    width: 0.25rem;
    min-width: 0.25rem;
    height: 0.25rem;
    border-radius: 50%;
    display: block;
}

#CR-corporate-culture-page .main-list--sec .item .content {
    color: var(--cl-sp-gray);
    font-size: 1rem  /* 16/16 */;
    font-style: normal;
    font-weight: 400;
    line-height: 1.625rem  /* 26/16 */;
}

/**================== SHAREHOLDER PAGE ==================**/
#CR-shareholder-page {
    position: relative;
    z-index: 1;
}

#CR-shareholder-page .CR-load-more-wrap {
    margin-bottom: 0;
}

#CR-shareholder-page .main-image--box {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
    pointer-events: none;
}

#CR-shareholder-page .main-image--box img {
    width: 100%;
    height: auto;
}

#CR-shareholder-page .main--box {
    position: relative;
    z-index: 1;
}

.admin-bar #CR-shareholder-page .terms--sec {
    top: 32px;
}

#CR-shareholder-page .terms--sec {
    position: sticky;
    top: 0;
    -webkit-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    background: var(--cl-sp-gray);
    z-index: 3;
}

#CR-shareholder-page .terms--sec a:hover,
#CR-shareholder-page .terms--sec .active a {
    background: var(--cl-main);
}

#CR-shareholder-page .terms--sec a {
    padding: 0 3.125rem  /* 50/16 */;
    height: 3.75rem  /* 60/16 */;
    display: flex;
    align-items: center;
    justify-content: center;
    width: max-content;
    color: var(--cl-white);
    font-size: 1.125rem  /* 18/16 */;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

#CR-shareholder-page .list--sec {
    padding: 6.25rem  /* 100/16 */ 0;
}

#CR-shareholder-page .list--sec .top--box {
    margin-bottom: 3.125rem  /* 50/16 */;
    position: relative;
    z-index: 2;
}

#CR-shareholder-page .list--sec .quarters--box {
    position: relative;
    margin-bottom: 6.25rem  /* 100/16 */;
    z-index: 1;
}

#CR-shareholder-page .list--sec .quarters--box.CR-load-ajax:before {
    background-size: 3.125rem  /* 50/16 */;
}

#CR-shareholder-page .list--sec .quarters--box:after {
    content: '';
    background: rgb(0,0,0);
    background: linear-gradient(90deg, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 50%, rgba(0,0,0,0) 100%);
    height: 1px;
    position: absolute;
    left: 0;
    right: 0;
    top: 1.40625rem  /* 22.5/16 */;
    z-index: -1;
}

#CR-shareholder-page .list--sec .quarters--box ul {
    padding: 0 6.25rem  /* 100/16 */;
}

#CR-shareholder-page .list--sec .quarters--box li {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 0%;
    flex: 1 0 0%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

#CR-shareholder-page .list--sec .quarters--box a {
    position: relative;
}

#CR-shareholder-page .list--sec .quarters--box .dot {
    width: 2.8125rem  /* 45/16 */;
    height: 2.8125rem  /* 45/16 */;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0 auto;
}

#CR-shareholder-page .list--sec .quarters--box .dot svg {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

#CR-shareholder-page .list--sec .quarters--box .dot svg circle:first-child {
    opacity: 0;
    -webkit-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
}

#CR-shareholder-page .list--sec .quarters--box a.active .dot svg circle:first-child,
#CR-shareholder-page .list--sec .quarters--box a:hover .dot svg circle:first-child {
    opacity: 1;
}

#CR-shareholder-page .list--sec .quarters--box a.active b,
#CR-shareholder-page .list--sec .quarters--box a:hover b {
    -webkit-transform: translateX(-50%) scale(1);
    -ms-transform: translateX(-50%) scale(1);
    transform: translateX(-50%) scale(1);
}

#CR-shareholder-page .list--sec .quarters--box b {
    border-radius: 0.3125rem /* 5/16 */;
    background: var(--cl-sp-gray);
    color: var(--cl-white);
    font-size: 1.25rem /* 20/16 */;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    height: 2.8125rem /* 45/16 */;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    padding: 0 1rem;
    -webkit-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    -webkit-transform: translateX(-50%) scale(0);
    -ms-transform: translateX(-50%) scale(0);
    transform: translateX(-50%) scale(0);
    position: absolute;
    left: 50%;
    top: calc(100% + 0.625rem  /* 10/16 */);
}

#CR-shareholder-page .list--sec .list--box.type-two {
    margin: -0.3125rem  /* -5/16 */ -0.625rem  /* -10/16 */;
}

#CR-shareholder-page .list--sec .list--box.type-three {
    margin: -0.625rem  /* -10/16 */;
}

#CR-shareholder-page .list--sec .list--box.type-four {
    margin: -2.5rem  /* -40/16 */;
}

.CR-item-shareholder {
    position: relative;
}

.CR-item-shareholder .wrap {
    position: relative;
}

.CR-item-shareholder .heading-title {
    -webkit-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
}

.CR-item-shareholder .wrap:hover .heading-title {
    color: var(--cl-main);
}

.type-one .CR-item-shareholder {
    width: 100%;
}

.type-one .CR-item-shareholder:not(:last-child) {
    margin-bottom: 0.8125rem  /* 13/16 */;
}

.type-one .CR-item-shareholder .wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border-radius: 0.3125rem  /* 5/16 */;
    border: 1px solid #E1E1E1;
    background: var(--cl-white);
    padding: 1rem  /* 16/16 */ 0;
}

.type-one .CR-item-shareholder .icon--box {
    width: 5rem /* 80/16 */;
    min-width: 5rem  /* 80/16 */;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.type-one .CR-item-shareholder .icon--box svg {
    width: 1.875rem  /* 30/16 */;
    height: 1.875rem  /* 30/16 */;
    -o-object-fit: contain;
    object-fit: contain;
}

.type-one .CR-item-shareholder .cont--box {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.type-one .CR-item-shareholder .action--box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    gap: 1.25rem  /* 20/16 */;
    padding: 0 2.25rem  /* 36/16 */;
}

.type-one .CR-item-shareholder .action--box a:hover {
    color: var(--cl-main);
}

.type-one .CR-item-shareholder .action--box a {
    color: var(--cl-sp-gray);
    font-size: 1rem  /* 16/16 */;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    position: relative;
}

.type-one .CR-item-shareholder .action--box a:first-child:after {
    content: '';
    width: 1px;
    height: 1.125rem  /* 18/16 */;
    background: var(--cl-sp-gray);
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: -0.625rem  /* -10/16 */;
}

.type-one .CR-item-shareholder .heading-title {
    color: var(--cl-black);
    font-size: 1.125rem  /* 18/16 */;
    font-style: normal;
    font-weight: 400;
    line-height: 1.25rem  /* 20/16 */;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    max-height: 1.25rem  /* 20/16 */;
    margin-bottom: 0;
}

.type-two .CR-item-shareholder {
    width: 50%;
    padding: 0.3125rem  /* 5/16 */ 0.625rem  /* 10/16 */;
}

.type-two .CR-item-shareholder .wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border-radius: 0.3125rem  /* 5/16 */;
    overflow: hidden;
    box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.05);
    background: var(--cl-white);
    padding: 0;
}

.type-two .CR-item-shareholder .date--box {
    width: 4.6875rem  /* 75/16 */;
    min-width: 4.6875rem  /* 75/16 */;
    height: 4.6875rem  /* 75/16 */;
    background: var(--cl-main);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.type-two .CR-item-shareholder .date--box * {
    color: var(--cl-white);
    line-height: normal;
    text-align: center;
    display: block;
}

.type-two .CR-item-shareholder .date--box b {
    font-size: 2.625rem  /* 42/16 */;
    font-weight: 700;
    text-align: center;
    line-height: 2.5rem  /* 40/16 */;
}

.type-two .CR-item-shareholder .date--box p {
    font-size: 0.8125rem  /* 13/16 */;
    font-weight: 400;
}

.type-two .CR-item-shareholder .icon--box {
    width: 4.6875rem  /* 75/16 */;
    min-width: 4.6875rem  /* 75/16 */;
    height: 4.6875rem  /* 75/16 */;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-left: 1px solid var(--cl-gray);
}

.type-two .CR-item-shareholder .icon--box svg {
    width: 1.875rem  /* 30/16 */;
    height: 2.5rem  /* 40/16 */;
    -o-object-fit: contain;
    object-fit: contain;
}

.type-two .CR-item-shareholder .cont--box {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding: 0 1.25rem  /* 20/16 */;
}

.type-two .CR-item-shareholder .heading-title {
    color: var(--cl-sp-gray);
    font-size: 1rem  /* 16/16 */;
    font-style: normal;
    font-weight: 400;
    line-height: 1.25rem  /* 20/16 */;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    max-height: 2.5rem  /* 40/16 */;
    margin-bottom: 0;
}

.type-three .CR-item-shareholder {
    width: 33.33%;
    padding: 0.625rem  /* 10/16 */;
}

.type-three .CR-item-shareholder .wrap {
    border-radius: 0.3125rem  /* 5/16 */;
    background: var(--cl-white);
    -webkit-box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.type-three .CR-item-shareholder .view {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.type-three .CR-item-shareholder .thumb--box {
    position: relative;
    background: var(--cl-gray);
    aspect-ratio: 4/3;
}

.type-three .CR-item-shareholder .thumb--box img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}

.type-three .CR-item-shareholder .cont--box {
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.type-three .CR-item-shareholder .date--box {
    width: 5.625rem  /* 90/16 */;
    min-width: 5.625rem  /* 90/16 */;
    height: 5.625rem  /* 90/16 */;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.type-three .CR-item-shareholder .date--box * {
    color: var(--cl-sp-gray);
    line-height: normal;
    text-align: center;
    display: block;
}

.type-three .CR-item-shareholder .date--box b {
    font-size: 2.625rem  /* 42/16 */;
    font-weight: 700;
    line-height: 2.5rem  /* 40/16 */;
    text-align: center;
}

.type-three .CR-item-shareholder .date--box p {
    font-size: 0.8125rem  /* 13/16 */;
    font-weight: 400;
}

.type-three .CR-item-shareholder .heading-title {
    color: var(--cl-sp-gray);
    font-size: 1rem  /* 16/16 */;
    font-style: normal;
    font-weight: 400;
    line-height: 1.25rem  /* 20/16 */;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    max-height: 2.5rem  /* 40/16 */;
    margin-bottom: 0;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding-right: 1.25rem  /* 20/16 */;
}

.type-four .CR-item-shareholder {
    width: 33.33%;
    padding: 2.5rem  /* 40/16 */;
}

.type-four .CR-item-shareholder .wrap {
    border-radius: 0.3125rem  /* 5/16 */;
    background: transparent;
    overflow: hidden;
}

.type-four .CR-item-shareholder .view {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.type-four .CR-item-shareholder .thumb--box {
    position: relative;
    background: var(--cl-gray);
    aspect-ratio: 3/4;
    border: 1px solid var(--cl-gray);
}

.type-four .CR-item-shareholder .thumb--box img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}

.type-four .CR-item-shareholder .cont--box {
    padding: 1.875rem  /* 30/16 */ 0 1.25rem  /* 20/16 */;
    border-bottom: 1px solid var(--cl-black);
}

.type-four .CR-item-shareholder .heading-title {
    color: var(--cl-sp-gray);
    font-size: 1.25rem  /* 20/16 */;
    font-style: normal;
    font-weight: 400;
    line-height: 1.25rem  /* 20/16 */;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    max-height: 1.25rem  /* 20/16 */;
    margin-bottom: 0;
}

/**================== POPUP ALL PAGE ==================**/
#CR-popup-all-page .box {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    position: relative;
    width: 80%;
    max-width: 27.5rem /* 440/16 */;
    max-height: 100%;
    padding: 0;
    border-radius: 0;
    background: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
    overflow: unset;
    backdrop-filter: unset !important;
}

#CR-popup-all-page .box a {
    outline: none !important;
}

#CR-popup-all-page .CR-pop-all-page-img {
    display: block;
    width: 100%;
    overflow: hidden;
    height: auto;
}

#CR-popup-all-page .CR-close-popup-btn svg {
    width: auto;
    height: 50%;
}

#CR-popup-all-page .CR-close-popup-btn {
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 1.875rem /* 30/16 */;
    height: 1.875rem /* 30/16 */;
    background: var(--cl-white);
    position: absolute;
    top: -0.9375rem /* -15/16 */;
    right: -0.9375rem /* -15/16 */;
    z-index: 2;
}

/**================== SEARCH PAGE ==================**/
.CR-search-products-page .heading--box .heading-title {
    font-size: 1.375rem /* 22/16 */;
    line-height: normal;
    font-weight: 500;
    text-align: center;
    display: block;
    margin: 0 auto;
    text-transform: uppercase;
}

.CR-search-products-page .heading--box .heading-title:after {
    content: '';
    background: #bfbfbf;
    width: 7%;
    height: 0.125rem /* 2/16 */;
    margin: 1.25rem /* 20/16 */ auto 2.5rem  /* 40/16 */;
    display: block;
}

#CR-search-page .main--sec {
    padding: 3.125rem  /* 50/16 */ 0 0;
}

#CR-search-page .form--box {
    width: 37.5rem  /* 600/16 */;
    margin: 2.1875rem /* 35/16 */ auto 4.375rem /* 70/16 */;
}

#CR-search-page .form--box form {
    position: relative;
    background: transparent;
    border: 1px solid var(--cl-sp-gray) !important;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 0.3125rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    -webkit-box-shadow: 0px 4px 40px transparent;
    box-shadow: 0px 4px 40px transparent;
    -webkit-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
}

#CR-search-page .form--box form input::placeholder {
    color: var(--cl-sp-gray);
}

#CR-search-page .form--box form input {
    width: 100%;
    height: 3.125rem  /* 50/16 */;
    padding: 0 1.625rem /* 26/16 */;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    font-size: 1rem  /* 16/16 */;
    font-weight: 500;
    font-style: normal;
    letter-spacing: normal;
    line-height: normal;
    text-align: left;
    background: transparent;
}

#CR-search-page .form--box form button {
    outline: none !important;
    cursor: pointer;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    border: none !important;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    height: 100%;
    right: 0;
    background: none;
    padding: 0 0.9375rem;
    font-size: 1.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: var(--cl-black);
}

#CR-search-page .filter-results--box {
    margin-bottom: 2.5rem  /* 40/16 */;
}

#CR-search-page .filter-results--box .results--box p {
    font-style: normal;
    font-weight: 400;
    font-size: 1.25rem /* 20/16 */;
    line-height: normal;
    color: var(--cl-black);
}

#CR-search-page .filter--box ul {
    gap: 0.625rem  /* 10/16 */;
}

#CR-search-page .filter--box a:hover,
#CR-search-page .filter--box a.active {
    background: var(--cl-sp-gray);
    color: var(--cl-white);
}

#CR-search-page .filter--box a {
    color: var(--cl-sp-gray);
    font-size: 1.125rem  /* 18/16 */;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    padding: 0 1.875rem  /* 30/16 */;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    border-radius: 0.1875rem  /* 3/16 */;
    border: 1px solid var(--cl-sp-gray);
    background: var(--cl-white);
    height: 3.125rem  /* 50/16 */;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

#CR-search-page .CR-item-news {
    width: 33.33%;
}

#CR-search-page .CR-item-responsibility .desc--box {
    display: none;
}

/**================== PROJECT PAGE ==================**/
#CR-project-page .main--box{
    padding: 6.25rem  /* 100/16 */ 0;
}

#CR-project-page .filter--box {
    gap: 1.625rem  /* 26/16 */;
    margin: 1.875rem  /* 30/16 */ 0 4.375rem  /* 70/16 */;
    position: relative;
    z-index: 2;
}

#CR-project-page .filter--box .item:first-child {
    width: 20rem  /* 320/16 */;
    min-width: 20rem  /* 320/16 */;
}

#CR-project-page .filter--box .item {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 0%;
    flex: 1 0 0%;
    -webkit-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
}

#CR-project-page .filter--box .item.hide {
    opacity: 0.5;
    cursor: no-drop;
}

#CR-project-page .filter--box .item.hide .CR-chosen-item {
    pointer-events: none;
}

#CR-project-page .filter--box form {
    position: relative;
    background: var(--cl-white);
    border: 1px solid var(--cl-sp-gray) !important;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 0.3125rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    margin: 0;
    overflow: hidden;
    -webkit-box-shadow: 0px 4px 40px transparent;
    box-shadow: 0px 4px 40px transparent;
    -webkit-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
}

#CR-project-page .filter--box form input::placeholder {
    color: var(--cl-sp-gray);
}

#CR-project-page .filter--box form input {
    width: 100%;
    height: 2.6875rem  /* 43/16 */;
    padding: 0 1.625rem /* 26/16 */;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    font-size: 1rem  /* 16/16 */;
    font-weight: 500;
    font-style: normal;
    letter-spacing: normal;
    line-height: normal;
    text-align: left;
}

#CR-project-page .filter--box form button {
    outline: none !important;
    cursor: pointer;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    border: none !important;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    height: 100%;
    right: 0;
    background: none;
    padding: 0 0.9375rem;
    font-size: 1.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.CR-project-list--box {
    margin: -0.625rem  /* -10/16 */;
}

.CR-item-project {
    width: 33.33%;
    padding: 0.625rem  /* 10/16 */;
}

.CR-item-project .wrap {
    position: relative;
    border-radius: 0.3125rem  /* 5/16 */;
}

.CR-item-project .thumb--box {
    position: relative;
    aspect-ratio: 1/1.15;
    overflow: hidden;
}

.CR-item-project .thumb--box:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 50%;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.00)), to(#000));
    background: -o-linear-gradient(top, rgba(0, 0, 0, 0.00) 0%, #000 100%);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, #000 100%);
}

.CR-item-project .thumb--box img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.CR-item-project .cont--box {
    padding: 1.625rem  /* 26/16 */;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.CR-item-project .terms--box {
    position: relative;
    z-index: 3;
    color: var(--cl-white);
}

.CR-item-project .terms--box a:hover {
    color: var(--cl-main);
}

.CR-item-project .terms--box a {
    color: var(--cl-white);
    font-size: 1rem  /* 16/16 */;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.CR-item-project .heading-title {
    color: var(--cl-main);
    font-size: 1.5625rem  /* 25/16 */;
    font-style: normal;
    font-weight: 700;
    line-height: 1.75rem  /* 28/16 */;
    text-transform: uppercase;
    margin: 0;
}

.CR-item-project .view {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

/**================== PROJECT DETAIL PAGE ==================**/
#CR-project-detail-page .CR-banner--group {
    z-index: 7;
}

#CR-project-detail-page .overview--sec {
    padding: 5rem  /* 80/16 */ 0 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
    background: linear-gradient(180deg, #F4FDFF 0%, #F4FDFF 66.67%, #F4FDFF 66.67%);
}

#CR-project-detail-page .overview--sec .image--box {
    z-index: -2;
    position: relative;
    margin-top: -25%;
}

#CR-project-detail-page .overview--sec .image--box:before {
    content: '';
    background: linear-gradient(180deg, #F4FDFF 0%, #F4FDFF 66.67%, rgba(244, 253, 255, 0.00) 100%);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 50%;
    z-index: 1;
}

#CR-project-detail-page .overview--sec .image--box img {
    width: 100%;
    height: auto;
}

#CR-project-detail-page .overview--sec .head--box {
    margin-bottom: 3.75rem  /* 60/16 */;
}

#CR-project-detail-page .overview--sec .list--box {
    margin: -2.1875rem  /* -35/16 */;
    justify-content: center;
}

#CR-project-detail-page .overview--sec .list--box .item {
    width: 25%;
    padding: 2.1875rem  /* 35/16 */;
}

#CR-project-detail-page .overview--sec .list--box .item .wrap {
    position: relative;
}

#CR-project-detail-page .overview--sec .list--box .item .wrap:hover .icon--box {
    webkit-transform: rotateY(360deg) scale(0.85);
    transform: rotateY(360deg) scale(0.85);
}

#CR-project-detail-page .overview--sec .list--box .item .icon--box {
    position: relative;
    width: 6.25rem  /* 100/16 */;
    height: 6.25rem  /* 100/16 */;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: rgba(247, 148, 29, 0.3);
    z-index: 1;
    margin: 0 auto 1.25rem  /* 20/16 */;
    border-radius: 50%;
    -webkit-transition: 1s ease-in-out;
    -o-transition: 1s ease-in-out;
    transition: 1s ease-in-out;
}

#CR-project-detail-page .overview--sec .list--box .item .icon--box:before {
    content: '';
    background: var(--cl-main);
    position: absolute;
    top: 0.5rem  /* 8/16 */;
    left: 0.5rem  /* 8/16 */;
    right: 0.5rem  /* 8/16 */;
    bottom: 0.5rem  /* 8/16 */;
    z-index: -1;
    border-radius: 50%;
}

#CR-project-detail-page .overview--sec .list--box .item .icon--box img {
    width: auto;
    height: 50%;
    -o-object-fit: contain;
    object-fit: contain;
    max-width: 90%;
}

#CR-project-detail-page .overview--sec .list--box .item .cont--box {
    text-align: center;
}

#CR-project-detail-page .overview--sec .list--box .item .heading-title {
    color: var(--cl-sp-gray);
    font-size: 1.125rem  /* 18/16 */;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 0 auto 0.3125rem  /* 5/16 */;
}

#CR-project-detail-page .overview--sec .list--box .item .desc {
    color: var(--cl-black);
    font-size: 1.125rem  /* 18/16 */;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5625rem  /* 25/16 */;
}

#CR-project-detail-page .overview--sec .list--box .item .desc b {
    font-weight: 600;
}

#CR-project-detail-page .location--sec {
    background: -webkit-gradient(linear, left top, left bottom, from(#FFF6EC), to(#FFE4C2));
    background: -o-linear-gradient(top, #FFF6EC 0%, #FFE4C2 100%);
    background: linear-gradient(180deg, #FFF6EC 0%, #FFE4C2 100%);
}

#CR-project-detail-page .location--sec .col-left {
    padding-left: calc((100% - 1304px) / 2) !important;
}

#CR-project-detail-page .location--sec .content--box {
    padding: 2.5rem  /* 40/16 */ 3.125rem  /* 50/16 */ 2.5rem  /* 40/16 */ 0;
}

#CR-project-detail-page .location--sec .image--box {
    width: 100%;
    mix-blend-mode: darken;
    position: relative;
}

#CR-project-detail-page .location--sec .image--box:before {
    content: '';
    background: -webkit-gradient(linear, left top, right top, from(#FFF), color-stop(50%, rgba(255, 255, 255, 0.90)), to(rgba(255, 255, 255, 0.00)));
    background: -o-linear-gradient(left, #FFF 0%, rgba(255, 255, 255, 0.90)50%, rgba(255, 255, 255, 0.00) 100%);
    background: linear-gradient(90deg, #FFF 0%, rgba(255, 255, 255, 0.90)50%, rgba(255, 255, 255, 0.00) 100%);
    position: absolute;
    top: 0;
    left: 0;
    width: 10%;
    height: 100%;
}

#CR-project-detail-page .location--sec .image--box img {
    width: 100%;
    height: auto;
}

#CR-project-detail-page .utilities--sec {
    position: relative;
    z-index: 1;
}

#CR-project-detail-page .utilities--sec:after {
    content: '';
    background: -webkit-gradient(linear, left top, left bottom, color-stop(16.67%, #FFF), color-stop(68.23%, rgba(255, 255, 255, 0.86)), to(rgba(255, 255, 255, 0.00)));
    background: -o-linear-gradient(top, #FFF 16.67%, rgba(255, 255, 255, 0.86) 68.23%, rgba(255, 255, 255, 0.00) 100%);
    background: linear-gradient(180deg, #FFF 16.67%, rgba(255, 255, 255, 0.86) 68.23%, rgba(255, 255, 255, 0.00) 100%);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    z-index: -1;
}

#CR-project-detail-page .utilities--sec .head--box {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 5.625rem  /* 90/16 */ 0 0;
    z-index: 1;
}

#CR-project-detail-page .utilities--sec .head--box .CR-heading-title--group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

#CR-project-detail-page .utilities--sec .head--box .CR-heading-title--group .top-head--box {
    width: 40%;
    min-width: 40%;
}

#CR-project-detail-page .utilities--sec .head--box .CR-heading-title--group .desc {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding-left: 1rem;
}

#CR-project-detail-page .utilities--sec .view-img--box {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    z-index: -2;
}

#CR-project-detail-page .utilities--sec .view-img--box:after {
    content: '';
    background: -webkit-gradient(linear, left bottom, left top, from(#000), to(rgba(0, 0, 0, 0.00)));
    background: -o-linear-gradient(bottom, #000 0%, rgba(0, 0, 0, 0.00) 100%);
    background: linear-gradient(0deg, #000 0%, rgba(0, 0, 0, 0.00) 100%);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
}

#CR-project-detail-page .utilities--sec .view-img--box img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    -webkit-transition: opacity 0.5s;
    -o-transition: opacity 0.5s;
    transition: opacity 0.5s;
}

#CR-project-detail-page .utilities--sec .list--box {
    position: absolute;
    bottom: 3.125rem  /* 50/16 */;
    left: 0;
    right: 0;
}

#CR-project-detail-page .utilities--sec .list--box ul {
    gap: 1.5625rem  /* 25/16 */;
}

#CR-project-detail-page .utilities--sec .list--box a:hover,
#CR-project-detail-page .utilities--sec .list--box a.active {
    background: var(--cl-white);
    color: var(--cl-sp-gray);
}

#CR-project-detail-page .utilities--sec .list--box a {
    color: var(--cl-white);
    font-size: 1.125rem  /* 18/16 */;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    padding: 0 1.25rem  /* 20/16 */;
    height: 3.125rem  /* 50/16 */;
    display: flex;
    align-items: center;
    justify-content: center;
    width: max-content;
    border-radius: 0.1875rem  /* 3/16 */;
    border: 1px solid var(--cl-white);
}

#CR-project-detail-page .ground--sec {
    padding: 6.25rem  /* 100/16 */ 0;
}

#CR-project-detail-page .tabs--box {
    margin: 2.1875rem  /* 35/16 */ 0 0;
}

#CR-project-detail-page .tabs--box .nav-tabs {
    margin-bottom: 0;
    border: none;
    gap: 1.25rem  /* 20/16 */;
}

#CR-project-detail-page .tabs--box .nav-tabs .nav-item {
    padding: 0;
}

#CR-project-detail-page .tabs--box .nav-tabs .nav-item:not(:last-child) {
    margin-right: 1px;
}

#CR-project-detail-page .tabs--box .nav-tabs button.active {
    color: var(--cl-white);
    background-color: var(--cl-sp-gray);
}

#CR-project-detail-page .tabs--box .nav-tabs button {
    padding: 0 1.25rem /* 20/16 */;
    height: 3.125rem  /* 50/16 */;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    margin: 0;
    border: none;
    background-color: var(--cl-white);
    font-size: 1.125rem  /* 18/16 */;
    font-weight: 600;
    text-transform: uppercase;
    line-height: normal;
    color: var(--cl-sp-gray);
    -webkit-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 0.1875rem  /* 3/16 */;
    border: 1px solid var(--cl-sp-gray);
}

#CR-project-detail-page .tabs--box .tab-content {
    margin: 2.1875rem  /* 35/16 */ 0 0;
    padding: 0;
    border-radius: 0.625rem  /* 10/16 */;
    background: var(--cl-white);
    -webkit-box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.05);
}

#CR-project-detail-page .tabs--box .tab-content > .active.tab-pane {
    height: auto;
    pointer-events: auto;
}

#CR-project-detail-page .tabs--box .tab-content > .tab-pane {
    display: block;
    height: 0;
    pointer-events: none;
}

#CR-project-detail-page .ground--sec .tabs--box .tab-content .left--box {
    width: 22.5rem /* 360/16 */;
    background: var(--cl-main);
    border-radius: 0.625rem /* 10/16 */;
    padding: 3.125rem /* 50/16 */;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

#CR-project-detail-page .ground--sec .tabs--box .tab-content .right--box {
    width: calc(100% - 22.5rem  /* 360/16 */);
    padding: 0 8.125rem  /* 130/16 */;
}

#CR-project-detail-page .ground--sec .tabs--box .tab-content .heading-title {
    color: var(--cl-white);
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 1rem  /* 16/16 */;
    display: block;
    word-wrap: break-word;
}

#CR-project-detail-page .ground--sec .tabs--box .tab-content .left--box .inner--box {
    width: 100%;
}

#CR-project-detail-page .ground--sec .tabs--box .tab-content .sub-list--box {
    list-style-type: disc;
    list-style-position: inside;
    color: var(--cl-white);
    max-height: 18.125rem  /* 290/16 */;
    overflow-y: auto;
}

#CR-project-detail-page .ground--sec .tabs--box .tab-content .sub-list--box::-webkit-scrollbar {
    width: 1px;
    border-radius: 2px;
    background-color: #E4E4E4;
}

#CR-project-detail-page .ground--sec .tabs--box .tab-content .sub-list--box::-webkit-scrollbar-track {
    border: none;
}

#CR-project-detail-page .ground--sec .tabs--box .tab-content .sub-list--box::-webkit-scrollbar-thumb {
    background-color: var(--cl-white);
    outline: 1px solid var(--cl-white);
}

#CR-project-detail-page .ground--sec .tabs--box .tab-content .sub-list--box li:not(:last-child) {
    margin-bottom: 0.9375rem  /* 15/16 */;
}

#CR-project-detail-page .ground--sec .tabs--box .tab-content .sub-list--box li {
    color: var(--cl-white);
    font-size: 1rem  /* 16/16 */;
    font-style: normal;
    font-weight: 400;
    line-height: 1.375rem  /* 22/16 */;
}

#CR-project-detail-page .ground--sec .tabs--box .tab-content .gallery--box .CR-custom-arrow-full.left {
    left: -5.625rem  /* -90/16 */;
}

#CR-project-detail-page .ground--sec .tabs--box .tab-content .gallery--box .CR-custom-arrow-full.right {
    right: -5.625rem  /* -90/16 */;
}

#CR-project-detail-page .ground--sec .tabs--box .tab-content .gallery--box .item {
    width: 100%;
}

#CR-project-detail-page .ground--sec .tabs--box .tab-content .gallery--box .item .wrap {
    aspect-ratio: 4/3;
    position: relative;
    border-radius: 0.625rem  /* 10/16 */;
    overflow: hidden;
    background: var(--cl-white);
}

#CR-project-detail-page .ground--sec .tabs--box .tab-content .gallery--box .item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

#CR-project-detail-page .news--sec {
    padding: 7.5rem  /* 120/16 */ 0;
    background: var(--cl-sp-gray);
    position: relative;
    z-index: 2;
    overflow: hidden;
}

#CR-project-detail-page .news--sec .CR-heading-title--group .sub-title {
    color: var(--cl-white);
}

#CR-project-detail-page .news--sec .head--box {
    margin-bottom: 3.125rem /* 50/16 */;
}

#CR-project-detail-page .news--sec .svg--box {
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
}

#CR-project-detail-page .news--sec .svg--box svg {
    width: auto;
    height: 62.5rem /* 1000/16 */;
    -o-object-fit: contain;
    object-fit: contain;
}

#CR-project-detail-page .news--sec .arrow-slider--box {
    gap: 0.875rem /* 14/16 */;
}

#CR-project-detail-page .news--sec .CR-custom-arrow {
    position: initial !important;
    width: auto !important;
    height: auto !important;
    border: none !important;
    background: transparent;
    transform: unset;
}

#CR-project-detail-page .news--sec .CR-custom-arrow .icon {
    border-color: var(--cl-white);
}

#CR-project-detail-page .news--sec .CR-custom-arrow svg {
    fill: var(--cl-white);
}

#CR-project-detail-page .library--sec {
    padding: 6.25rem  /* 100/16 */ 0;
}

#CR-project-detail-page .library--sec .tabs--box .tab-content {
    box-shadow: none;
}

#CR-project-detail-page .library--sec .CR-slider-library-pj {

}

#CR-project-detail-page .library--sec .CR-slider-library-pj .item {
    width: 100%;
}

#CR-project-detail-page .library--sec .CR-slider-library-pj .item .wrap {
    position: relative;
    aspect-ratio: 16/9;
    border-radius: 0;
    overflow: hidden;
    -webkit-box-shadow: 0px 9px 30px 0px transparent;
    box-shadow: 0px 9px 30px 0px transparent;
}

#CR-project-detail-page .library--sec .CR-slider-library-pj .item .wrap a {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

#CR-project-detail-page .library--sec .CR-slider-library-pj .item img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    z-index: -1;
}

#CR-project-detail-page .library--sec .CR-slider-library-pj .item svg {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    width: 3.125rem  /* 50/16 */;
    height: 3.125rem  /* 50/16 */;
    -webkit-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
}

#CR-project-detail-page .library--sec .CR-slider-library-pj .item a:hover svg {
    -webkit-transform: translate(-50%,-50%) scale(1.1);
    -ms-transform: translate(-50%,-50%) scale(1.1);
    transform: translate(-50%,-50%) scale(1.1);
}

#CR-project-detail-page .library--sec .CR-slider-library-pj .slick-slide.slick-current {
    -webkit-transform: scale(1.35);
    -ms-transform: scale(1.35);
    transform: scale(1.35);
    position: relative;
    z-index: 1;
}

#CR-project-detail-page .library--sec .CR-slider-library-pj .slick-slide {
    text-align: center;
    transition: transform 1s ease-in-out;
}

#CR-project-detail-page .library--sec .CR-slider-library-pj .slick-slide.slick-current .wrap {
    -webkit-box-shadow: 0px 9px 30px 0px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 9px 30px 0px rgba(0, 0, 0, 0.15);
}

#CR-project-detail-page .library--sec .CR-slider-library-pj .slick-track {
    padding: 3.125rem /* 50/16 */ 0;
}

#CR-project-detail-page .library--sec .CR-slider-library-pj .slick-slide:not(.slick-current) {
    filter: brightness(0.5);
}

#CR-project-detail-page .library--sec .CR-slider-library-pj .CR-custom-arrow-full.left {
    left: -5rem  /* -80/16 */;
}

#CR-project-detail-page .library--sec .CR-slider-library-pj .CR-custom-arrow-full.right {
    right: -5rem  /* -80/16 */;
}

#CR-project-detail-page .contact--sec {
    padding: 3.75rem  /* 60/16 */ 0  8.125rem  /* 130/16 */;
}

#CR-project-detail-page .contact--sec .main--box {
    background: var(--cl-gray);
    width: 100%;
    margin: 0 auto;
}

#CR-project-detail-page .contact--sec .CR-heading-title--group {
    margin-bottom: 2.5rem  /* 40/16 */;
}

#CR-project-detail-page .contact--sec .image--box {
    position: relative;
    width: 40%;
}

#CR-project-detail-page .contact--sec .image--box img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

#CR-project-detail-page .contact--sec .form--box {
    width: 60%;
    padding: 4.375rem  /* 70/16 */ 5.625rem  /* 90/16 */;
}

#CR-project-detail-page .sticky-action-project--box {
    top: 50%;
    z-index: 6;
    right: 0;
    position: fixed;
    -webkit-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
}

#CR-project-detail-page .sticky-action-project--box .item--box {
    gap: 0.375rem /* 6/16 */;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
}

#CR-project-detail-page .sticky-action-project--box a {
    width: 4.625rem  /* 74/16 */;
    height: 4.375rem  /* 70/16 */;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 0.3125rem  /* 5/16 */ 0px 0px 0.3125rem  /* 5/16 */;
    box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.05);
    color: var(--cl-white);
    font-size: 2.5rem  /* 40/16 */;
}

#CR-project-detail-page .sticky-action-project--box .logo img {
    width: auto;
    height: 80%;
    max-width: 80%;
    -o-object-fit: contain;
    object-fit: contain;
}

#CR-project-detail-page .sticky-action-project--box .logo a {
    background: linear-gradient(180deg, #E2BB83 0%, #B68C54 100%);
}

/**================== RESPONSIVE ==================**/
@media (min-width: 1025px) {
    html {
        font-size: 0.75rem;
    }
}

@media (min-width: 1200px) {
    html {
        font-size: 0.8rem;
    }
}

@media (min-width: 1440px) {

    html {
        font-size: 1rem;
    }
}

@media (min-width: 1600px) {
    html {
        font-size: 1rem;
    }
}

@media only screen and (max-width: 1440px) {
    body .CR-container {
        padding: 0 1rem /* 16/16 */;
    }

    #CR-project-detail-page .location--sec .col-left {
        padding-left: calc((100% - 1124px) / 2) !important;
    }

    #CR-home-page .banner--sec .CR-counter-slick-slider--box {
        left: calc((100% - 1124px)/2);
    }

    #CR-home-page .banner--sec .CR-custom-dots-line-fix .slick-dots {
        left: calc((100% - 924px)/2);
    }
}

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

}

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

    #CR-header .main-merged-menu > ul > li:before {
        display: none;
    }

    #CR-header .CR-main-search-mb,
    #CR-header .CR-main-nav-mb {
        padding: 0 1rem  /* 16/16 */ !important;
    }

    #CR-header .CR-main-search-mb .form--box,
    #CR-header .nav-mb--content {
        width: 60%;
        margin: 0 auto;
    }

    #CR-header .main-merged-menu .CR-sub-menu > li,
    #CR-header .main-merged-menu > ul > li {
        padding: 0.9375rem  /* 15/16 */ 0 !important;
    }

    #CR-header .main-merged-menu a {
        font-size: 1.875rem  /* 30/16 */;
        display: block;
        text-align: center;
        width: 100%;
    }

    #CR-header .CR-main-nav-mb .socials--box {
        padding-top: 1.875rem  /* 30/16 */;
        margin-top: 1.875rem  /* 30/16 */;
    }

    #CR-header .CR-main-nav-mb .socials--box ul {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    #CR-header .CR-ani-svg--box {
        bottom: unset;
        top: 50%;
        right: unset;
        left: 50%;
        -webkit-transform: translate(-50%,-50%);
        -ms-transform: translate(-50%,-50%);
        transform: translate(-50%,-50%);
        opacity: 0.5;
    }

    #CR-header .main--box {
        bottom: unset;
        right: 0;
        width: 100%;
        height: auto;
        -webkit-box-orient: unset;
        -webkit-box-direction: unset;
        -ms-flex-direction: unset;
        flex-direction: unset;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        padding: 1rem;
    }

    #CR-header .main--box > * {
        width: 33.33%;
    }

    #CR-header .logo--box {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        height: 2.5rem  /* 40/16 */;
    }
    #CR-header .logo--box a {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%;
    }

    #CR-header .logo--box img,
    #CR-header .logo--box svg {
        height: 90%;
        width: auto;
        max-width: 100%;
    }

    #CR-header .left--box {
        justify-content: flex-start;
    }

    #CR-header .right--box {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
    }

    #CR-header .CR-toggle-search,
    #CR-header .CR-toggle-menu {
        width: 2.5rem  /* 40/16 */;
    }

    #CR-header .search--box {
        margin-right: 1.5625rem /* 25/16 */;
        padding-right: 1.5625rem /* 25/16 */;
        margin-bottom: 0;
        padding-bottom: 0;
    }

    #CR-header .search--box:after {
        width: 1px;
        height: 1.625rem;
        bottom: unset;
        left: unset;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
    }


    #CR-project-detail-page .location--sec .col-left {
        padding-left: calc((100% - 944px) / 2) !important;
    }

    #CR-home-page .banner--sec .CR-counter-slick-slider--box {
        left: calc((100% - 944px)/2) ;
    }

    #CR-home-page .banner--sec .CR-custom-dots-line-fix .slick-dots {
        left: calc((100% - 744px)/2);
    }

    #CR-news-page .intro--sec .hot-news--list .right--box .CR-item-news .heading-title {
        -webkit-line-clamp: 1;
        line-clamp: 1;
        max-height: 1.5rem  /* 24/16 */;
    }

    #CR-shareholder-page .terms--sec ul {
        -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
        justify-content: flex-start !important;
        max-width: 100%;
        overflow-x: auto;
    }

    #CR-project-page .filter--box {
        gap: 0;
        margin-left: -0.5rem;
        margin-right: -0.5rem;
    }

    #CR-project-page .filter--box .item {
        padding: 0.5rem;
    }

    #CR-project-page .filter--box .item:first-child {
        width: 100%;
        min-width: 100%;
    }

    #CR-project-page .filter--box .item {
        -webkit-box-flex: unset;
        -ms-flex: unset;
        flex: unset;
        width: 50%;
    }
}

@media only screen and (max-width: 1024px) {
    html {
        font-size: 0.95rem;
    }

    .CR-main-wrap section{
        overflow: hidden !important;
    }

    .CR-heading-title--group .sub-title {
        font-size: 1rem  /* 16/16 */;
    }

    .CR-heading-title--group .heading-title {
        font-size: 2.5rem  /* 40/16 */;
    }

    #CR-home-page .intro--sec .main--box {
        width: 100%;
    }

    #CR-home-page .intro--sec .video--box svg {
        width: auto;
        height: 40%;
    }

    #CR-responsibility-detail-page .main--box {
        padding-right: 0;
    }

    .CR-news-page .CR-news-detail-main .main--box .heading-title {
        font-size: 1.875rem  /* 30/16 */;
        line-height: normal;
    }

    #CR-news-page .intro--sec .hot-news--list {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    #CR-news-page .intro--sec .hot-news--list .left--box,
    #CR-news-page .intro--sec .hot-news--list .right--box {
        width: 100%;
    }

    #CR-news-page .intro--sec .hot-news--list .left--box .CR-item-news .wrap {
        padding-top: var(--ratio-16-9);
    }

    #CR-news-page .intro--sec .hot-news--list .left--box .CR-item-news .heading-title {
        font-size: 1.25rem /* 20/16 */;
        line-height: 1.5rem /* 24/16 */;
        max-height: 3rem  /* 48/16 */;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        height: auto;
    }

    #CR-news-page .intro--sec .hot-news--list .right--box .CR-item-news {
        height: auto;
    }

    #CR-news-page .intro--sec .hot-news--list .right--box .CR-item-news .thumb--box {
        height: auto;
        aspect-ratio: 4/3;
    }

    #CR-news-page .intro--sec .hot-news--list .right--box .CR-item-news .heading-title {
        -webkit-line-clamp: 2;
        line-clamp: 2;
        font-size: 1.25rem /* 20/16 */;
        line-height: 1.5rem /* 24/16 */;
        max-height: 3rem  /* 48/16 */;
    }

    #CR-news-page .intro--sec {
        padding-bottom: 3.75rem /* 60/16 */;
    }

    #CR-news-detail-page .CR-news-detail-main .main--box {
        width: 100%;
    }

    .CR-news-page .CR-news-detail-main .view-more--box a {
        font-size: 0.875rem  /* 14/16 */;
    }

    .CR-news-page .CR-news-detail-bottom {
        padding-top: 0;
    }
}

@media only screen and (max-width: 992px) {
    #CR-header.CR-header-v2 .slogan--box {
        left: 11.25rem  /* 180/16 */;
    }

    #CR-header.CR-header-v2 .slogan--box p {
        font-size: 0.875rem  /* 14/16 */;
    }

    /*#CR-header.CR-header-v2 .bg--box {*/
    /*    background: var(--cl-main);*/
    /*}*/

    /*#CR-header.CR-header-v2 .main--box {*/
    /*    background: -webkit-linear-gradient(90deg, rgba(255, 255, 255, 0.3) 0%, rgba(246, 141, 42, 1) 100%);*/
    /*    background: linear-gradient(90deg, rgba(255, 255, 255, 0.3) 0%, rgba(246, 141, 42, 1) 100%);*/
    /*}*/

    #CR-header.CR-header-v2 .logo--box {
        height: auto;
    }

    #CR-header.CR-header-v2 .logo--box img,
    #CR-header.CR-header-v2 .logo--box svg {
        height: 3.4375rem  /* 55/16 */;
    }

    #CR-header.CR-header-v2 .main--box::before {
        width: 17.5rem  /* 280/16 */;
        height: 6.25rem  /* 100/16 */;
    }

    #CR-header.CR-header-v2 .main--box::after {
        width: 20rem  /* 320/16 */;
        height: 3.5rem  /* 56/16 */;
    }

    #CR-header .search--box {
        margin-right: 0.625rem  /* 10/16 */;
        padding-right: 0.625rem  /* 10/16 */;
    }

    #CR-header .CR-main-search-mb .form--box,
    #CR-header .nav-mb--content {
        width: 100%;
    }

    #CR-header .main-merged-menu a {
        font-size: 1.25rem  /* 20/16 */;
    }

    #CR-footer .contact--box,
    #CR-footer .logo--box {
        margin-bottom: 1.875rem  /* 30/16 */;
    }

    #CR-footer .menu--box ul {
        -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
        justify-content: center !important;
        margin: 0.625rem  /* 10/16 */ 0 0;
    }

    #CR-footer .copyright--box p {
        text-align: center;
    }

    #CR-footer .logo--box img {
        height: 6.25rem  /* 100/16 */;
    }

    #CR-home-page .banner--sec .CR-custom-dots-line-fix .slick-dots,
    .CR-counter-slick-slider--box {
        left: 50% !important;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
        bottom: 1.875rem;
    }

    #CR-home-page .banner--sec .CR-custom-dots-line-fix .slick-dots {
        bottom: 1.5rem;
    }

    #CR-home-page .banner--sec .item .content--box {
        flex-direction: column;
    }

    #CR-home-page .banner--sec .item .info--box b {
        font-size: 2.5rem  /* 40/16 */;
    }

    #CR-home-page .banner--sec .item .info--box {
        font-size: 1.5625rem  /* 25/16 */;
        width: 100%;
        text-align: center;
        margin: 0 auto 1.25rem  /* 20/16 */;
    }

    #CR-home-page .banner--sec .item .video--box {
        width: 6.25rem  /* 100/16 */;
        height: 6.25rem  /* 100/16 */;
    }

    #CR-home-page .project--sec .CR-counter-slick-slider--box {
        transform: unset;
    }

    #CR-home-page .project--sec .CR-custom-dots-line-sp .slick-dots {
        bottom: -5.625rem;
        width: calc(100% - 10rem);
        left: 1rem;
    }

    #CR-home-page .project--se .CR-custom-dots-line-sp .slick-dots {
        width: 100%;
    }

    .CR-show-mb {
        display: block !important;
    }

    .CR-hide-mb {
        display: none !important;
    }

    body .CR-container {
        padding: 0 0.9375rem /* 15/16 */;
    }

    .CR-breadcrumb * {
        min-width: max-content;
    }

    .CR-breadcrumb {
        overflow-y: hidden;
    }

    #CR-search-page .filter--box,
    #CR-search-page .form--box {
        width: 100%;
    }

    #CR-search-page .form--box {
        margin: 1.875rem  /* 30/16 */ auto;
    }

    #CR-search-page .filter--box ul {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        width: 100%;
    }

    #CR-search-page .filter--box a {
        padding: 0 1rem;
        height: 2.5rem  /* 40/16 */;
        font-size: 0.875rem  /* 14/16 */;
    }

    #CR-search-page .filter-results--box .results--box p {
        font-size: 1rem  /* 16/16 */;
    }

    #CR-search-page .filter-results--box {
        margin-bottom: 2rem;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 1.5rem;
    }

    #CR-search-page .CR-item-news,
    .CR-item-project,
    .CR-item-news {
        width: 50%;
    }

    .CR-item-project .heading-title,
    .CR-item-news .heading-title {
        font-size: 1rem  /* 16/16 */;
    }

    .CR-banner--group .heading-title,
    .CR-heading-title--group .heading-title {
        font-size: 1.5625rem  /* 25/16 */;
    }

    #CR-home-page .core--sec .content--box {
        height: auto;
        margin: 1.25rem  /* 20/16 */ 0 0;
    }

    #CR-home-page .project--sec {
        padding: 3.75rem  /* 60/16 */ 0 6.25rem  /* 100/16 */;
    }

    #CR-home-page .shareholder--sec .head--box,
    #CR-home-page .project--sec .head--box {
        -webkit-box-align: start !important;
        -ms-flex-align: start !important;
        align-items: flex-start !important;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    #CR-home-page .shareholder--sec .filter--box,
    #CR-home-page .project--sec .action--box {
        margin-top: 1.25rem /* 20/16 */;
        width: 100%;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    #CR-home-page .news--sec .filter--box ul {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    #CR-news-page .list--sec .filter--box a,
    #CR-home-page .news--sec .filter--box a {
        font-size: 0.875rem  /* 14/16 */;
        height: 2.5rem  /* 40/16 */;
        padding: 0 1rem;
    }

    #CR-project-page .main--box {
        padding-bottom: 0 !important;
    }

    #CR-project-detail-page .overview--sec {
        padding-top: 2.5rem  /* 40/16 */;
    }

    #CR-project-detail-page .ground--sec,
    #CR-project-detail-page .contact--sec,
    #CR-project-detail-page .library--sec,
    #CR-project-detail-page .news--sec,
    #CR-project-page .main--box,
    #CR-shareholder-page .list--sec,
    #CR-recruitment-page .info--sec,
    #CR-contact-page .form--sec,
    #CR-contact-page .intro--sec,
    .CR-prize-op--sec,
    .CR-partner-op--sec,
    #CR-home-page .shareholder--sec,
    #CR-home-page .news--sec {
        padding: 3.125rem /* 50/16 */ 0;
    }

    #CR-home-page .shareholder--sec .main--box {
        width: 100%;
    }

    .CR-partner-op--sec .list--box .item .wrap {
        height: auto;
        aspect-ratio: 1/1;
    }

    .CR-prize-op--sec .list--box {
        margin-left: -1.25rem  /* -20/16 */;
        margin-right: -1.25rem  /* -20/16 */;
    }

    .CR-prize-op--sec .item {
        padding: 0 1.25rem  /* 20/16 */;
    }

    #CR-contact-page .intro--sec .list--box {
        width: 100%;
    }

    #CR-project-detail-page .contact--sec .main--box > div,
    #CR-contact-page .form--sec .main--box > div {
        width: 100%;
    }

    #CR-project-detail-page .contact--sec .image--box,
    #CR-contact-page .form--sec .image--box {
        aspect-ratio: 16/9;
    }

    #CR-project-detail-page .contact--sec .form--box,
    #CR-contact-page .form--sec .form--box {
        padding: 1.875rem  /* 30/16 */;
    }

    #CR-contact-page .map--sec .acf-map {
        height: auto;
        aspect-ratio: 16/9;
    }

    #CR-recruitment-page .left--box {
        padding-right: 0;
    }

    #CR-recruitment-page .right--box {
        padding-left: 0;
        margin: 1.875rem  /* 30/16 */ 0 0;
    }

    #CR-recruitment-page .list--box .item:not(:last-child) {
        margin-bottom: 2rem;
    }

    #CR-recruitment-page .info--sec .list--box .item .heading-title {
        font-size: 1.5rem  /* 24/16 */;
    }

    #CR-corporate-culture-page .intro--sec .CR-heading-title--group {
        width: 100%;
        padding: 0 1rem;
    }

    #CR-corporate-culture-page .main-list--sec .item:not(:last-child) {
        margin-bottom: 7.5rem  /* 120/16 */;
    }

    #CR-corporate-culture-page .main-list--sec .item .wrap > div {
        padding: 0 1rem;
    }

    #CR-corporate-culture-page .main-list--sec .item .top--box .num {
        font-size: 3.125rem  /* 50/16 */;
    }

    #CR-corporate-culture-page .main-list--sec .item .top--box .heading-title {
        font-size: 1.875rem  /* 30/16 */;
    }

    #CR-responsibility-page .CR-item-responsibility:first-child .wrap {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    #CR-responsibility-page .CR-item-responsibility:first-child .wrap > div {
        width: 100%;
    }

    #CR-responsibility-page .CR-item-responsibility:first-child .cont--box {
        padding: 1.875rem  /* 30/16 */;
    }

    #CR-responsibility-detail-page .side-bar--box .CR-item-responsibility .thumb--box {
        padding-top: var(--ratio-16-9);
    }

    .CR-news-page .CR-news-detail-main .main--box .terms-date--box {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start !important;
        -ms-flex-align: start !important;
        align-items: flex-start !important;
        gap: 1rem;
    }

    .CR-news-page .CR-news-detail-main .main--box .terms-date--box .left--box {
        gap: 1rem;
    }

    #CR-news-page {
        padding-bottom: 3.125rem  /* 50/16 */;
    }

    #CR-project-detail-page .utilities--sec .list--box a,
    #CR-shareholder-page .terms--sec a {
        padding: 0 1rem;
        font-size: 0.875rem  /* 14/16 */;
        height: 2.5rem  /* 40/16 */;
    }

    #CR-shareholder-page .list--sec .top--box {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 1rem;
    }

    #CR-shareholder-page .list--sec .list--box.type-four {
        margin: -1rem;
    }

    #CR-shareholder-page .list--sec .quarters--box ul {
        padding: 0;
    }

    #CR-shareholder-page .list--sec .quarters--box {
        margin-bottom: 4.5rem;
    }

    #CR-shareholder-page .list--sec .quarters--box b {
        height: 2.5rem  /* 40/16 */;
        font-size: 0.875rem  /* 14/16 */;
    }

    #CR-home-page .banner--sec .scroll--box,
    .CR-banner--group .scroll--box {
        right: 1rem;
    }

    .type-one .CR-item-shareholder .icon--box {
        width: 2.5rem  /* 40/16 */;
        min-width: 2.5rem  /* 40/16 */;
    }

    .type-one .CR-item-shareholder .icon--box svg {
        width: 65%;
        height: auto;
    }

    .type-one .CR-item-shareholder .action--box {
        gap: 1rem;
        padding: 0 1rem;
    }

    .type-two .CR-item-shareholder .date--box b {
        font-size: 1.5625rem  /* 25/16 */;
    }

    .type-two .CR-item-shareholder .date--box,
    .type-two .CR-item-shareholder .icon--box {
        width: 4.375rem  /* 70/16 */ !important;
        min-width: 4.375rem  /* 70/16 */ !important;
        height: 4.375rem  /* 70/16 */ !important;
    }

    .type-four .CR-item-shareholder .heading-title,
    .type-one .CR-item-shareholder .action--box a,
    .type-one .CR-item-shareholder .heading-title,
    .type-two .CR-item-shareholder .heading-title {
        font-size: 0.875rem  /* 14/16 */ !important;
    }

    .type-two .CR-item-shareholder {
        width: 100%;
    }

    .type-three .CR-item-shareholder {
        width: 50%;
    }

    .type-four .CR-item-shareholder {
        width: 50%;
        padding: 1rem;
    }

    #CR-about-page .intro--sec .main-year--box {
        -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
        justify-content: flex-start !important;
        margin: 1.875rem  /* 30/16 */ 0 0;
    }

    #CR-about-page .intro--sec .year--box {
        padding: 1.875rem  /* 30/16 */;
    }

    #CR-about-page .intro--sec .year--box .heading-title b {
        font-size: 6.25rem  /* 100/16 */;
    }

    #CR-about-page .business--sec .list--box .item {
        width: 50%;
    }

    #CR-about-page .history--sec .CR-heading-title--group {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    #CR-about-page .history--sec .list--box .item .wrap {
        margin: 0 -2rem;
    }

    #CR-about-page .history--sec .list--box .item .wrap .image--box,
    #CR-about-page .history--sec .list--box .item .wrap .content--box {
        padding: 0 2rem;
    }

    #CR-about-page .intro--sec {
        padding-top: 5rem;
    }

    #CR-project-detail-page .overview--sec .list--box {
        margin: -1rem;
    }

    #CR-project-detail-page .overview--sec .list--box .item {
        width: 50%;
        padding: 1rem;
    }

    #CR-project-detail-page .location--sec .content--box {
        padding: 2rem 1rem;
    }

    #CR-project-detail-page .utilities--sec .head--box {
        position: initial;
        padding: 1.875rem  /* 30/16 */ 0;
    }

    #CR-project-detail-page .utilities--sec .head--box .CR-heading-title--group .desc {
        padding-left: 0;
    }

    #CR-project-detail-page .utilities--sec .head--box .CR-heading-title--group {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    #CR-project-detail-page .utilities--sec .view-img--box:before {
        content: '';
        background: linear-gradient(180deg, #ffffff 0%, #ffffff 40%, rgba(244, 253, 255, 0.00) 100%);
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1;
        height: 15%;
    }

    #CR-project-detail-page .sticky-action-project--box a {
        width: 3.125rem  /* 50/16 */;
        height: 3.125rem  /* 50/16 */;
        font-size: 1.25rem  /* 20/16 */;
    }

    #CR-project-detail-page .tabs--box .nav-tabs button {
        font-size: 0.875rem  /* 14/16 */;
        height: 2.5rem  /* 40/16 */;
    }

    #CR-project-detail-page .library--sec .CR-slider-library-pj {
        margin-bottom: 0;
    }

    #CR-project-detail-page .library--sec .CR-slider-library-pj .slick-track {
        padding: 0;
    }

    #CR-project-detail-page .library--sec .CR-slider-library-pj .slick-slide.slick-current {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }

    #CR-project-detail-page .library--sec .CR-custom-dots-line .slick-dots {
        margin-top: 1.875rem  /* 30/16 */;
    }

    #CR-project-detail-page .ground--sec .tabs--box .tab-content .left--box,
    #CR-project-detail-page .ground--sec .tabs--box .tab-content .right--box {
        width: 100%;
    }

    #CR-project-detail-page .ground--sec .tabs--box .tab-content .left--box {
        padding: 1.875rem  /* 30/16 */;
    }

    #CR-project-detail-page .ground--sec .tabs--box .tab-content .right--box {
        padding: 1.25rem  /* 20/16 */;
    }

    #CR-project-detail-page .ground--sec .tabs--box .tab-content .heading-title {
        font-size: 1.5625rem  /* 25/16 */;
    }

    #CR-project-detail-page .ground--sec .CR-custom-dots-line .slick-dots {
        margin-top: 1.25rem  /* 20/16 */;
    }

    #CR-project-detail-page .ground--sec .CR-slider-ground-pj {
        margin-bottom: 0;
    }

    #CR-project-detail-page .utilities--sec .head--box .CR-heading-title--group .top-head--box {
        width: 100%;
        min-width: 100%;
    }

    #CR-project-detail-page .utilities--sec .list--box {
        bottom: 1rem;
    }

    #CR-project-detail-page .overview--sec .list--box .item .icon--box {
        width: 5rem  /* 80/16 */;
        height: 5rem  /* 80/16 */;
    }

    #CR-project-detail-page .overview--sec .list--box .item .icon--box img {
        height: 40%;
    }
}

@media only screen and (max-width: 782px) {
    html #wpadminbar {
        position: fixed;
        height: 46px;
        min-width: 240px;
        border-radius: 0;
    }

    /*.admin-bar #CR-header .CR-main-search-mb,*/
    /*.admin-bar #CR-header .CR-main-nav-mb,*/
    /*.admin-bar #CR-header .main--box,*/
    .admin-bar #CR-header.CR-header-v2 {
        top: 46px;
    }

    .admin-bar .CR-banner--group {
        height: calc(100vh - 46px);
    }
}

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

}

@media only screen and (max-width: 767px) {
    html {
        font-size: 0.95rem;
    }

    #CR-header.CR-header-v2 .slogan--box {
        display: none;
    }

    #CR-header.CR-header-v2 .bg--box,
    #CR-header.CR-header-v2 .main--box {
        background: var(--cl-white);
    }

    #CR-header.CR-header-v2 .CR-toggle-search svg *,
    #CR-header.CR-header-v2 .CR-toggle-menu .icon svg * {
        fill: var(--cl-main);
    }

    #CR-header.CR-header-v2 .CR-toggle-menu span,
    #CR-header .lang--box a {
        color: var(--cl-main);
    }

    #CR-header.CR-header-v2 .main--box .right--box {
        position: relative;
        z-index: 999;
        padding-right: 0;
    }

    #CR-header.CR-header-v2 .right--box .item:not(:last-child):after {
        background: var(--cl-main);
    }

    #CR-header .CR-main-nav-mb--box {
        width: 20rem  /* 320/16 */;
        left: -20rem  /* -320/16 */;
    }

    #CR-header .CR-main-nav-mb.active .CR-main-nav-mb--box {
        -webkit-transform: translate(20rem);
        -ms-transform: translate(20rem);
        transform: translate(20rem);
    }

    #CR-search-page .CR-item-news,
    .CR-item-project,
    .CR-item-news {
        width: 100%;
    }

    .CR-item-project .thumb--box {
        aspect-ratio: 16/9;
    }
    .CR-item-news .thumb--box {
        padding-top: var(--ratio-16-9);
    }

    .CR-item-news .heading-title {
        height: auto;
    }

    #CR-home-page .project--sec .action--box ul {
        gap: 1rem;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    #CR-home-page .project--sec .action--box li a:before {
        display: none;
    }

    #CR-home-page .project--sec .action--box {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start !important;
        -ms-flex-align: start !important;
        align-items: flex-start !important;
    }

    #CR-contact-page .intro--sec .item {
        width: 100%;
    }

    #CR-corporate-culture-page .intro--sec .list--box .items-row {
        flex-wrap: wrap;
    }

    #CR-corporate-culture-page .intro--sec .list--box .items-row > div {
        width: 100%;
    }

    #CR-corporate-culture-page .intro--sec .list--box .item {
        height: auto !important;
    }

    #CR-corporate-culture-page .intro--sec .list--box .item .wrap {
        aspect-ratio: 16/9 !important;
        width: 100%;
        height: auto !important;
    }

    #CR-corporate-culture-page .main-list--sec {
        padding: 5rem  /* 80/16 */ 0;
    }

    #CR-corporate-culture-page .main-list--sec .list--box {
        width: 100%;
    }

    #CR-corporate-culture-page .main-list--sec .item .wrap {
        margin: 0;
    }

    #CR-corporate-culture-page .main-list--sec .item .wrap > div {
        width: 100%;
    }

    #CR-corporate-culture-page .main-list--sec .item .content--box {
        margin-top: 1.25rem  /* 20/16 */;
    }

    #CR-responsibility-page .CR-item-responsibility:first-child .cont--box {
        padding: 1.125rem  /* 18/16 */;
    }

    #CR-responsibility-page .CR-item-responsibility .desc--box {
        display: none;
    }

    #CR-responsibility-page .CR-item-responsibility:first-child .heading-title {
        color: var(--cl-black);
        font-size: 1.25rem /* 20/16 */;
        font-style: normal;
        font-weight: 500;
        line-height: 1.5rem /* 24/16 */;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        line-clamp: 3;
        -webkit-box-orient: vertical;
        max-height: 4.5rem /* 72/16 */;
        margin-bottom: 1.875rem /* 30/16 */;
        height: auto;
    }

    #CR-responsibility-page .CR-item-responsibility:first-child .author {
        display: block;
    }

    #CR-news-page .intro--sec .hot-news--list .right--box .CR-item-news .thumb--box {
        aspect-ratio: 16/9;
    }

    #CR-news-page .intro--sec .hot-news--list .right--box .CR-item-news .cont--box,
    #CR-news-page .intro--sec .hot-news--list .right--box .CR-item-news .thumb--box {
        width: 100%;
    }

    .type-three .CR-item-shareholder {
        width: 100%;
    }

    #CR-about-page .business--sec .list--box .item {
        width: 100%;
    }

    #CR-about-page .intro--sec .year--box {
        width: 100%;
        z-index: 2;
    }

    #CR-project-page .filter--box .item {
        width: 100%;
    }
}

@media only screen and (max-width: 454px) {
    #CR-header .main-merged-menu .CR-sub-menu > li,
    #CR-header .main-merged-menu > ul > li {
        padding: 0.625rem  /* 10/16 */ 0 !important;
    }
    #CR-header .CR-main-nav-mb .socials--box {
        padding-top: 1.25rem  /* 20/16 */;
        margin-top: 1.25rem  /* 20/16 */;
    }
}